.filter_body {
    position: relative;
}

.filter_overlay {
    display: none;
    z-index: 2;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: gray;
    opacity: 0.6;
}

.filter_overlay.enabled {
    display: block;
}

.filter_category {
    margin-bottom: 5px;
}

.filter_category_label {
    width: 270px;
    height: 40px;
    padding: 0px 0px 0px 8px;
    color: #232B2B;
    position: relative;

    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.filter_category_content {

}

.filter_category a {
    text-decoration: none;
}

.filter_category-open .filter_category_label {
    background-color: var(--themeHeaderColor);
}

.filter_category-closed .filter_category_label {
    background-color: var(--themeHeaderColor);
}

.filter_category_icon {
    background-image: url("../img/arrow-down.svg");
    position: absolute;
    height: 24px;
    width: 24px;
    top: 8px;
    right: 10px;
}

.filter_category-closed .filter_category_icon {
    background-image: url("../img/arrow-down.svg");
    transform: rotate(-90deg);
    position: absolute;
    height: 24px;
    width: 24px;
    top: 8px;
    right: 6px;
}

.filter_subcategory {
    padding-left: 8px;
}

.filter_item {
    padding: 0 10px;
    position: relative;
    width: 153px;
    height: 20px;
}

.filter_item:hover {
    background-color: rgb(190, 190, 190);
}

.filter_item_count {
    background-color: gray;
    color: white;
    border-radius: 5px;
    height: 16px;
    position: absolute;
    right: 5px;
    top: 2px;
    padding: 0 5px;
}

.filter_item_label {
    padding: 2px 5px;
}

.filter_item_selector {
    height: 20px;
    width: 20px;
    border-radius: 3px;
    border: 1px solid #232B2B;
}

.filter_item_selector.selected {
    background-image: url(../img/arrow-down.svg);
    background-size: 19px 19px;
}

element.style {
    vertical-align: top;
}

.filter_subcategory .content td {
    padding-bottom: 4px;
}
