.filter-wrapper {
    display: flex;
}
.filter {
    display: inline-block;
    flex: 1;
}
#category-filter {
    flex: 2;
    margin-left: 10px;
}
.filter + .filter {
    /* margin-left: 30px; */
}
.filter-select {
    position: relative;
}
.filter-options-wrapper {
    position: absolute;
    white-space: nowrap;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translate(0, 100%);
    padding-left: 0;
    z-index: 10;
}
.filter[data-expanded="0"] .filter-options-wrapper{
    display: none;
}
.filter-label {
    display: none;
}
.filter-option {
    padding: 5px 8px;
    display: block;
    cursor: pointer;
    padding-right: 45px;
}
.filter-option.disabled {
    cursor: auto;
    background: #fff;
    color: #000;
}
.filter-option:not(.disabled):not(.filter-current-option):hover {
    background: #fff;
    color: #000;
}
/* a.option-link.disabled:hover {
    color: #fff !important;
} */
a.option-link {
    text-decoration: none;
    border-bottom: none;
    
}
a.option-link:hover,
#content a.option-link:hover {
    color: #000;
}
.filter-option-wrapper {
    border-bottom: 2px solid;
}
.filter-current-option-wrapper {
    /* padding-right: 45px; */
    background-image: url(/media/svg/v-9-w.svg);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: right center;
    cursor: pointer;
}
#content .filter-wrapper {
    background-color: #000;
    position: sticky;
    z-index: 10;
    top: 0px;
    padding: 5px 0;
    margin: 18px 0;
}
#breadcrumbs .filter-wrapper {
    margin-top: 20px;
}
#breadcrumbs .filter + .filter {
    margin-top: 5px;
}

.filter-clear-button {
    /* width: 1em; */
    height: 1em;
    background-image: url(/media/svg/x-18-w.svg);
    background-repeat: no-repeat;
}
.filter-option.disabled .filter-clear-button,
.filter-option:not(.disabled):not(.filter-current-option):hover .filter-clear-button {
    background-image: url(/media/svg/x-18-k.svg);
}
@media screen and (max-width: 500px) {
    #content .filter-wrapper {
        /* top: 45px; */
        display: block;
    }
    #content .filter {
        display: block;
        width: calc(100% - 50px);
    }
    #category-filter {
        margin-left: 0;
        margin-top: 10px;
    }
}