.catalog__container-product.items-list.text{
    margin: 20px 0 0 0;
    font-size: 15px;
}
.catalog-tags-wrapper{
    margin-bottom: 30px;
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}
.catalog-tags-item{
    padding:10px 16px 11px;
    color:var(--graphite);
    background: var(--grey);
    border-radius:100px;
    border:1px solid var(--accent);
    text-decoration: none;
    text-align: center;
}
.catalog-tags-item.active{
    color:#fff;
    background:var(--accent);
}
@media(max-width:500px){
    .catalog-tags-item{
        flex-basis: 100%;
    }
}

@media (min-width: 993px) {
    .page-conteiner {
        overflow: visible !important;
    }
    .catalog__aside-filter {
        position: sticky;
        top: 82px;
        overflow-y: auto;
        max-height: calc(100vh - 82px);
    }
    .catalog__aside-filter::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .smart-filter-angle {
        right: 10px;
    }
}