@charset "utf-8";
/* CSS Document */

#slide{
	background-color: #efFFe9;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 98vh;
	margin:0;}

.slideshow{
	width: 88vw;
	height: 66vh;
/*	min-height: 33vh;
	max-height: 66vh; */
	/*box-shadow: 0px 0px 10px gray;*/
	position: relative;
	/*border: thick solid #b79637;*/
	}

.slide{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	opacity: 0;
	transition: opacity 2s;
	}
	
.slide-bild{
	width: 100%;
	height: auto;}
	
.slide-textbereich{
	color: white;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	top: 90%;
	background-color: rgba(0,0,0, 0.5);
	text-align:center;
	font-family: sans-serif;
	padding: 0 15% 0 15%;
		overflow: hidden;
	}
	
.slide-ueberschrift{
	font-size: 1.4em;
	margin-bottom: 0.1em;

	}
.slide-beschreibung{
	font-size: 1em;
	margin: 0;
	}
	
.pfeil{
	position: absolute;
	top:0;
	bottom:0;
	font-size: 5em;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 15%;
	color: rgba(255, 255, 155, 0.5);
	user-select: none;	/* Zeichen soll nicht als Text ausgewählt werden können */
	cursor: pointer;	/* Mauszeiger soll Klickbarkeit signalisieren */
	}

.pfeil:hover{
	color: white;
	}
	
.pfeil-links{
	left: 0;
	}
	
.pfeil-rechts{
	right: 0;
	}	
	
.indikatorenliste{
	position: absolute;
	top: 0;
	left:0;
	right:0;
	list-style-type: none; /* entfernt die Zahlen der geordneten Liste */
	font-size: 3em;
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
	}
	
.indikator{
	padding: 0 0.3em;
	user-select: none;
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 2s;
	}
	
.aktiv{
	opacity: 1;
	}
	
.wrap{
	min-width:240px;
	max-width: 100vw;
	}
	
.pl {padding-left: 10px;}
.intro {background-color: rgba(0,0,0,0);}