.filter-option {
    display: none;
}

.filter-option.show {
    display: block;
}

.show-more-toggle .show-more i,
.show-more-toggle .hide-filters i {
    padding-left: 5px;
}

.show-more, .hide-filters {
    color: #2c7dcc;
    font-weight: 600;
    cursor: pointer;
}

.show-more:hover, .hide-filters:hover {
    text-decoration: underline;
}

.price-filter-container {
    /*padding-inline: 5px;*/
}

#price-slider {
    height: 10px;
    padding-inline: 5px;
}

#price-slider .noUi-connect {
    background: #2c7cca;
}

#price-slider .noUi-handle {
    height: 18px;
    width: 18px;
    top: -5px;
    right: -9px;
    border-radius: 9px;
}

#price-range {
    padding-block-end: 10px;
}

#price-slider .noUi-handle:after, #price-slider .noUi-handle:before {
    background: none;
}

.filter-label {
    width: 100%;
}

.filter-count-container {
    width: 17px;
    display: inline-flex;
}

.filter-count {
    width: 5px;
    height: 5px;
    display: inline-flex;
    position: relative;
    margin-left: 7px;
    border-radius: 50%;
    animation: l5 1s infinite linear alternate;
    animation-delay: .1s;

}
@keyframes l5 {
    0%  {box-shadow: 7px 0 #000, -7px 0 #0002;background: #000 }
    33% {box-shadow: 7px 0 #000, -7px 0 #0002;background: #0002}
    66% {box-shadow: 7px 0 #0002,-7px 0 #000; background: #0002}
    100%{box-shadow: 7px 0 #0002,-7px 0 #000; background: #000 }
}

