.product-single-gallery {
    margin-bottom: 24px;
}
.gallery-top {
    .product-single-image {
        width: 100%;
        border-radius: 4px;
        overflow: hidden;
        &.iiz {
            padding-top: 105%;
            display: block;
            position: relative;
            overflow: hidden;
            .iiz__img {
                display: block;
                position: absolute;
                height: 100%;
                width: 100%;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
            }
        }
    }
    &:hover {
        .swiper-button-next,
        .swiper-button-prev {
            opacity: 1;
            visibility: visible;
        }
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(255, 255, 255, 0.9);
        opacity: 0.8;
        visibility: hidden;
        transition: all .3s ease;
        @media screen and (max-width: 768px){
            width: 24px;
            height: 24px;
        }
        &.swiper-button-disabled {
            opacity: 0.35;
        }
        svg {
            width: 24px;
            height: 24px;
            @media screen and (max-width: 768px){
                width: 12px;
                height: 12px;
            }
        }
        &::after {
            display: none;
        }
    }
}
.gallery-thumbs {
    padding: 0 5px;
    margin-top: 20px;
    .swiper-wrapper {
        padding-bottom: 50px;
    }
    .swiper-pagination-bullet {
       /* opacity: 1;*/
        background: #D9D9D9;
        width: 14px;
        height: 14px;
        &.swiper-pagination-bullet-active {
            background: $color-primary;
        }
    }
    .product-item {
        &.swiper-slide {
            cursor: pointer;
        }
        .img-wrap {
            border: 1px solid transparent;
            padding-top: 105%;
            border-radius: 4px;
            opacity: 0.6;
            transition: all .3s ease;
        }
        &.swiper-slide-thumb-active {
           .img-wrap {
               border-color: #17696A;
               opacity: 1;
           }
        }
    }
}
