.productfilter-sec .product-sidebar {
    background: #F7F7F7;
    border-radius: 15px;
    padding: 30px;
}

.productfilter-sec .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.productfilter-sec .filter-item {
    display: block;
    cursor: pointer;
    padding: 12px 0;
    transition: all .3s ease;
    position: relative;
}

.productfilter-sec .filter-item:hover {
    color: var(--rs-theme-medium-yellow);
}

.productfilter-sec .filter-item.active {
    color:var(--rs-theme-medium-yellow);
    font-weight: 600;
}

.productfilter-sec .child-list {
    display: none;
    padding-left: 20px;
    margin: 0;
}

.productfilter-sec .toggle {
    position: absolute;
    cursor: pointer;
    right: 10px;
    /* width: calc(100% - 130px); */
    width: 100%;
    text-align: right;
}
.productfilter-sec .toggle:before {
    content: "\ea4d";
    font-family: remixicon !important;
    font-size: 20px;
    inset-inline-end: -28px;
    opacity: 1;
    transition: 0.5s;
}
.productfilter-sec .toggle.open:before {
    content: "\ea77";
    transition: 0.5s;
}
