@charset "UTF-8";
/* ---- HEADER - Navigation --- */
/* jquery.responsive-nav.js 1.0.39 by @viljamis / Source: https://github.com/samikeijonen/responsive-nav.js/tree/dropdowns */
#mp-hnav {
  background-color: #114b62;
  color: #64b2d2;
  margin-top: 0;
  min-height: 5em;
  display: flex;
  justify-content: center;
}

@media (max-width: 767px) {
  #mp-hnav {
    position: relative;
  }
}

#mp-hnav::before,
#mp-hnav::after {
  content: " ";
  display: table;
} 
#mp-hnav::after {
  clear: both;
}

/* basics */
.nav-collapse ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  list-style: none;
}
.nav-collapse li {
  width: 100%;
  display: block;
}
.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
  zoom: 1;
}
.nav-collapse.opened {
  max-height: 9999px;
  z-index: 98;
  float: none !important;
}
.nav-toggle {
  background-color: #114b62;
  border: 2px solid #114b62;
  color: #64b2d2;
  font-size: 1em;	
  line-height: 3.125em;
  height: 3.125em;
  min-width: 3.125em;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  z-index: 99;
}
.nav-toggle:hover, .nav-toggle:focus {
  background-color: #114b62;
  border-color: #64b2d2;
  color: #64b2d2;
}
/*
.nav-toggle[aria-expanded="true"] {
  width: 100%;
}
*/
.nav-toggle img {
  width: 2.125em;
  margin-bottom: 0.625em;
}

@media screen and (min-width: 60em) {
  .js .nav-collapse {
    position: relative;
  }
  .js .nav-collapse.closed {
    max-height: none;
  }
  .nav-toggle {
    display: none;
  }
}

/* styled */
.nav-collapse {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.nav-collapse,
.nav-collapse ul {
  list-style: none;
  width: 100%;
  float: left;
}

@media screen and (min-width: 60em) {
  .nav-collapse {
    width: auto;
  }
}
/*
.nav-collapse > ul {
  border-top: 1px solid rgba(255,255,255, .15);
}
 */
.nav-collapse li {
  float: left;
  width: 100%;
}

@media screen and (min-width: 60em) {
  .nav-collapse li {
    width: 14em;
  }
  .nav-collapse li li {
    width: auto;
  }
}

.nav-collapse a,
.nav-collapse strong.active,
.nav-collapse strong.forward {
  background-color: #114b62;
  border-bottom: 1px solid #64b2d2;
  color: #64b2d2;
  float: left;
  padding: 0.8125em 2.5em 0.8125em 3.5em;
  text-decoration: none;
  width: 100%;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
/*.nav-collapse a.trail {
  background-image: url("/files/mp-theme/img/icons/icon-hnav-arrow-right-trail.svg");
  background-position: 0.45em center;
  background-repeat: no-repeat;
  background-size: 1em 1em;
}*/
.nav-collapse ul ul a,
.nav-collapse ul ul strong.active,
.nav-collapse ul ul strong.forward {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  padding-right: 1em;
  text-align: left;
  text-transform: none;
}

@media screen and (min-width: 60em) {
  .nav-collapse a,
  .nav-collapse strong.active,
  .nav-collapse strong.forward {
    background-color: #114b62;
    border-bottom: 0;
    color: #64b2d2;
    margin: 0;
    float: left;
    padding-left: 2.5em;
  }
}

/* ---- MULTIPLE LEVELS ---- */
.nav-collapse a:focus,
.nav-collapse a:hover,
.nav-collapse li.focus > a,
.nav-collapse li.focus > strong.active,
.nav-collapse li.focus > strong.forward {
  background-color: #64b2d2;
  /*background-image: url("/files/mp-theme/img/icons/icon-hnav-arrow-right.svg");*/
  background-position: 0.45em center;
  background-repeat: no-repeat;
  background-size: 1em 1em;
  color: #fff;
}
.nav-collapse a.active,
.nav-collapse strong.active,
.nav-collapse strong.forward {
  font-family: "Helvetica Neue Bold",Helvetica,Arial,Verdana,sans-serif;
  font-weight: 600;
  /*background-image: url("/files/mp-theme/img/icons/icon-hnav-arrow-right.svg");*/
  background-position: 0.45em center;
  background-repeat: no-repeat;
  background-size: 1em 1em;
}

@media screen and (max-width: 59.999em) {
	
  .js .nav-collapse {
    visibility: hidden;
  }
  .js .nav-collapse.opened {
    visibility: visible;
  }

  /* Enable active class to let the navigation expand over the calculated max height. */
  .js .nav-collapse.multiple-level-nav.opened.dropdown-active {
    max-height: 9999px !important;
  }

  .js .nav-collapse.multiple-level-nav .sub-menu {
    clip: rect(0 0 0 0);
    max-height: 0;
    position: absolute;
    display: none; /* This way you don't have focus on sub menu items unless you open the sub menu. */
    overflow: hidden;
    zoom: 1;
  }

  .js .nav-collapse.multiple-level-nav .sub-menu.toggled {
    display: block;
    max-height: 9999px;
    position: relative;
  }

  .js .nav-collapse li {
    position: relative;
  }

  .js .nav-collapse .dropdown-toggle {
  	background-color: #64b2d2;
    border: 1px solid #64b2d2;
    color: #114b62;
    content: "";
    height: 3.125em;
    width: 3.125em;
    padding: 0;
    position: absolute;
    margin: 0;
    text-transform: lowercase;
    top: 0;
    left: 0;
  }
  .js .nav-collapse .dropdown-toggle:hover,
  .js .nav-collapse .dropdown-toggle:focus,
  .js .nav-collapse .dropdown-toggle:active  {
    background-color: #64b2d2;
    color: #FFF;  
  }

  .js .nav-collapse .dropdown-toggle:after {
    content: "+";
    font-size: 1em;
  }
  .js .nav-collapse .dropdown-toggle.toggled:after {
    content: "-";
  }
  
}
  
.dropdown ul a,
.dropdown ul strong.active,
.dropdown ul strong.forward {
  background: #64b2d2;
  padding-left: 1.5em;
}

.dropdown ul ul a,
.dropdown ul ul strong.active,
.dropdown ul ul strong.forward {
  background: #64b2d2;
  padding-left: 2.5em;
}

@media screen and (min-width: 60em) {
  .dropdown-toggle  {
    display: none;
  }

}

.dropdown ul ul {
  border: 0;
  padding: 0;
}

.dropdown .dropdown.opened .has-dropdown {
  background: #64b2d2;
}

@media screen and (min-width: 60em) {

  .nav-collapse {
  	margin-top: 0.9375rem;
	position: relative;
  }

  .js .nav-collapse,
  .js .nav-collapse .dropdown ul {
    max-height: none;
    overflow: visible;
  }
  
  .has-dropdown:after {
    font-size: 1.5em;
    line-height: 0.8;
    float: right;
    content: "";
    width: 0;
    height: 0;
    margin: 1em 0 0 0.5em;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #64b2d2;
  }
  .dropdown ul .has-dropdown:after {
    content: "";
    width: 0;
    height: 0;
    margin: 0.3em 0 0 0.5em;
    border-bottom: 6px solid transparent;
    border-top: 6px solid transparent;
    border-left: 6px solid #64b2d2;
  }
  .nav-collapse .dropdown {
    position: relative;
  }
  .nav-collapse .dropdown li {
    width: 100%;
  }
  .nav-collapse .dropdown ul a,
  .nav-collapse .dropdown ul strong.active {
    text-align: left;
    border: 0;
  }
 
  .nav-collapse li {
    border: 0;
    display: inline-block;
    min-height: 2.8125em;
    line-height: 1.5;
    position: relative;
  }
  .nav-collapse a,
  .nav-collapse strong.active,
  .nav-collapse strong.forward {
    display: block;
  }
  .nav-collapse ul ul {
    float: left;
    margin: 0;
    position: absolute;
    top: 5em;
    left: -999em;
    z-index: 99999;
    text-align: center;
  }
  .nav-collapse li li {
    border: 0;
    display: block;
    height: auto;
  }
  .nav-collapse ul ul ul {
    left: -999em;
    top: 1.25em;
  }
  .nav-collapse ul ul a,
  .nav-collapse ul ul strong.active,
  .nav-collapse ul ul strong.forward {
  	background-color: #114b62;
  	border-top: 1px solid #64b2d2;
  	color:#64b2d2;
    text-transform: none;
    white-space: normal;
    width: 14em;
  }
  .nav-collapse ul ul strong.active,
  .nav-collapse ul ul strong.forward {
  	background-color: #64b2d2;
  	border-top: 1px solid #64b2d2;
  	color:#fff;
  }
  .nav-collapse ul li:hover > ul,
  .nav-collapse ul li.focus > ul {
    top: 2.8125em;
    left: 50%;
    margin-left: -7em;
  }
  .nav-collapse ul ul li:hover > ul,
  .nav-collapse ul ul li.focus > ul {
    top: 0;
    left: 0%;
    margin-left: 14em;
  }
  /* beim letzten Navpunkt das Dropdown nach links oeffnen, damit nichts abgeschnitten wird */
  .nav-collapse ul li.last:hover > ul, 
  .nav-collapse ul li.last.focus > ul {
    left: -20em;
    margin-left: 20em;
  }
  .nav-collapse ul li.last ul li:hover > ul,
  .nav-collapse ul li.last ul li.focus > ul {
    top: 0;
    left: 0%;
    margin-left: -14em;
  }
  
}