label.feedback-footer__wrap_privacy.form__privacy.error .subscribe-policy__text,
label.feedback-footer__wrap_privacy.form__privacy.error .subscribe-policy__text .subscribe-policy__text-weight{
    color:red
}
.feedback-footer label.feedback-footer__wrap_privacy.form__privacy.error .checkbox__checkmark {
    border: 1px solid red;
}
.feedback-footer .offer--form__success.active{
    color: #008d20;
    text-align: center;
}
.feedback-footer .subscribe-policy__text {
    color: var(--dark);
}
.feedback-footer .checkbox__checkmark {
    top: 4px;
    left: -1px;
    border: 1px solid var(--blue);
    position: absolute;
    height: 24px;
    width: 24px;
    background-color: var(--white);
    transition: background-color .25s ease;
    border-radius: 4px;
}
.feedback-footer .input-checkbox:checked ~ .checkbox__checkmark::after {
    opacity: 1;
}
.feedback-footer .checkbox__checkmark::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid var(--dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity .25s ease;
}
.feedback-footer .input-checkbox {
    display: none;
}
.feedback-footer .button-white:hover {
    background-color: #2E59DE;
}
.feedback-footer .button-white {
    color: var(--white);
    border: 2px solid transparent;
    background-color: var(--blue);
    display: block;
    padding: 14px 10px 12px;
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    border-radius: 100px;
    box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.25);
    max-width: 260px;
    width: 100%;
    transition: 0.3s;
}
.feedback-footer__wrap_submit-block {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    gap: 21px;
}
.feedback-footer .subscribe-policy__text-weight:hover {
    border-bottom: 1px solid var(--dark);
}
.feedback-footer .subscribe-policy__text-weight {
    font-weight: bold;
    color: var(--dark);
    border-bottom: 1px solid transparent;
}
.feedback-footer__wrap_privacy {
    position: relative;
    padding-left: 43px;
    font-family: var(--inter);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.feedback-footer__wrap_input-text:focus::-webkit-input-placeholder { color:transparent; }
.feedback-footer__wrap_input-text:focus:-moz-placeholder { color:transparent; }
.feedback-footer__wrap_input-text:focus::-moz-placeholder { color:transparent; }
.feedback-footer__wrap_input-text:focus:-ms-input-placeholder { color:transparent; }
.feedback-footer__wrap_input-text:focus::placeholder {
    color:transparent;
    -webkit-transition: 0.3s ease-in-out all;
    -moz-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all;
    -o-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
}

.feedback-footer__wrap_input-text {
    border: 1px solid var(--blue);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    width: 100%;
}
.modal-content__feedback-footer {
    width: 460px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 30;
    text-align: left;
    padding: 37px 62px 35px 61px;
    border-radius: 24px;
    background-color: #fff;
    transition: 0.3s all;
    box-shadow: 0 0 40px 0 #0000001A;
}
.close-modal__feedback-footer {
    position: absolute;
    top: 0;
    right: 1px;
    cursor: pointer;
}
.feedback-footer .feedback-footer__wrap_input-text {
    outline: none;
    padding: 16px 18px;
}
.feedback-footer .form__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.feedback-footer__text {
    font-family: var(--inter);
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    width: 100%;
    display: block;
    margin-bottom: 23px;
}
.feedback-footer .feedback-footer__input-textarea {
    min-height: 100px;
}

@media (max-width: 768px) {
    .modal-content__feedback-footer {
        width: 100%;
        height: 100%;
        border-radius: 0;
        padding: 17px 30px;
    }
    .close-modal__feedback-footer {
        top: -18px;
        right: -3px;
    }
    .feedback-footer .feedback-footer__wrap_input-text {
        outline: none;
        padding: 13px 15px;
        font-size: 14px;
        line-height: 20px;
    }
}











