.catalog__list {
    width: 100%;
}

.catalog__content .bx-filter {
    padding: 0;
}
.filter-and-catalog-list {
    width: 100%;
}
.title_box h1{
    margin-bottom: 0;
}
.show-filter-btn {
    width: 100%;
    height: 42px;
    display: block;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    transition: .3s ease;
    border: none;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    background: transparent;
    color: #000;
}

.show-filter-btn:hover {
    background: #dfdfdf;
}

.catalog__filter-container .close-btn {
    display: none;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    z-index: 2001;
}

.catalog__filter-container {
    position: absolute;
    top: 0;
    left: auto;
    background: #fff;
    padding: 20px;
    z-index: 2;
    width: 500px;
    height: auto;
    opacity: 0;
    transform: translateY(-100%);
    transition: .5s ease;
    right: 0;
    bottom: auto;
}
@media (min-width: 576px) {
    .catalog__filter-container{
        box-shadow: 0px 0px 90px 0px rgba(0, 0, 0, 0.10);
    }

}
.catalog__filter-container.active {
    transform: translateY(0);
    opacity: 1;
}

.catalog__filter-container .close-btn {
    display: block;
}

@media (max-width: 576px) {
    .show-filter-btn {
        display: flex;
    }

    .catalog__filter-container {
        position: fixed;
        top: 0;
        left: 0;
        background: #fff;
        padding: 60px 20px 20px 20px;
        z-index: 2000;
        width: 100%;
        height: 100%;
        opacity: 0;
        transform: translateY(-100%);
        overflow-x: hidden;
        overflow-y: auto;
        transition: .5s ease;
    }

    .catalog__filter-container.active {
        transform: translateY(0);
        opacity: 1;
    }

    .catalog__filter-container .close-btn {
        display: block;
    }
}