/********************************************************************************************************************/
/*Flexbox - Style - Lyrics*/

.fb_lyr_wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;								/*Befehl - auf Flex stellen*/
	-ms-flex-wrap:nowrap;
	flex-wrap:nowrap;							/*Befehl - Zeilenumbruch erlauben*/
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row; 						/*Anordnung - in Spalte*/
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;				/*Position - Start von oben oder links*/
	min-height: 50vh;							/*Höhe erzwingen - vh = xx% von view height*/
	margin: 0 0 40px 0;
	font-family: 'Germania One', serif, Helvetica, Verdana, sans-serif;	
	border-radius: 0.5em 0.5em 0.5em 0.5em;
	border: 1px solid;
	padding: 8px;
	border-color:#600;
}	

.fb_lyr_auswahl { 
	-webkit-box-flex: 2 0 0; 
	-ms-flex: 2 0 0; 
	flex: 2 0 0;
	color:#AAA;
	font-size: 18px;
	font-weight:bold;
	border-radius: 0.5em 0.5em 0.5em 0.5em;
	border: 1px solid;
	padding: 8px;
	border-color:#600;
}

.fb_lyr_text { 
	-webkit-box-flex: 4 1 auto; 
	-ms-flex: 4 1 auto; 
	flex: 4 1 auto;
	color:#AAA;
	font-size: 18px;
	font-weight:bold;
	border-radius: 0.5em 0.5em 0.5em 0.5em;
	border: 1px solid;
	padding: 8px;
	margin: 0 0 0 10px;
	border-color:#600;
}

.fb_lyr_auswahl_ueb { 
	color:#666;
	font-size: 22px;
	font-weight:bold;
	padding:1.5em 0 0.6em 0;
}

.fb_lyr_text_style { 
	color:#CCC;
	font-size: 20px;
	padding:0 0 1em 0;
}

/*--------------------------------------------------------------------------------------------------------------------------------------- */
/* CSS3 Stylesheet E N D E  */