.is_mobile #mnmwp-main-menu #mnm-menu-button button.btn.menu-btn {
    border: none !important;
    background: var(--blue) !important;
}

.is_mobile #mnmwp-main-menu #mnm-menu-button{
    text-align:center !important;
}


@media screen and (min-width : 1130px){
	.mobile-nav{
		display: none;
	}

}



/* -------- neues Mobile Menu --------*/
/* -----------------------------------*/

.mobile-nav {
	position: relative;
	background: var(--blue);
	color: #fff;
	padding-top: 3px;
	padding-right: 8px;
	padding-bottom: 3px;
	padding-left: 8px;
	margin: auto;

}

.burger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  margin: auto;
}

.mobile-burger-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.mobile-burger-menu li {
  position: relative;
}

.mobile-burger-menu li ul {
  display: none;
  position: absolute;
  left: 0;
  top: 8px;
  background: var(--green);
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 150px;
  z-index: 1000;
}

.mobile-burger-menu li:hover > ul {
  display: block;
}

.mobile-burger-menu li.menu-item-has-children .sub-menu {
  display: none;
}

.mobile-burger-menu li.menu-item-has-children.open .sub-menu {
  display: block;
}

  .submenu-toggle.has-submenu {
	display: inline-block;
	width: 24px;
	height: 24px;
	background: url('../image/arrow.png') no-repeat center;
	cursor: pointer;
	margin-left: 8px;
	vertical-align: middle;
}

	.menu-item-has-children.open > .submenu-toggle.has-submenu {
	transform: rotate(180deg); /* Beispiel: Pfeil nach oben */
}

.submenu-toggle.no-submenu {
  background-image: url('../image/blanko.png'); /* Transparentes Bild oder leer */
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 8px;
}

.sub-menu li .submenu-toggle.no-submenu {
  display: none;
}


@media screen and (max-width: 1129px) {

	.navigation-menu {
		display: none;
	}

  .burger {
    display: block;
  }

  .mobile-burger-menu {
  position: fixed;          /* Fixiert es über der Seite */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--blue);
  flex-direction: column;
  display: none;
  overflow-y: auto;         /* scrollbar */
  padding: 1rem;
  font-size: 20px;
  height: calc(var(--vh, 1vh) * 100);  /* nimmt gesamten Viewport ein */
  }

  .mobile-burger-menu.open {
    display: flex;
  }

  .mobile-burger-menu li ul {
    position: relative;
  }

  .mobile-burger-menu li.open > ul {
    display: block;
  }

  .mobile-burger-menu li a, .mobile-burger-menu li a:visited {
	  color: var(--weiss);
  }

}
