input[type=range]:focus {
  outline: none;
}

input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  margin: 18px 0;
  width: 100%;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%!important;
  height: 10px!important;
  cursor: pointer!important;
  background-color: var(--theme-palette-color-5)!important;
  border-radius: 5px!important;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  background-color: var(--theme-palette-color-5);
  border-radius: 5px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 8px solid var(--theme-palette-color-1);
  height: 34px;
  width: 34px;
  border-radius: 50%;
  background-color: var(--theme-palette-color-1);
  cursor: pointer;
  margin-top: -14px;
}

input[type=range]::-moz-range-thumb {
  /*border:8px solid var(--paletteColor1);*/
  border:8px solid var(--theme-palette-color-1);
  height: 24px;
  width: 24px;
  border-radius: 50%;
  /*background-color: var(--paletteColor1);*/
  background-color: var(--theme-palette-color-1);
  cursor: pointer;
  margin-top: -14px;
}

@media only screen and (max-width:580px) {
  .rechner-sliderbox{
    width: 90%!important;
  }
}

@media only screen and (min-width:581px) and (max-width:870px) {
  .rechner-sliderbox{
    width: 66.6%!important;
  }
}

@media only screen and (min-width:871px) {
  .rechner-sliderbox{
    width: 40%!important;
  }
}

.rechner-input-value{
  font-weight: 600;
}

.rechner-slidertext, .calc-result-box{
  text-align: center;
  margin: 30px 0 0 0;
}

.rechner-dropdowntext{
  text-align: center;
  margin: 30px 0 15px 0;
}

.rechner-dropdown{
  text-align-last: center;
}

.rechner-ergebnis{
  margin: 50px 0 0 0;
}

.calc-result-a{
  font-weight: 900;
  font-size: 32px;
  line-height: 28px;
}

.calc-result-b{
  font-weight: 600;
  font-size: 26px;
}

.calc-result-c{
  font-weight: 600;
  font-size: 20px;
}

.calc-result-d{
  font-weight: 600;
  font-size: 16px;
}

.calc-result-number{
  margin: 0 0 5px 0;
}

.calc-result-subtitle{
  font-size: 12px;
  font-weight: 300;
}
