.webkoob-products-carousel{
    position:relative;
    width:100%;
}

.webkoob-products-carousel .swiper{
    overflow:hidden;
}

.webkoob-products-carousel .swiper-slide{
    height:auto;
    display:flex;
}

.webkoob-products-carousel .webkoob-product-slide{
    width:100%;
}

.webkoob-products-carousel .swiper-button-next,
.webkoob-products-carousel .swiper-button-prev{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.webkoob-products-carousel .swiper-button-next:after,
.webkoob-products-carousel .swiper-button-prev:after{
    font-size:14px;
    font-weight:700;
}

.webkoob-view-all-slide{
    height:100%;
}

.webkoob-view-all-card{
    width:100%;
    min-height:280px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    border:1px solid #e5e5e5;
    border-radius:12px;

    background:#fff;
    text-decoration:none;

    transition:.3s;
}

.webkoob-view-all-card:hover{
    transform:translateY(-3px);
}

.webkoob-view-all-circle{
    width:64px;
    height:64px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    border:2px solid #111;

    font-size:28px;
    margin-bottom:15px;
}

.webkoob-view-all-text{
    font-size:15px;
    font-weight:700;
    color:#111;
}

@media(max-width:767px){

    .webkoob-view-all-card{
        min-height:220px;
    }

}

/* RTL Fix */
.webkoob-products-carousel .swiper-button-next,
.webkoob-products-carousel .swiper-button-prev{
    z-index:20;
}

html[dir="rtl"] .webkoob-products-carousel .swiper-button-next{
    right:10px!important;
    left:auto!important;
}

html[dir="rtl"] .webkoob-products-carousel .swiper-button-prev{
    left:10px!important;
    right:auto!important;
}

.webkoob-products-carousel .swiper-button-next:after,
.webkoob-products-carousel .swiper-button-prev:after{
    font-family:swiper-icons!important;
    color:#222!important;
    font-size:16px!important;
}


.webkoob-products-carousel .swiper-button-disabled{
    opacity:.35;
    pointer-events:auto !important;
    cursor:pointer;
}

@media (max-width: 767px){

    .webkoob-products-carousel .swiper{
        overflow-x:auto !important;
        overflow-y:hidden;
        scrollbar-width:none;
        -ms-overflow-style:none;
    }

    .webkoob-products-carousel .swiper::-webkit-scrollbar{
        display:none;
    }

    .webkoob-products-carousel .swiper-wrapper{
        display:flex;
        flex-wrap:nowrap !important;
        transform:none !important;
        width:max-content !important;
    }

    .webkoob-products-carousel .swiper-slide{
        flex:0 0 170px;
        width:170px !important;
    }

    .webkoob-products-carousel .swiper-button-prev,
    .webkoob-products-carousel .swiper-button-next{
        display:none !important;
    }

}