.rangeSlider {
    margin: 10px 0;
    visibility: hidden;
    -webkit-tap-highlight-color: transparent;
}
.rangeSlider .tray {
    position: relative;
    margin: 10px 20px 12px 20px;
}
.rangeSlider .tray .background {
    height: 3px;
    background: #b2b2b2;
    border-width: 1px 1px 0 1px;
    border-style: solid;
    border-color: #6f6f6f;
    margin: 0 -20px;
    -webkit-border-radius: 1em;
    border-radius: 1em;
}
.rangeSlider.singleButtonMax .tray,
.rangeSlider.singleButtonMax .tray .background {
    margin-left: 0;
}
.rangeSlider.singleButtonMin .tray,
.rangeSlider.singleButtonMin .tray .background {
    margin-right: 0;
}
.rangeSlider .selection {
    background: #09f;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 160px;
    display: block;
    border-top: 1px solid #0164A6;
}
.rangeSlider.singleButtonMax .selection {
    -webkit-border-radius: 1em 0 0 1em;
    border-radius: 1em 0 0 1em;
}
.rangeSlider.singleButtonMin .selection {
    -webkit-border-radius: 0 1em 1em 0;
    border-radius: 0 1em 1em 0;
}
.rangeSlider.active .selection {
    background: #09f;
}
.rangeSlider .button {
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    top: -9px;
    left: 0;
    background-color: #0183da;
    border: 1px solid #0064a5;
    background-image: -moz-radial-gradient(#5db2eb 22%, transparent 0), -moz-linear-gradient(center bottom , #0183da, #0099ff);
    background-image: -webkit-radial-gradient(#5db2eb 22%, transparent 0), -webkit-linear-gradient(bottom, #0183da, #0099ff);
    background-image: -o-radial-gradient(#5db2eb 22%, transparent 0), -o-linear-gradient(bottom, #0183da, #0099ff);
    background-image: radial-gradient(#5db2eb 22%, transparent 0), linear-gradient(bottom, #0183da, #0099ff);
    margin: 0;
    padding: 0;
    float: none;
    -webkit-border-radius: 1em;
    border-radius: 1em;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
}
.rangeSlider .button.active {
    top: -7px;
    border: 1px solid #efefef;
    -webkit-box-shadow: 0 0 40px 8px rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 40px 8px rgba(255, 255, 255, 0.7);
}