/* body {
  height: 100%;
  max-width: 480px;
  margin: 0 auto;
  background-color: #05051a;

}

.total {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
} */
.slider-text{
  position: relative;
  height:  var(--slider-height);
  width:70px;
}
.slider {
  height: 70px;
  width: var(--slider-height);
  background-color: rgba(255, 255, 255, 0.577);
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0;
  border-radius: 1rem;
  overflow: hidden;
  cursor: row-resize;
  transform:  translate(-50%, -50%)rotate(-90deg);
}

.value{
  position: absolute;
  color: var(--dark-text-color);
  font-size: 2.5em;
  text-align: center;
  transform: rotate(90deg);
  left: 0;
  top: 0;
  bottom: 0;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 900;
}

input[type="range"] {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  cursor: row-resize;
  opacity: 0;
}

.slider-fill {
  position: absolute;
  bottom: 0;
  background-color: white;
  height: 100%;
  width: 50%;
  border-radius: 1rem;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 0;
  box-shadow: -20rem 0 0 20rem rgba(#fff, 0.2);
}

input[type="range"]::-moz-range-thumb {
  border: none;
  width: 0;
  box-shadow: -20rem 0 0 20rem rgba(#fff, 0.2);
}