﻿.lightbox {
    display: none;
    position: fixed;
    z-index: 1500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 0;
    height: 80%;
    max-width: 1200px;
}

.lightbox-image {
    display: grid;
    max-height: 100vh;
}

    .lightbox-image img {
        max-height: 100vh;
        overflow: hidden;
        margin: auto;
    }

.close-lightbox {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

    .close-lightbox:hover,
    .close-lightbox:focus {
        color: #999;
        text-decoration: none;
        cursor: pointer;
    }

.prev {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    right: 0;
}