.product-category-list .product-category-list-item.has-children .product-category-list-sublist {
    display: none;
}

.product-category-list .product-category-list-item.has-children.expanded .product-category-list-sublist {
    display: block;
    flex-basis: 100%;
    padding: 10px 0;
}

.product-category-list .product-category-list-item.has-children.expanded .product-category-list-sublist li {
    border-bottom: none;
    padding: 2px 10px;
}

.product-category-list .product-category-list-item.has-children.expanded .product-category-list-sublist li a {
    font-size: 14px;
    opacity: .7;
    transition: .1s ease;
}

.product-category-list .product-category-list-item.has-children.expanded .product-category-list-sublist li a:hover {
    opacity: 1;
    color: var(--bde-headings-color);
}

.product-category-list ul {
    list-style: none;
    padding: 0;
}

.product-category-list ul li a {
    text-decoration: none;
    transition: .1s ease;
}

.product-category-list ul li a:hover {
    color: var(--bde-headings-color);
}

.product-category-list ul li {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px #eee;
    padding: 5px 0;
}

button.toggle-subcategories {
    background-color: white;
    background-image: url(/wp-content/uploads/chevron-down_300.svg);
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    width: 45px;
    height: 100%;
    padding: 15px;
    border: none;
    box-shadow: none;
    outline: none;
    cursor: pointer;
}

.product-category-list-item.has-children.expanded button.toggle-subcategories {
    background-image: url(/wp-content/uploads/chevron-up_300.svg);
}

.product-category-list .product-category-list-item.has-children.expanded .product-category-list-sublist li.active a,
.product-category-list-subitem.active,
.product-category-list-item.active {
    font-weight: 800;
    opacity: 1 !important;
}