body{
    background-attachment: fixed;
}
.custom-slider-row {
  display: flex;
  align-items: center;
  background-color: #E53935;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 20px;
  height: 50px;
  /* padding-right: 15px; */
}

.slider-label {
  background-color: #E53935; /* Red */
  color: white;
  padding: 0 15px;
  font-size: 14px;
  height: 100%;
  width: 150px;
  display: flex;
  align-items: center;
  font-weight: bold;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  white-space: nowrap;
}

.button-calculate-token{
    background-color: #E53935;
}
.button-calculate-token:hover{
    background-color: #7b1211;
}
.custom-slider-row input[type="range"] {
  appearance: none;
  width: 100%;
  background: transparent;
  height: 100%;
  margin: 0;
  background: white;
    padding-right: 10px;
    padding-left: 10px;
}

.custom-slider-row input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #E53935;
  cursor: pointer;
  margin-top: -11px;
}

.custom-slider-row input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  background: transparent;
  border-radius: 5px;
}

.custom-slider-row input[type="range"]::-moz-range-thumb {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #E53935;
  cursor: pointer;
}

.custom-slider-row input[type="range"]::-moz-range-track {
  height: 8px;
  background: transparent;
  border-radius: 5px;
}
