/* --- FILTER --- */
.filter {
    position: relative;
    border: 1px solid #7D7D7D;
    border-radius: 10px;
    background: #fff;
    transition: color .5s, border-color .5s, box-shadow .5s;
}
.filter .dropdown__toggle {
    padding: 15px 20px 14px 15px;
}
.filter .dropdown__toggle--icon::after {
    position: absolute;
    top: 28px;
    right: 15px;
    color: #00AAB8;
}
.filter.dropdown--active {
    border: 1px solid #00AAB8;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    outline: none;
}
.filter .dropdown__content {
    display: none;
    top: 100%;
    right: -1px;
    left: -1px;
    width: auto;
    max-height: 400px;
    padding: 0;
    border-radius: 0 0 10px 10px;
    border: 1px solid #7D7D7D;
    border-top-color: #EFEFEF;
    transform: none;
}
.filter.dropdown--active .dropdown__content {
    display: block;
    border-color: #EFEFEF #00AAB8 #00AAB8;
}
.filter .dropdown__content .form__input-list {
    padding: 15px;
}
.filter .dropdown__content .form__input-list.nested {
    padding: 0;
}
.filter .accordion.form-check {
    margin-bottom: 0;
}

/* --- FILTER PILLS --- */
.filter-pills .pill {
    cursor: pointer;
    margin-bottom: 0.75rem;
}
.filter-pills .pill + .pill {
    margin-left: 0;
}
.filter-pills .pill:not(:last-of-type) {
    margin-right: 1rem;
}
.filter-pills .pill .btn--icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    position: relative;
    right: -8px;
    background: #242424;
    border-radius: 100%;
}
.filter-pills .pill .btn--icon::before {
    font-size: 16px;
}
