.range-input {
  font-family: system-ui;
}
  
.range-input {
  -webkit-appearance: none;
  appearance: none; 
  width: 100%;
  cursor: pointer;
  outline: none;
  border-radius: 25em;
  height: 0.9em;
  background: #ffffff;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.3);
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none; 
  width: 2em;
  height: 2em;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  border: none;
  transition: .2s ease-in-out;
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
}

.range-input::-moz-range-thumb {
    width: 2em;
  height: 2em;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  border: none;
  transition: .2s ease-in-out;
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
}


.range {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
