.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 820px;
    max-width: 100vw;
    max-height: 100dvh;
    max-height: 100vh;
    border: 1px solid #000;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.popup > iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
@media (max-width: 499px) {
    .popup {
        width: 100vw;
        height: 100dvh;
        height: 100vh;
        border: 0;
        box-shadow: none;
    }
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}
