.rangeslider,
.rangeslider__fill {
  display: block;
  margin-bottom: 60px;
}

.rangeslider {
  background: #e6e6e6;
  position: relative;
}

.rangeslider--horizontal {
  height: 3px;
  width: 100%;
}

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

.rangeslider__fill {
  background: #2c8b10;
  position: absolute;
}
.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%;
}
.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%;
}
.rangeslider__handle {
  background: white;
  border: 3px solid #2c8b10;
  cursor: pointer;
  display: inline-block;
  width: 27px;
  height: 27px;
  position: absolute;
  background: #fff;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.rangeslider__handle:active, .rangeslider--active .rangeslider__handle {
  background: #2c8b10;
}
.rangeslider--horizontal .rangeslider__handle {
  top: -11px;
  touch-action: pan-y;
  -ms-touch-action: pan-y;
}
.rangeslider--vertical .rangeslider__handle {
  left: -10px;
  touch-action: pan-x;
  -ms-touch-action: pan-x;
}

.rangeslider__value-bubble {
  display: block;
  font: 14px 'LatoLatinWebBlack';
  padding: 5px;
  color: #2c8b10;
  position: absolute;
  top: 25px;
  width: 70px;
  margin-left: -35px;
  text-align: center;
  background: #eee;
}

