.SliderContainer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(246, 246, 246);
  /* Hintergrundfarbe mit Transparenz für Overlay-Effekt */
  z-index: 9999;
  /* Stellen Sie sicher, dass das Div über allem anderen liegt */
  overflow: hidden;
  /* Verhindern Sie das Scrollen im Div */
  display: none;
}

.mySlide {
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}



/* Next & previous buttons */
.prev,
.next,
.close,
.dots {
  cursor: pointer;
  position: absolute;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 2;
}

.next, .prev , .close {
  background-color: #717171;
  border-radius: 5px;
}

/* Position the "next button" to the right */
.next,
.close {
  right: 0%;
}

.prev,
.next {
  top: 50%;
}

.close {
  top: 1%;
}

.dots {
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}


/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover,
.close:hover {
  background-color: rgba(0, 0, 0, 0.8);
}



/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active,
.dot:hover {
  background-color: #717171;
}