﻿      @import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
* {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 0;
      background-color: #F7F7F7;
      font-family: Inter, sans-serif;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
.fw-900 {
    font-weight: 900;
}

.fw-800 {
    font-weight: 900 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-300 {
    font-weight: 300 !important;
}


:root {
    --navy-text: #253743;
    --gray-text: #666666;
    --dark-gray: #646464;
    --black-text: #000;
    --yellow-text: #FFCF00;
    --bg-yellow: #FFCF001A;
    --white-text: #fff;
}

.yellow-text {
    color: var(--yellow-text);
}

.black-text {
    color: var(--black-text);
}

.gray-text {
    color: var(--gray-text);
}

.navy-text {
    color: var(--navy-text);
}

.dark-gray {
    color: var(--dark-gray);
}

.white-text {
    color: var(--white-text);
}

.font-size-10 {
    font-size: 10px;
}

.font-size-12 {
    font-size: 12px;
}

.font-size-14 {
    font-size: 14px;
}

.font-size-16 {
    font-size: 16px;
}

.font-size-18 {
    font-size: 18px;
}

.line-height-20{
  line-height: 20px;
}
.wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px 0px; 
}

.post-box {
  background-color: var(--white-text);
  width: 100%;
  max-width: 65rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 31px;
}

.logo-section {
  background-color: var(--navy-text);
  min-height: 13rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/img/left.png'), url('/img/right.png');
  background-position: top left, bottom right;
  background-repeat: no-repeat;
  background-size: 150px 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo-section img {
  max-width: 160px;
  height: auto;
  margin-top: 28px;
}

.title{
    color: var(--white-text);
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    margin: 15px auto 12px;
}

.prg-header{
    color: var(--white-text);
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 23px;
}

.search-box, .form-select.input-square, .form-control.input-square {
  height: 41px;
  padding: 12px 15px;
  border: 0.7px solid #D9D9D9;
  border-radius: 5px;
  font-size: 12px!important;
}

.form-control:focus {
  outline: 0;
  box-shadow: none;
}

.search-box input:focus-visible{
  outline: 0;
}

.custom-select-wrapper {
  position: relative;
  display: block;
}

.form-select.input-square {
  width: 100%;
  padding-right: 30px !important; 
}

.based-title-input {
  position: absolute;
  top: -10px;
  left: 25px;
  background:#fff;
  padding: 0 4px;
  z-index: 10;
  white-space: nowrap;
}

.form-select:focus {
  outline: 0;
  box-shadow: none;
}

.sort-dropdown {
    position: relative;
    display: inline-block;
    color: var(--gray-text);
    font-size: 12px;
    line-height: 20px;
}

.sort-label {
    margin-right: 5px;
}

.sort-selected {
    background: transparent;
    border: none;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--navy-text);
    font-size: 12px;
    line-height: 20px;
}

.sort-selected:focus {
    outline: none;
}
.sort-dropdown {
    position: relative; 
}

.sort-menu {
    position: absolute;
    background: #fff;
    border-radius: 6px;
    list-style: none;
    padding: 8px 10px;
    margin: 8px 0 0;
    width: 150px;
    display: none;
    z-index: 20;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    right: 0;
}

.sort-menu li {
    padding: 8px 15px 8px 0;
    cursor: pointer;
    transition: 0.2s;
    font-size: 12px;
    text-align: left;
    border-bottom: 1px solid #D9D9D9;
    color: var(--navy-text);
}

.sort-menu li:last-child {
    border-bottom: none;
}

.sort-menu li:hover {
    background: #f1f1f1;
}

.arrow {
    width: 12px;
    height: 12px;
}

.btn-primary:focus {
    outline: 0 !important;
    box-shadow: none;
}

.btn-primary {
    background-color: var(--navy-text) !important;
    color: white !important;
    font-size: 14px !important;
    border-radius: 5px !important;
    padding: 11px 17px !important;
    border: none !important;
    transition: all 0.3s ease !important;
    border-color: transparent !important;
    height: 37px !important;
    position: relative !important;
    overflow: hidden !important;
    width: fit-content;
    display: flex !important;
    align-items: center !important;
    justify-content: center;
}

.btn-primary::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
    z-index: 1 !important;
}

.btn-primary:hover::before {
    left: 100% !important;
}

.btn-primary:hover {
    background-color: #708090 !important;
    color: #fff !important;
}

.btn-outline-secondary {
    position: relative;
    overflow: hidden;
    color: var(--navy-text);
    border: 1px solid var(--navy-text);
    font-size: 14px;
    border-radius: 5px;
    padding: 10px 14px;
    background-color: transparent;
    z-index: 1;
    transition: color 0.4s ease;
    height: 37px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}


.btn-outline-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: var(--navy-text);
    z-index: -1;
    transition: height 0.4s ease;
    border-radius: 5px;
}


.btn-outline-secondary:hover::before {
    height: 100%;
}


.btn-outline-secondary:hover {
    color: #fff!important;
}

.btn-value-1 {
    max-width: fit-content;
    display: flex;
    align-items: center;
    color: #000;
    text-decoration: none;
}

.mask {
    position: relative;
    padding: 0;
    height: 20px;
    overflow: hidden;
}

.link-container {
    transition: transform 0.4s ease;
}

.title-back {
    display: block;
    line-height: 20px;
    transition: transform 0.4s ease;
}

.link-title1 {
    transform-origin: right center;
}

.link-title2 {
    transform-origin: left center;
    transform: rotate(20deg);
}

.link-icon {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.icon {
    width: 15px;
    position: absolute;
    transition: transform 0.4s ease;
}

.icon:nth-child(2) {
    transform: translateX(-40px);
}

.btn-value-1:hover .link-container {
    transform: translateY(-20px);
}

.btn-value-1:hover .link-title1 {
    transform: rotate(20deg);
}

.btn-value-1:hover .link-title2 {
    transform: rotate(0);
}

.btn-value-1:hover .icon:first-child {
    transform: translateX(40px);
}

.btn-value-1:hover .icon:nth-child(2) {
    transform: translateX(0px);
}

.label-yellow {
    color: var(--yellow-text);
    border: 1px solid var(--yellow-text);
    background-color: var(--bg-yellow);
    border-radius: 50px;
    padding: .35rem 1.2rem;
    font-size: 14px;
    font-weight: 600;
}

.pagination {
    justify-content: end;
}
.pagination .page-link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    color: var(--dark-text);
    cursor:pointer;
}

.pagination .page-link:hover {
    background-color: #f0f0f0;
}

.pagination .active {
    background-color: var(--yellow-text);
    color: #fff!important;
    font-weight: 700;
}

.page-item:last-child .page-link,
.page-item:first-child .page-link {
    border-radius: 50%;
}

.page-link:focus-visible {
    border: none !important;
}

.page-link:focus {
    box-shadow: none !important;
}

.disabled > .page-link, .page-link.disabled{
  background-color: transparent;
}

input[type="date"].custom-date-input::-webkit-calendar-picker-indicator {
    opacity: 0 !important;
    display: none !important;
    -webkit-appearance: none;
    width: 100%;
}

input[type="date"].custom-date-input::-webkit-inner-spin-button,
input[type="date"].custom-date-input::-webkit-clear-button {
    display: none !important;
}


.custom-date-input {
    background-color: transparent;
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

.custom-date-wrapper {
    position: relative;
}

.custom-date-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    cursor: pointer;
    z-index: 3;
}


.flatpickr-calendar .flatpickr-current-month .numInputWrapper input.numInput.cur-year {
    border-radius: 7px !important;
    margin-left: 5px !important;
    font-size:14px!important;
}

.custom-date-wrapper .form-control[readonly] {
    background-color: transparent!important;
}


.upload-box:hover {
    background: #F1F4F6;
}

.upload-box {
    background: #FCFCFC;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 41px;
    padding: 12px 15px;
    border: 0.7px solid #D9D9D9;
    border-radius: 5px;
    color: black !important;
    font-size: 12px!important;
}

.file-input {
    display: none; /* hide default file input */
}

.file-label {
    font-size: 14px;
    color: #333;
}


.upload-icon {
    width: 20px;
    opacity: 0.7;
}

.application-desc {
    font-size: 10px;
    color: var(--navy-text);
    line-height: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.checkbox-text {
    font-size: 10px;
    color: #000;
    line-height: 16px;
}

.form-check-input:checked[type="checkbox"] {
    background-image: url('/assets/images/jobPost/icons8-check.png') !important;
}

.form-check-input:checked {
    background-color: #fff;
    border-color: #0d6efd;
}

.form-check-input[type="checkbox"] {
    border-color: var(--navy-text);
    border-width: 2px;
    border-radius: 3px;
}

.iti__country-list {
    z-index: 3 !important;
}

input[type="checkbox"]:focus {
    box-shadow: none !important;
    outline: none !important;
    border-color: #253743;
}

input[type="radio"]:focus {
    box-shadow: none !important;
    outline: none !important;
    border-color: #5F6368;
}

input[type="radio"] {
    accent-color: #5F6368;
    cursor: pointer;
}



.footer-wrapper {
  width: 100%;
  color: #253743;
  text-align: center;
  padding: 20px 0 10px;
}

.footer-wrapper .powered {
  font-size: 12px;
  margin: 0;
}

.footer-wrapper .hivesprint{
    font-size: 14px;
    font-weight: 600;
}

.toast-container {
    z-index: 99999;
}

.custom-toast {
    animation: fadeIn 0.3s ease-in-out;
    border-radius: 10px !important;
}

.toast {
    border-radius: 10px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-size: 14px;
    font-weight: 500;
}

.toast-container {
    top: auto !important;
    bottom: 30px;
}

.toast-body img {
    width: 16px;
    height: 16px;
}

.toast-body {
    border-bottom: none;
    border-radius: 10px !important;
    padding: 19px 23px !important;
}

.bg-red {
    background-color: #F34848 !important;
}

.bg-green {
    background-color: #00A651 !important;
}

.bg-blue {
    background-color: #1DA1F2 !important;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@media (max-width: 770px) {

  .logo-section{
    background-size: 100px 100px;
  }

  .logo-section img {
    margin-top: 97px;
  }

  .prg-header {
    margin-bottom: 80px;
  }
}
@media (max-width: 500px) {
  .logo-section{
    background-size: 90px 90px;
  }
}

.select2.select2-container {
    width: 100% !important;
    z-index: 2;
}

.select2.select2-container .select2-selection {
    outline: none !important;
    transition: all 0.15s ease-in-out;
    position: relative;
    background-color: white;
    height: 41px;
    padding: 12px 15px;
    border: 0.7px solid #D9D9D9!important;
    border-radius: 5px;
    font-size: 12px!important;
}

.select2.select2-container .select2-selection .select2-selection__rendered {
    color: #000;
    font-size: 12px !important;
    line-height: 40px;
    padding-left: 0px !important;
    margin-top: -13px;
}

.select2.select2-container .select2-selection .select2-selection__arrow {
    display: none;
}

.select2.select2-container .select2-selection::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #304878;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

.select2.select2-container .select2-selection:focus, .select2.select2-container .select2-selection.select2-selection--single:focus {
      color: var(--bs-body-color) !important;
      background-color: white !important;
      border-color: #D9D9D9 !important;
      box-shadow: none;
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--single,
.select2.select2-container.select2-container--open .select2-selection.select2-selection--multiple {
    background: white;
    border-radius: 10px;
}

.select2.select2-container .select2-selection--multiple {
    height: auto;
    min-height: 47px;
    border-radius: 10px;
}

.select2.select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
    margin-top: 0;
    height: 40px;
}

.select2.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: block;
    padding: 0 4px;
    line-height: 29px;
}

.select2.select2-container .select2-selection--multiple .select2-selection__choice {
    background-color: white;
    border: 1px solid #D9D9D9;
    border-radius: 3px;
    margin: 4px 4px 0 0;
    padding: 0 6px 0 22px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    position: relative;
}

.select2.select2-container .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    margin: 0;
    text-align: center;
    color: #e74c3c;
    font-weight: bold;
    font-size: 14px;
}

.select2-container .select2-dropdown {
    background: #fff;
    border: 1px solid #ccc;
    margin-top: 1px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.select2-container .select2-dropdown .select2-search input {
    outline: none !important;
    font-size: 14px;
    border: 1px solid var(--text-blue) !important;
    border-bottom: none !important;
    padding: 4px 6px !important;
    color: var(--bs-body-color) !important;
    background-color: white !important;
    box-shadow: 0 0 0 0.1rem rgba(101, 169, 241, 0.4) !important;
}

.select2-container .select2-dropdown .select2-results ul {
    background: #fff;
    border: 1px solid #D9D9D9;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}


.select2-container .select2-dropdown .select2-results ul .select2-results__option {
    padding-left: 10px !important;
    font-size: 14px;
    transition: background-color 0.2s;
}

.select2-container .select2-dropdown .select2-results ul .select2-results__option--highlighted[aria-selected],
.select2-container .select2-dropdown .select2-results ul .select2-results__option--highlighted {
    background-color: #304878;
    color: #fff;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
    display:none;

}
.select2.select2-container .select2-selection {
    border: 1px solid #D9D9D9;
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}


.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #666!important; 
}


.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #666;
}

.input-error {
    border: 1px solid #dc3545 !important;
}

.me-12 {
    margin-right: 12px;
}

.application-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    margin: 35px 0 32px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #253743;
    font-weight: 500;
}

.step-item span {
    width: 22px;
    height: 22px;
    border: 0.7px solid #253743;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.step-item p {
    margin: 0;
    color: #000000;
    font-size: 12px;
    font-weight: 500;
}

.step-item.active span {
    background: #FFCF00;
    border-color: #FFCF00;
    color: #fff;
}

.step-item.done span {
    background: #253743;
    border-color: #253743;
    color: #fff;
}

.application-step-content {
    display: none;
}

.application-step-content.active {
    display: block;
}

.step-count {
    color: #253743;
    font-size: 13px;
    margin-bottom: 0;
    font-weight:300;
}

.step-title {
    color: #253743;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 19px;
}

.language-table {
    width: 100%;
    margin-top: 12px;
    margin-bottom: 39px;
}

.language-row {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr) 40px;
    align-items: center;
    border-bottom: 1px solid #eee;
    min-height: 55px;
    font-size: 13px;
}

.language-head {
    min-height: 42px;
    color: #333;
    text-align: center;
}

.language-name {
    font-weight: 500;
    padding-left: 12px;
}

.language-row div:not(.language-name) {
    text-align: center;
}

.delete-lang {
    background: transparent;
    border: 0;
    color: #1f3441;
    font-size: 14px;
}

.language-menu {
    display: none;
    position: absolute;
    top: 45px;
    left: 8px;
    right: 8px;
    background: #fff;
    border: 0.7px solid #D9D9D9;
    border-radius: 6px;
    max-height: 190px;
    overflow-y: auto;
    z-index: 9999;
}

.language-option {
    padding: 10px 14px;
    font-size: 13px;
    cursor: pointer;
    color: #1f3441;
}

.language-option:hover {
    background: #f4f6f8;
}

.delete-lang img {
    width: 16px;
    height: 16px;
}

.application-desc {
    max-width: 420px;
    margin-inline: auto;
    font-size: 12px;
    line-height: 16px;
    color: #000;
}

.checkbox-text {
    max-width: 420px;
    text-align: left;
    font-size: 12px;
    line-height: 16px;
    color: #000;
}

.step-actions {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}


@media (max-width: 576px) {
    .application-steps {
        gap: 16px;
        flex-wrap: wrap;
    }

    .language-row {
        grid-template-columns: 1fr repeat(4, .9fr) 30px;
        font-size: 11px;
    }

    .step-actions {
        flex-direction: column;
    }


}

.btn-next, .btn-back {
    min-width: 146px;
}

.iti {
    width: 100%;
}

.iti__flag-container {
    border-right: 0 !important;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent !important;
    padding: 6px 12px;
}

.iti__selected-dial-code {
    margin-left: 6px;
    font-weight: 500;
}

.iti__arrow {
    display: none!important;
}

.iti__selected-flag {
    position: relative;
    padding: 6px 12px !important;
}

.iti__selected-flag::after {
    content: "";
    position: absolute;
    right: -9px;
    top: 53%;
    transform: translateY(-50%);
    width: 17px;
    height: 14px;
    background: url("/assets/Icons/icons/arrow-down.svg") no-repeat center;
    background-size: auto;
    background-size: contain;
    pointer-events: none;
}

.iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
    margin-left: 6px;
    font-size: 12px;
}

.iti--allow-dropdown input, .iti--allow-dropdown input[type="text"], .iti--allow-dropdown input[type="tel"], .iti--separate-dial-code input, .iti--separate-dial-code input[type="text"], .iti--separate-dial-code input[type="tel"] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0;
    padding-left: 105px!important;
}

.vr {
    position: absolute!important;
    margin-left: 6rem !important;
    z-index: 999!important;
    margin-top: 14px!important;
}