/* Stylesheet Slider-Gallery  */

/* Gallery-Beginn */

gallery {
  color: #f2f2f2;
  font-family: "Times New Roman", Times, serif;
  background-color: #fafafa; 
  max-width: 1920px;
    width: 100vw;
    height: auto;
  
}
figure { 
  background-color: #fafafa;
  margin:0px;
  padding-top: 0em;
  display: block; 
  position: relative; 
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
  max-height: 670px;
    width: 100%;
}

figure:before { 
  content: ""; 
  position:absolute; 
  background: rgba(255,255,255,0.75); 
  color: black;
  width: 0px;
  height: 24px;
  bottom:10px; left:30px;
  border-radius: 12px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  transition: all 0.6s ease;
  opacity: 0.85; 
  z-index: 1;
}

figure:hover:before {
  opacity: 0;
}

.gallery img {
  width: 100vw;
  height: auto;
  max-height: 670px;
  border: 0px solid silver;
  border-radius: 0px 0px 0px 0px;
}

figcaption { 
  position: absolute; 
  background: rgba(0,0,0,0.0); 
  color: white;
  font-style: italic;
  text-shadow: 2px 2px 2px darkgreen;
  padding: 10px 20px;
  width:100%; 
  opacity: 0;
  bottom: -20%; 
  left: 50px;
  transition: all 0.6s ease;
}

figcaption h2 {
  margin: 0 12px;
}

figcaption p {
  margin: 12px 12px 0;
  padding: 0;
}
figure:hover figcaption {
  opacity: 1;
  bottom: 0;
}


/* Gallery-Ende */

/* Fader-Framework-Beginn */

.fader {
    position: relative;
    display: inline-block;
}

.fader img {
    vertical-align: top;
}

.fader img.next {
    position: absolute;
    top: 0;
    left: 0;
}

/* Fader-Framework-Ende */



