datalist {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  writing-mode: vertical-lr;
  width: 200px;
}

option {
  padding: 0;
}

.result-range input[type=range]::-webkit-slider-runnable-track {
  width: auto;
  height: 5px;
  background: none;
  border: none;
}

.result-range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 50px;
  width: 16px;
  opacity: 0.8;
  border-radius: 30%;
  /*background: $primary-color;*/
}

