.rangeslider, .rangeslider__fill {
  display: block;
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  border-radius: 40px;
}

.rangeslider {
  background-image: linear-gradient(to right, #ff0100, #ff5100, #ff9200, #ffc900, #fff300, #f2ff04, #c7f711, #8fdd21, #52b833, #0c8f47);
  position: relative;
}

.rangeslider--horizontal {
  height: 30px;
  width: 80%;
  margin: auto;
  display: inline-block;
  cursor: pointer;
}

.rangeslider__fill::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -47%);
  width: 100%;
  content: "0 1 2 3 4 5 6 7 8 9 10";
  text-align: center;
  word-spacing: inherit;
  font-size: inherit;
  font-weight: 900;
}

.rangeslider--vertical {
  width: 20px;
  min-height: 150px;
  max-height: 100%;
}

.rangeslider--disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4;
}

.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%;
}
.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%;
}

.rangeslider__handle {
  background: #fabd09;
  cursor: pointer;
  display: inline-block;
  width: 70px;
  height: 70px;
  position: absolute;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.selectedNumber {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, -150%);
  font-weight: 900;
  cursor: default;
}

.rangeslider__handle:after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #131313;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.rangeslider--horizontal .rangeslider__handle {
  top: -22px;
  touch-action: pan-y;
  -ms-touch-action: pan-y;
}
.rangeslider--vertical .rangeslider__handle {
  left: -10px;
  touch-action: pan-x;
  -ms-touch-action: pan-x;
}

.range-output {
    display: none;
}