.btn_form_feedback:hover {
    background-color: var(--main-links-color);
    border: 1px solid var(--main-links-color);
    border-radius: 0;
    color: white;
    cursor: pointer;
    position: relative;
}

.btn_form_feedback span.icon {
    font-size: 22px;
    position: absolute;
    right: 22%;
    top: 45%;
    transform: translate(-50%, -50%);
}

.btn_form_feedback input {
    width: 100%;
    border-radius: 0;
    background-color: var(--main-links-color);
    height: 100%;
    color: white;
}

.btn_form_feedback {
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    background-color: var(--main-links-color);
    color: white;
    height: 74px;
    transition: 0.5s ease-in;
    border: 1px solid var(--main-links-color);
}

.popup-feedback-close {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url(../../images/close-popup.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
}
.feedback-btn span {
    bottom: -5px;
    font-size: 24px;
    position: absolute;
    right: 10%;
    transform: translate(-50%, -50%);
    z-index: 11;
    color: white;
}

.popup-feedback {
    display: none;
    position: fixed;
    max-width: 500px;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    background-color: #2c2e37f0;
    color: white;
}
.popup-feedback-content__header {
    display: flex;
    align-items: center;
    padding: 0 25px 25px 0px;
}
.popup-feedback-content {
    padding: 50px;
}
.popup-feedback-content__header
.popup-feedback form .title-form {
    font-size: 24px;
    font-family: "Roboto Regular";
    color: white;
    text-align: left;
    margin-bottom: 20px !important;
}

.popup-feedback form {
    position: relative;
    display: flex;
    flex-direction: column;
}

.popup-feedback form .input-form::placeholder,
.popup-feedback form .textarea-form::placeholder {
    color: white;
}

.popup-feedback form .input-form:focus,
.popup-feedback form .textarea-form:focus {
    box-shadow: none;
}

.popup-feedback form .input-form,
.popup-feedback form .textarea-form {
    width: 100%;
    color: white;
    outline: none;
    border: none;
    background: #3f414ab0;
    padding: 20px;
}
.popup-feedback form .input-form:focus,
.popup-feedback form .textarea-form:focus {
    border: 1px solid #00000073;
}
.popup-feedback form .input-form,
.popup-feedback form .textarea-form {
    color: white;

}

.popup-feedback form .input-form {
    height: 62px;
}

.popup-feedback form .textarea-form {
    height: 114px;
}

.popup-feedback form .checkbox-policy {
    align-items: center;
    justify-content: start;
    font-family: "Roboto Light";
    font-size: 14px;
    color: #ffffffa1;
}

.popup-feedback form .checkbox-policy span {
    padding-right: 2px;
}

.popup-feedback form .checkbox-policy a {
    padding-left: 5px;
    text-decoration: underline!important;
    color: #ffffffa1;
}
/* Скрываем стандартный чекбокс */
.checkbox-policy input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #ffffffa1;
    outline: none;
    cursor: pointer;
    margin-right: 8px;
    vertical-align: middle;
}

/* Когда отмечен — просто меняем фон */
.checkbox-policy input[type="checkbox"]:checked {
    background: #333;
}

/* Если хочешь добавить галочку */
.checkbox-policy input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -58%);
    font-size: 16px;
    color: white;
}

.error-message {
    color: red;
    font-size: 14px;
    display: block;
}

