/*
    Lightbox
*/
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox button {
    position: absolute;
    background: transparent;
    border: none;
    color: white;
    font-size: 4rem;
    cursor: pointer;
}

.lightbox-close {
    top: 30px;
    right: 40px;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

@media(max-width:700px) {
    .lightbox button {
        font-size: 3rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}