/*html { font-size: 14px }*/

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1 0 auto;
}

.img_title {
	width: 90%;
}

.table {
	width:100%;
	margin-left:1%;
}


.table_head {
	border-collapse:collapse;
	border-bottom: 1pt solid 	#008ac1;		
	color:	#008ac1;
}


.footer {
	flex-shrink: 0;
	width: 100%;
	background-color: #d5d5d5;	
}

.footer_affixed {
	position: fixed;
	bottom: 0;
}



#scrollTopBtn {
  display: none; 
  position: fixed;
  z-index: 999999; /* Wichtig, sonst klappt der Klick nicht */
  bottom: 40px; 
  right: 40px;

  width: 64px;
  height: 64px;
  padding: 0px 0px;
  outline: none; 
  background-color: white; 
}

#scrollTopBtn:hover {
  background-color: #FFDDDD; 
}

.arrow-up {
  display: inline-block;
  width: 64px;
  height: 64px;
  border: 3px solid Red;
  border-radius: 50%;
  margin-right: 3px;
  background-color: none; 
}

.arrow-up:after {
  content: '';
	display: inline-block;
  margin-top: 22px;
  width: 22px;
  height: 22px;
  border-top: 3px solid Red;
  border-right: 3px solid Red;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.plainwhite {
  background: rgba(255, 255, 255, 1.0);
  /* border-style:none; */
}


input[type=checkbox] { 
  transform: scale(1.2);
  outline: solid 1px black;
  padding-right: 3px;

  /*
  -moz-appearance:none;
  -webkit-appearance:none;
  -o-appearance:none;   
  */
}


/*********************************************************************************************************************** Modals */
/*
.modal {
  position: fixed; top:50%; left:50%;
  display: flex;
  flex-direction: column;
  width: 640px;
  height: 320px;

}

.modal form {
  align-items: stretch;
}
*/