body {
	width: 100%;
	margin: auto;
	background-color: #1D2837;
	/*font-family: 'Roboto', sans-serif;*/
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	color: #E2E2E2;
}

a {
  color: white;
  text-decoration: none;
}

.material-icons {
	line-height: 0 !important;
	vertical-align: middle;
}

input, textarea {
	width: 270px;
	background-color: transparent;
	border: 1px solid lightgrey;
	-webkit-appearance: none;
	border-radius: 3px;
	padding: 5px 5px 5px 5px;
	margin: 5px 10px 15px 10px;
	color: white;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	box-sizing: border-box; /* Gleiche Größe für alle Felder */
	outline: none; /* Kein blauer Rahmen wenn ausgewählt */
}

input[type=submit], input[type=reset], input[type=button] {
  background-color: #4CAF50;
  border: none;
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 10px;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  -webkit-appearance: none;
}

input[type=submit]:disabled {
  background: white;
   -moz-opacity: 0.7;
  /* Mozilla */
  opacity: 0.7;
  /* CSS3 */
  color: lightgrey;
  cursor: default;
}

input[type=checkbox] {
	-webkit-appearance: checkbox;
}

input.submit-suche {
	width: 150px;
	padding: 5px;
	text-decoration: none;
	padding: 12px 20px 12px 20px;
	margin: 20px 5px;
	cursor: pointer;
}

input.input-suche {
	width: 250px;
	box-sizing: border-box;
	background-color: white;
	background-image: url('../img/searchicon.png');
	background-position: 10px 10px; 
	background-repeat: no-repeat;			
	color: #262a26;
	border: none;
	padding: 12px 20px 12px 40px;
	text-decoration: none;
	margin: 20px 5px;
}

input.input-suche-150 {
	width: 150px;
	box-sizing: border-box;
	background-color: white;
	background-image: url('../img/searchicon.png');
	background-position: 10px 10px; 
	background-repeat: no-repeat;			
	color: #262a26;
	border: none;
	padding: 12px 20px 12px 40px;
	text-decoration: none;
	margin: 20px 5px;
}

[type="date"] {
  background: transparent url(../img/calendar.png)  97% 50% no-repeat ;
  background-size: 16px;
  text-transform: uppercase;
  min-height: 2.0rem;
}
	[type="date"]::-webkit-inner-spin-button {
	  display: none;
	}
	[type="date"]::-webkit-calendar-picker-indicator {
	  opacity: 0;
	}

select {
	width: 270px;
	background-color: transparent;
	border: 1px solid lightgrey;
	border-radius: 3px;
	padding: 5px 5px 5px 5px;
	margin: 5px 10px 15px 10px;
	color: white;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	box-sizing: border-box; /* Gleiche Größe für alle Felder */
	outline: none; /* Kein blauer Rahmen wenn ausgewählt */
}

select option {
	color: #262a26;
}


/* Dropdown-Arrow immer anzeigen */
input.datalist::-webkit-calendar-picker-indicator {
  opacity: 100%;
}


#txtHint {
	width: 100%;
	padding: 5px 0px 5px 0px;
	margin-bottom: 10px;
	color: orange;
	font-size: 3vh;
	text-align: center;
}

.flex-container-suche {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	margin-top: 4px;
	padding-top: 6px;
	margin-bottom: 10px; 
	background-color: #084B8A;"
}

.flex-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	/*justify-content: space-evenly;*/
	justify-content: center;
	padding-top: 6px;
}

.flex-container-dashboard {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	padding-top: 6px;
	margin-top: 60px;
}

.box-dashboard {
	border:2px solid #2d3d52;
	border-radius: 0px;
	margin-bottom: 50px;
}

.box-dashboard-titel {
	background: #2d3d52;
	border-radius: 0px;
	padding: 10px;
	line-height: 1.7em;
	font-size: 1.2em;
	text-align: center;
}

.box-dashboard-content {
	padding: 10px 0px 0px 0px;
	line-height: 1.7em;
	font-size: 1.1em;
	text-align: left;
}

table.dashbox-content td {
	padding: 0px 20px;
}

.dashboard-hr {
    border: none;
    height: 1px;
    color: #2d3d52; /* old IE */
    background-color: #2d3d52; /* Modern Browsers */
}   

.label {
	font-size: smaller;
	color: lightgrey;
	margin-left: 10px;
}

.headline {
	width: 100%;
	text-align: center;
	color: white;
	background: #233040;
}

.single_select {
	background-color: darkcyan;
	-webkit-animation-name: farbwechsel; /* Safari 4.0 - 8.0 */
	-webkit-animation-duration: 1s; /* Safari 4.0 - 8.0 */
	animation-name: farbwechsel;
	animation-duration: 1s;
}

	/* Safari 4.0 - 8.0 */
	@-webkit-keyframes farbwechsel {
	  from {background-color: transparent;}
	  to {background-color: darkcyan;}
	}

	/* Standard syntax */
	@keyframes farbwechsel {
	  from {background-color: transparent;}
	  to {background-color: darkcyan;}
	}

table {
	margin: auto;
	padding: 15px;
}

.row-submit {
	margin-top: 30px;
	text-align: center;
}

/******* REPORT ********/

table th {
	border-spacing: 10px;
}

table.report {
	border: 1px solid grey;
	border-collapse: collapse;
	padding: 10px;
	margin-bottom: 20px;
}

table.report th {
	border: 1px solid grey;
	border-collapse: collapse;
	/*background-color: #4CAF50;*/
	/*background-color: darkslategrey;*/
	background-color: #084B8A;
	padding: 10px;
}

table.report td {
	border: 1px solid grey;
	border-collapse: collapse;
	padding: 10px;
}

button {
	width: 100px;
	-webkit-appearance: none;
	border-radius: 3px;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	box-sizing: border-box; /* Gleiche Größe für alle Felder */
	outline: none; /* Kein blauer Rahmen wenn ausgewählt */	
	box-sizing: border-box;
	background-color: white;		
	color: #262a26;
	border: none;
	padding: 12px 0px 12px 0px;
	text-decoration: none;
	margin: 20px 5px;
	cursor: pointer;
}

button:disabled {
  background: white;
   -moz-opacity: 0.7;
  /* Mozilla */
  opacity: 0.7;
  /* CSS3 */
  color: lightgrey;
  cursor: default;
}

button.orange {
	background-color: orange;
	color: white;
}

button.csv {
	background-color: transparent;
	padding: 0px;
	width: 0px;
    vertical-align: middle;
    margin-left: 20px;
}

button.dashboard {
	width: 100%;
	padding: 5px;
	
	margin: 0px;
	margin-top: 15px;
	margin-bottom: 15px;

	background-color: transparent;
	border: 2px solid #2d3d52;
	border-radius: 0px;
	color: lightgrey;
}

.dashboard_vereine {
	font-size: 0.8em;
	line-height: 1.5em;
}

.print_titel {
	display: none;
}

/* RESPONSIVE MEDIA SCREEN */
@media screen and (max-width: 900px) {
	h1 {font-size: 7vw;}

	.headline {
		width: 100%;
		text-align: center;
		color: white;
		/*background: #233040;*/
		background-color: transparent;
	}

	.flex-container-suche {
		display: block;
		text-align: center;
		width: 100%;
		padding-bottom: 6px;
	}

	.suchfelder {
		text-align: -webkit-center;
	}

	.input-suche {
		/*margin: auto !important;*/
		margin: 15px 0 0 0 !important;
		display: block; 
	}

	.submit-suche {
		margin: 15px 0 15px 0 !important;
		display: block;
	}

	button.orange {
		margin: 0 0 14px 0;
		width: 150px !important;
	}

	table.report {
		font-size: smaller;
	}

	/* NAV-Link in der Sidebar responsive ausblenden */
	.hide_responsive {
		display: none !important;
	}  
}
