.catalog-popular {
    margin-top: 20px;
}

.catalog-popular__group {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #C4C4C4;
}

.catalog-popular__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 15px;
}

.catalog-popular__inner {
    margin-top: 20px;
    margin-bottom: 12px;
    max-height: 140px;
    overflow: hidden;
    transition: 0.2s;
}

.catalog-popular__inner.active {
    max-height: unset;
}

.catalog-popular__items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.catalog-popular__item:not(:last-child) {
    margin-bottom: 12px;
}

.catalog-popular__link {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #111111;
    text-decoration: none;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.catalog-popular__link:hover {
    color: #1ab1f1;
}

.catalog-popular__more {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #175085;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    cursor: pointer;
}

.catalog-popular__more:hover {
    text-decoration: none;
}


/*начало стили для фильтра*/

.catalog__filter {
    width: 280px;
    min-width: 280px;
    background-color: transparent;
    box-shadow: none;
}

.catalog-filter {
    border-top: solid 1px #eef0f3;
    background-color: #fff;
    will-change: transform;
    transition: transform .2s cubic-bezier(.17, .26, 0, .8), margin-left .2s cubic-bezier(.17, .26, 0, .8);
    position: relative;
    box-shadow: 0 1px 2px rgb(0 0 0 / 16%);
    border-radius: 8px;
    z-index: 3;
}

@media screen and (max-width: 1024px) {
    .catalog__filter {
        background-color: #FFFFFF;
        width: 320px;
        min-width: 320px;
    }

    .catalog-filter {
        top: 0;
        left: 0;
        width: 320px;
        height: 100vh;
        position: fixed;
        z-index: 888;
    }

    .catalog__popular {
        display: none;
    }
}

/*конец стили для фильтра*/
