.rangeslider,
.rangeslider__fill {
  display: block;
  width: 305px;;
  height: 10px;
  background: #e5e5e5;
}

.rangeslider {
  position: relative;
  border-top: 1px solid #a9a9a9;
  border-bottom: 1px solid #fff;
  border-radius: 6px;
  box-shadow: inset 0 0 1px rgba(0,0,0,0.2);
}

.rangeslider--disabled {
  opacity: 0.4;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
}

.rangeslider__fill {
  position: absolute;
  top: 0;
  border-radius: 5px;
  background: url(../images/range-fill.png);
}

.rangeslider__handle {
  position: absolute;
  top: -5px;
  width: 13px;
  height: 25px;
  z-index: 100;
  -webkit-overflow-scrolling: touch;
}

.rangeslider__handle:after {
  position: absolute;
  top: 0;
  left: -3px;
  display: block;
  width: 19px;
  height: 25px;
  background: url(../images/range-handle.png) no-repeat 50% 0;
  content: "";
}
.rangeslider__handle:active {
  opacity: 0.8;
}
