.popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999999999;
    background-color: rgba(0, 0, 0, 0.9);
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup__content {
    background: #fff;
    /* padding: 3em 2em; */
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
        rgba(0, 0, 0, 0.22) 0px 15px 12px;
    border-radius: 10px;
    width: auto;
    min-width: 600px;
}
@media (max-width: 576px) {
    .popup__content {
        min-width: auto;
        width: 80vw;
    }
}
@media (min-width: 768px) {
    .popup__content {
        /* padding: 5em; */
    }
}
.popup__close-btn {
    font-size: 0;
    background: var(--color-red);
    padding: 0;
    border: none;
    height: 60px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    position: absolute;
    top: 0;
    right: 0;
    /* transform: translate(50%, -50%); */
    border: 5px solid #fff;
}
@media (max-width: 576px) {
    .popup__close-btn {
        height: 45px;
    }
}
.popup__close-btn:hover {
    background: var(--color-red);
}
.popup__close-btn:hover:before {
    transform: scale(1.3);
}
.popup__close-btn::before {
    content: "close";
    font-size: 30px;
    font-family: "Material Symbols Outlined";
    color: #fff;
    transition: transform 0.25s;
}
