/* Vendor Categories Filter Styles */
.hp-vendor-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hp-vendor-categories-list li {
    margin: 0;
    padding: 0;
    --category-level: 0;
}

.hp-vendor-categories-list .category-item-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    padding-left: calc(10px + (var(--category-level, 0) * 20px));
    gap: 25px;
    position: relative;
}

.hp-vendor-categories-list .category-name {
    color: #313131;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    font-weight: 300 !important;
    cursor: pointer;
    flex: 1;
    padding-right: 25%;
}

.hp-vendor-categories-list li.active .category-name {
    font-weight: 400 !important;
    color: #000;
}

.hp-vendor-categories-list li.active a {
    position: relative;
}

.hp-vendor-categories-list li.active > .category-item-wrapper > a::before {
    content: url(../../images/ellips.svg);
    position: absolute;
    left: -15px;
    top: -2.5px;
}

.hp-vendor-categories-list .category-count {
    color: #898989;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    font-weight: 300;
    flex-shrink: 0;
    position: absolute;
    right: 40px;
}

.hp-vendor-categories-list .category-toggle {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
    pointer-events: auto;
    z-index: 10;
    position: relative;
}

.hp-vendor-categories-list .category-chevron {
    width: 7px;
    height: 13px;
    transition: transform 0.2s ease;
    display: block;
}

.hp-vendor-categories-list li.expanded > .category-item-wrapper .category-chevron {
    transform: rotate(90deg);
}

.hp-vendor-categories-list .subcategories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

.hp-vendor-listings-header.vendor-upgraded {
    margin-bottom: 50px;
    font-weight: 200;
    font-size: 23px;
    line-height: 100%;
    color: #000000ba;
}

.hp-vendor-listings-header.vendor-upgraded span {
    margin-bottom: 50px;
    font-weight: 400;
    color: black;
}

.categories-widget, .hp-vendor__summary.hp-widget.widget {
    border: 1px solid rgba(7, 36, 86, 0.075);
    box-shadow: 0 2px 4px 0 rgba(7, 36, 86, 0.075);
    background-color: #fff;
    transition: box-shadow 0.25s;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 0px!important;
}

.categories-widget:hover, .hp-vendor__summary.hp-widget.widget:hover {
    box-shadow: 0 0 12px rgba(7, 36, 86, 0.125);
}

.categories-widget ol li:not(:last-child), .categories-widget ul li:not(:last-child) {
    margin-bottom: 0rem!important;
}


@media (max-width: 768px) {
    .hp-vendor-categories-list .category-chevron {
        display: none;
    }
    .inner-wrapper-sticky {
        position: relative !important;
        transform: none !important;
        top: 0 !important;
        left: 0 !important;
    }    
}