/*------------------------------------*\
    $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
 */
/* Margins */
/* Paddings */
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/**
 * 1. Base
 */
/* Typography =================================================== */
/* Font Import ================================================== */
/* lato-regular - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('../../fonts/Lato/lato-v20-latin-regular.eot');
  /* IE9 Compat Modes */
  src: url('../../fonts/Lato/lato-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../../fonts/Lato/lato-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('../../fonts/Lato/lato-v20-latin-regular.woff') format('woff'), /* Modern Browsers */ url('../../fonts/Lato/lato-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('../../fonts/Lato/lato-v20-latin-regular.svg#Lato') format('svg');
  /* Legacy iOS */
}
/* lato-700 - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('../../fonts/Lato/lato-v20-latin-700.eot');
  /* IE9 Compat Modes */
  src: url('../../fonts/Lato/lato-v20-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../../fonts/Lato/lato-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */ url('../../fonts/Lato/lato-v20-latin-700.woff') format('woff'), /* Modern Browsers */ url('../../fonts/Lato/lato-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */ url('../../fonts/Lato/lato-v20-latin-700.svg#Lato') format('svg');
  /* Legacy iOS */
}
/* merriweather-regular - latin */
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  src: url('../../fonts/Merriweather/merriweather-v25-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local(''), url('../../fonts/Merriweather/merriweather-v25-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../../fonts/Merriweather/merriweather-v25-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('../../fonts/Merriweather/merriweather-v25-latin-regular.woff') format('woff'), /* Modern Browsers */ url('../../fonts/Merriweather/merriweather-v25-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('../../fonts/Merriweather/merriweather-v25-latin-regular.svg#Merriweather') format('svg');
  /* Legacy iOS */
}
/* merriweather-700 - latin */
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 700;
  src: url('../../fonts/Merriweather/merriweather-v25-latin-700.eot');
  /* IE9 Compat Modes */
  src: local(''), url('../../fonts/Merriweather/merriweather-v25-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../../fonts/Merriweather/merriweather-v25-latin-700.woff2') format('woff2'), /* Super Modern Browsers */ url('../../fonts/Merriweather/merriweather-v25-latin-700.woff') format('woff'), /* Modern Browsers */ url('../../fonts/Merriweather/merriweather-v25-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */ url('../../fonts/Merriweather/merriweather-v25-latin-700.svg#Merriweather') format('svg');
  /* Legacy iOS */
}
/*
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: #F58523;
  word-wrap: break-word;
}
h1 {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 56px;
  line-height: 1em;
  color: white;
  margin-bottom: 16px;
}
@media only screen and (max-width: 600px) {
  h1 {
    font-size: 36px;
  }
}
h2 {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #F06112;
  font-size: 32px;
  line-height: 1.2em;
  margin-bottom: 10px;
}
h3 {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 21px;
  line-height: 1.3em;
  color: #995555;
}
h4 {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  line-height: 1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
h5 {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 1em;
  color: #995555;
}
.auw_inverted p,
.auw_inverted h1,
.auw_inverted h2,
.auw_inverted h3,
.auw_inverted h4,
.auw_inverted h5 {
  color: #fff;
}
.align-right {
  text-align: right;
}
.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.flag {
  background-color: #F99C3D;
  padding: 4px;
}
p.bodytext,
p {
  margin: 0;
}
p.align-right {
  text-align: right;
}
p.align-center {
  text-align: center;
}
p.align-center {
  text-align: left;
}
p.einleitung {
  font-size: 21px !important;
  line-height: 1.6em !important;
  margin-bottom: 30px;
}
.bold {
  font-weight: 700;
}
.italic {
  font-style: italic;
}
.quote {
  font-style: italic;
  font-size: 20px !important;
  border-left: 1px solid #FDE2C5;
  padding: 0 0 0 16px;
  margin-top: -4px;
  color: #F06112;
}
a {
  color: white;
  cursor: pointer;
}
a:hover {
  color: white;
}
/* Teaser-Link */
/* Btn Style */
/* Btn Style */
ul {
  padding: 0;
}
ul li {
  list-style: none;
  float: left;
  display: inline-block;
}
/* Site =================================================== */
html {
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: "Merriweather", Helvetica, Georgia, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  background: #F4F4F4;
  text-rendering: optimizeLegibility;
}
@media only screen and (max-width: 767px) {
  .is_locked body {
    height: 100%;
    overflow: hidden;
  }
}
/* 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: 600px) {
  [class*="col-"] {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 991px) {
  .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%;
    padding: 0;
  }
}
.row {
  margin-bottom: 0px;
}
@media only screen and (max-width: 767px) {
  .row {
    width: 100%;
    padding: 0 !important;
    margin: 0;
  }
}
/*------------------------------------*\
    $Page
\*------------------------------------*/
/*

MAIN LAYOUT GOES HERE

*/
#header {
  background-color: #F58523;
  padding: 4.5em 0 3em 0;
}
#header2 {
  background-color: #F58523;
  padding: 2em 0 0 0;
  position: relative;
  background: #ef6112;
  background: linear-gradient(90deg, #ef6112 0%, #f89b3d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1b2a89', endColorstr='@color-primary', GradientType=1);
  /* IE6-9 */
}
@media only screen and (max-width: 600px) {
  #header2 {
    padding: 1.5em 0 0 0;
  }
}
.navarea {
  background-color: rgba(240, 97, 18, 0.8);
  padding: 1.2em 0 1.4em 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .navarea {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .navarea {
    padding: 0.1em 0 0 0;
    margin-top: 12px;
  }
}
.navarea .glyphicon {
  padding-right: 3px;
  font-size: 75%;
}
.searcharea {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 20px 0 20px 0;
}
.searcharea-dossier {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 20px 0 20px 0;
}
.searcharea-page {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 20px 0 20px 0;
}
ul {
  margin: 0;
}
.nav > ul > li {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 21px;
  line-height: 1em;
  color: #fff;
  list-style: none;
  float: left;
  padding: 0 25px 0 0;
  vertical-align: top;
}
.nav-sub {
  zoom: 1;
}
.nav-sub:before,
.nav-sub:after {
  content: "";
  display: table;
}
.nav-sub:after {
  clear: both;
}
.nav-sub > ul > li {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 1em;
  color: #fff;
  list-style: none;
  float: right;
  padding: 3px 0 0 23px;
}
form {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.form-group {
  margin-bottom: 0px;
}
.form-control {
  font-size: 17px;
  padding: 3px 12px 4px 12px;
  border-color: #F58523;
}
.btn-default {
  background-color: #F58523;
  border-color: #F58523;
  color: white;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.btn-default:hover {
  background-color: #F06112;
  color: white;
  border-color: #F06112;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-color: #F06112;
  color: white;
  border-color: #F06112;
  outline: none;
}
.input-group-addon {
  background-color: #F58523;
  border-color: #F58523;
  color: white;
}
.btn {
  font-size: 17px;
  padding: 3px 12px 4px 12px;
}
.content {
  margin: 3em 0 6em 0;
  zoom: 1;
}
.content:before,
.content:after {
  content: "";
  display: table;
}
.content:after {
  clear: both;
}
.box {
  background-color: #fff;
  padding: 1.5em 1.5em 2em 1.5em;
  border-bottom: 2px solid #F99C3D;
  margin-bottom: 30px;
  transition: 0.1s all ease-in-out;
}
.box:hover {
  background-color: #f2faff;
  cursor: pointer;
}
.box-teaser {
  background-color: #fff;
  padding: 1.5em 1em 2em 1em;
  border-bottom: 2px solid #F99C3D;
  margin-bottom: 30px;
  transition: 0.1s all ease-in-out;
}
.box-teaser > h2 {
  font-size: 26px;
}
.box-teaser:hover {
  background-color: #f2faff;
  cursor: pointer;
}
.teaser-padding {
  padding: 1.5em 1.5em 2em 1.5em;
}
.box-ad {
  background: url(/img/bg_icons_premium.png) no-repeat center center;
  background-color: #ffe20a;
  padding: 1.5em 1.5em 2em 1.5em;
  margin-bottom: 30px;
}
@media only screen and (max-width: 600px) {
  .box-ad {
    padding: 1.5em 1.5em 2em 1.5em;
  }
}
.box-dossier {
  background-color: #fff;
  padding: 0;
  border-bottom: 2px solid #F99C3D;
  margin-bottom: 60px;
}
.box-dossier-top {
  color: white;
  margin: 5em 0 3.5em 0;
  padding: 5.5em 0 4.5em 0;
}
.box-dossier-top h4 {
  color: #FBC48B;
}
.article-teaser {
  padding: 2em 1em 2.5em 1em;
  margin-left: 0em;
}
.article-teaser p {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.5em;
}
.article-teaser:hover {
  cursor: pointer;
  background-color: #f2faff;
}
.article {
  padding: 2em 1.5em 2.5em 1.5em;
  margin-left: 0em;
}
.article p {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.5em;
}
.article-feature {
  padding: 0em 2em;
}
.article-feature h1 {
  font-size: 40px;
}
.article-feature .box-bg {
  border-bottom: none;
}
.article:last-child {
  border-bottom: none;
}
.article-teaser img {
  width: 100%;
}
@media only screen and (max-width: 600px) {
  .article-teaser img {
    margin: 0 0 30px 0;
  }
}
.box-map {
  background-color: #fff;
  padding: 1em 1.5em 2em 1.5em;
  border-bottom: 2px solid #F99C3D;
  margin-bottom: 30px;
  zoom: 1;
}
.box-map:before,
.box-map:after {
  content: "";
  display: table;
}
.box-map:after {
  clear: both;
}
.box-map > h5 {
  margin: 10px 0 25px 0;
}
.box-search {
  background-color: #fff;
  padding: 1.5em 1.5em 2em 1.5em;
  border-bottom: 2px solid #F99C3D;
  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-search--result {
  margin: 0 0 30px 0;
  zoom: 1;
}
.box-search--result:before,
.box-search--result:after {
  content: "";
  display: table;
}
.box-search--result:after {
  clear: both;
}
.box-search--result > h3 {
  color: #F06112;
  margin-bottom: 6px;
  float: ;
}
.box-search--result > h5 {
  margin: 7px 0;
  display: table;
  line-height: 1.3em;
}
.box-search--result > img {
  padding: 0 0 20px 0;
  width: 100%;
}
.box-nobg {
  margin-bottom: 30px;
  zoom: 1;
}
.box-nobg:before,
.box-nobg:after {
  content: "";
  display: table;
}
.box-nobg:after {
  clear: both;
}
.box-nobg > h3 {
  margin-bottom: 6px;
}
.box-bg {
  color: white;
  border-bottom: 2px solid #F99C3D;
  margin-bottom: 30px;
  position: relative;
}
.box-bg:hover {
  cursor: pointer;
}
.box-bg img {
  opacity: 1;
  transition: 0.1s all ease-in-out;
}
.box-bg img:hover {
  opacity: 0.9;
}
.box-bg-karten {
  margin-bottom: 30px;
  position: relative;
  background-color: black;
  height: 200px;
  overflow: hidden;
}
.box-bg-karten img {
  opacity: 0.6;
  transition: all 0.1s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box-bg-karten__image {
  width: 100%;
  height: 100%;
}
.box-bg-karten img:hover {
  opacity: 0.85;
}
.box-wrap {
  padding-bottom: 1em;
  border-radius: 6px;
  font-size: 80%;
}
.box-filter {
  background-color: #FDE2C5;
  padding: 1.25em 1em 1.5em 1em;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}
.box-filter h3 {
  color: #995555;
  font-size: 17px;
  border-bottom: 1px solid #F06112;
  padding-bottom: 4px;
  margin-bottom: 4px;
}
.box-filter h4 {
  color: #F06112;
  font-size: 13px;
  margin-bottom: 8px;
}
.box-filter .glyphicon {
  margin-top: 2px;
}
.box-filter a {
  color: #995555;
}
.box-filter p {
  color: #995555;
  font-size: 15px;
}
.box-filter .button {
  background-color: #F58523;
  font-weight: 600;
  font-size: 15px;
}
.box-filter h5 {
  color: #995555;
  font-weight: 600;
  margin-bottom: 4px;
}
.box-filter li {
  margin: 0 10px 10px 0;
}
.box-filter-weiss {
  background-color: #fff;
  padding: 1.25em 1em 1.5em 1em;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}
.box-filter-weiss h3 {
  color: ;
  font-size: 17px;
  border-bottom: 1px solid #70b0db;
  padding-bottom: 4px;
  margin-bottom: 4px;
}
.box-filter-weiss h4 {
  color: #F06112;
  font-size: 13px;
  margin-bottom: 8px;
}
.box-filter-weiss .glyphicon {
  margin-top: 2px;
}
.box-filter-weiss a {
  color: white;
}
.box-filter-weiss p {
  color: ;
  font-size: 15px;
}
.box-filter-weiss .button {
  color: white;
  background-color: #F58523;
  font-weight: 600;
  font-size: 15px;
}
.box-filter-weiss h5 {
  color: #F58523;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 21px;
}
.box-filter-weiss li {
  margin: 0 10px 10px 0;
}
.box-leiste {
  background-color: #F58523;
  padding: 0.5em 1em;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
}
.box-leiste h4 {
  margin: 0 0 4px 0;
  display: inline-block;
  color: white;
}
.box-leiste h5 {
  display: inline-block;
  float: right;
  padding-top: 6px;
  font-size: 15px;
  color: white;
}
.button {
  background-color: #F58523;
  padding: 0.4em 1em 0.6em 1em;
  border-radius: 18px;
  display: inline-block;
  color: white;
  margin-top: 12px;
}
.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: 3em;
  left: 2.5em;
  padding-right: 4em;
  pointer-events: none;
  width: 100%;
}
@media only screen and (max-width: 600px) {
  .wrap {
    bottom: 1em;
    left: 1em;
  }
}
@media only screen and (max-width: 991px) {
  .wrap h1 {
    font-size: 40px;
  }
}
.wrapkarten {
  z-index: 2;
  position: absolute;
  bottom: 2em;
  left: 2em;
  padding-right: 2em;
  pointer-events: none;
  height: auto;
  overflow: hidden;
}
@media only screen and (max-width: 600px) {
  .wrapkarten {
    left: 1em;
  }
}
.karteninfo {
  margin-bottom: 2em;
}
.karteninfo p {
  margin-bottom: 15px;
  font-size: 16px;
}
.karteninfo h4 {
  border-bottom: 1px solid #F58523;
  padding-bottom: 10px;
  margin-bottom: 8px;
}
.karteninfo .glyphicon {
  font-size: 80%;
  vertical-align: bottom;
}
.karteninfo h5 {
  font-weight: 600;
}
.karteninfo .button .glyphicon {
  vertical-align: baseline;
}
.hero {
  padding: 0;
  zoom: 1;
}
.hero:before,
.hero:after {
  content: "";
  display: table;
}
.hero:after {
  clear: both;
}
.hero2 {
  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;
  background-attachment: fixed;
  padding: 0;
  border-bottom: 3px solid #F58523;
  zoom: 1;
}
.hero2:before,
.hero2:after {
  content: "";
  display: table;
}
.hero2:after {
  clear: both;
}
.hero-dossier {
  background: url(../img/bg_dossier4.png) no-repeat 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 #F58523;
  zoom: 1;
}
.hero-dossier:before,
.hero-dossier:after {
  content: "";
  display: table;
}
.hero-dossier:after {
  clear: both;
}
.hero-artikel {
  background: url(../img/bg_artikel_wegener.jpg) no-repeat 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 #F58523;
  height: 380px;
  zoom: 1;
}
.hero-artikel:before,
.hero-artikel:after {
  content: "";
  display: table;
}
.hero-artikel:after {
  clear: both;
}
.logo {
  float: left;
  max-width: 200px;
  margin-top: 35px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .logo {
    padding: 0 15px;
    float: none;
  }
}
@media only screen and (max-width: 600px) {
  .logo {
    width: 70%;
    margin-bottom: 20px;
  }
}
.logo2 {
  float: right;
}
@media only screen and (max-width: 991px) {
  .logo2 {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .logo2 {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  .logo2 {
    width: 80%;
    float: none;
    display: none;
  }
}
.logowestermann {
  position: absolute;
  top: 0;
  height: 35px;
  margin-top: 10px;
  padding-left: 2px;
}
@media only screen and (max-width: 767px) {
  .logowestermann {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 600px) {
}
.icon-right {
  float: right;
  font-size: 14px;
  opacity: 0.2;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}
.icon-right-visible {
  float: right;
  font-size: 14px;
  opacity: 1;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}
.icon-right:hover {
  opacity: 1;
}
.kartenstempel {
  float: right !important;
  vertical-align: top;
  width: auto !important;
  margin-left: 5px;
  margin-top: 10px;
}
@media only screen and (max-width: 600px) {
  .kartenstempel {
    margin-top: 10px;
    float: left;
  }
}
.search {
  padding-bottom: 0px;
  margin-bottom: 15px;
}
.search > h1 {
  color: #F06112;
}
.search-result {
  margin-top: -52px;
}
.no-margin {
  margin: 0 !important;
}
.no-padding {
  padding: 0 !important;
}
@media only screen and (max-width: 600px) {
}
.trenner {
  border-bottom: 1px solid #DBE6ED;
  margin-top: 30px;
}
.mapinfo {
  float: left;
  position: relative;
  top: 25px;
  left: 0px;
  display: none;
}
.mapinfo > h5 {
  color: white;
}
input.form-control:focus {
  border: 1px solid #F58523;
}
.tags {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #F58523;
  color: white;
  font-size: 15px;
  border-radius: 18px;
  padding: 4px 12px 6px 12px;
  display: inline;
  margin: 10px 10px 0 0 ;
  transition: all 0.1s ease;
}
.tags:hover {
  background-color: #F06112;
  color: white;
}
/*------------------------------------*\
    $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
\*------------------------------------*/
@media only screen and (max-width: 767px) {
  .searcharea {
    padding: 2em 0 2em 0;
  }
}
@media only screen and (max-width: 767px) {
  .form-control {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .mapinfo {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .button {
    margin-top: 15px;
    margin-bottom: 0px;
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .box-bg img {
    width: auto !important;
    height: 100% !important;
  }
}
@media only screen and (max-width: 600px) {
  .box-bg {
    overflow: hidden;
    height: 310px;
  }
}
@media only screen and (max-width: 767px) {
  .content {
    margin: 2em 0;
  }
}
.mm-list li span {
  display: inline-block !important;
  padding: 0 !important;
  padding-right: 10px !important;
  line-height: 1 !important;
}
@media only screen and (min-width: 991px) {
  .hidden-l {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .show-xs {
    display: inline-block !important;
    margin-bottom: 10px;
  }
}
/**
 * 2. Modules
 */
/* Main-Nav =================================================== */
/*------------------------------------*\
    $Mobile/Off-Canvas Nav
\*------------------------------------*/
#mobile-nav-trigger {
  position: absolute;
  top: 48px;
  left: 15px;
  width: 30px;
  height: 30px;
  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: 600px) {
  #mobile-nav-trigger {
    display: block;
  }
}
@media only screen and (max-width: 600px) {
  .nav {
    display: none;
  }
}
.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: 369px;
  position: absolute;
  top: 40px;
  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: 370px;
    top: 42px;
  }
}
a.cat-headline {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F99C3D;
  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 #FDE2C5;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.cat-container:first-child {
  border-top: 1px solid #FDE2C5;
  padding-top: 8px;
  padding-bottom: 0;
}
.cat-container:last-child {
  border-bottom: none;
}
.cat-entry {
  margin-bottom: 8px;
}
.cat-entry p + p {
  color: #566b77;
}
.cat-entry p {
  line-height: 1.3;
}
.cat-more a {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #566b77;
  text-transform: uppercase;
}
.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 =================================================== */
/* END FOOTER */
.contents {
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .contents {
    margin-top: 0px;
  }
}
/*------------------------------------*\
    $Outer-Wrapper
\*------------------------------------*/
.outer-wrapper {
  -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);
  -webkit-border-radius: 0px 8px 8px 8px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0px 8px 8px 8px;
  -moz-background-clip: padding;
  border-radius: 0px 8px 8px 8px;
  background-clip: padding-box;
  position: absolute;
  overflow: hidden;
  z-index: 1000;
  margin-top: 2px;
  width: 330px;
  height: 455px;
  background: #F58523;
  display: none;
  opacity: 0;
}
.outer-wrapper ::-webkit-input-placeholder {
  color: #F99C3D;
}
@media only screen and (max-width: 767px) {
  .outer-wrapper {
    -webkit-border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 0px;
    -moz-background-clip: padding;
    border-radius: 0px;
    background-clip: padding-box;
    opacity: 1;
    display: block;
    position: fixed;
    width: 92%;
    right: 0;
    height: 100%;
    right: -92%;
    top: 0;
    margin-top: 0;
  }
}
/*------------------------------------*\
    $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: 5px 0 0 0;
  background: #F58523;
  top: 0;
  left: 0;
  padding-left: 20px;
  position: absolute;
  z-index: 1100;
  width: 100%;
  height: 100%;
}
.outer-wrapper ul li {
  list-style-type: none;
  float: none;
  display: block;
}
.outer-wrapper ul li a {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  display: inline-block;
  font-size: 17px;
  text-decoration: none;
  color: white;
  background: #F58523;
  padding: 8px 0px 5px 0px;
  border-bottom: 1px solid #302f2f;
}
.outer-wrapper ul.next-level-list {
  position: absolute;
  z-index: 1200;
  opacity: 1;
  left: auto;
  width: 100%;
  height: 100%;
  right: -100%;
}
.outer-wrapper ul li.fastForward a {
  color: #ffe72f;
}
.outer-wrapper ul li a .glyphicon {
  float: right;
  margin-right: 10px;
}
.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-block;
  padding: 15px 8px;
  cursor: pointer;
  position: relative;
  z-index: 200;
  color: white;
  background: #F58523;
}
@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: #F58523;
}
.contents a.contentTrigger:active {
  color: white;
  outline: 0;
  box-shadow: none;
  background: #F58523;
}
.contents a.contentTrigger:visited {
  color: white;
  outline: 0;
  box-shadow: none;
  background: #F58523;
}
.contents a.contentTrigger:focus {
  color: white;
  background: #F58523;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.contents a.activated {
  background: #F58523;
  border-color: #F58523;
}
.contents a.activated:focus {
  color: white;
  outline: 0;
  box-shadow: none;
  border-color: #F58523;
  background: #F58523;
}
.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: 0;
    top: 0;
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .contents a.contentTrigger span + span {
    display: none;
  }
}
/*------------------------------------*\
    $Hero
\*------------------------------------*/
.outer-wrapper ul li.content-hero {
  text-align: center;
  position: relative;
}
.outer-wrapper ul li.content-hero a {
  color: #fbc99d;
}
.outer-wrapper ul li.content-hero a .glyphicon {
  position: absolute;
  left: 0;
  top: 10px;
}
.outer-wrapper ul li.content-hero a {
  border-bottom: none;
}
/*------------------------------------*\
    $Nav-Blocker
\*------------------------------------*/
.nav-blocker {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 767px) {
  .content_open .nav-blocker {
    display: block;
  }
}
.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;
}
@media only screen and (max-width: 767px) {
  .visible {
    -webkit-transform: translate(-100%, 0px);
    -moz-transform: translate(-100%, 0px);
    -o-transform: translate(-100%, 0px);
    -ms-transform: translate(-100%, 0px);
    transform: translate(-100%, 0px);
  }
}
.numberselect {
  width: 244px;
  margin: 0 auto;
}
.numberselect table td {
  border: 1px solid #F58523;
}
.numberselect h3 {
  color: white;
  text-transform: uppercase;
  font-size: 16px;
  text-align: left;
  margin-bottom: 10px;
}
.outer-wrapper ul li span.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: #F99C3D;
  margin: 0;
  padding: 0;
  width: 80px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  color: white;
}
.outer-wrapper ul li span.numeric-input:hover {
  cursor: pointer;
}
.outer-wrapper ul li.fastForward li + li {
  text-align: center;
}
.outer-wrapper ul li.fastForward 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: 18px;
  padding: 5px 10px;
  width: 244px;
  margin: 0 auto;
  background: white;
  border: 1px solid #F58523;
  height: 40px;
  margin-bottom: 25px;
  color: #F99C3D;
  margin-top: 14px;
}
.outer-wrapper ul li.fastForward input:focus {
  border: 1px solid #F99C3D;
  outline: 0;
  box-shadow: none;
}
.outer-wrapper ul li.fastForward li 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);
  width: 244px;
  padding: 8px 0px;
  margin-top: 35px;
  display: inline-block;
  color: white;
  border: 1px solid #F99C3D;
}
.outer-wrapper ul li.fastForward li a.btn:hover {
  background: #F99C3D;
}
/*
	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 {
  overflow-x: hidden;
  position: relative;
}
.mm-menu,
.mm-menu > .mm-panel {
  width: 100%;
  height: 100%;
  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;
  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;
}
.mm-menu .mm-list {
  padding: 20px 20px;
}
.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: 30px;
}
.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;
  white-space: nowrap;
  overflow: hidden;
  color: inherit;
  line-height: 20px;
  display: block;
  padding: 10px 10px 10px 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;
}
.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: -5px;
  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: -15px;
  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;
}
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;
}
.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);
  }
}
/*
	jQuery.mmenu themes extension CSS
*/
html.mm-opened.mm-light .mm-page {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-light {
  background: #302f2f;
  color: rgba(0, 0, 0, 0.6);
}
.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: rgba(255, 255, 255, 0.6);
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-light .mm-list > li > a.mm-subopen:after,
.mm-menu.mm-light .mm-list > li > a.mm-subclose:before {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-light .mm-list > li > a.mm-subopen:before {
  border-color: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-light .mm-list > li.mm-selected > a:not(.mm-subopen),
.mm-menu.mm-light .mm-list > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.6);
}
.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;
}
