/* Lightbox simples via Bootstrap Modal */
a[data-lightbox] img {
    cursor: zoom-in;
}

#galleryLightbox .modal-dialog {
    width: 95%;
    max-width: 1000px;
}

#galleryLightbox .modal-body {
    padding: 0;
    background: #000;
    position: relative;
}

#galleryLightbox img {
    width: 100%;
    height: auto;
    display: block;
}

#galleryLightbox .gallery-caption {
    color: #ccc;
    padding: 8px 14px;
    background: #111;
    font-size: 13px;
}

#galleryLightbox .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 6px 10px;
    font-size: 42px;
    color: #fff;
    text-decoration: none;
    opacity: .85;
    user-select: none;
}

#galleryLightbox .gallery-prev {
    left: 10px;
}

#galleryLightbox .gallery-next {
    right: 10px;
}

#galleryLightbox .gallery-nav:hover {
    opacity: 1;
}

#galleryLightbox .close {
    position: absolute;
    right: 10px;
    top: 8px;
    color: #fff;
    opacity: .9;
    text-shadow: none;
    float: none;
    font-size: 32px;
}

#galleryLightbox .close:hover {
    opacity: 1;
}