#nf-page-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
}

#nf-page-popup.is-active {
    display: block;
}

#nf-page-popup .nf-page-popup-bg {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.65);
}

#nf-page-popup .nf-page-popup-window {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(90vw, 760px);
    max-height: 90vh;
    overflow-y: auto;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 1px solid #333;
    padding: 32px;
}

#nf-page-popup .nf-page-popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    border: 0;
    background: transparent;
    font-size: 46px;
    line-height: 1;
    cursor: pointer;
    color: #777;
}

#nf-page-popup .nf-page-popup-content img {
    max-width: 100%;
    height: auto;
}

body.nf-popup-open {
    overflow: hidden;
}