/* ------------------------------------------------------------------------------------------------------------------ */
/* Модальное окно " Заполните анкету " */
/* ------------------------------------------------------------------------------------------------------------------ */

.bgc_vacancy .modal-call-overlay {
    display: none;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Overlay */
/* ------------------------------------------------------------------------------------------------------------------ */

.bgc_vacancy .modal-call-overlay:before {
    content: '';
    background: #000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: 9999;
}

.bgc_vacancy .modal-call-wrapper {
    position: fixed;
    top: 10%;
    left: 50%;
    padding: 45px 25px 25px;
    max-width: 850px;
    width: 100%;
    margin-left: -400px;
    background: #fff;
    border-radius: 4px;
    z-index: 99999;
    opacity: 1;
    box-sizing: border-box;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Кнопка "Закрыть" */
/* ------------------------------------------------------------------------------------------------------------------ */

.bgc_vacancy .modal-call-close {
    position: absolute;
    top: -3px;
    right: 25px;
    color: #6d6d6d;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 42px;
    transition: 0.10s;
}

.bgc_vacancy .modal-call-close:hover {
    transform: translateY(-1);
    color: #000;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Форма полей для ввода информации */
/* ------------------------------------------------------------------------------------------------------------------ */

.bgc_vacancy .personal-data {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.bgc_vacancy .summary-title {
    font-size: 32px;
    margin: 0 0 30px;
    font-weight: bold;
    text-align: center;
    color: #000;
}

.bgc_vacancy .summary {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bgc_vacancy .download-summary {
    flex-basis: 49%;
}

.bgc_vacancy ._sub-modal-data {
    border: 1px solid #cccccc;
    border-radius: 6px;
    background: #ffffff;
    height: 41px;
    font-size: 16px;
    flex-basis: 49%;
    padding: 4px 0 3px 13px;
    margin-bottom: 20px;
}

.bgc_vacancy select {
    border: 1px solid #cccccc;
    border-radius: 6px;
    background: #ffffff;
    outline: none;
    height: 41px;
    font-size: 18px;
    width: 100%;
    padding: 4px 0 3px 8px;
    margin-bottom: 20px;
}

.bgc_vacancy input[type="file"] {
    border: 1px solid #cccccc;
    border-radius: 6px;
    background: #ffffff;
    outline: none;
    width: 100%;
    height: 41px;
    font-size: 16px;
    padding: 6px 0 0 12px;
    margin-bottom: 20px;
}

.bgc_vacancy textarea {
    width: 100%;
    max-height: 150px;
    border-radius: 3px;
    border: 1px solid #cccccc;
    font-size: 18px;
    resize: none;
    outline: none;
    -moz-appearance: none;
    padding: 8px 15px;
    box-sizing: border-box;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Кнопка "Отправить" | "Политика конфиденциальности" */
/* ------------------------------------------------------------------------------------------------------------------ */

.bgc_vacancy .form-submit-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.bgc_vacancy .form-submit-buttons > label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: sans-serif;
    font-weight: 400;
}

.bgc_vacancy .form-submit-buttons > label > a {
    margin-right: 5px;
    text-decoration: underline;
}

.bgc_vacancy .submit {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    font-family: sans-serif;
    text-decoration: none;
    background-color: #DF442E;
    padding: 5px 40px;
    border-radius: 7px;
    transition: 0.15s;
    text-align: center;
}

.bgc_vacancy .submit:hover {
    background-color: #d13d26;
    transform: translateY(-2px);
}

.bgc_vacancy input[type="radio"], input[type="checkbox"] {
    margin: 0;
}

.bgc_vacancy .modal-call-wrapper .form-submit-buttons {
    justify-content: center;
}

.bgc_vacancy .modal-call-wrapper {
    padding: 45px 25px 25px;
    max-width: 600px;
    margin-left: -300px;
}

.bgc_vacancy .modal-call-wrapper ._sub-modal-data {
    width: 500px;
    margin: 0 0 10px;
    flex-basis: auto;

}

.bgc_vacancy .modal-call-wrapper .personal-data {
    flex-direction: column;
    align-items: center;
}

.bgc_vacancy .modal-call-wrapper .summary-title {
    padding: 0 35px 23px;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Мобильная адаптация */
/* ------------------------------------------------------------------------------------------------------------------ */

@media screen and (max-width: 780px) {
    .bgc_vacancy .modal-call-wrapper {
        margin: 0 auto;
        width: 100%;
        max-width: none;
        background: #fff;
        left: 0;
        top: 10%;
        padding: 45px 15px 25px;
    }

    .bgc_vacancy .modal-call-close {
        top: 2px;
        right: 12px;
    }

    .bgc_vacancy .summary-title {
        font-size: 24px;
    }


    /* ------------------------------------------------------------------------------------------------------------------ */
    /* Форма полей для ввода информации */
    /* ------------------------------------------------------------------------------------------------------------------ */

    .bgc_vacancy select {
        width: 100%;
    }

    .bgc_vacancy .modal-call-overlay input[type="file"] {
        width: 97%;
    }

    .bgc_vacancy ._sub-modal-data {
        flex-basis: 100%;
    }

    .bgc_vacancy .download-summary {
        width: 100%;
        flex-basis: 100%;
    }

    .bgc_vacancy .form-submit-buttons > label {
        line-height: 130%;
        flex-wrap: wrap;
        font-size: 14px;
        font-weight: 400;
    }

    .bgc_vacancy .form-submit-buttons {
        margin-top: 16px;
    }

    .bgc_vacancy .modal-call-overlay textarea {
        max-height: 150px;
        min-height: inherit;
    }


    /* ------------------------------------------------------------------------------------------------------------------ */
    /* Кнопка "Отправить" | "Политика конфиденциальности" */
    /* ------------------------------------------------------------------------------------------------------------------ */

    .form-submit-buttons {
        flex-direction: column;
    }

    .bgc_vacancy .submit {
        padding: 7px 40px;
        font-size: 18px;
        margin-top: 25px;
    }
}