<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Gallery mod */

.carouselInner01 div#gallery_thumbs {
    display: none;
}

div#photos {
    position: relative;
    overflow: hidden;
}

#main_photo_cont a {
    padding: 0.25rem;
}

.carouselInner01 p {
    padding: 0.25rem;
    margin-top: 0.5rem;
}

.carouselInner01 p a {
    text-decoration: none;
    color: #047881;
}

#main_photo_cont .prev_img,
#main_photo_cont .next_img {
    height: 50px;
    width: 50px;
    position: absolute;
    top: calc(50% - 25px);
    display: grid;
    z-index: 10000;
}

#main_photo_cont .prev_img {
    transform: rotate(180deg);
}

#main_photo_cont a {
    opacity: 0.5;
    transition: all 0.5s ease;
}

#main_photo_cont img {
    cursor: pointer
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
}

@media screen and (min-width: 1024px) {
    .carouselInner01 div#gallery_thumbs {
        display: block;
    }
    .carouselInner01 p {
        margin-top: 6.5rem;
    }
    #main_photo_cont a {
        /*opacity: 0;*/
        transition: all 0.5s ease;
    }
    #main_photo_cont:hover a {
        opacity: 1;
        transition: all 0.5s ease;
    }
}

@media screen and (max-width: 475px) {
    #photos {
        min-height:213px;
    }
    #main_photo_cont {
        min-height: 267px;
    }
}

@media screen and (max-width: 375px) {
    #main_photo_cont {
        min-height: 234px;
    }
}</pre></body></html>