.fd-feedback {
    box-sizing: border-box;
    width: min(520px, calc(100% - 32px));
    max-height: calc(100dvh - 32px);
    margin: auto;
    padding: 38px;
    overflow: auto;
    border: 2px solid #1d2f5f;
    border-radius: 28px;
    background: #fff8e8;
    color: #17213d;
    text-align: center;
    box-shadow: 0 24px 80px rgb(23 33 61 / 24%);
}
.fd-feedback::backdrop { background: rgb(23 33 61 / 65%); }
.fd-feedback__logo { display: block; width: 160px; height: auto; margin: 0 auto 24px; }
.fd-feedback__mark {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border: 2px solid #1d2f5f;
    border-radius: 50%;
    background: #ffd36f;
    color: #1d2f5f;
    font-size: 32px;
    font-weight: 800;
}
.fd-feedback h2 { margin: 0 0 16px; color: #1d2f5f; font-size: clamp(25px, 5vw, 32px); line-height: 1.2; }
.fd-feedback p { margin: 0 0 28px; font-size: 16px; line-height: 1.65; overflow-wrap: anywhere; }
.fd-feedback__close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #1d2f5f;
    font: inherit;
    font-size: 30px;
    cursor: pointer;
}
.fd-feedback__close:hover { background: #ffd36f; }
.fd-feedback button:focus-visible { outline: 3px solid #1d2f5f; outline-offset: 4px; }
.fd-feedback__continue { justify-content: center; min-height: 48px; }
html.fd-feedback-open { overflow: hidden; }
.fd-contact-form[aria-busy="true"] button[type="submit"] { opacity: .65; cursor: wait; }
@media (max-width: 480px) {
    .fd-feedback { padding: 42px 22px 28px; border-radius: 24px; }
    .fd-feedback__continue { width: 100%; }
}
