/* Custom Filters Plugin Styles */
.custom-filters-form {
    margin-bottom: 20px;
}
.custom-filters-form .form-group {
    margin-bottom: 15px;
}
#price_slider {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
}
#price_range_display {
    display: flex;
    justify-content: space-between;
}
.custom-filters-form .widget-title {
    padding: 5px 10px;
    color: #fff;
    text-transform: uppercase;
    display: block;
}
.custom-filters-form .form-group{
   padding: 10px;
   background: #fff;
   -webkit-box-shadow: 0px 0px 5px 0px rgb(50 50 50 / 13%);
   -moz-box-shadow: 0px 0px 5px 0px rgb(50 50 50 / 13%);
   box-shadow: 0px 0px 5px 0px rgb(50 50 50 / 13%); 
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: none !important;
    font-weight: normal;
    color: #fff;
    border-radius: 100%;
}
.ui-slider-horizontal {
    height: 0.4em !important;
}
.ui-slider .ui-slider-handle {
    width: 0.8em !important;
    height: 0.8em !important;
}
.ui-slider-horizontal .ui-slider-handle {
    margin-left: -.4em !important;
}
/* Hide desktop slider on mobile */
@media (max-width: 767px) {
    #price_slider, #price_range_display {
        display: none;
    }
}

/* Hide mobile input on desktop */
@media (min-width: 768px) {
    .mobile {
        display: none;
    }
}