
.slider p {
  text-transform: capitalize;
  width: 100%;
}

.slider input {
  -webkit-appearance: none;
  /*width: 120px;*/
  height: 6px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider input:hover {
  opacity: 1;
}

.slider input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: gray;
  cursor: pointer;
}


.slider input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
}


.slider.purple input::-webkit-slider-thumb {
  background-color: #5a4caf;
}
.slider.purple input::-moz-range-thumb {
  background-color: #5a4caf;
}


@media only screen and (max-width: 800px) {
/*  .slider input {
    width: 6em;
  }*/
  .slider input::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
  }

  .slider input::-moz-range-thumb {
    width: 24px;
    height: 24px;
  }

}