.sliderImageDescription {
  /*! BILD OBERHALB DER SLIDER */
  width: 100%;
  margin-bottom: 3em;
}

.slidecontainer {
  padding-right: 2em;
}

.range-slider {
  display: inline-block;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 0.5em;
}

.range-slider > input {
  opacity: 0;
  width: 100%;
  position: relative;
  z-index: 5;
  margin-top: 0.5em;
  -webkit-appearance: none;
}

.range-slider > input::-webkit-slider-thumb {
  -webkit-appearance: none;
  z-index: 8;
  position: relative;
  width: 8em;
  height: 8em;
  -webkit-border-radius: 10px;
}

.range-slider > span.slider-container {
  display: inline-block;
  min-height: 4em;
  display: inline-block;
  position: absolute;
  top: 2.5em;
  left: -0.5em;
  right: 3em;
  z-index: 3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.range-slider > span.slider-container > span.bar {
  /* linie */
  background-color: grey;
  display: inline-block;
  position: absolute;
  z-index: 1;
  top: 1em;
  left: 1em;
  right: -1em;
  height: 3px;
  overflow: hidden;
  border-radius: 10px;
}

.range-slider > span.slider-container > span.bar > span {
  background: var(--dark-color);
  display: inline-block;
  float: left;
  height: 1em;
  width: 0%;
}

.range-slider > span.slider-container > span.bar-btn {
  /* Zahlen Container */
  display: inline-block;
  position: absolute;
  width: 2em;
  height: 1.5em;
  padding-top: 0.5em;
  font-weight: bold;
  text-align: center;
  background: #fff;
  left: 0px;
  top: -3em;
  border-radius: 1px;
  border: 3px solid var(--dark-color);
  z-index: 3;
}

.range-slider > span.slider-container > span.bar-btn:after {
  /* Punkt */
  content: "";
  border: 0.6em solid #fff;
  background-color: var(--dark-color);
  border-radius: 100%;
  width: 0.6em;
  height: 0.6em;
  display: inline-block;
  position: absolute;
  left: 0.3em;
  top: 3em;
  z-index: 2;
  -webkit-box-shadow: 0px 0px 12px black;
  box-shadow: 0px 0px 2px black;
}

.range-slider > span.slider-container > span.bar-btn > span {
  /* dreieck */
}

.range-slider > span.slider-container > span.bar-btn > span:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-width: 0.6em;
  border-style: solid;
  border-color: var(--dark-color) transparent transparent;
  position: absolute;
  top: 2em;
  left: 0.5em;
}

.range-slider > span.slider-container > span.bar-btn > span:after {
  content: "";
}

/*! Iphone portrait */
@media only screen and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .sliderImageDescription {
    /*! BILD OBERHALB DER SLIDER */
    width: 100%;
    margin-bottom: 3em;
  }
  .range-slider > input {
    margin-top: 8em;
  }
  .range-slider > span.slider-container {
    min-height: 4em;
  }
  .range-slider > span.slider-container > span.bar {
    height: 5px;
  }
  .range-slider > span.slider-container > span.bar-btn > span:after {
    content: "";
  }
}
/*# sourceMappingURL=input_slider.css.map */