/* ALLGEMEINES */
/* AUSRICHTUNG */
/* FARBEN */
/*   Hintergrundfarben */
/*   Schriftfarben */
/* TEXTAUSZEICHNUNGEN */
/* SONSTIGES */
/* GENERELLE ELEMENTE */
/*   Arbeitsbereich */
/*   Usermessage */
/* MEDIA QUERIES */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC&family=Work+Sans:wght@600&display=swap');

/***************** Allgemeines *****************/

html, body {
	background-color: #f3f3f3;
  	height: 90%;  	
  	margin: 0px;
  	padding: 0px;

	font-family: 'Noto Sans TC', 'Work Sans', Arial, Helvetica, sans-serif;  	
  	font-size: 14px;
  	font-weight: normal;	
}

hr {	
	background-color: #555;
	height: 1px;
}






/**************** AUSRICHTUNG *******************/

.leftAlignment {
	padding-left: 0px;
	margin-left: 0px;
}

.rightAlignment {
	padding-right: 0px;
	margin-right: 0px;
}

.lessSpaceRightColumn {
	padding-right: 5px;
}

.lessSpaceLeftColumn {
	padding-left: 5px;
}

.around5Px {
	margin: 5px;
}

.around10Px {
	margin: 10px;
}

.marginTop5 {
	margin-top: 5px;
}

.marginBottom5 {
	margin-bottom: 5px;
}

.textCenter {
	text-align: center;
}

.noPadding {
	padding: 0px !important;
}

.noMargin {
	margin: 0px !important;
}



/**************** FARBEN *******************/

/************* Hintergrundfarben ****************/

.ColBGwhite {
	background-color: white;
}

.ColBGblack {
	background-color: black;
}

.ColBGdark {
	background-color: #332b2b;
}

.ColBGred {
	background-color: red;
}

.ColBGgray {
	background-color: #dadada !important;
}

.ColBGlightgray {
	background-color: #f3f3f3 !important;
}


/************* Schriftfarben ****************/

.ColFontWhite {
	color: white;
}

.ColFontBlack {
	color: black;
}

.ColFontAnthrazit {
	color: #444 !important;
}

.ColFontRed {
	color: red;
}

.ColFontLightGray {
	color: #b1b1b1;
}


/**************** Textauszeichnungen *******************/

.fontWeightNormal {
	font-weight: normal;
}

.fontWeightBold {
	font-weight: bold;
}


/**************** SONSTIGES *******************/

.noDisplay {
	display: none !important;
}

.blockDisplay {
	display: block !important;
}

/**************** GENERELLE ELEMENTE *******************/

/**************** Arbeitsbereich *******************/
#WorkArea {
	position: relative;
	top: 70px;
}

/**************** Usermessage *******************/
  
#UserMessage, #ErrorMessage {
	position: fixed;
    bottom: 0px;
    left: 0px;
    padding-left: 35px;
    padding-top: 10px;
    height: 50px;
    width: 100%;

	display: none;
	z-index: 5;
        
    font-size: 20px;
    font-weight: normal;       
}

#UserMessage #buttonReport, #ErrorMessage #buttonReport {
	position: fixed; 
	bottom: 1.3em; 
	right: 9em; 
	padding: 5px 7px;

	font-size: 0.95rem;
}

#UserMessage #buttonSchliessen, #ErrorMessage #buttonSchliessen {
	position: fixed; 
	bottom: 1.3em; 
	right: 1em; 
	padding: 5px 7px;

	font-size: 0.95rem;
}

#UserMessage {
    background-color: #5ba5a1;
    color: #333;
}

#ErrorMessage {
    background-color: #b50410;
    color: #111;

    /*display: inline !important;*/
}

#buttonErrorMessageBericht, #buttonErrorMessageClose {	
	float: right;
	margin-right: 15px;
	padding: 4px 5px;
	font-size: 0.85rem;
}


/**************** Sonstiges *******************/

h1, h2, h3, h4, h5, h6 {
	font-family: 'Noto Sans TC', 'Work Sans', Arial, Helvetica, sans-serif;  	
}

input {
	border-color: #aaa !important;
	color: #b50410 !important;
	border-radius: 4px !important;
}


textarea {
	border-color: #aaa !important;
	color: #b50410 !important;
}

button {
	border-color: #aaa !important;
}

label {
	font-weight: bold;
	font-size: 17px;
}

.mandatoryField {
	color: #b50410;	
}


/* Der Spinner (z.B. auf der Endless-Rezepte Seite) */
.loader {
  border: 5px solid #dfdfdf;
  border-radius: 50%;
  border-top: 5px solid #444;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  -webkit-animation: spin 0.7s linear infinite; /* Safari */
  animation: spin 0.7s linear infinite; 
  clear: both;
  visibility: hidden;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#mySpinner {
	position: fixed;
	left: 48%;
	bottom: 90px;
}

/* Zurück nach oben - Button */
#backToTop a  {
	font-size: 25px;
	position: fixed;
	bottom: 15px;
	right: 15px;	
	color: #444;
}
/**************** MEDIA QUERIES *******************/

@media only screen and (max-width: 767px) {

	#buttonErrorMessageBericht, #buttonErrorMessageClose {	
		font-size: 0.75rem;		
	}

	label {		
		font-size: 15px;
	}

}

@media only screen and (max-width: 400px) {

	#buttonErrorMessageBericht, #buttonErrorMessageClose {	
		font-size: 0.7rem;		
	}

	label {		
		font-size: 14px;
	}


/**************** Usermessage *******************/
  
	#UserMessage, #ErrorMessage {
	
    	padding-top: 12px;        
    	font-size: 15px;
	}
}