/* Test */

.lb-column {
    float: left;
    width: 5%;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    padding: 5px; /* Adds space around the images */
}

/* The Modal (background) */
.lb-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

/* Modal Content */
.lb-modal-content {
    position: relative;
    background-color: transparent;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    animation-name: zoom;
    animation-duration: 0.3s;
}

/* The Close Button */
.lb-close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.lb-close:hover,
.lb-close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

/* Hide the slides by default */
.lb-Slides {
    display: flex;
    background-color: transparent;
    justify-content: center;
}

.lb-Slides img{
    border-radius: 32px;
    max-height: 81vh;
}

/* Next & previous buttons */
.lb-prev,
.lb-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.lb-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.lb-prev:hover,
.lb-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.lb-numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* Caption text */
.lb-caption-container {
    text-align: center;
    padding: 2px 16px;
    color: white;
}

img.lb-demo {
    width: 100%; /* Make sure the image fits the column width */
    opacity: 0.6;
    display: block; /* Ensures that there are no spaces below the images */
}

.lb-column-container {
    display: flex;
    justify-content: center;
    overflow: hidden; /* Ensures that floated elements are contained */
    margin-top: 20px; /* Adds some space between the columns and the main content */
}

.lb-active,
.lb-demo:hover {
    opacity: 1;
    cursor: pointer;
}

img.lb-hover-shadow {
    transition: 0.3s;
}

.lb-hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

@media (max-width: 769px) {
    .lb-column {
        width: 25%;
    }
}
