/* ---------- LIGHTBOX ---------- */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    background: rgba(0,0,0,0.9);

    display: none;
    align-items: center;
    justify-content: center;
	user-select: none;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

/* billede */
.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 8px;
}

/* knapper */
.lb-btn {
    position: absolute;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.6);
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 6px;

    box-shadow: 0 0 10px rgba(255,255,255,0.25);
}

.lb-btn:hover {
    background: rgba(0,0,0,0.8);
    border-color: #fff;

    box-shadow: 0 0 14px rgba(255,255,255,0.5);
}

/* positioner */
.lb-close { top: 20px; right: 20px; }
.lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* hover */
.lb-btn:hover {
    background: rgba(0,0,0,0.8);
}