.ui-slider {
    position: relative;
    text-align: left;
}
.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    border: 3px solid #FFF;
    background: #f6f6f6;
    font-weight: bold;
    color: #1c94c4;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    cursor: pointer;
    -ms-touch-action: none;
    touch-action: none;
}
.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
    filter: inherit;
}

.ui-slider-horizontal {
    height: 5px;
}
.ui-slider-horizontal .ui-slider-handle {
    top: -.3em;
    margin-left: -.6em;
    background-color: #CCC;
}
.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
    left: 0;
    height: 5px;
}
.ui-slider-horizontal .ui-slider-range-max {
    right: 0;
}
/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    border: 3px solid #FFF;
    background: #red;
    font-weight: bold;
    color: #1c94c4;
    width: 8px;
    height: 8px;
    border-radius: 8px;
}
.ui-state-active{
    text-decoration: none;
}
