/*headlines*/
/*Mixins:*/
.appearance {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.border-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.hyphens {
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px;
}
.flex {
  display: flex;
}
.color-light {
  color: #ffffff;
}
.color-light h1,
.color-light h2,
.color-light h3,
.color-light h4,
.color-light .headline {
  color: #ffffff !important;
}
.color-light .link a {
  border-color: #ffffff !important;
}
.color-primary h1,
.color-primary h2,
.color-primary h3,
.color-primary h4,
.color-primary .headline {
  color: #7bb82d !important;
}
.color-dark {
  color: #7c7c7c;
}
.color-dark h1,
.color-dark h2,
.color-dark h3,
.color-dark h4,
.color-dark .headline {
  color: #7c7c7c !important;
}
.color-dark .link a {
  border-color: #7c7c7c !important;
}
.bg-daab {
  background-image: url("/fileadmin/images/daab/content/background/daab-pattern.png");
}
.bg-ernaehrung {
  background-image: url("/fileadmin/images/ernaehrung/ernaehrung-pattern.png");
}
.bg-haut {
  background-image: url("/fileadmin/images/haut/haut-pattern.png");
}
.bg-allergie {
  background-image: url("/fileadmin/images/allergie/allergie-pattern.png");
}
.bg-atemwege {
  background-image: url("/fileadmin/images/asthma/atemwege-pattern.png");
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-size: 16px;
  line-height: 25px;
  font-family: 'Montserrat', "Arial", sans-serif;
  margin: 0;
  font-weight: 400;
  color: #7c7c7c;
  background: #ffffff;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}
.clear {
  clear: both;
}
.two-cols {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  -ms-column-count: 2;
  -o-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  -ms-column-gap: 40px;
  -o-column-gap: 40px;
  column-gap: 40px;
}
.two-cols > div {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
@media only screen and (max-width: 1024px) {
  .two-cols {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    -ms-column-count: 1;
    -o-column-count: 1;
    column-count: 1;
  }
  .two-cols > div {
    margin-top: 8%;
  }
  .two-cols > div:first-child {
    margin-top: 0;
  }
}
.content.two-cols {
  display: flex;
  justify-content: space-between;
  -webkit-column-count: 1;
  -moz-column-count: 1;
  -ms-column-count: 1;
  -o-column-count: 1;
  column-count: 1;
}
.content.two-cols > div {
  width: 48%;
}
@media only screen and (max-width: 1024px) {
  .content.two-cols {
    display: block;
  }
  .content.two-cols > div {
    width: 100%;
    margin-top: 8%;
  }
  .content.two-cols > div:first-child {
    margin-top: 0;
  }
}
.no-top {
  margin-top: 0 !important;
}
.align-center {
  text-align: center;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
p:first-of-type span.highlighted-size {
  margin-top: 0;
}
p span.highlighted-color {
  color: #7bb82d;
}
p span.highlighted-size {
  font-size: 20px;
  line-height: 26px;
  font-family: 'Montserrat', "Arial", sans-serif;
  margin-bottom: 10px;
  margin-top: 20px;
  font-style: normal;
  font-weight: 400 !important;
  display: inline-block;
  text-transform: uppercase;
}
a {
  text-decoration: none;
  color: #7bb82d;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
ul li {
  list-style: none;
}
.content-wrapper ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 1rem;
}
.content-wrapper ul li:before {
  content: "";
  background: #7bb82d;
  height: 10px;
  width: 10px;
  display: block;
  margin-left: -20px;
  position: absolute;
  top: 7px;
}
.content-wrapper ol {
  list-style: none;
  counter-reset: my-awesome-counter;
}
.content-wrapper ol li {
  counter-increment: my-awesome-counter;
  padding-left: 20px;
}
.content-wrapper ol li:before {
  content: counter(my-awesome-counter) ". ";
  font-weight: bold;
  margin-left: -20px;
}
.link a {
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #ffffff;
  padding: 5px 20px;
  font-size: 14px;
  background: #7bb82d;
  text-transform: uppercase;
  margin-top: 1.5rem;
  display: inline-block;
  font-weight: 300;
  font-style: normal;
  text-decoration: none;
  -webkit-box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.link a:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: .2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 2;
}
.link a:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.link.second a {
  background: none;
  box-shadow: none;
  padding: 0;
  color: #7c7c7c;
}
.link.second a:before {
  content: "";
  background: #7bb82d;
  height: 5px;
  width: 30px;
  display: inline-block;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-right: 15px;
}
.link.second a:after {
  content: "";
  display: none;
}
.link.second:hover a {
  color: #7bb82d;
}
h1,
.h1,
.h1-style,
h2,
.h2,
.h2-style {
  font-size: 35px;
  line-height: 43px;
  margin: 0;
  font-weight: 600;
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #333333;
  vertical-align: baseline;
  position: relative;
  /*top: -0.14em;*/
  letter-spacing: 2px;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  text-transform: uppercase;
  /*margin-top: -0.28em;*/
}
h1 span,
.h1 span,
.h1-style span,
h2 span,
.h2 span,
.h2-style span {
  /*margin-top: 0.28em !important;*/
  margin-top: 0.2em !important;
  top: 0 !important;
}
@media only screen and (max-width: 1200px) {
  h1,
  .h1,
  .h1-style,
  h2,
  .h2,
  .h2-style {
    font-size: 28px;
    line-height: 34px;
  }
}
@media only screen and (max-width: 735px) {
  h1,
  .h1,
  .h1-style,
  h2,
  .h2,
  .h2-style {
    font-size: 25px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 450px) {
  h1,
  .h1,
  .h1-style,
  h2,
  .h2,
  .h2-style {
    font-size: 20px;
    line-height: 25px;
  }
}
h1.small,
.h1.small,
.h1-style.small,
h2.small,
.h2.small,
.h2-style.small {
  font-size: 20px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
}
h1.small span,
.h1.small span,
.h1-style.small span,
h2.small span,
.h2.small span,
.h2-style.small span {
  font-size: 16px !important;
  line-height: 24px !important;
  color: #7c7c7c !important;
}
h1 span,
.h1 span,
.h1-style span,
h2 span,
.h2 span,
.h2-style span {
  font-size: 20px;
  line-height: 27px;
  margin: 0;
  font-weight: 400;
  font-style: italic;
  font-family: 'Montserrat', "Arial", sans-serif;
  vertical-align: baseline;
  position: relative;
  top: -0.14em;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  display: block;
  letter-spacing: 0;
  text-transform: none;
}
@media only screen and (max-width: 1200px) {
  h1 span,
  .h1 span,
  .h1-style span,
  h2 span,
  .h2 span,
  .h2-style span {
    font-size: 18px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 735px) {
  h1 span,
  .h1 span,
  .h1-style span,
  h2 span,
  .h2 span,
  .h2-style span {
    font-size: 18px;
    line-height: 22px;
  }
}
h3,
.h3,
.h3-style {
  font-size: 20px;
  line-height: 26px;
  margin: 0;
  font-weight: 400;
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #333333;
  vertical-align: baseline;
  position: relative;
  margin-top: 0.5rem;
  top: -0.14em;
  letter-spacing: 1px;
  text-transform: uppercase;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  /*	-ms-word-break: break-all;
         word-break: break-all;
    
         // Non standard for webkit
         word-break: break-word;
    
    -webkit-hyphens: auto;
       -moz-hyphens: auto;
            hyphens: auto;*/
}
@media only screen and (max-width: 1200px) {
  h3,
  .h3,
  .h3-style {
    font-size: 18px;
    line-height: 21px;
  }
}
@media only screen and (max-width: 735px) {
  h3,
  .h3,
  .h3-style {
    font-size: 18px;
    line-height: 21px;
  }
}
h3.ext,
.h3.ext {
  font-size: 35px;
  line-height: 43px;
  margin: 0;
  font-weight: 600;
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #333333;
  vertical-align: baseline;
  position: relative;
  /*top: -0.14em;*/
  letter-spacing: 2px;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  text-transform: uppercase;
  /*margin-top: -0.28em;*/
}
h3.ext span,
.h3.ext span {
  /*margin-top: 0.28em !important;*/
  margin-top: 0.2em !important;
  top: 0 !important;
}
@media only screen and (max-width: 1200px) {
  h3.ext,
  .h3.ext {
    font-size: 28px;
    line-height: 34px;
  }
}
@media only screen and (max-width: 735px) {
  h3.ext,
  .h3.ext {
    font-size: 25px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 450px) {
  h3.ext,
  .h3.ext {
    font-size: 20px;
    line-height: 25px;
  }
}
h3.ext.small,
.h3.ext.small {
  font-size: 20px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
}
h3.ext.small span,
.h3.ext.small span {
  font-size: 16px !important;
  line-height: 24px !important;
  color: #7c7c7c !important;
}
h3.ext span,
.h3.ext span {
  font-size: 20px;
  line-height: 27px;
  margin: 0;
  font-weight: 400;
  font-style: italic;
  font-family: 'Montserrat', "Arial", sans-serif;
  vertical-align: baseline;
  position: relative;
  top: -0.14em;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  display: block;
  letter-spacing: 0;
  text-transform: none;
}
@media only screen and (max-width: 1200px) {
  h3.ext span,
  .h3.ext span {
    font-size: 18px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 735px) {
  h3.ext span,
  .h3.ext span {
    font-size: 18px;
    line-height: 22px;
  }
}
h3.small,
.h3.small {
  font-size: 20px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
}
h4,
.h4,
.h4-style {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  font-family: 'Montserrat', "Arial", sans-serif;
  vertical-align: baseline;
  position: relative;
  top: -0.14em;
  text-transform: none;
  font-weight: 500;
  color: #7c7c7c;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
h4.ext,
.h4.ext {
  font-size: 35px;
  line-height: 43px;
  margin: 0;
  font-weight: 600;
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #333333;
  vertical-align: baseline;
  position: relative;
  /*top: -0.14em;*/
  letter-spacing: 2px;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  text-transform: uppercase;
  /*margin-top: -0.28em;*/
}
h4.ext span,
.h4.ext span {
  /*margin-top: 0.28em !important;*/
  margin-top: 0.2em !important;
  top: 0 !important;
}
@media only screen and (max-width: 1200px) {
  h4.ext,
  .h4.ext {
    font-size: 28px;
    line-height: 34px;
  }
}
@media only screen and (max-width: 735px) {
  h4.ext,
  .h4.ext {
    font-size: 25px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 450px) {
  h4.ext,
  .h4.ext {
    font-size: 20px;
    line-height: 25px;
  }
}
h4.ext.small,
.h4.ext.small {
  font-size: 20px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
}
h4.ext.small span,
.h4.ext.small span {
  font-size: 16px !important;
  line-height: 24px !important;
  color: #7c7c7c !important;
}
h4.ext span,
.h4.ext span {
  font-size: 20px;
  line-height: 27px;
  margin: 0;
  font-weight: 400;
  font-style: italic;
  font-family: 'Montserrat', "Arial", sans-serif;
  vertical-align: baseline;
  position: relative;
  top: -0.14em;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  display: block;
  letter-spacing: 0;
  text-transform: none;
}
@media only screen and (max-width: 1200px) {
  h4.ext span,
  .h4.ext span {
    font-size: 18px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 735px) {
  h4.ext span,
  .h4.ext span {
    font-size: 18px;
    line-height: 22px;
  }
}
h4.small,
.h4.small {
  font-size: 16px !important;
  line-height: 24px !important;
  color: #7c7c7c !important;
}
h5,
.h5 {
  font-size: 20px;
  line-height: 26px;
  margin: 0;
  color: #333333;
  font-weight: 500;
  font-family: 'Montserrat', "Arial", sans-serif;
  margin-top: 1rem;
  vertical-align: baseline;
  position: relative;
  top: -0.14em;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  text-transform: none;
}
@media only screen and (max-width: 1200px) {
  h5,
  .h5 {
    font-size: 18px;
    line-height: 21px;
  }
}
@media only screen and (max-width: 735px) {
  h5,
  .h5 {
    font-size: 18px;
    line-height: 21px;
  }
}
.headline-wrapper {
  display: flex;
  flex-wrap: wrap-reverse;
}
.headline-wrapper h1,
.headline-wrapper h2,
.headline-wrapper h3,
.headline-wrapper h4 {
  width: 100%;
  display: block;
}
.responsive-video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0px;
  height: 0;
  overflow: hidden;
}
.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#spenden .responsive-video {
  position: relative;
  padding-bottom: 0;
  padding-top: 0px;
  height: auto;
  overflow: auto;
}
#spenden .responsive-video iframe {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
header .responsive-video {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* POPUP INTERNET EXPLORER */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
}
.overlay.show {
  display: block;
}
.popup {
  display: none;
  background: #ffffff;
  padding: 40px 80px 50px 80px;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 99999;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 600px;
  max-width: 1100px;
  text-align: center;
  font-family: 'Montserrat', "Arial", sans-serif;
}
.popup.show {
  display: block;
}
.popup .popup-container {
  height: 100%;
}
.popup .wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}
.popup .wrapper img {
  width: 100%;
  height: auto;
}
.popup #oldbrowser {
  height: 100%;
  width: auto;
  position: relative;
  font-size: 14px;
}
.popup #oldbrowser span {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
}
.popup #oldbrowser span:before {
  content: "";
  background-image: url(/fileadmin/templates/img/internet.png);
  width: 128px;
  height: 128px;
  display: block;
  margin: 0 auto;
  margin-bottom: 40px;
}
.popup #oldbrowser div {
  cursor: pointer;
  position: relative;
  padding: 5px 25px;
  display: inline-block;
  margin-top: 20px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  background: #31c7be;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #31c7be 0%, #098cdb 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #31c7be 0%, #098cdb 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #31c7be 0%, #098cdb 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#31c7be', endColorstr='#098cdb', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}
@media screen and (max-width: 1300px) {
  .popup {
    min-width: 80%;
  }
}
@media screen and (max-width: 900px) {
  .popup {
    min-width: 70%;
    max-height: auto;
    padding-bottom: 120px;
  }
  .popup .wrapper {
    padding: 0;
  }
}
@media screen and (max-width: 650px) {
  .popup {
    min-width: 85%;
    padding-bottom: 0;
  }
}
/* montserrat-100 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/montserrat/montserrat-v25-latin-100.eot');
  src: local(''), url('../fonts/montserrat/montserrat-v25-latin-100.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/montserrat/montserrat-v25-latin-100.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-100.woff') format('woff'), /* Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-100.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/montserrat/montserrat-v25-latin-100.svg#Montserrat') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* montserrat-200 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/montserrat/montserrat-v25-latin-200.eot');
  src: local(''), url('../fonts/montserrat/montserrat-v25-latin-200.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/montserrat/montserrat-v25-latin-200.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-200.woff') format('woff'), /* Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-200.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/montserrat/montserrat-v25-latin-200.svg#Montserrat') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* montserrat-300 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/montserrat/montserrat-v25-latin-300.eot');
  src: local(''), url('../fonts/montserrat/montserrat-v25-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/montserrat/montserrat-v25-latin-300.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-300.woff') format('woff'), /* Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/montserrat/montserrat-v25-latin-300.svg#Montserrat') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* montserrat-regular - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat/montserrat-v25-latin-regular.eot');
  src: local(''), url('../fonts/montserrat/montserrat-v25-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/montserrat/montserrat-v25-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-regular.woff') format('woff'), /* Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/montserrat/montserrat-v25-latin-regular.svg#Montserrat') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* montserrat-500 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/montserrat/montserrat-v25-latin-500.eot');
  src: local(''), url('../fonts/montserrat/montserrat-v25-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/montserrat/montserrat-v25-latin-500.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-500.woff') format('woff'), /* Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/montserrat/montserrat-v25-latin-500.svg#Montserrat') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* montserrat-600 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/montserrat/montserrat-v25-latin-600.eot');
  src: local(''), url('../fonts/montserrat/montserrat-v25-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/montserrat/montserrat-v25-latin-600.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-600.woff') format('woff'), /* Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/montserrat/montserrat-v25-latin-600.svg#Montserrat') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* montserrat-700 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/montserrat/montserrat-v25-latin-700.eot');
  src: local(''), url('../fonts/montserrat/montserrat-v25-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/montserrat/montserrat-v25-latin-700.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-700.woff') format('woff'), /* Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/montserrat/montserrat-v25-latin-700.svg#Montserrat') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* montserrat-800 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/montserrat/montserrat-v25-latin-800.eot');
  src: local(''), url('../fonts/montserrat/montserrat-v25-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/montserrat/montserrat-v25-latin-800.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-800.woff') format('woff'), /* Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/montserrat/montserrat-v25-latin-800.svg#Montserrat') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* montserrat-900 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/montserrat/montserrat-v25-latin-900.eot');
  src: local(''), url('../fonts/montserrat/montserrat-v25-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/montserrat/montserrat-v25-latin-900.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-900.woff') format('woff'), /* Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/montserrat/montserrat-v25-latin-900.svg#Montserrat') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* montserrat-100italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 100;
  src: url('../fonts/montserrat/montserrat-v25-latin-100italic.eot');
  src: local(''), url('../fonts/montserrat/montserrat-v25-latin-100italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/montserrat/montserrat-v25-latin-100italic.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-100italic.woff') format('woff'), /* Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-100italic.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/montserrat/montserrat-v25-latin-100italic.svg#Montserrat') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* montserrat-200italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 200;
  src: url('../fonts/montserrat/montserrat-v25-latin-200italic.eot');
  src: local(''), url('../fonts/montserrat/montserrat-v25-latin-200italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/montserrat/montserrat-v25-latin-200italic.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-200italic.woff') format('woff'), /* Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-200italic.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/montserrat/montserrat-v25-latin-200italic.svg#Montserrat') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* montserrat-300italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/montserrat/montserrat-v25-latin-300italic.eot');
  src: local(''), url('../fonts/montserrat/montserrat-v25-latin-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/montserrat/montserrat-v25-latin-300italic.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-300italic.woff') format('woff'), /* Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-300italic.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/montserrat/montserrat-v25-latin-300italic.svg#Montserrat') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* montserrat-italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/montserrat/montserrat-v25-latin-italic.eot');
  src: local(''), url('../fonts/montserrat/montserrat-v25-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/montserrat/montserrat-v25-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-italic.woff') format('woff'), /* Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/montserrat/montserrat-v25-latin-italic.svg#Montserrat') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* montserrat-500italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/montserrat/montserrat-v25-latin-500italic.eot');
  src: local(''), url('../fonts/montserrat/montserrat-v25-latin-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/montserrat/montserrat-v25-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-500italic.woff') format('woff'), /* Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-500italic.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/montserrat/montserrat-v25-latin-500italic.svg#Montserrat') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* montserrat-600italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/montserrat/montserrat-v25-latin-600italic.eot');
  src: local(''), url('../fonts/montserrat/montserrat-v25-latin-600italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/montserrat/montserrat-v25-latin-600italic.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-600italic.woff') format('woff'), /* Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-600italic.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/montserrat/montserrat-v25-latin-600italic.svg#Montserrat') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* montserrat-700italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/montserrat/montserrat-v25-latin-700italic.eot');
  src: local(''), url('../fonts/montserrat/montserrat-v25-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/montserrat/montserrat-v25-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-700italic.woff') format('woff'), /* Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/montserrat/montserrat-v25-latin-700italic.svg#Montserrat') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* montserrat-800italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 800;
  src: url('../fonts/montserrat/montserrat-v25-latin-800italic.eot');
  src: local(''), url('../fonts/montserrat/montserrat-v25-latin-800italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/montserrat/montserrat-v25-latin-800italic.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-800italic.woff') format('woff'), /* Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-800italic.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/montserrat/montserrat-v25-latin-800italic.svg#Montserrat') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* montserrat-900italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 900;
  src: url('../fonts/montserrat/montserrat-v25-latin-900italic.eot');
  src: local(''), url('../fonts/montserrat/montserrat-v25-latin-900italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/montserrat/montserrat-v25-latin-900italic.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-900italic.woff') format('woff'), /* Modern Browsers */ url('../fonts/montserrat/montserrat-v25-latin-900italic.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/montserrat/montserrat-v25-latin-900italic.svg#Montserrat') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/material/material-icons.woff2') format('woff2');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}
/* pt-serif-regular - latin */
@font-face {
  font-family: 'PT Serif';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/pt-serif/pt-serif-v17-latin-regular.eot');
  src: local(''), url('../fonts/pt-serif/pt-serif-v17-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/pt-serif/pt-serif-v17-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/pt-serif/pt-serif-v17-latin-regular.woff') format('woff'), /* Modern Browsers */ url('../fonts/pt-serif/pt-serif-v17-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/pt-serif/pt-serif-v17-latin-regular.svg#PTSerif') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* pt-serif-italic - latin */
@font-face {
  font-family: 'PT Serif';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/pt-serif/pt-serif-v17-latin-italic.eot');
  src: local(''), url('../fonts/pt-serif/pt-serif-v17-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/pt-serif/pt-serif-v17-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/pt-serif/pt-serif-v17-latin-italic.woff') format('woff'), /* Modern Browsers */ url('../fonts/pt-serif/pt-serif-v17-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/pt-serif/pt-serif-v17-latin-italic.svg#PTSerif') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* pt-serif-700 - latin */
@font-face {
  font-family: 'PT Serif';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/pt-serif/pt-serif-v17-latin-700.eot');
  src: local(''), url('../fonts/pt-serif/pt-serif-v17-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/pt-serif/pt-serif-v17-latin-700.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/pt-serif/pt-serif-v17-latin-700.woff') format('woff'), /* Modern Browsers */ url('../fonts/pt-serif/pt-serif-v17-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/pt-serif/pt-serif-v17-latin-700.svg#PTSerif') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* pt-serif-700italic - latin */
@font-face {
  font-family: 'PT Serif';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/pt-serif/pt-serif-v17-latin-700italic.eot');
  src: local(''), url('../fonts/pt-serif/pt-serif-v17-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/pt-serif/pt-serif-v17-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/pt-serif/pt-serif-v17-latin-700italic.woff') format('woff'), /* Modern Browsers */ url('../fonts/pt-serif/pt-serif-v17-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/pt-serif/pt-serif-v17-latin-700italic.svg#PTSerif') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
@font-face {
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/fontawesome/fontawesome-webfont.eot');
  src: local(''), url('../fonts/fontawesome/fontawesome-webfont.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/fontawesome/fontawesome-webfont.woff') format('woff'), /* Modern Browsers */ url('../fonts/fontawesome/fontawesome-webfont.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/fontawesome/fontawesome-webfont.svg#fontawesomeregular') format('svg');
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
body.navactive .header.background {
  background: none;
}
body.navactive .header-wrapper {
  z-index: 2;
}
body.logo-center .header nav.main-nav {
  max-width: 100%;
}
body.logo-center .header nav.main-nav ul {
  justify-content: space-around;
  margin: 20px 0;
}
body.logo-center .header nav.main-nav ul li {
  margin-right: 0;
}
body.logo-center .header nav.main-nav ul li.facebook,
body.logo-center .header nav.main-nav ul li.instagram {
  margin: 0;
}
@media only screen and (max-width: 1200px) {
  body.logo-center .header nav.main-nav ul li {
    margin: 0;
    padding: 0 14px;
  }
}
body.logo-center .header .branding {
  left: 50%;
  -webkit-transform: translateX(-50%) !important;
  -moz-transform: translateX(-50%) !important;
  -ms-transform: translateX(-50%) !important;
  -o-transform: translateX(-50%) !important;
  transform: translateX(-50%) !important;
  position: relative !important;
  margin-top: 10px;
}
@media only screen and (max-width: 1200px) {
  body.logo-center .header .branding {
    padding: 20px 0px;
  }
}
@media only screen and (max-width: 900px) {
  body.logo-center .header .branding {
    margin-top: 0;
  }
}
body.btn_nav.logo-center .header .toggle-nav-btn {
  right: 0;
}
body.btn_nav.logo-center .header .toggle-nav-btn.active {
  right: 50vh;
}
@media only screen and (max-width: 1200px) {
  body.btn_nav.logo-center .header .toggle-nav-btn.active {
    right: 60vh;
  }
}
@media only screen and (max-width: 1024px) {
  body.btn_nav.logo-center .header .toggle-nav-btn.active {
    right: 10px;
  }
}
body.btn_nav.logo-center .header .branding {
  left: 0;
  -webkit-transform: translateX(0) !important;
  -moz-transform: translateX(0) !important;
  -ms-transform: translateX(0) !important;
  -o-transform: translateX(0) !important;
  transform: translateX(0) !important;
  position: a !important;
  margin-top: 0px;
}
body.logo-right .header nav.main-nav {
  float: left;
}
body.logo-right .header nav.main-nav ul li {
  margin-right: 24px;
}
body.logo-right .header nav.main-nav ul li.instagram {
  margin-left: 0;
}
body.logo-right .header nav.main-nav ul li.facebook {
  margin-right: 30px;
}
body.logo-right .header nav.main-nav ul li ul li {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  body.logo-right .header nav.main-nav ul li {
    margin: 0;
    padding: 0 10px;
  }
  body.logo-right .header nav.main-nav ul li.facebook {
    margin-right: 15px;
  }
}
body.logo-right .header .branding {
  right: 0;
}
@media only screen and (max-width: 1333px) {
  body.logo-right .header .branding {
    left: auto;
  }
}
@media only screen and (max-width: 1200px) {
  body.logo-right .header .branding {
    right: 10px;
  }
}
@media only screen and (max-width: 900px) {
  body.logo-right .header .branding {
    left: 5%;
  }
}
body.btn_nav.logo-right .header .toggle-nav-btn {
  right: 0;
}
body.btn_nav.logo-right .header .toggle-nav-btn.active {
  right: 50vh;
}
@media only screen and (max-width: 1200px) {
  body.btn_nav.logo-right .header .toggle-nav-btn.active {
    right: 60vh;
  }
}
@media only screen and (max-width: 1024px) {
  body.btn_nav.logo-right .header .toggle-nav-btn.active {
    right: 10px;
  }
}
body.btn_nav.logo-right .header .branding {
  left: 0;
}
body.logo-left .header nav {
  /*				&.main-nav {
                                                        float: right;
                
                                                        @media only screen and (max-width: @breakpoint-2) {
                                                                padding-right: 30px;
                                                        }
                
                                                        ul {
                                                                li {
                                                                        margin-left: 18px;
                
                                                                        @media screen and (max-width: (@wrapper-width+130px)){
                                                                                margin-left: 0px;
                                                                        }
                                                                        
                                                                        @media only screen and (max-width: @breakpoint-2) {
                                                                                margin: 0;
                                                                                &.instagram {
                                                                                        margin: 0 10px;
                                                                                }
                                                                        }
                                                                        @media only screen and (max-width: @breakpoint-3) {
                                                                                a {
                                                                                        padding: 3px 10px;
                                                                                }
                                                                        }
                                                                }
                                                        }
                                                }*/
}
body.logo-left .header .branding {
  left: 0;
}
body.btn_nav.logo-left .header .toggle-nav-btn {
  right: 0;
}
body.btn_nav.logo-left .header .toggle-nav-btn.active {
  right: 50vh;
}
@media only screen and (max-width: 1200px) {
  body.btn_nav.logo-left .header .toggle-nav-btn.active {
    right: 60vh;
  }
}
@media only screen and (max-width: 1024px) {
  body.btn_nav.logo-left .header .toggle-nav-btn.active {
    right: 10px;
  }
}
body.btn_nav.logo-left .header .branding {
  left: 0;
}
body.normal-nav .header nav.main-nav {
  display: block;
}
body.normal-nav .header .branding {
  position: absolute;
  background: none !important;
}
body.normal-nav .header .toggle-nav-btn {
  display: none;
}
@media only screen and (max-width: 1024px) {
  body.normal-nav .header nav.main-nav {
    display: none;
  }
  body.normal-nav .header .toggle-nav-btn {
    display: block;
  }
  body.normal-nav .header .branding {
    position: relative;
    background: none !important;
    top: 50%;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
body.header-background-light .header {
  background: #ffffff !important;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}
body.header-background-light .header.background {
  background: #ffffff !important;
}
body.header-background-light .header.background .branding {
  opacity: 1 !important;
}
body.header-background-light .header nav.main-nav ul li:hover.facebook a,
body.header-background-light .header nav.main-nav ul li:focus.facebook a,
body.header-background-light .header nav.main-nav ul li:hover.instagram a,
body.header-background-light .header nav.main-nav ul li:focus.instagram a {
  color: #333333 !important;
}
body.header-background-light .header nav.main-nav ul li a {
  color: #333333 !important;
}
body.header-background-light .header .main-header .branding {
  background: none;
}
body.header-background-light .header .main-header .sub-nav ul li a {
  color: #ffffff !important;
}
body.header-background-light.header-transparent .header {
  background: rgba(255, 255, 255, 0.7) !important;
}
body.header-background-light.header-transparent .header.background {
  background: #ffffff !important;
}
body.header-background-light.header-transparent .header.background .branding {
  opacity: 1 !important;
}
@media only screen and (max-width: 1024px) {
  body.header-background-light.header-transparent .header {
    background: #ffffff !important;
    opacity: 1 !important;
  }
}
body.header-background-dark .header {
  background: #333333 !important;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}
body.header-background-dark .header.background .branding {
  opacity: 1 !important;
}
body.header-background-dark .header .main-header .branding {
  background: none;
}
body.header-background-dark .header .main-header .sub-nav {
  background: #333333 !important;
}
body.header-background-dark .header .main-header .sub-nav ul li a {
  color: #ffffff !important;
}
body.header-background-dark.header-transparent .header {
  background: rgba(59, 61, 64, 0.5) !important;
}
body.header-background-dark.logo-background-light .header .main-header .branding {
  background: none !important;
}
body.header-transparent .header .metanav-box .social {
  border-right: solid 1px #333333;
  display: inline-block;
  margin-top: 10px;
  float: left;
  margin-right: 10px;
}
body.header-transparent .header .metanav-box .social a {
  float: left;
  margin-right: 15px;
  line-height: 0;
}
body.header-transparent .header .metanav-box .social a:hover span {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
body.header-transparent .header .metanav-box .social a span {
  height: 25px;
  width: 25px;
  display: inline-block;
  background-size: cover;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
body.header-transparent .header .metanav-box .social a.facebook span {
  background-image: url(/fileadmin/templates/img/icons/social/facebook-small-dark.png);
}
body.header-transparent .header .metanav-box .social a.instagram span {
  background-image: url(/fileadmin/templates/img/icons/social/instagram-small-dark.png);
}
body.header-transparent .header .metanav-box .social a.twitter span {
  background-image: url(/fileadmin/templates/img/icons/social/twitter-small-dark.png);
}
@media only screen and (max-width: 1200px) {
  body.header-transparent .header .metanav-box .social {
    margin-right: 8px;
  }
  body.header-transparent .header .metanav-box .social a {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  body.header-transparent .header .metanav-box .social {
    display: none;
  }
}
body.header-transparent .header nav.main-nav ul li:hover.facebook a,
body.header-transparent .header nav.main-nav ul li:focus.facebook a,
body.header-transparent .header nav.main-nav ul li:hover.instagram a,
body.header-transparent .header nav.main-nav ul li:focus.instagram a {
  color: #333333 !important;
}
body.header-transparent .header nav.main-nav ul li a {
  color: #333333 !important;
}
body.header-transparent .header nav.main-nav ul li a:after {
  color: #333333 !important;
}
body.header-transparent .header.background {
  background: #ffffff;
  -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition: background 1s ease;
  -moz-transition: background 1s ease;
  -o-transition: background 1s ease;
  transition: background 1s ease;
}
body.header-transparent .header.background .branding {
  opacity: 1 !important;
}
body.header-transparent .header.background .metanav-box .social {
  border-color: #7c7c7c;
}
body.header-transparent .header.background .metanav-box .social a.facebook span {
  background-image: url(/fileadmin/templates/img/icons/social/facebook-small-dark.png);
}
body.header-transparent .header.background .metanav-box .social a.instagram span {
  background-image: url(/fileadmin/templates/img/icons/social/instagram-small-dark.png);
}
body.header-transparent .header.background .metanav-box .social a.twitter span {
  background-image: url(/fileadmin/templates/img/icons/social/twitter-small-dark.png);
}
body.header-transparent .header.background nav.meta-nav > ul > li > a {
  color: #333333 !important;
  text-shadow: none;
}
body.header-transparent .header.background nav.meta-nav > ul > li > a:after {
  background-color: #333333 !important;
}
body.header-transparent .header.background nav.meta-nav > ul > li i {
  color: #333333 !important;
}
body.header-transparent .header .main-header .branding {
  background: none;
}
body.header-transparent .header .main-header .sub-nav ul li a {
  color: #ffffff !important;
}
@media only screen and (max-width: 1024px) {
  body.header-transparent .header {
    background: #ffffff !important;
    opacity: 1 !important;
  }
}
body.header-fix .header {
  position: fixed;
}
body.logo-background-light .header .main-header .branding {
  background: #ffffff !important;
  padding: 17px 15px;
}
@media only screen and (max-width: 900px) {
  body.logo-background-light .header .main-header .branding {
    padding: 15px;
  }
}
body.logo-background-dark .header .main-header .branding {
  background: #333333 !important;
  padding: 17px 15px;
}
@media only screen and (max-width: 900px) {
  body.logo-background-dark .header .main-header .branding {
    padding: 15px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  body.header-background-light .header nav.main-nav ul li.facebook:hover a,
  body.header-background-light .header nav.main-nav ul li.instagram:hover a,
  body.header-background-light .header nav.main-nav ul li.facebook:focus a,
  body.header-background-light .header nav.main-nav ul li.instagram:focus a {
    color: #333333 !important;
  }
  body.header-background-light .header nav.main-nav ul li.facebook a,
  body.header-background-light .header nav.main-nav ul li.instagram a {
    background: url(/fileadmin/templates/img/icons/facebook-icon-dark.png) no-repeat 0 0;
  }
  body.header-background-light .header nav.main-nav ul li.instagram a {
    background: url(/fileadmin/templates/img/icons/instagram-icon-dark.png) no-repeat 0 0;
  }
}
header {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
header .wrapper {
  width: 100%;
}
header .header-wrapper {
  padding-top: 99px;
}
header .header-wrapper:before {
  background-image: linear-gradient(#808080, transparent);
  content: "";
  height: 200px;
  width: 100%;
  display: none;
  position: absolute;
  top: 0;
  z-index: 999;
  opacity: 0.15;
}
@media only screen and (max-width: 1200px) {
  header {
    width: 100%;
  }
}
header.root .header-slideshow {
  max-height: 100vh;
  height: 100vh;
}
header.root .header-slideshow .image {
  height: 100%;
}
@media only screen and (max-width: 1200px) {
  header.root .header-slideshow {
    height: 550px;
  }
}
@media only screen and (max-width: 900px) {
  header.root .header-slideshow {
    height: 450px;
  }
}
header.root .teaser-vertikal ul li {
  height: 100vh;
}
@media only screen and (max-width: 1300px) {
  header.root .teaser-vertikal ul li {
    height: 1000px;
  }
}
@media only screen and (max-width: 1200px) {
  header.root .teaser-vertikal ul li {
    height: 760px;
  }
}
@media only screen and (max-width: 1024px) {
  header.root .teaser-vertikal ul li {
    height: 700px;
  }
}
@media only screen and (max-width: 900px) {
  header.root .teaser-vertikal ul li {
    height: 500px;
  }
}
@media only screen and (max-width: 735px) {
  header.root .teaser-vertikal ul li {
    height: 550px;
  }
}
@media only screen and (max-width: 650px) {
  header.root .teaser-vertikal ul li {
    height: 380px;
  }
}
@media only screen and (max-width: 450px) {
  header.root .teaser-vertikal ul li {
    height: 400px;
  }
}
header .kontaktdaten {
  background-color: #f4f4f4;
  width: 100%;
  position: relative;
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
}
header .kontaktdaten .kontaktwrapper {
  width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
}
header .kontaktdaten .kontaktwrapper .location,
header .kontaktdaten .kontaktwrapper .contact {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  position: relative;
}
header .kontaktdaten .kontaktwrapper .location .icon-data .icon,
header .kontaktdaten .kontaktwrapper .contact .icon-data .icon {
  background-color: #7bb82d;
  height: 80px;
  width: 80px;
  font-size: 80px;
  border-radius: 140px;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  padding: 15px;
  margin: 0 40px;
}
header .kontaktdaten .kontaktwrapper .location .icon-data .icon i,
header .kontaktdaten .kontaktwrapper .contact .icon-data .icon i {
  color: #ffffff;
  font-size: 50px;
  position: relative;
  display: block;
}
header .kontaktdaten .kontaktwrapper .location .data h3,
header .kontaktdaten .kontaktwrapper .contact .data h3 {
  font-size: 20px;
}
header .kontaktdaten .kontaktwrapper .location .data p,
header .kontaktdaten .kontaktwrapper .contact .data p {
  line-height: 22px;
  font-size: 14px;
}
header .kontaktdaten .kontaktwrapper .location {
  border-right: 1px solid #dfdfdf;
  flex-direction: row-reverse;
}
header .kontaktdaten .kontaktwrapper .location .data h3,
header .kontaktdaten .kontaktwrapper .location .data p {
  text-align: right;
}
@media only screen and (max-width: 1200px) {
  header .kontaktdaten .kontaktwrapper {
    width: 100%;
    padding: 50px 20px;
  }
  header .kontaktdaten .kontaktwrapper .location .data h3,
  header .kontaktdaten .kontaktwrapper .contact .data h3 {
    font-size: 25px;
    line-height: 35px;
  }
}
@media only screen and (max-width: 1024px) {
  header .kontaktdaten .kontaktwrapper .location .icon-data .icon,
  header .kontaktdaten .kontaktwrapper .contact .icon-data .icon {
    height: 80px;
    width: 80px;
  }
  header .kontaktdaten .kontaktwrapper .location .icon-data .icon i,
  header .kontaktdaten .kontaktwrapper .contact .icon-data .icon i {
    font-size: 50px;
  }
  header .kontaktdaten .kontaktwrapper .location .data h3,
  header .kontaktdaten .kontaktwrapper .contact .data h3 {
    font-size: 22px;
    line-height: 35px;
  }
  header .kontaktdaten .kontaktwrapper .location .data p,
  header .kontaktdaten .kontaktwrapper .contact .data p {
    font-size: 15px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 735px) {
  header .kontaktdaten .kontaktwrapper .location,
  header .kontaktdaten .kontaktwrapper .contact {
    width: 100%;
    display: block;
    text-align: center;
  }
  header .kontaktdaten .kontaktwrapper .location .icon-data .icon,
  header .kontaktdaten .kontaktwrapper .contact .icon-data .icon {
    top: inherit;
    transform: inherit;
    margin: 0 0 20px 0;
  }
  header .kontaktdaten .kontaktwrapper .location .data h3,
  header .kontaktdaten .kontaktwrapper .contact .data h3,
  header .kontaktdaten .kontaktwrapper .location .data p,
  header .kontaktdaten .kontaktwrapper .contact .data p {
    text-align: center;
  }
}
@media only screen and (max-width: 650px) {
  header .kontaktdaten .kontaktwrapper {
    display: inline-block;
  }
  header .kontaktdaten .kontaktwrapper .location,
  header .kontaktdaten .kontaktwrapper .contact {
    width: 100%;
    display: block;
    text-align: center;
  }
  header .kontaktdaten .kontaktwrapper .location .icon-data .icon,
  header .kontaktdaten .kontaktwrapper .contact .icon-data .icon {
    top: inherit;
    transform: inherit;
    margin: 0 0 20px 0;
  }
  header .kontaktdaten .kontaktwrapper .location .data h3,
  header .kontaktdaten .kontaktwrapper .contact .data h3,
  header .kontaktdaten .kontaktwrapper .location .data p,
  header .kontaktdaten .kontaktwrapper .contact .data p {
    text-align: center;
  }
  header .kontaktdaten .kontaktwrapper .location {
    border-right: none;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 40px;
    margin-bottom: 20px;
  }
  header .kontaktdaten .kontaktwrapper .contact {
    padding-top: 20px;
  }
}
header .teaser-vertikal {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
}
header .teaser-vertikal ul {
  display: flex;
  justify-content: space-between;
  margin: 0;
}
header .teaser-vertikal ul li {
  position: relative;
  display: inline-block;
  padding: 0;
  width: 30%;
  height: 60vh;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  /* three items */
  /* two items */
}
header .teaser-vertikal ul li:first-child:nth-last-child(3),
header .teaser-vertikal ul li:first-child:nth-last-child(3) ~ li {
  width: 40%;
}
header .teaser-vertikal ul li:first-child:nth-last-child(3):hover,
header .teaser-vertikal ul li:first-child:nth-last-child(3) ~ li:hover {
  width: 50%;
}
header .teaser-vertikal ul li:first-child:nth-last-child(2),
header .teaser-vertikal ul li:first-child:nth-last-child(2) ~ li {
  width: 50%;
}
header .teaser-vertikal ul li:first-child:nth-last-child(2):hover,
header .teaser-vertikal ul li:first-child:nth-last-child(2) ~ li:hover {
  width: 60%;
}
header .teaser-vertikal ul li a {
  position: relative;
  display: inline-block;
  height: 100%;
  max-height: 100%;
  width: 100%;
  max-width: 100%;
  -webkit-box-shadow: -8px 0px 20px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: -8px 0px 20px rgba(0, 0, 0, 0.5);
  box-shadow: -8px 0px 20px rgba(0, 0, 0, 0.5);
}
header .teaser-vertikal ul li a h2,
header .teaser-vertikal ul li a .btn {
  position: relative;
  display: block;
  top: 80%;
  left: 30px;
  padding: 0 100px 0 30px;
  color: #ffffff;
  font-weight: 200;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
header .teaser-vertikal ul li a .btn {
  width: auto;
  background-color: #8BC34A;
  font-weight: 200;
  border-radius: 30px;
  padding: 6px 14px;
  display: table;
  left: 60px;
}
header .teaser-vertikal ul li a p.hid {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: 100%;
  padding: 0 100px 0 30px;
  left: 30px;
  color: #ffffff;
  font-weight: 200;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
header .teaser-vertikal ul li a .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000000;
  overflow: hidden;
  z-index: -1;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
header .teaser-vertikal ul li a .img .background {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  opacity: .7;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
header .teaser-vertikal ul li:before {
  display: none !important;
}
header .teaser-vertikal ul li:nth-child(2) a .btn {
  background-color: #FFA726 !important;
}
header .teaser-vertikal ul li:nth-child(3) a .btn {
  background-color: #E562F0 !important;
}
header .teaser-vertikal ul li:nth-child(4) a .btn {
  background-color: #F44336 !important;
}
header .teaser-vertikal ul li:hover {
  width: 40%;
}
header .teaser-vertikal ul li:hover .btn {
  top: 70%;
}
header .teaser-vertikal ul li:hover h2 {
  top: 70%;
}
header .teaser-vertikal ul li:hover p.hid {
  position: relative;
  display: block;
  visibility: visible;
  opacity: 1;
  top: 71%;
}
header .teaser-vertikal ul:hover li:not(:hover) .img {
  background-color: #000000;
}
header .teaser-vertikal ul:hover li:not(:hover) .img .background {
  opacity: .3;
}
@media only screen and (max-width: 1300px) {
  header .teaser-vertikal ul li {
    height: 1000px;
  }
  header .teaser-vertikal ul li a h2 {
    padding-left: 10px;
  }
  header .teaser-vertikal ul li a .btn {
    left: 40px;
  }
  header .teaser-vertikal ul li a p.hid {
    padding-left: 10px;
  }
}
@media only screen and (max-width: 1200px) {
  header .teaser-vertikal ul li {
    height: 760px;
  }
  header .teaser-vertikal ul li a h2,
  header .teaser-vertikal ul li a .btn {
    top: 74%;
  }
  header .teaser-vertikal ul li a h2 {
    font-size: 20px;
    line-height: 24px;
  }
  header .teaser-vertikal ul li:hover .btn,
  header .teaser-vertikal ul li:hover h2,
  header .teaser-vertikal ul li:hover p.hid {
    top: 55%;
  }
}
@media only screen and (max-width: 1024px) {
  header .teaser-vertikal ul li {
    height: 700px;
  }
  header .teaser-vertikal ul li a h2 {
    width: 80%;
    padding: 0;
  }
  header .teaser-vertikal ul li a .btn {
    left: 30px;
  }
  header .teaser-vertikal ul li a p.hid {
    padding: 0 50px 0 0;
  }
  header .teaser-vertikal ul li:hover a p.hid {
    top: 57%;
  }
  header .teaser-vertikal ul li#hover {
    width: 40%;
  }
  header .teaser-vertikal ul li#hover .btn {
    top: 70%;
  }
  header .teaser-vertikal ul li#hover h2 {
    top: 70%;
  }
  header .teaser-vertikal ul li#hover p.hid {
    position: relative;
    display: block;
    visibility: visible;
    opacity: 1;
    top: 71%;
  }
  header .teaser-vertikal ul#hover li:not(#hover) .img {
    background-color: #000000;
  }
  header .teaser-vertikal ul#hover li:not(#hover) .img .background {
    opacity: .3;
  }
}
@media only screen and (max-width: 900px) {
  header .teaser-vertikal ul {
    flex-flow: row wrap;
    padding-top: 80px;
  }
  header .teaser-vertikal ul li {
    height: 500px;
    width: 50%;
    float: inherit;
    /* three items */
    /* two items */
  }
  header .teaser-vertikal ul li:first-child:nth-last-child(3),
  header .teaser-vertikal ul li:first-child:nth-last-child(3) ~ li {
    width: 33.3%;
  }
  header .teaser-vertikal ul li:first-child:nth-last-child(3):hover,
  header .teaser-vertikal ul li:first-child:nth-last-child(3) ~ li:hover {
    width: 33.3%;
  }
  header .teaser-vertikal ul li:first-child:nth-last-child(2),
  header .teaser-vertikal ul li:first-child:nth-last-child(2) ~ li {
    width: 50%;
  }
  header .teaser-vertikal ul li:first-child:nth-last-child(2):hover,
  header .teaser-vertikal ul li:first-child:nth-last-child(2) ~ li:hover {
    width: 50%;
  }
  header .teaser-vertikal ul li a h2,
  header .teaser-vertikal ul li a .btn {
    top: 44%;
  }
  header .teaser-vertikal ul li a .btn {
    left: 46px;
  }
  header .teaser-vertikal ul li a h2 {
    padding: 0 80px 0 15px;
  }
  header .teaser-vertikal ul li a p.hid {
    position: relative;
    display: block;
    visibility: visible;
    opacity: 1;
    padding: 0 80px 0 15px;
    top: 45%;
  }
  header .teaser-vertikal ul li:hover {
    width: 50%;
    /* three items */
    /* two items */
  }
  header .teaser-vertikal ul li:hover:first-child:nth-last-child(3),
  header .teaser-vertikal ul li:hover:first-child:nth-last-child(3) ~ li {
    width: 33.3%;
  }
  header .teaser-vertikal ul li:hover:first-child:nth-last-child(2),
  header .teaser-vertikal ul li:hover:first-child:nth-last-child(2) ~ li {
    width: 50%;
  }
  header .teaser-vertikal ul li:hover .btn,
  header .teaser-vertikal ul li:hover h2 {
    top: 44%;
  }
  header .teaser-vertikal ul li:hover p.hid {
    top: 45%;
  }
}
@media only screen and (max-width: 735px) {
  header .teaser-vertikal ul li {
    height: 550px;
  }
}
@media only screen and (max-width: 650px) {
  header .teaser-vertikal ul li {
    height: 380px;
    width: 100%;
    /* three items */
    /* two items */
  }
  header .teaser-vertikal ul li:first-child:nth-last-child(3),
  header .teaser-vertikal ul li:first-child:nth-last-child(3) ~ li {
    width: 100%;
  }
  header .teaser-vertikal ul li:first-child:nth-last-child(3):hover,
  header .teaser-vertikal ul li:first-child:nth-last-child(3) ~ li:hover {
    width: 100%;
  }
  header .teaser-vertikal ul li:first-child:nth-last-child(2),
  header .teaser-vertikal ul li:first-child:nth-last-child(2) ~ li {
    width: 100%;
  }
  header .teaser-vertikal ul li:first-child:nth-last-child(2):hover,
  header .teaser-vertikal ul li:first-child:nth-last-child(2) ~ li:hover {
    width: 100%;
  }
  header .teaser-vertikal ul li:hover {
    width: 100%;
    /* three items */
    /* two items */
  }
  header .teaser-vertikal ul li:hover:first-child:nth-last-child(3),
  header .teaser-vertikal ul li:hover:first-child:nth-last-child(3) ~ li {
    width: 100%;
  }
  header .teaser-vertikal ul li:hover:first-child:nth-last-child(2),
  header .teaser-vertikal ul li:hover:first-child:nth-last-child(2) ~ li {
    width: 100%;
  }
  header .teaser-vertikal ul li:hover .btn,
  header .teaser-vertikal ul li:hover h2 {
    top: 44%;
  }
  header .teaser-vertikal ul li:hover p.hid {
    top: 45%;
  }
}
@media only screen and (max-width: 450px) {
  header .teaser-vertikal ul li {
    height: 400px;
  }
  header .teaser-vertikal ul li a h2,
  header .teaser-vertikal ul li a .btn,
  header .teaser-vertikal ul li a p.hid {
    top: 40%;
  }
  header .teaser-vertikal ul li a .btn {
    left: 20px;
  }
  header .teaser-vertikal ul li a h2 {
    padding: 0;
    width: 90%;
    left: 20px;
  }
  header .teaser-vertikal ul li a p.hid {
    padding: 0 40px 0 0;
    left: 20px;
  }
  header .teaser-vertikal ul li:hover .btn,
  header .teaser-vertikal ul li:hover h2 {
    top: 44%;
  }
  header .teaser-vertikal ul li:hover h2 {
    padding-left: 0;
  }
  header .teaser-vertikal ul li:hover p.hid {
    top: 45%;
  }
}
header .header {
  width: 100%;
  display: inline-block;
  z-index: 9999;
  position: absolute;
}
header .header.background .toggle-nav-btn {
  background: #7bb82d;
}
header .header.background .branding {
  opacity: 1;
}
header .header .main-header {
  z-index: 2001;
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
  font-family: 'Montserrat', "Arial", sans-serif;
  display: block;
  height: 100%;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  border-top: solid 5px #7bb82d;
}
header .header .main-header .header-box {
  width: 100%;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media only screen and (max-width: 1200px) {
  header .header .main-header .header-box {
    width: 100%;
  }
}
@media only screen and (max-width: 1200px) {
  header .header .main-header {
    width: 100%;
    padding: 0px;
  }
}
header .header .main-header .mainnav-box {
  width: 100%;
  display: inline-block;
}
@media only screen and (max-width: 1024px) {
  header .header .main-header .mainnav-box {
    display: none;
  }
}
header .header .branding {
  z-index: 1999;
  position: relative;
  top: 0;
  line-height: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  padding: 5px 0px;
  overflow: visible;
  display: inline-block;
}
header .header .branding img {
  max-width: 150px;
}
@media screen and (max-width: 1330px) {
  header .header .branding {
    left: 5%;
  }
}
@media only screen and (max-width: 1200px) {
  header .header .branding {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 735px) {
  header .header .branding {
    padding-top: 10px;
  }
  header .header .branding img {
    max-width: 140px;
  }
}
header .header .toggle-nav-btn {
  display: block;
  opacity: 1;
  cursor: pointer;
  padding: 13px 10px 4px 10px;
  top: -5px;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  z-index: 2001;
  position: absolute;
  align-items: center;
  background: #7bb82d;
  -webkit-box-shadow: 3px 3px 10px -3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 3px 3px 10px -3px rgba(0, 0, 0, 0.5);
  box-shadow: 3px 3px 10px -3px rgba(0, 0, 0, 0.5);
}
header .header .toggle-nav-btn i {
  color: #ffffff;
  opacity: 0.8;
}
header .header .toggle-nav-btn .menu-close {
  display: none;
}
@media screen and (max-width: 1330px) {
  header .header .toggle-nav-btn {
    right: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  header .header .toggle-nav-btn {
    display: block;
  }
}
header .header .toggle-nav-btn:hover i {
  opacity: 1;
}
header .header .toggle-nav-btn.active {
  right: 50vh;
  background: none;
  box-shadow: none;
}
header .header .toggle-nav-btn.active .menu-close {
  display: block;
}
header .header .toggle-nav-btn.active .menu-open {
  display: none;
}
@media only screen and (max-width: 1200px) {
  header .header .toggle-nav-btn.active {
    right: 60vh;
  }
}
@media only screen and (max-width: 1024px) {
  header .header .toggle-nav-btn.active {
    right: 30px;
  }
}
header.root #header-content {
  margin-top: 0 !important;
}
header #header-content {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 2;
  color: #ffffff;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
  display: inline-block;
  margin-top: 50px;
  width: 80%;
  max-width: 690px;
}
header #header-content h1 {
  color: #ffffff;
  font-size: 70px;
  margin-bottom: 25px;
  line-height: 65px;
  font-weight: 600;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
header #header-content h2 {
  color: #ffffff;
}
header #header-content h3 {
  color: #ffffff;
  letter-spacing: 4px;
  font-size: 16px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
header #header-content p {
  font-weight: 300;
}
@media only screen and (max-width: 1200px) {
  header #header-content h1 {
    font-size: 55px;
    line-height: 65px;
  }
}
@media only screen and (max-width: 900px) {
  header #header-content {
    margin-top: 40px;
    width: 60%;
  }
  header #header-content h1 {
    font-size: 35px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 735px) {
  header #header-content {
    font-size: 18px;
    line-height: 22px;
    width: 85%;
  }
  header #header-content h1 {
    font-size: 25px;
    line-height: 32px;
  }
}
section .content {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
section .content .content-wrapper {
  margin-top: 50px;
}
section .content .content-wrapper:first-child {
  margin-top: 0;
}
section .content .headline-wrapper {
  display: flex;
  flex-wrap: wrap-reverse;
}
section .content .headline-wrapper h1,
section .content .headline-wrapper h2,
section .content .headline-wrapper h3,
section .content .headline-wrapper h4 {
  width: 100%;
  display: block;
}
section .content .text .textbox-inhalt {
  margin-top: 2rem;
  font-family: 'Montserrat', "Arial", sans-serif;
  display: inline-block;
  width: 100%;
}
section .content .text .textbox-inhalt p {
  margin-bottom: 1rem;
}
section .content .text .textbox-inhalt p:last-child {
  margin: 0;
}
section .content .text .textbox-inhalt.two-cols li {
  -webkit-column-break-inside: avoid;
  /* Chrome, Safari, Opera */
  page-break-inside: avoid;
  /* Firefox */
  break-inside: avoid;
  /* IE 10+ */
}
section.sidebar-wrapper .aside {
  display: block;
}
@media only screen and (max-width: 1024px) {
  section.sidebar-wrapper .aside {
    display: none;
  }
}
section .aside {
  display: none;
  width: 360px;
  background: #ffffff;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  padding: 20px;
  position: absolute;
  right: 0;
  top: -60px;
  z-index: 2;
}
section .aside > div:first-of-type.content-wrapper:first-child {
  margin-top: 0px !important;
  border-top: none;
}
section .aside > .content-wrapper {
  margin-top: 0px !important;
  padding-bottom: 25px;
  display: inline-block;
  border-top: solid 1px #dfdfdf;
  width: 100%;
  padding-top: 25px;
}
section .aside > .content-wrapper:first-of-type {
  margin-top: 25px !important;
}
section .aside > .content-wrapper:last-child {
  padding-bottom: 0px !important;
}
section .aside .calendarize {
  padding-bottom: 25px;
}
section .aside .text-element .inhalt-wrapper {
  margin-top: 0rem;
}
section .aside header {
  border-top: solid 1px #dfdfdf;
  padding-top: 25px;
  margin-top: 25px;
}
section .aside header:first-child {
  margin-top: 70px;
  padding-top: 0px;
  border-top: none;
}
section .aside header h3 {
  margin-bottom: 1.5rem;
}
section .aside header:first-of-type {
  margin-top: 0px;
}
section .aside h3.ext {
  font-size: 20px;
  line-height: 26px;
  margin: 0;
  font-weight: 400;
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #333333;
  vertical-align: baseline;
  position: relative;
  margin-top: 0.5rem;
  top: -0.14em;
  letter-spacing: 1px;
  text-transform: uppercase;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  /*	-ms-word-break: break-all;
         word-break: break-all;
    
         // Non standard for webkit
         word-break: break-word;
    
    -webkit-hyphens: auto;
       -moz-hyphens: auto;
            hyphens: auto;*/
}
@media only screen and (max-width: 1200px) {
  section .aside h3.ext {
    font-size: 18px;
    line-height: 21px;
  }
}
@media only screen and (max-width: 735px) {
  section .aside h3.ext {
    font-size: 18px;
    line-height: 21px;
  }
}
section .aside h4.ext {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  font-family: 'Montserrat', "Arial", sans-serif;
  vertical-align: baseline;
  position: relative;
  top: -0.14em;
  text-transform: none;
  font-weight: 500;
  color: #7c7c7c;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
body.navactive {
  height: 100vh;
  overflow: hidden;
}
body.navactive .sub-nav {
  overflow-y: scroll;
  height: 100vh;
}
.breadcrumb {
  padding: 30px 0;
  background-image: url("/fileadmin/images/daab/content/background/daab-pattern.png");
  background-color: #7bb82d;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: 'Montserrat', "Arial", sans-serif;
  font-size: 14px;
}
.breadcrumb .inner {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
.breadcrumb .inner span {
  padding: 0 10px;
}
.breadcrumb .inner a {
  color: #ffffff;
  opacity: 0.8;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  font-weight: 400;
}
.breadcrumb .inner a:hover {
  opacity: 1;
}
.breadcrumb.bg-ernaehrung {
  background-image: url("/fileadmin/images/ernaehrung/ernaehrung-pattern.png");
}
.breadcrumb.bg-haut {
  background-image: url("/fileadmin/images/haut/haut-pattern.png");
}
.breadcrumb.bg-allergie {
  background-image: url("/fileadmin/images/allergien/allergie-pattern.png");
}
.breadcrumb.bg-atemwege {
  background-image: url("/fileadmin/images/asthma/atemwege-pattern.png");
}
.breadcrumb.bg-anaphylaxie {
  background-image: url("/fileadmin/images/blog/pattern/anaphylaxie-pattern.png");
}
@media only screen and (max-width: 1300px) {
  .breadcrumb {
    padding: 30px 5%;
  }
  .breadcrumb .inner {
    width: 100%;
  }
}
@media only screen and (max-width: 735px) {
  .breadcrumb {
    padding: 30px 7%;
  }
}
header .header .metanav-box {
  float: right;
  display: inline-block;
}
header .header nav.meta-nav {
  float: left;
  padding-right: 105px;
}
header .header nav.meta-nav ul li {
  float: left;
  display: inline-block;
  list-style: none;
  position: relative;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  cursor: pointer;
  padding: 8px 10px;
}
header .header nav.meta-nav ul li a {
  color: #333333;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  opacity: 0.7;
}
header .header nav.meta-nav ul li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background: #333333;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  margin-top: -2px;
}
header .header nav.meta-nav ul li:hover a,
header .header nav.meta-nav ul li:focus a,
header .header nav.meta-nav ul li.active a {
  opacity: 1;
}
header .header nav.meta-nav ul li:hover a:after,
header .header nav.meta-nav ul li:focus a:after,
header .header nav.meta-nav ul li.active a:after {
  width: 100%;
}
@media only screen and (max-width: 1300px) {
  header .header nav.meta-nav ul li a {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1200px) {
  header .header nav.meta-nav {
    padding-right: 135px;
  }
  header .header nav.meta-nav ul li {
    padding: 8px 5px;
  }
  header .header nav.meta-nav ul li a {
    font-size: 11px;
  }
}
@media only screen and (max-width: 1024px) {
  header .header nav.meta-nav {
    display: none;
  }
}
header .sub-nav {
  position: fixed;
  right: 0;
  background: rgba(51, 51, 51, 0.99);
  -webkit-transform: translate3d(0, -101%, 0);
  -moz-transform: translate3d(0, -101%, 0);
  -ms-transform: translate3d(0, -101%, 0);
  -o-transform: translate3d(0, -101%, 0);
  transform: translate3d(0, -101%, 0);
  min-height: 100vh;
  width: 100%;
  z-index: 2000;
  margin-top: 0px;
  top: -5px;
  padding: 100px 0;
  height: 100wh;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
header .sub-nav.active {
  -webkit-transform: translate3d(0, 0%, 0);
  -moz-transform: translate3d(0, 0%, 0);
  -ms-transform: translate3d(0, 0%, 0);
  -o-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
}
header .sub-nav .meta-nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
header .sub-nav .meta-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
header .sub-nav ul li {
  line-height: 24px;
  display: block;
  float: none;
  margin-right: 0;
  padding: 10px 20px;
  text-align: left;
  /*				&.facebook, &.instagram {
                                                        width: 10px;
                                                        display: inline-block;
                                                        margin-right: 15px;
                
                                                        a {
                                                                visibility: hidden;
                                                                position: relative;
                                                                color: @dark;
                                                                &:after {
                                                                        visibility: visible;
                                                                        position: absolute;
                                                                        content: '';
                                                                        font-family: 'FontAwesome';
                                                                        font-size: 18px;
                                                                        top: 0;
                                                                        left: 0;
                                                                }
                                                        }
                                                }
                                                &.instagram {
                                                        a {
                                                                &:after {
                                                                        content: '';
                                                                }
                                                        }
                                                }*/
  /*				&.allergiewegweiser{
                                                        border-bottom: 1px solid #FFF;
                                                }*/
}
header .sub-nav ul li.hasSub {
  position: relative;
  cursor: pointer;
}
header .sub-nav ul li.hasSub a {
  pointer-events: none;
}
header .sub-nav ul li.hasSub i {
  position: absolute;
  top: 9px;
  right: 20px;
}
header .sub-nav ul li.hasSub.level-open,
header .sub-nav ul li.hasSub.active {
  position: relative;
  cursor: pointer;
  background: #474747;
}
header .sub-nav ul li.hasSub.level-open a,
header .sub-nav ul li.hasSub.active a {
  pointer-events: auto;
}
header .sub-nav ul li.hasSub.level-open ul.level-2,
header .sub-nav ul li.hasSub.active ul.level-2,
header .sub-nav ul li.hasSub.level-open ul.level-3,
header .sub-nav ul li.hasSub.active ul.level-3,
header .sub-nav ul li.hasSub.level-open ul.level-4,
header .sub-nav ul li.hasSub.active ul.level-4 {
  max-height: 2500px;
}
header .sub-nav ul li a {
  text-transform: uppercase;
}
header .sub-nav ul li:before {
  padding-right: 8px;
}
header .sub-nav ul li.active > a {
  opacity: 1;
  font-weight: 700;
  color: #7bb82d !important;
}
header .sub-nav ul li.active ul.level-2 {
  display: block;
}
header .sub-nav ul li.suchergebnisse,
header .sub-nav ul li.notfound {
  display: none;
}
header .sub-nav ul li.link-206,
header .sub-nav ul li.link-61 {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
header .sub-nav ul li.link-61 .level-2,
header .sub-nav ul li.link-61 i {
  display: none;
}
header .sub-nav ul li.link-112 {
  display: none;
}
header .sub-nav ul li ul.level-2 {
  max-height: 0;
  overflow: hidden;
  -moz-transition: 1.5s;
  -ms-transition: 1.5s;
  -o-transition: 1.5s;
  -webkit-transition: 1.5s;
  transition: 1.5s;
}
header .sub-nav ul li ul.level-2 li a {
  opacity: 0.7;
}
header .sub-nav ul li ul.level-2 li a:hover,
header .sub-nav ul li ul.level-2 li a.active {
  opacity: 1;
  color: #7c7c7c !important;
}
header .sub-nav ul li ul.level-2 li.active ul.level-3 {
  display: block;
}
header .sub-nav ul li ul.level-2 li.end {
  padding-bottom: 0;
}
header .sub-nav ul li ul.level-2 ul.level-3 {
  max-height: 0;
  overflow: hidden;
  -moz-transition: 1.5s;
  -ms-transition: 1.5s;
  -o-transition: 1.5s;
  -webkit-transition: 1.5s;
  transition: 1.5s;
}
header .sub-nav ul li a {
  font-size: 15px;
  color: #ffffff;
  opacity: 0.7;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
header .sub-nav ul li a:hover {
  opacity: 1;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  header .header nav.main-nav ul li.facebook,
  header .header nav.main-nav ul li.instagram {
    width: 10px;
  }
  header .header nav.main-nav ul li.facebook a,
  header .header nav.main-nav ul li.instagram a {
    visibility: visible;
    position: absolute;
    text-indent: 999px;
    content: '';
    background: url(/fileadmin/templates/img/icons/facebook-icon.png) no-repeat 0 0;
    top: 6px;
    left: 0;
  }
  header .header nav.main-nav ul li.instagram {
    width: 17px;
  }
  header .header nav.main-nav ul li.instagram a {
    background: url(/fileadmin/templates/img/icons/instagram-icon.png) no-repeat 0 0;
  }
  header .sub-nav ul li.facebook,
  header .sub-nav ul li.instagram {
    width: 10px;
  }
  header .sub-nav ul li.facebook a,
  header .sub-nav ul li.instagram a {
    visibility: visible;
    position: absolute;
    text-indent: 999px;
    content: '';
    background: url(/fileadmin/templates/img/icons/facebook-icon.png) no-repeat 0 0;
    top: 0;
    left: 10px;
  }
  header .sub-nav ul li.instagram {
    width: 17px;
  }
  header .sub-nav ul li.instagram a {
    background: url(/fileadmin/templates/img/icons/instagram-icon.png) no-repeat 0 0;
    left: 5px;
  }
}
.container.subpage .breadcrumb-class,
.container.highlight .breadcrumb-class {
  font-size: 15px;
  font-weight: 700;
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #7c7c7c;
  width: 1200px;
  padding-top: 10px;
  margin: 0px auto;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 1330px) {
  .container.subpage .breadcrumb-class,
  .container.highlight .breadcrumb-class {
    width: 100%;
    padding: 0 5%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.container.subpage .breadcrumb-class span,
.container.highlight .breadcrumb-class span {
  padding: 0 5px 0 0;
  display: inline-block;
  font-weight: 200;
}
.container.subpage .breadcrumb-class span:first-child,
.container.highlight .breadcrumb-class span:first-child {
  margin-top: 20px;
}
.container.subpage .breadcrumb-class a,
.container.highlight .breadcrumb-class a {
  font-weight: 200;
}
@media only screen and (max-width: 1200px) {
  .container.subpage .breadcrumb-class,
  .container.highlight .breadcrumb-class {
    width: 100%;
  }
}
@media only screen and (max-width: 900px) {
  .container.subpage .breadcrumb-class,
  .container.highlight .breadcrumb-class {
    margin-bottom: 15px;
    padding: 0 8.8%;
  }
}
@media only screen and (max-width: 735px) {
  .container.subpage .breadcrumb-class,
  .container.highlight .breadcrumb-class {
    margin-top: 20px;
    padding: 0 10%;
  }
}
.container.subpage .wrapper section.sidebar,
.container.highlight .wrapper section.sidebar {
  width: 23%;
  padding-right: 3%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 400;
  font-family: 'Montserrat', "Arial", sans-serif;
  font-size: 14px;
}
.container.subpage .wrapper section.sidebar p.sidebar-menu,
.container.highlight .wrapper section.sidebar p.sidebar-menu {
  font-size: 20px;
  color: #7bb82d;
  letter-spacing: 1px;
  margin-bottom: 15px;
  position: relative;
  text-transform: uppercase;
}
.container.subpage .wrapper section.sidebar ul.level-1 li,
.container.highlight .wrapper section.sidebar ul.level-1 li {
  padding: 10px 0;
}
.container.subpage .wrapper section.sidebar ul.level-1 li a,
.container.highlight .wrapper section.sidebar ul.level-1 li a {
  font-size: 12px;
  opacity: 0.6;
  text-transform: uppercase;
}
.container.subpage .wrapper section.sidebar ul.level-1 li:last-child,
.container.highlight .wrapper section.sidebar ul.level-1 li:last-child {
  border-bottom: none;
}
.container.subpage .wrapper section.sidebar ul.level-1 li.hasSub > a,
.container.highlight .wrapper section.sidebar ul.level-1 li.hasSub > a {
  opacity: 0.9;
}
.container.subpage .wrapper section.sidebar ul.level-1 li.hasSub > a:hover,
.container.highlight .wrapper section.sidebar ul.level-1 li.hasSub > a:hover {
  color: #7bb82d;
}
.container.subpage .wrapper section.sidebar ul.level-1 li.active > a,
.container.highlight .wrapper section.sidebar ul.level-1 li.active > a {
  color: #7bb82d;
  opacity: 1;
  position: relative;
}
.container.subpage .wrapper section.sidebar ul.level-1 li.active > a.active,
.container.highlight .wrapper section.sidebar ul.level-1 li.active > a.active {
  color: #7bb82d;
  font-weight: 600;
}
.container.subpage .wrapper section.sidebar ul.level-1 li ul,
.container.highlight .wrapper section.sidebar ul.level-1 li ul {
  display: block;
  padding-top: 5px;
}
.container.subpage .wrapper section.sidebar ul.level-1 li ul li,
.container.highlight .wrapper section.sidebar ul.level-1 li ul li {
  margin-left: 30px;
  border-bottom: none;
}
.container.subpage .wrapper section.sidebar ul.level-1 li ul li:before,
.container.highlight .wrapper section.sidebar ul.level-1 li ul li:before {
  content: "└";
  position: absolute;
  font-size: 12px;
  color: #dfdfdf;
  margin-left: -16px;
  top: 8px;
  opacity: 0.7;
}
.container.subpage .wrapper section.sidebar ul.level-1 li ul li a,
.container.highlight .wrapper section.sidebar ul.level-1 li ul li a {
  font-weight: 300;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.container.subpage .wrapper section.sidebar ul.level-1 li ul li a:hover,
.container.highlight .wrapper section.sidebar ul.level-1 li ul li a:hover {
  color: #7bb82d !important;
}
.container.subpage .wrapper section.sidebar ul.level-1 li ul li a:after,
.container.highlight .wrapper section.sidebar ul.level-1 li ul li a:after {
  content: '';
  display: none;
}
.container.subpage .wrapper section.sidebar ul.level-1 li ul li a.active,
.container.highlight .wrapper section.sidebar ul.level-1 li ul li a.active {
  color: #7c7c7c;
}
.container.subpage .wrapper section.sidebar ul.level-2 li,
.container.highlight .wrapper section.sidebar ul.level-2 li {
  padding: 5px 0;
}
 > .container.subpage .wrapper section.sidebar ul.level-2 li.hasSub,
 > .container.highlight .wrapper section.sidebar ul.level-2 li.hasSub {
  padding-top: 15px;
}
.container.subpage .wrapper section.sidebar ul.level-3 li.hasSub > a,
.container.highlight .wrapper section.sidebar ul.level-3 li.hasSub > a {
  opacity: 0.6;
}
@media only screen and (max-width: 900px) {
  .container.subpage .wrapper section.sidebar,
  .container.highlight .wrapper section.sidebar {
    display: none;
  }
}
footer .navigation {
  box-sizing: border-box;
  font-size: 0.9rem;
}
footer .navigation .footer-nav {
  display: none;
  margin: 0;
}
footer .navigation .footer-nav.show-nav {
  display: inline-block;
  width: 100%;
}
footer .navigation .footer-nav li {
  padding: 0;
  display: inline-block;
  text-indent: 0;
}
footer .navigation .footer-nav li:last-child a {
  border: none;
}
footer .navigation .footer-nav li:before {
  content: "";
  font-size: 0;
  margin: 0;
}
footer .navigation .footer-nav li a {
  color: #ffffff;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  font-size: 12px;
  line-height: 15px;
  opacity: 0.8;
  padding: 0 10px;
  display: inline-block;
  border-right: solid 1px #7c7c7c;
}
footer .navigation .footer-nav li.active a,
footer .navigation .footer-nav li:hover a,
footer .navigation .footer-nav li:focus a {
  opacity: 1;
}
footer .navigation .footer-nav li.facebook,
footer .navigation .footer-nav li.instagram {
  /*display: none;*/
}
@media only screen and (max-width: 900px) {
  footer .navigation .footer-nav {
    width: 100%;
    text-align: center;
  }
  footer .navigation .footer-nav li {
    padding: 0;
  }
}
@media only screen and (max-width: 650px) {
  footer .navigation .footer-nav li {
    display: block;
  }
  footer .navigation .footer-nav li a {
    border: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  footer .navigation .footer-nav {
    width: 100%;
    text-align: center;
    left: 0;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  footer .navigation .footer-nav.show-nav {
    display: block;
  }
}
.fix-nav {
  position: fixed;
  right: 0px;
  z-index: 1999;
  padding: 10px 15px;
  display: inline-block;
  top: 35%;
  transform: translateY(-50%);
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
.fix-nav a {
  color: #ffffff;
}
.fix-nav > span {
  display: block;
  float: none;
  right: -265px;
  background: #7bb82d;
  position: absolute;
  padding: 8px 0 6px 15px;
  text-transform: uppercase;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  cursor: pointer;
  color: #ffffff;
  width: 300px;
}
.fix-nav > span:last-child {
  margin: 0;
}
.fix-nav > span:hover {
  right: 0 !important;
}
.fix-nav > span.phone {
  top: 0px;
}
.fix-nav > span.phone:before {
  content: "";
  font-family: 'Material Icons';
  color: #ffffff;
  font-size: 25px;
  height: 30px;
  width: 30px;
  position: relative;
  display: inline-block;
  top: 5px;
  padding-right: 15px;
  opacity: 0.7;
}
.fix-nav > span.phone:hover:before {
  opacity: 1;
}
.fix-nav > span.mail {
  top: 55px;
}
.fix-nav > span.mail:before {
  content: "";
  font-family: 'Material Icons';
  color: #ffffff;
  font-size: 23px;
  height: 30px;
  width: 30px;
  position: relative;
  display: inline-block;
  top: 3px;
  padding-right: 15px;
  opacity: 0.7;
}
.fix-nav > span.mail:hover:before {
  opacity: 1;
}
@media only screen and (max-width: 1420px) {
  .fix-nav {
    top: 50%;
    /*transform: translateY(-50%);*/
  }
}
@media only screen and (max-width: 900px) {
  .fix-nav {
    display: none;
  }
}
.aside .nav li {
  margin-bottom: 1rem;
}
.aside .nav li a {
  border-left: 5px solid #dfdfdf;
  padding-left: 10px;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  display: inline-block;
}
.aside .nav li:last-child {
  margin-bottom: 0;
}
.aside .nav li.active > a,
.aside .nav li:hover > a {
  color: #7bb82d;
  border-color: #7bb82d;
}
.aside .nav li a {
  color: #7c7c7c;
}
.aside .nav li.active .level-2 {
  display: block;
}
.aside .nav .level-2 {
  padding-left: 15px;
  display: none;
  margin-top: 1rem;
}
/*Changes: 20180109*/
/*.nav-wrapper{
        .mainnav-box{
                .main-nav{
                        @spaces: 26px;
                        @small-spaces:@spaces*0.5;
                        @grey-container-width: 30%;
                        @transition-speed: 250ms;
                        @text-color: #333;
                        @inv-text-color: #FFF;
                        @grey: #F4F4F4;
                        @background: #FFF;

                        .bottom-line-style{
                                content: ' ';
                                position: absolute;
                                bottom: 0;
                                width: 0;
                                left: 0;
                                display: block;
                                visibility: hidden;
                                background: @dark;
                                height: 1px;
                                transition: width @transition-speed ease;
                        }
                        display:none;
                        padding:8px 113px 0 200px !important;
                        text-align: right;
                        @media screen and (max-width: (@breakpoint-2+150px)){
                                padding-right:30px !important;
                                font-size: 15px;
                        }

                        .main-nav-inner-wrap{
                                display: inline-block;
                        }
                        ul{
                                display: none;
                        }
                        .material-icons{
                                color: @dark;
                                font-family: 'Material Icons';
                        }
                        .level-3{
                                .material-icons{
                                        display: none;
                                }
                        }
                        .level-1{
                                text-align: left;
                                display: inline-block;
                                padding-left: 0;
                                margin-bottom: 0px;
                                display: flex;
                                flex-flow: row wrap;
                                flex-direction: row;
                                flex-wrap:nowrap;
                                justify-content: flex-end;
                                position: relative;
                                >.navi-list-item{
                                        display: flex;
                                        align-items: center;
                                        padding: 5px 13px 15px 13px;
                                        &:first-of-type{
                                                padding-left: 0;
                                        }
                                        &:last-of-type{
                                                padding-right: 0;
                                        }
                                        @media screen and (max-width: (@breakpoint-2+150px)){
                                                padding-left: @small-spaces*0.5;
                                                padding-right: @small-spaces*0.5;
                                        }
                                        @media screen and (max-width: 1100px){
                                                padding-left: @small-spaces*0.2;
                                                padding-right: @small-spaces*0.2;
                                        }

                                        >a{
                                                position: relative;
                                                font-weight: 600;
                                                &:after{
                                                        .bottom-line-style;
                                                }
                                        }
                                        &:hover,&.active{
                                                >a:after{
                                                        width: 100%;
                                                        visibility: visible;
                                                }

                                        }
                                        &:hover{
                                                .level-2{
                                                        display: flex;
                                                }
                                        }

                                }
                                &.end{
                                        padding-right: 0;
                                }
                        }
                        .level-2{
                                min-width: 900px;
                                width: 100%;
                                position: absolute;
                                bottom: 0;
                                right: 0;
                                .translateY(100%);
                                background: @background;
                                min-height: 269px;
                                flex-direction: column;
                                padding-left: @spaces;
                                padding-top: @spaces;
                                padding-bottom: @spaces;
                                -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
                                -moz-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
                                box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
                                &:after{
                                        content: ' ';
                                        display: block;
                                        background: @grey;
                                        width: 30%;
                                        position: absolute;
                                        left: 0;
                                        top: 0;
                                        bottom: 0;
                                        z-index: 1;
                                }
                                >.navi-list-item{
                                        z-index: 100;
                                        flex-basis: min-content;
                                        max-width: @grey-container-width;
                                        box-sizing: border-box;
                                        padding:  @small-spaces @spaces  5px 0;
                                        &:first-child{ padding-top: 0;}
                                        border-bottom: 1px solid transparent;

                                        >a{
                                                color: @text-color !important;
                                                width: 100%;
                                                display: block;
                                                z-index: 100;
                                                padding-right: 15px;
                                        }


                                        &:hover,&.active,&:first-of-type{
                                                .navcontainer{
                                                        display: flex;
                                                }
                                        }
                                        &:hover,&.active,&:first-of-type:only-child{
                                                border-color: @text-color;
                                        }
                                        .navcontainer{
                                                z-index: 200;
                                                position: absolute;
                                                left: @grey-container-width;
                                                right: 0;
                                                top: 0;
                                                bottom: 0;
                                                display: none;
                                                padding: @spaces;
                                                background: @background;
                                                .level-3,.image-holder{
                                                        flex-grow: 1;
                                                }
                                                .image-holder{
                                                        background: url('/fileadmin/templates/img/nav-img/allgemein-nav.jpg') center center ;
                                                        background-size: cover;
                                                        flex-basis: 300px;
                                                }
                                        }
                                        &.hasSub{
                                                >.material-icons{
                                                        position: absolute;
                                                        left: @grey-container-width;
                                                        transform: translate3d(-100%,-100%,0) rotate(-90deg);
                                                        color: @text-color;
                                                        z-index: 1;
                                                }
                                        }
                                }
                        }
                        .level-3{
                                display: flex;
                                flex-direction: column;
                                >.navi-list-item{
                                        padding: 5px;
                                                >a{
                                                        color: @text-color !important;
                                                        position: relative;
                                                        &:after{
                                                                .bottom-line-style;
                                                                background: @text-color;
                                                        }
                                                }
                                                &:hover,&.active{
                                                        >a:after{
                                                                width: 100%;
                                                                visibility: visible;
                                                        }
                                                }
                                }
                        }

                        .link-14 {
                                .navcontainer{
                                        .image-holder{
                                                background: url('/fileadmin/templates/img/nav-img/daab-nav.jpg') center center !important;
                                                background-size: cover!important;
                                        }
                                }
                        }

                        .link-15 {
                                .navcontainer{
                                        .image-holder{
                                                background: url('/fileadmin/templates/img/nav-img/allergie-nav.jpg') center center !important;
                                                background-size: cover!important;
                                        }
                                }
                        }

                        .link-16 {
                                .navcontainer{
                                        .image-holder{
                                                background: url('/fileadmin/templates/img/nav-img/atemwege-nav.jpg') center center !important;
                                                background-size: cover!important;
                                        }
                                }
                        }

                        .link-17 {
                                .navcontainer{
                                        .image-holder{
                                                background: url('/fileadmin/templates/img/nav-img/ernaehrung-nav.jpg') center center !important;
                                                background-size: cover!important;
                                        }
                                }
                        }

                        .link-729 {
                                .navcontainer{
                                        .image-holder{
                                                background: url('/fileadmin/templates/img/nav-img/darm-nav.jpg') center center !important;
                                                background-size: cover!important;
                                        }
                                }
                        }

                        .link-744 {
                                .navcontainer{
                                        .image-holder{
                                                background: url('/fileadmin/templates/img/nav-img/haut-nav.jpg') center center !important;
                                                background-size: cover!important;
                                        }
                                }
                        }

                        .link-19 {
                                .navcontainer{
                                        .image-holder{
                                                background: url('/fileadmin/templates/img/nav-img/kinder-nav.jpg') center center !important;
                                                background-size: cover!important;
                                        }
                                }
                        }

                        .link-87 {
                                .navcontainer{
                                        .image-holder{
                                                background: url('/fileadmin/templates/img/nav-img/neurodermitis-nav.jpg') center center !important;
                                                background-size: cover!important;
                                        }
                                }
                        }

                        .link-723 {
                                .navcontainer{
                                        .image-holder{
                                                background: url('/fileadmin/templates/img/nav-img/unvertraeglichkeit-nav.jpg') center center !important;
                                                background-size: cover!important;
                                        }
                                }
                        }
                }
        }
}*/
/*Changes: 20180109*/
.bottom-line-style {
  content: ' ';
  position: absolute;
  bottom: 0;
  width: 0;
  left: 0;
  display: block;
  visibility: hidden;
  background: #333333;
  height: 1px;
  transition: width 250ms ease;
}
.main-nav {
  float: right;
  position: relative;
  right: 100px;
}
.main-nav ul.level-1 {
  display: flex;
  align-items: center;
}
.main-nav ul.level-1 li:hover > span a,
.main-nav ul.level-1 li:hover > a {
  opacity: 1 !important;
}
.main-nav ul.level-1 li a {
  display: inline-block;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  line-height: 22px;
}
.main-nav ul.level-1 > li {
  float: left;
  padding: 10px 13px 15px 13px;
  display: flex;
  align-items: center;
}
.main-nav ul.level-1 > li i {
  color: #7c7c7c;
}
.main-nav ul.level-1 > li span a,
.main-nav ul.level-1 > li a {
  color: #333333;
  opacity: 0.8;
}
.main-nav ul.level-1 > li > span a,
.main-nav ul.level-1 > li > a {
  position: relative;
  font-weight: 600;
  opacity: 1;
}
.main-nav ul.level-1 > li > span a:after,
.main-nav ul.level-1 > li > a:after {
  content: ' ';
  position: absolute;
  bottom: 0;
  width: 0;
  left: 0;
  display: block;
  visibility: hidden;
  background: #333333;
  height: 1px;
  transition: width 250ms ease;
}
.main-nav ul.level-1 > li:hover > span a:after,
.main-nav ul.level-1 > li.active > span a:after,
.main-nav ul.level-1 > li:hover > a:after,
.main-nav ul.level-1 > li.active > a:after {
  width: 100%;
  visibility: visible;
}
.main-nav ul.level-1 > li:hover > .level-2 {
  opacity: 1;
  visibility: visible;
}
.main-nav ul.level-1 > li .level-2 {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 103px;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  background: #ffffff;
  border-top: 5px solid #7bb82d;
  right: 30px;
  width: auto;
  -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
  max-height: 70vh;
  overflow: hidden;
  overflow-y: scroll;
  min-width: 70vw;
}
.main-nav ul.level-1 > li .level-2 > div:first-child {
  -webkit-column-count: 4;
  -moz-column-count: 4;
  -ms-column-count: 4;
  -o-column-count: 4;
  column-count: 4;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  -ms-column-gap: 40px;
  -o-column-gap: 40px;
  column-gap: 40px;
  padding: 40px;
  height: 100%;
  width: 100%;
}
.main-nav ul.level-1 > li .level-2 > div:first-child.link-78 {
  border-color: #fd5b3e;
}
.main-nav ul.level-1 > li .level-2 > div:first-child.link-15 {
  border-color: #2faaa3;
}
.main-nav ul.level-1 > li .level-2 > div:first-child.link-16 {
  border-color: #61b1ff;
}
.main-nav ul.level-1 > li .level-2 > div:first-child.link-17 {
  border-color: #feac17;
}
.main-nav ul.level-1 > li .level-2 > div:first-child.link-744 {
  border-color: #af5eaf;
}
.main-nav ul.level-1 > li .level-2 > div:first-child > li {
  margin-bottom: 20px;
}
.main-nav ul.level-1 > li .level-2 > div:first-child > li > span a,
.main-nav ul.level-1 > li .level-2 > div:first-child > li > a {
  font-weight: 600;
  opacity: 0.8;
}
.main-nav ul.level-1 > li .level-2 > div:first-child li {
  position: relative;
  line-height: 30px;
  max-width: 300px;
}
.main-nav ul.level-1 > li .level-2 > div:first-child li.hasSub span a,
.main-nav ul.level-1 > li .level-2 > div:first-child li.hasSub a {
  padding-left: 20px;
}
.main-nav ul.level-1 > li .level-2 > div:first-child li.hasSub i {
  position: absolute;
  top: 0;
  left: -5px;
}
.main-nav ul.level-1 > li .level-2 > div:first-child li .level-3 {
  margin-top: 20px;
}
.main-nav ul.level-1 > li .level-2 > div:first-child li .level-3 > li.hasSub {
  margin-top: 20px;
}
.main-nav ul.level-1 > li .level-2 > div:first-child li .level-3 li {
  -webkit-column-break-inside: auto;
  page-break-inside: auto;
  break-inside: auto;
}
.main-nav ul.level-1 > li .level-2 > div:first-child li .level-3 li span a,
.main-nav ul.level-1 > li .level-2 > div:first-child li .level-3 li a {
  color: #7c7c7c;
}
.main-nav ul.level-1 > li .level-2 > div:first-child li .level-3 li ul > li {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
.main-nav ul.level-1 > li .level-2 > div:first-child li .level-3 li ul > li ul > li span a,
.main-nav ul.level-1 > li .level-2 > div:first-child li .level-3 li ul > li ul > li a {
  opacity: 0.4;
}
.main-nav ul.level-1 > li .level-2 > div:first-child li .level-3 li ul > li span a,
.main-nav ul.level-1 > li .level-2 > div:first-child li .level-3 li ul > li a {
  opacity: 0.6;
}
@media only screen and (max-width: 1400px) {
  .main-nav {
    right: -15px;
  }
  .main-nav ul.level-1 > li {
    padding: 10px 8px 15px 8px;
  }
  .main-nav ul.level-1 li span a,
  .main-nav ul.level-1 li a {
    font-size: 14px;
    line-height: 18px;
  }
  .main-nav ul.level-1 li .level-2 {
    min-width: 80vw;
  }
  .main-nav ul.level-1 li .level-2 > div:first-child {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    -ms-column-count: 4;
    -o-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    -ms-column-gap: 30px;
    -o-column-gap: 30px;
    column-gap: 30px;
    padding: 25px;
    width: 100%;
  }
  .main-nav ul.level-1 li .level-2 > div:first-child > li {
    margin-bottom: 15px;
  }
  .main-nav ul.level-1 li .level-2 > div:first-child li {
    line-height: 25px;
    max-width: 200px;
  }
  .main-nav ul.level-1 li .level-2 > div:first-child li a {
    font-size: 13px;
    line-height: 16px;
  }
  .main-nav ul.level-1 li .level-2 > div:first-child li .level-3 {
    margin-top: 15px;
  }
  .main-nav ul.level-1 li .level-2 > div:first-child li .level-3 > li.hasSub {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 1200px) {
  .main-nav {
    right: 15px;
  }
}
@media only screen and (max-width: 1100px) {
  .main-nav ul.level-1 > li {
    padding: 10px 8px 15px 8px;
  }
  .main-nav ul.level-1 li span a,
  .main-nav ul.level-1 li a {
    font-size: 12px;
    line-height: 16px;
  }
  .main-nav ul.level-1 li .level-2 > div:first-child {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    -ms-column-count: 3;
    -o-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    -ms-column-gap: 25px;
    -o-column-gap: 25px;
    column-gap: 25px;
    padding: 25px;
  }
  .main-nav ul.level-1 li .level-2 > div:first-child > li {
    margin-bottom: 10px;
  }
  .main-nav ul.level-1 li .level-2 > div:first-child li {
    line-height: 25px;
    max-width: 230px;
  }
  .main-nav ul.level-1 li .level-2 > div:first-child li .level-3 {
    margin-top: 10px;
  }
  .main-nav ul.level-1 li .level-2 > div:first-child li .level-3 > li.hasSub {
    margin-top: 10px;
  }
}
header.subpages .main-nav ul.level-2 {
  display: flex;
}
header.subpages .main-nav ul.level-2 .navsub {
  display: block;
  break-inside: avoid;
  float: right;
  position: relative;
  padding: 40px 60px;
  border-left: solid 1px #dfdfdf;
  min-width: 230px;
}
header.subpages .main-nav ul.level-2 .navsub a {
  display: block;
  float: none;
  line-height: 30px;
  font-weight: 600;
  opacity: 0.8;
}
header.subpages .main-nav ul.level-2 .navsub a:hover {
  opacity: 1;
}
@media only screen and (max-width: 1400px) {
  header.subpages .main-nav ul.level-2 .navsub {
    padding: 25px 50px;
    min-width: 200px;
  }
}
@media only screen and (max-width: 1100px) {
  header.subpages .main-nav ul.level-2 .navsub {
    padding: 25px 40px;
    min-width: 180px;
  }
}
.sitemap .text {
  display: flex;
}
.sitemap ul.level-1 {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  -ms-column-count: 3;
  -o-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  -ms-column-gap: 40px;
  -o-column-gap: 40px;
  column-gap: 40px;
  font-family: 'Montserrat', "Arial", sans-serif;
  font-style: normal;
}
.sitemap ul.level-1 li {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
.sitemap ul.level-1 li:before {
  content: "chevron_right";
  font-family: 'Material Icons';
  top: 0;
  height: 0;
  width: 0;
}
.sitemap ul.level-1 li a {
  color: #7c7c7c;
}
.sitemap ul.level-1 > li {
  padding-left: 0;
}
.sitemap ul.level-1 > li:before {
  display: none;
}
.sitemap ul.level-1 > li > a {
  text-transform: uppercase;
  font-weight: 600;
}
.sitemap ul.level-1 ul {
  margin-bottom: 2.5rem;
}
.sitemap ul.level-1 ul li:first-child {
  margin-top: 1rem;
}
@media only screen and (max-width: 1024px) {
  .sitemap ul.level-1 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    -ms-column-count: 2;
    -o-column-count: 2;
    column-count: 2;
  }
}
@media only screen and (max-width: 735px) {
  .sitemap ul.level-1 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    -ms-column-count: 1;
    -o-column-count: 1;
    column-count: 1;
  }
}
.fix-nav {
  position: fixed;
  top: 82%;
  left: 0px;
  z-index: 1999;
  padding: 10px 15px;
  display: inline-block;
  font-family: 'Montserrat', "Arial", sans-serif;
  /*	@media only screen and (max-width: @breakpoint-5) {
                    display: none;
            }*/
}
@media only screen and (max-width: 1024px) {
  .fix-nav {
    top: 40%;
  }
}
.fix-nav a {
  color: #ffffff;
}
.fix-nav:after {
  content: "";
  background: #7bb82d;
  width: 60px;
  height: auto;
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  z-index: -1;
}
.fix-nav .slogan {
  display: block;
  float: none;
  left: 54px;
  -webkit-transform: translate3d(-100%, -50%, 0);
  -moz-transform: translate3d(-100%, -50%, 0);
  -ms-transform: translate3d(-100%, -50%, 0);
  -o-transform: translate3d(-100%, -50%, 0);
  transform: translate3d(-100%, -50%, 0);
  /*margin-right: -54px;*/
  background: #7bb82d;
  position: absolute;
  padding: 10px 15px;
  box-sizing: border-box;
  text-transform: uppercase;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  cursor: pointer;
  color: #ffffff;
  width: 410px;
  max-width: 100%;
}
.fix-nav .slogan .inhalt {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
  box-sizing: border-box;
  /*                &::selection,
                            &::-moz-selection,
                            &::-webkit-selection
                            {
                                color: @light !important;
                            }*/
}
.fix-nav .slogan .inhalt p {
  margin-right: 15px;
}
.fix-nav .slogan .inhalt p span {
  font-style: italic;
  text-transform: none;
}
.fix-nav .slogan.is-shown {
  left: 0px;
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  -ms-transform: translate3d(0, -50%, 0);
  -o-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.fix-nav .slogan:hover {
  /*left: -5px;*/
  left: 0px;
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  -ms-transform: translate3d(0, -50%, 0);
  -o-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
body.header-transparent .header.background nav.main-nav .level-1 > .navi-list-item > a {
  color: #333333 !important;
  text-shadow: none;
}
body.header-transparent .header.background nav.main-nav .level-1 > .navi-list-item > a:after {
  background-color: #333333 !important;
}
body.header-transparent .header.background nav.main-nav .level-1 > .navi-list-item i {
  color: #333333 !important;
}
header .header nav.meta-nav ul li.login a {
  padding-left: 25px;
  background: url(/fileadmin/templates/img/icons/login.png) no-repeat 3px center;
  background-size: 18px;
}
body.show-footer footer .footer {
  display: block;
}
footer {
  color: #ffffff;
  margin: 0 auto;
  box-sizing: border-box;
  background: #ffffff;
  font-family: 'Montserrat', "Arial", sans-serif;
}
@media only screen and (max-width: 1200px) {
  footer {
    box-sizing: border-box;
    width: 100%;
  }
}
footer .content {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1330px) {
  footer .content {
    width: 100%;
  }
}
footer .footer {
  position: relative;
  margin: 0 auto;
  color: #333333;
  box-sizing: border-box;
  width: 100%;
  display: none;
}
footer .footer .text .textbox-inhalt {
  margin-top: 2rem;
  font-style: italic;
}
footer .footer section {
  width: 100%;
}
footer .footer section .content.two-cols,
footer .footer section .content.three-cols,
footer .footer section .content.four-cols,
footer .footer section .content.one-double-col {
  left: 0;
  transform: translate(0);
  display: flex;
}
footer .footer section .content.two-cols h1,
footer .footer section .content.three-cols h1,
footer .footer section .content.four-cols h1,
footer .footer section .content.one-double-col h1,
footer .footer section .content.two-cols h2,
footer .footer section .content.three-cols h2,
footer .footer section .content.four-cols h2,
footer .footer section .content.one-double-col h2,
footer .footer section .content.two-cols h3,
footer .footer section .content.three-cols h3,
footer .footer section .content.four-cols h3,
footer .footer section .content.one-double-col h3,
footer .footer section .content.two-cols h4,
footer .footer section .content.three-cols h4,
footer .footer section .content.four-cols h4,
footer .footer section .content.one-double-col h4,
footer .footer section .content.two-cols .headline,
footer .footer section .content.three-cols .headline,
footer .footer section .content.four-cols .headline,
footer .footer section .content.one-double-col .headline,
footer .footer section .content.two-cols a,
footer .footer section .content.three-cols a,
footer .footer section .content.four-cols a,
footer .footer section .content.one-double-col a {
  color: #ffffff;
}
@media only screen and (max-width: 900px) {
  footer .footer section .content.two-cols,
  footer .footer section .content.three-cols,
  footer .footer section .content.four-cols,
  footer .footer section .content.one-double-col {
    display: inline-block;
  }
}
footer .footer section .content .col:after {
  content: '';
  height: 100%;
  position: absolute;
  display: inline-block;
  width: 1px;
  background-color: #ffffff;
  opacity: 0.1;
  top: 0;
  right: 20px;
}
@media only screen and (max-width: 900px) {
  footer .footer section .content .col:after {
    content: none;
  }
}
footer .footer section .content .col:last-child:after {
  content: none;
}
@media only screen and (max-width: 900px) {
  footer .footer section .content .col:first-child {
    display: none;
  }
}
footer .footer section .footer-text {
  display: inline-block;
  width: 100%;
}
footer .footer section .footer-text h4,
footer .footer section .footer-text h3 {
  font-size: 20px;
  line-height: 27px;
  margin: 0;
  font-weight: 400;
  font-family: 'Montserrat', "Arial", sans-serif;
  text-transform: uppercase;
}
@media only screen and (max-width: 1200px) {
  footer .footer section .footer-text h4,
  footer .footer section .footer-text h3 {
    font-size: 18px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 735px) {
  footer .footer section .footer-text h4,
  footer .footer section .footer-text h3 {
    font-size: 18px;
    line-height: 22px;
  }
}
footer .footer section .footer-text h3 {
  color: #ffffff !important;
}
footer .footer section .footer-text img {
  margin-top: 10px;
  max-width: 100%;
  height: auto;
}
footer .footer section .footer-text p {
  font-family: 'Montserrat', "Arial", sans-serif;
  font-size: 13px;
  line-height: 21px;
}
footer .footer section .footer-text p strong {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-family: 'Montserrat', "Arial", sans-serif;
}
footer .footer section .footer-text a {
  color: #ffffff !important;
  line-height: 28px;
  font-family: 'Montserrat', "Arial", sans-serif;
}
footer .footer p {
  position: relative;
}
footer .footer p:last-child {
  margin-bottom: 0;
}
footer .footer p span {
  position: absolute;
  right: 0;
}
footer .footer p a {
  cursor: pointer;
}
footer .footer a {
  color: #ffffff;
  /*opacity: 0.5;*/
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
footer .footer a:hover {
  color: #ffffff;
}
footer .footer ul {
  padding: 0;
}
footer .footer ul li {
  list-style: none;
}
footer .footer ul li a {
  color: #ffffff;
  opacity: 0.5;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
footer .footer ul li:hover a {
  opacity: 1;
}
footer .footer-box {
  color: #ffffff;
  padding: 20px 0;
  background: #333333;
}
footer .footer-box .content {
  justify-content: space-between;
  display: flex;
}
footer .footer-box .content .copyright {
  font-size: 12px;
  line-height: 23px;
  opacity: 0.8;
}
@media screen and (max-width: 1330px) {
  footer .footer-box {
    padding: 20px 5%;
  }
}
@media only screen and (max-width: 650px) {
  footer .footer-box .content {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    text-align: center;
  }
  footer .footer-box .content > div {
    width: 100%;
  }
  footer .footer-box .content > div.copyright {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .container section {
    padding-bottom: 0 !important;
  }
}
body .bg-white {
  background-color: #ffffff;
}
body .bg-grey {
  background-color: #f4f4f4;
}
body .bg-darkgrey {
  background-color: #333333;
  color: #ffffff;
}
body .bg-darkgrey h1,
body .bg-darkgrey h2,
body .bg-darkgrey h3,
body .bg-darkgrey h4,
body .bg-darkgrey .headline {
  color: #ffffff !important;
}
body .bg-darkgrey .link a {
  border-color: #ffffff !important;
}
body .bg-darkgrey .aside {
  color: #7c7c7c;
}
body .bg-darkgrey .aside h1,
body .bg-darkgrey .aside h2,
body .bg-darkgrey .aside h3,
body .bg-darkgrey .aside h4,
body .bg-darkgrey .aside .headline {
  color: #7c7c7c !important;
}
body .bg-darkgrey .aside .link a {
  border-color: #7c7c7c !important;
}
body .bg-primary {
  background-color: #7bb82d;
  color: #ffffff;
}
body .bg-primary h1,
body .bg-primary h2,
body .bg-primary h3,
body .bg-primary h4,
body .bg-primary .headline {
  color: #ffffff !important;
}
body .bg-primary .link a {
  border-color: #ffffff !important;
}
body .bg-primary .aside {
  color: #7c7c7c;
}
body .bg-primary .aside h1,
body .bg-primary .aside h2,
body .bg-primary .aside h3,
body .bg-primary .aside h4,
body .bg-primary .aside .headline {
  color: #7c7c7c !important;
}
body .bg-primary .aside .link a {
  border-color: #7c7c7c !important;
}
body .bg-primary ul li:before {
  background: #ffffff;
}
body .bg-highlight {
  border-top: solid 5px #7bb82d;
  border-bottom: solid 5px #7bb82d;
  background-color: rgba(123, 184, 45, 0.1);
}
body .bg-highlight h1,
body .bg-highlight h2,
body .bg-highlight h3,
body .bg-highlight h4,
body .bg-highlight .headline {
  color: #7bb82d !important;
}
body .bg-highlight .tabellen-wrapper table tr {
  background-color: #ffffff !important;
}
body .bg-highlight .aside {
  color: #7c7c7c;
}
body .bg-highlight .aside h1,
body .bg-highlight .aside h2,
body .bg-highlight .aside h3,
body .bg-highlight .aside h4,
body .bg-highlight .aside .headline {
  color: #7c7c7c !important;
}
body .bg-highlight .aside .link a {
  border-color: #7c7c7c !important;
}
body .padding-no .content {
  width: 100%;
  padding: 0 !important;
}
body .padding-normal .content {
  padding: 3% 0;
}
body .padding-normal .content .content:last-child {
  padding-bottom: 0;
}
@media screen and (max-width: 1330px) {
  body .padding-normal .content {
    width: 100%;
    padding: 5%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  body .padding-normal .content .content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 1024px) {
  body .padding-normal .content {
    padding: 8% 5%;
  }
}
@media only screen and (max-width: 900px) {
  body .padding-normal .content {
    padding: 9% 5%;
  }
}
@media only screen and (max-width: 735px) {
  body .padding-normal .content {
    padding: 9% 7%;
  }
}
body .padding-small .content {
  padding: 2% 0;
}
body .padding-small .content .content:last-child {
  padding-bottom: 0;
}
@media screen and (max-width: 1330px) {
  body .padding-small .content {
    width: 100%;
    padding: 2% 5%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 735px) {
  body .padding-small .content {
    padding: 14% 10%;
  }
}
body .padding-big-oben-unten .content {
  padding: 8% 0%;
}
body .padding-big-oben-unten .content .content:last-child {
  padding-bottom: 0;
}
@media screen and (max-width: 1330px) {
  body .padding-big-oben-unten .content {
    width: 100%;
    padding: 8% 5%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 900px) {
  body .padding-big-oben-unten .content {
    padding: 14% 10%;
  }
}
@media only screen and (max-width: 450px) {
  body .padding-big-oben-unten .content {
    padding: 18% 10%;
  }
}
body .padding-big-rechts-links .content {
  padding: 3% 6%;
}
body .padding-big-rechts-links .content .content:last-child {
  padding-bottom: 0;
}
@media screen and (max-width: 1330px) {
  body .padding-big-rechts-links .content {
    width: 100%;
    padding: 5% 8%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 735px) {
  body .padding-big-rechts-links .content {
    padding: 14% 15%;
  }
}
@media only screen and (max-width: 450px) {
  body .padding-big-rechts-links .content {
    padding: 18% 15%;
  }
}
body .background {
  width: 100%;
  height: auto;
  position: relative;
  background-size: cover;
  background-position: center center;
  /*		    &:before {
                                background: rgba(0,0,0,0.3);
                                    content: "";
                                    height: 100%;
                                    position: absolute;
                                    width: 100%;
                            }*/
}
@media only screen and (max-width: 650px) {
  body .background {
    background-attachment: scroll !important;
  }
}
body .background .content > .content-wrapper {
  color: #ffffff !important;
}
body .background .content > .content-wrapper h1,
body .background .content > .content-wrapper h2,
body .background .content > .content-wrapper h3,
body .background .content > .content-wrapper h4,
body .background .content > .content-wrapper .headline,
body .background .content > .content-wrapper a,
body .background .content > .content-wrapper p {
  color: #ffffff !important;
}
body .background .content > .content-wrapper ul li:before {
  background: #ffffff;
  color: #ffffff;
}
body .background .content > .content-wrapper a {
  text-decoration: underline;
}
body .background .content > .content-wrapper a:hover {
  opacity: 0.7;
}
body .background .content > .content-wrapper .link a {
  background: #ffffff;
  text-decoration: none;
  color: #7c7c7c !important;
}
body .background .content > .content-wrapper .aside h1,
body .background .content > .content-wrapper .aside h2,
body .background .content > .content-wrapper .aside h3,
body .background .content > .content-wrapper .aside h4,
body .background .content > .content-wrapper .aside .headline,
body .background .content > .content-wrapper .aside a,
body .background .content > .content-wrapper .aside p {
  color: #ffffff !important;
}
body .background .content > .content-wrapper .aside ul li:before {
  background: #7c7c7c;
  color: #7c7c7c;
}
body .background .content > .content-wrapper .aside a {
  text-decoration: underline;
}
body .background .content > .content-wrapper .aside a:hover {
  opacity: 0.7;
}
body .background .content > .content-wrapper .aside .link a {
  background: #7c7c7c;
  text-decoration: none;
  color: #7c7c7c !important;
}
body .background .content.two-cols > div > .content-wrapper {
  color: #ffffff !important;
}
body .background .content.two-cols > div > .content-wrapper h1,
body .background .content.two-cols > div > .content-wrapper h2,
body .background .content.two-cols > div > .content-wrapper h3,
body .background .content.two-cols > div > .content-wrapper h4,
body .background .content.two-cols > div > .content-wrapper .headline,
body .background .content.two-cols > div > .content-wrapper a,
body .background .content.two-cols > div > .content-wrapper p {
  color: #ffffff !important;
}
body .background .content.two-cols > div > .content-wrapper ul li:before {
  background: #ffffff;
  color: #ffffff;
}
body .background .content.two-cols > div > .content-wrapper a {
  text-decoration: underline;
}
body .background .content.two-cols > div > .content-wrapper a:hover {
  opacity: 0.7;
}
body .background .content.two-cols > div > .content-wrapper .link a {
  background: #ffffff;
  text-decoration: none;
  color: #7c7c7c !important;
}
body .background .content .tabellen-wrapper table tr {
  background-color: #ffffff !important;
}
body .background.parallax {
  -webkit-background-attachment: fixed;
  -moz-background-attachment: fixed;
  -o-background-attachment: fixed;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
body .background.parallax.hide {
  -webkit-background-attachment: unset;
  -moz-background-attachment: unset;
  -o-background-attachment: unset;
  background-attachment: unset;
}
@media only screen and (max-width: 735px) {
  body .background:before {
    background: rgba(0, 0, 0, 0.7);
  }
}
body .sidebar .content,
body .right-sidebar .content {
  /*				padding-right: 410px;
            
                                            @media only screen and (max-width: @breakpoint-3) {
                                                    padding-right: 5%;
                                            }*/
}
body .hasoverlay-black:before {
  background: rgba(0, 0, 0, 0.5);
  content: ".";
  width: 100%;
  position: absolute;
  height: 100%;
  width: 100% !important;
  z-index: 1;
}
body .hasoverlay-black .content {
  z-index: 2;
}
body .hasoverlay-primary:before {
  background: rgba(123, 184, 45, 0.5);
  content: ".";
  width: 100%;
  position: absolute;
  height: 100%;
  width: 100% !important;
  z-index: 1;
}
body .hasoverlay-primary .content {
  z-index: 2;
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  height: 100%;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  position: relative;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-slide:focus {
  outline: none;
}
.slick-arrow.slick-hidden {
  display: none;
}
@charset "UTF-8";
/* Slider */
.slick-loading .slick-list {
  background: #ffffff url('layouts/ajax-loader.gif') center center no-repeat;
}
/* Arrows */
.content .header-slideshow .slick-prev,
.content .header-slideshow .slick-next {
  width: 40px;
  height: 40px;
}
.content .header-slideshow .slick-prev {
  left: 50px;
}
.content .header-slideshow .slick-next {
  right: 50px;
}
.content .event-slider .slick-prev,
.content .event-slider .slick-next {
  display: none !important;
}
.content .event-slider .slick-prev:before,
.content .event-slider .slick-next:before {
  display: none !important;
}
.content .event-slider .slick-dots li:before {
  display: none !important;
}
.content .event-slider .slick-dots li button {
  height: 21px;
}
.content .event-slider .slick-slide img {
  width: 100%;
  height: auto;
}
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 5;
  height: 50px;
  width: 50px;
  line-height: 0px;
  cursor: pointer;
  background: none;
  border: none;
  top: 53%;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0;
  outline: none;
  z-index: 1;
  color: transparent;
  /*    @media only screen and (max-width: @breakpoint-5) {
        display: none!important;
    }*/
}
.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
  /*opacity: 1;*/
  outline: none;
  background: none;
  color: transparent;
  border-color: #ffffff;
}
.slick-prev:hover:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-next:focus:before {
  /*opacity: @slick-arrow-color;*/
  color: #ffffff;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.5;
}
@media only screen and (max-width: 1500px) {
  .slick-prev,
  .slick-next {
    height: 70px;
    width: 70px;
  }
}
@media only screen and (max-width: 735px) {
  .blog_categories_searchblade .blog_categories-search-categories {
    padding: 0 50px;
  }
  .blog_categories_searchblade .blog_categories-search-categories .blog_categories_category {
    hyphens: auto;
    line-height: 1.3;
    margin: 5px;
  }
  .slick-prev,
  .slick-next {
    /*display: none!important;*/
    transform: translateY(-50%) scale(0.5) !important;
    font-size: 0;
  }
  .slick-prev {
    left: 0 !important;
    text-align: left;
  }
  .slick-next {
    right: 0 !important;
    text-align: right;
  }
}
.slick-prev:before,
.slick-next:before {
  font-family: 'Material Icons';
  font-size: 40px;
  line-height: 1;
  color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate3d(-60%, -52%, 0);
  -moz-transform: translate3d(-60%, -52%, 0);
  -ms-transform: translate3d(-60%, -52%, 0);
  -o-transform: translate3d(-60%, -52%, 0);
  transform: translate3d(-60%, -52%, 0);
}
.slick-prev {
  left: 10%;
  /*margin-top: 24px;*/
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.slick-prev[dir="rtl"] {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "";
  background: url(/fileadmin/templates/img/icons/arrow-left.png) no-repeat center center;
  height: 41px;
  width: 47px;
  display: block;
}
.slick-prev:before[dir="rtl"] {
  content: "";
  background: url(/fileadmin/templates/img/icons/arrow-left.png) no-repeat center center;
  height: 41px;
  width: 47px;
  display: block;
}
@media only screen and (max-width: 1800px) {
  .slick-prev {
    left: 2%;
  }
}
@media only screen and (max-width: 1200px) {
  .slick-prev {
    left: 20px;
  }
}
.slick-next {
  right: 10%;
  /*margin-top: 24px;*/
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.slick-next[dir="rtl"] {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "";
  background: url(/fileadmin/templates/img/icons/arrow-right.png) no-repeat center center;
  height: 41px;
  width: 47px;
  display: block;
}
.slick-next:before[dir="rtl"] {
  content: "";
  background: url(/fileadmin/templates/img/icons/arrow-right.png) no-repeat center center;
  height: 41px;
  width: 47px;
  display: block;
}
@media only screen and (max-width: 1800px) {
  .slick-next {
    right: 2%;
  }
}
@media only screen and (max-width: 1200px) {
  .slick-next {
    right: 20px;
  }
}
/* Dots */
.slick-dotted .slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: relative;
  bottom: 0px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0 !important;
  margin: 0;
  width: 100%;
  bottom: 0;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 8px;
  padding: 0 !important;
  cursor: pointer;
}
.slick-dots li:before {
  content: '' !important;
  margin-left: 0 !important;
  display: none !important;
}
.slick-dots li button {
  border: none;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  background: #7bb82d;
  opacity: 0.5;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  font-family: 'Material Icons';
  font-size: 50px;
  line-height: 20px;
  text-align: center;
  border: solid 1px #7bb82d;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  opacity: 0.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  background: #7bb82d;
  opacity: 0.5;
}
.text-slideshow {
  text-align: left;
  padding: 0 100px;
}
.text-slideshow .inhalt .headline h3 {
  font-size: 52px;
  line-height: 43px;
  font-weight: 700;
  top: -0.04em;
}
.text-slideshow .inhalt .headline h4 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
}
.text-slideshow .inhalt .textbox-inhalt h5 {
  font-family: 'Montserrat', "Arial", sans-serif;
  font-size: 12px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.text-slideshow .inhalt .textbox-inhalt .text {
  font-size: 18px;
  line-height: 27px;
}
.text-slideshow .inhalt .textbox-inhalt .link {
  text-align: left;
}
.text-slideshow .inhalt.center {
  text-align: center;
}
.text-slideshow .inhalt.center .headline,
.text-slideshow .inhalt.center .textbox-inhalt {
  position: relative;
  display: block;
  width: 100%;
}
.text-slideshow .inhalt.left,
.text-slideshow .inhalt.right {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
  box-sizing: border-box;
  padding: 0 20px;
}
.text-slideshow .inhalt.left .headline,
.text-slideshow .inhalt.right .headline,
.text-slideshow .inhalt.left .textbox-inhalt,
.text-slideshow .inhalt.right .textbox-inhalt {
  float: left;
  position: relative;
  display: inline-block;
  width: 50%;
  box-sizing: border-box;
  padding-right: 20px;
}
.text-slideshow .inhalt.left .textbox-inhalt,
.text-slideshow .inhalt.right .textbox-inhalt {
  padding: 0 0 0 20px;
  margin-top: 0;
}
.text-slideshow .inhalt.left .textbox-inhalt h5,
.text-slideshow .inhalt.right .textbox-inhalt h5 {
  margin-top: 0;
}
.text-slideshow .inhalt.left .textbox-inhalt .text,
.text-slideshow .inhalt.right .textbox-inhalt .text {
  margin-top: 15px;
}
.text-slideshow .inhalt.left .textbox-inhalt .text.no-margTop,
.text-slideshow .inhalt.right .textbox-inhalt .text.no-margTop {
  margin-top: 0;
}
.text-slideshow .inhalt.right {
  flex-direction: row-reverse;
}
.text-slideshow .inhalt.right .headline {
  padding-left: 20px;
}
.text-slideshow .inhalt.right .textbox-inhalt {
  padding-right: 20px;
}
.text-slideshow .slick-dots {
  padding-top: 40px !important;
}
.text-slideshow .slick-dots li button:before {
  opacity: 1;
}
@media only screen and (max-width: 900px) {
  .text-slideshow {
    padding: 0;
  }
  .text-slideshow .inhalt.left,
  .text-slideshow .inhalt.right {
    display: inline-block;
    justify-content: inherit;
    flex-wrap: inherit;
    align-items: inherit;
    padding: 0 20px;
    text-align: center;
  }
  .text-slideshow .inhalt.left .headline,
  .text-slideshow .inhalt.right .headline,
  .text-slideshow .inhalt.left .textbox-inhalt,
  .text-slideshow .inhalt.right .textbox-inhalt {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
  .text-slideshow .inhalt.left .headline .link,
  .text-slideshow .inhalt.right .headline .link,
  .text-slideshow .inhalt.left .textbox-inhalt .link,
  .text-slideshow .inhalt.right .textbox-inhalt .link {
    text-align: center;
  }
}
.textnavigation {
  width: 100%;
  display: inline-block;
  margin-top: 5%;
  position: relative;
  padding: 0 6%;
  box-sizing: border-box;
}
.textnavigation:before {
  content: "";
  background: #333333;
  height: 1px;
  width: 100%;
  left: 0;
  top: -21px;
  position: absolute;
}
.textnavigation .navitem {
  width: 25%;
  float: left;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.textnavigation .navitem:before {
  content: "";
  font-family: 'Material Icons';
  color: #333333;
  font-size: 10px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-top: -30px;
}
.textnavigation .navitem span {
  font-size: 12px;
  font-family: 'Montserrat', "Arial", sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.5;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
.textnavigation .navitem:hover span {
  opacity: 1;
}
.textnavigation .navitem.active:before {
  color: #7bb82d;
}
.textnavigation .navitem.active span {
  opacity: 1;
}
@media only screen and (max-width: 900px) {
  .textnavigation:before {
    background: none;
  }
  .textnavigation .navitem {
    width: 100% !important;
    margin-bottom: 15px;
    text-align: center;
  }
  .textnavigation .navitem:before {
    content: "";
  }
  .textnavigation .navitem:hover span {
    color: #7bb82d;
  }
  .textnavigation .navitem.active span {
    opacity: 1;
    color: #7bb82d;
  }
}
@media only screen and (max-width: 735px) {
  .textnavigation {
    padding: 0 10%;
  }
}
.textnav_textslider {
  padding: 6% 6% 0 6%;
}
.textnav_textslider .slidercontent {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  -ms-column-count: 2;
  -o-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  -ms-column-gap: 40px;
  -o-column-gap: 40px;
  column-gap: 40px;
}
.textnav_textslider .slick-dots {
  display: none !important;
}
.textnav_textslider .slick-track {
  height: auto;
}
.textnav_textslider .slidercontent p {
  font-size: 16px !important;
  line-height: 20px !important;
}
@media only screen and (max-width: 735px) {
  .textnav_textslider .slidercontent {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    -ms-column-count: 1;
    -o-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 0px;
    -moz-column-gap: 0px;
    -ms-column-gap: 0px;
    -o-column-gap: 0px;
    column-gap: 0px;
  }
}
body header.subpage #header-content h3,
body header.subpage #header-content p {
  display: none;
}
@media only screen and (max-width: 1200px) {
  body header.subpage .header-slideshow .slick-prev,
  body header.subpage .header-slideshow .slick-next {
    margin-top: 10px;
  }
  body header.subpage #header-content {
    margin-top: 100px !important;
  }
}
@media only screen and (max-width: 735px) {
  body header.subpage {
    /*        #header-content {
            width: 67%;
        }*/
  }
  body header.subpage .header-slideshow .slick-prev {
    left: 30%;
    top: 280px;
  }
  body header.subpage .header-slideshow .slick-next {
    right: 30%;
    top: 280px;
  }
}
@media only screen and (max-width: 650px) {
  body header.subpage #header-content {
    width: 67%;
  }
}
@media only screen and (max-width: 450px) {
  body header.subpage .header-slideshow .slick-prev {
    top: 350px;
  }
  body header.subpage .header-slideshow .slick-next {
    top: 350px;
  }
}
body header.highlight .slick-prev,
body header.highlight .slick-next {
  top: 58%;
}
body header.highlight .header-slideshow {
  height: 460px;
}
body header.highlight .header-slideshow .slide .header_slideshow_content {
  top: 59%;
}
@media only screen and (max-width: 735px) {
  body header.highlight .header-slideshow {
    height: 300px;
    min-height: 300px;
  }
  body header.highlight .header-slideshow .slide {
    min-height: 300px;
  }
  body header.highlight .header-slideshow .slide .header_slideshow_content {
    margin-top: 0 !important;
  }
}
#pgloading {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  background: #fff;
  z-index: 10000000000;
}
#pgloading:after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#pgloading .loadingwrap {
  position: fixed;
  top: 45%;
  bottom: 45%;
  left: 25%;
  right: 25%;
}
#pgloading .bokeh {
  font-size: 100px;
  width: 1em;
  height: 1em;
  position: relative;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
#pgloading .bokeh li {
  position: absolute;
  width: .2em;
  height: .2em;
  border-radius: 50%;
}
#pgloading .bokeh li:nth-child(1) {
  left: 50%;
  top: 0;
  margin: 0 0 0 -0.1em;
  background: #7BB82D;
  -webkit-transform-origin: 50% 250%;
  transform-origin: 50% 250%;
  -webkit-animation: rota 1.13s linear infinite, opa 3.67s ease-in-out infinite alternate;
  animation: rota 1.13s linear infinite, opa 3.67s ease-in-out infinite alternate;
}
#pgloading .bokeh li:nth-child(2) {
  top: 50%;
  right: 0;
  margin: -0.1em 0 0 0;
  background: #2faaa3;
  -webkit-transform-origin: -150% 50%;
  transform-origin: -150% 50%;
  -webkit-animation: rota 1.86s linear infinite, opa 4.29s ease-in-out infinite alternate;
  animation: rota 1.86s linear infinite, opa 4.29s ease-in-out infinite alternate;
}
#pgloading .bokeh li:nth-child(3) {
  left: 50%;
  bottom: 0;
  margin: 0 0 0 -0.1em;
  background: #61b1ff;
  -webkit-transform-origin: 50% -150%;
  transform-origin: 50% -150%;
  -webkit-animation: rota 1.45s linear infinite, opa 5.12s ease-in-out infinite alternate;
  animation: rota 1.45s linear infinite, opa 5.12s ease-in-out infinite alternate;
}
#pgloading .bokeh li:nth-child(4) {
  top: 50%;
  left: 0;
  margin: -0.1em 0 0 0;
  background: #feac17;
  -webkit-transform-origin: 250% 50%;
  transform-origin: 250% 50%;
  -webkit-animation: rota 1.72s linear infinite, opa 5.25s ease-in-out infinite alternate;
  animation: rota 1.72s linear infinite, opa 5.25s ease-in-out infinite alternate;
}
#pgloading .bokeh li:nth-child(5) {
  top: 50%;
  left: 0;
  margin: -0.1em 0 0 0;
  background: #af5eaf;
  -webkit-transform-origin: 250% 50%;
  transform-origin: 250% 50%;
  -webkit-animation: rota 1.2s linear infinite, opa 5.25s ease-in-out infinite alternate;
  animation: rota 1.2s linear infinite, opa 5.25s ease-in-out infinite alternate;
}
#pgloading .bokeh li:nth-child(6) {
  top: 50%;
  left: 0;
  margin: -0.1em 0 0 0;
  background: #fd5b3e;
  -webkit-transform-origin: 250% 50%;
  transform-origin: 250% 50%;
  -webkit-animation: rota 2.1s linear infinite, opa 5.25s ease-in-out infinite alternate;
  animation: rota 2.1s linear infinite, opa 5.25s ease-in-out infinite alternate;
}
@-webkit-keyframes rota {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rota {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes opa {
  12.0% {
    opacity: 0.80;
  }
  19.5% {
    opacity: 0.88;
  }
  37.2% {
    opacity: 0.64;
  }
  40.5% {
    opacity: 0.52;
  }
  52.7% {
    opacity: 0.69;
  }
  60.2% {
    opacity: 0.60;
  }
  66.6% {
    opacity: 0.52;
  }
  70.0% {
    opacity: 0.63;
  }
  79.9% {
    opacity: 0.60;
  }
  84.2% {
    opacity: 0.75;
  }
  91.0% {
    opacity: 0.87;
  }
}
@keyframes opa {
  12.0% {
    opacity: 0.80;
  }
  19.5% {
    opacity: 0.88;
  }
  37.2% {
    opacity: 0.64;
  }
  40.5% {
    opacity: 0.52;
  }
  52.7% {
    opacity: 0.69;
  }
  60.2% {
    opacity: 0.60;
  }
  66.6% {
    opacity: 0.52;
  }
  70.0% {
    opacity: 0.63;
  }
  79.9% {
    opacity: 0.60;
  }
  84.2% {
    opacity: 0.75;
  }
  91.0% {
    opacity: 0.87;
  }
}
.tx-powermail {
  width: 100%;
  margin: 20px auto 0 auto;
  font-family: 'Montserrat', "Arial", sans-serif;
}
.tx-powermail h3 {
  display: none;
}
.tx-powermail fieldset {
  padding: 0;
  border: none;
}
.tx-powermail fieldset:first-of-type .powermail_fieldwrap.powermail_fieldwrap_type_text {
  margin-top: 20px;
}
.tx-powermail fieldset .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tx-powermail fieldset legend {
  display: none;
}
.tx-powermail fieldset .powermail_fieldwrap_type_select .powermail_field {
  position: relative;
}
.tx-powermail fieldset .powermail_fieldwrap_type_select .powermail_field:after {
  content: "";
  background: url(/fileadmin/templates/img/icons/arrow-down-dark.png);
  height: 36px;
  width: 36px;
  display: block;
  position: absolute;
  right: 0;
  top: 20px;
  opacity: 0.5;
}
.tx-powermail fieldset .powermail_fieldwrap_type_select .powermail_field select {
  padding-top: 25px !important;
  padding: 14px 2px!important;
  margin: 13px 0!important;
  color: #7c7c7c !important;
  font-size: 16px !important;
  font-weight: 200 !important;
  width: 100% !important;
}
@media only screen and (max-width: 650px) {
  .tx-powermail fieldset .powermail_fieldwrap_type_select {
    width: 100% !important;
  }
  .tx-powermail fieldset .powermail_fieldwrap_type_select .powermail_field {
    width: 100% !important;
  }
}
.tx-powermail fieldset .powermail_fieldwrap {
  display: inline-block;
  width: 48%;
  float: left;
  position: relative;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_text {
  margin-top: 60px;
}
.tx-powermail fieldset .powermail_fieldwrap.is-active.powermail_fieldwrap_type_input label,
.tx-powermail fieldset .powermail_fieldwrap.not-empty.powermail_fieldwrap_type_input label {
  font-size: 12px;
  color: #7c7c7c;
  padding-top: 0;
}
.tx-powermail fieldset .powermail_fieldwrap.active label {
  right: 0;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_input label {
  display: block;
  position: absolute;
  min-width: 200px;
  padding: 25px 2px 0 2px;
  color: #7c7c7c;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 16px;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_input label .mandatory {
  margin-left: 3px;
}
@media only screen and (max-width: 650px) {
  .tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_input {
    width: 100%;
  }
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_text {
  display: block;
  width: 100%;
  font-size: 20px;
  line-height: 26px;
  margin: 0;
  font-weight: 400;
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #333333;
  vertical-align: baseline;
  position: relative;
  margin-top: 0.5rem;
  top: -0.14em;
  letter-spacing: 1px;
  text-transform: uppercase;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  /*	-ms-word-break: break-all;
         word-break: break-all;
    
         // Non standard for webkit
         word-break: break-word;
    
    -webkit-hyphens: auto;
       -moz-hyphens: auto;
            hyphens: auto;*/
  color: #7bb82d;
  margin-top: 60px;
}
@media only screen and (max-width: 1200px) {
  .tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_text {
    font-size: 18px;
    line-height: 21px;
  }
}
@media only screen and (max-width: 735px) {
  .tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_text {
    font-size: 18px;
    line-height: 21px;
  }
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_content {
  width: 100%;
  margin-top: 60px;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_textarea {
  width: 100%;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_textarea label {
  display: block;
  color: #7c7c7c;
  text-transform: uppercase;
  font-weight: 300;
  padding-left: 2px;
  margin: 26px 0 15px 0;
  font-size: 16px;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_textarea label .mandatory {
  margin-left: 3px;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_textarea .powermail_field textarea {
  border: 1px solid #dfdfdf;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_absenden .powermail_field {
  width: 100%;
  display: inline-block;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_date label {
  display: block;
  position: absolute;
  min-width: 200px;
  padding: 25px 2px 0 2px;
  color: #7c7c7c;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 16px;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_date label .mandatory {
  margin-left: 3px;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_datenschutz {
  margin-top: 20px !important;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_check {
  width: 100%;
  margin-top: 20px;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_check .powermail_field label {
  display: block;
  padding-left: 0 !important;
  font-size: 14px;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_check .powermail_field label input {
  height: auto;
  width: auto !important;
  float: left;
  position: relative;
  top: 6px;
  margin-right: 10px;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_check .powermail_field label .datenschutztext a {
  display: inline-block;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_minderjaehrighinweis {
  display: none;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_submit {
  width: auto;
  margin-top: 1.5rem;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_submit.not-send {
  pointer-events: none;
  opacity: 0.5;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_submit > div {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_submit > div:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: .2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 2;
}
.tx-powermail fieldset .powermail_fieldwrap.powermail_fieldwrap_type_submit > div:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.tx-powermail fieldset .powermail_fieldwrap .powermail_fieldwrap_type_select .powermail_field select {
  border-radius: 0;
}
.tx-powermail fieldset .powermail_fieldwrap .powermail_fieldwrap_type_select .powermail_field select::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #7c7c7c;
  text-transform: uppercase;
  font-weight: 300;
}
.tx-powermail fieldset .powermail_fieldwrap .powermail_fieldwrap_type_select .powermail_field select::-moz-placeholder {
  /* Firefox 19+ */
  color: #7c7c7c;
  text-transform: uppercase;
  font-weight: 300;
}
.tx-powermail fieldset .powermail_fieldwrap .powermail_fieldwrap_type_select .powermail_field select:-ms-input-placeholder {
  /* IE 10+ */
  color: #7c7c7c;
  text-transform: uppercase;
  font-weight: 300;
}
.tx-powermail fieldset .powermail_fieldwrap .powermail_fieldwrap_type_select .powermail_field select:-moz-placeholder {
  /* Firefox 18- */
  color: #7c7c7c;
  text-transform: uppercase;
  font-weight: 300;
}
.tx-powermail fieldset .powermail_fieldwrap label {
  display: none;
}
.tx-powermail fieldset .powermail_fieldwrap .powermail_field {
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.tx-powermail fieldset .powermail_fieldwrap .powermail_field select {
  font-size: 14px;
  border-bottom: 1px solid #dfdfdf !important;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  padding: 10px 4px;
  margin: 0;
  color: #7bb82d;
  width: 230px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 20px;
  background: none;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.tx-powermail fieldset .powermail_fieldwrap .powermail_field select:focus {
  outline: none;
}
.tx-powermail fieldset .powermail_fieldwrap .powermail_field input,
.tx-powermail fieldset .powermail_fieldwrap .powermail_field textarea {
  border-bottom: 1px solid #dfdfdf !important;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  margin: 0;
  box-sizing: border-box;
  z-index: 2;
  background: transparent;
  position: relative;
  height: 60px;
  margin-bottom: 12px;
  padding: 12px 2px 0 2px;
  width: 100%;
  font-size: 14px;
}
@media only screen and (max-width: 735px) {
  .tx-powermail fieldset .powermail_fieldwrap .powermail_field input,
  .tx-powermail fieldset .powermail_fieldwrap .powermail_field textarea {
    font-size: 16px;
  }
}
.tx-powermail fieldset .powermail_fieldwrap .powermail_field input:focus,
.tx-powermail fieldset .powermail_fieldwrap .powermail_field textarea:focus {
  outline: none;
}
.tx-powermail fieldset .powermail_fieldwrap .powermail_field input.powermail_submit,
.tx-powermail fieldset .powermail_fieldwrap .powermail_field textarea.powermail_submit {
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #ffffff;
  padding: 8px 20px;
  font-size: 14px;
  background: #7bb82d;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 300;
  margin: 0;
  font-style: normal;
  text-decoration: none;
  -webkit-box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.15);
  height: auto;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.tx-powermail fieldset .powermail_fieldwrap .powermail_field input::-webkit-input-placeholder,
.tx-powermail fieldset .powermail_fieldwrap .powermail_field textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #7c7c7c;
  text-transform: uppercase;
  font-weight: 300;
}
.tx-powermail fieldset .powermail_fieldwrap .powermail_field input::-moz-placeholder,
.tx-powermail fieldset .powermail_fieldwrap .powermail_field textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #7c7c7c;
  text-transform: uppercase;
  font-weight: 300;
}
.tx-powermail fieldset .powermail_fieldwrap .powermail_field input:-ms-input-placeholder,
.tx-powermail fieldset .powermail_fieldwrap .powermail_field textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #7c7c7c;
  text-transform: uppercase;
  font-weight: 300;
}
.tx-powermail fieldset .powermail_fieldwrap .powermail_field input:-moz-placeholder,
.tx-powermail fieldset .powermail_fieldwrap .powermail_field textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #7c7c7c;
  text-transform: uppercase;
  font-weight: 300;
}
.tx-powermail fieldset .powermail_fieldwrap .powermail_field textarea {
  min-height: 150px;
  max-width: 100%;
  width: 100% !important;
}
.tx-powermail .powermail_form .powermail_fieldset .fieldset-container {
  display: flex;
  justify-content: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
}
.tx-powermail .powermail_form .powermail_fieldset .fieldset-container .powermail_fieldwrap {
  width: 100%;
  box-sizing: border-box;
  margin: 10px 0;
  padding: 0;
  display: block;
  float: none;
}
.tx-powermail .powermail_form .powermail_fieldset .fieldset-container .powermail_fieldwrap.powermail_fieldwrap_type_textarea {
  width: 100%;
}
.tx-powermail .powermail_form .powermail_fieldset .fieldset-container .powermail_fieldwrap.powermail_fieldwrap_anrede {
  margin-top: 15px;
}
.tx-powermail .powermail_form .powermail_fieldset .fieldset-container .powermail_fieldwrap.powermail_fieldwrap_marker_04,
.tx-powermail .powermail_form .powermail_fieldset .fieldset-container .powermail_fieldwrap.powermail_fieldwrap_marker_05,
.tx-powermail .powermail_form .powermail_fieldset .fieldset-container .powermail_fieldwrap.powermail_fieldwrap_marker_06,
.tx-powermail .powermail_form .powermail_fieldset .fieldset-container .powermail_fieldwrap.powermail_fieldwrap_anrede {
  margin-bottom: 0;
}
@media only screen and (max-width: 650px) {
  .tx-powermail .powermail_form .powermail_fieldset .fieldset-container .powermail_fieldwrap.powermail_fieldwrap_marker_04,
  .tx-powermail .powermail_form .powermail_fieldset .fieldset-container .powermail_fieldwrap.powermail_fieldwrap_marker_05 {
    margin-bottom: 10px;
  }
}
.tx-powermail .powermail_form .powermail_fieldset .fieldset-container .powermail_fieldwrap .powermail_field {
  width: 100%;
}
.tx-powermail .powermail_form .powermail_fieldset .fieldset-container .powermail_fieldwrap .powermail_field input {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
}
.tx-powermail .powermail_form .powermail_fieldset .fieldset-container .powermail_fieldwrap.powermail_fieldwrap_type_submit {
  width: 100%;
}
.tx-powermail .powermail_form .powermail_fieldset .fieldset-container .powermail_fieldwrap.powermail_fieldwrap_type_submit .powermail_field {
  text-align: center;
}
.tx-powermail .powermail_form .powermail_fieldset .fieldset-container .powermail_fieldwrap.powermail_fieldwrap_type_submit .powermail_field input {
  width: auto;
  margin: 0 auto;
  float: none;
  background: transparent;
  border: solid 1px #7bb82d;
  color: #7bb82d;
}
.tx-powermail .powermail_form .powermail_fieldset .fieldset-container .powermail_fieldwrap.powermail_fieldwrap_type_submit .powermail_field input:hover {
  background: #7bb82d;
  color: #ffffff;
  opacity: 1;
}
@media only screen and (max-width: 900px) {
  .tx-powermail {
    max-width: 100%;
    width: 100%;
  }
}
.tx-powermail .parsley-errors-list.filled {
  background-color: #333333;
  padding: 5px 15px;
  display: inline-block;
  font-size: 12px;
  margin-top: 10px;
  font-weight: 200;
  position: relative;
  color: #ffffff;
}
.tx-powermail .parsley-errors-list.filled li:before {
  display: none;
}
.tx-powermail .parsley-errors-list.filled:before {
  content: '';
  width: 0px;
  height: 0px;
  -webkit-transform: rotate(360deg);
  border-style: solid;
  border-width: 0 10px 15px 10px;
  border-color: transparent transparent #333333 transparent;
  position: absolute;
  display: block;
  top: -11px;
  left: 10px;
}
.powermail_confirmation .headline {
  font-size: 20px;
  line-height: 26px;
  margin: 0;
  font-weight: 400;
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #333333;
  vertical-align: baseline;
  position: relative;
  margin-top: 0.5rem;
  top: -0.14em;
  letter-spacing: 1px;
  text-transform: uppercase;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  /*	-ms-word-break: break-all;
         word-break: break-all;
    
         // Non standard for webkit
         word-break: break-word;
    
    -webkit-hyphens: auto;
       -moz-hyphens: auto;
            hyphens: auto;*/
  background: #7bb82d;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 5px 10px;
  display: inline-block;
  margin-top: 60px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1200px) {
  .powermail_confirmation .headline {
    font-size: 18px;
    line-height: 21px;
  }
}
@media only screen and (max-width: 735px) {
  .powermail_confirmation .headline {
    font-size: 18px;
    line-height: 21px;
  }
}
.powermail_confirmation tr td {
  vertical-align: top;
}
.powermail_confirmation tr td:first-child {
  padding-right: 15px;
}
.powermail_confirmation .btn-group form {
  display: inline-block;
  margin-right: 15px;
}
.powermail_confirmation .btn-group form .btn {
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #ffffff;
  padding: 5px 20px;
  font-size: 14px;
  background: #7bb82d;
  text-transform: uppercase;
  margin-top: 1.5rem;
  display: inline-block;
  font-weight: 300;
  font-style: normal;
  text-decoration: none;
  -webkit-box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.powermail_confirmation .btn-group form .btn:focus {
  outline: none;
}
.powermail_confirmation .btn-group form .btn:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: .2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 2;
}
.powermail_confirmation .btn-group form .btn:hover {
  cursor: pointer;
}
.xdsoft_datetimepicker {
  display: none !important;
}
#c4662 {
  min-height: 1200px;
}
@media only screen and (max-width: 1024px) {
  #c4662 {
    min-height: auto;
  }
}
#c5230,
#c310 {
  min-height: 600px;
}
@media only screen and (max-width: 1024px) {
  #c5230,
  #c310 {
    min-height: auto;
  }
}
/*Seminarform*/
.tx-powermail .powermail_fieldset.powermail_fieldset_28 .powermail_fieldwrap,
.tx-powermail .powermail_fieldset.powermail_fieldset_29 .powermail_fieldwrap,
.tx-powermail .powermail_fieldset.powermail_fieldset_30 .powermail_fieldwrap,
.tx-powermail .powermail_fieldset.powermail_fieldset_31 .powermail_fieldwrap,
.tx-powermail .powermail_fieldset.powermail_fieldset_32 .powermail_fieldwrap {
  width: 30%;
}
.tx-powermail .powermail_fieldset.powermail_fieldset_28 .powermail_fieldwrap_type_html,
.tx-powermail .powermail_fieldset.powermail_fieldset_29 .powermail_fieldwrap_type_html,
.tx-powermail .powermail_fieldset.powermail_fieldset_30 .powermail_fieldwrap_type_html,
.tx-powermail .powermail_fieldset.powermail_fieldset_31 .powermail_fieldwrap_type_html,
.tx-powermail .powermail_fieldset.powermail_fieldset_32 .powermail_fieldwrap_type_html,
.tx-powermail .powermail_fieldset.powermail_fieldset_28 hr,
.tx-powermail .powermail_fieldset.powermail_fieldset_29 hr,
.tx-powermail .powermail_fieldset.powermail_fieldset_30 hr,
.tx-powermail .powermail_fieldset.powermail_fieldset_31 hr,
.tx-powermail .powermail_fieldset.powermail_fieldset_32 hr {
  width: 100%;
}
.tx-powermail .powermail_fieldset.powermail_fieldset_28 hr,
.tx-powermail .powermail_fieldset.powermail_fieldset_29 hr,
.tx-powermail .powermail_fieldset.powermail_fieldset_30 hr,
.tx-powermail .powermail_fieldset.powermail_fieldset_31 hr,
.tx-powermail .powermail_fieldset.powermail_fieldset_32 hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid #dfdfdf;
}
/*
possible patterns:
pattern = "allergie-pattern"
pattern = "ernaehrung-pattern"
pattern = "haut-pattern"
pattern = "atemwege-pattern"
pattern = "daab-pattern"
pattern = "anaphylaxie-pattern"
*/
#abbinder {
  background-image: url("/fileadmin/images/patterns/daab-pattern.png") !important;
}
.cookies {
  position: fixed;
  font-size: 14px;
  line-height: 24px;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  padding: 0 8%;
  box-sizing: border-box;
  color: #fff;
  /*background: #1c88cd;*/
  z-index: 9999;
  font-family: 'Montserrat', "Arial", sans-serif;
  background: #7bb82d;
}
@media only screen and (max-width: 900px) {
  .cookies {
    font-size: 12px;
    line-height: 20px;
  }
}
.cookies .inner {
  box-sizing: border-box;
  padding: 1.3vw 0.5vw;
}
@media only screen and (max-width: 1200px) {
  .cookies .inner {
    padding: 10px;
    box-sizing: border-box;
  }
}
.cookies.hide {
  display: none;
}
.cookies a {
  text-decoration: underline;
  color: #fff;
}
.cookies .btn {
  display: inline-block;
  cursor: pointer;
  padding: 3px 13px;
  border-radius: 90px;
  background: #fff;
  margin: 5px 5px 0px 20px;
  opacity: 0.9;
  color: #3f5c6f;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  font-weight: 400;
}
.cookies .btn:hover {
  opacity: 1;
}
#damn_cookieconsent_banner.popupbanner.variant3 .bannerbuttons .btn {
  background-color: #7bb82d;
  border: #7bb82d;
  color: #FFF;
}
#damn_cookieconsent_banner.popupbanner.variant3 .show_options_button {
  padding: 7px;
  background-color: #7bb82d;
  color: #FFF;
}
header .header .main-header .search-btn {
  background: #7bb82d;
  font-size: 12px;
  color: #ffffff;
  text-transform: uppercase;
  padding: 10px 35px 10px 15px;
  -webkit-box-shadow: 3px 3px 10px -3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 3px 3px 10px -3px rgba(0, 0, 0, 0.5);
  box-shadow: 3px 3px 10px -3px rgba(0, 0, 0, 0.5);
  display: inline-block;
  right: 0;
  position: absolute;
  text-align: right;
  cursor: pointer;
  top: -1px;
}
header .header .main-header .search {
  font-size: 18px;
  font-family: 'Material Icons';
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  display: inline-block;
  position: absolute;
  top: 13px;
  margin-left: 4px;
}
@media only screen and (max-width: 1200px) {
  header .header .main-header .search-btn {
    margin-right: 30px;
  }
}
header .header #search-panel {
  -webkit-transform: translateY(-100vh);
  -moz-transform: translateY(-100vh);
  -ms-transform: translateY(-100vh);
  -o-transform: translateY(-100vh);
  transform: translateY(-100vh);
  height: 100vh;
  width: 100%;
  right: 0;
  text-align: right;
  display: block;
  position: absolute;
  cursor: pointer;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  background: rgba(51, 51, 51, 0.99);
  z-index: 9999;
}
header .header #search-panel .close {
  font-size: 30px;
  font-weight: 600;
  font-family: 'Material Icons';
  color: #ffffff;
  display: block;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  position: absolute;
  top: 7%;
  right: 5%;
  margin-left: 4px;
}
header .header #search-panel #indexedsearchbox {
  width: 1200px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 15px 10% 10px 10%;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
header .header #search-panel #indexedsearchbox form {
  float: right;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
header .header #search-panel #indexedsearchbox form input {
  padding: 10px 10px;
  color: #ffffff;
  border-radius: 0;
  border: none;
  font-size: 16px;
  font-family: 'Montserrat', "Arial", sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
header .header #search-panel #indexedsearchbox form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffffff;
}
header .header #search-panel #indexedsearchbox form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
}
header .header #search-panel #indexedsearchbox form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #ffffff;
}
header .header #search-panel #indexedsearchbox form input:-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
}
header .header #search-panel #indexedsearchbox form input.searchbox-button {
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #ffffff;
  padding: 3px 25px 3px 25px;
  font-size: 14px;
  background: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 200;
  float: right;
  cursor: pointer;
  width: auto;
  position: absolute;
  right: 0;
  margin-top: 9px;
  border-left: solid 5px #ffffff;
}
header .header #search-panel #indexedsearchbox form input.searchbox-button:hover {
  opacity: 0.8;
}
header .header #search-panel #indexedsearchbox form input.searchbox-button:focus {
  outline: none;
}
header .header #search-panel #indexedsearchbox form input.searchbox-sword {
  width: 100%;
  border: solid 2px #ffffff;
  background: none;
  padding: 10px 150px 10px 25px;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
header .header #search-panel #indexedsearchbox form input.searchbox-sword:focus {
  outline: none;
}
header .header.active-search #search-panel {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
header .header.active-search #search-panel #indexedsearchbox {
  background: none;
  max-width: 760px;
}
@media only screen and (max-width: 1333px) {
  header .header #search-panel #indexedsearchbox {
    width: 100%;
    padding: 0 100px;
  }
}
@media only screen and (max-width: 1200px) {
  header .header .main-header .search,
  header .header .main-header .arrow {
    right: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  header .header .main-header .search-btn {
    margin-right: 70px;
    font-size: 0px;
  }
  header .header .main-header .search-btn i {
    margin-left: 2px;
    right: auto;
  }
}
@media only screen and (max-width: 735px) {
  header .header #search-panel #indexedsearchbox {
    padding: 0 50px;
  }
}
@media only screen and (max-width: 450px) {
  header .header #search-panel #indexedsearchbox {
    padding: 0 30px;
  }
}
header .header-wrapper #search-panel #indexedsearchbox {
  width: 50%;
  position: relative;
}
header .header-wrapper #search-panel #indexedsearchbox form {
  float: right;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
header .header-wrapper #search-panel #indexedsearchbox form input {
  padding: 10px 10px;
  color: #ffffff;
  border-radius: 0;
  border: none;
  font-size: 16px;
  font-family: 'Montserrat', "Arial", sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
header .header-wrapper #search-panel #indexedsearchbox form input:-webkit-autofill,
header .header-wrapper #search-panel #indexedsearchbox form input:-webkit-autofill:hover,
header .header-wrapper #search-panel #indexedsearchbox form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}
header .header-wrapper #search-panel #indexedsearchbox form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffffff;
}
header .header-wrapper #search-panel #indexedsearchbox form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
}
header .header-wrapper #search-panel #indexedsearchbox form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #ffffff;
}
header .header-wrapper #search-panel #indexedsearchbox form input:-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
}
header .header-wrapper #search-panel #indexedsearchbox form input.searchbox-button {
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #ffffff;
  padding: 3px 25px 3px 25px;
  font-size: 14px;
  background: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 200;
  float: right;
  cursor: pointer;
  width: auto;
  position: absolute;
  right: 0;
  margin-top: 9px;
  border-left: solid 5px #ffffff;
}
header .header-wrapper #search-panel #indexedsearchbox form input.searchbox-button:hover {
  opacity: 0.8;
}
header .header-wrapper #search-panel #indexedsearchbox form input.searchbox-button:focus {
  outline: none;
}
header .header-wrapper #search-panel #indexedsearchbox form input.searchbox-sword {
  width: 100%;
  border: solid 2px #ffffff;
  background: none;
  padding: 10px 150px 10px 25px;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
header .header-wrapper #search-panel #indexedsearchbox form input.searchbox-sword:focus {
  outline: none;
}
@media only screen and (max-width: 735px) {
  header .header-wrapper #search-panel #indexedsearchbox {
    width: 80%;
  }
}
.tx-indexedsearch-searchbox {
  margin-bottom: 10px;
}
.tx-indexedsearch-searchbox form fieldset {
  border: none;
  padding: 0;
}
.tx-indexedsearch-searchbox form fieldset legend {
  display: none;
}
.tx-indexedsearch-searchbox form fieldset .tx-indexedsearch-form {
  color: #333333;
  display: inline-block;
  float: left;
}
.tx-indexedsearch-searchbox form fieldset .tx-indexedsearch-form input,
.tx-indexedsearch-searchbox form fieldset .tx-indexedsearch-form label {
  padding: 10px 10px;
  color: #7c7c7c;
  border-radius: 0;
  border: none;
  font-size: 16px;
  font-family: 'Montserrat', "Arial", sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
.tx-indexedsearch-searchbox form fieldset .tx-indexedsearch-form input:focus,
.tx-indexedsearch-searchbox form fieldset .tx-indexedsearch-form label:focus {
  outline: none;
}
@media only screen and (max-width: 735px) {
  .tx-indexedsearch-searchbox form fieldset .tx-indexedsearch-form input,
  .tx-indexedsearch-searchbox form fieldset .tx-indexedsearch-form label {
    min-width: 100px;
  }
}
@media only screen and (max-width: 650px) {
  .tx-indexedsearch-searchbox form fieldset .tx-indexedsearch-form input,
  .tx-indexedsearch-searchbox form fieldset .tx-indexedsearch-form label {
    margin-left: 0;
  }
}
.tx-indexedsearch-searchbox form fieldset .tx-indexedsearch-form label {
  padding: 0;
}
@media only screen and (max-width: 650px) {
  .tx-indexedsearch-searchbox form fieldset .tx-indexedsearch-form label {
    display: none;
  }
}
.tx-indexedsearch-searchbox form fieldset .tx-indexedsearch-search-submit {
  display: inline-block;
  position: relative;
  overflow: hidden;
  /*				&:after {
				    background: #fff;
				    content: "";
				    height: 155px;
				    left: -75px;
				    opacity: .2;
				    position: absolute;
				    top: -50px;
				    transform: rotate(35deg);
				    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
				    width: 50px;
				    z-index: 2;
				}*/
}
.tx-indexedsearch-searchbox form fieldset .tx-indexedsearch-search-submit input {
  background: transparent;
  opacity: 0.9;
  border: none;
  cursor: pointer;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  text-transform: uppercase;
  color: #7bb82d;
  width: 78px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  top: -1px;
  position: relative;
  margin-left: 10px;
  margin-top: 5px;
  height: 25px;
  border: solid 1px #7bb82d;
  border-radius: 0;
}
.tx-indexedsearch-searchbox form fieldset .tx-indexedsearch-search-submit input:focus {
  outline: none;
}
.tx-indexedsearch-searchbox form fieldset .tx-indexedsearch-search-submit input.tx-indexedsearch-searchbox-button {
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #ffffff;
  padding: 5px 20px;
  font-size: 14px;
  background: #7bb82d;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 300;
  cursor: pointer;
  margin-left: 20px;
  width: auto;
  height: auto;
  -webkit-box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.15);
}
.tx-indexedsearch-searchbox form fieldset .tx-indexedsearch-search-submit:hover :after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
ul.tx-indexedsearch-browsebox {
  display: inline-block;
  padding-left: 0 !important;
}
ul.tx-indexedsearch-browsebox li {
  padding-left: 0 !important;
  float: left;
  margin-right: 20px;
  margin-bottom: 10px !important;
  font-family: 'Montserrat', "Arial", sans-serif, 'Material Icons';
}
ul.tx-indexedsearch-browsebox li:before {
  content: "" !important;
  margin-left: 0 !important;
  font-size: 0 !important;
}
ul.tx-indexedsearch-browsebox li a {
  color: #7c7c7c;
  cursor: pointer;
  text-transform: uppercase;
}
.tx-indexedsearch-res {
  border-bottom: solid 1px #dfdfdf;
  padding: 20px 0;
}
.tx-indexedsearch-res:last-child {
  border-bottom: none;
}
.tx-indexedsearch-res h3 {
  text-align: left !important;
  margin-bottom: 5px;
  display: inline-block;
}
.tx-indexedsearch-res h3 a {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 30px;
  color: #7bb82d;
  font-weight: 400;
  margin-top: 5px;
  text-transform: uppercase;
}
.tx-indexedsearch-res h3 a:after {
  content: "";
  width: 0;
  height: 2px;
  background: #7bb82d;
  display: block;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
.tx-indexedsearch-res h3 a:hover:after {
  width: 100%;
}
.tx-indexedsearch-res.none {
  border-bottom: none;
  padding-bottom: 30px;
}
@supports (-ms-ime-align:auto) {
  @media only screen and (max-width: 735px) {
    header .header .main-header #search-panel #indexedsearchbox form input.searchbox-button {
      padding: 9px 30px 9px 17px!important;
    }
  }
  @media only screen and (max-width: 735px) {
    header .header .main-header #search-panel #indexedsearchbox form input.searchbox-sword {
      width: 70% !important;
    }
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  header .header .branding img {
    border: none !important;
  }
}
@media screen and (-ms-high-contrast: active) and only screen and (max-width: 735px), (-ms-high-contrast: none) and only screen and (max-width: 735px) {
  header .header .main-header #search-panel #indexedsearchbox form input.searchbox-button {
    padding: 9px 30px 9px 17px!important;
  }
}
@media screen and (-ms-high-contrast: active) and only screen and (max-width: 735px), (-ms-high-contrast: none) and only screen and (max-width: 735px) {
  header .header .main-header #search-panel #indexedsearchbox form input.searchbox-sword {
    width: 70% !important;
  }
}
/*Changes: 20180109*/
.img-slideshow .slide .header_slideshow_content.align-center .text {
  width: auto;
  float: none;
  right: auto;
}
.labelactive {
  top: -8px;
  left: 0px;
  font-size: 14px;
}
.searchblade-width {
  width: 100%;
  max-width: 600px;
  /*	@media only screen and (max-width: @breakpoint-5) {
		width: 90%;
	}*/
}
.submit-style {
  background-color: #7bb82d;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  align-items: center;
  position: relative;
}
.submit-style input {
  padding: 10px 10px;
  color: #ffffff;
  border-radius: 0;
  border: none;
  font-size: 16px;
  font-family: 'Montserrat', "Arial", sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
.submit-style input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffffff;
}
.submit-style input::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
}
.submit-style input:-ms-input-placeholder {
  /* IE 10+ */
  color: #ffffff;
}
.submit-style input:-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
}
.submit-style .searchbox-button {
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #ffffff;
  padding: 3px 25px 3px 25px;
  font-size: 14px;
  background: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 200;
  float: right;
  cursor: pointer;
  width: auto;
  position: absolute;
  right: 0;
  margin-top: 9px;
  border-left: solid 5px #ffffff;
  border: none;
  position: relative;
  margin-top: 0;
  width: 100%;
}
.submit-style .searchbox-button:hover {
  opacity: 0.8;
}
.submit-style .searchbox-button:focus {
  outline: none;
}
@media only screen and (max-width: 650px) {
  .submit-style .searchbox-button {
    text-indent: -9999px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .submit-style:before {
    content: '\e8b6';
    font-family: 'Material Icons';
    color: #FFF;
    font-size: 18px;
    padding: 0 15px;
  }
}
.indexedsearchbox-style {
  width: 100%;
  max-width: 600px;
  /*	@media only screen and (max-width: @breakpoint-5) {
		width: 90%;
	}*/
  margin: 0 auto;
  background: #FFF;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 10px;
  overflow: visible;
}
.indexedsearchbox-style #indexedsearch,
.indexedsearchbox-style #tx_indexedsearch {
  display: flex;
  float: none;
  overflow: visible;
}
.indexedsearchbox-style #indexedsearch > input,
.indexedsearchbox-style #tx_indexedsearch > input {
  display: none;
}
.indexedsearchbox-style #indexedsearch .search-col,
.indexedsearchbox-style #tx_indexedsearch .search-col {
  margin-left: 10px;
  display: flex;
}
.indexedsearchbox-style #indexedsearch .search-col.searchblade,
.indexedsearchbox-style #tx_indexedsearch .search-col.searchblade {
  flex: 1 1 auto;
  position: relative;
  overflow: visible;
}
.indexedsearchbox-style #indexedsearch .search-col.searchblade .searchbox-sword,
.indexedsearchbox-style #tx_indexedsearch .search-col.searchblade .searchbox-sword {
  width: 100%;
  position: relative;
  padding: 20px 10px 5px 0;
  border: none;
  border-bottom: 2px solid #CCC;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  text-transform: none;
  font-size: 14px;
  /*margin-left: 5px;*/
  color: #7c7c7c;
  z-index: 100;
}
.indexedsearchbox-style #indexedsearch .search-col.searchblade .searchbox-sword:focus ~ .bottom-line,
.indexedsearchbox-style #tx_indexedsearch .search-col.searchblade .searchbox-sword:focus ~ .bottom-line {
  width: 100%;
}
.indexedsearchbox-style #indexedsearch .search-col.searchblade .searchbox-sword:focus ~ label,
.indexedsearchbox-style #tx_indexedsearch .search-col.searchblade .searchbox-sword:focus ~ label {
  top: -8px;
  left: 0px;
  font-size: 14px;
}
.indexedsearchbox-style #indexedsearch .search-col.searchblade label,
.indexedsearchbox-style #tx_indexedsearch .search-col.searchblade label {
  font-size: 14px;
  font-family: 'Montserrat', "Arial", sans-serif;
  position: absolute;
  left: 0px;
  top: 11px;
  color: #7bb82d;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  z-index: 1;
}
.indexedsearchbox-style #indexedsearch .search-col.searchblade label.active,
.indexedsearchbox-style #tx_indexedsearch .search-col.searchblade label.active {
  top: -8px;
  left: 0px;
  font-size: 14px;
}
.indexedsearchbox-style #indexedsearch .search-col.searchblade .bottom-line,
.indexedsearchbox-style #tx_indexedsearch .search-col.searchblade .bottom-line {
  background: #7bb82d;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  z-index: 200;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.indexedsearchbox-style #indexedsearch .search-col.submit,
.indexedsearchbox-style #tx_indexedsearch .search-col.submit {
  background-color: #7bb82d;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  align-items: center;
  position: relative;
  /*margin: 0 0 0 15px;*/
}
.indexedsearchbox-style #indexedsearch .search-col.submit input,
.indexedsearchbox-style #tx_indexedsearch .search-col.submit input {
  padding: 10px 10px;
  color: #ffffff;
  border-radius: 0;
  border: none;
  font-size: 16px;
  font-family: 'Montserrat', "Arial", sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
.indexedsearchbox-style #indexedsearch .search-col.submit input::-webkit-input-placeholder,
.indexedsearchbox-style #tx_indexedsearch .search-col.submit input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffffff;
}
.indexedsearchbox-style #indexedsearch .search-col.submit input::-moz-placeholder,
.indexedsearchbox-style #tx_indexedsearch .search-col.submit input::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
}
.indexedsearchbox-style #indexedsearch .search-col.submit input:-ms-input-placeholder,
.indexedsearchbox-style #tx_indexedsearch .search-col.submit input:-ms-input-placeholder {
  /* IE 10+ */
  color: #ffffff;
}
.indexedsearchbox-style #indexedsearch .search-col.submit input:-moz-placeholder,
.indexedsearchbox-style #tx_indexedsearch .search-col.submit input:-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
}
.indexedsearchbox-style #indexedsearch .search-col.submit .searchbox-button,
.indexedsearchbox-style #tx_indexedsearch .search-col.submit .searchbox-button {
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #ffffff;
  padding: 3px 25px 3px 25px;
  font-size: 14px;
  background: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 200;
  float: right;
  cursor: pointer;
  width: auto;
  position: absolute;
  right: 0;
  margin-top: 9px;
  border-left: solid 5px #ffffff;
  border: none;
  position: relative;
  margin-top: 0;
  width: 100%;
}
.indexedsearchbox-style #indexedsearch .search-col.submit .searchbox-button:hover,
.indexedsearchbox-style #tx_indexedsearch .search-col.submit .searchbox-button:hover {
  opacity: 0.8;
}
.indexedsearchbox-style #indexedsearch .search-col.submit .searchbox-button:focus,
.indexedsearchbox-style #tx_indexedsearch .search-col.submit .searchbox-button:focus {
  outline: none;
}
@media only screen and (max-width: 650px) {
  .indexedsearchbox-style #indexedsearch .search-col.submit .searchbox-button,
  .indexedsearchbox-style #tx_indexedsearch .search-col.submit .searchbox-button {
    text-indent: -9999px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .indexedsearchbox-style #indexedsearch .search-col.submit:before,
  .indexedsearchbox-style #tx_indexedsearch .search-col.submit:before {
    content: '\e8b6';
    font-family: 'Material Icons';
    color: #FFF;
    font-size: 18px;
    padding: 0 15px;
  }
}
header .header,
header .header-wrapper {
  /*Limiting to Slider-Content*/
}
header .header #search-panel #indexedsearchbox,
header .header-wrapper #search-panel #indexedsearchbox {
  width: 100%;
  max-width: 600px;
  /*	@media only screen and (max-width: @breakpoint-5) {
		width: 90%;
	}*/
  margin: 0 auto;
  background: #FFF;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 10px;
  overflow: visible;
}
header .header #search-panel #indexedsearchbox #indexedsearch,
header .header-wrapper #search-panel #indexedsearchbox #indexedsearch,
header .header #search-panel #indexedsearchbox #tx_indexedsearch,
header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch {
  display: flex;
  float: none;
  overflow: visible;
}
header .header #search-panel #indexedsearchbox #indexedsearch > input,
header .header-wrapper #search-panel #indexedsearchbox #indexedsearch > input,
header .header #search-panel #indexedsearchbox #tx_indexedsearch > input,
header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch > input {
  display: none;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col,
header .header-wrapper #search-panel #indexedsearchbox #indexedsearch .search-col,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col,
header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch .search-col {
  margin-left: 10px;
  display: flex;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade,
header .header-wrapper #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade,
header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade {
  flex: 1 1 auto;
  position: relative;
  overflow: visible;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade .searchbox-sword,
header .header-wrapper #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade .searchbox-sword,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade .searchbox-sword,
header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade .searchbox-sword {
  width: 100%;
  position: relative;
  padding: 20px 10px 5px 0;
  border: none;
  border-bottom: 2px solid #CCC;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  text-transform: none;
  font-size: 14px;
  /*margin-left: 5px;*/
  color: #7c7c7c;
  z-index: 100;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade .searchbox-sword:focus ~ .bottom-line,
header .header-wrapper #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade .searchbox-sword:focus ~ .bottom-line,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade .searchbox-sword:focus ~ .bottom-line,
header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade .searchbox-sword:focus ~ .bottom-line {
  width: 100%;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade .searchbox-sword:focus ~ label,
header .header-wrapper #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade .searchbox-sword:focus ~ label,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade .searchbox-sword:focus ~ label,
header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade .searchbox-sword:focus ~ label {
  top: -8px;
  left: 0px;
  font-size: 14px;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade label,
header .header-wrapper #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade label,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade label,
header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade label {
  font-size: 14px;
  font-family: 'Montserrat', "Arial", sans-serif;
  position: absolute;
  left: 0px;
  top: 11px;
  color: #7bb82d;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  z-index: 1;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade label.active,
header .header-wrapper #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade label.active,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade label.active,
header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade label.active {
  top: -8px;
  left: 0px;
  font-size: 14px;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade .bottom-line,
header .header-wrapper #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade .bottom-line,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade .bottom-line,
header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade .bottom-line {
  background: #7bb82d;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  z-index: 200;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit,
header .header-wrapper #search-panel #indexedsearchbox #indexedsearch .search-col.submit,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit,
header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit {
  background-color: #7bb82d;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  align-items: center;
  position: relative;
  /*margin: 0 0 0 15px;*/
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit input,
header .header-wrapper #search-panel #indexedsearchbox #indexedsearch .search-col.submit input,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit input,
header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit input {
  padding: 10px 10px;
  color: #ffffff;
  border-radius: 0;
  border: none;
  font-size: 16px;
  font-family: 'Montserrat', "Arial", sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit input::-webkit-input-placeholder,
header .header-wrapper #search-panel #indexedsearchbox #indexedsearch .search-col.submit input::-webkit-input-placeholder,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit input::-webkit-input-placeholder,
header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffffff;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit input::-moz-placeholder,
header .header-wrapper #search-panel #indexedsearchbox #indexedsearch .search-col.submit input::-moz-placeholder,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit input::-moz-placeholder,
header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit input::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit input:-ms-input-placeholder,
header .header-wrapper #search-panel #indexedsearchbox #indexedsearch .search-col.submit input:-ms-input-placeholder,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit input:-ms-input-placeholder,
header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit input:-ms-input-placeholder {
  /* IE 10+ */
  color: #ffffff;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit input:-moz-placeholder,
header .header-wrapper #search-panel #indexedsearchbox #indexedsearch .search-col.submit input:-moz-placeholder,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit input:-moz-placeholder,
header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit input:-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit .searchbox-button,
header .header-wrapper #search-panel #indexedsearchbox #indexedsearch .search-col.submit .searchbox-button,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit .searchbox-button,
header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit .searchbox-button {
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #ffffff;
  padding: 3px 25px 3px 25px;
  font-size: 14px;
  background: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 200;
  float: right;
  cursor: pointer;
  width: auto;
  position: absolute;
  right: 0;
  margin-top: 9px;
  border-left: solid 5px #ffffff;
  border: none;
  position: relative;
  margin-top: 0;
  width: 100%;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit .searchbox-button:hover,
header .header-wrapper #search-panel #indexedsearchbox #indexedsearch .search-col.submit .searchbox-button:hover,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit .searchbox-button:hover,
header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit .searchbox-button:hover {
  opacity: 0.8;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit .searchbox-button:focus,
header .header-wrapper #search-panel #indexedsearchbox #indexedsearch .search-col.submit .searchbox-button:focus,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit .searchbox-button:focus,
header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit .searchbox-button:focus {
  outline: none;
}
@media only screen and (max-width: 650px) {
  header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit .searchbox-button,
  header .header-wrapper #search-panel #indexedsearchbox #indexedsearch .search-col.submit .searchbox-button,
  header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit .searchbox-button,
  header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit .searchbox-button {
    text-indent: -9999px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit:before,
  header .header-wrapper #search-panel #indexedsearchbox #indexedsearch .search-col.submit:before,
  header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit:before,
  header .header-wrapper #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit:before {
    content: '\e8b6';
    font-family: 'Material Icons';
    color: #FFF;
    font-size: 18px;
    padding: 0 15px;
  }
}
header .header #search-panel {
  padding: 0 30px;
}
header .header #search-panel #indexedsearchbox {
  /*	@media only screen and (max-width: @breakpoint-5) {
		width: 90%;
	}*/
  margin: 0 auto;
  background: #FFF;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  overflow: visible;
  width: 100%;
  max-width: 600px;
  /*	@media only screen and (max-width: @breakpoint-5) {
		width: 90%;
	}*/
  margin: 0;
  padding: 10px;
}
header .header #search-panel #indexedsearchbox #indexedsearch,
header .header #search-panel #indexedsearchbox #tx_indexedsearch {
  display: flex;
  float: none;
  overflow: visible;
}
header .header #search-panel #indexedsearchbox #indexedsearch > input,
header .header #search-panel #indexedsearchbox #tx_indexedsearch > input {
  display: none;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col {
  margin-left: 10px;
  display: flex;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade {
  flex: 1 1 auto;
  position: relative;
  overflow: visible;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade .searchbox-sword,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade .searchbox-sword {
  width: 100%;
  position: relative;
  padding: 20px 10px 5px 0;
  border: none;
  border-bottom: 2px solid #CCC;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  text-transform: none;
  font-size: 14px;
  /*margin-left: 5px;*/
  color: #7c7c7c;
  z-index: 100;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade .searchbox-sword:focus ~ .bottom-line,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade .searchbox-sword:focus ~ .bottom-line {
  width: 100%;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade .searchbox-sword:focus ~ label,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade .searchbox-sword:focus ~ label {
  top: -8px;
  left: 0px;
  font-size: 14px;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade label,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade label {
  font-size: 14px;
  font-family: 'Montserrat', "Arial", sans-serif;
  position: absolute;
  left: 0px;
  top: 11px;
  color: #7bb82d;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  z-index: 1;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade label.active,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade label.active {
  top: -8px;
  left: 0px;
  font-size: 14px;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.searchblade .bottom-line,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.searchblade .bottom-line {
  background: #7bb82d;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  z-index: 200;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit {
  background-color: #7bb82d;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  align-items: center;
  position: relative;
  /*margin: 0 0 0 15px;*/
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit input,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit input {
  padding: 10px 10px;
  color: #ffffff;
  border-radius: 0;
  border: none;
  font-size: 16px;
  font-family: 'Montserrat', "Arial", sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit input::-webkit-input-placeholder,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffffff;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit input::-moz-placeholder,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit input::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit input:-ms-input-placeholder,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit input:-ms-input-placeholder {
  /* IE 10+ */
  color: #ffffff;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit input:-moz-placeholder,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit input:-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit .searchbox-button,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit .searchbox-button {
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #ffffff;
  padding: 3px 25px 3px 25px;
  font-size: 14px;
  background: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 200;
  float: right;
  cursor: pointer;
  width: auto;
  position: absolute;
  right: 0;
  margin-top: 9px;
  border-left: solid 5px #ffffff;
  border: none;
  position: relative;
  margin-top: 0;
  width: 100%;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit .searchbox-button:hover,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit .searchbox-button:hover {
  opacity: 0.8;
}
header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit .searchbox-button:focus,
header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit .searchbox-button:focus {
  outline: none;
}
@media only screen and (max-width: 650px) {
  header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit .searchbox-button,
  header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit .searchbox-button {
    text-indent: -9999px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  header .header #search-panel #indexedsearchbox #indexedsearch .search-col.submit:before,
  header .header #search-panel #indexedsearchbox #tx_indexedsearch .search-col.submit:before {
    content: '\e8b6';
    font-family: 'Material Icons';
    color: #FFF;
    font-size: 18px;
    padding: 0 15px;
  }
}
header .header #search-panel #indexedsearchbox .search-col.submit {
  background-color: #7bb82d;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  align-items: center;
  position: relative;
}
header .header #search-panel #indexedsearchbox .search-col.submit input {
  padding: 10px 10px;
  color: #ffffff;
  border-radius: 0;
  border: none;
  font-size: 16px;
  font-family: 'Montserrat', "Arial", sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
header .header #search-panel #indexedsearchbox .search-col.submit input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffffff;
}
header .header #search-panel #indexedsearchbox .search-col.submit input::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
}
header .header #search-panel #indexedsearchbox .search-col.submit input:-ms-input-placeholder {
  /* IE 10+ */
  color: #ffffff;
}
header .header #search-panel #indexedsearchbox .search-col.submit input:-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
}
header .header #search-panel #indexedsearchbox .search-col.submit .searchbox-button {
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #ffffff;
  padding: 3px 25px 3px 25px;
  font-size: 14px;
  background: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 200;
  float: right;
  cursor: pointer;
  width: auto;
  position: absolute;
  right: 0;
  margin-top: 9px;
  border-left: solid 5px #ffffff;
  border: none;
  position: relative;
  margin-top: 0;
  width: 100%;
}
header .header #search-panel #indexedsearchbox .search-col.submit .searchbox-button:hover {
  opacity: 0.8;
}
header .header #search-panel #indexedsearchbox .search-col.submit .searchbox-button:focus {
  outline: none;
}
@media only screen and (max-width: 650px) {
  header .header #search-panel #indexedsearchbox .search-col.submit .searchbox-button {
    text-indent: -9999px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  header .header #search-panel #indexedsearchbox .search-col.submit:before {
    content: '\e8b6';
    font-family: 'Material Icons';
    color: #FFF;
    font-size: 18px;
    padding: 0 15px;
  }
}
#main .content #indexedsearchbox {
  width: 100%;
  max-width: 600px;
  /*	@media only screen and (max-width: @breakpoint-5) {
		width: 90%;
	}*/
  margin: 0 auto;
  background: #FFF;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 10px;
  overflow: visible;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  padding: 10px 0 30px 0;
}
#main .content #indexedsearchbox #indexedsearch,
#main .content #indexedsearchbox #tx_indexedsearch {
  display: flex;
  float: none;
  overflow: visible;
}
#main .content #indexedsearchbox #indexedsearch > input,
#main .content #indexedsearchbox #tx_indexedsearch > input {
  display: none;
}
#main .content #indexedsearchbox #indexedsearch .search-col,
#main .content #indexedsearchbox #tx_indexedsearch .search-col {
  margin-left: 10px;
  display: flex;
}
#main .content #indexedsearchbox #indexedsearch .search-col.searchblade,
#main .content #indexedsearchbox #tx_indexedsearch .search-col.searchblade {
  flex: 1 1 auto;
  position: relative;
  overflow: visible;
}
#main .content #indexedsearchbox #indexedsearch .search-col.searchblade .searchbox-sword,
#main .content #indexedsearchbox #tx_indexedsearch .search-col.searchblade .searchbox-sword {
  width: 100%;
  position: relative;
  padding: 20px 10px 5px 0;
  border: none;
  border-bottom: 2px solid #CCC;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  text-transform: none;
  font-size: 14px;
  /*margin-left: 5px;*/
  color: #7c7c7c;
  z-index: 100;
}
#main .content #indexedsearchbox #indexedsearch .search-col.searchblade .searchbox-sword:focus ~ .bottom-line,
#main .content #indexedsearchbox #tx_indexedsearch .search-col.searchblade .searchbox-sword:focus ~ .bottom-line {
  width: 100%;
}
#main .content #indexedsearchbox #indexedsearch .search-col.searchblade .searchbox-sword:focus ~ label,
#main .content #indexedsearchbox #tx_indexedsearch .search-col.searchblade .searchbox-sword:focus ~ label {
  top: -8px;
  left: 0px;
  font-size: 14px;
}
#main .content #indexedsearchbox #indexedsearch .search-col.searchblade label,
#main .content #indexedsearchbox #tx_indexedsearch .search-col.searchblade label {
  font-size: 14px;
  font-family: 'Montserrat', "Arial", sans-serif;
  position: absolute;
  left: 0px;
  top: 11px;
  color: #7bb82d;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  z-index: 1;
}
#main .content #indexedsearchbox #indexedsearch .search-col.searchblade label.active,
#main .content #indexedsearchbox #tx_indexedsearch .search-col.searchblade label.active {
  top: -8px;
  left: 0px;
  font-size: 14px;
}
#main .content #indexedsearchbox #indexedsearch .search-col.searchblade .bottom-line,
#main .content #indexedsearchbox #tx_indexedsearch .search-col.searchblade .bottom-line {
  background: #7bb82d;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  z-index: 200;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
#main .content #indexedsearchbox #indexedsearch .search-col.submit,
#main .content #indexedsearchbox #tx_indexedsearch .search-col.submit {
  background-color: #7bb82d;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  align-items: center;
  position: relative;
  /*margin: 0 0 0 15px;*/
}
#main .content #indexedsearchbox #indexedsearch .search-col.submit input,
#main .content #indexedsearchbox #tx_indexedsearch .search-col.submit input {
  padding: 10px 10px;
  color: #ffffff;
  border-radius: 0;
  border: none;
  font-size: 16px;
  font-family: 'Montserrat', "Arial", sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
#main .content #indexedsearchbox #indexedsearch .search-col.submit input::-webkit-input-placeholder,
#main .content #indexedsearchbox #tx_indexedsearch .search-col.submit input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffffff;
}
#main .content #indexedsearchbox #indexedsearch .search-col.submit input::-moz-placeholder,
#main .content #indexedsearchbox #tx_indexedsearch .search-col.submit input::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
}
#main .content #indexedsearchbox #indexedsearch .search-col.submit input:-ms-input-placeholder,
#main .content #indexedsearchbox #tx_indexedsearch .search-col.submit input:-ms-input-placeholder {
  /* IE 10+ */
  color: #ffffff;
}
#main .content #indexedsearchbox #indexedsearch .search-col.submit input:-moz-placeholder,
#main .content #indexedsearchbox #tx_indexedsearch .search-col.submit input:-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
}
#main .content #indexedsearchbox #indexedsearch .search-col.submit .searchbox-button,
#main .content #indexedsearchbox #tx_indexedsearch .search-col.submit .searchbox-button {
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #ffffff;
  padding: 3px 25px 3px 25px;
  font-size: 14px;
  background: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 200;
  float: right;
  cursor: pointer;
  width: auto;
  position: absolute;
  right: 0;
  margin-top: 9px;
  border-left: solid 5px #ffffff;
  border: none;
  position: relative;
  margin-top: 0;
  width: 100%;
}
#main .content #indexedsearchbox #indexedsearch .search-col.submit .searchbox-button:hover,
#main .content #indexedsearchbox #tx_indexedsearch .search-col.submit .searchbox-button:hover {
  opacity: 0.8;
}
#main .content #indexedsearchbox #indexedsearch .search-col.submit .searchbox-button:focus,
#main .content #indexedsearchbox #tx_indexedsearch .search-col.submit .searchbox-button:focus {
  outline: none;
}
@media only screen and (max-width: 650px) {
  #main .content #indexedsearchbox #indexedsearch .search-col.submit .searchbox-button,
  #main .content #indexedsearchbox #tx_indexedsearch .search-col.submit .searchbox-button {
    text-indent: -9999px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  #main .content #indexedsearchbox #indexedsearch .search-col.submit:before,
  #main .content #indexedsearchbox #tx_indexedsearch .search-col.submit:before {
    content: '\e8b6';
    font-family: 'Material Icons';
    color: #FFF;
    font-size: 18px;
    padding: 0 15px;
  }
}
#main .content #indexedsearchbox #tx_indexedsearch > legend {
  display: none;
}
#main .content #indexedsearchbox #tx_indexedsearch #tx-indexedsearch-searchbox-sword {
  background: none;
}
#main .content #indexedsearchbox #tx_indexedsearch .searchblade {
  margin-left: 0;
}
.calendarize .link {
  margin-top: 0;
}
.calendarize > div {
  margin-top: 1.5rem;
}
.calendarize > div:first-child {
  margin-top: 0;
}
.calendarize .panel .btn-group > a {
  border: solid 1px #7c7c7c;
  border-radius: 100px;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  margin-top: 3rem;
}
.calendarize .panel .btn-group > a i {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 17px;
}
.calendarize .calendarize-item .info {
  font-family: 'Montserrat', "Arial", sans-serif;
  font-size: 14px;
  line-height: 20px;
  border-left: solid #7bb82d 5px;
  padding-left: 10px;
}
.calendarize .calendarize-item h4 {
  text-transform: uppercase;
  padding-left: 15px;
  cursor: pointer;
  margin-top: 10px;
  text-decoration: none;
  color: #333333;
  display: inline-block;
  font-family: 'Montserrat', "Arial", sans-serif;
}
.calendarize .calendarize-item h4 a {
  color: #333333;
  display: inline-block;
}
.calendarize table {
  width: 100%;
  border-spacing: 0px;
  font-family: 'Montserrat', "Arial", sans-serif;
}
.calendarize table thead tr th {
  font-size: 20px;
  line-height: 26px;
  margin: 0;
  font-weight: 400;
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #333333;
  vertical-align: baseline;
  position: relative;
  margin-top: 0.5rem;
  top: -0.14em;
  letter-spacing: 1px;
  text-transform: uppercase;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  /*	-ms-word-break: break-all;
         word-break: break-all;
    
         // Non standard for webkit
         word-break: break-word;
    
    -webkit-hyphens: auto;
       -moz-hyphens: auto;
            hyphens: auto;*/
  padding-bottom: 70px;
}
@media only screen and (max-width: 1200px) {
  .calendarize table thead tr th {
    font-size: 18px;
    line-height: 21px;
  }
}
@media only screen and (max-width: 735px) {
  .calendarize table thead tr th {
    font-size: 18px;
    line-height: 21px;
  }
}
.calendarize table thead tr th a {
  padding: 0 30px;
  text-decoration: none;
  color: #7c7c7c;
  display: inline-block;
}
.calendarize table thead tr th a i {
  font-size: 20px;
  position: relative;
  top: 3px;
  opacity: 0.6;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
.calendarize table thead tr th a:hover i {
  opacity: 1;
}
.calendarize table tbody tr td {
  width: 14%;
  height: 150px;
  border-right: solid 1px #dfdfdf;
  border-bottom: solid 1px #dfdfdf;
  vertical-align: top;
  padding: 15px;
}
.calendarize table tbody tr td:last-child {
  border-right: none;
}
.calendarize table tbody tr td .date {
  margin-bottom: 15px;
}
.calendarize table tbody tr td.not-current-monthday .date {
  opacity: 0.6;
}
.calendarize table tbody tr td.not-current-monthday ul.events li h4 {
  opacity: 0.6;
}
.calendarize table tbody tr td ul.events li {
  list-style: none;
  position: relative;
  display: inline-block;
}
.calendarize table tbody tr td ul.events li a {
  color: #333333;
  display: inline-block;
}
.calendarize table tbody tr td ul.events li h4 {
  text-transform: uppercase;
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  border-left: solid #7bb82d 5px;
  padding-left: 10px;
}
.calendarize table tbody tr td ul.events li h4 i {
  display: none;
}
.calendarize table tbody tr td ul.events li .mobil {
  display: none;
  margin-top: 10px;
}
.calendarize table tbody tr td ul.events li .info {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 100;
  background: #f5f5f5;
  padding: 15px;
  width: 200px;
  left: 100%;
  margin-left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-shadow: 1px 2px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 2px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 2px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  font-size: 14px;
  line-height: 18px;
}
.calendarize table tbody tr td ul.events li .info:after,
.calendarize table tbody tr td ul.events li .info:before {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.calendarize table tbody tr td ul.events li .info:after {
  border-color: rgba(245, 245, 245, 0);
  border-right-color: #f5f5f5;
  border-width: 15px;
  margin-top: -15px;
}
.calendarize table tbody tr td ul.events li .info:before {
  border-color: rgba(0, 0, 0, 0);
  border-right-color: #;
  border-width: 21px;
  margin-top: -21px;
}
.calendarize table tbody tr td ul.events li .info > p {
  display: none;
}
.calendarize table tbody tr td ul.events li .info > span {
  display: inline-block;
}
.calendarize table tbody tr td ul.events li .info > span:last-child {
  margin-top: 10px;
}
.calendarize table tbody tr td ul.events li:hover > .info {
  opacity: 1;
  visibility: visible;
}
.calendarize table tbody tr:last-child td {
  border-bottom: none;
}
@media only screen and (max-width: 1024px) {
  .calendarize .table tbody tr td ul.events li h4 {
    font-size: 0;
  }
  .calendarize .table tbody tr td ul.events li h4 i {
    display: block;
  }
  .calendarize .table tbody tr td ul.events li .info > p {
    display: block;
  }
  .calendarize .table tbody tr td ul.events li .info > span {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 650px) {
  .calendarize .table tbody tr:last-child td {
    border-bottom: solid 1px #dfdfdf;
  }
  .calendarize .table tbody tr td {
    width: 100%;
    display: block;
    border-right: none;
    height: auto;
  }
  .calendarize .table tbody tr td:last-child {
    border-bottom: none;
  }
  .calendarize .table tbody tr td ul.events li h4 {
    font-size: 14px;
  }
  .calendarize .table tbody tr td ul.events li h4 i {
    display: none;
  }
  .calendarize .table tbody tr td ul.events li .mobil {
    display: block;
  }
  .calendarize .table tbody tr td ul.events li .info {
    display: none;
  }
  .calendarize .table tbody tr td ul.events li .info > p {
    display: block;
  }
  .calendarize .table tbody tr td ul.events li .info > span {
    margin-top: 10px;
  }
}
.container.blog .blog-content > .content {
  display: flex;
}
.container.blog .blog-content > .content > .content-wrapper {
  order: 2;
  flex: 2;
  padding-left: 40px;
}
.container.blog .blog-content > .content > .content-wrapper .inhalt-wrapper .text .textbox-inhalt:first-child {
  margin-top: 2rem !important;
}
@media only screen and (max-width: 735px) {
  .container.blog .blog-content > .content {
    flex-wrap: wrap;
  }
  .container.blog .blog-content > .content > .content-wrapper {
    flex: auto;
    margin-top: 40px;
    padding-left: 0px;
  }
}
.container.blog .blog-img {
  width: 100%;
  height: auto;
  order: 1;
  flex: 1;
}
.container.blog .blog-img .content-wrapper {
  padding: 0 !important;
}
.container.blog .blog-img .content-wrapper .img {
  margin: 0;
}
.container.blog .blog-img .content-wrapper .img img {
  width: 100%;
  height: auto;
}
.tx-blog-post-list .post {
  margin-top: 70px;
}
.tx-blog-post-list .post:first-child {
  margin-top: 0;
}
.tx-blog-post-list .post:nth-child(odd) .inhalt {
  flex-direction: row-reverse;
}
.tx-blog-post-list .post:nth-child(odd) .inhalt .teaser {
  padding: 10px 20px 0 0;
}
.tx-blog-post-list .post:nth-child(odd) .inhalt .image {
  margin: 0 20px 20px 0;
}
.tx-blog-post-list .post:nth-child(odd) .inhalt .image:after {
  right: -20px;
  bottom: -20px;
}
.tx-blog-post-list .post:nth-child(even) .inhalt .teaser {
  padding: 10px 0 0 20px;
}
.tx-blog-post-list .post:nth-child(even) .inhalt .image {
  margin: 0 20px 0 20px;
}
.tx-blog-post-list .post:nth-child(even) .inhalt .image:after {
  left: -20px;
  bottom: -20px;
}
.tx-blog-post-list .post .inhalt {
  display: flex;
}
.tx-blog-post-list .post .inhalt .image {
  flex: 1;
  max-width: 330px;
}
.tx-blog-post-list .post .inhalt .image .bild-element {
  margin-top: 0;
}
.tx-blog-post-list .post .inhalt .image .img {
  margin: 0;
  overflow: hidden;
  max-width: 330px;
}
.tx-blog-post-list .post .inhalt .image .img img {
  object-fit: cover;
  /*min-height:330px;*/
  /*max-height: 330px;*/
  max-width: 330px;
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1;
  /*min-width: 100%;*/
  background-color: #f4f4f4;
}
.tx-blog-post-list .post .inhalt .teaser {
  position: relative;
  flex: 1;
}
.tx-blog-post-list .post .inhalt .teaser a {
  color: #7c7c7c;
}
.tx-blog-post-list .post .inhalt .teaser h3 {
  font-size: 20px;
  line-height: 26px;
  margin: 0;
  font-weight: 400;
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #333333;
  vertical-align: baseline;
  position: relative;
  margin-top: 0.5rem;
  top: -0.14em;
  letter-spacing: 1px;
  text-transform: uppercase;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  /*	-ms-word-break: break-all;
         word-break: break-all;
    
         // Non standard for webkit
         word-break: break-word;
    
    -webkit-hyphens: auto;
       -moz-hyphens: auto;
            hyphens: auto;*/
  font-weight: 600;
}
@media only screen and (max-width: 1200px) {
  .tx-blog-post-list .post .inhalt .teaser h3 {
    font-size: 18px;
    line-height: 21px;
  }
}
@media only screen and (max-width: 735px) {
  .tx-blog-post-list .post .inhalt .teaser h3 {
    font-size: 18px;
    line-height: 21px;
  }
}
.tx-blog-post-list .post .inhalt .teaser h3 a {
  color: #333333;
}
.tx-blog-post-list .post .inhalt .teaser h4 {
  font-size: 20px;
  line-height: 26px;
  margin: 0;
  font-weight: 400;
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #333333;
  vertical-align: baseline;
  position: relative;
  margin-top: 0.5rem;
  top: -0.14em;
  letter-spacing: 1px;
  text-transform: uppercase;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  /*	-ms-word-break: break-all;
         word-break: break-all;
    
         // Non standard for webkit
         word-break: break-word;
    
    -webkit-hyphens: auto;
       -moz-hyphens: auto;
            hyphens: auto;*/
  font-weight: 600;
  font-style: normal;
  margin-bottom: -0.5rem;
}
@media only screen and (max-width: 1200px) {
  .tx-blog-post-list .post .inhalt .teaser h4 {
    font-size: 18px;
    line-height: 21px;
  }
}
@media only screen and (max-width: 735px) {
  .tx-blog-post-list .post .inhalt .teaser h4 {
    font-size: 18px;
    line-height: 21px;
  }
}
.tx-blog-post-list .post .inhalt .teaser .date {
  font-size: 14px;
  line-height: 20px;
}
.tx-blog-post-list .post .inhalt .teaser .date span a {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
.tx-blog-post-list .post .inhalt .teaser .date span.category-item:last-child span {
  display: none;
}
.tx-blog-post-list .post .inhalt .teaser .inhalt-wrapper {
  margin-top: 0;
}
.tx-blog-post-list .post .inhalt .teaser .textbox-inhalt {
  margin-top: 1.5rem;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.tx-blog-post-list .post .inhalt .teaser .link {
  position: absolute;
  bottom: 10px;
}
.tx-blog-post-list .post .inhalt .teaser section {
  background: none !important;
}
.tx-blog-post-list .post .inhalt .teaser section .content {
  padding: 0;
  width: auto;
}
.tx-blog-post-list .post.DAAB .inhalt .image,
.tx-blog-post-list .post.Forschung .inhalt .image,
.tx-blog-post-list .post.Termine .inhalt .image,
.tx-blog-post-list .post.Aktuelles .inhalt .image {
  position: relative;
  z-index: 2;
}
.tx-blog-post-list .post.DAAB .inhalt .image:after,
.tx-blog-post-list .post.Forschung .inhalt .image:after,
.tx-blog-post-list .post.Termine .inhalt .image:after,
.tx-blog-post-list .post.Aktuelles .inhalt .image:after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  /*min-height: 330px;*/
  /*max-height: 330px;*/
  display: block;
  background-image: url(/fileadmin/images/blog/pattern/rueckruf-pattern.png);
  background-color: #DDD;
}
.tx-blog-post-list .post.DAAB .inhalt .image:after,
.tx-blog-post-list .post.Forschung .inhalt .image:after,
.tx-blog-post-list .post.Termine .inhalt .image:after,
.tx-blog-post-list .post.Aktuelles .inhalt .image:after {
  background-image: url(/fileadmin/images/blog/pattern/allgemein-pattern.png);
  background-color: #D5E9BC;
}
.tx-blog-post-list .post.Allergien .inhalt .image {
  position: relative;
  z-index: 2;
}
.tx-blog-post-list .post.Allergien .inhalt .image:after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  /*min-height: 330px;*/
  /*max-height: 330px;*/
  display: block;
  background-image: url(/fileadmin/images/blog/pattern/rueckruf-pattern.png);
  background-color: #DDD;
}
.tx-blog-post-list .post.Allergien .inhalt .image:after {
  background-image: url(/fileadmin/images/blog/pattern/allergien-pattern.png);
  background-color: #BDE4E1;
}
.tx-blog-post-list .post.Allergie-Rückrufe .inhalt .image {
  position: relative;
  z-index: 2;
}
.tx-blog-post-list .post.Allergie-Rückrufe .inhalt .image:after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  /*min-height: 330px;*/
  /*max-height: 330px;*/
  display: block;
  background-image: url(/fileadmin/images/blog/pattern/rueckruf-pattern.png);
  background-color: #DDD;
}
.tx-blog-post-list .post.Allergie-Rückrufe .inhalt .image:after {
  background-image: url(/fileadmin/images/blog/pattern/rueckruf-pattern.png);
  background-color: #D5E9BC;
}
.tx-blog-post-list .post.Ernährung .inhalt .image {
  position: relative;
  z-index: 2;
}
.tx-blog-post-list .post.Ernährung .inhalt .image:after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  /*min-height: 330px;*/
  /*max-height: 330px;*/
  display: block;
  background-image: url(/fileadmin/images/blog/pattern/rueckruf-pattern.png);
  background-color: #DDD;
}
.tx-blog-post-list .post.Ernährung .inhalt .image {
  position: relative;
  z-index: 2;
}
.tx-blog-post-list .post.Ernährung .inhalt .image:after {
  background-image: url(/fileadmin/images/blog/pattern/ernaehrung-pattern.png);
  background-color: #fed58b;
}
.tx-blog-post-list .post.Haut .inhalt .image {
  position: relative;
  z-index: 2;
}
.tx-blog-post-list .post.Haut .inhalt .image:after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  /*min-height: 330px;*/
  /*max-height: 330px;*/
  display: block;
  background-image: url(/fileadmin/images/blog/pattern/rueckruf-pattern.png);
  background-color: #DDD;
}
.tx-blog-post-list .post.Haut .inhalt .image {
  position: relative;
  z-index: 2;
}
.tx-blog-post-list .post.Haut .inhalt .image:after {
  background-image: url(/fileadmin/images/blog/pattern/haut-pattern.png);
  background-color: #d7aed7;
}
.tx-blog-post-list .post.Kinder .inhalt .image {
  position: relative;
  z-index: 2;
}
.tx-blog-post-list .post.Kinder .inhalt .image:after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  /*min-height: 330px;*/
  /*max-height: 330px;*/
  display: block;
  background-image: url(/fileadmin/images/blog/pattern/rueckruf-pattern.png);
  background-color: #DDD;
}
.tx-blog-post-list .post.Kinder .inhalt .image:after {
  background-image: url(/fileadmin/images/blog/pattern/kinder-pattern.png);
  background-color: #D5E9BC;
}
.tx-blog-post-list .post.Atemwege .inhalt .image {
  position: relative;
  z-index: 2;
}
.tx-blog-post-list .post.Atemwege .inhalt .image:after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  /*min-height: 330px;*/
  /*max-height: 330px;*/
  display: block;
  background-image: url(/fileadmin/images/blog/pattern/rueckruf-pattern.png);
  background-color: #DDD;
}
.tx-blog-post-list .post.Atemwege .inhalt .image:after {
  background-image: url(/fileadmin/images/blog/pattern/atemwege-pattern.png);
  background-color: #a0d0ff;
}
.tx-blog-post-list .post.Corona .inhalt .image {
  position: relative;
  z-index: 2;
}
.tx-blog-post-list .post.Corona .inhalt .image:after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  /*min-height: 330px;*/
  /*max-height: 330px;*/
  display: block;
  background-image: url(/fileadmin/images/blog/pattern/rueckruf-pattern.png);
  background-color: #DDD;
}
.tx-blog-post-list .post.Corona .inhalt .image:after {
  background-image: url(/fileadmin/images/blog/pattern/atemwege-pattern.png);
  background-color: #DDD;
}
@media only screen and (max-width: 735px) {
  .tx-blog-post-list .post {
    margin-top: 12%;
  }
  .tx-blog-post-list .post:nth-child(even) .inhalt .image {
    margin: 0 0px 20px 20px;
  }
  .tx-blog-post-list .post .inhalt {
    display: block;
  }
  .tx-blog-post-list .post .inhalt .teaser:nth-child(odd),
  .tx-blog-post-list .post .inhalt .teaser:nth-child(even) {
    padding: 30px 0 0 0;
  }
  .tx-blog-post-list .post .inhalt .teaser .link {
    position: relative;
  }
  .tx-blog-post-list .post .inhalt .image,
  .tx-blog-post-list .post .inhalt .image .img,
  .tx-blog-post-list .post .inhalt .image .img img {
    max-width: 100%;
  }
}
.tx-blog-post-list .pagination {
  margin-top: 40px;
  width: 100%;
  display: none;
}
.tx-blog-post-list .pagination li {
  list-style: none;
  float: left;
  margin-right: 10px;
}
.tx-blog-post-list .pagination li.active a,
.tx-blog-post-list .pagination li:hover a {
  opacity: 1;
}
.tx-blog-post-list .pagination li.previous {
  margin-right: 30px;
}
.tx-blog-post-list .pagination li.next {
  margin-left: 20px;
}
.tx-blog-post-list .pagination li a {
  color: #7c7c7c;
  opacity: 0.7;
  font-size: 18px;
}
.tx-blog-post-list .pagination li a i {
  font-size: 17px;
  position: relative;
  top: 2px;
}
#blog-list .content > div,
.blog_categories .content > div,
.relatedarticle .content > div {
  margin-top: 50px;
}
#blog-list .content > div:first-child,
.blog_categories .content > div:first-child,
.relatedarticle .content > div:first-child {
  margin-top: 0;
}
#blog-list .tx-blog-post-list,
.blog_categories .tx-blog-post-list,
.relatedarticle .tx-blog-post-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#blog-list .tx-blog-post-list .post,
.blog_categories .tx-blog-post-list .post,
.relatedarticle .tx-blog-post-list .post {
  width: 31%;
  margin-top: 0;
}
#blog-list .tx-blog-post-list .post:nth-child(n+4),
.blog_categories .tx-blog-post-list .post:nth-child(n+4),
.relatedarticle .tx-blog-post-list .post:nth-child(n+4) {
  margin-top: 70px;
}
#blog-list .tx-blog-post-list .post .inhalt,
.blog_categories .tx-blog-post-list .post .inhalt,
.relatedarticle .tx-blog-post-list .post .inhalt {
  display: block;
}
#blog-list .tx-blog-post-list .post .inhalt .content-wrapper,
.blog_categories .tx-blog-post-list .post .inhalt .content-wrapper,
.relatedarticle .tx-blog-post-list .post .inhalt .content-wrapper {
  padding: 0 !important;
  flex: auto;
}
#blog-list .tx-blog-post-list .post .inhalt .teaser,
.blog_categories .tx-blog-post-list .post .inhalt .teaser,
.relatedarticle .tx-blog-post-list .post .inhalt .teaser {
  padding: 30px 0 70px 0px;
}
#blog-list .tx-blog-post-list .post .inhalt .image,
.blog_categories .tx-blog-post-list .post .inhalt .image,
.relatedarticle .tx-blog-post-list .post .inhalt .image {
  margin: 0 20px 20px 0;
}
#blog-list .tx-blog-post-list .post .inhalt .image:after,
.blog_categories .tx-blog-post-list .post .inhalt .image:after,
.relatedarticle .tx-blog-post-list .post .inhalt .image:after {
  right: -20px;
  bottom: -20px;
  left: auto;
}
@media only screen and (max-width: 1024px) {
  #blog-list .tx-blog-post-list .post,
  .blog_categories .tx-blog-post-list .post,
  .relatedarticle .tx-blog-post-list .post {
    width: 48%;
  }
  #blog-list .tx-blog-post-list .post .inhalt .teaser,
  .blog_categories .tx-blog-post-list .post .inhalt .teaser,
  .relatedarticle .tx-blog-post-list .post .inhalt .teaser {
    padding-bottom: 0;
  }
  #blog-list .tx-blog-post-list .post .inhalt .teaser .link,
  .blog_categories .tx-blog-post-list .post .inhalt .teaser .link,
  .relatedarticle .tx-blog-post-list .post .inhalt .teaser .link {
    position: relative;
  }
  #blog-list .tx-blog-post-list .post:nth-child(n+4),
  .blog_categories .tx-blog-post-list .post:nth-child(n+4),
  .relatedarticle .tx-blog-post-list .post:nth-child(n+4) {
    margin-top: 0px;
  }
  #blog-list .tx-blog-post-list .post:nth-child(n+3),
  .blog_categories .tx-blog-post-list .post:nth-child(n+3),
  .relatedarticle .tx-blog-post-list .post:nth-child(n+3) {
    margin-top: 70px;
  }
}
@media only screen and (max-width: 650px) {
  #blog-list .tx-blog-post-list .post,
  .blog_categories .tx-blog-post-list .post,
  .relatedarticle .tx-blog-post-list .post {
    width: 100%;
    margin-top: 40px;
  }
  #blog-list .tx-blog-post-list .post:first-child,
  .blog_categories .tx-blog-post-list .post:first-child,
  .relatedarticle .tx-blog-post-list .post:first-child {
    margin-top: 0;
  }
}
#blog-list .pagination,
.blog_categories .pagination,
.relatedarticle .pagination {
  display: block;
}
.author {
  margin-top: 15px;
  font-size: 12px;
  text-transform: uppercase;
  font-family: 'Montserrat', "Arial", sans-serif;
  display: flex;
  align-items: center;
  color: #333333;
  font-weight: 600;
}
.author:before {
  content: "";
  background: #7bb82d;
  height: 4px;
  width: 15px;
  display: block;
  margin-right: 10px;
}
.author .tx-blog-authors,
.author .tx-blog-date {
  display: inline-block;
}
/*.relatedarticle{
    .tx-blog-post-list{
        .image{
            .bild-element{
                .img{
                    height: 0;
                    padding-top: 100%;
                }
            }
        }
    }
}*/
.img-slideshow {
  width: 100%;
  margin: 0 auto;
  position: relative;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  top: 0;
  z-index: 1;
  height: 600px;
  overflow: hidden;
  -webkit-box-shadow: 0px -10px 10px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px -10px 10px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px -10px 10px 0px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 1200px) {
  .img-slideshow {
    height: 460px;
  }
}
@media only screen and (max-width: 735px) {
  .img-slideshow {
    height: auto;
    min-height: 400px;
  }
  .img-slideshow .slide {
    min-height: 400px;
    overflow: hidden;
  }
  .img-slideshow .slide .header_slideshow_content {
    margin-top: 0 !important;
  }
}
.img-slideshow .slick-dots {
  display: block;
  bottom: 30px;
}
.img-slideshow .slide.no-content .header_slideshow_content {
  display: none;
}
.img-slideshow .slide .overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  height: auto;
  width: auto !important;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.img-slideshow .slide .overlay.no-overlay {
  display: none;
}
.img-slideshow .slide .fallback {
  display: none;
}
.img-slideshow .slide .fallback.showfallback {
  display: block;
}
.img-slideshow .slide .image {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.img-slideshow .slide .header_slideshow_content {
  z-index: 10;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  position: absolute;
  color: #FFF;
  top: 51%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.img-slideshow .slide .header_slideshow_content h1,
.img-slideshow .slide .header_slideshow_content h2 {
  color: #ffffff;
  font-size: 35px;
  line-height: 43px;
  font-weight: inherit;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-top: 0;
  font-weight: 700;
  transform: scaleX(1.2);
  display: inline;
}
.img-slideshow .slide .header_slideshow_content.align-left .text {
  float: none;
}
.img-slideshow .slide .header_slideshow_content .text {
  float: right;
  right: 0;
  width: 70%;
}
.img-slideshow .slide .header_slideshow_content .text h1,
.img-slideshow .slide .header_slideshow_content .text h2 {
  hyphens: none;
}
.img-slideshow .slide .header_slideshow_content .text.color-light {
  color: #ffffff !important;
}
.img-slideshow .slide .header_slideshow_content .text.color-dark {
  color: #333333 !important;
}
@media only screen and (max-width: 1200px) {
  .img-slideshow .slide .header_slideshow_content .text {
    padding-right: 4%;
  }
}
@media only screen and (max-width: 735px) {
  .img-slideshow .slide .header_slideshow_content .text {
    float: left;
    left: 0;
    width: 100%;
  }
}
.img-slideshow .slide .header_slideshow_content .textbox-inhalt {
  margin-top: 1rem;
}
.img-slideshow .slide .header_slideshow_content .textbox-inhalt p {
  font-size: 26px;
  line-height: 35px;
  font-weight: 200;
  top: -0.20em;
}
.img-slideshow .slide .header_slideshow_content .link {
  text-align: center;
  display: inline-block;
}
.img-slideshow .slide .header_slideshow_content .link a {
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #ffffff;
  padding: 10px 40px;
  font-size: 12px;
  background: #7bb82d;
  text-transform: uppercase;
  margin-top: 1.5rem;
  display: inline-block;
  font-weight: normal;
}
.img-slideshow .slide .header_slideshow_content p {
  margin-bottom: 0;
  font-style: italic;
}
.img-slideshow .slide .header_slideshow_content.text-left {
  text-align: left;
}
.img-slideshow .slide .header_slideshow_content.text-left .text {
  float: left;
}
.img-slideshow .slide .header_slideshow_content.text-center {
  text-align: center;
}
.img-slideshow .slide .header_slideshow_content.text-center .text {
  float: none;
  margin: 0 auto;
}
.img-slideshow .slide .header_slideshow_content.text-right {
  text-align: right;
  max-width: 1200px;
}
.img-slideshow .slide .header_slideshow_content.text-right .link {
  text-align: right;
}
@media only screen and (max-width: 1333px) {
  .img-slideshow .slide .header_slideshow_content.text-right {
    padding: 0 5%;
  }
}
.img-slideshow .slide .header_slideshow_content .header_slideshow_logo {
  position: relative;
}
.img-slideshow .slide .header_slideshow_content .header_slideshow_logo.klein img,
.img-slideshow .slide .header_slideshow_content .header_slideshow_logo.mittel img,
.img-slideshow .slide .header_slideshow_content .header_slideshow_logo.gross img {
  max-width: 100px;
  max-height: auto;
  height: auto;
  width: 100px;
}
@media only screen and (max-width: 735px) {
  .img-slideshow .slide .header_slideshow_content .header_slideshow_logo.klein img,
  .img-slideshow .slide .header_slideshow_content .header_slideshow_logo.mittel img,
  .img-slideshow .slide .header_slideshow_content .header_slideshow_logo.gross img {
    max-width: 60px;
    width: 60px;
  }
}
@media only screen and (max-width: 450px) {
  .img-slideshow .slide .header_slideshow_content .header_slideshow_logo.klein img,
  .img-slideshow .slide .header_slideshow_content .header_slideshow_logo.mittel img,
  .img-slideshow .slide .header_slideshow_content .header_slideshow_logo.gross img {
    max-width: 40px;
    width: 40px;
  }
}
.img-slideshow .slide .header_slideshow_content .header_slideshow_logo.mittel img {
  max-width: 160px;
  width: 160px;
}
@media only screen and (max-width: 1024px) {
  .img-slideshow .slide .header_slideshow_content .header_slideshow_logo.mittel img {
    max-width: 100px;
    width: 100px;
  }
}
@media only screen and (max-width: 735px) {
  .img-slideshow .slide .header_slideshow_content .header_slideshow_logo.mittel img {
    max-width: 60px;
    width: 60px;
  }
}
@media only screen and (max-width: 450px) {
  .img-slideshow .slide .header_slideshow_content .header_slideshow_logo.mittel img {
    max-width: 40px;
    width: 40px;
  }
}
.img-slideshow .slide .header_slideshow_content .header_slideshow_logo.gross img {
  max-width: 220px;
  width: 220px;
}
@media only screen and (max-width: 1024px) {
  .img-slideshow .slide .header_slideshow_content .header_slideshow_logo.gross img {
    max-width: 160px;
    width: 160px;
  }
}
@media only screen and (max-width: 900px) {
  .img-slideshow .slide .header_slideshow_content .header_slideshow_logo.gross img {
    max-width: 100px;
    width: 100px;
  }
}
@media only screen and (max-width: 735px) {
  .img-slideshow .slide .header_slideshow_content .header_slideshow_logo.gross img {
    max-width: 60px;
    width: 60px;
  }
}
@media only screen and (max-width: 450px) {
  .img-slideshow .slide .header_slideshow_content .header_slideshow_logo.gross img {
    max-width: 40px;
    width: 40px;
  }
}
.img-slideshow .slide .header_slideshow_content.logo-center .header_slideshow_logo {
  display: block;
  width: 100%;
}
.img-slideshow .slide .header_slideshow_content.logo-center .header_slideshow_logo img {
  position: relative;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 1rem;
}
.img-slideshow .slide .header_slideshow_content.logo-right .header_slideshow_logo {
  display: inline-block;
  margin: 5px 0 0 30px;
}
@media only screen and (max-width: 900px) {
  .img-slideshow .slide .header_slideshow_content.logo-right .header_slideshow_logo {
    margin-top: 2px;
  }
}
@media only screen and (max-width: 735px) {
  .img-slideshow .slide .header_slideshow_content.logo-right .header_slideshow_logo {
    margin-left: 15px;
  }
}
.img-slideshow .slide .header_slideshow_content.logo-right .text {
  display: inline-block;
}
.img-slideshow .slide .header_slideshow_content.logo-left .header_slideshow_logo {
  float: left;
  margin: 5px 30px 0 0;
  display: inline-block;
}
.img-slideshow .slide .header_slideshow_content.logo-left .header_slideshow_logo img {
  position: relative;
  display: block;
}
@media only screen and (max-width: 900px) {
  .img-slideshow .slide .header_slideshow_content.logo-left .header_slideshow_logo {
    margin-top: 2px;
  }
}
.img-slideshow .slide .header_slideshow_content.logo-left .text {
  display: inline-block;
}
@media only screen and (max-width: 1333px) {
  .img-slideshow .slide .header_slideshow_content {
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 1200px) {
  .img-slideshow .slide .header_slideshow_content {
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 900px) {
  .img-slideshow .slide .header_slideshow_content {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    position: absolute;
    top: 54%;
  }
  .img-slideshow .slide .header_slideshow_content .textbox-inhalt {
    line-height: 30px;
  }
  .img-slideshow .slide .header_slideshow_content h1,
  .img-slideshow .slide .header_slideshow_content h2 {
    font-size: 28px;
    line-height: 34px;
  }
  .img-slideshow .slide .header_slideshow_content .link a {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 735px) {
  .img-slideshow .slide .header_slideshow_content {
    top: 58%;
  }
  .img-slideshow .slide .header_slideshow_content .textbox-inhalt p {
    font-size: 20px;
    line-height: 24px;
    margin-top: -0.5rem;
  }
  .img-slideshow .slide .header_slideshow_content .link a {
    padding: 8px 20px;
  }
}
@media only screen and (max-width: 650px) {
  .img-slideshow .slide .header_slideshow_content .textbox-inhalt p {
    font-size: 16px;
    line-height: 22px;
  }
  .img-slideshow .slide .header_slideshow_content .link a {
    font-size: 12px;
    padding: 5px 18px;
  }
  .img-slideshow .slide .header_slideshow_content h1,
  .img-slideshow .slide .header_slideshow_content h2 {
    font-size: 25px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 1200px) {
  .img-slideshow .slide {
    width: 100%;
  }
  .img-slideshow .slide .image {
    /*width: auto;*/
    /*left: 50%;*/
    /*              position: relative;
                .translateX(-50%);*/
  }
}
@media only screen and (max-width: 735px) {
  .img-slideshow .slick-prev,
  .img-slideshow .slick-next {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 450px) {
  .img-slideshow .slick-prev,
  .img-slideshow .slick-next {
    margin-top: 150px;
  }
}
.teaser-wrapper {
  width: 100%;
  z-index: 1000;
  -webkit-transform: translateY(-65px);
  -moz-transform: translateY(-65px);
  -ms-transform: translateY(-65px);
  -o-transform: translateY(-65px);
  transform: translateY(-65px);
  position: relative;
  padding: 0 30px;
  margin-bottom: -65px;
}
.teaser-wrapper .teaser-box {
  padding: 25px;
  background: #ffffff;
  display: flex;
  -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
}
.teaser-wrapper .teaser-box > .teaser:first-child {
  height: 330px;
}
.teaser-wrapper .teaser-box > .teaser:nth-child(2) {
  width: 40%;
}
.teaser-wrapper .teaser-box a {
  color: #7c7c7c;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
.teaser-wrapper .teaser-box a:hover {
  color: #333333;
}
.teaser-wrapper .teaser-box .background {
  width: 100%;
  height: 100%;
  display: block;
  background-repeat: no-repeat;
}
.teaser-wrapper .teaser-box .background.cover {
  background-size: cover;
  background-position: bottom center!important;
}
.teaser-wrapper .teaser-box .boxes {
  display: flex;
  flex-flow: row wrap;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  width: 100%;
}
.teaser-wrapper .teaser-box .boxes .teaser {
  width: 25%;
}
.teaser-wrapper .teaser-box .boxes .teaser:first-child,
.teaser-wrapper .teaser-box .boxes .teaser:last-child {
  width: 50%;
}
.teaser-wrapper .teaser-box .boxes.five-items .teaser {
  width: 50%;
}
.teaser-wrapper .teaser-box.six-items {
  flex-flow: row wrap;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  width: 100%;
}
.teaser-wrapper .teaser-box.six-items .teaser {
  width: 25%;
  height: 165px;
}
.teaser-wrapper .teaser-box.six-items .teaser:first-child,
.teaser-wrapper .teaser-box.six-items .teaser:last-child {
  width: 50%;
}
.teaser-wrapper .teaser-box.four-items {
  flex-flow: row wrap;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  width: 100%;
}
.teaser-wrapper .teaser-box.four-items .teaser {
  width: 50%;
  height: 165px;
}
.teaser-wrapper .teaser-box.four-items .teaser:first-child,
.teaser-wrapper .teaser-box.four-items .teaser:last-child {
  width: 50%;
}
.teaser-wrapper .teaser-box .teaser {
  display: inline-block;
  position: relative;
  width: auto;
  width: 20%;
  height: 165px;
  padding: 5px;
}
.teaser-wrapper .teaser-box .teaser:last-child {
  width: 40%;
}
.teaser-wrapper .teaser-box .teaser.bottom .background {
  background-position: top right;
}
.teaser-wrapper .teaser-box .teaser.bottom .text {
  bottom: 20px;
}
.teaser-wrapper .teaser-box .teaser.top .background {
  background-position: bottom right;
}
.teaser-wrapper .teaser-box .teaser.top .text {
  top: 20px;
}
.teaser-wrapper .teaser-box .teaser .text {
  position: absolute;
  left: 20px;
  font-size: 15px;
  line-height: 20px;
  font-style: italic;
  padding-right: 20px;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.teaser-wrapper .teaser-box .teaser .text .big {
  font-size: 25px;
  line-height: 30px;
  font-family: 'Montserrat', "Arial", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-style: normal;
}
@media only screen and (max-width: 1200px) {
  .teaser-wrapper .teaser-box .teaser .text {
    font-size: 13px;
    line-height: 18px;
  }
  .teaser-wrapper .teaser-box .teaser .text .big {
    font-size: 18px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1024px) {
  .teaser-wrapper {
    display: none;
  }
}
#page_14 .teaser-wrapper {
  margin-bottom: 0;
  transform: none;
}
.text-zweispaltig-button .text {
  display: flex;
  justify-content: space-between;
}
.text-zweispaltig-button .text .textbox-inhalt {
  width: 80%;
}
.text-zweispaltig-button .text .textbox-inhalt p {
  position: relative;
  top: -0.14em;
}
.text-zweispaltig-button .text .link {
  margin-left: 40px;
  margin-top: 2rem;
}
.text-zweispaltig-button .text .link a {
  margin-top: 0;
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  .text-zweispaltig-button .text {
    display: block;
  }
  .text-zweispaltig-button .text .link {
    margin: 0;
  }
  .text-zweispaltig-button .text .link a {
    margin-top: 1.5rem;
  }
}
.text-element .icon-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.text-element .icon-wrapper .icon {
  min-width: 70px;
  padding-right: 20px;
  max-width: 70px;
}
.text-element .icon-wrapper .icon img {
  width: 100%;
  height: auto;
}
.text-element .icon-wrapper > div h1,
.text-element .icon-wrapper > div h3 {
  font-size: 20px;
  line-height: 26px;
  margin: 0;
  font-weight: 400;
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #333333;
  vertical-align: baseline;
  position: relative;
  margin-top: 0.5rem;
  top: -0.14em;
  letter-spacing: 1px;
  text-transform: uppercase;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  /*	-ms-word-break: break-all;
         word-break: break-all;
    
         // Non standard for webkit
         word-break: break-word;
    
    -webkit-hyphens: auto;
       -moz-hyphens: auto;
            hyphens: auto;*/
}
@media only screen and (max-width: 1200px) {
  .text-element .icon-wrapper > div h1,
  .text-element .icon-wrapper > div h3 {
    font-size: 18px;
    line-height: 21px;
  }
}
@media only screen and (max-width: 735px) {
  .text-element .icon-wrapper > div h1,
  .text-element .icon-wrapper > div h3 {
    font-size: 18px;
    line-height: 21px;
  }
}
.text-element .icon-wrapper > div h2,
.text-element .icon-wrapper > div h4 {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  font-family: 'Montserrat', "Arial", sans-serif;
  vertical-align: baseline;
  position: relative;
  top: -0.14em;
  text-transform: none;
  font-weight: 500;
  color: #7c7c7c;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.text-element .icon-wrapper > div .inhalt-wrapper {
  margin-top: 1rem;
}
@media only screen and (max-width: 650px) {
  .text-element .icon-wrapper {
    display: block;
  }
  .text-element .icon-wrapper .icon {
    margin-bottom: 10px;
  }
}
.text-element .social {
  padding-top: 1.5rem;
}
.text-element .social a {
  margin-right: 10px;
}
.text-element .text {
  width: 100%;
}
.text-element .text .contactbox {
  position: relative;
  width: 100%;
}
.text-element .text .contactbox .link {
  display: inline-block;
  margin-right: 20px;
}
.text-element .text .contactbox .link a {
  color: #7c7c7c !important;
  background: #ffffff;
  margin-top: 0.5rem;
}
.text-element .text .contactbox .link a i {
  font-size: 17px;
  position: relative;
  top: 3px;
  margin-right: 5px;
}
.text-element .text .contactbox .link:first-child a {
  margin-top: 1.5rem;
}
.text-element .text .contactbox .social {
  position: absolute;
  right: 0;
  padding-top: 1.5rem;
  top: 0;
}
.text-element .text .contactbox .social a {
  margin-left: 20px;
  margin-right: 0;
}
.text-element .text .contactbox .social a:first-child {
  margin-left: 0;
}
@media only screen and (max-width: 735px) {
  .text-element .text .contactbox .social {
    position: relative;
    left: 0;
    right: auto;
  }
  .text-element .text .contactbox .social a:first-child {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .text-element .text .contactbox .social {
    position: relative;
    padding-top: 2rem;
  }
}
.text-element .inhalt-wrapper {
  display: flex;
  display: -ms-flexbox;
  margin-top: 1.5rem;
}
.text-element .inhalt-wrapper .text {
  margin: 0 1.5rem;
}
.text-element .inhalt-wrapper .text .textbox-inhalt {
  margin: 0;
}
.text-element .inhalt-wrapper.links.full-width,
.text-element .inhalt-wrapper.rechts.full-width {
  flex-wrap: wrap;
}
.text-element .inhalt-wrapper.links.full-width .img,
.text-element .inhalt-wrapper.rechts.full-width .img {
  margin-bottom: 1.5rem;
}
.text-element .inhalt-wrapper.links.full-width .text,
.text-element .inhalt-wrapper.rechts.full-width .text {
  margin: 0;
}
@media only screen and (max-width: 900px) {
  .text-element .inhalt-wrapper.links,
  .text-element .inhalt-wrapper.rechts {
    flex-wrap: wrap;
  }
  .text-element .inhalt-wrapper.links .text,
  .text-element .inhalt-wrapper.rechts .text {
    margin: 0;
    margin-top: 15px;
  }
  .text-element .inhalt-wrapper.links img,
  .text-element .inhalt-wrapper.rechts img {
    margin-top: 0.5rem;
  }
}
.text-element .inhalt-wrapper.no-pad .text {
  margin: 0;
}
.text-element .inhalt-wrapper.rechts .text {
  margin-left: 0;
}
.text-element .inhalt-wrapper.links .text {
  margin-right: 0;
}
.text-element .img.normal img {
  max-width: 100%;
  height: auto;
}
.text-element .img.full {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.text-element .img.full img {
  width: 100%;
  height: 100%;
}
.text-element .img.full-width {
  height: 500px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.text-element .img.full-width img {
  min-height: 500px;
  height: auto;
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.text-element .img.full-height {
  /*flex: 1 1 auto;*/
  flex-basis: 100%;
}
.text-element .img.full-height img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.text-element .img.unten,
.text-element .img.zwischen {
  margin-top: 1.5rem;
}
.text-element .img.oben {
  margin-bottom: 1.5rem;
}
.text-zweispaltig .social {
  padding-top: 1.5rem;
}
.text-zweispaltig .social a {
  margin-right: 10px;
}
.text-zweispaltig .text {
  display: flex;
  flex-wrap: wrap;
}
.text-zweispaltig .text .contactbox {
  position: relative;
  width: 100%;
}
.text-zweispaltig .text .contactbox .link {
  display: inline-block;
  margin-right: 20px;
}
.text-zweispaltig .text .contactbox .link a {
  color: #7c7c7c !important;
  background: #ffffff;
}
.text-zweispaltig .text .contactbox .link a i {
  font-size: 17px;
  position: relative;
  top: 3px;
  margin-right: 5px;
}
.text-zweispaltig .text .contactbox .social {
  position: absolute;
  right: 0;
  padding-top: 1.5rem;
  top: 0;
}
.text-zweispaltig .text .contactbox .social a {
  margin-left: 20px;
  margin-right: 0;
}
@media only screen and (max-width: 735px) {
  .text-zweispaltig .text .contactbox .social {
    position: relative;
    left: 0;
    right: auto;
  }
  .text-zweispaltig .text .contactbox .social a:first-child {
    margin-left: 0;
  }
}
.text-zweispaltig .inhalt-wrapper {
  display: flex;
  margin-top: 1.5rem;
}
.text-zweispaltig .inhalt-wrapper .text {
  margin: 0 1.5rem;
}
.text-zweispaltig .inhalt-wrapper .text .textbox-inhalt {
  margin: 0;
}
.text-zweispaltig .inhalt-wrapper.links.full-width,
.text-zweispaltig .inhalt-wrapper.rechts.full-width {
  flex-wrap: wrap;
}
.text-zweispaltig .inhalt-wrapper.links.full-width .img,
.text-zweispaltig .inhalt-wrapper.rechts.full-width .img {
  margin-bottom: 1.5rem;
}
.text-zweispaltig .inhalt-wrapper.links.full-width .text,
.text-zweispaltig .inhalt-wrapper.rechts.full-width .text {
  margin: 0;
}
.text-zweispaltig .inhalt-wrapper.rechts .text {
  margin-left: 0;
}
.text-zweispaltig .inhalt-wrapper.links .text {
  margin-right: 0;
}
.text-zweispaltig .img.full {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.text-zweispaltig .img.full img {
  width: 100%;
  height: 100%;
}
.text-zweispaltig .img.full-width {
  height: 500px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.text-zweispaltig .img.full-width img {
  min-height: 500px;
  height: auto;
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.text-zweispaltig .img.full-height img {
  width: auto;
  height: 100%;
}
.text-zweispaltig .img.unten,
.text-zweispaltig .img.zwischen {
  margin-top: 1.5rem;
}
.text-zweispaltig .img.oben {
  margin-bottom: 1.5rem;
}
.bild-element .social {
  padding-top: 1.5rem;
}
.bild-element .social a {
  margin-right: 10px;
}
.bild-element .text .contactbox {
  position: relative;
}
.bild-element .text .contactbox .link {
  display: inline-block;
  margin-right: 20px;
}
.bild-element .text .contactbox .link a {
  color: #7c7c7c !important;
  background: #ffffff;
}
.bild-element .text .contactbox .link a i {
  font-size: 17px;
  position: relative;
  top: 3px;
  margin-right: 5px;
}
.bild-element .text .contactbox .social {
  position: absolute;
  right: 0;
  padding-top: 1.5rem;
  top: 0;
}
.bild-element .text .contactbox .social a {
  margin-left: 20px;
  margin-right: 0;
}
.bild-element .inhalt-wrapper {
  display: flex;
  margin-top: 1.5rem;
}
.bild-element .inhalt-wrapper .text {
  margin: 0 1.5rem;
}
.bild-element .inhalt-wrapper .text .textbox-inhalt {
  margin: 0;
}
.bild-element .inhalt-wrapper.links.full-width,
.bild-element .inhalt-wrapper.rechts.full-width {
  flex-wrap: wrap;
}
.bild-element .inhalt-wrapper.links.full-width .img,
.bild-element .inhalt-wrapper.rechts.full-width .img {
  margin-bottom: 1.5rem;
}
.bild-element .inhalt-wrapper.links.full-width .text,
.bild-element .inhalt-wrapper.rechts.full-width .text {
  margin: 0;
}
.bild-element .inhalt-wrapper.rechts .text {
  margin-left: 0;
}
.bild-element .inhalt-wrapper.links .text {
  margin-right: 0;
}
.bild-element .img.normal img {
  max-width: 100%;
  height: auto;
}
.bild-element .img.full img {
  width: 100%;
  height: 100%;
}
.bild-element .img.full-width {
  height: 500px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.bild-element .img.full-width img {
  min-height: 500px;
  height: auto;
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.bild-element .img.full-height img {
  width: auto;
  height: 100%;
}
.teaser-slideshow {
  padding: 0 119px;
}
.teaser-slideshow .slick-list .slide {
  height: auto;
  position: relative;
}
.teaser-slideshow .slick-list .slide.slick-current:before {
  content: "";
  position: absolute;
  left: 1px;
  height: 100%;
  width: 1px;
  background: #dfdfdf;
  display: block;
  top: 0;
  bottom: 0;
}
.teaser-slideshow .slick-list .slide:after {
  content: "";
  position: absolute;
  right: 2px;
  height: 100%;
  width: 1px;
  background: #dfdfdf;
  display: block;
  top: 0;
  bottom: 0;
}
.teaser-slideshow .slick-list .slide .teaser {
  padding: 50px;
  height: 350px;
  position: relative;
}
.teaser-slideshow .slick-list .slide .teaser:hover .text {
  min-height: 0px;
}
.teaser-slideshow .slick-list .slide .teaser:hover .text .text {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.teaser-slideshow .slick-list .slide .teaser:hover .text .text .textbox-inhalt {
  display: none;
}
.teaser-slideshow .slick-list .slide .teaser:hover .image {
  opacity: 1;
  visibility: visible;
}
.teaser-slideshow .slick-list .slide .teaser:hover .image div {
  height: 110px;
}
.teaser-slideshow .slick-list .slide .teaser .image {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  position: relative;
}
.teaser-slideshow .slick-list .slide .teaser .image div {
  display: block;
  width: 100%;
  background-size: cover;
  margin-top: 20px;
  position: absolute;
}
.teaser-slideshow .slick-list .slide .teaser .text {
  min-height: 100px;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  font-family: 'Montserrat', "Arial", sans-serif;
}
.teaser-slideshow .slick-list .slide .teaser .text .textbox-inhalt {
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
.teaser-slideshow .slick-list .slide .teaser .text h3 {
  font-size: 20px;
  line-height: 26px;
  margin: 0;
  font-weight: 400;
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #333333;
  vertical-align: baseline;
  position: relative;
  margin-top: 0.5rem;
  top: -0.14em;
  letter-spacing: 1px;
  text-transform: uppercase;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  /*	-ms-word-break: break-all;
         word-break: break-all;
    
         // Non standard for webkit
         word-break: break-word;
    
    -webkit-hyphens: auto;
       -moz-hyphens: auto;
            hyphens: auto;*/
  font-weight: 500;
}
@media only screen and (max-width: 1200px) {
  .teaser-slideshow .slick-list .slide .teaser .text h3 {
    font-size: 18px;
    line-height: 21px;
  }
}
@media only screen and (max-width: 735px) {
  .teaser-slideshow .slick-list .slide .teaser .text h3 {
    font-size: 18px;
    line-height: 21px;
  }
}
.teaser-slideshow .slick-list .slide .teaser .text h4 {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  vertical-align: baseline;
  position: relative;
  top: -0.14em;
  text-transform: none;
  font-weight: 500;
  color: #7c7c7c;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  font-family: 'Montserrat', "Arial", sans-serif;
}
.teaser-slideshow .slick-list .slide .teaser .text.color-dark h3 {
  color: #333333 !important;
}
.teaser-slideshow button {
  border: none;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  width: auto;
}
.teaser-slideshow button.slick-prev {
  left: 45px;
}
.teaser-slideshow button.slick-next {
  right: 45px;
}
.teaser-slideshow button:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 900px) {
  .teaser-slideshow button {
    display: block !important;
  }
}
@media only screen and (max-width: 650px) {
  .teaser-slideshow {
    padding: 0 89px;
  }
  .teaser-slideshow .slick-list .slide .teaser {
    padding: 40px;
  }
  .teaser-slideshow button {
    top: 50%;
    -webkit-transform: scale(0.7) translateY(-50%);
    -moz-transform: scale(0.7) translateY(-50%);
    -ms-transform: scale(0.7) translateY(-50%);
    -o-transform: scale(0.7) translateY(-50%);
    transform: scale(0.7) translateY(-50%);
  }
}
@media only screen and (max-width: 450px) {
  .teaser-slideshow {
    padding: 0 45px;
  }
  .teaser-slideshow .slick-list .slide .teaser {
    padding: 30px 20px;
  }
  .teaser-slideshow button {
    top: 50%;
    -webkit-transform: scale(0.6) translateY(-50%);
    -moz-transform: scale(0.6) translateY(-50%);
    -ms-transform: scale(0.6) translateY(-50%);
    -o-transform: scale(0.6) translateY(-50%);
    transform: scale(0.6) translateY(-50%);
  }
  .teaser-slideshow button.slick-prev {
    left: 5px;
  }
  .teaser-slideshow button.slick-next {
    right: 5px;
  }
}
.text_slider.slide-horizontal .slick-list {
  margin-right: 250px;
}
.text_slider.slide-horizontal .slick-list .slide {
  display: inline-block;
}
.text_slider.slide-horizontal button.slick-prev {
  left: auto;
  right: 95px;
}
.text_slider.slide-horizontal button.slick-next {
  right: 25px;
}
.text_slider.slide-vertikal .slick-list {
  margin-right: 150px;
}
.text_slider.slide-vertikal .slick-list .slide {
  display: inline-block;
}
.text_slider.slide-vertikal button.slick-prev {
  left: auto;
  right: 25px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-top: -50px;
}
.text_slider.slide-vertikal button.slick-next {
  right: 25px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-top: 10px;
}
.text_slider .slick-dots {
  display: none !important;
}
@media only screen and (max-width: 735px) {
  .text_slider .slick-list {
    margin-right: 0px !important;
  }
  .text_slider .slick-dots {
    display: block !important;
  }
}
.teaser-element > div.teaserbox-slider .slick-list {
  margin: 0 100px;
}
.teaser-element > div.teaserbox-slider .slick-next {
  right: 0;
}
.teaser-element > div.teaserbox-slider .slick-prev {
  left: 0;
}
.teaser-element > div.teaserbox-slider .teaser {
  margin: 0 0.5%!important;
}
.teaser-element > div.no-slider {
  display: flex;
  flex-wrap: wrap;
}
.teaser-element > div .teaser {
  width: 31%;
  padding: 25px;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  cursor: pointer;
  position: relative;
  background: #ffffff;
  -webkit-box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.05);
}
.teaser-element > div .teaser:hover {
  -webkit-box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.25);
}
.teaser-element > div .teaser h3,
.teaser-element > div .teaser h4 {
  text-transform: none;
}
.teaser-element > div .teaser:nth-child(n+4) {
  margin-top: 3%;
}
.teaser-element > div .teaser:nth-child(3n+1) {
  margin-right: 3%;
}
.teaser-element > div .teaser:nth-child(3n+3) {
  margin-left: 3%;
}
.teaser-element > div .teaser.text-center {
  text-align: center;
}
.teaser-element > div .teaser.text-center .text .link {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.teaser-element > div .teaser.text-right {
  text-align: right;
}
.teaser-element > div .teaser.text-right .text .link {
  right: 25px;
}
.teaser-element > div .teaser.color-dark h3 {
  color: #333333 !important;
}
.teaser-element > div .teaser.color-light .link a {
  color: #ffffff !important;
}
.teaser-element > div .teaser .text .text {
  padding-bottom: 50px;
}
.teaser-element > div .teaser .text .link {
  position: absolute;
  bottom: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 100%;
}
.teaser-element > div .teaser .image {
  height: 150px;
  width: 100%;
  margin-bottom: 20px;
}
.teaser-element > div .teaser .image div {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 900px) {
  .teaser-element > div .teaser {
    width: 47%;
  }
  .teaser-element > div .teaser:nth-child(n+3) {
    margin-top: 3%;
  }
  .teaser-element > div .teaser:nth-child(3n+1) {
    margin-right: 0%;
  }
  .teaser-element > div .teaser:nth-child(3n+3) {
    margin-left: 0%;
  }
  .teaser-element > div .teaser:nth-child(2n+1) {
    margin-right: 3%;
  }
  .teaser-element > div .teaser:nth-child(2n+2) {
    margin-left: 3%;
  }
}
@media only screen and (max-width: 550px) {
  .teaser-element > div .teaser {
    width: 100%;
    margin: 3% 0 0 0!important;
  }
}
.accordion-wrapper .accordion {
  margin-bottom: 1.5rem;
  border-bottom: solid 1px #dfdfdf;
}
.accordion-wrapper .accordion:last-child {
  margin-bottom: 0;
}
.accordion-wrapper .accordion h3 {
  cursor: pointer;
  padding: 20px 40px 20px 0;
  margin: 0;
  position: relative;
}
.accordion-wrapper .accordion h3.openacc i.openicon {
  display: none;
}
.accordion-wrapper .accordion h3.openacc i.closeicon {
  display: block;
}
.accordion-wrapper .accordion h3 i {
  position: absolute;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  right: 0px;
  padding: 4px;
  border: solid 1px #333333;
  border-radius: 100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.accordion-wrapper .accordion h3 i.closeicon {
  display: none;
}
@media only screen and (max-width: 450px) {
  .accordion-wrapper .accordion h3 {
    word-break: break-all;
  }
}
.accordion-wrapper .accordion > div {
  display: none;
  overflow: hidden;
}
.accordion-wrapper .accordion > div > div:last-child {
  padding-bottom: 40px;
}
.accordion-wrapper .accordion > div .textbox-inhalt {
  margin-top: 1rem;
}
.accordion-wrapper .accordion > div .img img {
  height: auto;
  max-width: 100%;
  width: auto;
  padding-bottom: 40px;
}
.accordion-wrapper .accordion div .img {
  text-align: center;
  padding-top: 25px;
}
@media (min-width: 1024px) {
  .accordion-wrapper .accordion > div .img img {
    max-width: 60%;
  }
}
.img-gallery {
  padding: 0 70px;
}
.img-gallery .slide {
  padding: 0 30px;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
.img-gallery .slide.slick-current {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.img-gallery .slide.slick-current .img-wrapper {
  -webkit-box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.35);
}
.img-gallery .img-wrapper {
  margin: 40px 10px;
  position: relative;
  height: 200px;
  width: 100%;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.img-gallery .img-wrapper:hover .desc-box {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}
.img-gallery .img-wrapper .image {
  background-size: cover;
  background-position: center center;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
}
.img-gallery .img-wrapper .desc-box {
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  cursor: pointer;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.img-gallery .img-wrapper .desc-box .overlay {
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: block;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
}
.img-gallery .img-wrapper .desc-box .desc {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  padding: 0 20px;
  text-align: center;
  position: absolute;
  color: #ffffff;
}
.img-gallery button.slick-prev {
  left: 0px;
}
.img-gallery button.slick-next {
  right: 0px;
}
.img-gallery button:hover {
  opacity: 0.7;
}
.team-element {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.team-element .mitarbeiter {
  width: 22%;
  padding: 5px;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
  position: relative;
  background: #ffffff;
  margin: 0 2%;
  -webkit-box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.15);
}
.team-element .mitarbeiter:nth-child(n+5) {
  margin-top: 4%;
}
.team-element .mitarbeiter:nth-child(4n+1) {
  margin-left: 0;
}
.team-element .mitarbeiter:nth-child(4n+4) {
  margin-right: 0;
}
.team-element .mitarbeiter .image {
  width: 100%;
  height: 260px;
}
.team-element .mitarbeiter .image div {
  background-size: cover;
  height: 100%;
}
.team-element .mitarbeiter .text {
  padding: 15px 0;
}
.team-element .mitarbeiter .text .name {
  font-family: 'Montserrat', "Arial", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #333333;
  font-weight: 600;
}
.team-element .mitarbeiter .text .position {
  font-size: 14px;
  line-height: 18px;
}
@media only screen and (max-width: 1024px) {
  .team-element .mitarbeiter {
    width: 30%;
  }
  .team-element .mitarbeiter:nth-child(n+4) {
    margin-top: 4%;
  }
  .team-element .mitarbeiter:nth-child(4n+1) {
    margin-left: 2%;
  }
  .team-element .mitarbeiter:nth-child(4n+4) {
    margin-right: 2%;
  }
  .team-element .mitarbeiter:nth-child(3n+1) {
    margin-left: 0%;
  }
  .team-element .mitarbeiter:nth-child(3n+3) {
    margin-right: 0%;
  }
}
@media only screen and (max-width: 735px) {
  .team-element .mitarbeiter {
    width: 45%;
  }
  .team-element .mitarbeiter:nth-child(n+3) {
    margin-top: 4%;
  }
  .team-element .mitarbeiter:nth-child(4n+1) {
    margin-left: 0%;
  }
  .team-element .mitarbeiter:nth-child(4n+4) {
    margin-right: 0%;
  }
  .team-element .mitarbeiter:nth-child(3n+1) {
    margin-left: 2%;
  }
  .team-element .mitarbeiter:nth-child(3n+3) {
    margin-right: 2%;
  }
}
@media only screen and (max-width: 500px) {
  .team-element .mitarbeiter {
    width: 100%;
    margin: 4% 0 0 0!important;
  }
  .team-element .mitarbeiter .image {
    height: 360px;
  }
}
.tabellen-wrapper table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}
.tabellen-wrapper table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}
.tabellen-wrapper table tr {
  background-color: #f4f4f4;
  border: 1px solid #dfdfdf;
  padding: .35em;
}
.tabellen-wrapper table th,
.tabellen-wrapper table td {
  padding: .625em;
  text-align: left;
}
.tabellen-wrapper table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: 'Montserrat', "Arial", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 650px) {
  .tabellen-wrapper table {
    border: 0;
  }
  .tabellen-wrapper table caption {
    font-size: 1.3em;
  }
  .tabellen-wrapper table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .tabellen-wrapper table tr {
    display: block;
    margin-bottom: .625em;
  }
  .tabellen-wrapper table td {
    border-bottom: 1px solid #dfdfdf;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  .tabellen-wrapper table td::before {
    /*
			* aria-label has no advantage, it won't be read inside a table
			content: attr(aria-label);
			*/
    content: attr(data-label);
    float: left;
    font-family: 'Montserrat', "Arial", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
  }
  .tabellen-wrapper table td:last-child {
    border-bottom: 0;
  }
}
@media only screen and (max-width: 560px) {
  .tabellen-wrapper table td {
    text-align: center;
  }
  .tabellen-wrapper table td::before {
    float: none;
    display: block;
  }
}
.tx-fp-masterquiz > p {
  margin: 20px auto;
}
.tx-fp-masterquiz ul {
  padding-left: 1em;
}
.tx-fp-masterquiz ul li {
  position: relative;
  /*list-style-type: "- ";*/
}
.tx-fp-masterquiz ul li:before {
  content: "";
  background: #7bb82d;
  height: 10px;
  width: 10px;
  display: block;
  margin-left: -20px;
  position: absolute;
  top: 7px;
}
.tx-fp-masterquiz h4.done {
  display: none;
}
.tx-fp-masterquiz .quiz-question-buttons {
  padding-left: 1em;
}
.tx-fp-masterquiz .quiz-question-buttons .quiz-radio {
  line-height: 2;
}
.tx-fp-masterquiz .btn {
  font-family: 'Montserrat', "Arial", sans-serif;
  color: #ffffff;
  padding: 5px 20px;
  font-size: 14px;
  background: #7bb82d;
  text-transform: uppercase;
  margin-top: 1.5rem;
  display: inline-block;
  font-weight: 300;
  font-style: normal;
  text-decoration: none;
  -webkit-box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
}
.tx-fp-masterquiz .btn:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: .2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 2;
}
.tx-fp-masterquiz .btn:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.tx-fp-masterquiz .buttons {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: column;
  /*        .quiz-subm{
            
        }*/
}
.tx-fp-masterquiz .buttons .pull-right {
  float: none;
  align-self: flex-end;
}
button#print_page {
  /*text-indent: -999px;*/
  background: none;
  color: #7bb82d;
  border: none;
  float: right;
  cursor: pointer;
}
@media print {
  #page_666 {
    font-size: 9pt;
    line-height: 1.5;
  }
  #page_666 h2 {
    font-size: 13pt;
    line-height: 1.3;
  }
  #page_666 ul {
    padding-left: 1em;
  }
  #page_666 ul li {
    position: relative;
    list-style-type: '- ';
    /*                &:before {
                    content:"";
                    background: @primary;
                    height: 10px;
                    width: 10px;
                    display: block;
                    margin-left: -20px;
                    position: absolute;
                    top: 7px;
                }*/
  }
  #page_666 header.subpages,
  #page_666 #quiz-restart,
  #page_666 footer,
  #page_666 .backgroundimage-c3354,
  #page_666 #damn_cookieconsent_banner,
  #page_666 #damn_background_overlay,
  #page_666 #sd-lightbox,
  #page_666 .popup,
  #page_666 .overlay,
  #page_666 #powermail_conditions_container,
  #page_666 #typo3-preview-info,
  #page_666 #TSFE_ADMIN_PANEL_FORM,
  #page_666 #TSFE_ADMIN_PANEL {
    display: none !important;
  }
  #page_666 .content {
    width: 100%;
    /*padding: 2cm;*/
  }
  #page_666 .content .content.two-cols {
    column-gap: 0;
  }
  #page_666 .content .content.two-cols > div {
    width: auto;
  }
  #print_page {
    display: none;
  }
}
