.image-slideshow {
    width: 100%;
}

.image-slideshow .swiper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.image-slideshow .swiper-slide {
    height: auto;
}

.image-slideshow img {
    display: block;
    width: 100%;
}

.image-slideshow__main img {
    background: #f4f4f4;
    object-fit: cover;
}

.image-slideshow__thumbs {
    cursor: pointer;
    margin-top: 12px;
}

.image-slideshow__thumbs .swiper-slide {
    position: relative;
}

.image-slideshow__thumbs .swiper-slide::after {
    background-color: rgba(0, 0, 0, .3);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    transition: background-color .2s ease, opacity .2s ease;
    z-index: 1;
}

.image-slideshow__thumbs .swiper-slide:hover::after,
.image-slideshow__thumbs .swiper-slide-thumb-active::after {
    opacity: 0;
}

.image-slideshow__thumbs img {
    background: #f4f4f4;
    height: 100%;
    object-fit: cover;
}

.image-slideshow .swiper-button-prev,
.image-slideshow .swiper-button-next {
    align-items: center;
    background: rgba(255, 255, 255, .92);
    border-radius: 50%;
    color: #111;
    display: flex;
    height: 44px;
    justify-content: center;
    transition: background-color .2s ease, color .2s ease, opacity .2s ease;
    width: 44px;
    z-index: 2;
}

.image-slideshow .swiper-button-prev:after,
.image-slideshow .swiper-button-next:after {
    font-size: 20px;
}

.image-slideshow .swiper-button-disabled {
    opacity: .35;
}
