﻿/* This is not from a vendor */

.lightbox-fullscreen {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.lightbox-fullscreen-visible {
    display: block !important;
    background: black;
    z-index: 9002;
    opacity: 0.8;
}

.scroll-off {
    overflow: hidden;
}

.lightbox-fullscreen-close {
    top: 7px;
    right: 7px;
    background-color: rgba(0,0,0,.5);
    border-radius: 50px;
    display: flex;
    justify-content: center;
}

.lightbox-close-button, .lightbox-prev, .lightbox-next {
    color: #fff;
    font-size: 20pt;
    padding-top: 5px;
}

.lightbox-fullscreen-close,
.lightbox-prev, .lightbox-next {
    background-color: rgba(0,0,0,.5);
    position: fixed;
    cursor: pointer;
    height: 48px;
    width: 48px;
}

.lightbox-prev, .lightbox-next {
    top: calc(50% - 24px);
    border-radius: 5px;
    padding-left: 18px;
    padding-top: 12px;
    display: none;
    box-sizing: border-box;
}

.lightbox-prev {
    left: 10px;
    rotate: 180deg;
}

.lightbox-next {
    right: 10px;
}

.lightbox-image-box {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 9003;
    max-height: 90vh;
    max-width: 90vh;
    width: 90vh;
}

.lightbox-image-box img {
    max-height: 90vh;
    max-width: 90vh;
    object-fit: contain;
    border-radius: 5px;
    width: 100%;
}

.lightbox-visible {
    display: block !important;
}

.lightbox-caption {
    font-size: 14px;
    margin-top: 12px;
    color: #fff;
    text-align: center;
}
