/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/
:root {
    --primary-color: #ffde00;
}
body {
    color: #020202;
}
.validationAlert, .asterisk {
    font-size: 12px;
    color: red;
}
.cursor-pointer {
    cursor: pointer !important;
}
.text-underline {
    text-decoration: underline !important;
}
.resent-code {
    color: #0d6efd;
}
/* Select 2 Override */
.select2-container--default .select2-selection--single {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: 1px solid #d2d8dd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
    font-size: 0.875rem;
    height: calc(2.55rem + 2px);

}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 6px;
    right: 10px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #d2d8dd transparent transparent transparent;
    border-width: 9px 6px 0 6px;
}
.select2-search--dropdown .select2-search__field {
    padding: .375rem .75rem;
    font-size: 14px;
    font-size: 0.875rem;
    height: calc(2.55rem + 2px);
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border-color: #d2d8dd;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #ffde00;
    color: #020202;
}
.select2-container--default .select2-results__option--selected {
    background-color: #ffe533;
    color: #020202;
}



/* radio button */
.radio_input .container_radio:first-child {
    margin-left: 0;
}
/* button */
.btn {
    border-radius: 0;
    font-weight: 600;
}
.btn-primary {
    background-color: #ffde00;
    border-color: #ffde00;
    color: #020202;
}
.btn-primary:hover, .btn-primary:focus,  .btn-primary:active,
.btn.btn-primary:first-child:active,
:not(.btn-check)+.btn.btn-primary:active {
    background-color: #ffe533;
    border-color: #ffe533;
    color: #020202;
}
/* Job Application form */
.job-application-form .form-group {
    margin-bottom: 0.95rem;
}
.job-application-form .form-control {
    height: calc(2.25rem + 2px);
}
.form-ttl {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.job-application-form textarea.form-control  {
    min-height: calc(10em + .75rem + calc(var(--bs-border-width) * 2));
}
.job-application-form .form-caption {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}
/* Upload file */
.uploading-outer {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f3f7;
    margin-bottom: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.uploading-outer.apply-cv-outer {
    display: block;
    padding-bottom: 0;
    margin-bottom: 0;
}
.uploading-outer .uploadButton {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.uploadButton .uploadButton-input {
    opacity: 0;
    position: absolute;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
    height: 0;
    width: 0;
    display: none;
}
.uploadButton .uploadButton-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    cursor: pointer;
    height: 120px;
    width: 200px;
    border-radius: 5px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    margin: 0;
    color: #1b2032;
    font-size: 16px;
    border: 2px dashed #FFDE00;
    flex-direction: row;
}

.uploading-outer.apply-cv-outer .uploadButton .uploadButton-button {
    width: 100%;
    border-color: #FFDE00;
    height: auto;
    padding: 30px;
    font-size: 14px;
    color: #77838f;
}
.uploaded-file-list {
    margin-top: 15px;
    font-size: 14px;
    color: #020202;
}
.uploaded-file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 12px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f8f9fb;
    margin-top: 10px;
    flex-direction: column;
}
.uploaded-file-item span {
    flex: 1;
    flex-wrap: wrap;
}
.uploaded-file-item .remove-btn {
    background: none;
    border: none;
    color: #ff4d4d;
    font-size: 18px;
    cursor: pointer;
    padding: 0 8px;
    line-height: 1;
    margin-left: auto;
}

.uploaded-file-list .progress-bar-container {
    width: 100%;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 8px;
}

.uploaded-file-list .progress-bar {
    height: 100%;
    width: 0%;
    background-color: #FFDE00;
    transition: width 0.4s ease;
}
.job-application-form .igree-note {
    font-size: 12px;
    background-color: rgba(249, 171, 0, .15);
    padding: 10px;
    border-radius: 10px;
    color: var(--bs-red);
    margin-bottom: 15px;
}
.job-application-form .igree-note p {
    margin-bottom: 0;
}

.job-application-form .checkboxes input[type=checkbox], 
.job-application-form .checkboxes input[type=radio] {
    display: none;
}
.checkboxes label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 28px;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 20px;
    color: #696969;
}
.checkboxes label:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 2px;
    background-color: #fff;
    border: 1px solid #d2d8dd;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    font-family: "Font Awesome 5 Free";
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    line-height: 17px;
}
.checkboxes.square label:before {
    border-radius: 2px;
}
.checkboxes label span {
    color: #909090;
}
.checkboxes input[type=checkbox]:checked+label:before {
    content: '✓';
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.job-application-form .form-action .btn {
    width: 220px;
    display: block;
    border-radius: 50px;
    margin-left: auto;

}
.job-application-form .input-group .btn {
    font-size: 12px;
    padding: 6px 10px;
    align-items: center;
}
.job-application-form .form-action .btn-primary:disabled {
    background-color: #ffde00;
    border-color: #ffde00;
    color: #222;
    opacity: 0.4;
    cursor: not-allowed;
}
.input-group.has-cc {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    justify-content: space-between;
}
.has-cc .input-wrapper {
    flex: 1;
    width: 100%;
    display: flex
}
.isotp-verified {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
    font-size: 12px;
    padding: 6px 8px;
}
.has-cc .iti {
    width: 100%;
}


/* Access Denied */
.ad-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.ad-wrapper-inner {
    text-align: center;
    padding: 20px;
    background-color: #fff;
}
.ad-image-hldr {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 20px;
    text-align: center;
}
.ad-image-hldr img {
    width: 100%;
    height: auto;
}
.ad-ttl {
    font-size: clamp(1.125rem, 0.65rem + 2vw, 2.25rem);
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
    color: #000;
}
.ad-content p {
    font-size: clamp(0.875rem, 0.7694rem + 0.4444vw, 1.125rem);
    font-weight: 400;
    line-height: normal;
    margin-bottom: 5px;
    color: #777;
}
.ad-content {
    margin-bottom: 20px;
}
.ad-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.ad-cta .btn {
    min-width: 180px;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.ad-cta .btn-transparent {
    background-color: #fff;
    color: #000;
    font-weight: 600;
}
.iti--separate-dial-code {
    flex: 1;
}
.iti--separate-dial-code .form-control {
    padding-left: 84px !important;
}
@media (max-width: 767px) {
    .job-mdl-content {
        padding: 15px;
    }
    .job-mdl-head .closed-modal {
        right: 0;
    }
    .ad-image-hldr {max-width: 220px;}
    .ad-content p {
        line-height: 1.5;
    }
}