.slider {
  position: relative;
  width: 80%;
  height: 20px;
  background-color: aliceblue;
  border-radius: 10px;
  border: 1px solid #e6f3ff;
  margin: auto;
  cursor: pointer;
  user-select: none;
}
.slider-content {
  display: none;
}
.slider-point {
  position: absolute;
  width: 30px;
  height: 30px;
  margin-left: -15px;
  border-radius: 50%;
  background-color: #7eb336;
  top: -6px;
  left: 0;
  z-index: 1;
}
.slider-info {
  position: fixed;
  top: 10px;
  left: 10px;
}
.slider-fill {
  position: absolute;
  border-radius: 10px;
  top: 0;
  left: 0;
  height: 20px;
  width: 0;
  background-color: #7eb336;
}
.slider-labels {
  position: absolute;
  display: flex;
  left: -5px;
}
.slider-labels .label {
  border-right: 1px solid white;
  height: 20px;
  width: 0;
}
.slider-labels .label:last-child {
  border-right: 0;
}
/*# sourceMappingURL=slider.css.map */