.rangeslider,
.rangeslider__fill {
  display: block;
}

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

.rangeslider--horizontal {
  height: 8px;
  width: 100%;
  border-radius:6px;
}

.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: #1e8bc3;
  position: absolute;
  border-radius:6px;
}
.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%;
}
.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%;
}

.rangeslider__handle {
  background: #1e8bc3;
  cursor: pointer;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #1e8bc3;
  position: absolute;
  border-radius:100%;
  border:2px solid #fff;
  box-shadow: 0px 0px 6px 0px rgba(0,0,0,.35);
}

.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: -7px;
  touch-action: pan-x;
  -ms-touch-action: pan-x;
}

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

}
