.input-range__slider {
  appearance: none;
  background: #3f51b5;
  border: 1px solid #3f51b5;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  height: 1.8rem;
  margin-left: -0.9rem;
  margin-top: -1.1rem;
  outline: none;
  position: absolute;
  top: 50%;
  width: 1.8rem;
}
.input-range__slider:active {
  transform: scale(1.3);
}
.input-range__slider:focus {
  box-shadow: 0 0 0 5px rgba(63, 81, 181, 0.2);
}
.input-range--disabled .input-range__slider {
  background: #cccccc;
  border: 1px solid #cccccc;
  box-shadow: none;
  transform: none;
}
.input-range__label {
  color: #aaaaaa;
  font-family: "Helvetica Neue", san-serif;
  font-size: 0.8rem;
  transform: translateZ(0);
  white-space: nowrap;
}
.input-range__label--min,
.input-range__label--max {
  bottom: -1.4rem;
  position: absolute;
}
.input-range__label--min {
  display: none;
  left: 0;
}
.input-range__label--max {
  display: none;
  right: 0;
}
.visible .input-range__label--value {
  opacity: 1;
}
.input-range__label--value {
  opacity: 0;
  transition: opacity 0.25s ease;
  font-family: TradeGothic;
  text-align: center;
  position: absolute;
  top: -3.4rem;
  left: -2.1rem;
  background-color: #e8e8e8;
  padding: 0.5rem 0.8rem 0.1rem 0.8rem;
  color: rgba(0, 0, 0, 0.9);
  font-size: 1.2rem;
  font-weight: 700;
  border: 0 solid transparent;
  border-radius: 0.28571429rem;
}
.input-range__label--value:before {
  border-width: 0 1px 1px 0;
  top: auto;
  right: auto;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  top: 80%;
  left: 42%;
  position: absolute;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-image: none;
  z-index: 2;
  width: 0.6666em;
  height: 0.6666em;
  -webkit-transition: background 0.1s ease;
  transition: background 0.1s ease;
  background-color: inherit;
  background-image: inherit;
  border-width: none;
  border-style: solid;
  border-color: inherit;
}
.input-range__label-container {
  position: relative;
  width: 34px;
  display: inline-block;
}
.input-range__track {
  background: #eeeeee;
  border-radius: 0.4rem;
  cursor: pointer;
  display: block;
  height: 0.4rem;
  position: relative;
}
.input-range--disabled .input-range__track {
  background: #eeeeee;
}
.input-range__track--background {
  left: 0;
  margin-top: -0.2rem;
  position: absolute;
  right: 0;
  top: 50%;
}
.input-range__track--active {
  background: #3f51b5;
}
.input-range {
  height: 1.8rem;
  position: relative;
  width: 100%;
}
