File: /var/www/zaklada/html/lib/scss/core/_range-slider.scss
.rangeslider,
.rangeslider__fill {
  display: block;
}
.rangeslider {
  background: #d0d0d0;
  position: relative;
}
.rangeslider--horizontal {
  height: 4px;
  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: $color-blue-dark;
  position: absolute;
}
.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%;
}
.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%;
}
.rangeslider__handle {
  background:$color-blue-dark;
  border: none;
  cursor: pointer;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
}
.rangeslider--horizontal .rangeslider__handle {
  top: -8px;
  touch-action: pan-y;
}
.rangeslider--vertical .rangeslider__handle {
  left: -10px;
  touch-action: pan-x;
}
.range-wrap {
  margin: 29px 0 86px 0;
  position: relative;
  .range-min, .range-max {
    font-size: rem(14);
    line-height: 1.14;
    font-weight: normal;
    color: #6f6f6f;
    position: absolute;
    top: calc(100% + 10px);
  }
  .range-min {
    left: 0;
  }
  .range-max {
    right: 0;
  }
}