* {
    margin: 0;
    padding: 0;
}

div {
    /*height: 400px;
    background: linear-gradient(to bottom, #DDDDDD 0%, #AAAAAA 100%)
	background-color: #FE8176;
	*/
}

 
html, body {
    height: 100%;
	background-color: #FE8176;
}
 
#seite {
    position: relative;
    min-height: 100%;
/*    width: 550px;*/
    margin: 0 auto;
/*    background-color: silver;*/
}

footer {
    position:absolute;
    bottom: 0;
    width: 100%;
    background-color: #A70F01;
    height: 2em;
}

#einloggbereich {
	width: 450px;
	margin-right: 35em;
	text-align: right;
	float: right;
	display: inline-block;
	font-size: 10px !important;
}

#einloggbereich p {
	margin: 0;
	padding: 0;
	line-height: 1em;
}
/*Unser Inhalt ist noch zu dicht am Rand:*/
#inhalt {
	margin: 0 1em;
}
/*Und unsere Inhalte kleben noch zu stark aufeinander:*/
#inhalt h1, #inhalt p, form  {
	margin-top: 1em;
}
/*Unsere Schrift wollen wir moderner – also ohne Serifen:*/
body {
	font-family: sans-serif;
/*
    background: linear-gradient(to bottom, #FFFFFF 0%, lightblue 100%)
*/
}

header, footer {
	color: white;
	background-color: #A70F01;
	background-color: ;
	
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#003366+1,519fff+100 */
background: #A70F01; /* Old browsers */ /* FF3.6-15 */
/*background: -webkit-linear-gradient(left,  hsla(210,100%,20%,1) 1%,hsla(213,100%,66%,1) 100%);*/ /* Chrome10-25,Safari5.1-6 */
/*background: -webkit-linear-gradient(left, hsla(210,100%,20%,1) 1%, hsla(213,100%,66%,1) 100%);*/
/*background: linear-gradient(to right,  hsla(210,100%,20%,1) 1%,hsla(213,100%,66%,1) 100%);*/ /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003366', endColorstr='#519fff',GradientType=1 );*/ /* IE6-9 */

}

header p {
	line-height: 3.5em;
	padding-left: 1em;
	font-size: 1.5em;
}

footer p {
	line-height: 2em;
	padding-left: 1em;
}
/*Unsere Tabelle soll nach oben Abstand halten und die komplette Breite nutzen.*/
table {
	width: 100%;
	margin-top: 0.5em;
}
/*Ein bisschen mehr Abstand innerhalb der Tabelle erhöht die Übersicht:*/
td {
	padding: 0.2em;
}
/*Unsere Tabelle soll noch im Kopfbereich einen dunklen Hintergrund bekommen und weiße Schrift.*/
thead tr {
	color: #FFDEDB;
	background-color: #A70F01;
}
/*Die Tabelle so nun abwechselnden Hintergrund bekommen.*/
tbody tr:nth-child(odd) {
	background-color: #FFDEDB;
}

tbody tr:nth-child(even) {
	background-color: #FEB5AD;
}
/*Damit wir die Reihen besser sehen, lassen wir diese hellgrün bei Mausberührung hervorheben:*/
tr:hover {
	background-color: limegreen !important;
}


/*Und dem entsprechenden Design (so groß, damit auch per Touch die Paginierung trifft):*/
.seite_aktuell, .seite_nr {
	display: inline-block;
	color: white;
	background-color: limegreen;
	width: 1.4em;
	height: 1.4em;
	text-align: center;
	line-height: 1.4em;
	font-size: 1.2em;
	color: white;
}

.seite_nr {
	background-color: #A70F01;
}

.seite_nr:hover {
	background-color: deepskyblue;
	background-color: #FE8176;
}

/*Jetzt können wir noch den Bereich für das Formular unten ein wenig Design mitgeben:*/
form#datenpflege {
	border: 1px solid #A70F01;
	border-radius: 2px;
	//padding: .2em 1em;
	background-color: #FFDEDB;
	box-shadow: 6px 6px 5px #A70F01;
}

#datenpflege span {
/*	background-color: yellow;*/
	display: inline-block;
	width: 120px;
	float: left;
}

input[type=text], select {
  width: 205px;
  padding: 3px 3px;
  margin: 0px 0;
  display: inline-block;
  border: 1px solid #FFBDB7;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=password], select {
  width: 205px;
  padding: 3px 3px;
  margin: 0px 0;
  display: inline-block;
  border: 1px solid #FFBDB7;
  border-radius: 4px;
  box-sizing: border-box;
}

input[textarea], select {
  width: 205px;
  padding: 3px 3px;
  margin: 0px 0;
  display: inline-block;
  border: 1px solid #FFBDB7;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=submit] {
  width: 150px;
  background-color: #10A3E0;
  color: white;
  padding: 5px 5px;
  margin: 0px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background-image:linear-gradient(to bottom, #10A3E0, #137DA9)
 /* box-shadow: 3px 3px 3px #FE8176;*/
}

input[type=submit]:hover {
  background-color: #137DA9;
  background-image:linear-gradient(to bottom, #137DA9, blue)
}

input[type=button] {
  width: 150px;
  background-color: #10A3E0;
  color: white;
  padding: 5px 5px;
  margin: 0px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background-image:linear-gradient(to bottom , #10A3E0, #137DA9)
}

input[type=button]:hover {
  background-color: #137DA9;
  background-image:linear-gradient(to bottom, #137DA9, blue)
}


button {
  width: 150px;
  color: white;
  padding: 5px 5px;
  margin: 0px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  /*
  background-color: #10A3E0;
  */
  background-image:linear-gradient(to bottom, #10A3E0, #137DA9)
/*  box-shadow: 3px 3px 3px #FE8176;*/
}

button:hover {
  background-color: #137DA9;
  background-image:linear-gradient(to bottom, #137DA9, blue )
}


input[type=text]:focus {
  background-color: #FFFFC0;
}
input[type=password]:focus {
  background-color: #FFFFC0;
}

textarea {
	caret-color: red;  
	width: 14.7em;
	height: 5em;
	border: 1px solid #FFBDB7;
	padding: 0.5em;
	border-radius: 4px;
}
textarea:focus {
      background: #FFFFC0;
}


input[type=date], select {
  width: 120px;
  padding: 3px 3px;
  margin: 0px 0;
  display: inline-block;
  border: 1px solid #FFBDB7;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=time], select {
  width: 80px;
  padding: 3px 3px;
  margin: 0px 0;
  display: inline-block;
  border: 1px solid #FFBDB7;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=date]:focus {
  background-color: #FFFFC0;
}
input[type=time]:focus {
  background-color: #FFFFC0;
}


.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}

/*Scrollbare Tabelle */
.my-custom-scrollbar {
position: relative;
height: 300px;
overflow: auto;
}
.table-wrapper-scroll-y {
display: block;
}

/*Straßensuche*/

legend {
    font-weight: bold;}

label small {
    display: block;}
	
	

li.big {
  	font-weight: bold;}


li.small {
  	font-weight: normal;}
	
.pad {
  padding: 2rem 1.5rem 2.5rem;}

.pad_mini {
  padding: 0.5rem 0.75rem 0.75rem;}

.layer {
  box-shadow: 0 0.15rem 0.5rem rgba( 0, 0, 0, 0.3 );}
	
.info {
  background-color: rgba(255,255,255,0.92);}

.green-border-left {
  border-left: 10px solid #090;}
@media ( max-width: 30rem ) 
    and ( orientation: portrait ) { 

.layer {
  box-shadow: none;}


   /* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

.tabcontent {
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}
