.FacetingElement + .FacetingElement {
    margin-top: 1em;
}

.FacetingElement__label {
    font-weight: bold;
}

.FacetingElement label {
    word-break: break-word;
}

.FacetingElement ul,
.FacetingElement li {
    list-style: none;
}

.FacetingElement ul {
    margin: 0;
    padding: 0;
}

.FacetingElement input[disabled] {
    pointer-events: none;
}

.FacetingElement input[disabled] + label {
    opacity: 0.5;
}

.FacetingElement__select {
    width: 100%;
}

.FacetingElement__selectedTerm {
    margin: 0.5em 0 0;
    padding: 0.2em 0.5em;
    cursor: pointer;
    font-weight: bold;
    color: #1db2b3;
    background: #fff;
}

.FacetingElement__selectedTerm::before {
    content: '\0000d7';
    display: inline-block;
    margin-right: 0.2em;
}

.FacetingElement__filter--hidden {
    display: none;
}

.FacetingElement__link {
    display: block;
    cursor: pointer;
}

.FacetingElement__link,
.FacetingElement__link:hover {
    text-decoration: none;
    color: #fff;
}

/** Show/hide more filter options **/
.FacetingElement__link::before {
    display: inline-block;
}

.FacetingElement__link--expand::before {
    content: '+';
}

.FacetingElement__link--collapse::before {
    content: '-';
}

.js-hideExpandFacetingElementsLink,
.FacetingElement__link--collapse {
    display: none;
}

.FacetingElement__moreOptions {
    height: 0;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
}

.js-showMoreFacetingOptions {
    height: auto;
    visibility: visible;
    opacity: 1;
}

.js-showMoreFacetingOptions + .FacetingElement__link--collapse {
    display: block;
}

@media screen and (min-width: 767px) {
    .FacetingElement li {
        margin-bottom: 0;
    }

    .FacetingElement,
    .FacetingElement__link,
    .FacetingElement label {
        font-size: 0.9em;
    }

    .FacetingElement__radioLabel:hover,
    .FacetingElement__checkboxLabel:hover {
        color: #1fbcbc;
    }

    .FacetingElement__selectedTerm {
        color: #70757a;
        background: #f8f8f8;
    }

    .FacetingElement__link {
        color: #70757a;
    }

    .FacetingElement__link:hover {
        color: #444;
    }
}
