@charset "UTF-8";
/* MEESENBURG SASS/SCSS FILE */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
@import url("//hello.myfonts.net/count/312cc7");
@import url("//hello.myfonts.net/count/312cac");
@import "https://fonts.googleapis.com/css?family=Roboto:100,300,500&subset=cyrillic,cyrillic-ext,greek,latin-ext";
@import url(//fonts.googleapis.com/earlyaccess/notosanssc.css);
.hamburger {
  padding: 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 1; }

.hamburger-box {
  width: 34px;
  height: 19px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 34px;
    height: 3px;
    background-color: #ffed00;
    border-radius: 0px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -8px; }
  .hamburger-inner::after {
    bottom: -8px; }

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 68px; }
.hamburger--3dx .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 68px; }
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 68px; }
.hamburger--3dy .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 68px; }
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-6.8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-6.8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(6.8px, 0, 0) rotate(45deg) scale(0.7, 1); }
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(6.8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-6.8px, -8.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-6.8px, 8.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(6.8px, -8.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(6.8px, 8.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -16px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -16px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 1.5px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 8px;
    transition: opacity 0.15s 0.4s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 16px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(135deg);
  transition-delay: 0.1s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -16px, 0) rotate(-270deg);
    transition-delay: 0.1s; }

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 1.5px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 8px;
    transition: opacity 0.15s 0.4s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 16px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(-135deg);
  transition-delay: 0.1s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -16px, 0) rotate(270deg);
    transition-delay: 0.1s; }

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 8px;
      right: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -68px;
      top: -68px;
      transform: translate3d(68px, 68px, 0) rotate(45deg);
      transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -68px;
      top: -68px;
      transform: translate3d(-68px, 68px, 0) rotate(-45deg);
      transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 8px;
      right: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -68px;
      top: 68px;
      transform: translate3d(68px, -68px, 0) rotate(-45deg);
      transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -68px;
      top: 68px;
      transform: translate3d(-68px, -68px, 0) rotate(45deg);
      transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 1.5px; }
  .hamburger--slider .hamburger-inner::before {
    top: 8px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.2s; }
  .hamburger--slider .hamburger-inner::after {
    top: 16px; }
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-4.85714px, -5px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -16px, 0) rotate(-90deg); }

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 1.5px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 8px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.2s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 16px; }
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(4.85714px, -5px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -16px, 0) rotate(90deg); }

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 1.5px;
  transition: background-color 0s 0.15s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 8px;
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 16px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.32s;
  background-color: transparent; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 8px, 0) rotate(-45deg); }

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -16px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.32s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/* COLORS */
/* GRID */
/**
 * @license
 * MyFonts Webfont Build ID 3222727, 2016-05-23T07:34:36-0400
 *
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are
 * explicitly restricted from using the Licensed Webfonts(s).
 *
 * You may obtain a valid license at the URLs below.
 *
 * Webfont: Swiss721BT-Thin by Bitstream
 * URL: http://www.myfonts.com/fonts/bitstream/swiss-721/thin/
 * Copyright: Copyright 1990-2003 Bitstream Inc. All rights reserved.
 * Licensed pageviews: 10,000
 *
 *
 * License: http://www.myfonts.com/viewlicense?type=web&buildid=3222727
 *
 * © 2016 MyFonts Inc
*/
/* @import must be at top of file, otherwise CSS will not work */
@font-face {
  font-family: 'Swiss-Thin';
  src: url("../webfonts/312CC7_0_0.eot");
  src: url("../webfonts/312CC7_0_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/312CC7_0_0.woff2") format("woff2"), url("../webfonts/312CC7_0_0.woff") format("woff"), url("../webfonts/312CC7_0_0.ttf") format("truetype"); }
/**
 * @license
 * MyFonts Webfont Build ID 3222700, 2016-05-23T07:02:50-0400
 *
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are
 * explicitly restricted from using the Licensed Webfonts(s).
 *
 * You may obtain a valid license at the URLs below.
 *
 * Webfont: Swiss721BT-Light by Bitstream
 * URL: http://www.myfonts.com/fonts/bitstream/swiss-721/light/
 *
 * Webfont: Swiss721BT-Medium by Bitstream
 * URL: http://www.myfonts.com/fonts/bitstream/swiss-721/medium/
 *
 *
 * License: http://www.myfonts.com/viewlicense?type=web&buildid=3222700
 * Licensed pageviews: 10,000
 * Webfonts copyright: Copyright 1990-2003 Bitstream Inc. All rights reserved.
 *
 * © 2016 MyFonts Inc
*/
/* @import must be at top of file, otherwise CSS will not work */
@font-face {
  font-family: 'Swiss-Light';
  src: url("../webfonts/312CAC_0_0.eot");
  src: url("../webfonts/312CAC_0_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/312CAC_0_0.woff2") format("woff2"), url("../webfonts/312CAC_0_0.woff") format("woff"), url("../webfonts/312CAC_0_0.ttf") format("truetype"); }
@font-face {
  font-family: 'Swiss-Medium';
  src: url("../webfonts/312CAC_1_0.eot");
  src: url("../webfonts/312CAC_1_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/312CAC_1_0.woff2") format("woff2"), url("../webfonts/312CAC_1_0.woff") format("woff"), url("../webfonts/312CAC_1_0.ttf") format("truetype"); }
.teaserRabatt .wrapup {
  position: relative; }
  .teaserRabatt .wrapup .badgeteaser {
    position: absolute;
    right: 0;
    bottom: -30px;
    max-width: 154px; }
    @media (min-width: 603px) {
      .teaserRabatt .wrapup .badgeteaser {
        right: -20px; } }
    @media (min-width: 768px) {
      .teaserRabatt .wrapup .badgeteaser {
        width: 130px;
        top: 90px;
        right: -20px;
        left: auto; } }
    @media (min-width: 1025px) {
      .teaserRabatt .wrapup .badgeteaser {
        right: -20px;
        top: 160px;
        left: auto;
        z-index: 10;
        width: 100%; } }
    @media (min-width: 1440px) {
      .teaserRabatt .wrapup .badgeteaser {
        right: -20px;
        top: 260px;
        left: auto; } }
    .teaserRabatt .wrapup .badgeteaser .badgecaption {
      position: absolute;
      top: 40px;
      font-size: 23px;
      width: 100%;
      color: #ffed00;
      transform: rotateZ(-20deg); }
      .teaserRabatt .wrapup .badgeteaser .badgecaption p {
        margin: 0;
        text-transform: uppercase;
        text-align: center; }
.teaserRabatt .yellowcaption {
  margin-bottom: 40px;
  position: static; }
  @media (min-width: 768px) {
    .teaserRabatt .yellowcaption {
      position: static;
      width: 100%;
      margin-bottom: 80px;
      margin-top: -69px; } }
  @media (min-width: 1025px) {
    .teaserRabatt .yellowcaption {
      top: 25px;
      width: 50%;
      right: 0;
      position: absolute;
      margin-bottom: 0;
      margin-top: 0;
      left: 25%; } }
  @media (min-width: 1440px) {
    .teaserRabatt .yellowcaption {
      top: 50px;
      width: 50%;
      right: 80px;
      left: 30%; } }
  .teaserRabatt .yellowcaption h4, .teaserRabatt .yellowcaption p {
    display: table;
    padding: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 0px; }
    @media (min-width: 1025px) {
      .teaserRabatt .yellowcaption h4, .teaserRabatt .yellowcaption p {
        background-color: #ffed00; } }
    .teaserRabatt .yellowcaption h4 a, .teaserRabatt .yellowcaption p a {
      margin: 0 !important; }

body.ru .teaserRabatt .wrapup .badgeteaser .badgecaption {
  font-size: 20px;
  top: 52px; }

body.en .teaserRabatt .wrapup .badgeteaser .badgecaption {
  top: 47px; }

a.droptoggle {
  display: block;
  background-color: #25386c;
  color: #fff;
  padding: 5px 10px;
  position: relative; }
  a.droptoggle:hover, a.droptoggle:focus {
    text-decoration: none;
    outline: 0;
    color: #ffed00; }
    a.droptoggle:hover:after, a.droptoggle:focus:after {
      background-image: url(../img/arrow_yellow.png); }
  a.droptoggle.opentoggle:after {
    transform: rotate(-90deg);
    transition: all 0.65s;
    background-image: url(../img/arrow_yellow.png);
    top: 19px; }
    @media (min-width: 1440px) {
      a.droptoggle.opentoggle:after {
        top: 11px; } }
  a.droptoggle:after {
    content: "";
    position: absolute;
    transform: rotate(90deg);
    background-image: url(../img/arrow_white.png);
    background-size: auto 20px;
    width: 14px;
    height: 20px;
    top: -3px;
    right: 30px;
    background-repeat: no-repeat;
    transition: all 0.65s; }
    @media (min-width: 1440px) {
      a.droptoggle:after {
        background-size: auto 40px;
        width: 26px;
        height: 40px;
        top: -7px;
        right: 30px; } }
  a.droptoggle + .dropdownwrap {
    position: relative;
    width: 100%; }
    a.droptoggle + .dropdownwrap ul {
      display: none;
      position: absolute;
      width: 100%;
      z-index: 3;
      box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
      background-color: #25386c; }
      a.droptoggle + .dropdownwrap ul li > a {
        cursor: pointer;
        padding: 5px 10px;
        color: #fff;
        transition: all 0.65s;
        display: block; }
        a.droptoggle + .dropdownwrap ul li > a:hover, a.droptoggle + .dropdownwrap ul li > a:focus, a.droptoggle + .dropdownwrap ul li > a.active {
          text-decoration: none;
          color: #ffed00;
          transition: all 0.65s; }

/* COLORS */
/* GRID */
#navigation {
  width: 100%;
  transition: all 0.65s;
  text-align: center; }
  @media (min-width: 1025px) {
    #navigation {
      padding-top: 42px;
      -webkit-padding-before: 43px; } }
  @media (min-width: 1440px) {
    #navigation {
      display: block;
      padding-top: 21px;
      -webkit-padding-before: 22px;
      text-align: center; }
      #navigation ul {
        margin: 0;
        padding: 0; } }
  #navigation ul {
    margin: 0;
    padding: 0;
    display: none; }
    @media (min-width: 1025px) {
      #navigation ul {
        display: inline-block; } }
    #navigation ul li {
      display: inline-block;
      position: static; }
      #navigation ul li a {
        color: #fff;
        font-size: 18px;
        font-family: "Swiss-Light", Arial, sans-serif;
        transition: all 0.65s;
        text-transform: uppercase;
        padding: 13px 25px; }
        @media (max-width: 1280px) {
          #navigation ul li a {
            padding: 13px 12px; } }
        #navigation ul li a:hover, #navigation ul li a:focus {
          background-color: #25386c;
          text-decoration: none;
          color: #ffed00;
          transition: all 0.65s; }
      #navigation ul li .childcontainer {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        top: 0;
        transition: all 0.65s;
        width: 100%;
        background-color: #fff;
        left: 0;
        z-index: -1; }
      #navigation ul li > .childcontainer > .container-fluid {
        background-color: #25386c;
        visibility: hidden;
        opacity: 0;
        height: 52px;
        max-height: 52px;
        transition: all 0.65s; }
        #navigation ul li > .childcontainer > .container-fluid ul.list-inline {
          display: none; }
  #navigation .col-sm-12 {
    position: relative; }

@media screen and (max-width: 1279px) {
  body.ru #navigation > ul > li a {
    padding: 13px 8px;
    font-size: 17px; } }
@media screen and (min-width: 1280px) {
  body.ru #navigation > ul > li a {
    padding: 13px 16px; } }
@media screen and (min-width: 1440px) {
  body.ru #navigation > ul > li a {
    padding: 13px 21px; } }

@media screen and (max-width: 1279px) {
  body.en #navigation > ul > li a {
    padding: 13px 8px;
    font-size: 16px; } }
@media screen and (min-width: 1280px) {
  body.en #navigation > ul > li a {
    padding: 13px 16px; } }
@media screen and (min-width: 1440px) {
  body.en #navigation > ul > li a {
    padding: 13px 21px; } }

.container.navigation {
  transition: all 0.65s; }
  .container.navigation div[class^='col-'] {
    position: static; }
  @media (min-width: 1025px) {
    .container.navigation {
      margin-top: 0; } }
  @media (max-width: 1439px) {
    .container.navigation {
      width: 100%; } }

@media (min-width: 1025px) {
  /*.mobilemenu {
      display: none;
      z-index: -20;
  } */
  .navbar-header {
    display: none; }

  .fixed.affix .navigation #navigation {
    padding-top: 0px;
    -webkit-padding-before: 1px; }
    .fixed.affix .navigation #navigation ul li.parent:hover > .childcontainer {
      padding-top: 160px; }

  .fixed .navigation #navigation ul li ul.child {
    display: none; }
    .fixed .navigation #navigation ul li ul.child ul.child {
      display: none; }
  .fixed .navigation #navigation ul li.parent:hover > a, .fixed .navigation #navigation ul li.parent:focus > a {
    color: #ffed00;
    background-color: #25386c; }
  .fixed .navigation #navigation ul li.parent:hover > .childcontainer, .fixed .navigation #navigation ul li.parent:focus > .childcontainer {
    display: block;
    visibility: visible;
    background-color: #fff;
    opacity: 1;
    top: 0;
    padding-top: 248px;
    transition: all 0.65s; }
  .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container {
    min-height: 92px;
    width: 100%; }
  .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container > .row > .col-sm-12 > ul.child, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container > .row > .col-sm-12 > ul.child {
    display: block;
    list-style-type: none;
    width: 100%;
    /*@-moz-document url-prefix() {
        left: 1px;
    }*/ }
    .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container > .row > .col-sm-12 > ul.child > li, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container > .row > .col-sm-12 > ul.child > li {
      padding-left: 15px;
      padding-right: 15px; } }
    @media (min-width: 1025px) and (min-width: 1280px) {
      .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container > .row > .col-sm-12 > ul.child > li, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container > .row > .col-sm-12 > ul.child > li {
        padding-left: 27px;
        padding-right: 27px; } }
@media (min-width: 1025px) {
    .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container > .row > .col-sm-12 > ul.child > li > a, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container > .row > .col-sm-12 > ul.child > li > a {
      padding: 10px 25px !important;
      display: block;
      background-image: none;
      background-size: auto 24px;
      background-position: left -1px center;
      color: #25386c;
      text-align: left; }
    .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container > .row > .col-sm-12 > ul.child > li:hover > a, .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container > .row > .col-sm-12 > ul.child > li.active > a, .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container > .row > .col-sm-12 > ul.child > li:focus > a, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container > .row > .col-sm-12 > ul.child > li:hover > a, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container > .row > .col-sm-12 > ul.child > li.active > a, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container > .row > .col-sm-12 > ul.child > li:focus > a {
      background-image: url(../img/arrow_blue.png);
      background-repeat: no-repeat;
      background-size: auto 24px;
      background-color: #fff; }
    .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container > .row > .col-sm-12 > ul.child li.parent:hover > ul.child, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container > .row > .col-sm-12 > ul.child li.parent:hover > ul.child {
      display: none;
      position: absolute;
      left: 100%;
      margin-top: -43px;
      border-left: 1px solid #fff; }
  .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container-fluid, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container-fluid {
    background-color: #25386c;
    visibility: visible;
    opacity: 1;
    transition: all 0.65s; }
    .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container-fluid .socialbar, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container-fluid .socialbar {
      text-align: right;
      max-height: 52px; }
      .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container-fluid .socialbar ul > li > a, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container-fluid .socialbar ul > li > a {
        display: block;
        width: 32px;
        height: 32px;
        padding: 0;
        margin-top: 10px; }
        .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container-fluid .socialbar ul > li > a#facebookfooter, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container-fluid .socialbar ul > li > a#facebookfooter {
          background-image: url(../img/facebook_roll.png);
          background-size: 32px;
          background-position: 0px 0px;
          background-repeat: no-repeat;
          transition: all 0.65s; }
        .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container-fluid .socialbar ul > li > a#xingfooter, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container-fluid .socialbar ul > li > a#xingfooter {
          background-image: url(../img/xing_roll.png);
          background-size: 32px;
          background-position: 0px 0px;
          background-repeat: no-repeat;
          transition: all 0.65s; }
        .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container-fluid .socialbar ul > li > a#linkedinfooter, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container-fluid .socialbar ul > li > a#linkedinfooter {
          background-image: url(../img/linkedin_roll.png);
          background-size: 32px;
          background-position: 0px 0px;
          background-repeat: no-repeat;
          transition: all 0.65s; }
        .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container-fluid .socialbar ul > li > a#youtubefooter, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container-fluid .socialbar ul > li > a#youtubefooter {
          background-image: url(../img/youtube_roll.png);
          background-size: 32px;
          background-position: 0px 0px;
          background-repeat: no-repeat;
          transition: all 0.65s; }
        .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container-fluid .socialbar ul > li > a:hover, .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container-fluid .socialbar ul > li > a:focus, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container-fluid .socialbar ul > li > a:hover, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container-fluid .socialbar ul > li > a:focus {
          background-position: 0px -32px !important;
          transition: all 0.65s; }
    .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container-fluid ul.list-inline, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container-fluid ul.list-inline {
      display: inline-block; }
      .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container-fluid ul.list-inline li, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container-fluid ul.list-inline li {
        display: inline-block !important;
        margin-right: 15px; }
        .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container-fluid ul.list-inline li:last-of-type, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container-fluid ul.list-inline li:last-of-type {
          margin-right: 0px; }
        .fixed .navigation #navigation ul li.parent:hover > .childcontainer > .container-fluid ul.list-inline li img, .fixed .navigation #navigation ul li.parent:focus > .childcontainer > .container-fluid ul.list-inline li img {
          max-width: 30px; }
  .fixed .navigation #navigation ul li.active > a {
    color: #ffed00; } }
.bluegradient {
  background: linear-gradient(to bottom, #25386c 0%, #25386c 38%, rgba(37, 56, 108, 0.35) 100%);
  transition: all 0.65s;
  position: relative; }

.bluegradient .topnav {
  padding-top: 11px;
  transition: all 0.65s; }
  .bluegradient .topnav .col-xs-offset-4 {
    margin-left: 0; }
  @media (min-width: 768px) {
    .bluegradient .topnav {
      padding-top: 22px; } }
  @media (min-width: 1025px) {
    .bluegradient .topnav {
      padding-top: 42px; }
      .bluegradient .topnav .col-xs-offset-4 {
        margin-left: 33.33333333%; } }
  .bluegradient .topnav .dropdown_lang {
    position: absolute;
    display: none;
    z-index: 30;
    width: 211px;
    top: 70px;
    right: 0;
    left: 0;
    margin: auto;
    background-image: url(../img/lang_bg_fill.png);
    background-repeat: repeat-y;
    height: auto;
    padding: 0px 2px; }
    .bluegradient .topnav .dropdown_lang .langlist li a {
      font-family: "Swiss-Medium", Arial, sans-serif; }
    @media (min-width: 500px) {
      .bluegradient .topnav .dropdown_lang {
        right: calc(50% - 10px);
        left: auto;
        top: 70px; } }
    @media (min-width: 768px) {
      .bluegradient .topnav .dropdown_lang {
        right: 50%;
        left: auto;
        top: 70px; } }
    @media (min-width: 1025px) {
      .bluegradient .topnav .dropdown_lang {
        right: 67px;
        left: auto;
        top: 60px; } }
    @media (min-width: 1440px) {
      .bluegradient .topnav .dropdown_lang {
        right: 67px;
        left: auto; } }
    .bluegradient .topnav .dropdown_lang:before {
      background-image: url(../img/lang_bg.png);
      background-repeat: no-repeat;
      content: "";
      height: 28px;
      width: 211px;
      position: absolute;
      left: 0;
      top: -28px; }
    .bluegradient .topnav .dropdown_lang:after {
      background-image: url(../img/lang_bg_bottom.png);
      background-repeat: no-repeat;
      content: "";
      height: 9px;
      width: 211px;
      position: absolute;
      left: 0;
      bottom: 0; }
    .bluegradient .topnav .dropdown_lang ul {
      list-style-type: none;
      padding-left: 0; }
      .bluegradient .topnav .dropdown_lang ul > li {
        text-align: left !important; }
      .bluegradient .topnav .dropdown_lang ul > li > a {
        color: #fff;
        font-size: 18px;
        transition: all 0.65s;
        border: 1px solid;
        border-color: transparent;
        padding: 10px 0px;
        padding-left: 25px;
        text-align: left;
        text-transform: uppercase;
        background-image: none;
        background-size: auto 24px;
        background-position: left -1px center; }
        .bluegradient .topnav .dropdown_lang ul > li > a:hover, .bluegradient .topnav .dropdown_lang ul > li > a:focus {
          background-color: transparent;
          text-decoration: none;
          color: #ffed00;
          transition: all 0.65s;
          background-image: url(../img/arrow_white.png);
          background-repeat: no-repeat;
          background-size: auto 24px; }
  .bluegradient .topnav div[class^='col-']:first-of-type {
    text-align: left;
    padding-left: 35px;
    transition: all 0.65s; }
  .bluegradient .topnav div[class^='col-'] {
    text-align: center;
    position: static;
    transition: all 0.65s; }
    @media (min-width: 768px) {
      .bluegradient .topnav div[class^='col-'] {
        position: relative;
        transition: all 0.65s; } }
  @media (min-width: 1025px) {
    .bluegradient .topnav div.col-xs-4.absolute {
      position: absolute;
      bottom: 5px;
      right: 5px;
      z-index: 59;
      max-width: 100px;
      transition: all 0.65s; } }
  @media (min-width: 1500px) {
    .bluegradient .topnav div.col-xs-4.absolute {
      position: absolute;
      bottom: 5px;
      right: 20px;
      z-index: 59;
      max-width: 100px;
      transition: all 0.65s; } }
  .bluegradient .topnav div[class^='col-']:last-of-type {
    text-align: right;
    padding-right: 35px;
    transition: all 0.65s;
    float: right; }
  .bluegradient .topnav a {
    display: inline-block;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    transition: all 0.65s; }
  .bluegradient .topnav a#phone {
    background-image: url(../img/fon.png);
    width: 19px;
    height: 19px;
    transition: all 0.65s; }
    .bluegradient .topnav a#phone:hover {
      background-image: url(../img/fon_hover.png); }
  .bluegradient .topnav #geowrap {
    float: right; }
  .bluegradient .topnav a#geo {
    background-image: url(../img/geo-position-gelb.png);
    width: 15px;
    height: 23px;
    transition: all 0.65s; }
    .bluegradient .topnav a#geo:hover {
      background-image: url(../img/geo-position-hover.png); }
  .bluegradient .topnav a#lang {
    background-image: url(../img/lang.png);
    width: 24px;
    cursor: pointer;
    height: 25px;
    transition: all 0.65s; }
    .bluegradient .topnav a#lang:hover, .bluegradient .topnav a#lang.open {
      background-image: url(../img/lang_hover.png); }
  @media (min-width: 768px) {
    .bluegradient .topnav div[class^='col-'] {
      text-align: left;
      transition: all 0.65s; }
    .bluegradient .topnav a {
      width: auto !important;
      transition: all 0.65s; } }
  @media (min-width: 768px) {
    .bluegradient .topnav a {
      color: #ffed00;
      #transition: all 0.65s; }
      .bluegradient .topnav a:hover, .bluegradient .topnav a:focus {
        text-decoration: none;
        color: #fff; }
    .bluegradient .topnav a#lang {
      background-size: 34px 34px;
      background-position: right 35px top;
      min-width: 70px;
      min-height: 45px;
      height: auto;
      margin-left: calc(50% - 35px);
      transition: all 0.65s; }
      .bluegradient .topnav a#lang span {
        display: block;
        color: #ffed00;
        margin-top: 26px;
        text-align: right;
        margin-right: 14px;
        font-size: 14px;
        transition: all 0.65s; }
      .bluegradient .topnav a#lang:hover span, .bluegradient .topnav a#lang.open span {
        color: #fff; }
      .bluegradient .topnav a#lang.open {
        background-image: none !important;
        color: #fff !important; }
    .bluegradient .topnav #geowrap {
      width: 170px !important;
      transition: all 0.65s; }
    .bluegradient .topnav a#geo {
      background-size: 20px 31px;
      background-position: right top;
      min-height: 45px;
      width: 100% !important;
      height: auto;
      transition: all 0.65s; }
      .bluegradient .topnav a#geo span {
        display: block;
        color: #ffed00;
        font-size: 14px;
        border: 1px solid #ffed00;
        min-width: 150px;
        padding: 6px;
        margin-top: 23px;
        margin-right: 10px;
        float: right;
        transition: all 0.65s;
        white-space: nowrap; }
      .bluegradient .topnav a#geo:hover span, .bluegradient .topnav a#geo:focus span {
        background-color: #fff;
        border-color: #fff;
        text-decoration: none;
        color: #000;
        transition: all 0.65s; }
    .bluegradient .topnav a#phone {
      background-size: 27px 26px;
      min-height: 45px;
      height: auto;
      color: #ffed00;
      transition: all 0.65s; }
      .bluegradient .topnav a#phone span {
        color: #ffed00;
        display: block;
        margin-top: 25px;
        margin-left: 28px;
        font-size: 14px;
        transition: all 0.65s; }
      .bluegradient .topnav a#phone:hover span {
        color: #fff; } }
  @media (min-width: 1025px) {
    .bluegradient .topnav a {
      color: #ffed00;
      transition: all 0.65s; }
      .bluegradient .topnav a:hover, .bluegradient .topnav a:focus {
        text-decoration: none; }
    .bluegradient .topnav a#lang {
      background-size: 26px 26px;
      min-width: 62px;
      min-height: 45px;
      height: auto;
      transition: all 0.65s; }
      .bluegradient .topnav a#lang span {
        display: block;
        margin-top: 11px;
        margin-right: 8px;
        font-size: 18px;
        transition: all 0.65s; }
    .bluegradient .topnav #geowrap {
      width: 200px !important;
      transition: all 0.65s; }
    .bluegradient .topnav a#geo {
      background-size: 20px 31px;
      min-height: 45px;
      height: auto; }
      .bluegradient .topnav a#geo span {
        display: block;
        font-size: 16px;
        min-width: 180px;
        padding: 6px;
        transition: all 0.65s; }
      .bluegradient .topnav a#geo:hover span, .bluegradient .topnav a#geo:focus span {
        transition: all 0.65s; }
    .bluegradient .topnav a#phone {
      background-size: 27px 26px;
      min-height: 45px;
      height: auto;
      color: #ffed00;
      transition: all 0.65s; }
      .bluegradient .topnav a#phone span {
        display: block;
        margin-top: 25px;
        font-size: 16px;
        transition: all 0.65s; } }
  @media (min-width: 1440px) {
    .bluegradient .topnav a {
      color: #ffed00;
      transition: all 0.65s; }
      .bluegradient .topnav a:hover, .bluegradient .topnav a:focus {
        text-decoration: none; }
    .bluegradient .topnav a#lang {
      background-size: 26px 26px;
      min-width: 62px;
      min-height: 45px;
      height: auto;
      transition: all 0.65s; }
      .bluegradient .topnav a#lang span {
        display: block;
        margin-top: 11px;
        margin-right: 8px;
        font-size: 18px;
        transition: all 0.65s; }
    .bluegradient .topnav #geowrap {
      width: 260px !important;
      transition: all 0.65s; }
    .bluegradient .topnav a#geo {
      background-size: 32px 48px;
      background-position: right top;
      min-height: 54px;
      height: auto; }
      .bluegradient .topnav a#geo span {
        display: block;
        font-size: 22px;
        min-width: 230px;
        padding: 6px;
        margin-top: 35px;
        margin-right: 15px;
        transition: all 0.65s; }
      .bluegradient .topnav a#geo:hover span, .bluegradient .topnav a#geo:focus span {
        transition: all 0.65s; }
    .bluegradient .topnav a#phone {
      background-size: 41px 41px;
      min-height: 54px;
      height: auto;
      color: #ffed00;
      transition: all 0.65s; }
      .bluegradient .topnav a#phone span {
        display: block;
        margin-top: 37px;
        font-size: 22px;
        transition: all 0.65s; } }

@media (min-width: 768px) {
  .fixed.affix .bluegradient .topnav {
    padding-top: 11px; } }
@media (min-width: 1025px) {
  .fixed.affix .bluegradient .topnav {
    padding-top: 22px; }
    .fixed.affix .bluegradient .topnav #phone {
      background-size: 27px 26px;
      min-height: 45px;
      height: auto; }
    .fixed.affix .bluegradient .topnav #phone span {
      font-size: 16px;
      margin-top: 24px; }
    .fixed.affix .bluegradient .topnav #geo {
      background-size: 20px 31px;
      min-height: 45px;
      height: auto; }
      .fixed.affix .bluegradient .topnav #geo span {
        font-size: 16px;
        margin-top: 24px;
        margin-right: 9px; }
    .fixed.affix .bluegradient .topnav #lang {
      background-size: 26px 26px;
      min-width: 62px;
      min-height: 28px;
      height: auto; }
      .fixed.affix .bluegradient .topnav #lang span {
        font-size: 16px;
        margin-top: 14px;
        margin-right: 10px; }
    .fixed.affix .bluegradient .topnav div.col-xs-4.absolute {
      position: absolute;
      bottom: 11px;
      right: 10px; }
      .fixed.affix .bluegradient .topnav div.col-xs-4.absolute .dropdown_lang {
        top: 70px; } }

.bluegradient .logo {
  transition: all 0.65s;
  padding-top: 22px; }
  @media (min-width: 768px) {
    .bluegradient .logo {
      padding-top: 22px; } }
  @media (min-width: 1025px) {
    .bluegradient .logo {
      padding-top: 0px; } }
  .bluegradient .logo a {
    display: block;
    text-align: center;
    margin: auto;
    width: calc(100% - 140px);
    transition: all 0.65s; }
    @media (min-width: 1440px) {
      .bluegradient .logo a {
        width: calc(100% - 500px); } }
  .bluegradient .logo img {
    max-width: 154px;
    margin: auto;
    transition: all 0.65s;
    height: 39px;
    max-height: 39px; }
  @media (min-width: 768px) {
    .bluegradient .logo img {
      max-width: 357px;
      height: 90px;
      max-height: 90px; } }
  @media (min-width: 1025px) {
    .bluegradient .logo img {
      max-width: 100%;
      margin-top: -72px;
      width: auto;
      height: 115px;
      max-height: 115px; } }

.fixed.affix .logo {
  padding-top: 11px; }
  .fixed.affix .logo img {
    max-width: 144px;
    margin: auto;
    height: 36px;
    max-height: 36px; }
  @media (min-width: 768px) {
    .fixed.affix .logo {
      padding-top: 11px; }
      .fixed.affix .logo img {
        max-width: 190px;
        height: 48px;
        max-height: 48px; } }
  @media (min-width: 1025px) {
    .fixed.affix .logo {
      padding-top: 0px; }
      .fixed.affix .logo img {
        max-width: 240px;
        margin-top: -43px;
        height: 61px;
        max-height: 61px; } }

.navbar-header {
  float: none;
  position: absolute;
  right: 36px;
  top: 5px;
  transition: all 0.65s; }
  .navbar-header img {
    max-width: 24px !important;
    transition: all 0.65s; }
  .navbar-header button.hamburger img {
    max-width: 34px !important;
    height: 35px !important; }
  @media (min-width: 768px) {
    .navbar-header {
      right: 36px;
      top: 35px; }
      .navbar-header img {
        max-width: 56px !important; } }
  @media (min-width: 1020px) {
    .navbar-header {
      right: 45px;
      top: 35px; } }

.fixed.affix .navbar-header {
  top: 0px; }
  @media (min-width: 768px) {
    .fixed.affix .navbar-header {
      top: 10px; } }
  @media (min-width: 1020px) {
    .fixed.affix .navbar-header {
      top: 10px; } }

/*.mobilemenu.affixed {
    top: 100px !important;
    .container-fluid {
        bottom: 0;
    }
    #navigation>ul {
        max-height: 334px;
    }
}*/
@media (min-width: 768px) {
  /* .mobilemenu.affixed {
      top: -60px !important;
      .container-fluid {
          top: 576px;
      }
  } */ }
body {
  background-color: #fff;
  font-family: "Swiss-Light", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.48; }
  body.overlayOpen {
    overflow: hidden; }

@media (min-width: 768px) {
  .container {
    width: 100%; } }
@media (min-width: 1025px) {
  .container {
    width: 1003px; } }
@media (min-width: 1440px) {
  .container {
    width: 1370px; } }

sup {
  vertical-align: super;
  font-size: 50%; }

* {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; }

a {
  color: #25386c; }

a:focus, a:hover, button:focus, button:hover, .btn:focus, .teaserRabatt .yellowcaption h4 a:focus, .teaserRabatt .yellowcaption p a:focus, main .btn-yellow:focus, main .single-link-news > a:focus, main .btn-small:focus, .btn:hover, .teaserRabatt .yellowcaption h4 a:hover, .teaserRabatt .yellowcaption p a:hover, main .btn-yellow:hover, main .single-link-news > a:hover, main .btn-small:hover, .btn-small:focus, .btn-small:hover {
  outline: 0; }

.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
  position: static !important;
  margin-top: -3px;
  display: inline-block;
  vertical-align: middle; }

.container, .container-fluid, .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  padding-left: 4%;
  padding-right: 4%; }

.row {
  margin-left: -4%;
  margin-right: -4%; }

@media (min-width: 768px) {
  .container, .container-fluid, .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    padding-left: 35px;
    padding-right: 35px; }

  .row {
    margin-left: -35px;
    margin-right: -35px; } }
/* HEADER */
header {
  position: relative;
  width: 100%; }

.fixed {
  width: 100%;
  height: 121px;
  position: fixed;
  transition: 0.40s height; }
  .fixed.affix {
    height: 100px;
    transition: 0.65s height 0.15s; }

@media (min-width: 768px) {
  .fixed {
    height: 200px; }
    .fixed.affix {
      height: 140px; } }
@media (min-width: 1025px) {
  .fixed {
    height: 248px; }
    .fixed.affix {
      height: 148px; } }
.fixed {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 16; }

.menuoverlay {
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
  height: 100%;
  width: 100%;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 0.65s; }

.menuoverlay.active {
  opacity: 0.75;
  visibility: visible;
  transition: all 0.65s; }

/*.mobilemenu {
    position: fixed;
    right: 0;
    top: 121px;
    width: 100%;
    height: 100%;
    @media (min-height: 480px) {
        height: 100%;
    }
    z-index: 20;
    overflow: hidden;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: $transition-fast;
    .container-fluid {
        background-color: $primary;
        position: fixed;
        width: 100%;
        bottom: 0;
        .row {
            .socialbar {
                padding-top: 10px;
                padding-bottom: 4px;
                text-align: right;
                ul {
                    display: block;
                    margin-bottom: 0px;
                    li {
                        display: inline-block;
                        width: auto;
                        a {
                            background-color: inherit;
                            text-decoration: none;
                            color: inherit;
                            transition: none;
                            display: inline-block;
                            padding: 0;
                            &:hover, &:focus {
                                transition: none;
                                color: inherit;
                                text-decoration: none;
                                background-color: inherit;
                            }
                            img {
                                min-height: 26px;
                                width: 26px;
                            }
                        }
                    }
                }
            }
        }
    }
} */
/*.mobilemenu.open {
    opacity: 1;
    visibility: visible;
    transition: $transition-fast;
    background-color: #fff;
}
.mobilemenu>#navigation {
    position: absolute;
    width: 100%;
    left: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: #fff;
    &::-webkit-scrollbar {
        display: none;
    }
    >ul {
        width: 100%;
        height: auto;
        max-height: 153px;
        @media (min-height: 480px) {
            height: auto;
            max-height: 313px;
        }
        display: block;
        >li {
            position: relative;
        }
        >li>a {
            margin-right: 70px;
        }
        >li a.navcaret {
            position: absolute;
            right: -60px;
            top: 0;
            height: 47px;
            width: 60px;
            padding: 0;
            border: 0;
            border-left: 1px solid $primary;
            background-image: url(../img/nav_arrow_blue.png);
            background-size: auto 12px;
            background-position: center center;
            background-repeat: no-repeat;
            cursor: pointer;
            &:hover, &:focus {
                background-image: url(../img/nav_arrow_blue.png);
                background-size: auto 12px;
                background-position: center center;
                background-repeat: no-repeat;
            }
        }
        >li a {
            color: $primary;
            font-size: 18px;
            transition: $transition-fast;
            border: 1px solid;
            border-color: transparent;
            padding: 10px 0px;
            padding-left: 25px;
            text-align: left;
            text-transform: uppercase;
            background-image: none;
            background-size: auto 24px;
            background-position: left -1px center;
            &:hover, &:focus {
                background-color: transparent;
                text-decoration: none;
                color: $primary;
                transition: $transition-fast;
                background-image: url(../img/arrow_blue.png);
                background-repeat: no-repeat;
                background-size: auto 24px;
            }
        }
        li.active>a:not(.navcaret) {
            background-image: url(../img/arrow_blue.png);
            background-repeat: no-repeat;
            background-size: auto 24px;
            color: $primary;
        }
        li.active>a.navcaret {
            background-image: url(../img/nav_arrow_blue.png);
        }
        .child>li>a {
            display: block;
            margin-right: 70px;
            &.navcaret {
                margin-right: 0;
                right: 10px;
            }
        }
        .child>li.parent {
            position: relative;
        }
        li.parent.active>.child, .child>li.parent.active>.child {
            display: block;
        }
    }
    li {
        width: 100%;
    }
}*/
@media (min-width: 768px) {
  .menuoverlay {
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 15;
    height: 100%;
    width: 100%;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: all 0.65s; }

  .menuoverlay.active {
    opacity: 0.75;
    visibility: visible;
    transition: all 0.65s; }

  /*.mobilemenu {
      position: fixed;
      right: 0;
      top: 0;
      width: 323px;
      height: 100%;
      z-index: 20;
      overflow: hidden;
      display: block;
      visibility: hidden;
      opacity: 0;
      transition: $transition-fast;
      .container-fluid {
          background-color: $primary;
          position: fixed;
          width: 323px;
          top: 636px;
          .row {
              .socialbar {
                  padding-top: 10px;
                  padding-bottom: 4px;
                  text-align: right;
                  ul {
                      display: block;
                      margin-bottom: 0px;
                      li {
                          display: inline-block;
                          width: auto;
                          a {
                              background-color: inherit;
                              text-decoration: none;
                              color: inherit;
                              transition: none;
                              display: inline-block;
                              padding: 0;
                              &:hover, &:focus {
                                  transition: none;
                                  color: inherit;
                                  text-decoration: none;
                                  background-color: inherit;
                              }
                              img {
                                  min-height: 26px;
                                  width: 26px;
                              }
                          }
                      }
                  }
              }
          }
      }
  }
  .mobilemenu.open {
      opacity: 1;
      visibility: visible;
      transition: $transition-fast;
      background-color: #fff;
  }
  .mobilemenu>#navigation {
      position: absolute;
      left: 0;
      top: 200px;
      overflow-x: hidden;
      overflow-y: scroll;
      background-color: #fff;
      &::-webkit-scrollbar {
          display: none;
      }
      >ul {
          width: 323px;
          height: 436px;
          display: block;
          >li {
              position: relative;
          }
          >li>a {
              margin-right: 70px;
          }
          >li a.navcaret {
              position: absolute;
              right: -60px;
              top: 0;
              height: 47px;
              width: 60px;
              padding: 0;
              border: 0;
              border-left: 1px solid $primary;
              background-image: url(../img/nav_arrow_blue.png);
              background-size: auto 12px;
              background-position: center center;
              background-repeat: no-repeat;
              cursor: pointer;
              &:hover, &:focus {
                  background-image: url(../img/nav_arrow_blue.png);
                  background-size: auto 12px;
                  background-position: center center;
                  background-repeat: no-repeat;
              }
          }
          >li a {
              color: $primary;
              font-size: 18px;
              transition: $transition-fast;
              border: 1px solid;
              border-color: transparent;
              padding: 10px 0px;
              padding-left: 25px;
              text-align: left;
              text-transform: uppercase;
              background-image: none;
              background-size: auto 24px;
              background-position: left -1px center;
              &:hover, &:focus {
                  background-color: transparent;
                  text-decoration: none;
                  color: $primary;
                  transition: $transition-fast;
                  background-image: url(../img/arrow_blue.png);
                  background-repeat: no-repeat;
                  background-size: auto 24px;
              }
          }
          li.active>a:not(.navcaret) {
              background-image: url(../img/arrow_blue.png);
              background-repeat: no-repeat;
              background-size: auto 24px;
              color: $primary;
          }
          li.active>a.navcaret {
              background-image: url(../img/nav_arrow_blue.png);
          }
          .child>li>a {
              display: block;
              margin-right: 70px;
              &.navcaret {
                  margin-right: 0;
                  right: 10px;
              }
          }
          .child>li.parent {
              position: relative;
          }
      }
      li {
          width: 100%;
      }
  } */ }
.headdisplay img {
  width: 100%; }
.headdisplay .picture {
  position: relative; }
.headdisplay .picture .slick-slide {
  position: relative; }
.headdisplay .margin-helper {
  height: 121px; }
  @media (min-width: 768px) {
    .headdisplay .margin-helper {
      height: 200px; } }
  @media (min-width: 1025px) {
    .headdisplay .margin-helper {
      height: 248px; } }
.headdisplay .caption {
  position: relative;
  padding: 30px 4%;
  background-color: #ffed00; }
  @media (min-width: 960px) {
    .headdisplay .caption {
      position: absolute;
      background-color: transparent;
      padding: 0;
      left: 50%;
      top: 50%;
      right: 0;
      bottom: 0;
      margin: auto;
      max-width: 700px;
      max-height: 300px; } }
  @media (min-width: 1025px) {
    .headdisplay .caption {
      top: 40%; } }
  @media (min-width: 1440px) {
    .headdisplay .caption {
      left: 40%; } }
  .headdisplay .caption .line, .headdisplay .caption .line_small {
    display: block;
    line-height: 36px;
    padding: 0;
    width: auto;
    font-size: 23px;
    font-family: "Swiss-Light", Arial, sans-serif; }
    .headdisplay .caption .line span, .headdisplay .caption .line_small span {
      display: inline-block;
      background-color: #ffed00;
      color: #25386c;
      padding: 0 0.25ex;
      margin: -1px; }
    @media (min-width: 768px) {
      .headdisplay .caption .line, .headdisplay .caption .line_small {
        line-height: 1;
        float: left;
        margin-right: 5px;
        margin-bottom: 10px; } }
    @media (min-width: 960px) {
      .headdisplay .caption .line, .headdisplay .caption .line_small {
        line-height: 0.5;
        float: none;
        margin-right: 0;
        margin-bottom: 0; }
        .headdisplay .caption .line span, .headdisplay .caption .line_small span {
          padding: 13px 0.25ex; }
          .headdisplay .caption .line span:first-of-type, .headdisplay .caption .line_small span:first-of-type {
            padding-left: 10px; }
          .headdisplay .caption .line span:last-of-type, .headdisplay .caption .line_small span:last-of-type {
            padding-right: 10px; } }
    @media (min-width: 1025px) {
      .headdisplay .caption .line, .headdisplay .caption .line_small {
        font-size: 30px;
        line-height: 0.7; }
        .headdisplay .caption .line span, .headdisplay .caption .line_small span {
          padding: 15px 0.25ex; } }
  .headdisplay .caption .line_small {
    font-size: 15px;
    font-weight: 400; }
    @media (min-width: 768px) {
      .headdisplay .caption .line_small {
        float: none;
        display: block;
        clear: both; } }
    @media (min-width: 960px) {
      .headdisplay .caption .line_small {
        display: table; } }
    @media (min-width: 1025px) {
      .headdisplay .caption .line_small {
        font-size: 16px;
        display: table; } }
.headdisplay .googlemap #map {
  min-height: 50vh !important;
  margin-top: 121px; }
  @media (min-width: 768px) {
    .headdisplay .googlemap #map {
      margin-top: 200px; } }
  @media (min-width: 1025px) {
    .headdisplay .googlemap #map {
      margin-right: 530px;
      margin-top: 0;
      min-height: 100vh !important; } }
.headdisplay .gmapoverlay {
  top: 0;
  right: 0;
  min-height: 100%;
  background-color: #25386c;
  color: #fff;
  padding-bottom: 80px; }
  @media (min-width: 1025px) {
    .headdisplay .gmapoverlay {
      position: absolute !important;
      max-width: 530px;
      min-width: 530px;
      padding-top: 248px;
      max-height: 100%;
      padding-bottom: 0px; } }
  .headdisplay .gmapoverlay a {
    color: #ffed00; }
  .headdisplay .gmapoverlay .countryselect {
    position: relative; }
    .headdisplay .gmapoverlay .countryselect .zelect {
      text-transform: uppercase;
      position: relative; }
      .headdisplay .gmapoverlay .countryselect .zelect .zelected {
        background-color: #ffed00;
        color: #25386c;
        padding: 20px 35px;
        cursor: pointer;
        font-size: 20px; }
        .headdisplay .gmapoverlay .countryselect .zelect .zelected:after {
          content: "";
          transform: rotateZ(90deg);
          background-image: url(../img/arrow_blue.png);
          background-size: auto 40px;
          width: 26px;
          height: 40px;
          position: absolute;
          top: -7px;
          right: 35px;
          background-repeat: no-repeat;
          transition: all 0.65s; }
      .headdisplay .gmapoverlay .countryselect .zelect.open .zelected:after {
        transform: rotateZ(-90deg);
        transition: all 0.65s;
        top: 7px; }
      .headdisplay .gmapoverlay .countryselect .zelect .dropdown {
        background-color: #ffed00;
        color: #25386c; }
        .headdisplay .gmapoverlay .countryselect .zelect .dropdown ol {
          padding: 0;
          list-style-type: none; }
          .headdisplay .gmapoverlay .countryselect .zelect .dropdown ol li:first-of-type {
            border-top: 0;
            display: none; }
          .headdisplay .gmapoverlay .countryselect .zelect .dropdown ol li {
            padding-top: 10px;
            padding-bottom: 10px;
            padding-left: 35px;
            padding-right: 35px;
            cursor: pointer;
            border-top: 1px solid #25386c; }
        .headdisplay .gmapoverlay .countryselect .zelect .dropdown .zearch-container {
          display: none; }
  .headdisplay .gmapoverlay .currentPlace {
    margin-top: 30px; }
    .headdisplay .gmapoverlay .currentPlace .placeimg {
      margin-top: 20px;
      margin-bottom: 20px; }
    .headdisplay .gmapoverlay .currentPlace .placelogo {
      max-width: 200px;
      margin: auto; }
    .headdisplay .gmapoverlay .currentPlace .row {
      margin-left: 0px;
      margin-right: 0px; }
  .headdisplay .gmapoverlay .route {
    margin-top: 22px; }
    .headdisplay .gmapoverlay .route h4 {
      padding: 15px 35px 15px 35px;
      background-color: #ffed00;
      color: #25386c;
      text-transform: uppercase;
      margin-bottom: 20px; }
    .headdisplay .gmapoverlay .route form {
      padding-left: 35px;
      padding-right: 35px; }
      .headdisplay .gmapoverlay .route form .btn, .headdisplay .gmapoverlay .route form .teaserRabatt .yellowcaption h4 a, .teaserRabatt .yellowcaption h4 .headdisplay .gmapoverlay .route form a, .headdisplay .gmapoverlay .route form .teaserRabatt .yellowcaption p a, .teaserRabatt .yellowcaption p .headdisplay .gmapoverlay .route form a, .headdisplay .gmapoverlay .route form main .btn-yellow, main .headdisplay .gmapoverlay .route form .btn-yellow, .headdisplay .gmapoverlay .route form main .single-link-news > a, main .headdisplay .gmapoverlay .route form .single-link-news > a, .headdisplay .gmapoverlay .route form main .btn-small, main .headdisplay .gmapoverlay .route form .btn-small {
        background-color: #ffed00;
        color: #25386c;
        background-image: url(../img/arrow_white.png);
        background-position: left center;
        background-repeat: no-repeat;
        background-size: auto 22px;
        transition: all 0.65s;
        display: inline-block;
        margin-bottom: 15px;
        height: auto;
        font-size: 18px;
        border: 0;
        padding-left: 30px !important;
        padding-right: 30px !important;
        padding-top: 6px;
        padding-bottom: 6px;
        margin-top: 20px;
        float: right;
        margin-right: 0px; }
        @media (min-width: 768px) {
          .headdisplay .gmapoverlay .route form .btn, .headdisplay .gmapoverlay .route form .teaserRabatt .yellowcaption h4 a, .teaserRabatt .yellowcaption h4 .headdisplay .gmapoverlay .route form a, .headdisplay .gmapoverlay .route form .teaserRabatt .yellowcaption p a, .teaserRabatt .yellowcaption p .headdisplay .gmapoverlay .route form a, .headdisplay .gmapoverlay .route form main .btn-yellow, main .headdisplay .gmapoverlay .route form .btn-yellow, .headdisplay .gmapoverlay .route form main .single-link-news > a, main .headdisplay .gmapoverlay .route form .single-link-news > a, .headdisplay .gmapoverlay .route form main .btn-small, main .headdisplay .gmapoverlay .route form .btn-small {
            display: inline-block; } }
        @media (min-width: 1440px) {
          .headdisplay .gmapoverlay .route form .btn, .headdisplay .gmapoverlay .route form .teaserRabatt .yellowcaption h4 a, .teaserRabatt .yellowcaption h4 .headdisplay .gmapoverlay .route form a, .headdisplay .gmapoverlay .route form .teaserRabatt .yellowcaption p a, .teaserRabatt .yellowcaption p .headdisplay .gmapoverlay .route form a, .headdisplay .gmapoverlay .route form main .btn-yellow, main .headdisplay .gmapoverlay .route form .btn-yellow, .headdisplay .gmapoverlay .route form main .single-link-news > a, main .headdisplay .gmapoverlay .route form .single-link-news > a, .headdisplay .gmapoverlay .route form main .btn-small, main .headdisplay .gmapoverlay .route form .btn-small {
            font-size: 23px;
            height: 62px;
            margin-left: 25px;
            margin-right: 2px;
            margin-bottom: 30px;
            padding-left: 53px !important;
            padding-right: 36px !important;
            padding-top: 14px;
            padding-bottom: 15px;
            background-size: auto 38px; } }
      .headdisplay .gmapoverlay .route form .btn:hover, .headdisplay .gmapoverlay .route form .teaserRabatt .yellowcaption h4 a:hover, .teaserRabatt .yellowcaption h4 .headdisplay .gmapoverlay .route form a:hover, .headdisplay .gmapoverlay .route form .teaserRabatt .yellowcaption p a:hover, .teaserRabatt .yellowcaption p .headdisplay .gmapoverlay .route form a:hover, .headdisplay .gmapoverlay .route form main .btn-yellow:hover, main .headdisplay .gmapoverlay .route form .btn-yellow:hover, .headdisplay .gmapoverlay .route form main .single-link-news > a:hover, main .headdisplay .gmapoverlay .route form .single-link-news > a:hover, .headdisplay .gmapoverlay .route form main .btn-small:hover, main .headdisplay .gmapoverlay .route form .btn-small:hover, .headdisplay .gmapoverlay .route form .btn:focus, .headdisplay .gmapoverlay .route form .teaserRabatt .yellowcaption h4 a:focus, .teaserRabatt .yellowcaption h4 .headdisplay .gmapoverlay .route form a:focus, .headdisplay .gmapoverlay .route form .teaserRabatt .yellowcaption p a:focus, .teaserRabatt .yellowcaption p .headdisplay .gmapoverlay .route form a:focus, .headdisplay .gmapoverlay .route form main .btn-yellow:focus, main .headdisplay .gmapoverlay .route form .btn-yellow:focus, .headdisplay .gmapoverlay .route form main .single-link-news > a:focus, main .headdisplay .gmapoverlay .route form .single-link-news > a:focus, .headdisplay .gmapoverlay .route form main .btn-small:focus, main .headdisplay .gmapoverlay .route form .btn-small:focus, .headdisplay .gmapoverlay .route form .btn.active, .headdisplay .gmapoverlay .route form .teaserRabatt .yellowcaption h4 a.active, .teaserRabatt .yellowcaption h4 .headdisplay .gmapoverlay .route form a.active, .headdisplay .gmapoverlay .route form .teaserRabatt .yellowcaption p a.active, .teaserRabatt .yellowcaption p .headdisplay .gmapoverlay .route form a.active, .headdisplay .gmapoverlay .route form main .active.btn-yellow, main .headdisplay .gmapoverlay .route form .active.btn-yellow, .headdisplay .gmapoverlay .route form main .single-link-news > a.active, main .headdisplay .gmapoverlay .route form .single-link-news > a.active, .headdisplay .gmapoverlay .route form main .active.btn-small, main .headdisplay .gmapoverlay .route form .active.btn-small, .headdisplay .gmapoverlay .route form main .btn-small:hover, main .headdisplay .gmapoverlay .route form .btn-small:hover, .headdisplay .gmapoverlay .route form main .btn-small:focus, main .headdisplay .gmapoverlay .route form .btn-small:focus {
        background-color: #ffed00;
        color: #25386c;
        background-image: url(../img/arrow_blue.png);
        transition: all 0.65s; }
      .headdisplay .gmapoverlay .route form:after {
        content: "";
        clear: both;
        overflow: hidden; }
    .headdisplay .gmapoverlay .route #route-details .route-steps-outer {
      padding-left: 35px;
      padding-right: 35px; }
    .headdisplay .gmapoverlay .route #route-details ol#route-steps {
      list-style-position: outside;
      padding-left: 20px; }
      .headdisplay .gmapoverlay .route #route-details ol#route-steps li {
        list-style-position: outside;
        padding-bottom: 5px;
        margin-bottom: 5px; }
    .headdisplay .gmapoverlay .route #route-details .route-steps-outer a {
      color: #ffed00;
      display: block;
      margin-bottom: 25px; }

body.mbcontact main {
  background-image: linear-gradient(to bottom, #ffed06 0%, #fff9ae 100%);
  padding-bottom: 50px; }
  @media (min-width: 1440px) {
    body.mbcontact main {
      padding-bottom: 70px; } }
  body.mbcontact main a[name="c69"] {
    display: block;
    margin-top: 50px; }
  body.mbcontact main iframe {
    border: 0; }
  body.mbcontact main iframe.gmap {
    height: 400px;
    width: 100%;
    margin-bottom: 50px; }
  body.mbcontact main div.gmapoverlay {
    background: transparent;
    position: absolute;
    width: calc(100% - 20px);
    height: 400px;
    top: 400px;
    margin-top: -400px;
    cursor: url("https://maps.gstatic.com/mapfiles/openhand_8_8.cur") 8 8, default; }
    @media (min-width: 768px) {
      body.mbcontact main div.gmapoverlay {
        width: calc(100% - 70px); } }

main {
  padding-top: 65px;
  font-size: 18px;
  font-weight: 400;
  color: #25386c; }
  @media (min-width: 1440px) {
    main {
      font-size: 23px;
      padding-top: 65px; } }
  main > div:last-of-type {
    margin-bottom: 50px; }
    @media (min-width: 1440px) {
      main > div:last-of-type {
        margin-bottom: 70px; } }
    main > div:last-of-type.noborder, main > div:last-of-type.form-bewerbung {
      margin-bottom: 0; }
  main .container + .container {
    margin-top: 80px; }
  main img {
    display: block;
    max-width: 100%;
    height: auto; }
  main .news-content img {
    max-width: initial; }
  main .pull-left.imgleft {
    margin-bottom: 10px;
    float: none !important; }
    @media (min-width: 768px) {
      main .pull-left.imgleft {
        float: left !important;
        margin-right: 35px;
        margin-bottom: 35px; } }
  main .pull-right.imgright {
    margin-bottom: 10px;
    float: none !important; }
    @media (min-width: 768px) {
      main .pull-right.imgright {
        float: right !important;
        margin-left: 35px;
        margin-bottom: 35px; } }
  main label {
    font-weight: 400; }
  main .form-group, main .powermail_fieldwrap_anrede {
    margin-bottom: 25px; }
  main .form-control {
    border: 0; }
  main input[type="radio"], main input[type="checkbox"] {
    margin: 10px 0 0; }
  main .form {
    margin-top: 50px; }
  main h1, main h2, main h3, main h4, main h5, main h6, main strong {
    font-family: "Swiss-Medium", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.48;
    color: #25386c; }
    @media (min-width: 1440px) {
      main h1, main h2, main h3, main h4, main h5, main h6, main strong {
        font-size: 23px; } }
    main h1:first-of-type, main h2:first-of-type, main h3:first-of-type, main h4:first-of-type, main h5:first-of-type, main h6:first-of-type, main strong:first-of-type {
      margin-top: 0px; }
  main strong {
    font-weight: normal; }
  main .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f3f7fb; }
  main .table > thead > tr > th, main .table > tbody > tr > th, main .table > tfoot > tr > th, main .table > thead > tr > td, main .table > tbody > tr > td, main .table > tfoot > tr > td {
    border-top-color: #ececec;
    padding: 12px;
    word-wrap: break-word;
    white-space: pre-wrap !important;
    min-width: auto;
    width: auto !important;
    max-width: 350px !important; }
    @media (min-width: 768px) {
      main .table > thead > tr > th, main .table > tbody > tr > th, main .table > tfoot > tr > th, main .table > thead > tr > td, main .table > tbody > tr > td, main .table > tfoot > tr > td {
        min-width: auto;
        max-width: 100%;
        white-space: normal !important; } }
  main .table > thead > tr td:first-of-type, main .table > thead > tr th:first-of-type, main .table > tbody > tr td:first-of-type, main .table > tbody > tr th:first-of-type, main .table > tfoot > tr td:first-of-type, main .table > tfoot > tr th:first-of-type, main .table > thead > tr td:first-of-type, main .table > thead > tr th:first-of-type, main .table > tbody > tr td:first-of-type, main .table > tbody > tr th:first-of-type, main .table > tfoot > tr td:first-of-type, main .table > tfoot > tr th:first-of-type {
    font-weight: bold; }
  main .yellowbox {
    margin-top: 50px;
    height: 300px;
    padding-top: 20px;
    background-image: url("../img/tools.png"), linear-gradient(to bottom, #ffed06 0%, #fff9ae 100%);
    background-repeat: no-repeat;
    background-position: center bottom, center center;
    background-size: 100% auto, cover; }
    @media (min-width: 768px) {
      main .yellowbox {
        padding-top: 75px;
        height: 394px; } }
    @media (min-width: 1440px) {
      main .yellowbox {
        padding-top: 120px;
        height: 612px; } }
    main .yellowbox h2 {
      margin-bottom: 22px; }
    main .yellowbox .btn, main .yellowbox .teaserRabatt .yellowcaption h4 a, .teaserRabatt .yellowcaption h4 main .yellowbox a, main .yellowbox .teaserRabatt .yellowcaption p a, .teaserRabatt .yellowcaption p main .yellowbox a, main .yellowbox .btn-yellow, main .yellowbox .single-link-news > a, main .yellowbox .btn-small {
      margin-right: 15px; }
  main .noborder > .yellowbox_nobg .container > .row > div[class^='col-']:last-of-type, main .noborder > .careerdropdown .container > .row > div[class^='col-']:last-of-type {
    border-top: 0 !important; }
    @media (min-width: 768px) {
      main .noborder > .yellowbox_nobg .container > .row > div[class^='col-']:last-of-type, main .noborder > .careerdropdown .container > .row > div[class^='col-']:last-of-type {
        border-left: 0 !important; } }
  main .noborder > .yellowbox_nobg .container > .row > div[class^='col-']:first-of-type, main .noborder > .careerdropdown .container > .row > div[class^='col-']:first-of-type {
    border-bottom: 0 !important; }
    @media (min-width: 768px) {
      main .noborder > .yellowbox_nobg .container > .row > div[class^='col-']:first-of-type, main .noborder > .careerdropdown .container > .row > div[class^='col-']:first-of-type {
        border-right: 0 !important; } }
  main .yellowbox_nobg, main .careerdropdown {
    margin-top: 50px;
    height: auto;
    padding-top: 20px;
    background-image: linear-gradient(to bottom, #ffed06 0%, #fff9ae 100%);
    background-repeat: no-repeat;
    background-position: center bottom, center center;
    background-size: 100% auto, cover; }
    @media (min-width: 768px) {
      main .yellowbox_nobg, main .careerdropdown {
        padding-top: 75px;
        padding-bottom: 75px; } }
    @media (min-width: 1440px) {
      main .yellowbox_nobg, main .careerdropdown {
        padding-top: 120px;
        padding-bottom: 120px; } }
    main .yellowbox_nobg .form, main .careerdropdown .form {
      margin-top: 0px; }
    main .yellowbox_nobg h2, main .careerdropdown h2 {
      margin-bottom: 22px; }
    main .yellowbox_nobg .btn, main .careerdropdown .btn, main .yellowbox_nobg .teaserRabatt .yellowcaption h4 a, .teaserRabatt .yellowcaption h4 main .yellowbox_nobg a, main .careerdropdown .teaserRabatt .yellowcaption h4 a, .teaserRabatt .yellowcaption h4 main .careerdropdown a, main .yellowbox_nobg .teaserRabatt .yellowcaption p a, .teaserRabatt .yellowcaption p main .yellowbox_nobg a, main .careerdropdown .teaserRabatt .yellowcaption p a, .teaserRabatt .yellowcaption p main .careerdropdown a, main .yellowbox_nobg .btn-yellow, main .careerdropdown .btn-yellow, main .yellowbox_nobg .single-link-news > a, main .careerdropdown .single-link-news > a, main .yellowbox_nobg .btn-small, main .careerdropdown .btn-small {
      margin-right: 15px; }
    @media (min-width: 768px) {
      main .yellowbox_nobg .container > .row, main .careerdropdown .container > .row {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex; } }
    main .yellowbox_nobg .container > .row > div[class^='col-']:first-of-type, main .careerdropdown .container > .row > div[class^='col-']:first-of-type {
      border-bottom: 1px solid #25386c;
      padding-bottom: 35px; }
      @media (min-width: 768px) {
        main .yellowbox_nobg .container > .row > div[class^='col-']:first-of-type, main .careerdropdown .container > .row > div[class^='col-']:first-of-type {
          border-right: 1px solid #25386c;
          border-bottom: 0;
          padding-bottom: 0px; } }
      main .yellowbox_nobg .container > .row > div[class^='col-']:first-of-type img:first-of-type, main .careerdropdown .container > .row > div[class^='col-']:first-of-type img:first-of-type {
        margin-bottom: 60px; }
        @media (min-width: 603px) {
          main .yellowbox_nobg .container > .row > div[class^='col-']:first-of-type img:first-of-type, main .careerdropdown .container > .row > div[class^='col-']:first-of-type img:first-of-type {
            margin-bottom: 80px; } }
        @media (min-width: 768px) {
          main .yellowbox_nobg .container > .row > div[class^='col-']:first-of-type img:first-of-type, main .careerdropdown .container > .row > div[class^='col-']:first-of-type img:first-of-type {
            margin-bottom: 100px; } }
    main .yellowbox_nobg .container > .row > div[class^='col-']:last-of-type, main .careerdropdown .container > .row > div[class^='col-']:last-of-type {
      border-top: 1px solid #25386c;
      padding-top: 35px; }
      @media (min-width: 768px) {
        main .yellowbox_nobg .container > .row > div[class^='col-']:last-of-type, main .careerdropdown .container > .row > div[class^='col-']:last-of-type {
          border-left: 1px solid #25386c;
          border-top: 0;
          padding-top: 0px; } }
    main .yellowbox_nobg div.bottomcontent, main .careerdropdown div.bottomcontent {
      margin-top: 80px; }
      main .yellowbox_nobg div.bottomcontent .csc-textpic-text, main .careerdropdown div.bottomcontent .csc-textpic-text {
        margin-top: 40px; }
  main .form-bewerbung {
    margin-top: -65px;
    height: auto;
    padding-top: 20px;
    padding-top: 20px;
    background-image: linear-gradient(to bottom, #ffed06 0%, #fff9ae 100%);
    background-repeat: no-repeat;
    background-position: center bottom, center center;
    background-size: 100% auto, cover; }
    @media (min-width: 1440px) {
      main .form-bewerbung {
        margin-top: -65px; } }
    @media (min-width: 768px) {
      main .form-bewerbung {
        padding-top: 75px;
        padding-bottom: 75px; } }
    @media (min-width: 1440px) {
      main .form-bewerbung {
        padding-top: 120px;
        padding-bottom: 120px; } }
    main .form-bewerbung .form-group input {
      padding: 15px; }
    main .form-bewerbung fieldset.upload-fieldset .form-group {
      margin-bottom: 75px; }
    @media screen and (min-width: 768px) {
      main .form-bewerbung form .sm-split > div:first-of-type {
        padding-right: 5px; }
      main .form-bewerbung form .sm-split > div:last-of-type {
        padding-left: 5px; } }
    @media screen and (min-width: 1025px) {
      main .form-bewerbung form .md-split > div:first-of-type {
        padding-right: 5px; }
      main .form-bewerbung form .md-split > div:last-of-type {
        padding-left: 5px; } }
    main .form-bewerbung .upload-filename-remove {
      max-height: 42px;
      height: 42px;
      background-color: #e0e7ed;
      position: relative; }
      main .form-bewerbung .upload-filename-remove .filename, main .form-bewerbung .upload-filename-remove .remove-file {
        display: inline-block;
        vertical-align: top;
        padding: 9px 15px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        height: 42px; }
        @media (min-width: 768px) {
          main .form-bewerbung .upload-filename-remove .filename, main .form-bewerbung .upload-filename-remove .remove-file {
            width: 150px;
            max-width: 150px;
            font-size: 16px;
            padding: 9px 15px; } }
        @media (min-width: 1025px) {
          main .form-bewerbung .upload-filename-remove .filename, main .form-bewerbung .upload-filename-remove .remove-file {
            width: 185px;
            max-width: 185px;
            font-size: 18px;
            padding: 8px 15px; } }
    main .form-bewerbung label.upload-button {
      max-height: 42px;
      height: 42px;
      padding-top: 7px;
      display: block;
      margin-top: 20px;
      position: absolute;
      margin-right: 0;
      margin-bottom: 0;
      width: 240px; }
      @media (min-width: 1440px) {
        main .form-bewerbung label.upload-button {
          padding-top: 4px;
          padding-bottom: 5px;
          position: absolute;
          right: 0;
          margin-top: 0;
          display: inline-block; } }
  main .careerdropdown {
    margin-bottom: 80px; }
    main .careerdropdown h4 {
      font-family: "Swiss-Light", Arial, sans-serif; }
    main .careerdropdown .fehlermeldung {
      display: none; }
    main .careerdropdown div[class^='col-']:last-of-type {
      border-top: 0 !important;
      padding-top: 0px !important; }
      @media (min-width: 768px) {
        main .careerdropdown div[class^='col-']:last-of-type {
          border-left: 0 !important;
          border-top: 0 !important;
          padding-top: 0px !important; } }
    main .careerdropdown div[class^='col-']:first-of-type {
      border-bottom: 0 !important;
      padding-bottom: 0px !important; }
      @media (min-width: 768px) {
        main .careerdropdown div[class^='col-']:first-of-type {
          border-right: 0 !important;
          border-bottom: 0 !important;
          padding-bottom: 0px !important; } }
    main .careerdropdown .controls > ul {
      margin-left: 0px !important;
      padding-left: 30px;
      padding-right: 30px; }
    main .careerdropdown .controls > ul > li {
      padding-left: 5px !important;
      padding-right: 5px !important;
      position: relative;
      margin-bottom: 10px; }
      @media (min-width: 768px) {
        main .careerdropdown .controls > ul > li {
          padding-left: 5px !important;
          padding-right: 5px !important; } }
      @media (min-width: 1024px) {
        main .careerdropdown .controls > ul > li {
          margin-bottom: 0px; } }
      main .careerdropdown .controls > ul > li > h4 {
        margin-bottom: 3px; }
    main .careerdropdown #accordion {
      margin-top: 20px; }
    main .careerdropdown .panel.mix {
      display: none; }
      main .careerdropdown .panel.mix a[role="button"] {
        text-decoration: none; }
        main .careerdropdown .panel.mix a[role="button"]:hover, main .careerdropdown .panel.mix a[role="button"]:focus, main .careerdropdown .panel.mix a[role="button"].active {
          text-decoration: none; }
      main .careerdropdown .panel.mix .panel-heading {
        padding: 25px 15px; }
        main .careerdropdown .panel.mix .panel-heading.expanded h4:before {
          transform: rotateZ(90deg);
          transition: all 0.65s;
          left: -10px; }
          @media (min-width: 480px) {
            main .careerdropdown .panel.mix .panel-heading.expanded h4:before {
              left: -5px; } }
        main .careerdropdown .panel.mix .panel-heading h4 {
          font-family: "Swiss-Light", Arial, sans-serif;
          padding-bottom: 10px;
          margin-bottom: 10px;
          font-size: 18px;
          border-bottom: 2px solid #25386c; }
          main .careerdropdown .panel.mix .panel-heading h4:before {
            content: "";
            background-image: url(../img/arrow_yellow.png);
            background-repeat: no-repeat;
            background-size: auto 20px;
            height: 20px;
            width: 20px;
            position: absolute;
            left: -10px;
            top: 3px;
            transition: all 0.65s; }
            @media (min-width: 480px) {
              main .careerdropdown .panel.mix .panel-heading h4:before {
                left: -5px; } }
            @media (min-width: 768px) {
              main .careerdropdown .panel.mix .panel-heading h4:before {
                left: 5px; } }
            @media (min-width: 1440px) {
              main .careerdropdown .panel.mix .panel-heading h4:before {
                background-size: auto 20px;
                height: 20px;
                width: 20px;
                position: absolute;
                left: 5px;
                top: 6px; } }
          @media (min-width: 480px) {
            main .careerdropdown .panel.mix .panel-heading h4 {
              padding-left: 0px; } }
          @media (min-width: 1440px) {
            main .careerdropdown .panel.mix .panel-heading h4 {
              font-size: 23px; } }
          @media (min-width: 1025px) {
            main .careerdropdown .panel.mix .panel-heading h4 {
              border-bottom: 0;
              margin-bottom: 0; } }
        main .careerdropdown .panel.mix .panel-heading .btn-yellow {
          float: right;
          margin-top: 20px;
          margin-right: 0px; }
          @media (min-width: 1025px) {
            main .careerdropdown .panel.mix .panel-heading .btn-yellow {
              float: none;
              margin-top: 0px;
              margin-right: 15px; } }
      main .careerdropdown .panel.mix .panel-body {
        padding: 35px 50px;
        border: 0 !important; }
  main .btn, main .teaserRabatt .yellowcaption h4 a, .teaserRabatt .yellowcaption h4 main a, main .teaserRabatt .yellowcaption p a, .teaserRabatt .yellowcaption p main a, main .btn-yellow, main .single-link-news > a, main .btn-small, main .news-latest-morelink a {
    background-color: #25386c;
    color: #fff;
    background-image: url(../img/arrow_white.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: auto 22px;
    transition: all 0.65s;
    display: inline-block;
    margin-bottom: 15px;
    height: auto;
    font-size: 18px;
    border: 0;
    padding-left: 30px !important;
    padding-right: 30px !important;
    padding-top: 6px;
    padding-bottom: 6px; }
    @media (min-width: 768px) {
      main .btn, main .teaserRabatt .yellowcaption h4 a, .teaserRabatt .yellowcaption h4 main a, main .teaserRabatt .yellowcaption p a, .teaserRabatt .yellowcaption p main a, main .btn-yellow, main .single-link-news > a, main .btn-small, main .news-latest-morelink a {
        display: inline-block; } }
    @media (min-width: 1440px) {
      main .btn, main .teaserRabatt .yellowcaption h4 a, .teaserRabatt .yellowcaption h4 main a, main .teaserRabatt .yellowcaption p a, .teaserRabatt .yellowcaption p main a, main .btn-yellow, main .single-link-news > a, main .btn-small, main .news-latest-morelink a {
        font-size: 23px;
        height: 62px;
        margin-right: 25px;
        margin-bottom: 30px;
        padding-left: 53px !important;
        padding-right: 36px !important;
        padding-top: 14px;
        padding-bottom: 15px;
        background-size: auto 38px; } }
  main .btn-yellow, main .single-link-news > a {
    background-color: #ffed00;
    color: #25386c;
    background-image: url(../img/arrow_white.png); }
    main .btn-yellow:hover, main .btn-yellow:focus, main .btn-yellow.active, main .single-link-news > a:hover, main .single-link-news > a:focus, main .single-link-news > a.active {
      background-image: url(../img/arrow_blue.png) !important;
      background-position: left center;
      color: #25386c !important;
      text-decoration: none; }
  main .single-link-news {
    margin-top: 25px; }
  main .linkprev > a {
    background-image: url(../img/arrow_white_left.png) !important;
    background-position: right center;
    padding-left: 36px !important;
    padding-right: 53px !important; }
    main .linkprev > a:hover, main .linkprev > a:focus, main .linkprev > a.active {
      background-image: url(../img/arrow_blue_left.png) !important;
      background-position: right center !important; }
  main .linknext > a {
    margin-right: 0 !important; }
  main .btn-small {
    display: block;
    width: 100%;
    margin-bottom: 5px;
    background-image: none;
    background-position: inherit;
    background-size: auto;
    padding: 5px; }
    @media (min-width: 480px) {
      main .btn-small {
        display: inline-block;
        width: auto;
        margin-bottom: 15px; } }
    @media (min-width: 1440px) {
      main .btn-small {
        padding: 10px; } }
  main .btn:hover, main .teaserRabatt .yellowcaption h4 a:hover, .teaserRabatt .yellowcaption h4 main a:hover, main .teaserRabatt .yellowcaption p a:hover, .teaserRabatt .yellowcaption p main a:hover, main .btn-yellow:hover, main .single-link-news > a:hover, main .btn-small:hover, main .btn:focus, main .teaserRabatt .yellowcaption h4 a:focus, .teaserRabatt .yellowcaption h4 main a:focus, main .teaserRabatt .yellowcaption p a:focus, .teaserRabatt .yellowcaption p main a:focus, main .btn-yellow:focus, main .single-link-news > a:focus, main .btn-small:focus, main .btn.active, main .teaserRabatt .yellowcaption h4 a.active, .teaserRabatt .yellowcaption h4 main a.active, main .teaserRabatt .yellowcaption p a.active, .teaserRabatt .yellowcaption p main a.active, main .active.btn-yellow, main .single-link-news > a.active, main .active.btn-small, main .btn-small:hover, main .btn-small:focus, main .news-latest-morelink a:hover, main .news-latest-morelink a:focus, main .news-latest-morelink.active a {
    color: #ffed00;
    transition: all 0.65s;
    background-image: url(../img/arrow_yellow.png);
    background-position: left center;
    text-decoration: none; }
  main .btn-small:hover, main .btn-small:focus, main .btn-small.active {
    background-image: none; }
  main .teaser {
    margin-top: 80px; }
    main .teaser .teasebox {
      margin-bottom: 45px; }
      @media (min-width: 768px) {
        main .teaser .teasebox {
          margin-bottom: 0px; } }
      main .teaser .teasebox img {
        margin-bottom: 30px; }
      main .teaser .teasebox .btn, main .teaser .teasebox .teaserRabatt .yellowcaption h4 a, .teaserRabatt .yellowcaption h4 main .teaser .teasebox a, main .teaser .teasebox .teaserRabatt .yellowcaption p a, .teaserRabatt .yellowcaption p main .teaser .teasebox a, main .teaser .teasebox .btn-yellow, main .teaser .teasebox .single-link-news > a, main .teaser .teasebox .btn-small {
        max-width: 100%;
        word-wrap: break-word;
        white-space: normal;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin-right: 0;
        max-height: 100%;
        height: auto;
        min-height: 62px;
        text-align: left; }
        @media (min-width: 1025px) {
          main .teaser .teasebox .btn, main .teaser .teasebox .teaserRabatt .yellowcaption h4 a, .teaserRabatt .yellowcaption h4 main .teaser .teasebox a, main .teaser .teasebox .teaserRabatt .yellowcaption p a, .teaserRabatt .yellowcaption p main .teaser .teasebox a, main .teaser .teasebox .btn-yellow, main .teaser .teasebox .single-link-news > a, main .teaser .teasebox .btn-small {
            word-wrap: normal;
            white-space: normal;
            text-align: center; } }
  main .produkte:nth-of-type(2) {
    margin-top: 80px; }
  main .produkte .row {
    margin-left: 0;
    margin-right: 0; }
  main .produkte .produktbox {
    padding-left: 0px;
    padding-right: 0px; }
    main .produkte .produktbox .produktinner {
      padding: 90px 25px 25px 25px; }
      main .produkte .produktbox .produktinner ul {
        list-style: none;
        padding-left: 22px; }
        main .produkte .produktbox .produktinner ul li::before {
          content: "\25A0";
          color: #ffed00;
          display: inline-block;
          width: 1em;
          margin-left: -1em;
          position: relative;
          top: -3px; }
      main .produkte .produktbox .produktinner div.icon {
        position: absolute;
        width: 64px;
        height: 64px;
        top: 0;
        left: 0; }
    main .produkte .produktbox .tx-dce-pi1 {
      height: 100%; }
      main .produkte .produktbox .tx-dce-pi1 > div {
        height: 100%; }
        main .produkte .produktbox .tx-dce-pi1 > div > .img-bg-standard {
          background-size: cover;
          width: 100%;
          height: 100%; }
  main .produkte:nth-of-type(even) .produktbox:nth-of-type(odd) {
    background-color: #f3f6fb; }
  main .produkte:nth-of-type(odd) .produktbox:nth-of-type(even) {
    background-color: #f3f6fb; }
  main .controls:after, main .controls:before {
    content: " ";
    display: table; }
  main .controls:after {
    clear: both; }
  main .controls .btn.filter, main .controls .teaserRabatt .yellowcaption h4 a.filter, .teaserRabatt .yellowcaption h4 main .controls a.filter, main .controls .teaserRabatt .yellowcaption p a.filter, .teaserRabatt .yellowcaption p main .controls a.filter, main .controls .filter.btn-yellow, main .controls .single-link-news > a.filter, main .controls .filter.btn-small {
    margin-right: 4px;
    margin-bottom: 4px;
    display: block;
    width: 100%; }
    @media (min-width: 768px) {
      main .controls .btn.filter, main .controls .teaserRabatt .yellowcaption h4 a.filter, .teaserRabatt .yellowcaption h4 main .controls a.filter, main .controls .teaserRabatt .yellowcaption p a.filter, .teaserRabatt .yellowcaption p main .controls a.filter, main .controls .filter.btn-yellow, main .controls .single-link-news > a.filter, main .controls .filter.btn-small {
        width: auto;
        float: left; } }
  main #ansprechpartner {
    margin-left: -10px;
    margin-right: -10px;
    margin-top: 40px; }
    main #ansprechpartner .mix {
      display: none;
      padding-left: 10px;
      padding-right: 10px;
      margin-bottom: 20px; }
      main #ansprechpartner .mix .innermix {
        font-size: 16px;
        background-color: #f3f7fb; }
        @media (min-width: 1440px) {
          main #ansprechpartner .mix .innermix {
            font-size: 19px; } }
        main #ansprechpartner .mix .innermix h5 {
          padding-left: 10px;
          padding-right: 10px; }
        main #ansprechpartner .mix .innermix .name {
          padding: 35px 10px 30px 10px;
          width: 60%; }
          main #ansprechpartner .mix .innermix .name h5 {
            margin-top: 0px;
            padding: 0; }
        main #ansprechpartner .mix .innermix .bild {
          width: 40%;
          position: relative; }
          main #ansprechpartner .mix .innermix .bild img {
            max-width: 110px;
            margin-bottom: 0px;
            float: right; }
            @media (min-width: 768px) {
              main #ansprechpartner .mix .innermix .bild img {
                max-width: 120px; } }
            @media (min-width: 1440px) {
              main #ansprechpartner .mix .innermix .bild img {
                max-width: 100%; } }
          main #ansprechpartner .mix .innermix .bild .bildoverlay {
            position: absolute;
            width: 40px;
            height: 40px;
            background-image: url(../../../../../../fileadmin/user_upload/ansprechpartner-icon.png);
            background-size: 40px 40px;
            right: 0;
            top: 0; }
            @media (min-width: 1440px) {
              main #ansprechpartner .mix .innermix .bild .bildoverlay {
                background-size: 100% 100%;
                width: 66px;
                height: 66px; } }
          main #ansprechpartner .mix .innermix .bild img + .bildoverlay {
            display: none; }
        main #ansprechpartner .mix .innermix .data {
          padding: 0px 10px 0px 10px; }
          main #ansprechpartner .mix .innermix .data .email p {
            max-width: calc(100% - 10px);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis; }
      main #ansprechpartner .mix img {
        margin-bottom: 20px; }
      main #ansprechpartner .mix address {
        margin-top: 30px; }
      main #ansprechpartner .mix .row {
        margin-left: -10px;
        margin-right: -10px; }
        main #ansprechpartner .mix .row div[class^="col-"] {
          padding-left: 4%;
          padding-right: 4%; }
  main .katalogList .katalog {
    padding-top: 35px;
    padding-bottom: 35px; }
    main .katalogList .katalog .katalog-image {
      cursor: pointer; }
    main .katalogList .katalog .slide-catalog .slick-slide {
      text-align: center;
      margin: auto; }
      main .katalogList .katalog .slide-catalog .slick-slide img {
        margin: auto;
        box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.45); }
      main .katalogList .katalog .slide-catalog .slick-slide h3 {
        font-family: "Swiss-Light", Arial, sans-serif;
        margin-top: 15px; }
      @media screen and (max-width: 767px) {
        main .katalogList .katalog .slide-catalog .slick-slide {
          padding: 10px; } }
    main .katalogList .katalog .slide-catalog .slick-prev, main .katalogList .katalog .slide-catalog .slick-next {
      background-image: url(../img/prev.png);
      width: 20px;
      height: 20px;
      background-repeat: no-repeat;
      background-size: auto 20px;
      background-color: transparent;
      top: calc(50% - 20px) !important; }
    main .katalogList .katalog .slide-catalog .slick-next {
      background-image: url(../img/arrow_blue.png); }
    main .katalogList .katalog .slide-catalog button.slick-disabled {
      opacity: 0.25; }
    main .katalogList .katalog .katalog-overlay {
      display: none; }
    main .katalogList .katalog:first-of-type {
      margin-top: -65px; }
    main .katalogList .katalog:last-of-type {
      margin-bottom: 0; }
    main .katalogList .katalog .slide-catalog-download {
      display: block; }
      @media (min-width: 1025px) {
        main .katalogList .katalog .slide-catalog-download {
          display: none; } }
  main .katalogList .katalog:nth-of-type(odd) {
    background-image: linear-gradient(to bottom, #ffed06 0%, #fff9ae 100%); }
  main .news-slide h3 {
    word-wrap: break-word;
    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto; }
  main .news-slide .news-latest-item {
    margin-left: 2px;
    margin-right: 2px; }
    main .news-slide .news-latest-item p {
      margin-bottom: 11px;
      word-wrap: break-word;
      -moz-hyphens: auto;
      -o-hyphens: auto;
      -webkit-hyphens: auto;
      -ms-hyphens: auto;
      hyphens: auto; }
  main .newslist {
    margin-bottom: 5px; }
    main .newslist .newsinner {
      background-color: #f3f7fb;
      padding: 35px 35px; }
      main .newslist .newsinner .news-date {
        font-size: 18px; }
      main .newslist .newsinner h3 {
        margin-bottom: 20px; }
      main .newslist .newsinner p:first-of-type {
        margin-top: -7px; }
      main .newslist .newsinner .imgleft {
        max-width: 394px; }
  main .agbentry {
    margin-bottom: 5px; }
  main .agb-background {
    background-color: #f3f7fb;
    padding-left: 35px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 0px; }
    main .agb-background h3, main .agb-background .marginhelper {
      margin-top: 13px; }
    main .agb-background .btn, main .agb-background .teaserRabatt .yellowcaption h4 a, .teaserRabatt .yellowcaption h4 main .agb-background a, main .agb-background .teaserRabatt .yellowcaption p a, .teaserRabatt .yellowcaption p main .agb-background a, main .agb-background .btn-yellow, main .agb-background .single-link-news > a, main .agb-background .btn-small {
      margin: 0 !important; }

body.mbcontact footer {
  margin-top: 0; }

footer {
  background-color: #25386c;
  padding-top: 40px;
  padding-bottom: 40px; }
  @media (min-width: 768px) {
    footer {
      padding-top: 80px;
      padding-bottom: 50px; } }
  footer ul.footernav {
    list-style-type: none;
    padding-left: 0px; }
    footer ul.footernav li:first-of-type {
      font-size: 15px;
      font-family: "Swiss-Medium", Arial, sans-serif;
      color: #fff;
      margin-bottom: 30px; }
      @media (min-width: 1440px) {
        footer ul.footernav li:first-of-type {
          font-size: 23px;
          font-weight: 400; } }
    footer ul.footernav li {
      color: #fff;
      font-size: 13px;
      margin-bottom: 5px; }
      @media (min-width: 1440px) {
        footer ul.footernav li {
          font-size: 18px; } }
    footer ul.footernav li a {
      text-decoration: none;
      color: #fff; }
      footer ul.footernav li a:hover, footer ul.footernav li a:focus {
        text-decoration: underline; }
  @media (min-width: 768px) {
    footer div.social {
      margin-bottom: 40px; } }
  footer div.social h4 {
    font-size: 15px;
    text-align: center;
    font-family: "Swiss-Medium", Arial, sans-serif;
    color: #fff;
    margin-bottom: 30px;
    margin-top: 0px; }
    @media (min-width: 768px) {
      footer div.social h4 {
        text-align: left; } }
    @media (min-width: 1440px) {
      footer div.social h4 {
        font-size: 23px;
        margin-top: 4px; } }
  footer div.social ul {
    text-align: center; }
    footer div.social ul li {
      margin-right: 10px; }
      @media (min-width: 1440px) {
        footer div.social ul li {
          margin-right: 35px; } }
  footer div.social a {
    display: block;
    width: 40px;
    height: 40px; }
    @media (min-width: 768px) {
      footer div.social a {
        width: 20px;
        height: 20px; } }
    @media (min-width: 1025px) {
      footer div.social a {
        width: 40px;
        height: 40px; } }
    footer div.social a img {
      text-align: center;
      margin: auto; }
      @media (min-width: 768px) {
        footer div.social a img {
          margin: 0;
          text-align: left; } }
    footer div.social a#facebookfooter {
      background-image: url(../img/facebook_roll.png);
      background-size: 40px;
      background-position: 0px 0px;
      background-repeat: no-repeat;
      transition: all 0.65s; }
      @media (min-width: 768px) {
        footer div.social a#facebookfooter {
          background-size: 20px; } }
      @media (min-width: 1025px) {
        footer div.social a#facebookfooter {
          background-size: 40px; } }
    footer div.social a#xingfooter {
      background-image: url(../img/xing_roll.png);
      background-size: 40px;
      background-position: 0px 0px;
      background-repeat: no-repeat;
      transition: all 0.65s; }
      @media (min-width: 768px) {
        footer div.social a#xingfooter {
          background-size: 20px; } }
      @media (min-width: 1025px) {
        footer div.social a#xingfooter {
          background-size: 40px; } }
    footer div.social a#linkedinfooter {
      background-image: url(../img/linkedin_roll.png);
      background-size: 40px;
      background-position: 0px 0px;
      background-repeat: no-repeat;
      transition: all 0.65s; }
      @media (min-width: 768px) {
        footer div.social a#linkedinfooter {
          background-size: 20px; } }
      @media (min-width: 1025px) {
        footer div.social a#linkedinfooter {
          background-size: 40px; } }
    footer div.social a#youtubefooter {
      background-image: url(../img/youtube_roll.png);
      background-size: 40px;
      background-position: 0px 0px;
      background-repeat: no-repeat;
      transition: all 0.65s; }
      @media (min-width: 768px) {
        footer div.social a#youtubefooter {
          background-size: 20px; } }
      @media (min-width: 1025px) {
        footer div.social a#youtubefooter {
          background-size: 40px; } }
    footer div.social a:hover, footer div.social a:focus {
      background-position: 0px -40px !important;
      transition: all 0.65s; }
      @media (min-width: 768px) {
        footer div.social a:hover, footer div.social a:focus {
          background-position: 0px -20px !important; } }
      @media (min-width: 1025px) {
        footer div.social a:hover, footer div.social a:focus {
          background-position: 0px -40px !important; } }

.flipbook-bg-light {
  background: #ffed06 none repeat scroll 0 0 !important; }

.flipbook-color-light {
  color: #25386c !important; }

.flipbook-color-light:hover {
  color: #25386c !important; }

.mm-menu.mm-hoverselected.mm-theme-white .mm-listview > li > a.mm-fullsubopen:hover + span, .mm-menu.mm-hoverselected.mm-theme-white .mm-listview > li > a:not(.mm-fullsubopen):hover, .mm-menu.mm-parentselected.mm-theme-white .mm-listview > li > a.mm-selected.mm-fullsubopen + a, .mm-menu.mm-parentselected.mm-theme-white .mm-listview > li > a.mm-selected.mm-fullsubopen + span, .mm-menu.mm-parentselected.mm-theme-white .mm-listview > li > a.mm-selected:not(.mm-fullsubopen), .mm-menu.mm-theme-white .mm-listview, .mm-menu.mm-theme-white .mm-divider, .mm-menu.mm-theme-white .mm-fixeddivider span, .mm-menu.mm-theme-white .mm-listview > li.mm-opened.mm-vertical > .mm-panel, .mm-menu.mm-theme-white .mm-listview > li.mm-opened.mm-vertical > a.mm-next, .mm-menu.mm-theme-white.mm-vertical .mm-listview > li.mm-opened > .mm-panel, .mm-menu.mm-theme-white.mm-vertical .mm-listview > li.mm-opened > a.mm-next {
  background-color: #fff; }

html.mm-pagedim-black.mm-opening #mm-blocker, html.mm-pagedim-white.mm-opening #mm-blocker, html.mm-pagedim.mm-opening #mm-blocker {
  opacity: .5; }

.mm-menu.mm-offcanvas {
  width: 100%;
  max-width: 100%; }
  @media (min-width: 768px) {
    .mm-menu.mm-offcanvas {
      max-width: 330px;
      width: 80%; } }

.mm-listview .mm-vertical .mm-panel, .mm-vertical .mm-listview .mm-panel {
  padding-left: 40px; }

.mm-navbar .list-inline {
  background-color: #25386c;
  margin-left: 0;
  max-width: 100%;
  padding-bottom: 4px; }
  .mm-navbar .list-inline li {
    width: 33%; }
    .mm-navbar .list-inline li a {
      display: block;
      width: 21px;
      height: 21px;
      padding: 0;
      margin: auto; }
      .mm-navbar .list-inline li a#facebookfooter {
        background-image: url(../img/facebook_roll.png);
        background-size: 21px;
        background-position: 0px 0px;
        background-repeat: no-repeat;
        transition: all 0.65s; }
      .mm-navbar .list-inline li a#xingfooter {
        background-image: url(../img/xing_roll.png);
        background-size: 21px;
        background-position: 0px 0px;
        background-repeat: no-repeat;
        transition: all 0.65s; }
      .mm-navbar .list-inline li a#linkedinfooter {
        background-image: url(../img/linkedin_roll.png);
        background-size: 21px;
        background-position: 0px 0px;
        background-repeat: no-repeat;
        transition: all 0.65s; }
      .mm-navbar .list-inline li a#youtubefooter {
        background-image: url(../img/youtube_roll.png);
        background-size: 21px;
        background-position: 0px 0px;
        background-repeat: no-repeat;
        transition: all 0.65s; }
      .mm-navbar .list-inline li a:hover, .mm-navbar .list-inline li a:focus {
        background-position: 0px -21px !important;
        transition: all 0.65s; }

#closemenu {
  background-image: url(../img/close.png);
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  background-size: 20px 20px;
  margin-right: 25px;
  margin-top: 10px;
  display: block;
  cursor: pointer; }

.mobilemenu {
  top: 121px; }
  @media (min-width: 768px) {
    .mobilemenu {
      top: 200px; } }
  .mobilemenu .mm-hasnavbar-top-1 .mm-panels, .mobilemenu .mm-navbar-top-2 {
    top: 10px !important; }
  .mobilemenu .mm-panels {
    top: 10px !important; }
  .mobilemenu .mm-listview > li:not(.mm-divider):after {
    display: none; }
  .mobilemenu .mm-listview .mm-next + a, .mobilemenu .mm-listview .mm-next + span {
    margin-right: 84px; }
    @media (min-width: 768px) {
      .mobilemenu .mm-listview .mm-next + a, .mobilemenu .mm-listview .mm-next + span {
        margin-right: 92px; } }
  .mobilemenu ul li a {
    color: #25386c;
    font-size: 18px;
    transition: all 0.65s;
    border: 1px solid;
    border-color: transparent;
    padding: 10px 0px;
    padding-left: 25px;
    text-align: left;
    text-transform: uppercase;
    background-image: none;
    background-size: auto 24px;
    background-position: left -1px center; }
    .mobilemenu ul li a:hover, .mobilemenu ul li a:focus {
      background-color: transparent;
      text-decoration: none;
      color: #25386c;
      transition: all 0.65s;
      background-image: url(../img/arrow_blue.png);
      background-repeat: no-repeat;
      background-size: auto 24px; }
    .mobilemenu ul li a.navcaret {
      display: none; }
    .mobilemenu ul li a.mm-next {
      position: absolute;
      right: 25px;
      top: 0;
      height: 47px;
      width: 60px;
      padding: 0;
      border: 0;
      border-left: 1px solid #25386c;
      background-image: url(../img/nav_arrow_blue.png) !important;
      background-size: auto 12px !important;
      background-position: center center !important;
      background-repeat: no-repeat !important;
      cursor: pointer; }
      @media (min-width: 768px) {
        .mobilemenu ul li a.mm-next {
          right: 33px; } }
      .mobilemenu ul li a.mm-next:after, .mobilemenu ul li a.mm-next:before {
        display: none; }
  .mobilemenu ul li.active > a:not(.navcaret) {
    background-image: url(../img/arrow_blue.png);
    background-repeat: no-repeat;
    background-size: auto 24px;
    color: #25386c; }
  .mobilemenu.affixed {
    top: 88px; }
    @media (min-width: 768px) {
      .mobilemenu.affixed {
        top: 134px; } }

@media screen and (max-width: 767px) {
  .table-responsive {
    border: none; } }

body.ru, body.cz, body.sk, body.ro, body.cn {
  font-family: "Roboto", "Noto Sans SC", Arial, sans-serif;
  font-weight: 300; }
  body.ru .fixed .navigation #navigation ul li a, body.cz .fixed .navigation #navigation ul li a, body.sk .fixed .navigation #navigation ul li a, body.ro .fixed .navigation #navigation ul li a, body.cn .fixed .navigation #navigation ul li a {
    font-family: "Roboto", "Noto Sans SC", Arial, sans-serif; }
  body.ru .dropdown_lang .langlist li a, body.cz .dropdown_lang .langlist li a, body.sk .dropdown_lang .langlist li a, body.ro .dropdown_lang .langlist li a, body.cn .dropdown_lang .langlist li a {
    font-family: "Roboto", "Noto Sans SC", Arial, sans-serif;
    font-weight: 500; }
  body.ru main, body.cz main, body.sk main, body.ro main, body.cn main {
    font-weight: 300; }
  body.ru .caption .line, body.ru .headdisplay .caption .line_small, .headdisplay body.ru .caption .line_small, body.cz .caption .line, body.cz .headdisplay .caption .line_small, .headdisplay body.cz .caption .line_small, body.sk .caption .line, body.sk .headdisplay .caption .line_small, .headdisplay body.sk .caption .line_small, body.ro .caption .line, body.ro .headdisplay .caption .line_small, .headdisplay body.ro .caption .line_small, body.cn .caption .line, body.cn .headdisplay .caption .line_small, .headdisplay body.cn .caption .line_small {
    font-family: "Roboto", "Noto Sans SC", Arial, sans-serif; }
  body.ru .careerdropdown h4, body.cz .careerdropdown h4, body.sk .careerdropdown h4, body.ro .careerdropdown h4, body.cn .careerdropdown h4 {
    font-family: "Roboto", "Noto Sans SC", Arial, sans-serif; }
  body.ru .panel.mix .panel-heading h4, body.cz .panel.mix .panel-heading h4, body.sk .panel.mix .panel-heading h4, body.ro .panel.mix .panel-heading h4, body.cn .panel.mix .panel-heading h4 {
    font-family: "Roboto", "Noto Sans SC", Arial, sans-serif; }
  body.ru .slide-catalog .slick-slide h3, body.cz .slide-catalog .slick-slide h3, body.sk .slide-catalog .slick-slide h3, body.ro .slide-catalog .slick-slide h3, body.cn .slide-catalog .slick-slide h3 {
    font-family: "Roboto", "Noto Sans SC", Arial, sans-serif; }
  body.ru footer ul.footernav li:first-of-type, body.cz footer ul.footernav li:first-of-type, body.sk footer ul.footernav li:first-of-type, body.ro footer ul.footernav li:first-of-type, body.cn footer ul.footernav li:first-of-type {
    font-family: "Roboto", "Noto Sans SC", Arial, sans-serif;
    font-weight: 500; }
  body.ru footer div.social h4, body.cz footer div.social h4, body.sk footer div.social h4, body.ro footer div.social h4, body.cn footer div.social h4 {
    font-family: "Roboto", "Noto Sans SC", Arial, sans-serif;
    font-weight: 500; }
body.ru main h1, body.ru main h2, body.ru main h3, body.ru main h4, body.ru main h5, body.ru main h6, body.cz main h1, body.cz main h2, body.cz main h3, body.cz main h4, body.cz main h5, body.cz main h6, body.sk main h1, body.sk main h2, body.sk main h3, body.sk main h4, body.sk main h5, body.sk main h6, body.ro main h1, body.ro main h2, body.ro main h3, body.ro main h4, body.ro main h5, body.ro main h6 {
  font-weight: 500; }
body.cn main h1, body.cn main h2, body.cn main h3, body.cn main h4, body.cn main h5, body.cn main h6 {
  font-weight: 600; }

.selectize-input {
  display: flex !important;
  align-items: center; }

form.newsletterSubscribe .sicherung {
  display: none; }

.powermail_fieldwrap.nolabel label {
  display: none; }

.mainContent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh; }
  .mainContent > main {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1; }

@media screen and (min-width: 1025px) {
  .stellenangebotsliste .stellenangebot div[class^='col-'] {
    padding-left: 10px;
    padding-right: 10px; }
    .stellenangebotsliste .stellenangebot div[class^='col-'].jobtitel {
      padding-left: 35px; }
  .stellenangebotsliste .stellenangebot .outerRow .row {
    margin-left: -10px;
    margin-right: -10px; } }
.mm-slideout {
  z-index: inherit; }

.modal .modal-content {
  border: none; }
  .modal .modal-content .modal-header {
    border: none;
    background-color: #25386c;
    position: relative; }
    .modal .modal-content .modal-header .close {
      margin-top: 0;
      position: absolute;
      top: 0;
      right: 0;
      background-color: #ffed00;
      opacity: 1;
      border: none;
      height: 100%;
      width: 62px;
      font-size: 50px;
      transition: all .333s ease; }
      .modal .modal-content .modal-header .close:hover {
        background-color: white; }
    .modal .modal-content .modal-header .modal-title {
      color: white; }
  .modal .modal-content .modal-body h1, .modal .modal-content .modal-body h2, .modal .modal-content .modal-body h3, .modal .modal-content .modal-body h4, .modal .modal-content .modal-body h5, .modal .modal-content .modal-body h6 {
    font-family: "Swiss-Light", Arial, sans-serif; }

.katalogmodal .katalogitem {
  text-align: center; }
  .katalogmodal .katalogitem img {
    margin: auto;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.45);
    cursor: pointer; }
  .katalogmodal .katalogitem h1, .katalogmodal .katalogitem h2, .katalogmodal .katalogitem h3, .katalogmodal .katalogitem h4, .katalogmodal .katalogitem h5, .katalogmodal .katalogitem h6 {
    margin-top: 15px; }

.katalogOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999; }
  .katalogOverlay iframe {
    width: 100%;
    height: 100%;
    border: none; }

.form-check, .powermail_field .checkbox input[type="checkbox"] {
  width: 1em;
  height: 1em;
  font-size: 20px; }

/*# sourceMappingURL=style.css.map */
