<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.gallery {}

.gallery .pic {
    text-align: center
}

.gallery .pic img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-background {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    /*display: none;*/
    opacity: 0;
}

.gallery-background .close-gallery {
    position: absolute;
    right: 30px;
    top: 10px;
    color: white;
    font-size: 53px;
    cursor: pointer;
    z-index: 199;
}

.swiper-container {
    width: 100%;
    height: 100%;
    background: none;
    margin-top: 0;
}
.swiper-slide {
    overflow: hidden;
    background: none;
}
.swiper-button-prev {
    left: 20px;
    background: none;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    height: 40px;
    top: 0;
    margin: auto;
    bottom: 0;
    position: absolute;
}

.swiper-button-next {
    right: 20px;
    background: none;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    height: 40px;
    top: 0;
    margin: auto;
    bottom: 0;
    position: absolute;
}
@media screen and (max-width: 414px)
{
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: -10px !important;
}
.swiper-button-next {
    right: -35px !important;
}
}</pre></body></html>