.lightbox.hidden {
    display: none;
}
.lightbox {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333f44d6;
    z-index: 1500;
    cursor: pointer;
}


.lightbox .lightboxContent {
    display: flex;
    width: 100%;
    height: 100%;
    background: #333f44d6;
    z-index: 1500;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox .lightboxContent img {
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.lightbox::before {
    display: block;
    position: fixed;
    top: 2rem;
    right: 2rem;
    content: '\f00d';
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    color: var(--color-white, #ffffff);
    font-size: 2rem;
}

body.noScroll {
    overflow: hidden;
}