.il-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.88);
}

.il-lightbox[hidden] {
    display: none;
}

.il-stage img {
    display: block;
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
}

.il-stage iframe {
    width: min(90vw, 680px);
    height: min(50.6vw, 495px);
    border: 0;
    background: #000;
}

.il-close,
.il-prev,
.il-next {
    position: absolute;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem 0.5rem;
}

.il-close {
    top: 0.5rem;
    right: 0.75rem;
    font-size: 2.5rem;
}

.il-prev,
.il-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

.il-prev {
    left: 0.5rem;
}

.il-next {
    right: 0.5rem;
}

.il-close:hover,
.il-prev:hover,
.il-next:hover {
    opacity: 0.75;
}
