.new_form,
.service_form,
.footer_form {
    display: flex;
    gap: 15px;
    color: white;
}

.new_form,
.service_form {
    flex-direction: column;
}

.footer_form {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.new_form .hidden-field,
.service_form .hidden-field,
.footer_form .hidden-field {
    display: none;
}

.new_form button,
.service_form button,
.footer_form button {
    padding: 10px;
}

.new_form input,
.new_form select,
.new_form textarea,
.service_form input,
.service_form select,
.service_form textarea,
.footer_form input,
.footer_form select,
.footer_form textarea {
    border: 1px solid #666;
    border-radius: 3px;
    padding: .5rem 1rem;
    transition: all .3s;
    outline: none;
    font-size: 16px;
}

.new_form textarea,
.service_form textarea,
.footer_form textarea {
    height: 100px;
    resize: none;
}

.new_form fieldset,
.service_form fieldset,
.footer_form fieldset {
    border: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.new_form .checkbox_container,
.service_form .checkbox_container,
.footer_form .checkbox_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    row-gap: 5px;
}

.new_form .label_checkbox,
.service_form .label_checkbox,
.footer_form .label_checkbox {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: unset;
}

.new_form .error,
.service_form .error,
.footer_form .error {
    color: red;
}

.new_form .checkbox-inner,
.service_form .checkbox-inner,
.footer_form .checkbox-inner {
    cursor: pointer;
    width: fit-content;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 7px;
}
.checkbox-inner label {
    font-size: 16px;
}

.new_form .checkbox-inner input,
.new_form .checkbox-inner label,
.service_form .checkbox-inner input,
.service_form .checkbox-inner label,
.footer_form .checkbox-inner input,
.footer_form .checkbox-inner label {
    cursor: pointer;
}

.new_form .checkbox-inner a,
.service_form .checkbox-inner a,
.footer_form .checkbox-inner a {
    color: white;
    text-decoration: underline;
}

.new_form .input-wrapper,
.service_form .input-wrapper,
.footer_form .input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.new_form .policy_text,
.service_form .policy_text,
.footer_form .policy_text {
    font-size: 16px !important;
    color: #fff;
    opacity: .8;
    font-weight: 400;
}

.new_form {
    position: fixed;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    padding: 30px;
    max-width: 500px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    background: #100F0F;
    opacity: 1;
    z-index: 1200;
    transition: all .5s ease;
    box-shadow: 0 0 8px 7px rgba(20, 21, 21, 0.23);
    scrollbar-color: transparent #787A7A;
    scrollbar-width: thin;
}

.new_form .input-style {
    height: 40px;
}

.new_form p {
    font-size: 24px;
    font-weight: 500;
    margin: 0 auto 20px;
    text-align: center;
    line-height: 100%;
}

.new_form .send-btn {
    width: 100%;
    height: 55px;
    background-color: #787A7A;
    background-image: none;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: .875rem;
    color: #fff;
    cursor: pointer;
}

.form_block {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 13, 30, .4);
    -webkit-backdrop-filter: blur(8.9999990463px);
    backdrop-filter: blur(8.9999990463px);
    z-index: 100000;
    display: none;
    transition: all .5s ease;
}

.new_form_activator {
    display: block !important;
}

.open_new_form_btn,
.close_btn {
    cursor: pointer;
}

.close_modal-wrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.close_btn {
    display: block;
}

.close_btn::before,
.close_btn::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    display: block;
    width: 24px;
    height: 3px;
    background: white;
}

.close_btn::before {
    transform: rotate(45deg);
}

.close_btn::after {
    transform: rotate(-45deg);
}

.body_overflow {
    height: 100vh;
    overflow-y: hidden;
}

.popup-checktime .checkbox_container {
    flex-direction: column;
}

.service_form .input-style,
.footer_form .input-style {
    width: 100%;
    height: 40px;
}

.service_form p {
    font-size: 30px;
    font-weight: 500;
    margin: 0 auto 30px;
}

.service_form .send-btn,
.footer_form .send-btn {
    color: #fff;
    border: 1px solid #fff;
    background: rgba(24, 24, 24, .65);
    outline: none;
    cursor: pointer;
}

.footer_form .form_container {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.footer_form p {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.footer_form .form-tel,
.footer_form #error_tel {
    width: 250px;
}

.footer_form input,
.footer_form select {
    max-width: 320px;
    height: 40px;
}

.footer_form #policy_agree {
    width: 100%;
}

.footer_form .send-btn {
    height: 42px;
    display: flex;
    align-items: center;
    width: fit-content;
    font-family: "Montserrat", sans-serif !important;
}

.footer_form .agreement {
    width: 15px;
    height: 15px;
}
input::placeholder, textarea::placeholder {
    font-family: 'Gotham', sans-serif !important;
}

@media (max-width: 1239px) {
    .footer_form {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer_form #policy_agree {
        margin-left: unset;
    }
}

@media (max-width: 550px) {
    .footer_form .form_container {
        flex-direction: column;
        width: 100%;
    }

    .footer_form .form-tel,
    .footer_form .dealer-select {
        width: 100%;
        max-width: 400px;
    }
}

#winter_cup form {
    background-color: rgb(35 35 115 / 83%);
}

#winter_cup form p {
    font-size: 16px;
}