.rangeslider,
.rangeslider__fill {
  display: block;
  border-radius: 7px;
}

.rangeslider {
  background: #fff;
  position: relative;
margin-bottom: 5px;
margin-top:3px;
z-index: 3;
}

.rangeslider--horizontal {
  height: 12px;
  width: 100%;
}

.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: #033853;
  position: absolute;
}
.rangeslider--horizontal .rangeslider__fill {
  top: 1px;
  left:1px;
  height: calc(100% - 2px);
width: calc(100% - 2px);
}
.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%;
}

.rangeslider__handle {
  background: #fff;
  border: 1px solid #033853;
  cursor: pointer;
  display: inline-block;
  width: 18px;
  height: 18px;
  position: absolute; 
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.rangeslider--horizontal .rangeslider__handle {
  top: -3px;
  touch-action: pan-y;
  -ms-touch-action: pan-y;
}
.rangeslider--vertical .rangeslider__handle {
  left: -10px;
  touch-action: pan-x;
  -ms-touch-action: pan-x;
}

input[type="range"]:focus + .rangeslider .rangeslider__handle {
  -moz-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  -webkit-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
}
