/* body.lb-disable-scrolling { overflow: hidden; } */

.lightboxOverlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: black;
    opacity: 0.8;
    display: none;
}
.lightboxOverlay:focus-visible { outline: none; }

.lightbox {
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 10000;
    text-align: center;
    line-height: 0;
    font-weight: normal;
    outline: none;
}
.lightbox .lb-image {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    object-position: center;
    max-width: inherit;
    max-height: none;
}
.lb-outerContainer {
    position: relative;
    width: 100% !important;
    height: 100vh !important;
    margin: 0 auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.lb-container {
    width: 100%;
    height: 100%;
}
.lb-container > .nav {
  left: 0;
}
.lb-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}
.lb-arrows {
    height: 100%;
    cursor: pointer;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}





.lb-nav .lb-prev {
    width: 34%;
    left: 0;
    float: left;
}
.lb-nav .lb-next {
    width: 64%;
    right: 0;
    float: right;
    -webkit-box-pack: flex-end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: flex-end;
    justify-content: flex-end;
}
.lb-loader {
    position: absolute;
    top: 43%;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}
.lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: url('img/spinner.svg') no-repeat;
}
.lb-dataContainer {
    width: 100% !important;
    position: absolute;
    bottom: 0px;
    text-align: center;
}
.lb-data,
.lb-data .lb-details { width: 100%; }
.lb-data .lb-caption {
    font-size: 14px;
    font-weight: bold;
    line-height: 1em;
}
.lb-data .lb-number { font-size: 12px; }
.lb-close {
    position: fixed;
    top: 0px;
    right: 0px;
    outline: none;
    z-index: 1000;
}

