

.moduleTitle {
	height: 20px;
	background-color: #585858;
	color: white;
	font-weight: bold;
	font-size: 20px;
	padding: 10px;
	vertical-align: middle;
	text-align: left;
	line-height: 20px;
	margin-bottom: 5px;
}

.moduleBox{
	background-size: cover;
	background-image: url(/pfmnet/images/avErstellungBG2.png);
	background-color: #ededed;
}

.box{
	box-sizing: border-box;
	border: 1px solid #bbb;
	border-radius: 2px;
	padding: 5px;
	margin: 5px 5px 0px 0px;
	font-size: 12px;
	float: left;
	background-color: white;
}

.boxTitle{
	color: black;
	box-sizing: border-box;
	border-bottom: 1px solid #d31628;
	border-bottom: 1px solid var(--pwRot);
	width: 100%;
	min-height: 30px;
	font-size: 15px;
	float: left;
}

.boxContent{
	box-sizing: border-box;
	/* border-bottom: 1px solid #bbb; */
	/* margin-bottom: 10px; */
	padding-bottom: 5px;
	float: left;
	width: 100%;
	height: auto;
}

.boxContent ul{
	margin: 0px 2px;
}

#warnung {
	background-color:#ffffaa;
	max-height:150px;
	overflow-y:auto;
}

#erfolg {
	background-color:#aaffaa;
	max-height:150px;
	overflow-y:auto;
}

.meldungsbox #warnung.boxContent,
.meldungsbox #erfolg.boxContent {
	padding: 5px;
}

.white{
	background-color: white;
	color: #585858;
}

.red {
	background-color: #ffaaaa;
}

.boxTitle span {
	text-align: left;
	line-height: 30px;
	vertical-align: middle;
}

.newButton {
	height: 25px !important;
	min-width: 125px;
	margin: 0px;
	color: white !important;
	/* background-color: #bbb; */
	background-color: #003249;
	background-color: var(--button-background);
	text-align: center;
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	cursor: pointer;
	font-weight: bold;
	/* border: 1px solid #585858; */
	border: none;
	border-radius: 3px;
	/* transition: all linear 0.25s; */
	font-size: 12px;
	font-style: normal;
}

.newButton:hover{
	color: white;	
	font-weight:bold;		
	background-color: rgb(0,18,28);
	background-color: var(--button-background-pressed);
	
}

/**WTF MELDUNGSBOX**/
.meldungsbox{
	padding: 5px;
	float: left;
	border: 1px solid #bbb;
	width: 100%;
	margin-top: 0px;
	margin-bottom: 5px;
	box-sizing: border-box;
	background-color: white;
/*     
	animation: hideErrors 15s linear 1s 1;
	overflow: hidden;
	height: 42px; 
	 */
}

.meldungsbox:hover{
	cursor: pointer;
	overflow: visible;
	height: auto;
}

.meldungsbox .boxTitle{
	position: relative;
	padding-left: 30px;
	margin-bottom: 5px;
	
	animation: blinkError 1s 0s 5; /*Eventuell farbe anpassen?*/
	 
}

.meldungsbox .boxTitle:before{
	content: " ";
	width: 25px;
	height: 100%;
	background-image: url(/pfmnet/images/meldung_small_warning.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 0 center;
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 50%;
	
}


/* Fix für Meldungsboxen im neuen Design */

/*Meldungsbox nimmt die ganze Breite ein*/
.moduleBox .meldungsbox{
	width: 100%;
	box-sizing: border-box;
}

/*Tabellen in Meldungsboxen brauchen einen Hintergrund, sonst haben sie den "Blink"-Hintergrund*/
.moduleBox .meldungsbox table{
	margin: 5px 0px 5px 5px;
	max-width: calc(100% - 5px);
}

/*Tabellen-Header / Cells haben keine feste Breite aber sollten im standard immer Linkbündig sein und Abstand zur Zellen-Begrenzung haben*/
.moduleBox .meldungsbox th,.moduleBox .meldungsbox td{
	text-align: left;
	padding: 0px 5px;	
	background-color: unset;
	border: none;
}


.clearfix{
	float: none;
	clear: both;
}


@keyframes hideErrors{
	0%{
		height: auto;
	}
	99%{
		height: auto;
	}
	100%{        
		height: 42px;        
	}

}

@keyframes blinkError{
	
	0%{
		background-color: #ffffaa;
	}    
	99%{
		background-color: #ffaaaa;
	}
 
}






/*
SONDERFALL - Regeln, die eigentlich:
1. Andere Klassennamen erhalten sollten (Prefix av* ist Quatsch, muss auf generischen Prefix umgestellt werden)
2. Idealerweise in eigenes .css-File ausgelagert werden, welches ausschließlich den (auf generische Klassen umgestellten) Loader betrifft.
*/
.avLoading{
	background-color: white;
	position: absolute;	
	top: 0px;
	left: 0px;
	opacity: 0;

	width: 100%;
	height: 100%;	
	
	overflow: hidden;
}

.avLoaderImage{

	width: 100%;
	height: 100%;	

	background-image: url(/pfmnet/images/ladeIcon.png);
	background-repeat: no-repeat;
	background-position: center;
	animation:spin 1s linear infinite;
}

@keyframes spin{
	from{transform:rotate(0deg)}
	to{transform:rotate(360deg)}	
}


.rotatedSymbol {
	color: #585858;
	font-size: 20px;
	transform: rotate(-90deg);
	/* padding-left: 10px; */
	width: 20px;
	height: 20px;
	float: left;
	margin-right: 5px; 
	border: 1px solid #585858;
	background-color: #ededed;
}

