/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/
/*
// 0. Setup/Scales             ==============================

Dimensions..............PX-Value Numbers, Screen Widths, Paddings, Margins
Z-index.................Z-index Scale
Colors..................Colors
Lh-mixins...............LESS HAT for handling basic mixins

// 1. Base             ==============================

Typography..............Page Typography
Site....................Site-wide Styles (body, html)
Grid....................Grid Adjustments/Fixes
Page....................Custom-Element Styling

// 2. Modules          ==============================

Header..................Main-Navigation (Desktop) and additions
Footer..................Footer
Forms...................Custom Form-Element Styling via fancyform
Search..................Custom Search Result Styling
News....................Custom News Display Styling
RoyalSlider.............Main-Slider Styling
Pagecollector...........Custom auw-Extension: Styling (w/ masonry)
*/
/* We are using LESS HAT for handling basic mixins (http://lesshat.madebysource.com/) */
/*------------------------------------*\
    $IMPORTS
\*------------------------------------*/
/**
 * 0. Setup/Scales
 */
.ps-container.ps-active-x > .ps-scrollbar-x-rail,
.ps-container.ps-active-y > .ps-scrollbar-y-rail {
  display: block;
}
.ps-container.ps-in-scrolling {
  pointer-events: none;
}
.ps-container.ps-in-scrolling > .ps-scrollbar-x-rail {
  background-color: #eee;
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
}
.ps-container.ps-in-scrolling > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  background-color: #999;
}
.ps-container.ps-in-scrolling > .ps-scrollbar-y-rail {
  background-color: #2c70bb;
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
}
.ps-container.ps-in-scrolling > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  background-color: #1b2a89;
}
.ps-container > .ps-scrollbar-x-rail {
  display: none;
  position: absolute;
  /* please don't change 'position' */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  -moz-transition: background-color 0.2s linear, opacity 0.2s linear;
  -o-transition: background-color 0.2s linear, opacity 0.2s linear;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  bottom: 3px;
  /* there must be 'bottom' for ps-scrollbar-x-rail */
  height: 8px;
}
.ps-container > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  position: absolute;
  /* please don't change 'position' */
  background-color: #aaa;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  bottom: 0;
  /* there must be 'bottom' for ps-scrollbar-x */
  height: 8px;
}
.ps-container > .ps-scrollbar-y-rail {
  display: none;
  position: absolute;
  /* please don't change 'position' */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  -moz-transition: background-color 0.2s linear, opacity 0.2s linear;
  -o-transition: background-color 0.2s linear, opacity 0.2s linear;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  right: 3px;
  margin: 5px 0;
  /* there must be 'right' for ps-scrollbar-y-rail */
  width: 8px;
}
.ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  position: absolute;
  /* please don't change 'position' */
  background-color: #1b2a89;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  right: 1px;
  /* there must be 'right' for ps-scrollbar-y */
  width: 5px;
}
.ps-container:hover.ps-in-scrolling {
  pointer-events: none;
}
.ps-container:hover.ps-in-scrolling > .ps-scrollbar-x-rail {
  background-color: #eee;
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
}
.ps-container:hover.ps-in-scrolling > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  background-color: #999;
}
.ps-container:hover.ps-in-scrolling > .ps-scrollbar-y-rail {
  background-color: #eee;
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
}
.ps-container:hover.ps-in-scrolling > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  background-color: #999;
}
.ps-container:hover > .ps-scrollbar-x-rail,
.ps-container:hover > .ps-scrollbar-y-rail {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
}
.ps-container:hover > .ps-scrollbar-x-rail:hover {
  background-color: #eee;
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
}
.ps-container:hover > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x {
  background-color: #999;
}
.ps-container:hover > .ps-scrollbar-y-rail:hover {
  background-color: #2c70bb;
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
}
.ps-container:hover > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y {
  background-color: #1b2a89;
}
/* Margins */
/* Paddings */
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.arrowright {
  content: "\e080";
  position: absolute;
  top: 4px;
  right: 0px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  font-size: 14px;
  opacity: 0.2;
}
/**
 * 1. Base
 */
/* Typography =================================================== */
/*
Raw font weights should not be specified. Instead, use the appropriate font mixin: .wf-sans-i7, .wf-sans-n7, etc.

The suffix defines the weight and style:

n = normal
i = italic
4 = normal font-weight
7 = bold font-weight
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  color: #2c70bb;
}
h1 {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 54px;
  line-height: 1.1em;
  color: white;
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }
}
h2 {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #1b2a89;
  font-size: 30px;
  line-height: 1.2em;
  margin-bottom: 6px;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 26px;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }
}
h3 {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 21px;
  line-height: 1.3em;
  color: #566b77;
  margin-bottom: 10px;
}
@media only screen and (max-width: 990px) {
  h3 {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }
}
h4 {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: #566b77;
}
h5 {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.3em;
  color: #566b77;
}
.auw_inverted p,
.auw_inverted h1,
.auw_inverted h2,
.auw_inverted h3,
.auw_inverted h4,
.auw_inverted h5 {
  color: #ffffff;
}
.align-right {
  text-align: right;
}
.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.flag {
  background-color: #2c98d9;
  padding: 4px;
}
p.bodytext,
p {
  margin: 0;
  line-height: 1.6em;
}
p.align-right {
  text-align: right;
}
p.align-center {
  text-align: center;
}
p.einleitung {
  font-size: 19px !important;
  line-height: 1.5em !important;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  p.einleitung {
    font-size: 17px !important;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }
}
.bold {
  font-weight: 700;
}
.italic {
  font-style: italic;
}
.quote {
  font-style: italic;
  font-size: 20px !important;
  border-left: 1px solid #d4dfe6;
  padding: 0 0 0 15px;
}
a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
  outline: none !important;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
a:active {
  color: inherit;
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
p a,.box-teasertext li a {
  color: #2c70bb;
  transition: all 0.1s ease-in-out;
}
p a:hover,.box-teasertext li a:hover {
  color: #1b2a89;
}
.textlink {
  text-decoration: none;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #2c70bb;
  transition: all 0.1s ease-in-out;
  font-size: 17px;
}
.textlink:hover,
.textlink:focus,
.textlink:active {
  color: #1b2a89;
}
.textlink-big {
  text-decoration: none;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  line-height: 1.3em;
  color: #2c70bb;
}
.textlink-big:hover,
.textlink-big:focus {
  color: #1b2a89;
  text-decoration: none;
}
/* Teaser-Link */
/* Btn Style */
/* Btn Style */
ul {
  padding: 0;
}
ul li {
  list-style: none;
  float: left;
  display: inline-block;
}
.textlist li {
  list-style: disc !important;
  display: list-item;
  float: none;
  margin-left: 20px;
  padding: 0 0 8px 0;
}
.textlist li + ul {
  margin-left: 20px;
}
.textlist ul + ul {
  margin-left: 40px;
}
.textlist a {
  border-bottom: none !important;
  margin-bottom: 0px !important;
  padding: 0 !important;
}
.navlist li {
  list-style: none;
  display: list-item;
  margin-right: 20px;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.navlist a {
  color: #2c70bb;
  font-size: 17px;
  transition: all 0.1s ease-in-out;
}
.navlist a:hover {
  color: #1b2a89;
}
.navlist .glyphicon {
  font-size: 70%;
}
.faqlist li {
  list-style: none;
  margin-right: 10px;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media only screen and (max-width: 990px) {
  .faqlist li {
    margin: 5px 20px 5px 0;
  }
}
.faqlist a {
  color: #2c70bb;
  font-size: 17px;
  transition: all 0.1s ease-in-out;
}
.faqlist a:hover {
  color: #1b2a89;
}
.faqlist a:focus {
  color: #1b2a89;
  font-weight: 900;
}
/* Site =================================================== */
html {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
body {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  background: #f4f4f4;
  text-rendering: optimizeLegibility;
}
@media only screen and (max-width: 767px) {
  .is_locked {
    height: 100%;
    overflow: hidden !important;
    position: fixed;
  }
}
/* Grid =================================================== */
/*------------------------------------*\
    $TYPO3
\*------------------------------------*/
#header,
#footer {
  width: 100%;
}
div.csc-textpic .csc-textpic-imagewrap .csc-textpic-image {
  margin: 0;
}
/*------------------------------------*\
		$BOOTSTRAP
\*------------------------------------*/
.container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  [class*="col-"] {
    padding: 0 7.5px;
  }
}
@media only screen and (max-width: 990px) {
  .row-fluid .full-width-tablet {
    width: 100%;
    padding: 0 20px;
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .row-fluid .full-width-tablet {
    width: 100%;
    padding: 0 !important;
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
  }
}
.row {
  margin-bottom: 0px;
}
@media only screen and (max-width: 767px) {
  .row {
    padding: 0 !important;
    margin: 0 -7.5px;
  }
}
/*------------------------------------*\
    $Page
\*------------------------------------*/
/*

MAIN LAYOUT GOES HERE

*/
#header {
  background-color: #2c70bb;
  padding: 1.7em 0 0 0;
  position: relative;
  background: #1b2a89;
  /* Old browsers */
  background: -moz-linear-gradient(left, #1b2a89 0%, #2c70bb 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #1b2a89), color-stop(100%, #2c70bb));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, #1b2a89 0%, #2c70bb 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #1b2a89 0%, #2c70bb 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #1b2a89 0%, #2c70bb 100%);
  /* IE10+ */
  background: linear-gradient(to right, #1b2a89 0%, #2c70bb 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1b2a89', endColorstr='#2c70bb', GradientType=1);
  /* IE6-9 */
  /* END Thies CSS */
}
#header .logo-holder {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #header .logo-holder {
    height: 70px;
  }
}
@media only screen and (max-width: 767px) {
  #header {
    padding: 1.5em 0 0 0;
  }
}
.to-left {
  float: left;
}
.to-right {
  float: right;
}
.navarea {
  background-color: rgba(27, 42, 137, 0.7);
  padding: 1.2em 0 1.4em 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .navarea {
    padding: 0.1em 0 0 0;
    margin-top: 12px;
  }
}
.navarea .glyphicon {
  padding-right: 3px;
  font-size: 75%;
}
.navbar {
  margin-bottom: 0px;
  min-height: 0;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: transparent !important;
}
/*Suchbereich mit transparenten Hintergrund*/
.searcharea-dossier {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.3em 0;
}
.searcharea-dossier .form-group {
  margin-bottom: 0px;
}
/*Suchbereich mit grauen Hintergrund*/
.searcharea-page {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 1.3em 0;
}
.searcharea-page .form-group {
  margin-bottom: 0px;
}
ul {
  margin: 0;
}
.extramargin20 {
  margin-top: 20px!important;
}
.nav > ul > li {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 21px;
  line-height: 1em;
  color: #ffffff;
  list-style: none;
  float: left;
  padding: 0 35px 0 0;
  vertical-align: top;
}
@media only screen and (max-width: 990px) {
  .nav > ul > li {
    font-size: 21px;
    padding: 0 25px 0 0;
  }
  .nav > ul > li.trenner-linie {
    padding: 0;
    border-top: 1px solid #f3f9fd;
    margin: 0 0 18px 0;
  }
}
@media only screen and (max-width: 767px) {
  .nav > ul > li {
    font-size: 18px;
  }
}

.nav li a:hover,
.nav a:active,
.nav a:focus {
  color: #2c98d9;
}
.nav-sub {
  zoom: 1;
}
.nav-sub:before,
.nav-sub:after {
  content: "";
  display: table;
}
.nav-sub:after {
  clear: both;
}
.nav-sub .glyphicon {
  padding-right: 8px;
}
.nav-sub ul {
  margin-right: 6%;
}
@media only screen and (max-width: 990px) {
  .nav-sub ul {
    margin: 0;
  }
}
.nav-sub > ul > li {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1em;
  color: #ffffff;
  list-style: none;
  float: right;
  padding: 3px 0 0 25px;
  position: relative;
}
@media only screen and (max-width: 990px) {
  .nav-sub > ul > li {
    padding-left: 0;
  }
  .nav-sub > ul > li:last-of-type {
    margin-right: 10px;
  }
}
form {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.form-control {
  font-size: 15px;
  padding: 3px 12px 4px 12px;
  text-overflow: ellipsis;
}
.btn-default {
  background-color: #2c98d9;
  border-color: #2c98d9;
  color: white;
  transition: all 0.1s ease-in-out;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.btn-default:hover {
  background-color: #1b2a89;
  color: white;
  border-color: #1b2a89;
}
.input-lg {
  height: 47px;
}
.input-group-addon {
  background-color: #2c98d9;
  border-color: #2c98d9;
  color: white;
  padding: 15px 17px 13px 17px;
}
.input-group-addon .glyphicon {
  top: -1px;
}
.mini-form {
  margin: 20px 0 0 30px;
}
.mini-form h4 {
  color: #1b2a89;
  margin-bottom: 15px;
}
.mini-form .special-link {
  margin-left: 10px;
  color: #ffffff;
}
.mini-form .special-link:hover {
  color: #1b2a89;
}
.btn {
  font-size: 17px;
  padding: 3px 12px 4px 12px;
}
.searcharea-page .btn,
.searcharea-dossier .btn {
  z-index: 2;
  font-size: 14px;
  padding: 13px 17px 12px 17px;
}
.content {
  margin: 3em 0 6em 0;
  zoom: 1;
}
.content:before,
.content:after {
  content: "";
  display: table;
}
.content:after {
  clear: both;
}
.contentTrigger {
  font-size: 16px;
  padding: 13px 17px 16px 17px !important;
}
.box {
  background-color: #ffffff;
  padding: 1.5em 1.5em 2em 1.5em;
  border-bottom: 2px solid #2c98d9 !important;
  margin-bottom: 30px;
  transition: 0.1s all ease-in-out;
}
.box h2 {
  margin-bottom: 10px;
}
.box-teaser {
  background-color: #ffffff;
  padding: 1.5em 1em 2em 1em;
  border-bottom: 2px solid #2c98d9;
  margin-bottom: 30px;
  transition: 0.1s all ease-in-out;
}
.box-teaser > h2 {
  font-size: 25px;
  margin-bottom: 10px;
}
.box-teaser-hover h2,
.box-teaser-hover img {
  transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
}
.box-teaser-hover:hover h2 {
  color: #2c98d9;
}
.box-teaser-hover:hover img {
  opacity: 0.9;
}
.box-link {
  background-color: #eaf3f9;
  padding: 1.5em 1em 2em 1em;
  margin-bottom: 30px;
  transition: 0.1s all ease-in-out;
}
.box-link h2 {
  font-size: 25px;
  margin-bottom: 10px;
}
.box-link:hover {
  background-color: #eaf3f9;
}
.box-image {
  width: 100%;
}
.teaser-padding {
  padding: 1.5em 1.5em 2em 1.5em;
}
.box-premium {
  background: url(../img/bg_icons_premium.png) no-repeat center center;
  background-color: #2c98d9;
  padding: 1.5em 1.5em 2.5em 1.5em;
  margin-bottom: 30px;
}
.box-premium .button {
  background-color: #2c70bb;
}
.box-premium .button:hover {
  background-color: #1b2a89;
}
.box-premium p {
  color: white;
  margin-top: 8px;
}
.box-premium h2 {
  color: white;
}
.box-dossier {
  background-color: #ffffff;
  padding: 0;
  border-bottom: 2px solid #2c98d9;
  margin-bottom: 60px;
}
.box-dossier .article {
  padding: 2em 1em 2.5em 1em;
}
.box-dossier-top {
  color: white;
  margin: 5em 0 3.5em 0;
  padding: 5.5em 0 4.5em 0;
}
.box-dossier-top h4,
.box-dossier-top h5 {
  color: #d4dfe6;
}
.box-dossier-top p {
  font-size: 19px;
}
@media only screen and (max-width: 767px) {
  .box-dossier-top {
    padding: 1em 0em 4em 0em;
  }
  .box-dossier-top p {
    font-size: 17px;
  }
}
.article-list {
  margin-bottom: 60px;
}
.article-list p {
  margin: 15px 0 0 0 !important;
  font-size: 15px;
}
.article-list img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .article-list img {
    margin: 0 0 15px 0;
  }
}
@media only screen and (max-width: 767px) {
  .article-list {
    margin: 0 0 30px 0;
  }
}
.article-list:last-child {
  margin-bottom: 0;
}
.article h1,
.article-detail h1 {
  font-size: 54px !important;
  margin-bottom: 15px !important;
  line-height: 1.1em !important;
}
@media only screen and (max-width: 767px) {
  .article h1,
  .article-detail h1 {
    font-size: 30px !important;
  }
}
.article h3,
.article-detail h3 {
  color: #1b2a89;
  margin-bottom: 10px;
}
.article p,
.article-detail p {
  font-size: 15px;
}
.article .quote,
.article-detail .quote {
  color: #2c98d9;
}
.article img,
.article-detail img {
  width: 100%;
  margin-bottom: 5px;
}
.article img {
  margin-bottom: 15px;
}
.article p {
  margin: 15px 0 0 0 !important;
}
.article h2 {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
@media only screen and (max-width: 767px) {
  .article-einleitung {
    padding: 0 1em;
  }
}
@media only screen and (max-width: 600px) {
  .article-einleitung {
    padding: 0 0.75em;
  }
}
.article-feature h2 {
  margin-bottom: 10px;
  color: #ffffff;
}
.article-feature .box-bg {
  border-bottom: none;
  margin-bottom: 0;
}
.article-feature p {
  margin: 15px 0 0 0 !important;
}
@media only screen and (max-width: 600px) {
  .article-feature {
    margin-bottom: 60px;
  }
}
.top-overlap {
  margin-top: -80px;
}
/*wird verwendet um divs extra abstand zu geben*/
.margintop1 {
  margin-top: 15px;
}
.margintop2 {
  margin-top: 2em;
}
.margintop3 {
  margin-top: 3em;
}
.margintop4 {
  margin-top: 4em;
}
.margintop6 {
  margin-top: 6em;
}
/*wird verwendet um divs in der mobilansicht extra abstand zu geben*/
@media only screen and (max-width: 990px) {
  .margin1-mobile {
    margin: 1em 0em 0em 0em;
  }
}
@media only screen and (max-width: 767px) {
  .margin2-mobile {
    margin: 2em 0em 0em 0em;
  }
}
@media only screen and (max-width: 767px) {
  .margin3-mobile {
    margin: 3em 0em 0em 0em;
  }
}
@media only screen and (max-width: 990px) {
  .margin3-tablet {
    margin: 3em 0em 0em 0em;
  }
}
.bordertop {
  border-top: 1px solid #eee;
  padding-top: 30px !important;
}
@media only screen and (min-width: 990px) {
  .teaser {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .teaser {
    padding-left: 0;
    padding-right: 0;
  }
}
.teaser-dossier .wrapkarten {
  left: 1em;
  bottom: 1em;
}
.teaser-dossier h4 {
  color: #d4dfe6;
}
.teaser-dossier h2 {
  color: #ffffff;
}
.teaser-dossier img {
  height: 100%;
}
.box-map,
.box-page {
  background-color: #ffffff;
  padding: 2em 2em 4em 2em;
  border-bottom: 2px solid #2c98d9;
  margin-bottom: 30px;
  zoom: 1;
}
.box-map:before,
.box-page:before,
.box-map:after,
.box-page:after {
  content: "";
  display: table;
}
.box-map:after,
.box-page:after {
  clear: both;
}
.box-map p,
.box-page p {
  margin-bottom: 15px;
}
.box-map h1,
.box-page h1 {
  color: #1b2a89;
  font-size: 30px;
  margin-bottom: 6px;
  line-height: 1.2em;
}
.box-map h3,
.box-page h3 {
  color: #1b2a89;
  margin-bottom: 10px;
}
.box-map h5,
.box-page h5 {
  margin: 10px 0 0 0;
}
.box-map .box-leiste,
.box-page .box-leiste {
  color: white;
  margin: 15px 0;
}
.box-map .box-linklist,
.box-page .box-linklist {
  padding-left: 0;
  padding-top: 5px;
  margin-bottom: 2em;
}
.box-map .tags,
.box-page .tags {
  background-color: #2c98d9;
}
@media only screen and (max-width: 767px) {
  .box-map,
  .box-page {
    padding: 1.5em 1.5em 3em 1.5em;
  }
}
.greyborder {
  border: 1px solid #eaf3f9;
}
.box-search {
  background-color: #ffffff;
  padding: 1.5em 2em 2em 2em;
  border-bottom: 2px solid #2c98d9;
  zoom: 1;
}
.box-search:before,
.box-search:after {
  content: "";
  display: table;
}
.box-search:after {
  clear: both;
}
.box-search > h2 {
  padding-bottom: 7px;
  border-bottom: 1px solid #DBE6ED;
  margin-bottom: 20px;
}
.box-search > h5 {
  margin: 12px 0;
  padding-bottom: 4px;
  border-bottom: 1px solid #DBE6ED;
  display: table;
}
.box-img-text {
  margin: 0 0 30px 0;
  zoom: 1;
}
.box-img-text:before,
.box-img-text:after {
  content: "";
  display: table;
}
.box-img-text:after {
  clear: both;
}
.box-img-text .button .glyphicon {
  font-size: 90%;
  top: 2px;
}
.box-img-text > h3 {
  color: #1b2a89;
  margin-bottom: 6px;
  float: ;
}
.box-img-text > h5 {
  margin: 7px 0;
  display: table;
  line-height: 1.3em;
}
.box-img-text > img {
  padding: 0 0 20px 0;
  width: 100%;
}
@media only screen and (max-width: 990px) {
  .box-img-text {
    margin-top: 15px;
  }
}
.box-nobg {
  margin-bottom: 60px;
  zoom: 1;
}
.box-nobg .sm-box-img {
  margin-top: 8px;
  padding-right: 15px;
}
.box-nobg .glyphicon {
  font-size: 50%;
  vertical-align: middle;
}
.box-nobg ul li {
  width: 100%;
  margin-bottom: 15px;
}
.box-nobg ul li:last-child {
  margin-bottom: 0;
}
.box-nobg ul li img {
  float: left;
  padding-right: 8px;
}
.box-nobg:before,
.box-nobg:after {
  content: "";
  display: table;
}
.box-nobg:after {
  clear: both;
}
.box-nobg > .textlink-big {
  margin-bottom: 6px;
  display: block;
}
.box-bg {
  color: white;
  border-bottom: 2px solid #2c98d9;
  margin-bottom: 30px;
  position: relative;
}
.box-bg img {
  width: 100%;
  opacity: 1;
  transition: 0.1s all ease-in-out;
}
.box-bg h4 {
  color: #d4dfe6;
}
.box-bg p {
  font-size: 115%;
}
.box-bg img:hover {
  opacity: 0.9;
}
.box-bg-karten {
  margin-bottom: 30px;
  position: relative;
  background-color: black;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 200px;
  overflow: hidden;
}
.box-bg-karten img {
  opacity: 0.6;
  transition: all 0.1s ease;
}
@media only screen and (min-width: 990px) {
  .box-bg-karten img {
    width: 120%;
    height: auto;
  }
}
@media only screen and (max-width: 600px) {
  .box-bg-karten img {
    width: 120%;
    height: auto;
  }
}
.box-bg-karten img:hover {
  opacity: 0.5;
}
.overlay-wrap {
  background: #000;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  transition: all 0.1s ease;
}
.overlay-wrap:hover {
  opacity: 0.5;
}
.box-bg-teaser {
  margin-bottom: 30px;
  position: relative;
  background-color: black;
  height: 200px;
  overflow: hidden;
}
.box-bg-teaser img {
  opacity: 0.7;
  transition: all 0.1s ease;
  height: 100%;
}
@media only screen and (max-width: 990px) {
  .box-bg-teaser img {
    width: 110%;
    height: auto;
  }
}
.box-bg-teaser img:hover {
  opacity: 0.5;
}
.box-wrap {
  padding-bottom: 1em;
  border-radius: 6px;
  font-size: 80%;
  margin-bottom: 15px;
}
.box-wrap li {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #566b77;
  display: block;
  font-size: 17px;
  line-height: 1.3em;
  margin: 6px 0 4px 0;
  padding: 0 14px 7px 0;
  border-bottom: 1px solid #eaf3f9;
  position: relative;
  float: none;
}
@media only screen and (max-width: 990px) {
  .box-wrap li {
    font-size: 15px;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }
}
@media only screen and (max-width: 767px) {
  .box-wrap {
    margin-bottom: -12px;
  }
}
@media only screen and (max-width: 767px) {
  .box-wrap + .box-wrap {
    margin-bottom: 15px;
  }
}
.box-filter {
  background-color: #2c98d9;
  padding: 1.25em 1em 1.5em 1em;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  zoom: 1;
}
.box-filter:before,
.box-filter:after {
  content: "";
  display: table;
}
.box-filter:after {
  clear: both;
}
.box-filter h4 {
  color: #eaf3f9;
  font-size: 13px;
  margin-bottom: 8px;
}
.box-filter a {
  color: white;
}
.box-filter a:hover {
  color: #d4dfe6;
}
.box-filter p {
  color: white;
  font-size: 15px;
}
.box-filter .button {
  background-color: #2c70bb;
  font-weight: 600;
  font-size: 15px;
}
.box-filter h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 4px;
}
.filter-cat {
  margin-bottom: 30px;
}
.filter-cat a {
  display: block;
}
.filter-cat li {
  border-color: #70b0db;
  margin-top: 4px;
}
.filter-cat .glyphicon {
  position: absolute;
  right: 0px;
  top: 3px;
  font-size: 14px;
  transition: all 0.1s ease-in-out;
}
.filter-cat .sub-linklist a {
  color: #ffffff;
}
.filter-cat .sub-linklist a:hover {
  color: #1b2a89;
}
.filter-list .glyphicon {
  opacity: 0.2;
}
.filter-cat a.has-subs span.glyphicon,
.active-filter .glyphicon {
  opacity: 1.0;
}
.filtertags {
  padding: 0.5em 0 0.5em 0.8em;
  background-color: #2c70bb;
}
.filter {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #2c98d9;
  color: white;
  font-size: 15px;
  border-radius: 18px;
  padding: 4px 12px 6px 12px;
  display: inline;
  margin: 0 10px 10px 0;
  float: left;
  transition: all 0.1s ease-in-out;
}
.filter .glyphicon {
  top: 2px;
  font-size: 90%;
}
.filter:hover {
  color: white;
  background-color: #2c70bb;
}
.box-filter-weiss {
  background-color: #ffffff;
  padding: 1.25em 1em 2em 1em;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}
.box-filter-weiss h3 {
  font-size: 17px;
  border-bottom: 1px solid #eaf3f9;
  padding-bottom: 4px;
  margin-bottom: 4px;
}
.box-filter-weiss h4 {
  color: #1b2a89;
  font-size: 13px;
  margin-bottom: 8px;
}
.box-filter-weiss .glyphicon {
  margin-top: 2px;
}
.box-filter-weiss p {
  font-size: 14px;
}
.box-filter-weiss .button {
  color: white;
  background-color: #2c98d9;
}
.box-filter-weiss h5 {
  color: #2c70bb;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 21px;
}
.box-filter-weiss li {
  margin: 0 10px 10px 0;
}
.box-filter-weiss .textlink-big {
  display: block;
}
.box-leiste {
  position: relative;
  background-color: #2c70bb;
  padding: 0.5em 1em;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
}
.box-leiste h4 {
  margin: 2px 0 0 0;
}
.box-leiste h5 {
  display: inline-block;
  float: right;
  padding-top: 6px;
  font-size: 15px;
  color: white;
}
.box-zwischenleiste {
  position: relative;
  background-color: #2c70bb;
  padding: 0.5em 1em;
  border-top: 1px solid #f4f4f4;
}
.box-zwischenleiste h5 {
  display: inline-block;
  float: right;
  padding-top: 6px;
  font-size: 15px;
  color: white;
}
.box-endleiste {
  position: relative;
  background-color: #2c70bb;
  padding: 0.5em 1em;
  border-top: 1px solid #f4f4f4;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}
.box-endleiste h5 {
  display: inline-block;
  float: right;
  padding-top: 6px;
  font-size: 15px;
  color: white;
}
.box-endleiste h4 {
  padding-right: 16px;
  display: block;
  color: white;
  margin: 1px 0 2px 0;
}
.box-endleiste h4:hover {
  color: #d4dfe6;
}
.box-endleiste .glyphicon {
  top: 6px;
  right: 11px;
  position: absolute;
}
.box-leiste h4,
.box-zwischenleiste h4,
.box-endleiste h4 {
  padding-right: 16px;
  display: block;
  color: white;
  margin: 1px 0 2px 0;
}
.box-leiste h4:hover,
.box-zwischenleiste h4:hover,
.box-endleiste h4:hover {
  color: #d4dfe6;
}
.box-leiste .glyphicon,
.box-zwischenleiste .glyphicon,
.box-endleiste .glyphicon {
  top: 6px;
  right: 11px;
  position: absolute;
}
.box-linklist {
  display: none;
  /* wird bei klick auf "has-clicker" eingeblendet */
  background-color: #ffffff;
  padding: 1.25em 1em 1.5em 1em;
}
.box-linklist a:hover {
  color: #1b2a89;
}
.box-linklist li:last-child {
  border-bottom: none;
}
a.has-subs {
  display: block;
}
a.has-subs span.glyphicon {
  position: absolute;
  top: 4px;
  right: 0px;
  opacity: 0.2;
}
.sub-linklist {
  display: none;
  padding: 7px 0 15px 0;
}
.sub-linklist li {
  border: 0;
  padding: 3px 0;
  margin: 0;
  line-height: 18px;
}
.sub-linklist a {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  margin-bottom: 4px;
  color: #566b77;
}
.has-clicker {
  cursor: pointer;
  color: #ffffff;
  display: block;
}
.filter-cat .has-clicker .glyphicon {
  position: absolute;
  top: 3px;
  right: 0px;
}
.button {
  background-color: #2c98d9;
  padding: 0.45em 0.8em 0.65em 0.8em;
  border-radius: 18px;
  display: inline-block;
  white-space: nowrap;
  color: white;
  margin-top: 20px;
  transition: all 0.1s ease-in-out;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 1em;
  font-weight: 600;
  text-decoration: none;
}
.button:hover {
  background-color: #1b2a89;
  text-decoration: none;
  color: white;
}
.button-leiste {
  background-color: #e0e9f0;
  padding: 0.6em 0.8em;
  border-radius: 6px;
  display: inline;
  margin-left: 15px;
}
.wrap {
  z-index: 2;
  position: absolute;
  bottom: 2.5em;
  left: 1.5em;
  padding-right: 4em;
  pointer-events: none;
}
@media only screen and (max-width: 600px) {
  .wrap {
    bottom: 1em;
    left: 1.5em;
  }
}
.wrapkarten {
  z-index: 2;
  position: absolute;
  width: 95%;
  bottom: 1.5em;
  left: 1em;
  padding-right: 2em;
  pointer-events: none;
  height: auto;
  /* overflow: hidden; */
}
.wrapkarten h5,
.wrapkarten h4,
.wrapkarten h3,
.wrapkarten h2,
.wrapkarten p {
  color: #ffffff;
}
.wrapkarten h2 {
  font-size: 26px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 600px) {
  .wrapkarten {
    left: 1em;
  }
}
.addl-info {
  display: none;
  border-top: 1px solid transparent;
}
.addl-info h5 {
  line-height: 1.2em;
}
.karteninfo {
  margin-bottom: 2em;
}
.karteninfo p {
  margin-bottom: 15px;
}
.karteninfo h4 {
  border-bottom: 1px solid #d4dfe6;
  padding-bottom: 10px;
  margin-bottom: 8px;
}
.karteninfo .glyphicon {
  font-size: 80%;
}
.karteninfo a {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  color: #2c70bb;
}
.karteninfo .button .glyphicon {
  vertical-align: baseline;
}
.karteninfo.main img {
  margin-bottom: 20px;
}
.karteninfo.main p {
  margin-bottom: 45px;
  font-size: 1.25em;
}
@media only screen and (max-width: 767px) {
  .karteninfo.main p {
    font-size: 1.1em;
  }
}
.linklist p {
  margin-bottom: 30px;
}
.linklist h4 {
  margin-bottom: 15px;
}
.linklist a {
  border-bottom: 1px solid #d4dfe6;
  padding-bottom: 6px;
  margin-bottom: 8px;
  display: block;
}
.linklist .glyphicon {
  font-size: 70%;
  top: 0;
}
.linklist p:last-child {
  margin-bottom: 0px;
}
.hero {
  background: url(../img/karte_hero.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 4em 0;
  border-bottom: 3px solid #2c70bb;
  zoom: 1;
}
.hero:before,
.hero:after {
  content: "";
  display: table;
}
.hero:after {
  clear: both;
}
.hero-dossier,
.hero-artikel {
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
  padding: 0;
  border-bottom: 3px solid #2c70bb;
  zoom: 1;
}
.hero-dossier:before,
.hero-artikel:before,
.hero-dossier:after,
.hero-artikel:after {
  content: "";
  display: table;
}
.hero-dossier:after,
.hero-artikel:after {
  clear: both;
}
@media only screen and (max-width: 1170px) {
  .hero-dossier,
  .hero-artikel {
    background-attachment: initial;
  }
}
.hero-artikel {
  height: 380px;
}
.logo {
  float: left;
  margin-top: 45px;
}
@media only screen and (max-width: 767px) {
  .logo {
    width: 145px;
    margin: 20px 0;
    float: none;
  }
}
.logo2 {
  float: right;
}
@media only screen and (max-width: 767px) {
  .logo2 {
    padding: 0 15px;
    width: 80%;
    float: none;
    display: none;
  }
}
.logowestermann {
  position: absolute;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .logowestermann {
    padding: 0 15px;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.icon-right {
  float: right;
  font-size: 14px;
  opacity: 0.2;
  transition: all 0.1s ease-in-out;
}
.icon-right-visible {
  float: right;
  font-size: 14px;
  opacity: 1;
  transition: all 0.1s ease-in-out;
}
.kartenstempel {
  vertical-align: top;
  width: auto !important;
  margin-top: 10px;
}
.search {
  padding-bottom: 0px;
  margin-bottom: 15px;
}
.search > h1 {
  color: #1b2a89;
}
.search-result {
  margin-top: -52px;
}
.search-load {
  margin: 10px 0px 30px 0px;
  text-align: center;
}
.no-margin {
  margin: 0 !important;
}
.no-padding {
  padding: 0 !important;
}
@media only screen and (min-width: 767px) {
  .no-padding-medium {
    padding: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .no-padding-mobile {
    padding: 0 !important;
  }
}
.trenner {
  border-bottom: 1px solid #DBE6ED;
  margin-top: 30px;
}
.trennerbild {
  margin-top: -32px;
}
.box-merge {
  margin-top: -30px;
}
.trennerheadline {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 30px !important;
}
@media only screen and (max-width: 767px) {
  .trennerheadline {
    margin-bottom: 15px !important;
  }
}
.mapinfo {
  float: left;
  position: relative;
  top: 25px;
  left: 0px;
}
.mapinfo > h5 {
  color: white;
}
input.form-control:focus {
  border: 1px solid #a3aaae;
}
.tags {
  font-family: 'Lato', Helvetica, Arial, sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  background-color: #2c70bb;
  color: white !important;
  font-size: 15px;
  border-radius: 18px;
  padding: 4px 12px 6px 12px;
  display: inline;
  margin: 0 10px 10px 0;
  float: left;
  transition: all 0.1s ease-in-out;
}
.tags:hover {
  background-color: #1b2a89;
  color: white;
}
.stempel-ico {
  width: 38px;
  border: 1px solid #f0f0f0;
  border-radius: 1px;
  background-color: white;
  position: absolute;
  bottom: 126px;
  left: 83%;
}
.stempel-ico span {
  display: block;
  float: left;
  width: 10px;
  height: 10px;
  margin: 1px;
  background-color: #f0f0f0;
}
.stempel-ico span:nth-child(3n+4) {
  clear: left;
}
.stempel-ico .blue {
  background-color: #1d71b7;
}
.stempel-ico .yellow {
  background-color: #ffde00;
}
.stempel-ico .red {
  background-color: #eb5b0c;
}
@media only screen and (max-width: 990px) {
  .stempel-ico {
    left: auto;
    right: 1%;
  }
}
@media only screen and (max-width: 767px) {
  .stempel-ico {
    bottom: 130px;
    left: auto;
    right: 5%;
  }
}
.img-responsive {
  width: 100%;
}
.form-group textarea {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  height: 100px;
  padding-top: 8px;
}
.multiselect-wrap .dropdown-menu > .active > a,
.multiselect-wrap .dropdown-menu > .active > a:hover,
.multiselect-wrap .dropdown-menu > .active > a:focus {
  background: transparent;
  color: inherit;
}
.multiselect-wrap.dropdown-toggle.btn {
  font-size: 14px;
}
.multiselect-wrap .btn-group > .btn,
.multiselect-wrap .btn-group > .btn:focus,
.multiselect-wrap .btn-group > .btn:hover {
  background: transparent;
  border: 1px solid #ccc;
  color: #555;
  font-size: 16px;
}
.multiselect-wrap .multiselect-container > li {
  display: block;
  width: 100%;
}
.glyphicon-light {
  opacity: 0.45;
  font-size: 55% !important;
}
.glyphicon-light:hover {
  color: #2c70bb;
  opacity: 1;
}
@media only screen and (max-width: 990px) {
  .outer-wrapper {
    right: 20.75%;
    top: 44px;
    border-top-right-radius: 0 !important;
    border-top-left-radius: 6px !important;
  }
}
@media only screen and (max-width: 767px) {
  .outer-wrapper {
    -webkit-border-radius: 0px 0px 0px 0px !important;
    -webkit-background-clip: padding-box !important;
    -moz-border-radius: 0px 0px 0px 0px !important;
    -moz-background-clip: padding !important;
    border-radius: 0px 0px 0px 0px !important;
    background-clip: padding-box !important;
  }
}
.login-form ul li {
  margin: 15px 0px;
  border-bottom: 1px solid #d4dfe6;
  padding-bottom: 15px;
  width: 100%;
}
.login-form ul li a {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  color: #2c98d9;
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  padding: 0px 0 5px;
}
.login-form ul li a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .login-form button {
    margin-bottom: 10px;
    width: 100%;
  }
}
/*------------------------------------*\
    $Hacks
\*------------------------------------*/
figure img {
  width: 100%;
  height: auto;
}
.news-list-view img {
  max-width: 100% !important;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  figure img {
    max-width: 100%;
    height: auto;
    width: auto;
  }
}
/*------------------------------------*\
    $Page-Update
\*------------------------------------*/
.mm-list li span {
  display: inline-block !important;
  padding: 0;
  padding-right: 10px !important;
  line-height: 1em !important;
  top: 2px !important;
  margin-bottom: 0px !important;
}
@media only screen and (min-width: 990px) {
  .hidden-l {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .content {
    margin: 2em 0;
  }
  .searcharea {
    padding: 2em 0 2em 0;
  }
  .form-control {
    font-size: 15px;
  }
  .mapinfo {
    display: none;
  }
  .button {
    margin-top: 15px;
    margin-bottom: 0px;
  }
  .show-xs {
    display: inline-block !important;
    margin-bottom: 10px;
  }
  .mini-form {
    margin: 20px 0 0 0;
    padding: 0;
  }
}
@media only screen and (max-width: 600px) {
  .box-bg {
    overflow: hidden;
    height: 310px;
  }
  .box-bg img {
    width: auto !important;
    height: 100% !important;
  }
}
/**
 * 2. Modules
 */
/*!
 * Yamm!3 - Yet another megamenu for Bootstrap 3
 * http://geedmo.github.com/yamm3
 * 
 * @geedmo - Licensed under the MIT license
 */
.yamm .nav,
.yamm .collapse,
.yamm .dropup,
.yamm .dropdown {
  position: static;
}
.yamm .container {
  position: relative;
}
.yamm .dropdown-menu {
  left: auto;
  margin-top: 9px;
}
.yamm .yamm-content {
  padding: 20px 30px;
}
.yamm .yamm-content li {
  color: #2c70bb;
  float: none;
  display: block;
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}
.yamm .yamm-content li a:hover {
  color: #1b2a89;
}
.yamm .yamm-content li a.has-clicker {
  color: #2c70bb;
  display: block;
}
.yamm .yamm-content li:first-child {
  border-bottom: 1px solid #a5acb1;
}
.yamm .yamm-content .glyphicon {
  top: 6px;
  opacity: 0.5;
}
.yamm .yamm-content .box-linklist {
  padding: 5px 0 10px 15px;
}
.yamm .yamm-content .box-linklist a,
.yamm .yamm-content .box-linklist li {
  border: none;
  padding-left: 0;
}
.yamm .yamm-content .box-linklist a {
  padding-right: 10px;
}
.yamm .dropdown.yamm-fw .dropdown-menu {
  left: 0;
  right: 0;
}
.dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s  ease;
  -moz-transition: all 0.2s  ease;
  -webkit-transition: all 0.2s  ease;
  -o-transition: all 0.2s  ease;
  -ms-transition: all 0.2s  ease;
}
.open .dropdown-menu {
  visibility: visible;
  opacity: 1;
}
.nav .yamm-fw > a:after {
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s  ease;
  -moz-transition: all 0.2s  ease;
  -webkit-transition: all 0.2s  ease;
  -o-transition: all 0.2s  ease;
  -ms-transition: all 0.2s  ease;
  top: 13px;
  width: 10px;
  z-index: 99999;
  margin: auto;
  left: 0;
  right: 0;
  content: '';
  position: absolute;
  border-top-width: 0;
  display: block;
  border-color: transparent;
  border-style: solid;
  border-width: 10px;
  border-bottom-color: #fff;
}
.nav .yamm-fw > a {
  position: relative;
}
.nav .open > a:after {
  visibility: visible;
  opacity: 1;
}
/**
 * Bootstrap Multiselect v0.9.8 (https://github.com/davidstutz/bootstrap-multiselect)
 *
 * Copyright 2012 - 2014 David Stutz
 *
 * Dual licensed under the BSD-3-Clause and the Apache License, Version 2.0.
 */
.multiselect-container {
  position: absolute;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.multiselect-container .input-group {
  margin: 5px;
}
.multiselect-container > li {
  padding: 0;
}
.multiselect-container > li > a.multiselect-all label {
  font-weight: bold;
}
.multiselect-container > li.multiselect-group label {
  margin: 0;
  padding: 3px 20px 3px 20px;
  height: 100%;
  font-weight: bold;
}
.multiselect-container > li.multiselect-group-clickable label {
  cursor: pointer;
}
.multiselect-container > li > a {
  padding: 0;
}
.multiselect-container > li > a > label {
  margin: 0;
  height: 100%;
  cursor: pointer;
  font-weight: normal;
  padding: 3px 20px 3px 40px;
}
.multiselect-container > li > a > label.radio,
.multiselect-container > li > a > label.checkbox {
  margin: 0;
}
.multiselect-container > li > a > label > input[type="checkbox"] {
  margin-bottom: 5px;
}
.filter .btn {
  padding: 6px 3px;
}
.btn-group > .btn-group:nth-child(2) > .multiselect.btn {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.form-inline .multiselect-container label.checkbox,
.form-inline .multiselect-container label.radio {
  padding: 3px 20px 3px 40px;
}
.form-inline .multiselect-container li a label.checkbox input[type="checkbox"],
.form-inline .multiselect-container li a label.radio input[type="radio"] {
  margin-left: -20px;
  margin-right: 0;
}
/* Main-Nav =================================================== */
/*------------------------------------*\
    $Mobile/Off-Canvas Nav
\*------------------------------------*/
#mobile-nav-trigger {
  position: absolute;
  bottom: 13px;
  left: 15px;
  width: 30px;
  height: 30px;
  z-index: 10;
  display: none;
}
#mobile-nav-trigger span {
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  width: 100%;
  height: 4px;
  background: white;
  display: block;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  #mobile-nav-trigger {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .nav {
    display: none;
  }
}
.navbar {
  border: none;
}
.row-mobile {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .row-mobile {
    padding: 0px -7.5px;
    margin-right: -7.5px;
    margin-left: -7.5px;
  }
}
.search-layer {
  -webkit-border-radius: 0px 0px 6px 6px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0px 0px 6px 6px;
  -moz-background-clip: padding;
  border-radius: 0px 0px 6px 6px;
  background-clip: padding-box;
  width: 359px;
  position: absolute;
  top: 42px;
  z-index: 300;
  background: white;
  border: 1px solid #a3aaae;
  border-top: none;
  padding: 15px;
  padding-bottom: 0;
  padding-top: 0;
  display: none;
}
@media only screen and (max-width: 767px) {
  .search-layer {
    width: 365px;
    top: 42px;
  }
}
a.cat-headline {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-style: normal;
  color: #566b77;
  font-size: 13px;
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  a.cat-headline {
    font-size: 14px;
  }
}
.cat-container {
  border-bottom: 1px solid #d4dfe6;
  padding-bottom: 23px;
  margin-bottom: 15px;
}
.cat-container:first-child {
  border-top: 1px solid #eaf3f9;
  padding-top: 8px;
  padding-bottom: 0;
}
.cat-container:last-child {
  border-bottom: none;
  margin-bottom: 5px;
}
.cat-entry {
  margin-bottom: 10px;
}
.cat-entry p {
  line-height: 1.3;
}
.cat-entry a {
  color: #2c70bb;
  transition: all 0.1s ease-in-out;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.cat-entry a:hover {
  color: #1b2a89;
}
.cat-more {
  margin-top: 20px;
}
.cat-more a {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 15px;
  color: #2c98d9;
  transition: all 0.1s ease-in-out;
}
.cat-more a:hover {
  color: #1b2a89;
}
.cat-more .glyphicon {
  font-size: 70%;
  top: 0px;
}
#search-selector {
  margin-bottom: 30px;
}
#search-selector .col-md-8 {
  padding-left: 0;
}
#search-selector i,
#search-selector #remove-all {
  cursor: pointer;
}
#search-selector #remove-all {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
#search-selector #search-grid {
  border: 1px solid #f0f0f0;
  border-radius: 3px;
  background-color: white;
  padding: 5px;
  padding-top: 0;
  width: 136px;
}
#search-selector #search-grid span {
  cursor: pointer;
  display: block;
  float: left;
  height: 38px;
  margin-left: 5px;
  margin-top: 5px;
  background-color: #f0f0f0;
  width: 38px;
}
#search-selector #search-grid span:first-child {
  margin-left: 0;
}
#search-selector #search-grid span:hover > .tooltip-text {
  display: block;
}
#search-selector #search-grid span.col-1.active {
  background-color: #eb5b0c;
}
#search-selector #search-grid span.col-1:hover {
  background-color: #f7bd9e;
}
#search-selector #search-grid span.col-2.active {
  background-color: #ffde00;
}
#search-selector #search-grid span.col-2:hover {
  background-color: #fff4b2;
}
#search-selector #search-grid span.col-3.active {
  background-color: #1d71b7;
}
#search-selector #search-grid span.col-3:hover {
  background-color: #8db8db;
}
#search-selector #search-grid span .tooltip-text {
  background: transparent;
  color: #fff;
  display: none;
  font-size: 13px;
  position: absolute;
  left: 140px;
  top: -5px;
  width: 60px;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media only screen and (max-width: 990px) {
  #search-selector #search-grid span .tooltip-text {
    display: none !important;
  }
}
#search-selector #search-grid span:nth-child(3n+4) {
  clear: left;
  margin-left: 0;
}
#myModal .modal-dialog {
  width: 650px;
}
#myModal .modal-dialog img {
  display: inline-block;
  margin: 0 auto;
}
.filter-box {
  position: relative;
}
.filter-box .box-leiste:after {
  content: "";
  display: table;
  clear: both;
}
.filter-box .box-wrap {
  position: absolute;
  background: none;
  border-radius: 0;
  z-index: 400;
  top: 0;
  left: -263px;
  width: 233px;
}
@media only screen and (max-width: 767px) {
  .filter-box .box-wrap {
    right: 25px;
    top: 10px;
    left: auto;
  }
  .filter-box .box-wrap h4 {
    display: none;
  }
}
/* Footer =================================================== */
#footer {
  background-color: #2c98d9;
  padding: 36px 0 50px 0;
  margin-top: 120px;
  color: #ffffff;
}
@media only screen and (max-width: 990px) {
  #footer {
    margin-top: 60px;
  }
  #footer .row .col-md-9 .row {
    padding-bottom: 0!important;
  }
  #footer .col-md-4,
  #footer .col-md-5 {
    margin-top: 25px;
  }
}
#footer .row {
  padding: 8px 0!important;
}
#footer .footer-logo {
  margin-left: -6px;
}
#footer a {
  color: #ffffff;
}
#footer a:hover {
  color: #1b2a89;
}
#footer ul {
  margin-top: 20px;
}
#footer ul li {
  padding: 0;
  margin: 0;
}
#footer ul li:first-of-type a {
  margin-left: 0;
}
#footer ul li:last-of-type {
  border: 0;
}
@media only screen and (max-width: 990px) {
  #footer ul li {
    border: none;
    margin: 0 20px 10px 0;
  }
}
#footer ul a {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.15em;
  margin: 0 10px;
  line-height: 1em;
  transition: all 0.1s ease-in-out;
}
@media only screen and (max-width: 990px) {
  #footer ul a {
    margin: 0;
  }
}
#footer .footer-img {
  float: right;
}
#footer .ico-link {
  padding: 2px 0 5px 26px;
  display: block;
  background-position: left center;
  background-repeat: no-repeat;
}
#footer .ico-link.facebook {
  background-image: url(../img/facebook-ico.png);
}
#footer .ico-link.twitter {
  background-image: url(../img/twitter-ico.png);
}
#nav .nav-sub li:hover {
  color: inherit;
}
#nav .nav-sub li:hover > a {
  color: #2c98d9;
}
.popover {
  color: #000;
  max-width: inherit;
}
.popover .auw-popover-wrap {
  min-width: 270px;
  width: 270px;
}
.popover .popover-content {
  padding-bottom: 0;
  padding-right: 14px;
}
.popover .popover-content h3 {
  color: #1b2a89;
  font-size: 14px;
  font-weight: bold;
  margin: 5px 0 12px;
  text-transform: uppercase;
}
.popover .popover-content h3 #login-error-info {
  opacity: 0;
  float: right;
  font-size: 14px;
  color: red;
  text-transform: none;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.popover .popover-content input.error {
  color: red;
}
.popover .popover-content input.error::-webkit-input-placeholder {
  /* WebKit browsers */
  color: red;
}
.popover .popover-content input.error:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: red;
  opacity: 1;
}
.popover .popover-content input.error::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: red;
  opacity: 1;
}
.popover .popover-content input.error:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: red;
}
.popover .popover-content p {
  color: #302f2f;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
}
.popover .popover-content #popover-login,
.popover .popover-content #popover-pwforgot {
  display: inline-block;
  font-size: 14px;
}
.popover .popover-content #popover-login {
  color: #2c98d9;
  font-weight: bold;
}
.popover .popover-content #popover-login:after {
  content: ">";
  display: inline-block;
  padding-left: 5px;
}
.popover .popover-content #popover-pwforgot {
  color: #302f2f;
  float: right;
}
.popover .popover-content .login-success {
  margin-bottom: 15px;
  width: 270px;
}
.popover .popover-content #loggedin-menu-list {
  margin-right: 0;
  min-width: 180px;
}
.popover .popover-content #loggedin-menu-list li {
  float: none;
  display: block;
}
.popover .popover-content #loggedin-menu-list li .last {
  border: 0;
}
#popover-panel {
  margin: 0 -15px;
}
#popover-panel .panel-default {
  border: 0;
  border-top: 1px solid #d4dfe6;
}
#popover-panel .panel-heading {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border: 0;
}
#popover-panel .panel-heading .panel-title {
  color: #1b2a89;
  font-size: 14px;
  padding: 5px 0;
}
#popover-panel .panel-heading .panel-title a {
  display: block;
}
#popover-panel .panel-heading .panel-title i.glyphicon {
  float: right;
}
#popover-panel .panel-heading .panel-title i.glyphicon:before {
  content: "\e113";
}
#popover-panel .panel-heading .panel-title > .collapsed > i:before {
  content: "\e114";
}
#popover-panel .panel-body {
  background-color: #f5f5f5;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
#popover-panel .panel-body li {
  border-top: 1px solid #d4dfe6;
  font-size: 12px;
  padding: 20px 0;
}
#popover-panel .panel-body li:first-child {
  border: 0;
  padding-top: 10px;
}
#popover-panel .panel-body li strong {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  color: #000;
  font-weight: bold;
}
#popover-panel .panel-body li p {
  color: #302f2f;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 400;
  font-style: normal;
}
#popover-panel .panel-body li a {
  color: #2c98d9;
  display: block;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 0 5px;
}
#popover-panel .panel-body li a:after {
  content: ">";
  display: inline-block;
  padding-left: 5px;
}
.contents a.contentTrigger {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-transition: 0.1s background ease-in-out;
  -moz-transition: 0.1s background ease-in-out;
  -o-transition: 0.1s background ease-in-out;
  transition: 0.1s background ease-in-out;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  display: inline;
  padding: 15px 17px;
  cursor: pointer;
  position: relative;
  z-index: 99;
  color: white;
  background: #2c98d9;
}
@media only screen and (max-width: 767px) {
  .contents a.contentTrigger {
    padding: 0 !important;
    width: 100%;
    height: 47px;
    display: inline-block !important;
  }
}
.contents a.contentTrigger:hover {
  text-decoration: none;
  background: #1b2a89;
}
@media only screen and (max-width: 767px) {
  .contents a.contentTrigger:hover {
    background: #2c98d9;
  }
}
.contents a.contentTrigger:active {
  color: white;
  outline: 0;
  box-shadow: none;
  background: #2c70bb;
}
.contents a.contentTrigger:focus {
  color: white;
  background: #2c70bb;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.contents a.activated {
  background: #2c70bb;
  border-color: #2c70bb;
}
.contents a.activated:focus {
  color: white;
  outline: 0;
  box-shadow: none;
  border-color: #2c70bb;
  background: #2c70bb;
}
.contents a.contentTrigger .glyphicon {
  margin-right: 6px;
  top: 2px;
}
@media only screen and (max-width: 767px) {
  .contents a.contentTrigger .glyphicon {
    position: absolute;
    width: 15px;
    height: 15px;
    margin: auto;
    left: 0;
    right: 2px;
    top: 0;
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .contents a.contentTrigger span + span {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .contents {
    margin-top: 12px;
  }
  /*------------------------------------*\
    $Outer-Wrapper
\*------------------------------------*/
  .outer-wrapper {
    -webkit-transition: 0.3s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: 0.3s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: 0.3s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: 0.3s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-border-radius: 0px 6px 6px 6px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 0px 6px 6px 6px;
    -moz-background-clip: padding;
    border-radius: 0px 6px 6px 6px;
    background-clip: padding-box;
    position: absolute;
    z-index: 1000;
    width: 350px;
    height: 445px;
    background: #2c70bb;
    display: none;
    opacity: 0;
    top: 44px;
    overflow: hidden;
  }
  .outer-wrapper ::-webkit-input-placeholder {
    color: #2c98d9;
  }
  /*------------------------------------*\
    $List-Styles
\*------------------------------------*/
  .outer-wrapper ul {
    -webkit-transition: 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    margin: 0;
    padding: 7px 15px 0 20px;
    background: #2c70bb;
    top: 0;
    left: auto;
    right: -100%;
    position: absolute;
    overflow: hidden;
    opacity: 1;
    z-index: 1100;
    width: 100%;
    height: 100%;
  }
  .outer-wrapper ul li {
    list-style-type: none;
    float: none;
    display: block;
  }
  .outer-wrapper ul li:not(.content-hero) span:hover {
    color: #2c98d9;
  }
  .outer-wrapper ul li a,
  .outer-wrapper ul li span:not(.glyphicon) {
    cursor: pointer;
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    width: 100%;
    display: inline-block;
    font-size: 16px;
    text-decoration: none;
    color: white;
    background: #2c70bb;
    padding: 5px 0px 7px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .outer-wrapper ul li .glyphicon {
    font-size: 85%;
    top: 4px;
  }
  /*------------------------------------*\
    $Hero
\*------------------------------------*/
  .outer-wrapper ul li.content-hero {
    text-align: center;
    position: relative;
    color: #2c98d9;
  }
  .outer-wrapper ul li.content-hero span {
    color: #84b1e2;
  }
  .outer-wrapper ul li.content-hero .glyphicon {
    position: absolute;
    left: 0;
    top: 10px;
  }
  .outer-wrapper ul li.content-hero .glyphicon-remove {
    right: 0;
    left: auto;
  }
  .outer-wrapper ul li.content-hero span {
    border-bottom: none;
  }
  .translate-x {
    -webkit-transform: translate(-100%, 0px);
    -moz-transform: translate(-100%, 0px);
    -o-transform: translate(-100%, 0px);
    -ms-transform: translate(-100%, 0px);
    transform: translate(-100%, 0px);
  }
  .translate-x-negative {
    -webkit-transform: translate(-100%, 0px);
    -moz-transform: translate(-100%, 0px);
    -o-transform: translate(-100%, 0px);
    -ms-transform: translate(-100%, 0px);
    transform: translate(-100%, 0px);
    opacity: 0;
  }
  .block {
    display: block;
  }
  .visible {
    display: block;
    opacity: 1;
  }
}
/*
	jQuery.mmenu CSS
*/
/*
	jQuery.mmenu panels CSS
*/
.mm-menu.mm-horizontal > .mm-panel {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}
.mm-menu .mm-hidden {
  display: none;
}
.mm-wrapper {
  position: relative;
}
.mm-menu,
.mm-menu > .mm-panel {
  width: 100%;
  height: 101%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.mm-menu {
  background: inherit;
  display: block;
  overflow: hidden;
  padding: 0;
}
.mm-menu > .mm-panel {
  background: inherit;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  z-index: 0;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 20px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.mm-menu > .mm-panel.mm-opened {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.mm-menu > .mm-panel.mm-subopened {
  -webkit-transform: translateX(-30%);
  transform: translateX(-30%);
}
.mm-menu > .mm-panel.mm-highest {
  z-index: 1;
  top: 2px;
}
.mm-menu .mm-list {
  padding: 20px 0px;
}
.mm-menu > .mm-list {
  padding-bottom: 0;
}
.mm-menu > .mm-list:after {
  content: '';
  display: block;
  height: 40px;
}
.mm-panel > .mm-list {
  margin-left: -20px;
  margin-right: -20px;
}
.mm-panel > .mm-list:first-child {
  padding-top: 0;
}
.mm-list,
.mm-list > li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
  margin-bottom: 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.mm-list > li.trenner-linie {
  border-bottom: none;
}
.mm-list {
  font: inherit;
  font-size: 14px;
}
.mm-list a,
.mm-list a:hover {
  text-decoration: none;
}
.mm-list > li {
  float: none !important;
  position: relative;
}
.mm-list > li > a,
.mm-list > li > span {
  text-overflow: ellipsis;
  overflow: hidden;
  color: inherit;
  line-height: 20px;
  display: block;
  padding: 10px 10px 13px 20px;
  margin: 0;
}
.mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults):after {
  content: '';
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults):after {
  width: auto;
  margin-left: 20px;
  position: relative;
  left: auto;
}
.mm-list a.mm-subopen {
  background: rgba(3, 2, 1, 0);
  width: 40px;
  height: 100%;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.mm-list a.mm-subopen:before {
  content: '';
  border-left-width: 1px;
  border-left-style: solid;
  display: block;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.mm-list a.mm-subopen.mm-fullsubopen {
  width: 100%;
}
.mm-list a.mm-subopen.mm-fullsubopen:before {
  border-left: none;
}
.mm-list a.mm-subopen + a,
.mm-list a.mm-subopen + span {
  padding-right: 5px;
  margin-right: 40px;
  padding: 10px 10px 12px 20px;
  margin: 0;
}
.mm-list > li.mm-selected > a.mm-subopen {
  background: transparent;
}
.mm-list > li.mm-selected > a.mm-fullsubopen + a,
.mm-list > li.mm-selected > a.mm-fullsubopen + span {
  padding-right: 45px;
  margin-right: 0;
}
.mm-list a.mm-subclose {
  text-indent: 20px;
  padding-top: 30px;
  margin-top: -20px;
}
.mm-list > li.mm-label {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 10px;
  text-transform: uppercase;
  text-indent: 20px;
  line-height: 25px;
  padding-right: 5px;
}
.mm-list > li.mm-spacer {
  padding-top: 40px;
}
.mm-list > li.mm-spacer.mm-label {
  padding-top: 25px;
}
.mm-list a.mm-subopen:after,
.mm-list a.mm-subclose:before {
  content: '';
  border: 2px solid transparent;
  display: inline-block;
  width: 7px;
  height: 7px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-bottom: -3px;
  position: absolute;
  bottom: 50%;
}
.mm-list a.mm-subopen:after {
  border-top: none;
  border-left: none;
  right: 18px;
}
.mm-list a.mm-subclose:before {
  border-right: none;
  border-bottom: none;
  margin-bottom: -12px;
  left: 22px;
}
.mm-menu.mm-vertical .mm-list .mm-panel {
  display: none;
  padding: 10px 0 10px 10px;
}
.mm-menu.mm-vertical .mm-list .mm-panel li:last-child:after {
  border-color: transparent;
}
.mm-menu.mm-vertical .mm-list li.mm-opened > .mm-panel {
  display: block;
}
.mm-menu.mm-vertical .mm-list > li > a.mm-subopen {
  height: 40px;
}
.mm-menu.mm-vertical .mm-list > li > a.mm-subopen:after {
  top: 16px;
  right: 16px;
  bottom: auto;
}
.mm-menu.mm-vertical .mm-list > li.mm-opened > a.mm-subopen:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mm-menu.mm-vertical .mm-list > li.mm-label > a.mm-subopen {
  height: 25px;
}
html.mm-opened .mm-page {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.mm-menu {
  background: #333333;
  color: rgba(255, 255, 255, 0.6);
}
.mm-menu .mm-list > li:after {
  border-color: rgba(0, 0, 0, 0.15);
}
.mm-menu .mm-list > li > a.mm-subclose {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.3);
}
.mm-menu .mm-list > li > a.mm-subopen:after,
.mm-menu .mm-list > li > a.mm-subclose:before {
  border-color: rgba(255, 255, 255, 0.3);
}
.mm-menu .mm-list > li > a.mm-subopen:before {
  border-color: rgba(0, 0, 0, 0.15);
}
.mm-menu .mm-list > li.mm-selected > a:not(.mm-subopen),
.mm-menu .mm-list > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.1);
}
.mm-menu .mm-list > li.mm-label {
  background: rgba(255, 255, 255, 0.05);
}
.mm-menu.mm-vertical .mm-list li.mm-opened > a.mm-subopen,
.mm-menu.mm-vertical .mm-list li.mm-opened > ul {
  background: rgba(255, 255, 255, 0.05);
}
/*
	jQuery.mmenu offcanvas addon CSS
*/
.mm-page {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}
html.mm-opened {
  overflow: hidden;
  position: relative;
}
html.mm-opened body {
  overflow: hidden;
}
html.mm-opened .mm-page {
  box-sizing: border-box;
  position: relative;
  overflow: hidden !important;
}
html.mm-background .mm-page {
  background: inherit;
}
#mm-blocker {
  background: rgba(3, 2, 1, 0);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}
html.mm-opened #mm-blocker,
html.mm-blocking #mm-blocker {
  display: block;
}
.mm-menu.mm-offcanvas {
  display: none;
  position: fixed;
}
.mm-menu.mm-current {
  display: block;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.mm-menu {
  width: 80%;
  min-width: 140px;
  max-width: 440px;
}
html.mm-opening .mm-page,
html.mm-opening #mm-blocker {
  -webkit-transform: translate(80%, 0);
  transform: translate(80%, 0);
}
@media all and (max-width: 175px) {
  html.mm-opening .mm-page,
  html.mm-opening #mm-blocker {
    -webkit-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}
@media all and (min-width: 550px) {
  html.mm-opening .mm-page,
  html.mm-opening #mm-blocker {
    -webkit-transform: translate(440px, 0);
    transform: translate(440px, 0);
  }
}
/*------------------------------------*\
    $MMENU Position Extension CSS
\*------------------------------------*/
.mm-menu.mm-top,
.mm-menu.mm-bottom {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.mm-menu.mm-right {
  left: auto;
  right: 0;
}
.mm-menu.mm-bottom {
  top: auto;
  bottom: 0;
}
html.mm-right.mm-opening .mm-slideout {
  -webkit-transform: translate(-80%, 0);
  -moz-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  -o-transform: translate(-80%, 0);
  transform: translate(-80%, 0);
}
@media all and (max-width: 175px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}
@media all and (min-width: 550px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-440px, 0);
    -moz-transform: translate(-440px, 0);
    -ms-transform: translate(-440px, 0);
    -o-transform: translate(-440px, 0);
    transform: translate(-440px, 0);
  }
}
/*
  jQuery.mmenu z-position extension CSS
*/
html.mm-front .mm-slideout,
html.mm-front .mm-page {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
  z-index: 0 !important;
}
html.mm-front #mm-blocker {
  -webkit-transform: translate(-80%, 0);
  -moz-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  -o-transform: translate(-80%, 0);
  transform: translate(-80%, 0);
}
.mm-menu.mm-front {
  z-index: 1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
html.mm-opened.mm-next .mm-page {
  box-shadow: none;
}
.mm-menu.mm-front,
.mm-menu.mm-next {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
.mm-menu.mm-front.mm-right,
.mm-menu.mm-next.mm-right {
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
.mm-menu.mm-front.mm-top {
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  -o-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
.mm-menu.mm-front.mm-bottom {
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
html.mm-opening .mm-menu.mm-front,
html.mm-opening .mm-menu.mm-next {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.mm-menu.mm-front.mm-top,
.mm-menu.mm-front.mm-bottom {
  height: 80%;
  min-height: 140px;
  max-height: 880px;
}
.mm-menu.mm-front > .mm-panel {
  top: 0 !important;
}
/*------------------------------------*\
    $MMENU Inhaltsverzeichnis Styling
\*------------------------------------*/
@media only screen and (max-width: 767px) {
  .content-hero {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .list-close {
    display: block !important;
  }
}
.outer-wrapper .mm-list > li > a,
.outer-wrapper .mm-list > li > span {
  color: white;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  width: 100%;
  vertical-align: -webkit-baseline-middle;
}
.outer-wrapper .mm-list > li > a > span.glyphicon,
.outer-wrapper .mm-list > li > span > span.glyphicon {
  display: none !important;
}
.outer-wrapper .mm-list a.mm-subopen + a,
.outer-wrapper .mm-list a.mm-subopen + span {
  padding: 10px 10px 13px 20px;
}
.mm-list > li > a,
.mm-list > li > span {
  line-height: 16px !important;
}
.outer-wrapper .mm-list > li > a.mm-subclose {
  padding-left: 0px;
}
.outer-wrapper .mm-list a.mm-subclose {
  padding-top: 31px;
}
.mm-list a.mm-subclose:before {
  margin-bottom: -14px;
}
.mm-list {
  border-bottom: none !important;
}
.mm-front .mm-menu {
  width: 87%;
}
@media only screen and (max-width: 767px) {
  .nav li a:hover,
  .nav a:active,
  .nav a:focus {
    color: white;
  }
}
/*------------------------------------*\
    $Nav-Blocker
\*------------------------------------*/
.nav-blocker {
  -webkit-transition: 0.1s opacity ease-in-out;
  -moz-transition: 0.1s opacity ease-in-out;
  -o-transition: 0.1s opacity ease-in-out;
  transition: 0.1s opacity ease-in-out;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 767px) {
  .mm-opening.mm-front .nav-blocker {
    opacity: 1;
    visibility: visible;
  }
}
.numberselect {
  width: 244px;
  margin: 0 auto;
}
.numberselect table td {
  border: 1px solid #2c70bb;
}
.numberselect h3 {
  color: white;
  text-transform: uppercase;
  font-size: 16px;
  text-align: left;
  margin-bottom: 10px;
}
.outer-wrapper ul li a.numeric-input {
  -webkit-transition: 0.2s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: 0.2s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: 0.2s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: 0.2s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
  display: inline-block;
  background: #2c98d9;
  margin: 0;
  padding: 0;
  width: 80px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  color: white;
}
.outer-wrapper .fast-forward {
  text-align: center;
}
.outer-wrapper .fast-forward input {
  -webkit-border-radius: 6px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 6px;
  -moz-background-clip: padding;
  border-radius: 6px;
  background-clip: padding-box;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  padding: 5px 10px;
  width: 244px;
  margin: 0 auto;
  background: white;
  border: 1px solid #2c70bb;
  height: 40px;
  margin-bottom: 25px;
  color: #555;
  margin-top: 14px;
}
.outer-wrapper .fast-forward input:focus {
  border: 1px solid #2c98d9;
  outline: 0;
  box-shadow: none;
}
.outer-wrapper .fast-forward a.btn {
  -webkit-transition: 0.2s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: 0.2s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: 0.2s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: 0.2s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  width: 244px;
  padding: 8px 0px;
  margin-top: 35px;
  display: inline-block;
  color: white;
  border: 1px solid #2c98d9;
}
.outer-wrapper .fast-forward a.btn:hover {
  background: #2c98d9;
}
.outer-wrapper ul.first-level-list {
  right: 0;
}
.outer-wrapper ul li.fastForward > span {
  color: #ffe72f;
}
@media only screen and (max-width: 767px) {
  .outer-wrapper .fast-forward input {
    width: 225px;
  }
}
@media only screen and (max-width: 767px) {
  .outer-wrapper .numberselect {
    width: 225px;
  }
}
@media only screen and (max-width: 767px) {
  .outer-wrapper .fast-forward a.btn {
    width: 225px;
  }
}
@media only screen and (max-width: 767px) {
  .outer-wrapper ul li a.numeric-input {
    width: 74px;
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
  }
}
.outer-wrapper ul li a.numeric-input.active-input {
  background: #225792;
}
@media only screen and (max-width: 767px) {
  li.border-Helper {
    border-bottom: none;
  }
}
.outer-wrapper ul li.list-close {
  text-align: center;
  margin-bottom: 1px;
  top: 1px;
}
@media only screen and (max-width: 767px) {
  .outer-wrapper ul li.list-close span span.glyphicon {
    width: auto;
    display: block !important;
    padding-right: 2px !important;
  }
}
@media only screen and (max-width: 767px) {
  .outer-wrapper ul li.list-close span {
    background: none;
    color: #84b1e2;
    width: 100%;
  }
}
.outer-wrapper ul li span .glyphicon {
  float: right;
  margin-right: 0px;
}
@media only screen and (max-width: 767px) {
  .nav > ul > li {
    font-size: 16px;
  }
}
.outer-wrapper .mm-list > li {
  font-size: 16px;
  line-height: 1em;
}
/*
	jQuery.mmenu themes extension CSS
*/
html.mm-opened.mm-light .mm-page {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.mm-menu.mm-light {
  background: #2c70bb;
  color: rgba(0, 0, 0, 0.6);
  overflow-x: hidden;
  height: 100%;
}
.mm-menu.mm-light .mm-list > li:after {
  border-color: rgba(0, 0, 0, 0);
}
.mm-menu.mm-light .mm-list > li > a.mm-subclose {
  background: none;
  color: #84b1e2;
  text-align: center;
}
.mm-menu.mm-light .mm-list > li > a.mm-subopen:after,
.mm-menu.mm-light .mm-list > li > a.mm-subclose:before {
  border-color: #84b1e2;
}
.mm-menu.mm-light .mm-list > li > a.mm-subopen:before {
  border-color: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-light .mm-list > li.mm-selected > a:not(.mm-subopen),
.mm-menu.mm-light .mm-list > li.mm-selected > span {
  background: #2c70bb;
}
.mm-menu.mm-light .mm-list > li.mm-label {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-light.mm-vertical .mm-list li.mm-opened > a.mm-subopen,
.mm-menu.mm-light.mm-vertical .mm-list li.mm-opened > ul {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-light .mm-buttonbar {
  border-color: rgba(0, 0, 0, 0.6);
  background: #f3f3f3;
}
.mm-menu.mm-light .mm-buttonbar > * {
  border-color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-light .mm-buttonbar > input:checked + label {
  background: rgba(0, 0, 0, 0.6);
  color: #f3f3f3;
}
.mm-menu.mm-light label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-light em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-light .mm-footer {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-light .mm-header {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-light .mm-header .mm-prev:before,
.mm-menu.mm-light .mm-header .mm-next:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-light .mm-list li.mm-label > div > div {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-light .mm-search input {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-light .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-light label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-light label.mm-toggle:before {
  background: #f3f3f3;
}
.mm-menu.mm-light input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
html.mm-opened.mm-white .mm-page {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-white {
  background: white;
  color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-white .mm-list > li:after {
  border-color: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-white .mm-list > li > a.mm-subclose {
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-white .mm-list > li > a.mm-subopen:after,
.mm-menu.mm-white .mm-list > li > a.mm-subclose:before {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-white .mm-list > li > a.mm-subopen:before {
  border-color: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-white .mm-list > li.mm-selected > a:not(.mm-subopen),
.mm-menu.mm-white .mm-list > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.06);
}
.mm-menu.mm-white .mm-list > li.mm-label {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-white.mm-vertical .mm-list li.mm-opened > a.mm-subopen,
.mm-menu.mm-white.mm-vertical .mm-list li.mm-opened > ul {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-white .mm-buttonbar {
  border-color: rgba(0, 0, 0, 0.6);
  background: white;
}
.mm-menu.mm-white .mm-buttonbar > * {
  border-color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-white .mm-buttonbar > input:checked + label {
  background: rgba(0, 0, 0, 0.6);
  color: white;
}
.mm-menu.mm-white label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-white em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-white .mm-footer {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-white .mm-header {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-white .mm-header .mm-prev:before,
.mm-menu.mm-white .mm-header .mm-next:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-white .mm-list li.mm-label > div > div {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-white .mm-search input {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-white .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-white label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-white label.mm-toggle:before {
  background: white;
}
.mm-menu.mm-white input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
html.mm-opened.mm-black .mm-page {
  box-shadow: none;
}
.mm-menu.mm-black {
  background: black;
  color: rgba(255, 255, 255, 0.6);
}
.mm-menu.mm-black .mm-list > li:after {
  border-color: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-black .mm-list > li > a.mm-subclose {
  background: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.3);
}
.mm-menu.mm-black .mm-list > li > a.mm-subopen:after,
.mm-menu.mm-black .mm-list > li > a.mm-subclose:before {
  border-color: rgba(255, 255, 255, 0.3);
}
.mm-menu.mm-black .mm-list > li > a.mm-subopen:before {
  border-color: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-black .mm-list > li.mm-selected > a:not(.mm-subopen),
.mm-menu.mm-black .mm-list > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.25);
}
.mm-menu.mm-black .mm-list > li.mm-label {
  background: rgba(255, 255, 255, 0.15);
}
.mm-menu.mm-black.mm-vertical .mm-list li.mm-opened > a.mm-subopen,
.mm-menu.mm-black.mm-vertical .mm-list li.mm-opened > ul {
  background: rgba(255, 255, 255, 0.15);
}
.mm-menu.mm-black .mm-buttonbar {
  border-color: rgba(255, 255, 255, 0.6);
  background: black;
}
.mm-menu.mm-black .mm-buttonbar > * {
  border-color: rgba(255, 255, 255, 0.6);
}
.mm-menu.mm-black .mm-buttonbar > input:checked + label {
  background: rgba(255, 255, 255, 0.6);
  color: black;
}
.mm-menu.mm-black label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.6);
}
.mm-menu.mm-black em.mm-counter {
  color: rgba(255, 255, 255, 0.3);
}
.mm-menu.mm-black .mm-footer {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.3);
}
.mm-menu.mm-black .mm-header {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.3);
}
.mm-menu.mm-black .mm-header .mm-prev:before,
.mm-menu.mm-black .mm-header .mm-next:after {
  border-color: rgba(255, 255, 255, 0.3);
}
.mm-menu.mm-black .mm-list li.mm-label > div > div {
  background: rgba(255, 255, 255, 0.15);
}
.mm-menu.mm-black .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
}
.mm-menu.mm-black .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.3);
}
.mm-menu.mm-black label.mm-toggle {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-black label.mm-toggle:before {
  background: black;
}
.mm-menu.mm-black input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
