@charset "UTF-8";
/* ===== OFF-CANVAS MOBILE MENU (mmenu-Ersatz) ===== */
#mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

#mobile-nav {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100%;
  background: #7a9e7e;
  z-index: 9999;
  overflow-y: auto;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
}

#mobile-nav.is-open {
  left: 0;
}

.mm-navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.15);
  min-height: 50px;
}

.mm-navbar__title {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mm-close-btn {
  display: none;
}

#mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

#mobile-menu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

#mobile-menu a {
  display: block;
  padding: 14px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

#mobile-menu a:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
}

#mobile-menu li.Selected > a {
  font-weight: bold;
}

/* Pfeil-Button für Untermenüs */
.mm-sub-toggle {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  width: 50px;
  background: none;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}

.mm-sub-toggle.is-open {
  transform: rotate(90deg);
}

/* Ebene 1 */
.mobile-nav-sub-1 {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.12);
}

.mobile-nav-sub-1 > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.mobile-nav-sub-1 a {
  padding-left: 32px;
  font-size: 14px;
}

/* Ebene 2 */
.mobile-nav-sub-2 {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.12);
}

.mobile-nav-sub-2 > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.mobile-nav-sub-2 a {
  padding-left: 48px;
  font-size: 13px;
}

/* Footer-Links */
.mm-footer {
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  gap: 16px;
}

.mm-footer a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  text-decoration: none;
}

.mm-footer a:hover {
  color: #fff;
}

/* ===== BURGER-BUTTON ===== */
#trigger-mobile-menu {
  box-sizing: border-box;
  display: block;
  height: 45px;
  width: 60px;
  right: 0px;
  position: fixed;
  top: 10px;
  padding: 0 0;
  text-align: center;
  z-index: 2;
  background: rgba(102, 169, 200, 0.8) none repeat scroll 0 0;
  opacity: 1 !important;
  color: #fff;
  transition: right 0.3s ease;
  border: none;
}

#trigger-mobile-menu.menu-is-open {
  right: 320px;
}

#trigger-mobile-menu,
#trigger-mobile-menu .fa {
  font-size: 32px;
  line-height: 45px;
  color: #fff;
  transition: all 0.4s ease 0s;
  cursor: pointer;
}

/* ===== SEARCH-BUTTON ===== */
#trigger-search {
  box-sizing: border-box;
  display: block;
  height: 45px;
  width: 60px;
  right: 70px;
  position: fixed;
  top: 10px;
  z-index: 2;
  padding: 0 0;
  text-align: center;
  background: rgba(102, 169, 200, 0.8) none repeat scroll 0 0;
  color: #fff;
  cursor: pointer;
  border: none;
}

#trigger-search,
#trigger-search .fa {
  font-size: 32px;
  line-height: 45px;
  color: #fff;
  transition: all 0.4s ease 0s;
  cursor: pointer;
}

/* Ab 992px alles verstecken */
@media (min-width: 992px) {
  #trigger-mobile-menu,
#trigger-search,
#mobile-nav,
#mobile-nav-overlay {
    display: none !important;
  }
}
/* Lupe ab < 480px ausblenden */
@media (max-width: 479px) {
  #trigger-search {
    display: none !important;
  }
}

/*# sourceMappingURL=mobile-menu-custom-v2.css.map */
