#imageLightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

#imageLightbox img {
    max-width: 90%;
    max-height: 90%;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

@media (max-width: 992px) {

    #lightboxImg {
        max-width: 100%;
        max-height: 85vh;
    }

    .close-lightbox {
        font-size: 32px;
        top: 10px;
        right: 15px;
    }

}