.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.mainSwiper {
    height: 100%;
    width: 100%;
    position: relative;
}

.thumbSwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px;
    box-shadow: 0 12px 18px 6px rgb(0, 0, 0, 0.8);
    z-index: 9;
    position: relative;
}

.thumbSwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.thumbSwiper .swiper-slide-thumb-active {
    opacity: 1;
    box-shadow: 0 3px 10px -4px rgb(0, 0, 0, 0.8);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper-container {
    overflow: hidden;
    position: relative;
    margin: 0 30px 30px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #cfcfcf;
    top: 50%;
}

.gallery-thumbs .swiper-button-next,
.gallery-thumbs .swiper-button-prev {
    color: #cfcfcf;
    top: 50%;
    display: none;
}

.gallery-thumbs:hover .swiper-button-next,
.gallery-thumbs:hover .swiper-button-prev {
    display: block;
}


.gallery-thumbs .swiper-button-next::after,
.gallery-thumbs .swiper-button-prev::after {
    font-size: 22px;
    text-shadow: 0 1px 2px rgb(0, 0, 0);
}

#fullscreen-swiper .swiper-button-next,
#fullscreen-swiper .swiper-button-prev {
    color: #fff;
    text-shadow: 0px 0px 8px rgb(0, 0, 0);
}

#fullscreen-swiper {
    display: none;
    height: 90vh;
    overflow: hidden;
    position: absolute;
    top: 5%;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
}

#fullscreen-swiper .swiper-slide {
    background: none;
}

#fullscreen-swiper #fullscreen-swiper .swiper-slide img {
    height: 75vh;
    max-height: 75vh;
}

#fullscreen-swiper-backdrop {
    background: rgba(0, 0, 0, 0.5);
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

#fullscreen-swiper-close {
    border: none;
    color: #fff;
    background: transparent;
    cursor: pointer;
    font-size: 64px;
    padding: 0px 8px 0;
    position: absolute;
    top: 0;
    right: 15px;
    z-index: 10000;
}

.no-scroll {
    height: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .swiper-container {
        margin: 0 0px 30px;
    }
}