/* ========================================
   Overlay
======================================== */

#npb-popup-overlay {

    position: fixed;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgb(0 0 0 / 44%);

    backdrop-filter: blur(6px);

    z-index: 999999;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}

#npb-popup-overlay.show {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}

/* ========================================
   Popup
======================================== */

#npb-popup {

    position: relative;

    width: min(90vw, 680px);

    transform: translateY(20px) scale(.96);

    transition: transform .35s ease;
}

#npb-popup-overlay.show #npb-popup {

    transform:
        translateY(0) scale(1);
}

/* ========================================
   Image
======================================== */

#npb-popup img {

    display:block;

    width:100%;

    height:auto;

    border-radius:16px;

    box-shadow:0 25px 80px rgba(0,0,0,.45);
}

/* ========================================
   Close Button
======================================== */

#npb-close-popup {

    position: absolute;

    top: -10px;
    right: -10px;

    width: 24px;
    height: 24px;

    border: none;

    border-radius: 50%;

    background: rgba(255,255,255,.95);

    color: #111;

    cursor: pointer;

    z-index: 99999;

    font-size: 13px;

    line-height: 24px;

    text-align: center;

    box-shadow:
        0 2px 8px rgba(0,0,0,.25);
}

/* ==========================================
   Tablet + Mobile
========================================== */

@media (max-width: 1024px) {

    #npb-popup-overlay {
        padding: 16px;
    }

    #npb-popup {
        width: 90vw;
        max-width: 460px;
        margin: 0 auto;
    }
}

/* ==========================================
   Phones Portrait
========================================== */

@media (max-width: 768px) {

    #npb-popup-overlay {
        padding: 18px;
    }

    #npb-popup {
        width: 88vw;
        max-width: 380px;
    }

    #npb-close-popup {

        top: -8px;
        right: -8px;

        width: 22px;
        height: 22px;

        line-height: 22px;

        font-size: 12px;
    }
}

/* ==========================================
   Very Small Phones
========================================== */

@media (max-width: 380px) {

    #npb-popup {

        width: 86vw;
    }

    #npb-close-popup {

        top: -6px;
        right: -6px;

        width: 20px;
        height: 20px;

        line-height: 20px;

        font-size: 11px;
    }
}

/* ==========================================
   Mobile Landscape + iPhone Landscape
========================================== */

@media (max-width: 926px) and (orientation: landscape) {

    #npb-popup-overlay {
        padding: 12px;
    }

    #npb-popup {
        width: auto;
        max-width: 55vh;
    }

    #npb-close-popup {

        top: -6px;
        right: -6px;

        width: 20px;
        height: 20px;

        line-height: 20px;

        font-size: 11px;
    }
}