.promotion_wrapper {
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,0.3);
    width: 100%;
    height: 100vh;
    z-index: 10000000;
    overflow: scroll;
    scrollbar-width: none;
    display: flex;
    align-items: start;
}

.promotion_wrapper.hidden_js {
    display: none;
}

.promotion_wrapper.promotion_hidden {
    display: none;
}

.promotion_wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
    opacity: 0;
}

.promotion {
    max-width: 580px;
    padding: 64px 32px 92px 32px;
    border-radius: 20px;
    background: linear-gradient(#0C2B29,#094541);
    background-image: url("../images/form/form-back.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin: 85px auto 85px auto;
}

.promotion_close {
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
}

.promotion_container {

}

.promotion_title {
    font-family: 'Helvetica';
    font-weight: 600;
    font-size: 48px;
    line-height: 52px;
    color: #FFFFFF;
}

.promotion_subtitle {
    font-family: 'Helvetica';
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #F3781E;
    margin-top: 4px;
    max-width: 311px;
}

.promotion_lables {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
}

.promotion_lables_item {
    padding: 4px 8px;
    border-radius: 6px;
    background-color: rgba(255,255,255,0.1);

    font-family: 'Inter';
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #FFFFFF;
}

.promotion_content {
    margin-top: 16px;
}

.promotion_content_text_1 {
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #FFFFFF;
    margin: 0 0 8px 0;
}

.promotion_content ul {
    padding: 0 0 0 16px;
    list-style-type: none;
    margin: 0 0 8px 0;
}

.promotion_content ul li {
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #FFFFFF;
}

.promotion_content_text_2 {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    color: #FFFFFF;
    margin: 0 0 0 0;
}

.promotion_form {
    margin-top: 32px;
}

.promotion_form #name-error {
    display: none!important;
}

.promotion_form #phone-error {
    display: none!important;
}

.promotion_form_title {
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
}

.promotion_form_inputs {
    margin-top: 32px;
    display: flex;
    gap: 16px;
}

.promotion_form_inputs input {
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #9299A5;
    padding: 12px 16px;
    border: 1px solid #E9EBEF;
    border-radius: 8px;
    width: 100%;
}

.promotion_form_inputs input.input_error {
    color: #E83838;
    border: 1px solid #E83838;
}

.promotion__input-checkbox {
    display: flex;
    margin-top: 24px;
    cursor: pointer;
    user-select: none;
}

.promotion__input-checkbox .promotion__checkbox-img {
    margin-right: 16px;
    cursor: pointer;
}

.promotion__input-checkbox input[type="checkbox"] {
    width: 0px;
    height: 0px;
    overflow: hidden;
    display: block;
}

.promotion__input-checkbox p {
    font-family: Helvetica;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #FFFFFF;
}

[data-form-checked] [data-feedback-check] {
    display: block;
}
[data-form-checked] [data-feedback-check-hover] {
    display: none;
}
[data-form-checked] [data-feedback-check-active] {
    display: none;
}
[data-form-checked] [data-feedback-check-error] {
    display: none;
}

[data-form-checked]:hover [data-feedback-check] {
    display: none;
}
[data-form-checked]:hover [data-feedback-check-hover] {
    display: block;
}
[data-form-checked]:hover [data-feedback-check-active] {
    display: none;
}
[data-form-checked]:hover [data-feedback-check-error] {
    display: none;
}

[data-form-checked]:has(input[type="checkbox"]:checked) [data-feedback-check] {
    display: none;
}
[data-form-checked]:has(input[type="checkbox"]:checked) [data-feedback-check-hover] {
    display: none;
}
[data-form-checked]:has(input[type="checkbox"]:checked) [data-feedback-check-active] {
    display: block;
}
[data-form-checked]:has(input[type="checkbox"]:checked) [data-feedback-check-error] {
    display: none;
}

[data-status="invalid"] [data-form-checked]:not(:has(input[type="checkbox"]:checked)) [data-feedback-check] {
    display: none;
}
[data-status="invalid"] [data-form-checked]:not(:has(input[type="checkbox"]:checked)) [data-feedback-check-hover] {
    display: none;
}
[data-status="invalid"] [data-form-checked]:not(:has(input[type="checkbox"]:checked)) [data-feedback-check-active] {
    display: none;
}
[data-status="invalid"] [data-form-checked]:not(:has(input[type="checkbox"]:checked)) [data-feedback-check-error] {
    display: block;
}

.promotion_submit {
    cursor: pointer;
    width: 100%;
    padding: 14px;
    background-color: #F3781E;
    margin-top: 24px;

    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    border-radius: 8px;
    border: none;
    outline: none;
}

@media (max-width: 620px) {

    .promotion {
        margin: 45px 8px 8px 8px;
        border-radius: 20px 20px;
        padding: 48px 20px 48px 20px;
        background-image: url("../images/form/form-back-mobile.png");
    }

    .promotion_form_inputs {
        flex-direction: column;
        gap: 12px;
    }

    .promotion_title {
        font-family: 'Helvetica';
        font-weight: 400;
        font-size: 32px;
        line-height: 40px;

    }

    .promotion_subtitle {
        font-family: 'Helvetica';
        font-weight: 400;
        font-size: 20px;
        line-height: 28px;
        max-width: 227px;
    }

    .promotion_lables {
        flex-wrap: wrap;
        margin-top: 16px;
    }

    .promotion_content_text_1 {
        font-family: 'Helvetica';
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;

    }

    .promotion_content ul li {
        font-family: 'Helvetica';
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;

    }

    .promotion_content_text_2 {
        font-family: 'Inter';
        font-weight: 600;
        font-size: 14px;
        line-height: 22px;

    }

    .promotion_form_title {
        font-family: 'Inter';
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;

    }

    .promotion_form {
        margin-top: 24px;
    }

    .promotion_form_inputs {
        margin-top: 16px;
    }

    .promotion__input-checkbox {
        margin-top: 16px;
    }

    .promotion_submit {
        margin-top: 16px;
        font-size: 16px;
        padding: 12px;
    }

    .promotion__input-checkbox p {
        font-size: 11px;
        line-height: 16px;
        margin: 0;
    }

}

.promotion_success {
    display: none;
}

.promotion_wrapper.successed .promotion {
    display: none;
}

.successed .promotion_success {
    max-width: 580px;
    width: 100%;
    padding: 42px 32px 32px 32px;
    border-radius: 20px;
    background: linear-gradient(#0C2B29,#094541);
    background-image: url("../images/form/form-back-success.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.promotion_success_title {
    font-family: Helvetica;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: #FFFFFF;
    margin: 24px 0 0 0;
}

.promotion_success_text {
    margin: 16px 0 0 0;
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}

.promotion_success_btn {
    margin-top: 24px;
    background-color: #F3781E;
    padding: 14px;
    width: 100%;
    border-radius: 8px;
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
}

@media (max-width: 620px) {
    .successed .promotion_success {
        margin: auto 8px 8px 8px;
        border-radius: 20px 20px;
        padding: 32px 20px 20px 20px;
        background-image: url("../images/form/form-back-success-mobile.png");
        background-size: cover;
        background-repeat: no-repeat;
    }

    .promotion_success_title {
        font-family: 'Helvetica';
        font-weight: 400;
        font-size: 24px;
        line-height: 32px;
        margin-top: 32px;
    }

    .promotion_success_text {
        font-family: 'Inter';
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        margin-top: 12px;
    }

    .promotion_success_btn {
        margin-top: 32px;
        font-family: 'Inter';
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
    }

    .promotion_success img {
        max-width: 72px;
        max-height: 72px;
    }

    .promotion_success_btn {
        padding: 12px;
    }

}



