/**
 * Lightbox 3.1
 */

 .lightbox {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}

.lightbox.show {
    display: flex;
}

.lightbox-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content video, 
.lightbox-content img {
    max-width: 1180px;
    max-height: 800px;
    width: 100%;
    height: auto;
}

.lightbox-controls .lightbox-button {
    position: absolute;
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: 32px;
    background-position: 50% 50%;
    filter: brightness(0) invert(1);
    width: 100px;
    height: 100px;
    padding: 0;
    border: 0;
    cursor: pointer;
}

.lightbox-controls .lightbox-button:first-child {
    left: 0;
    top: 50%;
    rotate: 90deg;
}

.lightbox-controls .lightbox-button:last-child {
    right: 0;
    top: 50%;
    rotate: -90deg;
}

@media (max-width: 1180px) {
    .lightbox-controls .lightbox-button {
        width: 32px;
        height: 32px;
        background-size: 32px;
    }
}

@media (max-width: 600px) {
    .lightbox-controls .lightbox-button {
        width: 24px;
        height: 24px;
        background-size: 24px;
    }
}