.swiper-product {
    margin-bottom: 40px;
    position: relative;
}

.swiper-product .swiper-wrapper {
    height: auto;
}

.swiper-product .swiper-button-next,
.swiper-product .swiper-button-prev {
    top: 50%;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-content: center;
    justify-content: center;
    background-size: 100%;
    transition: background-size .2s;
}

.swiper-product .swiper-button-next:hover,
.swiper-product .swiper-button-prev:hover {
    background-size: 115%;
}

.swiper-product .swiper-button-next {
    right: -25px;
    background-image: url("/assets/img_v2/templates/sliders/str-right.svg");
    background-position: center;
}

.swiper-product .swiper-button-prev {
    left: -25px;
    background-image: url("/assets/img_v2/templates/sliders/str-left.svg");
    background-position: center;
}

.swiper-product .swiper-button-next:after,
.swiper-product .swiper-button-prev:after {
    color: black;
    font-size: 1.2em;
    content: none;
}

@media (max-width: 992px) {
    .swiper-product .swiper-button-next,
    .swiper-product .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .swiper-product .swiper-button-next,
    .swiper-product .swiper-button-prev {
        width: 25px;
        height: 25px;
        margin-top: -12px;
    }

    .swiper-product .swiper-button-prev {
        left: -12px;
    }

    .swiper-product .swiper-button-next {
        right: -12px;
    }
}