/* ================= LIGHTBOX ================= */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    pointer-events:none;
    transition:.4s;
    z-index:9999;
}

.lightbox.open{
    opacity:1;
    pointer-events:auto;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:18px;
    box-shadow:0 0 40px rgba(0,242,255,.4);
}
