* {box-sizing:border-box}

/*Gallerie-Übersicht*/

.overview-container {
  
  height: 800px;
}

.beschriftung-container {
  position: absolute; 
  top: 0px; 
  left:0px; 
  width:180px; 
  height: 140px;
}

.beschriftung {
  position: relative; 
  top: 50px; 
  margin-left: 10px;
  margin-right: 10px; 
  text-align:center; 
  font-size:10pt;
}

.scroll-container {
  height: 600px; 
  overflow-y: auto; 
  overflow-x: hidden; 
  white-space: nowrap;
}

/*Gallerie Ansicht*/

.image-cell {
  width: 400px;
  text-align: center;
  content-align: center;
}

.image-preview {
  height:175px; 
  max-width: 380px; 
  cursor:pointer;
}

/*Slideshow*/

.slideshow-container {
 
  position: relative;
  margin: auto;
  width: 600px;
  height: 635px;
  
  
}

.mySlides {
    display: none;
    position: relative;
    height: 100%;
    
}

.img-container {
      position: relative;
      line-height: 600px;
      text-align: center;
      top: 35px;
      
  }

.slide-img {
     
    max-width: 600px;
    max-height: 565px;
    vertical-align: middle;
    text-align: center;
    
  }

/*Sliedshow Buttons*/

.prev, .next {
  cursor: pointer;
  position: absolute;
  width: auto;
  top: 50%;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 10px 10px 0;
  background-color: rgba(0,0,0,0.1);
}

.next {
  right: 0;
  border-radius: 10px 0 0 10px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/*Slideshow Dots*/

.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;
}

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

/* Fading animation */
.blenden {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

