/* Video-Gästebuch Bild-Slider (Crossfade) */
.efb-vgb-slider{position:relative;width:100%;aspect-ratio:3/2;}
.efb-vgb-slider img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;opacity:0;animation:efbVgbFade 9s infinite;}
.efb-vgb-slider img:nth-child(1){animation-delay:0s;}
.efb-vgb-slider img:nth-child(2){animation-delay:3s;}
.efb-vgb-slider img:nth-child(3){animation-delay:6s;}
@keyframes efbVgbFade{0%{opacity:0;}11%{opacity:1;}33%{opacity:1;}44%{opacity:0;}100%{opacity:0;}}
@media (prefers-reduced-motion: reduce){.efb-vgb-slider img{animation:none;}.efb-vgb-slider img:nth-child(1){opacity:1;}}
