/* ALLGEMEIN */

body {
background-color: #DAD7CD;
font-family: Arial, Helvetica, sans-serif;
}

main {
margin-left: 10px;
}

h1 {
font-size: 35px;
font-weight: bold;
letter-spacing: 4px;
color: #344E41;
text-transform: uppercase;
}

h2 {
font-weight: bold;
font-size: 25px;
color: #000000;
text-transform: uppercase;
}

/* WILLKOMMEN BEREICH */

@media (min-width: 991px) {
  #welcome_div {
  display: block;
  width: 50%;
  margin-left: 40%;
  margin-right: 60%;
  min-width: 300px;
  padding: 20px;
     animation: textwelle 2s;
  }
}

@media (max-width: 991px) {
  #welcome_div {
  display: block;
  width: 100%;
  padding: 20px;
     animation: textwelle 2s;
  }
}
    #welcome {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    }

    .welcome_bereich {
    color: #344E41;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 36px;
    margin-left: 20px;
    }

    @keyframes textwelle {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  70% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/*Tabelle*/
#customers {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#customers td, #customers th {
  border: 1px solid #ddd;
  padding: 8px;
}

#customers tr:nth-child(even){background-color: #f2f2f2;}

#customers tr:hover {background-color: #ddd;}

#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #344E41;
  color: white;
}

/* LOGIN BEREICH */
@media (min-width: 991px) {

  #login {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  }

  #login_div {
  display: block;
  border: black 2px solid;
  width: 20%;
  margin-left: 60%;
  margin-right: 40%;
  min-width: 300px;
  padding: 20px;
  background-color: #FFFFFF;
  }

#login_input {
padding: 3px;
width: 90%;
color: black;
border: 1px solid #3A5A40;
cursor: text;
margin-top: 3px;
border-radius: 4px;
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
}

#login_input: select {
border: 1px solid #000000;
  border-radius: 4px;
box-sizing: border-box;
display: inline-block;
}


.login_bereich {
color: #344E41;
text-transform: uppercase;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
font-size: 18px;
}

#login_button {
width: 45%;
min-width: 150px;
padding: 5px 5px;
border: 2px solid #588157;
border-radius: 4px;
font-weight: bold;
background-color: #588157;
color: #ffffff;
font-size: 18px;
}

#login_button:hover {
border: 2px solid #3A5A40;
background-color: #3A5A40;
color: #ffffff
}
}

@media (max-width: 991px) {

  #login {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  }

  #login_div {
  display: block;
  border: black 2px solid;
  width: 85%;
  padding: 20px;
  background-color: #FFFFFF;
  }

  .login_bereich {
  color: #344E41;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 24px;
  }

  #login_input {
  padding: 3px;
  width: 100%;
  color: black;
  border: 1px solid #3A5A40;
  cursor: text;
  margin-top: 3px;
  border-radius: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  }

  #login_input: select {
  border: 1px solid #000000;
    border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  }

  #login_button {
  width: 100%;
  min-width: 150px;
  padding: 5px 5px;
  border: 2px solid #588157;
  border-radius: 4px;
  font-weight: bold;
  background-color: #588157;
  color: #ffffff;
  font-size: 24px;
  }

  #login_button:hover {
  border: 2px solid #3A5A40;
  background-color: #3A5A40;
  color: #ffffff
  }

}


/* MENÜ BEREICH */

#sidebarMenu {
    height: 100%;
    position: fixed;
    left: 0;
    width: 250px;
    margin-top: 60px;
    transform: translateX(-250px);
    transition: transform 250ms ease-in-out;
    background: #A3B18A;
    z-index: 9;
}
.sidebarMenuInner{
    margin:0;
    padding:0;
}
.sidebarMenuInner li{
    list-style: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px;
    cursor: pointer;
        z-index: 2;

}
.sidebarMenuInner li span{
    display: block;
    font-size: 14px;
    color: #344E41;
}
.sidebarMenuInner li a{
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}
input[type="checkbox"]:checked ~ #sidebarMenu {
    transform: translateX(0);
}

input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}
.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: fixed;
    z-index: 99;
    height: 100%;
    width: 100%;
    top: 22px;
    left: 15px;
    height: 22px;
    width: 22px;
}
.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #344E41;
}
.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
}
.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
}


/* HEADER BEREICH */

.header_menu {
height: 60px!important;
width: 100%;
background-color: #A3B18A;
display: flex;
position: fixed;
top: 0;
left: 0;
	justify-content: center;
  padding-left: 80px;
  font-size: 35px;
    font-weight: bold;
letter-spacing: 4px;
align-items: center;
	justify-content: left;
  z-index: 1;
}

/* Formulare */

#form_input, #form_input_short, #form_input_medium {
  padding: 3px;
  width: 250px;
  color: black;
  border: 1px solid #3A5A40;
  cursor: text;
  margin-top: 3px;
  border-radius: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  background: white!important;
}

#form_input, #form_input_short, #form_input_medium: select {
border: 1px solid #000000;
  border-radius: 4px;
box-sizing: border-box;
display: inline-block;
}

#form_input_short {
width: 50px;
}

#form_input_medium {
width: 150px;
}

#form_button {
width: 180px;
padding: 5px 5px;
border: 2px solid #588157;
border-radius: 4px;
font-weight: bold;
background-color: #588157;
color: #ffffff;
font-size: 18px;
}

#form_button:hover {
border: 2px solid #3A5A40;
background-color: #3A5A40;
color: #ffffff
}

.td_auflistung {
color: #000000;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
font-size: 16px;
}

/* Location Tabelle */

.location_tablerow {
width: 95%;
border-bottom: 5px solid #DAD7CD;
background-color: #A3B18A;
display: table-row;
}

.td_table1, .td_table2, .td_table3, .td_table4 {
display: table-cell;
margin-right: 5px;
padding-top: 3px;
padding-bottom: 3px;
vertical-align: top;
padding: 3px;
float: left;
}

.td_table2 {
  width: 150px;
}

.td_table2 {
  width: 180px;
}

.td_table4 {
  float: right;
}

.location_table {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.icon_location {
height: 50px;
}

.ausstattung_location {
height: 20px;
}

@media (max-width: 991px) {
.td_table3 {
display : none;
}

.icon_location {
height: 40px;
}

.ausstattung_location {
height: 15px;
}

}


/* Bewertungsdiv */
 .td_bewertung1, .td_bewertung2, .td_bewertung3, .td_bewertung4, .td_bewertung5, .td_bewertung6 {
display: table-cell;
margin-right: 5px;
padding-top: 5px;
padding-bottom: auto;
margin-top: 3px;
margin-bottom: 3px;
  vertical-align: middle;
text-align: center;
padding: 3px;
float: left;
height: 42px;
width: 42px;
font-size: 26px;
  float: right;
}

.td_bewertung0 {
  display : none;
}


.td_bewertung1, {
  background-color: #009200;
}

.td_bewertung2 {
  background-color: #00EA00;
}

.td_bewertung3, .td_bewertung4 {
  background-color: #FFFF00;
}

.td_bewertung4 {
  background-color: #EF820D;
}

.td_bewertung5, .td_bewertung6 {
  background-color: #FF0000;
}

div.absolute {
  position: fixed;
  background-color: #f2f2f2;
  text-align: center;
  top: 80px;
  right: 10px;
  width: 250px;
  padding: 3px;
  border: 3px solid #588157;
}

/* Einsatzbereich mit Akkordion */
.accordion input{
  display: none;
}

.accordion .panel {
  margin: 0 auto;
  height: 0;
  overflow:hidden;
  background-color: white;
  line-height: 1.4;
  padding: 0 20px;
  box-sizing: border-box;
  transition: all 0.5s;
}

.accordion input:checked~.panel {
  height: auto;
  color: #333;
  padding: 20px;
  transition: all 0.5s;
}

.accordion label {
  cursor: pointer;
  background-color: #a3b18a;          /* Hellblau */
  border-bottom: 2px solid #a3b18a;
  display: block;
  padding: 15px;
  margin-top: 2px;
  width: 100%;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  box-sizing: border-box;
  z-index: 100;
}

.accordion input:checked+label {
  background-color: #3A5A40;
}

/* Dashboard Akkordion */
.accordions {
  background-color:  #a3b18a;
  color: #fff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 22px;
  transition: 0.4s;
  margin-top: 3px;
}

.active, .accordions:hover {
  background-color: #3A5A40;
}

.accordions:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panels {
  padding:0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.status1, .status2, .status3, .status4, .status5, .status6, .status7, .status8, .status9, .status0 {
  padding: 3px;
  text-align: center;
  font-size: 22px;
  background-color: #00ff00;
  height: 30px;
width: 30px;
float: left;
margin-right: 15px;
vertical-align: center;
}

.status6, .status9 {
    background-color: #000000;
}

.status5 {
    background-color: #0000ff;
}

.status3, .status8 {
    background-color: #ff8800;
}

.status4, .status7 {
    background-color: #ff0000;
}

.button, .button2 {
  background-color: #3A5A40;
  border: none;
  color: white;
  padding: 3px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  margin: 2px 2px;
  height: 50px;
  width: 50px;
  cursor: pointer;
}

.button2 {
    width: 100px;
}


/* zweites Menu */
body {margin:0;font-family:Arial}

.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}
