/* =============================================
   Softweb Price Slider
   ============================================= */

.softweb-price-slider {
    padding: 10px 5px 5px;
}

/* Slider track */
.softweb-price-slider .ui-slider {
    position: relative;
    background: #e0e0e0;
    border: none;
    border-radius: 3px;
    height: 6px;
    margin: 0 9px;
    cursor: pointer;
}

/* Selected range between handles */
.softweb-price-slider .ui-slider .ui-slider-range {
    position: absolute;
    top: 0;
    height: 100%;
    background: #f58220;
    border-radius: 3px;
    z-index: 1;
}

/* Handles */
.softweb-price-slider .ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 18px;
    height: 18px;
    background: #f58220;
    border: 2px solid #f58220;
    border-radius: 50%;
    top: -7px;
    margin-left: -9px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    touch-action: none;
    box-sizing: border-box;
}

.softweb-price-slider .ui-slider .ui-slider-handle:hover,
.softweb-price-slider .ui-slider .ui-slider-handle:focus {
    background: #e07010;
    border-color: #e07010;
}

.softweb-price-slider .ui-slider .ui-slider-handle:active {
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.25);
}

/* Price display */
.softweb-price-slider .price-slider-display {
    text-align: center;
    margin-top: 10px;
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}
