.section-feedback {
    position: relative;
    padding: 40px 56px 53px;
    border-radius: 10px;
    border-radius: var(--main-radius, 10px);
    background-color: rgba(246, 244, 245, 0.5019607843);
    background-repeat: no-repeat;
    /*background-image: url("images/background.png");*/
    /*background-image: url(images/background.webp);*/
    background-image: url(images/background-jd2.png);
    background-position: bottom right 150px;
    background-size: contain;
    overflow: hidden;
}

.section-feedback .section-feedback__subtitle {
    color: #37474F;
    color: var(--main-color, #37474F);
    font-family: "Open Sans";
    font-family: var(--main-font-family, "Open Sans");
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.8px;
}

.section-feedback form {
    margin-top: 24px;
    max-width: 746px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.section-feedback form p {
    max-width: 469px;
    color: #78909C;
    color: var(--grey-color, #78909C);
    font-family: "Open Sans";
    font-family: var(--main-font-family, "Open Sans");
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 15.6px;
}

.section-feedback form a {
    color: #78909C;
    color: var(--grey-color, #78909C);
    font-family: "Open Sans";
    font-family: var(--main-font-family, "Open Sans");
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 15.6px;
    -webkit-text-decoration: underline;
    text-decoration: underline;
}

.section-feedback form a:hover {
    color: #37474F;
    color: var(--main-color, #37474F);
}

.section-feedback form button {
    margin-top: 14px;
    max-width: 175px;
}

.section-feedback form textarea {
    height: 184px;
}

@media (max-width: 1440px) {
    .section-feedback {
        background-position: bottom right;
    }
}

@media (max-width: 1280px) {
    .section-feedback {
        background-image: none;
    }
}

@media (max-width: 768px) {
    .section-feedback {
        padding: 25px;
    }

    .section-feedback .section-feedback_subtitle {
        line-height: 130%;
    }
}


.section-feedback:has(form[target^="formTarget"]):before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 5;
    opacity: 0.8;
}

.section-feedback:has(form[target^="formTarget"])::after {
    content: '';
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    border: 6px solid rgb(0 87 188 / 25%);
    border-top-color: #0057BC;
    border-radius: 50%;
    animation: feedbackLoading 1s linear infinite;
    top: 50%;
    left: 50%;
    margin-top: -16px;
    margin-left: -16px;
    z-index: 10;
}

@keyframes feedbackLoading {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}