.slider-range-container{
    width: 100%;
    height: 10px;
    border: 1px solid #999;
    border-radius: 3px;
    display: block;
    position: relative;
    z-index: 0;
    box-sizing: border-box;
}

.slider-range-container-disabled{
    background-color: #DDD;
}

.slider-range-handle{
    height: 20px;
    width: 20px;
    background-color: #E9E9E9;
    border-radius: 4px;
    cursor: col-resize;
    border: 1px solid #888;
    position: absolute;
    top: -7px;
    display: inline-block;
    z-index: 2;
}

.slider-range-handle:hover{
    background-color: #AAA;
}

.slider-range-handle-disabled{
    background-color: rgba(160, 160, 160, 1);
    cursor: not-allowed;
}
.slider-range-handle-disabled:hover{
    background-color: rgba(180, 180, 180, 1);
}

.slider-range-highlight{
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1;
}
