#trainings_form {
    display: none;
    padding: 32px;
}

#trainings_form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#trainings_form .appointment-content {
    padding: 0;
    margin: 0;
}

#trainings_form .appointment-content__title {
    font-size: 32px;
    justify-content: start;
    margin-bottom: 20px;
}

#trainings_form  .appointment-content__text {
    font-size: 16px;
    margin-bottom: 32px;
}

#trainings_form .custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0;
}

#trainings_form .custom-checkbox input[type="radio"] {
    display: none;
}

#trainings_form .custom-checkbox__box {
    width: 20px;
    height: 20px;
    border: 2px solid #005379;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    position: relative;
}

#trainings_form .custom-checkbox__dot {
    width: 10px;
    height: 10px;
    background-color: #005379;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

#trainings_form .custom-checkbox input[type="radio"]:checked + .custom-checkbox__box .custom-checkbox__dot {
    opacity: 1;
}

#trainings_form .custom-checkbox__label {
    font-size: 16px;
    color: #000;
}

/* error state */
input.error,
textarea.error,
.type-checkboxes.error .custom-checkbox__box {
    background-color: #FAE2E2;
}

#trainings_form .appointment-meet-form__input-wrapper.type-checkboxes {
    display: flex;
    margin: 20px 0;
    gap: 32px;
}

#trainings_form .smart-captcha {
    height: 102px!important;
}

#trainings_form .appointment-meet-form__dropdown.is-hidden {
    display: none;
}

@media (max-width: 767px){

    #trainings_form {
        padding: 24px;
    }

    #trainings_form .appointment-content__title {
        font-size: 35px;
        justify-content: center;
        text-align: center;
    }

    #trainings_form .appointment-meet-form__input-wrapper.type-checkboxes {
        margin: 10px 0;
        gap: 20px;
    }

    #trainings_form .appointment-content__text {
        font-size: 20px;
        text-align: center;
    }
}

.appointment-meet-form__input-wrapper--dropdown {
    display: flex;
    flex-direction: column;
    margin-top: 19px;
    margin-bottom: 0;
    position: relative;
}

.appointment-meet-form__input-wrapper--dropdown-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: left;
    width: 100%;
}

.appointment-meet-form__input-wrapper--dropdown .appointment-meet-form__select {
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.appointment-meet-form__input-wrapper--dropdown .appointment-meet-form__dropdown {
    position: absolute;
    top: 90px;
    width: 100%;
    max-height: 216px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border: 1px solid #EEF3F4;
    border-radius: 10px;
    background: #EEF3F4;
    z-index: 2;
}

.appointment-meet-form__input-wrapper--dropdown .appointment-meet-form__dropdown::-webkit-scrollbar {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 10px;
}

.appointment-meet-form__input-wrapper--dropdown .appointment-meet-form__dropdown::-webkit-scrollbar-track {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #EEF3F4;
}

.appointment-meet-form__input-wrapper--dropdown .appointment-meet-form__dropdown::-webkit-scrollbar-thumb {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.appointment-meet-form__input-wrapper--dropdown .appointment-meet-form__dropdown .appointment-meet-form__option {
    border: none;
    padding: 14px 16px;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
}

.appointment-meet-form__input-wrapper--dropdown .appointment-meet-form__dropdown .appointment-meet-form__option.active {
    background: #DCE7E1;
}