html, body {
    background-color: transparent;
}
.popup-form {
    position: absolute;
    left: 1rem;
    right: 1rem;
    margin-left: 0;
    margin-right: 0;
    align-items: center;
    top: 50%;
    transform: translate(0, -50%);
    max-width: var(--default-screen-max-width);
    min-width: var(--default-screen-min-width);
    margin: 0 auto;
}
.popup-img , .close-img {
    text-align: center;
}
.popup-img .img {
    width: 30.4rem;
    /* height: 40rem; */
    height: 33.88rem;
    display: block;
    margin: 0 auto;
}
.close-img img {
    width: 3.5rem;
    height: 3.5rem;
    margin-top: 2rem;
}

/* desktop */
@media (min-width: 768px) {
    .popup-img .img {
        /* width: 30.4rem;
        height: 33.88rem;
        display: block;
        margin: 0 auto; */

        width: 35.882rem;
        height: 40rem;
        display: block;
        margin: 0 auto;
    }
}