/* SLIDER */
.slider {
  max-width: 80%;
  height: 70vh;
  position: relative;
  vertical-align: middle;
  /* IN THE END */
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  /* THIS creates the animation! */
  transition: transform 1s;
}

.slider__btn {
  position: absolute;
  bottom: 50%;
  background-color: transparent;
  border: none;
  width: 1.5vw;
  cursor: pointer;
  color: #fff;
}

.slider__btn img {
  width: 1.5vw;
}

.slider__btn--left {
  left: 6%;
  transform: translate(-50%, -50%);
}

.slider__btn--right {
  right: 6%;
  transform: translate(50%, -50%);
}

.dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.dots__dot {
  border: none;
  background-color: white;
  opacity: 0.7;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  margin-right: 1.75rem;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: all 0.5s;
}

.dots__dot:last-child {
  margin-right: 0;
}

.dots__dot--active {
  height: 1.4rem;
  margin-top: 0rem;
  background-color: white;
  opacity: 1;
  border-radius: 40%;
}

.function-section button {
  bottom: 30%;
}

/* --------------------------------------------------
------------ Testimonials ---------------------------
---------------------------------------------------*/

.about-testimonial {
  width: 70%;
  position: relative;
  text-align: center;
}

.about-testimonial__image {
  grid-row: 1 / span 2;
  width: 60%;
}

#about-testimonial__image-3 {
  width: 40%;
}

.about-testimonial__text {
  margin: 3.5rem 0px;
}

.app-description-section {
  padding: auto auto;
}

.app-description-slider {
  display: block;
}

.app-description-bg-container {
  backdrop-filter: blur(21px);
  opacity: 0.36;
  position: absolute;
  height: 400px;
  content: none;
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.4);
}

.app-description-bg-container-left {
  width: 60vw;
  margin-top: 220px;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0)
  );
  border-radius: 0px 200px 200px 0px;
}

.app-description-bg-container-right {
  width: 90vw;
  margin-top: 300px;
  right: 0px;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0.5)
  );
  border-radius: 200px 0px 0px 200px;
}

/* --------------------------------------------------
------------ Preference Slider ----------------------
---------------------------------------------------*/

/* Preferences*/
.icon.preferences {
  color: white;
  display: inline-block;
  flex-direction: row;

}

.icon.preferences div {
  color: white;
  display: inline;
}

#iconsForPreferences {
  display: inline-block;
  width: 100%;
  transform: translate(-2%, 10%);
}

#iconsForPreferences img {
  width: 18%;
}

.barslideContainer {
  width: 50%;
  margin-top: 10%;
}
.barslider {
  -webkit-appearance: none;
  width: 80%;
  height: 20px;
  outline: none;
  opacity: 0.92;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
  border-radius: 12px;
  box-shadow: 0p 1px 10px 1px black;
  margin-left: 5.5%;
  margin-top: 1rem;
}
.barslider:hover {
  opacity: 1;
}
.barslider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 27px;
  height: 27px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
}
.barslider::-moz-range-thumb {
  width: 27px;
  height: 27px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
}
#valueSlider {
  /*value unter Balken unsichtbar machen, verschieben hat nicht funktioniert*/
  text-indent: 99999999px;
  color: rgb(0, 219, 177);
  opacity: 0;
}
