
/* .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.galleryImageContainer {
    margin: 18px;

    position: relative;
    overflow: hidden;
    max-width: 300px;

    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);    
}

.galleryImageContainer img {
    cursor: pointer;
    border-radius: 10px;
    
    -webkit-transform: scale(1);
    transform: scale(1);

    transition: all 0.3s ease-in-out;

    -webkit-backface-visibility: hidden;
}

.galleryImageContainer a:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
*/


/* Lightbox styles */
#lightbox {
    display: none;

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;

    /* overflow: hidden; */

    z-index: 3000;
    /* border: 2px solid green; */
}

#lightbox img#lightbox-img {
    /* top: 100px; */

    top: -20px;
    /* width: 100%; */
    height: 78%;
    /* max-width: 90%;
    max-height: 70vh; */

    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
    border-radius: 0 !important;

    position: relative;
}

@media only screen and (max-width: 600px) {
    #lightbox img#lightbox-img {
        /* top: 100px; */
    
        width: 100%;
        height: unset;
    }
}



/* Style for navigation buttons */
#prev-btn, #next-btn {
    position: absolute;
    top: 30%;

    /* transform: translateY(-50%); */
    font-size: 20px;
    color: #fff;

    /* background-color: rgba(0, 0, 0, 0.5); */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 40px;
    opacity: 0.6;
}

#prev-btn {
    left: 10px;
}

#next-btn {
    right: 10px;
    /* transform: scale(-1, 1); */
}

#prev-btn:hover,
#next-btn:hover {
    /* background-color: rgba(0, 0, 0, 0.8); */
    opacity: 1;
}



/* Container for image text */
.caption-container {
    display: flex;
    flex-direction: row;

    text-align: center;
    background-color: #222;
    padding: 2px 5px;
    color: white;
    max-width: 70%;
}

.caption-container p {
    padding: 0;
    margin: 0;
}



.pswpIcon {
    fill: #ffffff;
    color: #4f4f4f;
}

#close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    /* font-size: 24px; */
    
    z-index: 2;

    width: 35px;
    height: 35px;
    border: 1px solid #fff;
    border-radius: 50%;

    color: #fff;
    cursor: pointer;
}

#close-btn:hover {
    /* background-color: #ccaacc; */
    opacity: 0.7;
}


/* Styles for thumbnails */
#thumbnail-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: auto;

    position: absolute;
    bottom: 8px;
}

.thumbnailGallery {
    max-width: 60px;
    max-height: 60px;
    width: 55px;

    margin-top: 15px;

    margin-left: 5px;
    margin-right: 5px;

    border: 2px solid #fff;

    transition: opacity 0.3s;

    opacity: 0.3;
    cursor: pointer;
}

.thumbnailGallery:hover,
.thumbnailGallery.active-thumbnail {
    opacity: 1;
}

