.form .form-group {
    width: 100%;
}

.form h3 {
    font-family: Inter;
    font-size: 32px;
    font-weight: 700;
    line-height: 39px;
    letter-spacing: 0em;
    text-align: center;
    color: #1a1919;
    margin-bottom: 0;

    @media(max-width:768px) {
        line-height: 21.94px;
    }
}

.form input#name,
.form input#phone {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 13px 20px;
    background-color: transparent;
    border: 2px solid #cbc9c4;
    font-family: Inter;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #1a1919;
    max-width: 370px;
}

.form .error-message {
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    letter-spacing: 0em;
    color: #ce0000;
}

.form .form-submit {
    padding: 20px;
    width: 100%;
    font-size: 18px;
    line-height: 13px;
    text-align: center;
    cursor: pointer;
    font-family: Montserrat;
    font-weight: 700;
    box-shadow: 0px 0px 8px 6px #ffcc0026;
    border: none;
    border-radius: 27px;
    background: #ffcc00;
    color: #000000;
    text-decoration: none;
    max-width: 370px;
}

.feedback-form__privacy-policy {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 500;
    line-height: 11px;
    color: #000
}

.feedback-form__privacy-policy a {
    color: inherit
}

.feedback-form__privacy-policy .privacy-policy__checkbox {
    position: relative;
    border: 1px solid #c7c7c7;
    border-radius: 3px;
    display: block;
    width: 18px;
    height: 18px;
    cursor: pointer
}

.feedback-form__privacy-policy .privacy-policy__checkbox .checkmark {
    position: absolute;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.feedback-form__privacy-policy .privacy-policy__checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.feedback-form__privacy-policy .privacy-policy__checkbox input:checked~.checkmark {
    opacity: 1
}

@media(max-width:568px) {
    .feedback-form__privacy-policy {
        max-width: 100%;
        font-size: 12px;
        line-height: 15.6px;
    }
}

.modal {
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    background-color: #0000001a;
    width: 100svw;
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal>.modal__content {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 410px;
    height: 184px;
    padding: 25px;
    background-color: #fff;
    border: 2px solid #ebebeb;
    border-radius: 10px;
}

.modal__header {
    font-family: Inter;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0em;
    margin-bottom: 20px;
    color: #1a1919;
}

.modal__message {
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    color: #1a1919;
    margin-bottom: 30px;
}

.modal__button {
    border: none;
    width: 158px;
}


.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background-color: white;
    border: 2px solid #FFCC00;
    border-radius: 10px;
    padding: 15px 20px;
    color: #FFCC00;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Стиль выпадающего списка */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    width: 100%;
    z-index: 1;
    border: 2px solid #FFCC00;
    border-radius: 0 0 10px 10px;
    margin-top: -8px;
}

.dropdown-content a {
    color: #FFCC00;
    padding: 15px 20px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Когда выпадающий список активен */
.dropdown.active .dropdown-content {
    display: block;
}

.dropdown.active .arrow {
    transform: rotate(180deg);
}

/* Выделение выбранного пункта */
.dropdown-content a.selected {
    font-weight: 700;
}

@media (max-width: 568px) {
    .modal>.modal__content {
        width: 320px !important;
        height: auto !important;
    }
}

.hide-1080 {
    display: block;
}

.show-1080 {
    display: none;
}

@media(max-width:1080px) {
    .hide-1080 {
        display: none;
    }

    .show-1080 {
        display: block;
    }
}

/* FORM SUPPOT START */
.form-support {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-support .form-inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
    width: 100%;
}

.form-support input#name,
.form-support input#phone {
    color: #fff;
    border-radius: 2px;
}

@media(max-width:1080px) {
    .form-support .form-submit {
        width: 350px;
    }

    .form-support .supports-form__privaci {
        margin: 1rem 0;
    }
}

@media(max-width:568px) {
    .form-support .form-inner {
        flex-direction: column;
    }

    .form-support .form-submit {
        width: 100%;
    }
}

/* FORM SUPPOT END */


/* FORM MAINPAGE START */
.form-mainpage {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-mainpage .feedback-form__privacy-policy {
    justify-content: flex-start;
}

/* FORM MAINPAGE END */


/* FORM CAR CARD START */
.form-car-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}


.form-car-card .form-inner {
    display: flex;
    gap: 30px;
    flex-direction: row;

    @media(max-width:1080px) {
        width: 100%;
        flex-direction: column;
    }
}

.form-car-card .form-submit {
    color: #fdfdfd;
    border: none;
    border-radius: 10px;
    max-height: 54px;
}

.form-car-card .form-submit:hover {
    background: #FFCE5E !important;
}

.form-car-card input#name,
.form-car-card input#phone {
    border-radius: 10px;
}

.form-car-card .form-group {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;

    @media(max-width:1080px) {
        align-items: center;
    }
}

.form-car-card .supports-form__privaci {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* FORM CAR CARD END */