@charset "UTF-8";
/*  Ein Kommentar in CSS */
/*  Der * definiert den "global reset" Hier werden alle Elemente angesprochen, die später nicht anders definiert werden. */
* {
  _font-family: arial, sans-serif;
  font-size: 100%;
}

html {
  height: 100%;
}

body {
  _font-family: "Roboto" sans-serif;
  line-height: 1.5;
}

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

/* hide show mixin */
/* global  styles */
.menu {
  background: #112C21;
  height: 70px;
  width: 100%;
  position: relative;
  z-index: 10; /*Z-Index hinzugefügt*/
}

.menu ul {
  margin-left: 5%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu,
.menu a {
  color: white;
  text-decoration: none;
	font-family: "Montserrat", sans-serif;
}

.menu a {
  display: block;
  white-space: nowrap;
}

.menu-dropdown,
.menu input[type=checkbox] {
  display: none;
}

.menu label:hover {
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .menu > ul,
.menu-righticon {
    display: none;
  }

  input[type=checkbox]:checked + ul {
    display: block;
    _-webkit-animation: grow 0.5s ease-in-out;
    _animation: grow 0.5s ease-in-out;
  }
}
@media screen and (min-width: 1025px) {
  .menu > label,
input[type=checkbox] {
    display: none;
  }

  .menu a {
    padding: 23px 20px;
  }

  .menu > ul > li {
    display: inline-block;
  }

  .menu-hasdropdown {
    position: relative;
  }
  .menu-hasdropdown:hover > ul {
    display: block;
    _-webkit-animation: grow 0.5s ease-in-out;
    _animation: grow 0.5s ease-in-out;
  }

  .menu-hasdropdown > ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #112C21;
    z-index: 999; /*hat Navigation wieder sichtbar gemacht die vom keyframeimage verdeckt wurde*/
  }

  .menu-hasflyout > ul {
    left: 100%;
    top: 0;
  }

  .menu-hasflyout .menu-downicon {
    display: none;
  }
}
/* look and feel nicht notwending für das Menue*/
@-webkit-keyframes grow {
  0% {
    display: none;
    opacity: 0;
  }
  50% {
    display: block;
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes grow {
  0% {
    display: none;
    opacity: 0;
  }
  50% {
    display: block;
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.menu-dropdown a {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* narrow  */
@media screen and (max-width: 1024px) {
  .menu > label {

    display: block;
    padding: 15px 20px;
    text-align: right;
  }

  .menu a {
    padding: 15px 20px;
    background: #112C21;
  }

  .menu > ul i {
    float: right;
    padding: 5px 10px;
    background:#1D4937;
  }

  .menu-dropdown a {
    background: #1D4937;
  }

  .menu-hasflyout > ul a {
    background: #112C21;
  }
}
@media screen and (min-width: 1025px) {
  .menu {
    _max-width: 1024px;
    margin: 0 auto;
  }
}/*# sourceMappingURL=default.css.map */