.swiper-top-wrapper{
    position: relative;
    display: grid;
    --swiper-scrollbar-size: 15px;
    --swiper-scrollbar-sides-offset: 0%;
}
.swiper-top-wrapper.is-not-initialized:before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.15);
    background: #f6f6f6;
    z-index:11;
}
.swiper-top-wrapper.is-not-initialized:after{
    content: "";
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 12;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid #46B3DE;
    border-radius: 50%;
    border-top-color: transparent;
    animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-top-wrapper .swiper{
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}
.swiper-top-wrapper .swiper-slide{
    user-select: none;
    /*width: fit-content;*/
}
.swiper-top-wrapper.is-show-custom-navigation:not(.is-arrow-hidden){
    padding: 0 82px;
}
.swiper-top-wrapper.is-show-scrollbar .swiper{
    padding-bottom: 50px;
}
.swiper-top-wrapper .swiper-button-control{
    margin-top: -31px;
}
.swiper-top-wrapper .swiper-button-control.is-no-active{
    opacity: 0.3;
}
.swiper-top-wrapper .swiper-button-control{
    width: 62px;
    height: 62px;
    border-radius: 100%;
    background: #f6f6f6;
    --swiper-navigation-size: 16px;
}
.swiper-top-wrapper .swiper-button-control:after{
    color: black;
}
.swiper-top-wrapper .swiper-scrollbar{
    padding: 3px;
}
.swiper-top-wrapper .swiper-scrollbar-drag{
    background: #46b3de;
    cursor: move;
}
.swiper-top-wrapper .swiper-pagination + .swiper-scrollbar{
  
}

.swiper-top-wrapper .swiper-pagination-bullet-active {
    background: #46b3de;
}
.swiper-top-wrapper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}
.swiper-top-wrapper.is-arrow-hidden .swiper-button-control {
    display:none;
}
