/* Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 248, 248, .72);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: zoom-out;
    flex-direction:column;
}

/* Lightbox Image */
.lightbox-overlay img {
    max-width: calc(100% - 40px);
    max-height: calc(100% - 160px);
    border-radius: 8px;
}

/* Caption */
.lightbox-caption {
    color: black;
    width:auto;
    margin:0 16px 0 8px !important;
    font-size: .9rem;
    line-height:1.2em;
    text-align:right;
}

/* Navigation Buttons */

.lightbox-controls{
    position:absolute;
    bottom:20px;
    right:20px;
    display:flex;
    align-items:center;
}
.lightbox-nav {
    background: black;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    user-select: none;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index: 10000;
    margin:8px;
    padding:8px;
}
