.washlet-configurator {
  position: relative;
  display: flex;
  width: calc(100% - 80px);
  margin: 0 auto;
  /*box-shadow: inset 0px 0px 0px 1px #999;*/
  /*box-shadow only left and right*/
  box-shadow: inset 0px 0px 0px 1px #999, inset 0px 0px 0px 1px #999;
  padding-left: 1px;
  padding-right: 1px;
  overflow: hidden;
}
.washlet-configurator .slide-pane {
  width: 50%;
  position: relative;
  height: 100%;
  width: 100%;
}
.washlet-configurator .slide-pane .slides {
  /*height: 100%;*/
  width: 100%;
  position: absolute;
}
.washlet-configurator .slide-pane .slide {
  /*position: absolute;*/
  height: 100%;
  width: 100%;
  background-size: cover;
  /*display: none;*/
  position: relative;
  overflow: hidden;
}
.washlet-configurator .slide-pane .slide.active {
  display: block;
}
.washlet-configurator .left-slide-pane .slide {
  background-position: right;
}
.washlet-configurator .right-slide-pane .slide {
  background-position: left;
}
.washlet-configurator .slide-pane .slide-button {
  /*remove all button default css*/
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  position: absolute;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 0px -3px 5px #000000;
  color: #fff;
}
.washlet-configurator .slide-pane .button-up {
  top: 0;
  /*background fade to transparent*/
}
@media screen and (max-width: 1023px) {
  .washlet-configurator .slide-pane .slide-button {
    height: 50px;
    font-size: 20px;
  }
}

.washlet-configurator .slide-pane .button-up:hover {
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
}
.washlet-configurator .slide-pane .button-up::before {
  /*use UTF-8 &#12297*/
  content: "\3009";

  /*rotate up*/
  transform: rotate(-90deg);
}
.washlet-configurator .slide-pane .button-down {
  bottom: 0;
}
.washlet-configurator .slide-pane .button-down:hover {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
}
.washlet-configurator .slide-pane .button-down::before {
  content: "\3009";
  /*rotate down*/
  transform: rotate(90deg);
}
.washlet-configurator .slide-pane .button-up.disabled,
.washlet-configurator .slide-pane .button-down.disabled {
  display: none;
}

.washlet-configurator .configurator-topnose__wrap {
  /*display: flex;*/
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  justify-content: center;
  z-index: 1;
  flex-direction: column;
}
.washlet-configurator .configurator-topnose {
  background-color: #fff;
  color: #000;
  padding: 5px 10px;
  cursor: pointer;
  align-self: center;
}
.washlet-configurator .configurator-description {
  display: flex;
  height: 0; /* Ausgangszustand: Höhe 0 */
  overflow: hidden; /* Sicherstellen, dass Inhalte nicht sichtbar sind */
  transition: height 0.5s ease; /* Übergang auf height */

  align-self: center;
  background-color: #fff;
  color: #000;
  max-width: 50vw;
  padding: 0 10px;
}
.washlet-configurator
  .configurator-topnose__wrap.active
  .configurator-description {
  padding: 10px;
}

.washlet-configurator .slides-navigation {
  position: absolute;
  top: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}
.washlet-configurator .slides-navigation li {
  border: 1px solid #000;
  background-color: #fff;
  border-radius: 8px;
  height: 15px;
  width: 15px;
}

.washlet-configurator.smallHeight .slides-navigation {
  top: 10px;
  gap: 5px;
}
.washlet-configurator.smallHeight .slides-navigation li {
  height: 8px;
  width: 8px;
  border-radius: 4px;
}

.washlet-configurator .slides-navigation li.active {
  background-color: #000;
}
.washlet-configurator .right-slide-pane .slides-navigation {
  right: 20px;
}
.washlet-configurator .left-slide-pane .slides-navigation {
  left: 20px;
}

@media screen and (max-width: 1023px) {
  .washlet-configurator .slides-navigation {
    flex-direction: row;
    top: 10px;
    gap: 5px;
  }
  .washlet-configurator .slides-navigation li {
    height: 8px;
    width: 8px;
    border-radius: 4px;
  }
  .washlet-configurator .right-slide-pane .slides-navigation {
    right: 10px;
    transform: rotate(180deg);
  }
  .washlet-configurator .left-slide-pane .slides-navigation {
    left: 10px;
  }
}

.washlet-configurator .slide-info {
  position: absolute;
  display: flex;
  z-index: 2;
}
.washlet-configurator .slide-info_one {
  bottom: calc(33% - 110px);
}
.washlet-configurator .slide-info_two {
  bottom: calc(33% - 185px);
}
@media screen and (max-width: 1023px) {
  .washlet-configurator .slide-info_one {
    bottom: calc(33% - 10px);
  }
  .washlet-configurator .slide-info_two {
    bottom: calc(33% - 70px);
  }
}
.washlet-configurator.smallHeight .slide-info_one {
  bottom: calc(33%);
}
.washlet-configurator.smallHeight .slide-info_two {
  bottom: calc(33% - 70px);
}

.washlet-configurator .left-slide-pane .slide-info {
  flex-direction: row-reverse;
  transform: translateX(calc(-100% + 50px));
  transition: all 0.5s ease;
  left: -2px;
}
.washlet-configurator .left-slide-pane .slide-info.active {
  transform: translateX(0);
  transition: all 0.5s ease;
}

.washlet-configurator .right-slide-pane .slide-info {
  right: -2px;
  transform: translateX(calc(100% - 50px));
  transition: all 0.5s ease;
}
.washlet-configurator .right-slide-pane .slide-info.active {
  transform: translateX(0);
  transition: all 0.5s ease;
}

.washlet-configurator .slide-info-toggle {
  /*remove all button default css*/
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: normal;
  /*text-shadow: 0px -3px 5px #000000;*/
  background-color: #fff;
  color: #666;
  border-left: 1px solid #999;
}
.washlet-configurator .slide-info-toggle::before {
  content: "i";
  /*margin-top: 1px;*/
  border: 1px solid #666;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
}

.washlet-configurator .right-slide-pane .slide-info-toggle {
  border-left: none;
  border-right: 1px solid #666;
}
.washlet-configurator .right-slide-pane .slide-info-toggle::before {
  /*transform: rotate(180deg);
  margin-top: -2px;*/
}

.washlet-configurator .slide-info .slide-info-text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  background-color: #fff;
  color: #3088ce !important;
  /*disable word line break*/
  white-space: nowrap;
}

.washlet-configurator .slide-info .slide-info-text a {
  color: #000;
  font-weight: normal;
}

/*Linkanimation Linie*/
.washlet-configurator .link-animated-line {
  display: flex;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.washlet-configurator .link-animated-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: #000;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease, transform-origin 0s;
}

.washlet-configurator .link-animated-line:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.washlet-configurator .link-animated-line .link-animated-arrow {
  position: relative;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  width: 10px;
  overflow: hidden;
  right: 1px;
}
.washlet-configurator .link-animated-line .link-animated-arrow::after {
  content: ">";
  position: absolute;
  left: 0;
  height: 100%;
  width: 10%;
  -webkit-transition: all 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.washlet-configurator .link-animated-line:hover .link-animated-arrow::after {
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  width: 100%;
  left: 100%;
}

.washlet-configurator .link-animated-line .link-animated-arrow::before {
  content: ">";
  position: absolute;
  left: -100%;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.washlet-configurator .link-animated-line:hover .link-animated-arrow::before {
  -webkit-transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  width: 100%;
  left: 0;
}
/*Linkanimation Linie ENDE*/
