.range {
  position: relative;
  width: 200px;
  height: 5px;
  border-radius: 5px;
  padding-top: 15px;
}
.range input {
  width: 100%;
  position: absolute;
  height: 5px;
  border-radius: 5px;
  -webkit-appearance: none;
}
.range input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: -7px 0 0;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  border: 0 !important;
}
.range input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  margin: -8px 0 0;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  border: 0 !important;
}
.range input::-ms-thumb {
  width: 18px;
  height: 18px;
  margin: -8px 0 0;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  border: 0 !important;
}
.range input::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: #b2b2b2;
  border-radius: 5px;
}
.range input::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: #b2b2b2;
}
.range input::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: #b2b2b2;
}
.range input:focus {
  background: none;
  outline: none;
}
.range input::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
.range-labels {
  margin: 18px -25px 0;
  padding: 0;
  list-style: none;
}
.range-labels li {
  position: relative;
  float: left;
  width: 65.25px;
  text-align: center;
  color: #b2b2b2;
  font-size: 14px;
  cursor: pointer;
}
.range-labels .active {
  color: #333;
}
.range-labels .selected::before {
  background: #333;
}
.range-labels .active.selected::before {
  display: none;
}

/*
@media only screen and (max-width: 992px) {
  .range {
    width: 550px;
    height: 25px;
    padding-top: 35px;
    border-radius: 25px;
  }

  .range input {
    height: 5px;
    border-radius: 15px;
    margin-top: 15px;
  }

  .range input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 50px;
    height: 50px;
    margin: -20px 0 0;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    border: 0 !important;
  }
  .range input::-moz-range-thumb {
    width: 50px;
    height: 50px;
    margin: -8px 0 0;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    border: 0 !important;
  }
  .range input::-ms-thumb {
    width: 50px;
    height: 50px;
    margin: -8px 0 0;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    border: 0 !important;
  }

  .range input::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    background: #b2b2b2;
    border-radius: 5px;
  }
  .range input::-moz-range-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    background: #b2b2b2;
  }
  .range input::-ms-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    background: #b2b2b2;
  }

  .range-labels {
    margin: 80px -70px 0;
    padding: 0;
  }
  .range-labels li {
    width: 175px;
    font-size: 2rem;
  }
}
*/
