@charset "utf-8";
/* CSS Document */
/******************************************************************************************
// Datei: fluid-info.css
// Author: DH
// Änderungsdatum: 27.09.17
// Beschreibung: 	- Hinweistext anzeigen
//					- Tarifrechner Hinweise 
*******************************************************************************************/



/**** Layout für Mobilgeräte. */
#DIV-ID-InfoHinweisWrapper{
	position: fixed;
	bottom:80px;
	max-height: 90%;
	width: 100%;
	z-index: 200;
	/*background-color: #ffffff;
	background: rgba(255,255,255,0.6);*/
	
	}
#DIV-ID-InfoHinweis{
	display: block;
	
	z-index: 200;
	
	
	width: 90%;
	height: 90%;
	
	font-family: Verdana_ALLTEST, Verdana, Geneva, sans-serif;
	font-size: 16pt;
	
	padding-left:10px;
	padding-right:10px;
	padding-top:0px;
	padding-bottom:0px;
	
	border-style:solid;
	border-width:2px;
	border-color:#cccccc;
	
	background-color:#ffffff;
		
	box-shadow:0px 5px 5px #cccccc;
	box-sizing: border-box;
	
	margin: 0 auto;
	
}


#DIV-ID-InfoTextHinweis{
	padding-top: 10px;
	padding-bottom: 10px;
	
	
	
	overflow-x: auto;
	overflow-y: auto;		/*notwendig um Scrollbalken in Chrome aus zu blenden*/
	width: 100%;
	height: 100%;
	max-height: 60%;
	
	
	
	display: block;
	position: relative;
	
	
	
	box-sizing:border-box;
	-webkit-overflow-scrolling: touch;
	
}

.INPUT-CLASS-InfoTextButton{
		
		height: 45px;
		width: 100%;
		margin-top: 20px;
		margin-bottom: 10px;
	}

#INPUT-ID-InfoTextButton{
		
		right: 30px;
		width: 100%;
		margin-top: 30px;
		margin-bottom: 10px;
	}

.SPAN-CLASS-InfoTextHinweis {
    font-family: MTB_OpenSanRegular;
    font-size: 10pt;
    color: #000000;
    display: block;
    width: 100%;
    text-align: left;
}

a:link.LINK-CLASS-InfoText{
	color: #000000;
	}

a:visited.LINK-CLASS-InfoText{
	color: #000000;
	}
a:hover.LINK-CLASS-InfoText{
	color: #E40614;
	}


/**** Layout für Tablet-PCs. Erbt Stile vom: Layout für Mobilgeräte. */
/*orientation : portrait damit im Quervormat*/
@media only screen and (min-width: 680px) and (orientation : portrait){
	#DIV-ID-InfoHinweisWrapper{
		bottom: 10px;
	}
	
	#DIV-ID-InfoHinweis{
	
		min-width: 320px;
		
		
		width: 70%;
  		margin: 0 auto;
		margin-left: 120px;
		margin-right: 40px;

		
	
		box-sizing: border-box;
		font-size: 14pt;
	}
	#DIV-ID-InfoTextHinweis{
		max-height: 60%
	}
	
}

/**** Desktoplayout. Erbt Stile von: den Layouts für Mobilgeräte und Tablet-PCs. */
@media only screen and (min-width: 979px) and (orientation : landscape) {
	
	#DIV-ID-InfoHinweisWrapper{
		bottom: 10px;
	}
	#DIV-ID-InfoHinweis{
	
		min-width: 320px;
		height: 100%;
		
		width: 75%;
 
		
		font-size: 12pt;
		box-sizing: border-box;
	}
	#DIV-ID-InfoTextHinweis{
		max-height: 100%
	}
	.INPUT-CLASS-InfoTextButton{
		position: relative;
		float: right;
		height: auto;
		width: auto;
		margin: 0;
		margin-left: 20px;
	}
	.SPAN-CLASS-InfoTextHinweis {
		width: 80%;
	}
	
}