
/*Genel Başvuru Formu*/

.add-button {
    width: 36px;
    height: 36px;
    background: #026002;
    border: 1px solid #026002;
    border-radius: 4px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    outline: none;
    box-shadow: none;
}

.form-sections {
    padding: 104px 0;
    background: #fff;
    position: relative;
}

.transparent-left-image {
    position: absolute;
    top: 84px;
    left: 0;
}

.transparent-left-image, .transparent-left-image img {
    height: 500px;
    object-fit: contain;
}

.transparent-right-image {
    position: absolute;
    right: 0;
    bottom: 84px;
}

.transparent-right-image, .transparent-right-image img {
    height: 500px;
    object-fit: contain;
}

.form-area .accordion {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
}

.form-area .accordion .accordion-item {
    outline: none;
    background: #FAFAFA;
    box-shadow: none;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    transition: .4s;
}

.form-area .accordion .accordion-item.active
{
    box-shadow: 0px 4px 24px 0px #00000014;
    transition: .4s;
}

.form-area .accordion .accordion-item .accordion-header {
    border: none;
    outline: none;
    background: none;
    box-shadow: none;
}

.form-area .accordion .accordion-item .accordion-header .accordion-button {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 46px;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #232323;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.form-area .accordion .accordion-item .accordion-header .accordion-button .validate-message {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #ED1C24;
    display: none;
}

.form-area .accordion .accordion-item .accordion-header .accordion-button.invalid .validate-message {
    display: block;
}

.form-area .accordion .accordion-item .accordion-header .accordion-button::after {
    position: absolute;
    top: 50%;
    right: 46px;
    transform: translate(0, -50%) rotate(180deg);
}

.form-area .accordion .accordion-item .accordion-header .accordion-button.collapsed::after {
    position: absolute;
    top: 50%;
    right: 46px;
    transform: translate(0, -50%) rotate(0);
}

.form-area .accordion .accordion-item .accordion-body {
    padding: 46px;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.form-input-area {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}

.form-input-area label {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #010101;
}

.form-input-area input {
    padding: 12px 16px;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px #1018280D;
    width: 100%;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #232323;
    outline: none;
}

.form-input-area.required label {
    display: flex;
    align-items: center;
}

.form-input-area.required label::after {
    content: "*";
    color: #ED1C24;
}













.s-hidden {
  visibility: hidden;
  padding-right: 10px;
}

.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font: normal 11px/22px Arial, Sans-Serif;
    color: black;
    border: 1px solid #D0D5DD;
    padding: 12px 16px;
    box-shadow: 0px 1px 2px 0px #1018280D;
    border-radius: 8px;
}

.styledSelect {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: white;
    padding: 12px 16px;
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 8px;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #232323;
    padding-right: 40px;
}

.styledSelect:after {
    content: "\f078";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translate(0, -50%);
    font-weight: 900;
    font-family: 'Font Awesome 6 Free';
}



.options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0 0;
    padding: 0 0;
    list-style: none;
    border: 1px solid #D0D5DD;
    background-color: white;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 2px 0px #1018280D;
    border-radius: 8px;
    overflow: hidden;
    max-height: 270px;
    overflow-y: auto;
}

/* width */
.options::-webkit-scrollbar {
    width: 8px;
}

/* Track */
.options::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.options::-webkit-scrollbar-thumb {
    background: #026002;
    border-radius: 4px;
}

/* Handle on hover */
.options::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.options li {
    margin: 0 0;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #232323;
    padding: 10px 16px;
}

.options li:hover {
    background-color: #e9e9e9;
    color: #232323;
}

.driver-licenses-input-area {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}

.driver-licenses-input-area label {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #010101;
}

.driver-licenses-input-area .accordion {
    border: none;
    box-shadow: none;
    outline: none;
    background: none;
}

.driver-licenses-input-area .accordion .accordion-item {
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px 0px #1018280D;
}

.driver-licenses-input-area .accordion .accordion-item.active {
    box-shadow: none!important;
}

.driver-licenses-input-area .accordion .accordion-item .accordion-button {
    padding: 12px 16px!important;
    font-family: Montserrat!important;
    font-weight: 400!important;
    font-size: 15px!important;
    line-height: 24px!important;
    color: #232323!important;
}

    .driver-licenses-input-area .accordion .accordion-item .accordion-body {
        width: calc(100% - 32px);
        padding: 16px 0 !important;
        padding-bottom: 20px;
        border-top: 1px solid #D0D5DD;
        margin: auto;
    }

.driver-licenses-selections {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.driver-licenses-selections .form-check {
    margin: 0;
    display: flex;
    align-items: center;
    column-gap: 8px;
    padding: 0;
}

.driver-licenses-selections .form-check input {
    width: 20px;
    height: 20px;
    margin: 0;
    border-radius: 50px;
    border: 1px solid #232323;
    background-color: #fff;
    outline: none;
    box-shadow: none;
    user-select: none;
    cursor: pointer;
}

.driver-licenses-selections .form-check label {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #232323;
    cursor: pointer;
    user-select: none;
}

.driver-licenses-selections .form-check input:checked {
    background-color: #000000;
}

.driver-licences-area {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.other-driver-licenses-input textarea {
    width: 100%;
    min-height: 97px;
    resize: none;
    padding: 10px 14px;
    box-shadow: 0px 1px 2px 0px #1018280D;
    background: #fff;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 15px;
    color: #232323;
    line-height: 24px;
    outline: none;
}


.certificates-input-area {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}

.certificates-input-area label {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #010101;
}

.certificates-input-area .accordion {
    border: none;
    box-shadow: none;
    outline: none;
    background: none;
}

.certificates-input-area .accordion .accordion-item {
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px 0px #1018280D;
}

.certificates-input-area .accordion .accordion-item.active {
    box-shadow: none!important;
}

.certificates-input-area .accordion .accordion-item .accordion-button {
    padding: 12px 16px!important;
    font-family: Montserrat!important;
    font-weight: 400!important;
    font-size: 15px!important;
    line-height: 24px!important;
    color: #232323!important;
}

.certificates-input-area .accordion .accordion-item .accordion-body {
    width: calc(100% - 32px);
    padding: 16px 0;
    padding-bottom: 20px;
    border-top: 1px solid #D0D5DD;
    margin: auto;
}

.certificates-selections {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.certificates-selections .form-check {
    margin: 0;
    display: flex;
    align-items: center;
    column-gap: 8px;
    padding: 0;
}

.certificates-selections .form-check input {
    width: 20px;
    height: 20px;
    margin: 0;
    border-radius: 50px;
    border: 1px solid #232323;
    background-color: #fff;
    outline: none;
    box-shadow: none;
    user-select: none;
    cursor: pointer;
}

.certificates-selections .form-check label {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #232323;
    cursor: pointer;
    user-select: none;
}

.certificates-selections .form-check input:checked {
    background-color: #000000;
}

.certificates-area {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.other-certificates-input textarea {
    width: 100%;
    min-height: 97px;
    resize: none;
    padding: 10px 14px;
    box-shadow: 0px 1px 2px 0px #1018280D;
    background: #fff;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 15px;
    color: #232323;
    line-height: 24px;
    outline: none;
}

.next-step-button {
    display: flex;
    justify-content: end;
}

.next-step-button button {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #F7F8F3;
    background: #026002;
    border: 1px solid #026002;
    border-radius: 50px;
}

.work-experince-box {
    padding: 24px;
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
}

.still-working {
    margin-top: 12px;
}

.still-working .form-check {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 8px;
    margin: 0;
}

.still-working .form-check label {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 15px;
    line-height: 23px;
    color: #232323;
    cursor: pointer;
    user-select: none;
}

.still-working .form-check input {
    margin: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #232323;
    background-color: #fff;
    border-radius: 50px;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    user-select: none;
}

.still-working .form-check input:checked {
    background-color: #232323;
}

.work-experience-description-input textarea {
    padding: 10px 14px;
    width: 100%;
    box-shadow: 0px 1px 2px 0px #1018280D;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    outline: none;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #232323;
    min-height: 128px;
    resize: none;
}

.work-experiences-buttons {
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 24px;
}

.work-experiences-buttons .save-and-add-new-button {
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 15px 20px;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #232323;
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 50px;
    box-shadow: none;
    outline: none;
}

.work-experiences-buttons .next-step-button {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #F7F8F3;
    background: #026002;
    border: 1px solid #026002;
    border-radius: 50px;
}

.saved-work-experience {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 12px;
    padding: 19px 16px;
    box-shadow: 0px 1px 2px 0px #1018280D;
    background: #fff;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
}

.saved-work-experience-title {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #232323;
}

.saved-work-experience-remove button {
    width: 24px;
    height: 24px;
    border: 1px solid #e33232;
    background: #fff;
    border-radius: 50px;
    color: #232323;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: none;
    outline: none;
}

.saved-work-experiences {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.education-box {
    padding: 24px;
    background: #fff;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
}

.educations-buttons {
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 24px;
}

.educations-buttons .save-and-add-new-button {
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 15px 20px;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #232323;
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 50px;
    box-shadow: none;
    outline: none;
}

.educations-buttons .next-step-button {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #F7F8F3;
    background: #026002;
    border: 1px solid #026002;
    border-radius: 50px;
}

.saved-education {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 12px;
    padding: 19px 16px;
    box-shadow: 0px 1px 2px 0px #1018280D;
    background: #fff;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
}

.saved-education-title {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #232323;
}

.saved-education-remove button {
    width: 24px;
    height: 24px;
    border: 1px solid #e33232;
    background: #fff;
    border-radius: 50px;
    color: #232323;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: none;
    outline: none;
}

.saved-educations {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}




.languages-selections {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.languages-selections .form-check {
    margin: 0;
    display: flex;
    align-items: center;
    column-gap: 8px;
    padding: 0;
}

.languages-selections .form-check input {
    width: 20px;
    height: 20px;
    margin: 0;
    border-radius: 50px;
    border: 1px solid #232323;
    background-color: #fff;
    outline: none;
    box-shadow: none;
    user-select: none;
    cursor: pointer;
}

.languages-selections .form-check label {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #232323;
    cursor: pointer;
    user-select: none;
}

.languages-selections .form-check input:checked {
    background-color: #000000;
}

.languages-input-area {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}

.languages-input-area label {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #010101;
}

.languages-input-area .accordion {
    border: none;
    box-shadow: none;
    outline: none;
    background: none;
}

.languages-input-area .accordion .accordion-item {
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px 0px #1018280D;
}

.languages-input-area .accordion .accordion-item.active {
    box-shadow: none!important;
}

.languages-input-area .accordion .accordion-item .accordion-button {
    padding: 12px 16px!important;
    font-family: Montserrat!important;
    font-weight: 400!important;
    font-size: 15px!important;
    line-height: 24px!important;
    color: #232323!important;
}

    .languages-input-area .accordion .accordion-item .accordion-body {
        width: calc(100% - 32px);
        padding: 16px 0 !important;
        padding-bottom: 20px;
        border-top: 1px solid #D0D5DD;
        margin: auto;
    }

.language-levels {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.language-levels .language-level:first-child {
    padding-top: 24px;
    border-top: 1px solid #D0D5DD;
}

.languages-buttons {
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 24px;
}

.languages-buttons .next-step-button {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #F7F8F3;
    background: #026002;
    border: 1px solid #026002;
    border-radius: 50px;
}

.cv-description-input textarea {
    padding: 10px 14px;
    width: 100%;
    box-shadow: 0px 1px 2px 0px #1018280D;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    outline: none;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #232323;
    min-height: 128px;
    resize: none;
}

.form-legal-text-checkboxes {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.form-legal-text-checkboxes .form-check {
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 8px;
    margin: 0;
    padding: 0;
}

.form-legal-text-checkboxes .form-check input {
    margin: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #D0D5DD;
    border-radius: 6px;
}

.form-legal-text-checkboxes .form-check label {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #555555;
    cursor: pointer;
    user-select: none;
}


.form-legal-text-checkboxes .form-check label span {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline;
    color: #232323;
}

.form-legal-text-checkboxes .form-check input {
    margin: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #D0D5DD;
    border-radius: 6px;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    user-select: none;
}

.form-legal-text-checkboxes .form-check input:checked {
    background-color: #026002;
    border: 1px solid #026002;
}

.form-submit-button button {
    padding: 12px;
    width: 100%;
    border: 1px solid #026002;
    background: #026002;
    border-radius: 50px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    outline: none;
    box-shadow: none;
}

.legal-text-modal .modal-footer button {
    width: 100%;
    padding: 12px;
    border: 1px solid #026002;
    background: #026002;
    border-radius: 50px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    box-shadow: none;
    outline: none;
}

.legal-text-modal .modal-body {
    font-size: 14px;
    line-height: 22px;
    font-family: Montserrat;
    color: #232323;
}

.legal-text-modal .modal-footer button:disabled {
    background: #adadad;
    border: 1px solid #adadad;
    color: #e8e8e8;
    opacity: .5;
}
.form-input-area input.invalid {
    border: 1px solid red;
}

.styledSelect.invalid {
    border: 1px solid red;
}

.form-legal-text-checkboxes .form-check input.invalid {
    border: 1px solid red;
}

.form-legal-text-checkboxes .form-check input.invalid:checked {
    border: 1px solid #026002;
}

@media only screen and (max-width: 1640px)
{
    
}

@media only screen and (max-width: 1399px)
{
    
}

@media only screen and (max-width: 1280px)
{
    .languages-selections {
        grid-template-columns: repeat(3,1fr);
    }
}

@media only screen and (max-width: 1199px)
{

}


@media only screen and (max-width: 991px)
{
    .page-banner-text {
    max-width: 100%;
    padding: 70px 16px;
    padding-bottom: 30px;
    justify-content: end;
    row-gap: 10px;
    padding-right: 0;
}

.form-sections {
    padding: 75px 0;
}

}

@media only screen and (max-width: 767px)
{
    .driver-licenses-selections {
        grid-template-columns: repeat(3,1fr);
    }

    .languages-selections {
        grid-template-columns: repeat(3,1fr);
    }
}

@media only screen and (max-width: 575px)
{
    .driver-licenses-selections {
        grid-template-columns: repeat(2,1fr);
    }

    .languages-selections {
        grid-template-columns: repeat(2,1fr);
    }
}

@media only screen and (max-width: 475px)
{
    .form-area .accordion .accordion-item .accordion-body {
        padding: 16px;
        padding-top: 0;
    }

    .work-experiences-buttons .save-and-add-new-button {
        font-size: 13px;
        line-height: 22px;
    }

        .work-experiences-buttons .save-and-add-new-button svg {
            width: 18px;
            height: 18px;
        }

    .educations-buttons .save-and-add-new-button {
        font-size: 13px;
        line-height: 22px;
    }


        .educations-buttons .save-and-add-new-button svg {
            width: 18px;
            height: 18px;
        }

    .work-experiences-buttons .next-step-button {
        font-size: 13px;
        line-height: 22px;
    }

        .work-experiences-buttons .next-step-button svg {
            width: 27px;
            height: 20px;
        }

    .work-experiences-buttons {
        column-gap: 12px;
    }

    .educations-buttons {   
        column-gap: 12px;
    }

        .educations-buttons .next-step-button {
            font-size: 13px;
            line-height: 22px;
        }

            .educations-buttons .next-step-button svg {
                width: 27px;
                height: 20px;
            }

    .languages-buttons .next-step-button {
        font-size: 13px;
        line-height: 22px;
    }

        .languages-buttons .next-step-button svg {
            width: 27px;
            height: 20px;
        }

    .form-submit-button button {
        font-size: 13px;
        line-height: 22px;
    }

    .next-step-button button {
        font-size: 13px;
        line-height: 22px;
    }

        .next-step-button button svg {
            width: 27px;
            height: 20px;
        }

}

@media only screen and (max-width: 390px) {
    .driver-licenses-selections {
        grid-template-columns: repeat(1,1fr);
    }

    .languages-selections {
        grid-template-columns: repeat(1,1fr);
    }
}