*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.wrapper {
  position: relative;
  /* width: 80%;
  background-color: #ffffff;
  padding: 50px 40px 20px 40px;
  border-radius: 10px; */
}
.container {
  position: relative;
  width: 100%;
  height: 30px;
  /* margin-top: 30px; */
}
input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 95%;
  outline: none;
  position: absolute;
  margin: auto;
  /* top: 0px; */
  /* bottom: 0;  */
  background-color: transparent;
  pointer-events: none;
  left:2px;
}
.slider-track {
  width: 100%;
  height: 5px;
  position: relative;
  margin: auto;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  background-color: #737378;
}
input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 5px;
}
input[type="range"]::-moz-range-track {
  -moz-appearance: none;
  height: 5px;
}
input[type="range"]::-ms-track {
  appearance: none;
  height: 5px;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 0.8em;
  width: 0.8em;
  background-color: #00ff3c;    
  cursor: pointer;
  margin-top: -9px;
  pointer-events: auto;
  border-radius: 50%;
  border: solid 2px rgb(77, 161, 77)
}
input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 1.7em;
  width: 1.7em;
  cursor: pointer;
  border-radius: 50%;
  background-color: #32fe62;
  pointer-events: auto;
  border: none;
}
input[type="range"]::-ms-thumb {
  appearance: none;
  height: 1.7em;
  width: 1.7em;
  cursor: pointer;
  border-radius: 50%;
  background-color: #3264fe;
  pointer-events: auto;
}
input[type="range"]:active::-webkit-slider-thumb {
  background-color: #ffffff;
  border: 1px solid #32fe46;
}
.values {
  /* background-color: #3264fe;
  width: 32%; */
  position: relative;
  margin: auto;
  /* padding: 10px 0;
  border-radius: 5px; */
  text-align: center;
  /* font-weight: 500;
  font-size: 25px; */
  color: #ffffff;
}

