@charset "UTF-8";
/* CSS Document */

.menu {
	width: 100%;
	/*background: rgba(230,10,71,1.00);*/
  display: flex;
  flex-direction: row;
  list-style-type: none;
  
}

.style-menuetext {
	float:left;
	margin-top: -6em;
	margin-left: 7em;
	width: 100%;
	height: 46px;
}

.menu > li {
  margin: 3px 0em 0em 1em;
  overflow: hidden;
}

.menu-button-container {
	display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*Hamburger-Menue wechsel*/
@media (max-width: 700px) {
  .menu-button-container {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 5em;
    flex-direction: column;
    width: 80%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
	justify-content: space-around;
	height: 2.5em;
	width: 15em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  /**/.menu > li {
    display: flex;
	margin: 0;
    padding: 0.2em;
    width: 100%;
    color: white;
    background-color: #089231;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
  }

/*Hamburger Menu*/
#menu-toggle {
  display: none;
}
.menu-button,
.menu-button::before,
.menu-button::after {
    margin-right: -5em;
    display: block;
    background-color: #fff;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background:#087703;
}
#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}
