.sliderblok {
    position: relative;
    padding-bottom: 30px;
}
.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
    line-height: 1;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #E4E4E4;
    opacity: 1;
    margin: 0 5px;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:hover,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #F9AE40;
}

.swiper-button-prev,
.swiper-button-next {
    display: none;
}
.swiper-button-prev.swiper-button-lock,
.swiper-button-next.swiper-button-lock {
    display: none;
}
 


@media (min-width:1200px) {
    .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
        display: none;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: block;
        position: absolute;
        top: -72px;
        right: 0;
        background-image: url(slider_rrows.svg);
        background-position: center;
        background-repeat: no-repeat;
        width: 46px;
        height: 46px;
        opacity: .2;

        
        border-radius: 50%;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        opacity: 1;
        background-color: #fff;
    }
    .swiper-button-prev {
        left: initial;
        right: 56px;
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        display: none;
    }
}