/* Ersatz für Owl-Carousel: gleiche Optik (Fade-Slideshow mit Punkten), ohne jQuery */
#image_show .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}
#image_show .slide.active {
  opacity: 1;
}
.slide_dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  z-index: 3;
}
.slide_dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  border-radius: 50%;
  background: #869791;
  opacity: 0.5;
  cursor: pointer;
}
.slide_dots span.active {
  opacity: 1;
}
