@charset "utf-8";


/****************************************************************/
/********************* MAIN CONTENT *****************************/
/****************************************************************/

h1, h2, h3, h4 {
	color: #0099BC;
}


/* ev. CSS für Image anpassen */
img {
}



/****************************************************************/
/*********************** LERNZIELE*******************************/
/****************************************************************/

.lernziele {
	margin-top: 15px;
	margin-bottom: 20px;
	border: 3px solid #048383;
	border-radius: 8px;
    background-color: #F8F8F8;    
    padding: 20px;
	padding-left: 140px;
	padding-bottom: 0px;
	position: relative;
	min-height: 110px;
}

.lernziele:before {
	content: ' ';
	background: url("../img/00_lernziele.svg");
	background-repeat: no-repeat;
	width: 100px;
	height: 100px;
	position: absolute;
	left: 15px;
	top: 15px;
}


.lernziele ul {
	list-style-type: circle;
}



/****************************************************************/
/******************* LINK-Unterseite ****************************/
/****************************************************************/

.link_unterseite {
	padding: 7px;
    padding-left: 35px;
}

.link_unterseite a {
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	color: #048383;
}

.link_unterseite a:hover {
	color: #00AFD7;	
}

.link_unterseite a:before {
	content: "";
    display: block;
    background: url("../img/00_arrow.svg") no-repeat;
    width: 20px;
    height: 20px;
    float: left;
    margin: 0 6px 0 0;
}

.link_unterseite a:hover:before {
	background-image: url("../img/00_arrow_hover.svg");	
}


/****************************************************************/
/************************* QUELLE *******************************/
/* Quelle als Fußnoten in kursiver und etwas kleinerer Schrift  */
/****************************************************************/

.quelle {
	font-style: italic;
	font-size: 0.9em;
	margin-top: 20px;
}


/****************************************************************/
/************************** DIVS *******************************/
/* für Tipps, Definitionen, Zusammenfassungen und Stolperfallen */
/****************************************************************/


.tipp,
.definition,
.zusammenfassung,
.stolperfalle,
.uebung {
	margin-top: 15px;
	margin-bottom: 20px;
	margin-left: 40px;
    background-color: #FEFEFE;    
    padding: 7px;
	padding-left: 20px;
	padding-top: 30px;
	position: relative;
}

.tipp {
	border-left: 3px solid #109310;

}

.tipp:before {
	content: ' ';
	background: url("../img/00_tipp.svg");
	background-repeat: no-repeat;
	width: 40px;
	height: 40px;
	position: absolute;
	left: -45px;
	top: 5px;
}

.tipp:after {
	content: 'Tipp';
	color: #109310;
	font-weight: bold;
	position: absolute;
	top: 10px;
	left: 20px;
}

.tipp h1, .tipp h2, .tipp h3, .tipp h4 {
	color: #109310;
}

.definition {
	border-left: 3px solid #B40000;
}

.definition:before {
	content: ' ';
	background: url("../img/00_definition.svg");
	background-repeat: no-repeat;
	width: 40px;
	height: 40px;
	position: absolute;
	left: -50px;
	top: 5px;	
}

.definition:after {
	content: 'Definition';
	color: #B40000;
	font-weight: bold;
	position: absolute;
	top: 10px;
	left: 20px;
}

.definition h1, .definition h2, .definition h3, .definition h4 {
	color: #B40000;
}

.zusammenfassung {
	border-left: 3px solid #002BC6;
}

.zusammenfassung:before {
	content: ' ';
	background: url("../img/00_zusammenfassung.svg");
	background-repeat: no-repeat;
	width: 40px;
	height: 40px;
	position: absolute;
	left: -45px;
	top: 6px;	
}

.zusammenfassung:after {
	content: 'Zusammenfassung';
	color: #002BC6;
	font-weight: bold;
	position: absolute;
	top: 10px;
	left: 20px;
}

.zusammenfassung h1, .zusammenfassung h2, .zusammenfassung h3, .zusammenfassung h4 {
	color: #002BC6;
}

.stolperfalle {
	border-left: 3px solid #FF7F00;
}

.stolperfalle:before {
	content: ' ';
	background: url("../img/00_stolperfalle.svg");
	background-repeat: no-repeat;
	width: 40px;
	height: 40px;
	position: absolute;
	left: -45px;
	top: 6px;	
}

.stolperfalle:after {
	content: 'Stolperfalle';
	color: #FF7F00;
	font-weight: bold;
	position: absolute;
	top: 10px;
	left: 20px;
}

.stolperfalle h1, .stolperfalle h2, .stolperfalle h3, .stolperfalle h4 {
	color: #FF7F00;
}

.uebung {
	border-left: 3px solid #FFB100;
}

.uebung:before {
	content: ' ';
	background: url("../img/00_uebung.svg");
	background-repeat: no-repeat;
	width: 40px;
	height: 40px;
	position: absolute;
	left: -45px;
	top: 5px;
}

.uebung:after {
	content: 'Übung';
	color: #FFB100;
	font-weight: bold;
	position: absolute;
	top: 10px;
	left: 20px;
}

.uebung h1, .uebung h2, .uebung h3, .uebung h4 {
	color: #FFB100;
}

.tool {
	border-left: 3px solid #999999;
}

.tool:before {
	content: ' ';
	background: url("../img/00_tool.svg");
	background-repeat: no-repeat;
	width: 40px;
	height: 40px;
	position: absolute;
	left: -45px;
	top: 5px;
}

.tool:after {
	content: 'Tool';
	color: #999999;
	font-weight: bold;
	position: absolute;
	top: 10px;
	left: 20px;
}

.tool h1, .tool h2, .tool h3, .tool h4 {
	color: #999999;
}


/****************************************************************/
/********************** SPRECHBLASE *****************************/
/****************************************************************/

.speechbubble {
    position: relative;
	min-height: 100px;
	padding: 15px;
	padding-top: 1px;
	margin: 1em 0em 2em;
	background: #efefef;
	color: #000000;
    border: 0px solid #ccc;
	display: flex;
	align-items: center;
}

/* kleines Dreieck am Sprecher */
.speechbubble:after {
	content: "";
	position: absolute;
	bottom: 8px;
	left: -24px; 
	border-width: 0px 30px 32px 0; /*vary these values to change the angle of the vertex */
	border-style: solid;
	border-color: transparent #efefef;
	display:block;
	width: 0;	
}

/* Sprechblase in Kombination mit Bookie einrücken, damit Platz für Grafik bleibt */
.bookie_info .speechbubble,
.bookie_attention .speechbubble,
.bookie_super .speechbubble {
    margin-left: 117px;
}

.speechbubble p {
        margin-bottom: 0px;
        padding: 0.5em;
}

/****************************************************************/
/***************** BOOKIE AN SPRECHBLASE ************************/
/****************************************************************/

.bookie_info,
.bookie_attention,
.bookie_super {
	margin-top: 50px;
	min-height: 100px;
	margin-bottom: 30px;
	position: relative;
}

.bookie_info:before,
.bookie_attention:before,
.bookie_super:before{
	content:"";
	height: 132px;
	z-index: 50;
	background-size: contain;
	background-repeat: no-repeat;
	margin: 5px;
	margin-top:-35px;
	position:absolute;
	display: block;
    bottom: -50px;	
	width: 120px;
}

.bookie_info:before{
    background-image: url(../img/bookie_info.png);
    width: 120px;
    bottom: -42px;
}

.bookie_attention:before{
    background-image: url(../img/bookie_attention.png);
    width: 103px;
    bottom: -32px;
    left: 5px;
}

.bookie_super:before{
    background-image: url(../img/bookie_super.png);
    width: 84px;
    bottom: -50px;
    left: 5px;
}


/****************************************************************/
/************************** TABLE *******************************/
/*                   Tabellen formatieren                       */
/****************************************************************/
table {  
    color: #333;
    width: auto; 
    border-collapse: collapse; 
	border-spacing: 0;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto; 
}

td, th {  
    border: 1px solid transparent; /* No more visible border */
    height: 30px; 
	padding: 10px;
	text-align: left;
}

th {  
    background: #DFDFDF;  /* Darken header a bit */
    font-weight: bold;
	text-align: center;
}

td {  
    background: #FAFAFA;
    text-align: left;
}

/* Cells in even rows (2,4,6...) are one color */        
tr:nth-child(even) td { background: #F1F1F1; }   

/* Cells in odd rows (1,3,5...) are another (excludes header cells)  */        
tr:nth-child(odd) td { background: #F8F8F8; }  

/* Table Tools left binded  */  
table.tooltable {
	margin-left: 0px;
}
/* First row in Tabel Tools white */  
table.tooltable tr td {
	background-color: white;
}

/****************************************************************/
/************************** VIDEO *******************************/
/* YouTube-Videos zentriert einbinden, mit automatischer Größe  */
/****************************************************************/

.video-out {
	margin-left: auto;
	margin-right: auto;
	width: 80%;
	max-width: 800px;
	
	margin-top: 2em;
	margin-bottom: 2em;
}

@media (max-width: 490px) {
	.video-out {
		width: 100%;
	}
}

.video-in {
	border: 0px solid #00AFAF;
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0;
	height: 0;
	overflow: hidden;
}

.video-in iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/****************************************************************/
/********************** VERLINKUNGEN ****************************/
/* externe Quellen angeben, jede Box einzeln mit Beschreibung   */
/****************************************************************/


/* Weiterführende Links formatieren */
.verlinkung {
    margin-top: 20px;
	background-color: #F8F8F8;
    border: 1px solid #E8E8E8;
    padding: 7px;
    padding-left: 50px;
	/* Grafik erstellen, Pfad anpassen */
    background-image: url("../img/00_www.svg");
    background-repeat: no-repeat;
    background-position: 8px 8px;
}
.verlinkung a {
    font-size: 14px;
	text-decoration: none;
}
.verlinkung p {
    margin: 0px;
    line-height: 15px;
}
