.rangeslider,
.rangeslider__fill {
  display: block;
}

.rangeslider {
  background: #e4e9ed;
  position: relative;
  border-radius:30px;
}

.rangeslider--horizontal {
  height: 7px;
  position: relative;
  background: #e8e8e8;
  width: 100%;
  border-radius:30px;
}

.rangeslider--vertical {
  width: 20px;
  min-height: 150px;
  max-height: 100%;
}

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

.rangeslider__fill {
  /*background: url('../img/track-on.png');*/
  position: absolute;
  border-radius:30px;
  z-index: 50;
  background: #0367b3;
}
.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%;
}
.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%;
}

.rangeslider__handle {
  background: #0367b3;
  cursor: pointer;
  display: inline-block;
  width: 19px;
  height: 19px;
  position: absolute;
  background: url('../img/handle.png');
  z-index: 300;
}

.rangeslider__handle:active, .rangeslider--active .rangeslider__handle {
 
}
.rangeslider--horizontal .rangeslider__handle {
  top: -7px;
  touch-action: pan-y;
  -ms-touch-action: pan-y;
}
.rangeslider--vertical .rangeslider__handle {
  left: -19px;
  touch-action: pan-x;
  -ms-touch-action: pan-x;
}

input[type="range"]:focus + .rangeslider .rangeslider__handle {

}
