.APO-overlayDiv {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999999;
    background: rgba(40, 51, 61, .7);
    opacity: 0.7;
    height: 100%;
    width: 100%;
    cursor: pointer;
    cursor: hand;
    display: block;
}

#APO-modalPopup {
    width: 510px;
    height: auto;
    position: absolute;
    z-index: 999999999 !important;
    left: 50%;
    top: 0;
    background-color: #ffffff;
}

#APO-modalPopupIframe {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

#APO-modalPopupContent {
    height: 640px;
}

.APO-modalPopupCloseIcon {
    height: 26px;
    width: 26px;
    position: absolute;
    top: -14px;
    right: -14px;
    cursor: pointer;
    cursor: hand;
    display: block;
    background-color: #000;
    border-radius: 50%;
    border: 2px solid #fff;
}
.APO-modalPopupCloseIcon:after, .APO-modalPopupCloseIcon:before {
    content: "";
    top: 50%;
    left: 50%;
    width: 14px;
    height: 3px;
    background-color: #ffffff;
    transform-origin: center;
    position: absolute;
    border-radius: 8px;
}
.APO-modalPopupCloseIcon:before {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.APO-modalPopupCloseIcon:after {
    transform: translate(-50%, -50%) rotate(45deg);
}

@media (max-width:1200px) and (orientation: landscape) {
    #APO-modalPopupContent {
        height: 71vh;
    }
}