@media only screen and (orientation: landscape) and (max-width: 900px) {
    .popup-feedback {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% - 32px);
        max-width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        z-index: 9999;
        margin: 0;
        box-sizing: border-box;
    }

    .popup-feedback-content {
        padding: 20px 16px;
        box-sizing: border-box;
    }
    .btn_form_feedback {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 100%;
        height: 74px;
        background-color: var(--main-links-color);
        border: 1px solid var(--main-links-color);
        transition: 0.5s ease-in;
        margin: 0;
        gap: 10px;
    }

    .btn_form_feedback input[type="submit"] {
        background: transparent;
        border: none;
        color: white;
        font-size: 16px;
        cursor: pointer;
        padding: 0;
        letter-spacing: 1px;
        text-transform: uppercase;
        width: auto;
        height: auto;
        position: relative;
    }

    .btn_form_feedback span.icon {
        font-size: 22px;
        color: white;
        pointer-events: none;
        position: relative;
        top:0;
        right: 0;
        transform: none;
    }

}
@media only screen and (min-width: 320px) and (max-width: 768px) {
    .popup-feedback {
        height: 100%;
        z-index: 12;
    }

    .popup-feedback form .checkbox-policy {
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .popup-feedback form .checkbox-policy span {
        padding-right: 2px;
    }

    .popup-feedback form .checkbox-policy a {
        margin: 0 !important;
    }

    .btn_form_feedback span.icon {
        font-size: 18px;
        position: absolute;
        right: 15%;
    }

    .btn_form_feedback:active {
        border: white;
        border-radius: 0;
    }


    .btn_form_feedback:hover {
        background-color: var(--main-links-color);
        border: 1px solid white;
    }
}

