.filter-products__paginations {margin: 20px 0 20px;}
.filter-products__paginations.disable {
    display: none;
}
.filter-products__arrow {
}
.filter-products__arrow--prev {
    display: none;
}
.disabled {
}
.filter-products__arrow--next {
    display: none;
}

.filter-products__paginations ul{
    list-style: none;
    display: flex;
    gap: 8px;
    justify-content: center;
}
.filter-products__paginations ul li{
    width: 40px;
    height: 40px;
}
.filter-products__paginations ul li a{
    width: 100%;
    height: 100%;
    display: block;
    color:var(--primary);
    font-size: 16px;
    line-height: 40px;
    background: #fff;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #F8F8F8;
}
.filter-products__paginations ul li a:hover{
    background: #E2552D1A;
}

.filter-products__paginations ul li.filter-products__pagination-item--active a{
    background: var(--primary);
    color:var(--white-500);
}

