/**
 * Touch handling for jQuery UI sliders (rate / price range filters).
 * Without `touch-action: none` the browser claims the gesture for scrolling
 * before the drag can start on iOS / iPadOS Safari and Android Chrome.
 */
.ui-slider,
.ui-slider .ui-slider-handle,
.ui-slider .ui-slider-range {
    -ms-touch-action: none;
    touch-action: none;
}

.ui-slider .ui-slider-handle {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}
