.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    cursor: pointer;
    z-index: 999999;
}

.popup {
    position: absolute;
    top: 50%;
    left: 50%;
    color: black;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    background-color: white;
    padding: 25px;
    width: calc(100% - 40px);
    max-width: 1000px;
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: 20px;
}

    .popup iframe {
        width: 100%;
        height: 100%;
    }

    .popup.popup-filter {
        /*top: 55%;*/
    }

@media screen and (max-width: 807px) {
    /* take up full screen */
    .popup {
        width: calc(100% - 50px);
        height: calc(100% - 200px);
        max-width: 100%;
        max-height: 100%;
        padding: 10px;
    }

    .popup-filter {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        padding: 0px;
        border-radius: 0;
    }
}
