@charset "UTF-8";
@import url("https://fast.fonts.net/t/1.css?apiType=css&projectid=ac892944-623d-4fbd-b655-b050e68e34fc");
:root {
  --fc-font-weight: 600;
  --fc-color: #5fb345;
  --fc-fill-icon: #5fb345;
  --fc-stroke-icon: #5fb345;
  --fc-fill-warn: #ffae00;
  --fc-color-white: #ffffff;
  --fc-bg-color-secondary: #009ee3;
  --fc-bg-progress: #ccc;
  --fc-bg-color: #f3f3f3;
}
/**
 * Foundation for Sites by ZURB
 * Version 6.4.1
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(2.5, 2.5, 2.5);
    transform: scale3d(2.5, 2.5, 2.5);
  }
  40% {
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
    transform: scale3d(1.2, 1.2, 1.2);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.7, 1.7, 1.7);
    transform: scale3d(1.7, 1.7, 1.7);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
body > div [style="text-align:right;font-size:10px;color:grey;display:block !important;"], body > form > div [style="text-align:right;font-size:10px;color:grey;display:block !important;"] {
  display: none !important;
}
@font-face {
  font-family: "Averta W01";
  src: url("https://static.oldenburger-muensterland.de/fonts/7c6c21a6-9153-4526-b91b-4594b8911381.eot?#iefix");
  src: url("https://static.oldenburger-muensterland.de/fonts/7c6c21a6-9153-4526-b91b-4594b8911381.eot?#iefix") format("eot"), url("https://static.oldenburger-muensterland.de/fonts/dc836390-131e-464f-91e6-f9f9cf751a35.woff2") format("woff2"), url("https://static.oldenburger-muensterland.de/fonts/dffa0023-f2da-40e3-9919-c09dcd31d1f3.woff") format("woff"), url("https://static.oldenburger-muensterland.de/fonts/b2d3766f-1065-4360-bbe0-11bc8a43a958.ttf") format("truetype"), url("https://static.oldenburger-muensterland.de/fonts/736ffbf5-8a40-49c3-b5ea-0ec63fbdf229.svg#736ffbf5-8a40-49c3-b5ea-0ec63fbdf229") format("svg");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Averta W01";
  src: url("https://static.oldenburger-muensterland.de/fonts/63084194-2cda-4ac9-b123-7f45379756ad.eot?#iefix");
  src: url("https://static.oldenburger-muensterland.de/fonts/63084194-2cda-4ac9-b123-7f45379756ad.eot?#iefix") format("eot"), url("https://static.oldenburger-muensterland.de/fonts/5b6b0808-79db-4639-ab19-365f715f83b9.woff2") format("woff2"), url("https://static.oldenburger-muensterland.de/fonts/0d9ceccf-0cd7-44dc-8c2a-dbc0ed90f149.woff") format("woff"), url("https://static.oldenburger-muensterland.de/fonts/b03141a0-a172-477f-ba2c-80e817c07f2f.ttf") format("truetype"), url("https://static.oldenburger-muensterland.de/fonts/09916ed0-fb6c-460d-82d1-3a51daea6f02.svg#09916ed0-fb6c-460d-82d1-3a51daea6f02") format("svg");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Fira Sans";
  font-style: italic;
  font-weight: 300;
  src: url("https://static.oldenburger-muensterland.de/fonts/fira-sans-v8-latin-300italic.eot");
  src: local("Fira Sans Light Italic"), local("FiraSans-LightItalic"), url("https://static.oldenburger-muensterland.de/fonts/fira-sans-v8-latin-300italic.eot?#iefix") format("embedded-opentype"), url("https://static.oldenburger-muensterland.de/fonts/fira-sans-v8-latin-300italic.woff2") format("woff2"), url("https://static.oldenburger-muensterland.de/fonts/fira-sans-v8-latin-300italic.woff") format("woff"), url("https://static.oldenburger-muensterland.de/fonts/fira-sans-v8-latin-300italic.ttf") format("truetype"), url("https://static.oldenburger-muensterland.de/fonts/fira-sans-v8-latin-300italic.svg#FiraSans") format("svg");
}
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 300;
  src: url("https://static.oldenburger-muensterland.de/fonts/fira-sans-v8-latin-300.eot");
  src: local("Fira Sans Light"), local("FiraSans-Light"), url("https://static.oldenburger-muensterland.de/fonts/fira-sans-v8-latin-300.eot?#iefix") format("embedded-opentype"), url("https://static.oldenburger-muensterland.de/fonts/fira-sans-v8-latin-300.woff2") format("woff2"), url("https://static.oldenburger-muensterland.de/fonts/fira-sans-v8-latin-300.woff") format("woff"), url("https://static.oldenburger-muensterland.de/fonts/fira-sans-v8-latin-300.ttf") format("truetype"), url("https://static.oldenburger-muensterland.de/fonts/fira-sans-v8-latin-300.svg#FiraSans") format("svg");
}
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 400;
  src: url("https://static.oldenburger-muensterland.de/fonts/fira-sans-v8-latin-regular.eot");
  src: local("Fira Sans Regular"), local("FiraSans-Regular"), url("https://static.oldenburger-muensterland.de/fonts/fira-sans-v8-latin-regular.eot?#iefix") format("embedded-opentype"), url("https://static.oldenburger-muensterland.de/fonts/fira-sans-v8-latin-regular.woff2") format("woff2"), url("https://static.oldenburger-muensterland.de/fonts/fira-sans-v8-latin-regular.woff") format("woff"), url("https://static.oldenburger-muensterland.de/fonts/fira-sans-v8-latin-regular.ttf") format("truetype"), url("https://static.oldenburger-muensterland.de/fonts/fira-sans-v8-latin-regular.svg#FiraSans") format("svg");
}
/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
       ========================================================================== */
/**
     * 1. Change the default font family in all browsers (opinionated).
     * 2. Correct the line height in all browsers.
     * 3. Prevent adjustments of font size after orientation changes in
     *    IE on Windows Phone and in iOS.
     */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}
/* Sections
       ========================================================================== */
/**
     * Remove the margin in all browsers (opinionated).
     */
body {
  margin: 0;
}
/**
     * Add the correct display in IE 9-.
     */
article, aside, footer, header, nav, section {
  display: block;
}
/**
     * Correct the font size and margin on `h1` elements within `section` and
     * `article` contexts in Chrome, Firefox, and Safari.
     */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
figcaption, figure {
  display: block;
}
/**
     * Add the correct margin in IE 8.
     */
figure {
  margin: 1em 40px;
}
/**
     * 1. Add the correct box sizing in Firefox.
     * 2. Show the overflow in Edge and IE.
     */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/**
     * Add the correct display in IE.
     */
main {
  display: block;
}
/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/* Links
       ========================================================================== */
/**
     * 1. Remove the gray background on active links in IE 10.
     * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
     */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}
/**
     * Remove the outline on focused links when they are also active or hovered
     * in all browsers (opinionated).
     */
a:active, a:hover {
  outline-width: 0;
}
/* Text-level semantics
       ========================================================================== */
/**
     * 1. Remove the bottom border in Firefox 39-.
     * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
     */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
/**
     * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
     */
b, strong {
  font-weight: inherit;
}
/**
     * Add the correct font weight in Chrome, Edge, and Safari.
     */
b, strong {
  font-weight: bolder;
}
/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
code, kbd, samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
     * Add the correct font style in Android 4.3-.
     */
dfn {
  font-style: italic;
}
/**
     * Add the correct background and color in IE 9-.
     */
mark {
  background-color: #ff0;
  color: #000;
}
/**
     * Add the correct font size in all browsers.
     */
small {
  font-size: 80%;
}
/**
     * Prevent `sub` and `sup` elements from affecting the line height in
     * all browsers.
     */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
audio, video {
  display: inline-block;
}
/**
     * Add the correct display in iOS 4-7.
     */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
     * Remove the border on images inside links in IE 10-.
     */
img {
  border-style: none;
}
/**
     * Hide the overflow in IE.
     */
svg:not(:root) {
  overflow: hidden;
}
/* Forms
       ========================================================================== */
/**
     * 1. Change the font styles in all browsers (opinionated).
     * 2. Remove the margin in Firefox and Safari.
     */
button, input, optgroup, select, textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
/**
     * Show the overflow in IE.
     */
button {
  overflow: visible;
}
/**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */
button, select {
  /* 1 */
  text-transform: none;
}
/**
     * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
     *    controls in Android 4.
     * 2. Correct the inability to style clickable types in iOS and Safari.
     */
button, html [type="button"], [type="reset"], [type="submit"] {
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
}
button, [type="button"], [type="reset"], [type="submit"] {
  /**
       * Remove the inner border and padding in Firefox.
       */
  /**
       * Restore the focus styles unset by the previous rule.
       */
}
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
     * Show the overflow in Edge.
     */
input {
  overflow: visible;
}
/**
     * 1. Add the correct box sizing in IE 10-.
     * 2. Remove the padding in IE 10-.
     */
[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
  /**
       * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
       */
}
[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
     * 1. Correct the inability to style clickable types in iOS and Safari.
     * 2. Change font properties to `inherit` in Safari.
     */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
/**
     * Change the border, margin, and padding in all browsers (opinionated).
     */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */
legend {
  box-sizing: border-box;
  /* 1 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */
}
/**
     * 1. Add the correct display in IE 9-.
     * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
     * Remove the default vertical scrollbar in IE.
     */
textarea {
  overflow: auto;
}
/* Interactive
       ========================================================================== */
/*
     * Add the correct display in Edge, IE, and Firefox.
     */
details {
  display: block;
}
/*
     * Add the correct display in all browsers.
     */
summary {
  display: list-item;
}
/*
     * Add the correct display in IE 9-.
     */
menu {
  display: block;
}
/* Scripting
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
canvas {
  display: inline-block;
}
/**
     * Add the correct display in IE.
     */
template {
  display: none;
}
/* Hidden
       ========================================================================== */
/**
     * Add the correct display in IE 10-.
     */
[hidden] {
  display: none;
}
.foundation-mq {
  font-family: "small=0em&offcanvaslarge=26.25em&medium=37.5em&mobilemenu=64em&large=64em&xlarge=75em&xxlarge=90em";
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: "Fira Sans", calibri, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  color: #222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}
textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}
select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}
.map_canvas img, .map_canvas embed, .map_canvas object, .mqa-display img, .mqa-display embed, .mqa-display object {
  max-width: none !important;
}
button {
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
}
[data-whatinput="mouse"] button {
  outline: 0;
}
pre {
  overflow: auto;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
}
.is-visible {
  display: block !important;
}
.is-hidden {
  display: none !important;
}
.grid-container {
  max-width: 73.125rem;
  margin: 0 auto;
}
.grid-container-padded {
  padding-left: 0.78125rem;
  padding-right: 0.78125rem;
}
@media print, screen and (min-width: 64em) {
  .grid-container-padded {
    padding-left: 0.46875rem;
    padding-right: 0.46875rem;
  }
}
@media screen and (min-width: 73.125em) {
  .grid-container-padded {
    padding-left: 0;
    padding-right: 0;
  }
}
.grid-x {
  display: flex;
  flex-flow: row wrap;
}
.cell {
  flex: 0 0 auto;
  min-height: 0px;
  min-width: 0px;
  width: 100%;
}
.cell.auto {
  flex: 1 1 0px;
}
.cell.shrink {
  flex: 0 0 auto;
}
.grid-x > .auto {
  width: auto;
}
.grid-x > .shrink {
  width: auto;
}
.grid-x > small-shrink, .grid-x > small-full, .grid-x > small-1, .grid-x > small-2, .grid-x > small-3, .grid-x > small-4, .grid-x > small-5, .grid-x > small-6, .grid-x > small-7, .grid-x > small-8, .grid-x > small-9, .grid-x > small-10, .grid-x > small-11, .grid-x > small-12 {
  flex-basis: auto;
}
@media print, screen and (min-width: 37.5em) {
  .grid-x > medium-shrink, .grid-x > medium-full, .grid-x > medium-1, .grid-x > medium-2, .grid-x > medium-3, .grid-x > medium-4, .grid-x > medium-5, .grid-x > medium-6, .grid-x > medium-7, .grid-x > medium-8, .grid-x > medium-9, .grid-x > medium-10, .grid-x > medium-11, .grid-x > medium-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > large-shrink, .grid-x > large-full, .grid-x > large-1, .grid-x > large-2, .grid-x > large-3, .grid-x > large-4, .grid-x > large-5, .grid-x > large-6, .grid-x > large-7, .grid-x > large-8, .grid-x > large-9, .grid-x > large-10, .grid-x > large-11, .grid-x > large-12 {
    flex-basis: auto;
  }
}
.grid-x > .small-auto {
  flex: 1 1 0px;
  width: auto;
}
.grid-x > .small-shrink {
  flex: 0 0 auto;
  width: auto;
}
.grid-x > .small-1 {
  width: 8.3333333333%;
}
.grid-x > .small-2 {
  width: 16.6666666667%;
}
.grid-x > .small-3 {
  width: 25%;
}
.grid-x > .small-4 {
  width: 33.3333333333%;
}
.grid-x > .small-5 {
  width: 41.6666666667%;
}
.grid-x > .small-6 {
  width: 50%;
}
.grid-x > .small-7 {
  width: 58.3333333333%;
}
.grid-x > .small-8 {
  width: 66.6666666667%;
}
.grid-x > .small-9 {
  width: 75%;
}
.grid-x > .small-10 {
  width: 83.3333333333%;
}
.grid-x > .small-11 {
  width: 91.6666666667%;
}
.grid-x > .small-12 {
  width: 100%;
}
@media print, screen and (min-width: 37.5em) {
  .grid-x > .medium-auto {
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .medium-shrink {
    flex: 0 0 auto;
    width: auto;
  }
  .grid-x > .medium-1 {
    width: 8.3333333333%;
  }
  .grid-x > .medium-2 {
    width: 16.6666666667%;
  }
  .grid-x > .medium-3 {
    width: 25%;
  }
  .grid-x > .medium-4 {
    width: 33.3333333333%;
  }
  .grid-x > .medium-5 {
    width: 41.6666666667%;
  }
  .grid-x > .medium-6 {
    width: 50%;
  }
  .grid-x > .medium-7 {
    width: 58.3333333333%;
  }
  .grid-x > .medium-8 {
    width: 66.6666666667%;
  }
  .grid-x > .medium-9 {
    width: 75%;
  }
  .grid-x > .medium-10 {
    width: 83.3333333333%;
  }
  .grid-x > .medium-11 {
    width: 91.6666666667%;
  }
  .grid-x > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-auto {
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .large-shrink {
    flex: 0 0 auto;
    width: auto;
  }
  .grid-x > .large-1 {
    width: 8.3333333333%;
  }
  .grid-x > .large-2 {
    width: 16.6666666667%;
  }
  .grid-x > .large-3 {
    width: 25%;
  }
  .grid-x > .large-4 {
    width: 33.3333333333%;
  }
  .grid-x > .large-5 {
    width: 41.6666666667%;
  }
  .grid-x > .large-6 {
    width: 50%;
  }
  .grid-x > .large-7 {
    width: 58.3333333333%;
  }
  .grid-x > .large-8 {
    width: 66.6666666667%;
  }
  .grid-x > .large-9 {
    width: 75%;
  }
  .grid-x > .large-10 {
    width: 83.3333333333%;
  }
  .grid-x > .large-11 {
    width: 91.6666666667%;
  }
  .grid-x > .large-12 {
    width: 100%;
  }
}
.grid-margin-x:not(.grid-x) > .cell {
  width: auto;
}
.grid-margin-y:not(.grid-y) > .cell {
  height: auto;
}
.grid-margin-x {
  margin-left: -0.78125rem;
  margin-right: -0.78125rem;
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x {
    margin-left: -0.46875rem;
    margin-right: -0.46875rem;
  }
}
.grid-margin-x > .cell {
  width: calc(100% - 1.5625rem);
  margin-left: 0.78125rem;
  margin-right: 0.78125rem;
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x > .cell {
    width: calc(100% - 0.9375rem);
    margin-left: 0.46875rem;
    margin-right: 0.46875rem;
  }
}
.grid-margin-x > .auto {
  width: auto;
}
.grid-margin-x > .shrink {
  width: auto;
}
.grid-margin-x > .small-1 {
  width: calc(8.3333333333% - 1.5625rem);
}
.grid-margin-x > .small-2 {
  width: calc(16.6666666667% - 1.5625rem);
}
.grid-margin-x > .small-3 {
  width: calc(25% - 1.5625rem);
}
.grid-margin-x > .small-4 {
  width: calc(33.3333333333% - 1.5625rem);
}
.grid-margin-x > .small-5 {
  width: calc(41.6666666667% - 1.5625rem);
}
.grid-margin-x > .small-6 {
  width: calc(50% - 1.5625rem);
}
.grid-margin-x > .small-7 {
  width: calc(58.3333333333% - 1.5625rem);
}
.grid-margin-x > .small-8 {
  width: calc(66.6666666667% - 1.5625rem);
}
.grid-margin-x > .small-9 {
  width: calc(75% - 1.5625rem);
}
.grid-margin-x > .small-10 {
  width: calc(83.3333333333% - 1.5625rem);
}
.grid-margin-x > .small-11 {
  width: calc(91.6666666667% - 1.5625rem);
}
.grid-margin-x > .small-12 {
  width: calc(100% - 1.5625rem);
}
@media print, screen and (min-width: 37.5em) {
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.3333333333% - 1.5625rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.6666666667% - 1.5625rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 1.5625rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.3333333333% - 1.5625rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.6666666667% - 1.5625rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 1.5625rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.3333333333% - 1.5625rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.6666666667% - 1.5625rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 1.5625rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.3333333333% - 1.5625rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.6666666667% - 1.5625rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 1.5625rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x > .auto {
    width: auto;
  }
  .grid-margin-x > .shrink {
    width: auto;
  }
  .grid-margin-x > .small-1 {
    width: calc(8.3333333333% - 0.9375rem);
  }
  .grid-margin-x > .small-2 {
    width: calc(16.6666666667% - 0.9375rem);
  }
  .grid-margin-x > .small-3 {
    width: calc(25% - 0.9375rem);
  }
  .grid-margin-x > .small-4 {
    width: calc(33.3333333333% - 0.9375rem);
  }
  .grid-margin-x > .small-5 {
    width: calc(41.6666666667% - 0.9375rem);
  }
  .grid-margin-x > .small-6 {
    width: calc(50% - 0.9375rem);
  }
  .grid-margin-x > .small-7 {
    width: calc(58.3333333333% - 0.9375rem);
  }
  .grid-margin-x > .small-8 {
    width: calc(66.6666666667% - 0.9375rem);
  }
  .grid-margin-x > .small-9 {
    width: calc(75% - 0.9375rem);
  }
  .grid-margin-x > .small-10 {
    width: calc(83.3333333333% - 0.9375rem);
  }
  .grid-margin-x > .small-11 {
    width: calc(91.6666666667% - 0.9375rem);
  }
  .grid-margin-x > .small-12 {
    width: calc(100% - 0.9375rem);
  }
  .grid-margin-x > .large-auto {
    width: auto;
  }
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(8.3333333333% - 0.9375rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(16.6666666667% - 0.9375rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(25% - 0.9375rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(33.3333333333% - 0.9375rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(41.6666666667% - 0.9375rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(50% - 0.9375rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(58.3333333333% - 0.9375rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(66.6666666667% - 0.9375rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(75% - 0.9375rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(83.3333333333% - 0.9375rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(91.6666666667% - 0.9375rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(100% - 0.9375rem);
  }
}
.grid-padding-x .grid-padding-x {
  margin-right: -0.78125rem;
  margin-left: -0.78125rem;
}
@media print, screen and (min-width: 64em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -0.46875rem;
    margin-left: -0.46875rem;
  }
}
.grid-padding-x > .cell {
  padding-right: 0.78125rem;
  padding-left: 0.78125rem;
}
@media print, screen and (min-width: 64em) {
  .grid-padding-x > .cell {
    padding-right: 0.46875rem;
    padding-left: 0.46875rem;
  }
}
.small-up-1 > .cell {
  width: 100%;
}
.small-up-2 > .cell {
  width: 50%;
}
.small-up-3 > .cell {
  width: 33.3333333333%;
}
.small-up-4 > .cell {
  width: 25%;
}
.small-up-5 > .cell {
  width: 20%;
}
.small-up-6 > .cell {
  width: 16.6666666667%;
}
.small-up-7 > .cell {
  width: 14.2857142857%;
}
.small-up-8 > .cell {
  width: 12.5%;
}
@media print, screen and (min-width: 37.5em) {
  .medium-up-1 > .cell {
    width: 100%;
  }
  .medium-up-2 > .cell {
    width: 50%;
  }
  .medium-up-3 > .cell {
    width: 33.3333333333%;
  }
  .medium-up-4 > .cell {
    width: 25%;
  }
  .medium-up-5 > .cell {
    width: 20%;
  }
  .medium-up-6 > .cell {
    width: 16.6666666667%;
  }
  .medium-up-7 > .cell {
    width: 14.2857142857%;
  }
  .medium-up-8 > .cell {
    width: 12.5%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-up-1 > .cell {
    width: 100%;
  }
  .large-up-2 > .cell {
    width: 50%;
  }
  .large-up-3 > .cell {
    width: 33.3333333333%;
  }
  .large-up-4 > .cell {
    width: 25%;
  }
  .large-up-5 > .cell {
    width: 20%;
  }
  .large-up-6 > .cell {
    width: 16.6666666667%;
  }
  .large-up-7 > .cell {
    width: 14.2857142857%;
  }
  .large-up-8 > .cell {
    width: 12.5%;
  }
}
.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 1.5625rem);
}
.grid-margin-x.small-up-2 > .cell {
  width: calc(50% - 1.5625rem);
}
.grid-margin-x.small-up-3 > .cell {
  width: calc(33.3333333333% - 1.5625rem);
}
.grid-margin-x.small-up-4 > .cell {
  width: calc(25% - 1.5625rem);
}
.grid-margin-x.small-up-5 > .cell {
  width: calc(20% - 1.5625rem);
}
.grid-margin-x.small-up-6 > .cell {
  width: calc(16.6666666667% - 1.5625rem);
}
.grid-margin-x.small-up-7 > .cell {
  width: calc(14.2857142857% - 1.5625rem);
}
.grid-margin-x.small-up-8 > .cell {
  width: calc(12.5% - 1.5625rem);
}
@media print, screen and (min-width: 37.5em) {
  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 1.5625rem);
  }
  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 1.5625rem);
  }
  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.3333333333% - 1.5625rem);
  }
  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 1.5625rem);
  }
  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 1.5625rem);
  }
  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.6666666667% - 1.5625rem);
  }
  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.2857142857% - 1.5625rem);
  }
  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 1.5625rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x.small-up-1 > .cell {
    width: calc(100% - 0.9375rem);
  }
  .grid-margin-x.small-up-2 > .cell {
    width: calc(50% - 0.9375rem);
  }
  .grid-margin-x.small-up-3 > .cell {
    width: calc(33.3333333333% - 0.9375rem);
  }
  .grid-margin-x.small-up-4 > .cell {
    width: calc(25% - 0.9375rem);
  }
  .grid-margin-x.small-up-5 > .cell {
    width: calc(20% - 0.9375rem);
  }
  .grid-margin-x.small-up-6 > .cell {
    width: calc(16.6666666667% - 0.9375rem);
  }
  .grid-margin-x.small-up-7 > .cell {
    width: calc(14.2857142857% - 0.9375rem);
  }
  .grid-margin-x.small-up-8 > .cell {
    width: calc(12.5% - 0.9375rem);
  }
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 0.9375rem);
  }
  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 0.9375rem);
  }
  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.3333333333% - 0.9375rem);
  }
  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 0.9375rem);
  }
  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 0.9375rem);
  }
  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.6666666667% - 0.9375rem);
  }
  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.2857142857% - 0.9375rem);
  }
  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 0.9375rem);
  }
}
.small-margin-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .cell {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .small-1 {
  width: 8.3333333333%;
}
.small-margin-collapse > .small-2 {
  width: 16.6666666667%;
}
.small-margin-collapse > .small-3 {
  width: 25%;
}
.small-margin-collapse > .small-4 {
  width: 33.3333333333%;
}
.small-margin-collapse > .small-5 {
  width: 41.6666666667%;
}
.small-margin-collapse > .small-6 {
  width: 50%;
}
.small-margin-collapse > .small-7 {
  width: 58.3333333333%;
}
.small-margin-collapse > .small-8 {
  width: 66.6666666667%;
}
.small-margin-collapse > .small-9 {
  width: 75%;
}
.small-margin-collapse > .small-10 {
  width: 83.3333333333%;
}
.small-margin-collapse > .small-11 {
  width: 91.6666666667%;
}
.small-margin-collapse > .small-12 {
  width: 100%;
}
.small-margin-collapse > .medium-1 {
  width: 8.3333333333%;
}
.small-margin-collapse > .medium-2 {
  width: 16.6666666667%;
}
.small-margin-collapse > .medium-3 {
  width: 25%;
}
.small-margin-collapse > .medium-4 {
  width: 33.3333333333%;
}
.small-margin-collapse > .medium-5 {
  width: 41.6666666667%;
}
.small-margin-collapse > .medium-6 {
  width: 50%;
}
.small-margin-collapse > .medium-7 {
  width: 58.3333333333%;
}
.small-margin-collapse > .medium-8 {
  width: 66.6666666667%;
}
.small-margin-collapse > .medium-9 {
  width: 75%;
}
.small-margin-collapse > .medium-10 {
  width: 83.3333333333%;
}
.small-margin-collapse > .medium-11 {
  width: 91.6666666667%;
}
.small-margin-collapse > .medium-12 {
  width: 100%;
}
.small-margin-collapse > .large-1 {
  width: 8.3333333333%;
}
.small-margin-collapse > .large-2 {
  width: 16.6666666667%;
}
.small-margin-collapse > .large-3 {
  width: 25%;
}
.small-margin-collapse > .large-4 {
  width: 33.3333333333%;
}
.small-margin-collapse > .large-5 {
  width: 41.6666666667%;
}
.small-margin-collapse > .large-6 {
  width: 50%;
}
.small-margin-collapse > .large-7 {
  width: 58.3333333333%;
}
.small-margin-collapse > .large-8 {
  width: 66.6666666667%;
}
.small-margin-collapse > .large-9 {
  width: 75%;
}
.small-margin-collapse > .large-10 {
  width: 83.3333333333%;
}
.small-margin-collapse > .large-11 {
  width: 91.6666666667%;
}
.small-margin-collapse > .large-12 {
  width: 100%;
}
.small-padding-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-padding-collapse > .cell {
  padding-right: 0;
  padding-left: 0;
}
@media print, screen and (min-width: 37.5em) {
  .medium-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .small-3 {
    width: 25%;
  }
  .medium-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .small-6 {
    width: 50%;
  }
  .medium-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .small-9 {
    width: 75%;
  }
  .medium-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .small-12 {
    width: 100%;
  }
  .medium-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .medium-3 {
    width: 25%;
  }
  .medium-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .medium-6 {
    width: 50%;
  }
  .medium-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .medium-9 {
    width: 75%;
  }
  .medium-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .medium-12 {
    width: 100%;
  }
  .medium-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .large-3 {
    width: 25%;
  }
  .medium-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .large-6 {
    width: 50%;
  }
  .medium-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .large-9 {
    width: 75%;
  }
  .medium-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .large-12 {
    width: 100%;
  }
  .medium-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
  .large-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .small-3 {
    width: 25%;
  }
  .large-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .small-6 {
    width: 50%;
  }
  .large-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .small-9 {
    width: 75%;
  }
  .large-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .small-12 {
    width: 100%;
  }
  .large-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .medium-3 {
    width: 25%;
  }
  .large-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .medium-6 {
    width: 50%;
  }
  .large-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .medium-9 {
    width: 75%;
  }
  .large-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .medium-12 {
    width: 100%;
  }
  .large-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .large-3 {
    width: 25%;
  }
  .large-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .large-6 {
    width: 50%;
  }
  .large-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .large-9 {
    width: 75%;
  }
  .large-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .large-12 {
    width: 100%;
  }
  .large-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}
.small-offset-0 {
  margin-left: 0%;
}
.grid-margin-x > .small-offset-0 {
  margin-left: calc(0% + 0.78125rem);
}
.small-offset-1 {
  margin-left: 8.3333333333%;
}
.grid-margin-x > .small-offset-1 {
  margin-left: calc(8.3333333333% + 0.78125rem);
}
.small-offset-2 {
  margin-left: 16.6666666667%;
}
.grid-margin-x > .small-offset-2 {
  margin-left: calc(16.6666666667% + 0.78125rem);
}
.small-offset-3 {
  margin-left: 25%;
}
.grid-margin-x > .small-offset-3 {
  margin-left: calc(25% + 0.78125rem);
}
.small-offset-4 {
  margin-left: 33.3333333333%;
}
.grid-margin-x > .small-offset-4 {
  margin-left: calc(33.3333333333% + 0.78125rem);
}
.small-offset-5 {
  margin-left: 41.6666666667%;
}
.grid-margin-x > .small-offset-5 {
  margin-left: calc(41.6666666667% + 0.78125rem);
}
.small-offset-6 {
  margin-left: 50%;
}
.grid-margin-x > .small-offset-6 {
  margin-left: calc(50% + 0.78125rem);
}
.small-offset-7 {
  margin-left: 58.3333333333%;
}
.grid-margin-x > .small-offset-7 {
  margin-left: calc(58.3333333333% + 0.78125rem);
}
.small-offset-8 {
  margin-left: 66.6666666667%;
}
.grid-margin-x > .small-offset-8 {
  margin-left: calc(66.6666666667% + 0.78125rem);
}
.small-offset-9 {
  margin-left: 75%;
}
.grid-margin-x > .small-offset-9 {
  margin-left: calc(75% + 0.78125rem);
}
.small-offset-10 {
  margin-left: 83.3333333333%;
}
.grid-margin-x > .small-offset-10 {
  margin-left: calc(83.3333333333% + 0.78125rem);
}
.small-offset-11 {
  margin-left: 91.6666666667%;
}
.grid-margin-x > .small-offset-11 {
  margin-left: calc(91.6666666667% + 0.78125rem);
}
@media print, screen and (min-width: 37.5em) {
  .medium-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 0.78125rem);
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.3333333333% + 0.78125rem);
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.6666666667% + 0.78125rem);
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 0.78125rem);
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.3333333333% + 0.78125rem);
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.6666666667% + 0.78125rem);
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 0.78125rem);
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.3333333333% + 0.78125rem);
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.6666666667% + 0.78125rem);
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 0.78125rem);
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.3333333333% + 0.78125rem);
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.6666666667% + 0.78125rem);
  }
}
@media print, screen and (min-width: 64em) {
  .large-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 0.46875rem);
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.3333333333% + 0.46875rem);
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.6666666667% + 0.46875rem);
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 0.46875rem);
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.3333333333% + 0.46875rem);
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.6666666667% + 0.46875rem);
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 0.46875rem);
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.3333333333% + 0.46875rem);
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.6666666667% + 0.46875rem);
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 0.46875rem);
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.3333333333% + 0.46875rem);
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.6666666667% + 0.46875rem);
  }
}
.grid-y {
  display: flex;
  flex-flow: column nowrap;
}
.grid-y > .cell {
  width: auto;
}
.grid-y > .auto {
  height: auto;
}
.grid-y > .shrink {
  height: auto;
}
.grid-y > small-shrink, .grid-y > small-full, .grid-y > small-1, .grid-y > small-2, .grid-y > small-3, .grid-y > small-4, .grid-y > small-5, .grid-y > small-6, .grid-y > small-7, .grid-y > small-8, .grid-y > small-9, .grid-y > small-10, .grid-y > small-11, .grid-y > small-12 {
  flex-basis: auto;
}
@media print, screen and (min-width: 37.5em) {
  .grid-y > medium-shrink, .grid-y > medium-full, .grid-y > medium-1, .grid-y > medium-2, .grid-y > medium-3, .grid-y > medium-4, .grid-y > medium-5, .grid-y > medium-6, .grid-y > medium-7, .grid-y > medium-8, .grid-y > medium-9, .grid-y > medium-10, .grid-y > medium-11, .grid-y > medium-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > large-shrink, .grid-y > large-full, .grid-y > large-1, .grid-y > large-2, .grid-y > large-3, .grid-y > large-4, .grid-y > large-5, .grid-y > large-6, .grid-y > large-7, .grid-y > large-8, .grid-y > large-9, .grid-y > large-10, .grid-y > large-11, .grid-y > large-12 {
    flex-basis: auto;
  }
}
.grid-y > .small-auto {
  flex: 1 1 0px;
  height: auto;
}
.grid-y > .small-shrink {
  height: auto;
}
.grid-y > .small-1 {
  height: 8.3333333333%;
}
.grid-y > .small-2 {
  height: 16.6666666667%;
}
.grid-y > .small-3 {
  height: 25%;
}
.grid-y > .small-4 {
  height: 33.3333333333%;
}
.grid-y > .small-5 {
  height: 41.6666666667%;
}
.grid-y > .small-6 {
  height: 50%;
}
.grid-y > .small-7 {
  height: 58.3333333333%;
}
.grid-y > .small-8 {
  height: 66.6666666667%;
}
.grid-y > .small-9 {
  height: 75%;
}
.grid-y > .small-10 {
  height: 83.3333333333%;
}
.grid-y > .small-11 {
  height: 91.6666666667%;
}
.grid-y > .small-12 {
  height: 100%;
}
@media print, screen and (min-width: 37.5em) {
  .grid-y > .medium-auto {
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .medium-shrink {
    height: auto;
  }
  .grid-y > .medium-1 {
    height: 8.3333333333%;
  }
  .grid-y > .medium-2 {
    height: 16.6666666667%;
  }
  .grid-y > .medium-3 {
    height: 25%;
  }
  .grid-y > .medium-4 {
    height: 33.3333333333%;
  }
  .grid-y > .medium-5 {
    height: 41.6666666667%;
  }
  .grid-y > .medium-6 {
    height: 50%;
  }
  .grid-y > .medium-7 {
    height: 58.3333333333%;
  }
  .grid-y > .medium-8 {
    height: 66.6666666667%;
  }
  .grid-y > .medium-9 {
    height: 75%;
  }
  .grid-y > .medium-10 {
    height: 83.3333333333%;
  }
  .grid-y > .medium-11 {
    height: 91.6666666667%;
  }
  .grid-y > .medium-12 {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-auto {
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .large-shrink {
    height: auto;
  }
  .grid-y > .large-1 {
    height: 8.3333333333%;
  }
  .grid-y > .large-2 {
    height: 16.6666666667%;
  }
  .grid-y > .large-3 {
    height: 25%;
  }
  .grid-y > .large-4 {
    height: 33.3333333333%;
  }
  .grid-y > .large-5 {
    height: 41.6666666667%;
  }
  .grid-y > .large-6 {
    height: 50%;
  }
  .grid-y > .large-7 {
    height: 58.3333333333%;
  }
  .grid-y > .large-8 {
    height: 66.6666666667%;
  }
  .grid-y > .large-9 {
    height: 75%;
  }
  .grid-y > .large-10 {
    height: 83.3333333333%;
  }
  .grid-y > .large-11 {
    height: 91.6666666667%;
  }
  .grid-y > .large-12 {
    height: 100%;
  }
}
.grid-padding-y .grid-padding-y {
  margin-top: -0.78125rem;
  margin-bottom: -0.78125rem;
}
@media print, screen and (min-width: 64em) {
  .grid-padding-y .grid-padding-y {
    margin-top: -0.46875rem;
    margin-bottom: -0.46875rem;
  }
}
.grid-padding-y > .cell {
  padding-top: 0.78125rem;
  padding-bottom: 0.78125rem;
}
@media print, screen and (min-width: 64em) {
  .grid-padding-y > .cell {
    padding-top: 0.46875rem;
    padding-bottom: 0.46875rem;
  }
}
.grid-margin-y {
  margin-top: -0.78125rem;
  margin-bottom: -0.78125rem;
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y {
    margin-top: -0.46875rem;
    margin-bottom: -0.46875rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 1.5625rem);
  margin-top: 0.78125rem;
  margin-bottom: 0.78125rem;
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .cell {
    height: calc(100% - 0.9375rem);
    margin-top: 0.46875rem;
    margin-bottom: 0.46875rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 1.5625rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 1.5625rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 1.5625rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 1.5625rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 1.5625rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 1.5625rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 1.5625rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 1.5625rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 1.5625rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 1.5625rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 1.5625rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 1.5625rem);
}
@media print, screen and (min-width: 37.5em) {
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 1.5625rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 1.5625rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.5625rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 1.5625rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 1.5625rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.5625rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 1.5625rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 1.5625rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.5625rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 1.5625rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 1.5625rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.5625rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 0.9375rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 0.9375rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 0.9375rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 0.9375rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 0.9375rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 0.9375rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 0.9375rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 0.9375rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 0.9375rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 0.9375rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 0.9375rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 0.9375rem);
  }
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 0.9375rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 0.9375rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 0.9375rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 0.9375rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 0.9375rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 0.9375rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 0.9375rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 0.9375rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 0.9375rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 0.9375rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 0.9375rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 0.9375rem);
  }
}
.grid-frame {
  width: 100vw;
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
}
.cell .grid-frame {
  width: 100%;
}
.cell-block {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-stype: -ms-autohiding-scrollbar;
}
.cell-block-y {
  overflow-y: auto;
  max-height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-stype: -ms-autohiding-scrollbar;
}
.cell-block-container {
  display: flex;
  flex-direction: column;
  max-height: 100%;
}
.cell-block-container > .grid-x {
  max-height: 100%;
  flex-wrap: nowrap;
}
@media print, screen and (min-width: 37.5em) {
  .medium-grid-frame {
    width: 100vw;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
  }
  .cell .medium-grid-frame {
    width: 100%;
  }
  .medium-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
  .medium-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .medium-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .medium-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
}
@media print, screen and (min-width: 64em) {
  .large-grid-frame {
    width: 100vw;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
  }
  .cell .large-grid-frame {
    width: 100%;
  }
  .large-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
  .large-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .large-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .large-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
}
.grid-y.grid-frame {
  width: auto;
  height: 100vh;
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
}
@media print, screen and (min-width: 37.5em) {
  .grid-y.medium-grid-frame {
    width: auto;
    height: 100vh;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y.large-grid-frame {
    width: auto;
    height: 100vh;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
  }
}
.cell .grid-y.grid-frame {
  height: 100%;
}
@media print, screen and (min-width: 37.5em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .cell .grid-y.large-grid-frame {
    height: 100%;
  }
}
div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}
p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
em, i {
  font-style: italic;
  line-height: inherit;
}
strong, b {
  font-weight: 600;
  line-height: inherit;
}
small {
  font-size: 80%;
  line-height: inherit;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Averta W01", calibri, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #5fb345;
  text-rendering: optimizeLegibility;
}
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  line-height: 0;
  color: #ccc;
}
h1 {
  font-size: 1.6875rem;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h2 {
  font-size: 1.6875rem;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h3 {
  font-size: 1.125rem;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h4 {
  font-size: 1rem;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h5 {
  font-size: 0.875rem;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h6 {
  font-size: 0.8125rem;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
@media print, screen and (min-width: 37.5em) {
  h1 {
    font-size: 2.125rem;
  }
  h2 {
    font-size: 2.125rem;
  }
  h3 {
    font-size: 1.1875rem;
  }
  h4 {
    font-size: 1rem;
  }
  h5 {
    font-size: 0.875rem;
  }
  h6 {
    font-size: 0.8125rem;
  }
}
a {
  line-height: inherit;
  color: #5fb345;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  color: #529a3b;
}
a img {
  border: 0;
}
hr {
  clear: both;
  max-width: 73.125rem;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #ccc;
  border-left: 0;
}
ul, ol, dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6;
}
li {
  font-size: inherit;
}
ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}
ol {
  margin-left: 1.25rem;
}
ul ul, ol ul, ul ol, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}
dl {
  margin-bottom: 1rem;
}
dl dt {
  margin-bottom: 0.3rem;
  font-weight: 600;
}
blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #ccc;
}
blockquote, blockquote p {
  line-height: 1.6;
  color: #777;
}
cite {
  display: block;
  font-size: 0.8125rem;
  color: #777;
}
cite:before {
  content: "— ";
}
abbr, abbr[title] {
  border-bottom: 1px dotted #222;
  cursor: help;
  text-decoration: none;
}
figure {
  margin: 0;
}
code {
  padding: 0.125rem 0.3125rem 0.0625rem;
  border: 1px solid #ccc;
  background-color: #f3f3f3;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: 300;
  color: #222;
}
kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #f3f3f3;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #222;
}
.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
  line-height: 1.4;
  color: #777;
}
.lead {
  font-size: 20px;
  line-height: 1.6;
}
.stat {
  font-size: 2.5rem;
  line-height: 1;
}
p + .stat {
  margin-top: -1rem;
}
ul.no-bullet, ol.no-bullet {
  margin-left: 0;
  list-style: none;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
@media print, screen and (min-width: 37.5em) {
  .medium-text-left {
    text-align: left;
  }
  .medium-text-right {
    text-align: right;
  }
  .medium-text-center {
    text-align: center;
  }
  .medium-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }
  .large-text-right {
    text-align: right;
  }
  .large-text-center {
    text-align: center;
  }
  .large-text-justify {
    text-align: justify;
  }
}
.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  font-family: "Averta W01", calibri, sans-serif;
  padding: 0.85em 1.25em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 3px;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #5fb345;
  color: #ffffff;
}
[data-whatinput="mouse"] .button {
  outline: 0;
}
.button:hover, .button:focus {
  background-color: #51983b;
  color: #ffffff;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.25rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.button.primary {
  background-color: #5fb345;
  color: #ffffff;
}
.button.primary:hover, .button.primary:focus {
  background-color: #56a13e;
  color: #ffffff;
}
.button.secondary {
  background-color: #009ee3;
  color: #ffffff;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: #008ecc;
  color: #ffffff;
}
.button.success {
  background-color: #3adb76;
  color: #ffffff;
}
.button.success:hover, .button.success:focus {
  background-color: #27d367;
  color: #ffffff;
}
.button.warning {
  background-color: #ffae00;
  color: #ffffff;
}
.button.warning:hover, .button.warning:focus {
  background-color: #e69d00;
  color: #ffffff;
}
.button.alert {
  background-color: #cc4b37;
  color: #ffffff;
}
.button.alert:hover, .button.alert:focus {
  background-color: #ba422f;
  color: #ffffff;
}
.button.light {
  background-color: #ffffff;
  color: #5fb345;
}
.button.light:hover, .button.light:focus {
  background-color: #e6e6e6;
  color: #5fb345;
}
.button.disabled, .button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled, .button.disabled:hover, .button.disabled:focus, .button[disabled], .button[disabled]:hover, .button[disabled]:focus {
  background-color: #5fb345;
  color: #ffffff;
}
.button.disabled.primary, .button[disabled].primary {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.primary, .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary, .button[disabled].primary:hover, .button[disabled].primary:focus {
  background-color: #5fb345;
  color: #ffffff;
}
.button.disabled.secondary, .button[disabled].secondary {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.secondary, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  background-color: #009ee3;
  color: #ffffff;
}
.button.disabled.success, .button[disabled].success {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.success, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success, .button[disabled].success:hover, .button[disabled].success:focus {
  background-color: #3adb76;
  color: #ffffff;
}
.button.disabled.warning, .button[disabled].warning {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.warning, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning, .button[disabled].warning:hover, .button[disabled].warning:focus {
  background-color: #ffae00;
  color: #ffffff;
}
.button.disabled.alert, .button[disabled].alert {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.alert, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert, .button[disabled].alert:hover, .button[disabled].alert:focus {
  background-color: #cc4b37;
  color: #ffffff;
}
.button.disabled.light, .button[disabled].light {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.light, .button.disabled.light:hover, .button.disabled.light:focus, .button[disabled].light, .button[disabled].light:hover, .button[disabled].light:focus {
  background-color: #ffffff;
  color: #5fb345;
}
.button.hollow {
  border: 1px solid #5fb345;
  color: #5fb345;
}
.button.hollow, .button.hollow:hover, .button.hollow:focus {
  background-color: transparent;
}
.button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus {
  background-color: transparent;
}
.button.hollow:hover, .button.hollow:focus {
  border-color: #305a23;
  color: #305a23;
}
.button.hollow:hover.disabled, .button.hollow:hover[disabled], .button.hollow:focus.disabled, .button.hollow:focus[disabled] {
  border: 1px solid #5fb345;
  color: #5fb345;
}
.button.hollow.primary {
  border: 1px solid #5fb345;
  color: #5fb345;
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: #305a23;
  color: #305a23;
}
.button.hollow.primary:hover.disabled, .button.hollow.primary:hover[disabled], .button.hollow.primary:focus.disabled, .button.hollow.primary:focus[disabled] {
  border: 1px solid #5fb345;
  color: #5fb345;
}
.button.hollow.secondary {
  border: 1px solid #009ee3;
  color: #009ee3;
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: #004f72;
  color: #004f72;
}
.button.hollow.secondary:hover.disabled, .button.hollow.secondary:hover[disabled], .button.hollow.secondary:focus.disabled, .button.hollow.secondary:focus[disabled] {
  border: 1px solid #009ee3;
  color: #009ee3;
}
.button.hollow.success {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: #157539;
  color: #157539;
}
.button.hollow.success:hover.disabled, .button.hollow.success:hover[disabled], .button.hollow.success:focus.disabled, .button.hollow.success:focus[disabled] {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.warning {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button.hollow.warning:hover.disabled, .button.hollow.warning:hover[disabled], .button.hollow.warning:focus.disabled, .button.hollow.warning:focus[disabled] {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.alert {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: #67251a;
  color: #67251a;
}
.button.hollow.alert:hover.disabled, .button.hollow.alert:hover[disabled], .button.hollow.alert:focus.disabled, .button.hollow.alert:focus[disabled] {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.hollow.light {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.button.hollow.light:hover, .button.hollow.light:focus {
  border-color: gray;
  color: gray;
}
.button.hollow.light:hover.disabled, .button.hollow.light:hover[disabled], .button.hollow.light:focus.disabled, .button.hollow.light:focus[disabled] {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.button.clear {
  border: 1px solid #5fb345;
  color: #5fb345;
}
.button.clear, .button.clear:hover, .button.clear:focus {
  background-color: transparent;
}
.button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus {
  background-color: transparent;
}
.button.clear:hover, .button.clear:focus {
  border-color: #305a23;
  color: #305a23;
}
.button.clear:hover.disabled, .button.clear:hover[disabled], .button.clear:focus.disabled, .button.clear:focus[disabled] {
  border: 1px solid #5fb345;
  color: #5fb345;
}
.button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear:hover, .button.clear:hover.disabled, .button.clear:hover[disabled], .button.clear:focus, .button.clear:focus.disabled, .button.clear:focus[disabled] {
  border-color: transparent;
}
.button.clear.primary {
  border: 1px solid #5fb345;
  color: #5fb345;
}
.button.clear.primary:hover, .button.clear.primary:focus {
  border-color: #305a23;
  color: #305a23;
}
.button.clear.primary:hover.disabled, .button.clear.primary:hover[disabled], .button.clear.primary:focus.disabled, .button.clear.primary:focus[disabled] {
  border: 1px solid #5fb345;
  color: #5fb345;
}
.button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary:hover, .button.clear.primary:hover.disabled, .button.clear.primary:hover[disabled], .button.clear.primary:focus, .button.clear.primary:focus.disabled, .button.clear.primary:focus[disabled] {
  border-color: transparent;
}
.button.clear.secondary {
  border: 1px solid #009ee3;
  color: #009ee3;
}
.button.clear.secondary:hover, .button.clear.secondary:focus {
  border-color: #004f72;
  color: #004f72;
}
.button.clear.secondary:hover.disabled, .button.clear.secondary:hover[disabled], .button.clear.secondary:focus.disabled, .button.clear.secondary:focus[disabled] {
  border: 1px solid #009ee3;
  color: #009ee3;
}
.button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary:hover, .button.clear.secondary:hover.disabled, .button.clear.secondary:hover[disabled], .button.clear.secondary:focus, .button.clear.secondary:focus.disabled, .button.clear.secondary:focus[disabled] {
  border-color: transparent;
}
.button.clear.success {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.clear.success:hover, .button.clear.success:focus {
  border-color: #157539;
  color: #157539;
}
.button.clear.success:hover.disabled, .button.clear.success:hover[disabled], .button.clear.success:focus.disabled, .button.clear.success:focus[disabled] {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success:hover, .button.clear.success:hover.disabled, .button.clear.success:hover[disabled], .button.clear.success:focus, .button.clear.success:focus.disabled, .button.clear.success:focus[disabled] {
  border-color: transparent;
}
.button.clear.warning {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.clear.warning:hover, .button.clear.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button.clear.warning:hover.disabled, .button.clear.warning:hover[disabled], .button.clear.warning:focus.disabled, .button.clear.warning:focus[disabled] {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning:hover, .button.clear.warning:hover.disabled, .button.clear.warning:hover[disabled], .button.clear.warning:focus, .button.clear.warning:focus.disabled, .button.clear.warning:focus[disabled] {
  border-color: transparent;
}
.button.clear.alert {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.clear.alert:hover, .button.clear.alert:focus {
  border-color: #67251a;
  color: #67251a;
}
.button.clear.alert:hover.disabled, .button.clear.alert:hover[disabled], .button.clear.alert:focus.disabled, .button.clear.alert:focus[disabled] {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert:hover, .button.clear.alert:hover.disabled, .button.clear.alert:hover[disabled], .button.clear.alert:focus, .button.clear.alert:focus.disabled, .button.clear.alert:focus[disabled] {
  border-color: transparent;
}
.button.clear.light {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.button.clear.light:hover, .button.clear.light:focus {
  border-color: gray;
  color: gray;
}
.button.clear.light:hover.disabled, .button.clear.light:hover[disabled], .button.clear.light:focus.disabled, .button.clear.light:focus[disabled] {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.button.clear.light, .button.clear.light.disabled, .button.clear.light[disabled], .button.clear.light:hover, .button.clear.light:hover.disabled, .button.clear.light:hover[disabled], .button.clear.light:focus, .button.clear.light:focus.disabled, .button.clear.light:focus[disabled] {
  border-color: transparent;
}
.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #ffffff transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 1.25em;
}
.button.dropdown.hollow::after {
  border-top-color: #5fb345;
}
.button.dropdown.hollow.primary::after {
  border-top-color: #5fb345;
}
.button.dropdown.hollow.secondary::after {
  border-top-color: #009ee3;
}
.button.dropdown.hollow.success::after {
  border-top-color: #3adb76;
}
.button.dropdown.hollow.warning::after {
  border-top-color: #ffae00;
}
.button.dropdown.hollow.alert::after {
  border-top-color: #cc4b37;
}
.button.dropdown.hollow.light::after {
  border-top-color: #ffffff;
}
.button.arrow-only::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}
[type="text"], [type="password"], [type="date"], [type="datetime"], [type="datetime-local"], [type="month"], [type="week"], [type="email"], [type="number"], [type="search"], [type="tel"], [type="time"], [type="url"], [type="color"], textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 0;
  background-color: #ffffff;
  box-shadow: inset 0 1px 2px rgba(34, 34, 34, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #222;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  appearance: none;
}
[type="text"]:focus, [type="password"]:focus, [type="date"]:focus, [type="datetime"]:focus, [type="datetime-local"]:focus, [type="month"]:focus, [type="week"]:focus, [type="email"]:focus, [type="number"]:focus, [type="search"]:focus, [type="tel"]:focus, [type="time"]:focus, [type="url"]:focus, [type="color"]:focus, textarea:focus {
  outline: none;
  border: 1px solid #777;
  background-color: #ffffff;
  box-shadow: 0 0 5px #ccc;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}
input::placeholder, textarea::placeholder {
  color: #ccc;
}
input:disabled, input[readonly], textarea:disabled, textarea[readonly] {
  background-color: #f3f3f3;
  cursor: not-allowed;
}
[type="submit"], [type="button"] {
  appearance: none;
  border-radius: 0;
}
input[type="search"] {
  box-sizing: border-box;
}
[type="file"], [type="checkbox"], [type="radio"] {
  margin: 0 0 1rem;
}
[type="checkbox"] + label, [type="radio"] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
}
[type="checkbox"] + label[for], [type="radio"] + label[for] {
  cursor: pointer;
}
label > [type="checkbox"], label > [type="radio"] {
  margin-right: 0.5rem;
}
[type="file"] {
  width: 100%;
}
label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: #222;
}
label.middle {
  margin: 0 0 1rem;
  padding: 0.5625rem 0;
}
.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #222;
}
.input-group {
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  align-items: stretch;
}
.input-group > :first-child {
  border-radius: 0 0 0 0;
}
.input-group > :last-child > * {
  border-radius: 0 0 0 0;
}
.input-group-label, .input-group-field, .input-group-button, .input-group-button a, .input-group-button input, .input-group-button button, .input-group-button label {
  margin: 0;
  white-space: nowrap;
}
.input-group-label {
  padding: 0 1rem;
  border: 1px solid #ccc;
  background: #f3f3f3;
  color: #222;
  text-align: center;
  white-space: nowrap;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.input-group-label:first-child {
  border-right: 0;
}
.input-group-label:last-child {
  border-left: 0;
}
.input-group-field {
  border-radius: 0;
  flex: 1 1 0px;
  height: auto;
  min-width: 0;
}
.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  flex: 0 0 auto;
}
.input-group-button a, .input-group-button input, .input-group-button button, .input-group-button label {
  height: 2.5rem;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1rem;
}
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
legend {
  max-width: 100%;
  margin-bottom: 0.5rem;
}
.fieldset {
  margin: 1.125rem 0;
  padding: 1.25rem;
  border: 1px solid #ccc;
}
.fieldset legend {
  margin: 0;
  margin-left: -0.1875rem;
  padding: 0 0.1875rem;
}
select {
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  appearance: none;
  border: 1px solid #ccc;
  border-radius: 0;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #222;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28119, 119, 119%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
@media screen and (min-width:0\0) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:focus {
  outline: none;
  border: 1px solid #777;
  background-color: #ffffff;
  box-shadow: 0 0 5px #ccc;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: #f3f3f3;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}
.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: #faedeb;
}
.is-invalid-input:not(:focus)::placeholder {
  color: #cc4b37;
}
.is-invalid-label {
  color: #cc4b37;
}
.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #cc4b37;
}
.form-error.is-visible {
  display: block;
}
.accordion {
  margin-left: 0;
  background: #ffffff;
  list-style-type: none;
}
.accordion[disabled] .accordion-title {
  cursor: not-allowed;
}
.accordion-item:first-child > :first-child {
  border-radius: 0 0 0 0;
}
.accordion-item:last-child > :last-child {
  border-radius: 0 0 0 0;
}
.accordion-title {
  position: relative;
  display: block;
  padding: 0;
  border: 1px solid #5fb345;
  border-bottom: 0;
  font-size: 0.9375rem;
  line-height: 1;
  color: #5fb345;
}
:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #5fb345;
  border-radius: 0 0 0 0;
}
.accordion-title:hover, .accordion-title:focus {
  background-color: transparent;
}
.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #5fb345;
  border-bottom: 0;
  background-color: #ffffff;
  color: #222;
}
:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #5fb345;
}
.callout {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(34, 34, 34, 0.25);
  border-radius: 0;
  background-color: white;
  color: #222;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: #e7f4e3;
  color: #222;
}
.callout.secondary {
  background-color: #d5f2ff;
  color: #222;
}
.callout.success {
  background-color: #e1faea;
  color: #222;
}
.callout.warning {
  background-color: #fff3d9;
  color: #222;
}
.callout.alert {
  background-color: #f7e4e1;
  color: #222;
}
.callout.light {
  background-color: white;
  color: #222;
}
.callout.small {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.callout.large {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}
.sticky-container {
  position: relative;
}
.sticky {
  position: relative;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}
.sticky.is-stuck {
  position: fixed;
  z-index: 5;
  width: 100%;
}
.sticky.is-stuck.is-at-top {
  top: 0;
}
.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}
.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto;
}
.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}
.is-off-canvas-open {
  overflow: hidden;
}
.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 91;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(255, 255, 255, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.js-off-canvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.js-off-canvas-overlay.is-closable {
  cursor: pointer;
}
.js-off-canvas-overlay.is-overlay-absolute {
  position: absolute;
}
.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed;
}
.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}
.off-canvas {
  position: fixed;
  z-index: 92;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #ffffff;
}
[data-whatinput="mouse"] .off-canvas {
  outline: 0;
}
.off-canvas.is-transition-push {
  z-index: 92;
}
.off-canvas.is-closed {
  visibility: hidden;
}
.off-canvas.is-transition-overlap {
  z-index: 93;
}
.off-canvas.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(34, 34, 34, 0.7);
}
.off-canvas.is-open {
  transform: translate(0, 0);
}
.off-canvas-absolute {
  position: absolute;
  z-index: 92;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #ffffff;
}
[data-whatinput="mouse"] .off-canvas-absolute {
  outline: 0;
}
.off-canvas-absolute.is-transition-push {
  z-index: 92;
}
.off-canvas-absolute.is-closed {
  visibility: hidden;
}
.off-canvas-absolute.is-transition-overlap {
  z-index: 93;
}
.off-canvas-absolute.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(34, 34, 34, 0.7);
}
.off-canvas-absolute.is-open {
  transform: translate(0, 0);
}
.position-left {
  top: 0;
  left: 0;
  width: 275px;
  height: 100%;
  transform: translateX(-275px);
  overflow-y: auto;
}
.off-canvas-content .off-canvas.position-left {
  transform: translateX(-275px);
}
.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open {
  transform: translate(0, 0);
}
.off-canvas-content.is-open-left.has-transition-push {
  transform: translateX(275px);
}
.position-left.is-transition-push {
  box-shadow: inset -13px 0 20px -13px rgba(34, 34, 34, 0.25);
}
.position-right {
  top: 0;
  right: 0;
  width: 275px;
  height: 100%;
  transform: translateX(275px);
  overflow-y: auto;
}
.off-canvas-content .off-canvas.position-right {
  transform: translateX(275px);
}
.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open {
  transform: translate(0, 0);
}
.off-canvas-content.is-open-right.has-transition-push {
  transform: translateX(-275px);
}
.position-right.is-transition-push {
  box-shadow: inset 13px 0 20px -13px rgba(34, 34, 34, 0.25);
}
.position-top {
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  transform: translateY(-250px);
  overflow-x: auto;
}
.off-canvas-content .off-canvas.position-top {
  transform: translateY(-250px);
}
.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open {
  transform: translate(0, 0);
}
.off-canvas-content.is-open-top.has-transition-push {
  transform: translateY(250px);
}
.position-top.is-transition-push {
  box-shadow: inset 0 -13px 20px -13px rgba(34, 34, 34, 0.25);
}
.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  transform: translateY(250px);
  overflow-x: auto;
}
.off-canvas-content .off-canvas.position-bottom {
  transform: translateY(250px);
}
.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open {
  transform: translate(0, 0);
}
.off-canvas-content.is-open-bottom.has-transition-push {
  transform: translateY(-250px);
}
.position-bottom.is-transition-push {
  box-shadow: inset 0 13px 20px -13px rgba(34, 34, 34, 0.25);
}
.off-canvas-content {
  transform: none;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}
.off-canvas-content.has-transition-push {
  transform: translate(0, 0);
}
.off-canvas-content .off-canvas.is-open {
  transform: translate(0, 0);
}
@media print, screen and (min-width: 37.5em) {
  .position-left.reveal-for-medium {
    transform: none;
    z-index: 92;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-medium {
    transform: none;
  }
  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 275px;
  }
  .position-right.reveal-for-medium {
    transform: none;
    z-index: 92;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-medium {
    transform: none;
  }
  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 275px;
  }
  .position-top.reveal-for-medium {
    transform: none;
    z-index: 92;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-medium {
    transform: none;
  }
  .position-top.reveal-for-medium ~ .off-canvas-content {
    margin-top: 275px;
  }
  .position-bottom.reveal-for-medium {
    transform: none;
    z-index: 92;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-medium {
    transform: none;
  }
  .position-bottom.reveal-for-medium ~ .off-canvas-content {
    margin-bottom: 275px;
  }
}
@media print, screen and (min-width: 37.5em) {
  .off-canvas-content.has-reveal-left {
    margin-left: 275px;
  }
}
@media print, screen and (min-width: 37.5em) {
  .off-canvas-content.has-reveal-right {
    margin-right: 275px;
  }
}
@media print, screen and (min-width: 37.5em) {
  .off-canvas-content.has-reveal-top {
    margin-top: 275px;
  }
}
@media print, screen and (min-width: 37.5em) {
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 275px;
  }
}
@media print, screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    transform: none;
    z-index: 92;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-large {
    transform: none;
  }
  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 275px;
  }
  .position-right.reveal-for-large {
    transform: none;
    z-index: 92;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-large {
    transform: none;
  }
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 275px;
  }
  .position-top.reveal-for-large {
    transform: none;
    z-index: 92;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-large {
    transform: none;
  }
  .position-top.reveal-for-large ~ .off-canvas-content {
    margin-top: 275px;
  }
  .position-bottom.reveal-for-large {
    transform: none;
    z-index: 92;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-large {
    transform: none;
  }
  .position-bottom.reveal-for-large ~ .off-canvas-content {
    margin-bottom: 275px;
  }
}
@media print, screen and (min-width: 64em) {
  .off-canvas-content.has-reveal-left {
    margin-left: 275px;
  }
}
@media print, screen and (min-width: 64em) {
  .off-canvas-content.has-reveal-right {
    margin-right: 275px;
  }
}
@media print, screen and (min-width: 64em) {
  .off-canvas-content.has-reveal-top {
    margin-top: 275px;
  }
}
@media print, screen and (min-width: 64em) {
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 275px;
  }
}
@media print, screen and (min-width: 37.5em) {
  .off-canvas.in-canvas-for-medium {
    visibility: visible;
    height: auto;
    position: static;
    background: inherit;
    width: inherit;
    overflow: inherit;
    transition: inherit;
  }
  .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-medium .close-button {
    display: none;
  }
}
@media print, screen and (min-width: 64em) {
  .off-canvas.in-canvas-for-large {
    visibility: visible;
    height: auto;
    position: static;
    background: inherit;
    width: inherit;
    overflow: inherit;
    transition: inherit;
  }
  .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-large .close-button {
    display: none;
  }
}
.hide {
  display: none !important;
}
.invisible {
  visibility: hidden;
}
@media screen and (max-width: 26.1875em) {
  .hide-for-small-only {
    display: none !important;
  }
}
@media screen and (max-width: 0em), screen and (min-width: 26.25em) {
  .show-for-small-only {
    display: none !important;
  }
}
@media print, screen and (min-width: 37.5em) {
  .hide-for-medium {
    display: none !important;
  }
}
@media screen and (max-width: 37.4375em) {
  .show-for-medium {
    display: none !important;
  }
}
@media screen and (min-width: 37.5em) and (max-width: 63.9375em) {
  .hide-for-medium-only {
    display: none !important;
  }
}
@media screen and (max-width: 37.4375em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}
@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}
@media screen and (max-width: 63.9375em) {
  .show-for-large {
    display: none !important;
  }
}
@media screen and (min-width: 64em) and (max-width: 74.9375em) {
  .hide-for-large-only {
    display: none !important;
  }
}
@media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important;
  }
}
.show-for-sr, .show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}
.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  clip-path: none;
}
.show-for-landscape, .hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape, .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape, .hide-for-portrait {
    display: none !important;
  }
}
.hide-for-landscape, .show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape, .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape, .show-for-portrait {
    display: block !important;
  }
}
.float-left {
  float: left !important;
}
.float-right {
  float: right !important;
}
.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.clearfix::before, .clearfix::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.clearfix::after {
  clear: both;
}
.align-right {
  justify-content: flex-end;
}
.align-center {
  justify-content: center;
}
.align-justify {
  justify-content: space-between;
}
.align-spaced {
  justify-content: space-around;
}
.align-right.vertical.menu > li > a {
  justify-content: flex-end;
}
.align-center.vertical.menu > li > a {
  justify-content: center;
}
.align-top {
  align-items: flex-start;
}
.align-self-top {
  align-self: flex-start;
}
.align-bottom {
  align-items: flex-end;
}
.align-self-bottom {
  align-self: flex-end;
}
.align-middle {
  align-items: center;
}
.align-self-middle {
  align-self: center;
}
.align-stretch {
  align-items: stretch;
}
.align-self-stretch {
  align-self: stretch;
}
.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center;
}
.small-order-1 {
  order: 1;
}
.small-order-2 {
  order: 2;
}
.small-order-3 {
  order: 3;
}
.small-order-4 {
  order: 4;
}
.small-order-5 {
  order: 5;
}
.small-order-6 {
  order: 6;
}
@media print, screen and (min-width: 37.5em) {
  .medium-order-1 {
    order: 1;
  }
  .medium-order-2 {
    order: 2;
  }
  .medium-order-3 {
    order: 3;
  }
  .medium-order-4 {
    order: 4;
  }
  .medium-order-5 {
    order: 5;
  }
  .medium-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 64em) {
  .large-order-1 {
    order: 1;
  }
  .large-order-2 {
    order: 2;
  }
  .large-order-3 {
    order: 3;
  }
  .large-order-4 {
    order: 4;
  }
  .large-order-5 {
    order: 5;
  }
  .large-order-6 {
    order: 6;
  }
}
.flex-container {
  display: flex;
}
.flex-child-auto {
  flex: 1 1 auto;
}
.flex-child-grow {
  flex: 1 0 auto;
}
.flex-child-shrink {
  flex: 0 1 auto;
}
.flex-dir-row {
  flex-direction: row;
}
.flex-dir-row-reverse {
  flex-direction: row-reverse;
}
.flex-dir-column {
  flex-direction: column;
}
.flex-dir-column-reverse {
  flex-direction: column-reverse;
}
@media print, screen and (min-width: 37.5em) {
  .medium-flex-container {
    display: flex;
  }
  .medium-flex-child-auto {
    flex: 1 1 auto;
  }
  .medium-flex-child-grow {
    flex: 1 0 auto;
  }
  .medium-flex-child-shrink {
    flex: 0 1 auto;
  }
  .medium-flex-dir-row {
    flex-direction: row;
  }
  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .medium-flex-dir-column {
    flex-direction: column;
  }
  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: flex;
  }
  .large-flex-child-auto {
    flex: 1 1 auto;
  }
  .large-flex-child-grow {
    flex: 1 0 auto;
  }
  .large-flex-child-shrink {
    flex: 0 1 auto;
  }
  .large-flex-dir-row {
    flex-direction: row;
  }
  .large-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .large-flex-dir-column {
    flex-direction: column;
  }
  .large-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: none;
  font-weight: 600;
  cursor: default;
}
.tooltip {
  position: absolute;
  top: calc(100% + 0.433rem);
  z-index: 1200;
  max-width: 300px;
  padding: 0.75rem;
  border-radius: 3px;
  background-color: #5fb345;
  font-size: 0.9375rem;
  color: #ffffff;
}
.tooltip::before {
  position: absolute;
}
.tooltip.bottom::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.5rem;
  content: "";
  border-top-width: 0;
  border-bottom-style: solid;
  border-color: transparent transparent #5fb345;
  bottom: 100%;
}
.tooltip.bottom.align-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.top::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.5rem;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #5fb345 transparent transparent;
  top: 100%;
  bottom: auto;
}
.tooltip.top.align-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.left::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.5rem;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #5fb345;
  left: 100%;
}
.tooltip.left.align-center::before {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.right::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.5rem;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #5fb345 transparent transparent;
  right: 100%;
  left: auto;
}
.tooltip.right.align-center::before {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.align-top::before {
  bottom: auto;
  top: 10%;
}
.tooltip.align-bottom::before {
  bottom: 10%;
  top: auto;
}
.tooltip.align-left::before {
  left: 10%;
  right: auto;
}
.tooltip.align-right::before {
  left: auto;
  right: 10%;
}
* {
  -webkit-overflow-scrolling: touch;
}
body {
  min-width: 320px;
  min-height: 400px;
  overflow-y: scroll;
  position: relative;
}
body.isDev {
  border: 5px solid #f00;
}
a {
  transition: color 200ms;
}
strong, b, span[style~="bold;"] {
  font-weight: 400;
}
h2 strong, h2 b, h2 span[style~="bold;"], h3 strong, h3 b, h3 span[style~="bold;"], h4 strong, h4 b, h4 span[style~="bold;"], h5 strong, h5 b, h5 span[style~="bold;"] {
  font-weight: 600;
}
em strong, em b, em span[style~="bold;"], i strong, i b, i span[style~="bold;"], span[style~="italic;"] strong, span[style~="italic;"] b, span[style~="italic;"] span[style~="bold;"] {
  font-weight: 300;
}
@media screen and (max-width: 26.1875em) {
  body {
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}
@media screen and (max-width: 26.1875em) {
  h2 br, h3 br {
    display: none;
  }
}
@media print, screen and (min-width: 37.5em) {
  main {
    font-size: 17px;
  }
}
@media print, screen and (min-width: 64em) {
  main {
    font-size: 18px;
  }
}
@media screen and (min-width: 75em) {
  main {
    font-size: 19px;
  }
}
h1, h2 {
  margin-bottom: 1.25em;
}
p + h2, p + h3, p + .h3, ul + h2, ul + h3, ul + .h3 {
  margin-top: 1.75em;
}
h2.light {
  font-weight: 200;
}
@media screen and (max-width: 26.1875em) {
  h2.light {
    font-size: 1.5rem;
  }
}
h4.subhead, h5.subhead {
  font-size: 1.0625rem;
  font-family: "Fira Sans", calibri, sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 26.1875em) {
  h4.s-center, h1.s-center {
    text-align: center;
  }
}
h5.light {
  font-weight: 300;
  font-family: "Fira Sans", calibri, sans-serif;
}
.button {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.button a {
  color: #ffffff;
}
.button.spacing {
  margin-left: 0.9375rem;
  margin-right: 0.9375rem;
}
.button.buttonTwo, .button.magenta {
  background-color: #e1007d;
}
.button.buttonTwo:hover, .button.magenta:hover {
  background-color: #bf006a;
}
.button.wirtschaft {
  background-color: #009ee3;
}
.button.wirtschaft:hover {
  background-color: #0086c1;
}
.button.tourismus {
  background-color: #007a67;
}
.button.tourismus:hover {
  background-color: #006858;
}
abbr[title], .has-tip {
  font-weight: initial;
  color: #5fb345;
  border-bottom: none !important;
}
.author-info {
  display: block;
  text-align: right;
  font-size: 1.0625rem;
  color: #d8d8d8;
}
.articleAuthor {
  color: #9b9a9b;
}
.relative {
  position: relative;
}
.tooltip {
  font-weight: 600;
  line-height: 1.3;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}
[type="text"], [type="password"], [type="date"], [type="datetime"], [type="datetime-local"], [type="month"], [type="week"], [type="email"], [type="number"], [type="search"], [type="tel"], [type="time"], [type="url"], [type="color"], textarea {
  display: block;
  width: 100%;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  background: #f3f3f3;
  color: #222;
  font-family: "Fira Sans", calibri, sans-serif;
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.3;
  padding: 0.85em 1.25em;
  margin: 0 0 1rem 0;
  outline: 0;
  height: auto;
  transition: none;
  box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.1);
}
[type="text"]:focus, [type="password"]:focus, [type="date"]:focus, [type="datetime"]:focus, [type="datetime-local"]:focus, [type="month"]:focus, [type="week"]:focus, [type="email"]:focus, [type="number"]:focus, [type="search"]:focus, [type="tel"]:focus, [type="time"]:focus, [type="url"]:focus, [type="color"]:focus, textarea:focus {
  box-shadow: inset 0 0 1px 1px #5fb345;
  border: none;
  background-color: #f3f3f3;
  transition: none;
}
input[type="radio"], input[type="checkbox"] {
  position: absolute;
  height: 1.125rem;
}
input[type="radio"] + label, input[type="checkbox"] + label {
  display: block;
  margin: 0;
  padding: 0;
  padding-left: 1.25rem;
}
input[type="radio"] + label a, input[type="checkbox"] + label a {
  color: inherit;
  border-bottom: 1px solid;
  padding-bottom: 2px;
}
textarea {
  height: 100px;
  resize: vertical;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #9b9a9b;
  opacity: 1;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #9b9a9b;
  opacity: 1;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #9b9a9b;
  opacity: 1;
}
label {
  display: inline-block;
  color: #5fb345;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.3;
  text-transform: uppercase;
  margin-top: 3px;
  margin-bottom: 3px;
}
.fieldset {
  border-color: #5fb345;
}
.fieldset legend {
  color: #5fb345;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  transition: none;
  border: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-color: #f3f3f3;
  color: #222;
  font-family: "Fira Sans", calibri, sans-serif;
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.3;
  padding: 0.85em 1.25em;
  padding-right: 1.5rem;
  margin: 0 0 1rem 0;
  outline: 0;
  height: auto;
  transition: none;
  box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.1);
}
select:focus {
  outline: 0;
  transition: none;
  border: none;
  box-shadow: inset 0 0 1px 1px #5fb345;
  background-color: #f3f3f3;
}
select:disabled {
  opacity: 0.5;
}
.greenbg, a.greenbg {
  color: #ffffff;
  background-color: #5fb345;
}
.greenlightbg, a.greenlightbg {
  color: #ffffff;
  background-color: #a2c617;
}
.greendarkbg, a.greendarkbg {
  color: #ffffff;
  background-color: #007a67;
}
.bluebg, a.bluebg {
  color: #ffffff;
  background-color: #009ee3;
}
.magentabg, a.magentabg {
  color: #ffffff;
  background-color: #e1007d;
}
.purplebg, a.purplebg {
  color: #ffffff;
  background-color: #6f2584;
}
#intro {
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
}
#intro h2 {
  margin: 15px 0;
}
#intro p {
  max-width: 820px;
  margin: 2.8125rem auto 15px;
  margin: 0 auto 15px;
}
#intro.introtxt-only {
  margin-top: 1.25rem;
}
#intro + .widget-text-picture {
  margin-top: -5rem;
}
#intro + .widget-text-picture h2:first-child, #intro + .widget-text-picture h3:first-child, #intro + .widget-text-picture h4:first-child {
  margin-top: 2.5rem;
}
/*blogpost: autor-infos*/
.blog-author {
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 37.5em) {
  .blog-author {
    transform: translateY(-7.1875rem);
    margin-bottom: 0;
    height: 4.875rem;
  }
  .blog-author .blog-frame {
    position: relative;
  }
  .blog-author .blog-frame .blog-container {
    position: absolute;
    top: 0;
    right: 15%;
  }
}
@media print, screen and (min-width: 37.5em) and print, screen and (min-width: 64em) {
  .blog-author .blog-frame .blog-container {
    right: 8.4375rem;
  }
}
@media print, screen and (min-width: 37.5em) {
  .blog-author .author {
    text-align: center;
    justify-content: center;
  }
}
.blog-author .author .author-img {
  width: 5.875rem;
  height: 6.375rem;
  background-image: url("//static.oldenburger-muensterland.de/images/blog_author_bubble.png");
  background-repeat: no-repeat;
  background-origin: border-box;
  background-size: cover;
}
.blog-author .author .author-img img {
  width: 5.0625rem;
  border-radius: 50%;
  padding-top: 0.4375rem;
}
@media screen and (max-width: 26.1875em) {
  .blog-author .author .author-info {
    position: relative;
  }
  .blog-author .author .author-info p {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-bottom: 0;
    margin-left: 0.9375rem;
  }
}
.blog-author .author .author-info .author-name {
  font-family: "Averta W01", calibri, sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #5fb345;
}
.blog-author .author .author-info a {
  font-size: 0.875rem;
}
.standard-intro {
  font-weight: 300;
  margin-bottom: 4.6875rem;
}
.detail-intro {
  font-weight: 400;
}
.intro-container + .widget-text-picture {
  margin-top: -4.6875rem;
}
.regular-font {
  font-family: "Fira Sans", calibri, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  color: #222;
}
.intro-icon {
  text-align: center;
  margin: 1rem 0 2rem;
}
.intro-icon img {
  display: block;
  margin: 0 auto;
}
.zitat {
  display: block;
  font-size: 1.875rem;
  max-width: 28.75rem;
  margin: 1.5em 0;
  padding: 0.3em 0.75em;
  border-left: 6px solid #5fb345;
  font-family: "Averta W01", calibri, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.3;
}
@media screen and (max-width: 26.1875em) {
  .zitat {
    font-size: 1.5rem;
  }
}
.accordion {
  border-bottom: 1px solid #5fb345;
}
.accordion .accordion-item.is-active .accordion-title:before {
  right: 25px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}
.accordion .accordion-item.is-active .accordion-title:after {
  right: 25px;
  margin-top: -13px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}
.accordion .accordion-item .accordion-title {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  line-height: 1.5625rem;
  border: none;
  border-top: 1px solid #5fb345;
  font-family: "Averta W01", calibri, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  transition: padding 200ms;
}
.accordion .accordion-item .accordion-title:before {
  display: block;
  width: 0;
  height: 0;
  border: inset 10px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #5fb345;
  position: absolute;
  top: 50%;
  right: 21px;
  margin: -10px 0 0;
  border-radius: 3px;
  transition: all 200ms;
}
.accordion .accordion-item .accordion-title:after {
  display: block;
  width: 0;
  height: 0;
  border: inset 10px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  top: 50%;
  right: 24px;
  margin: -10px 0 0;
  transition: all 200ms;
}
.accordion .accordion-item .accordion-title:hover {
  color: #5fb345;
  padding-left: 5px;
}
.accordion .accordion-item .accordion-content {
  border: none;
  padding: 0;
  padding-top: 1.25rem;
  padding-bottom: 3.125rem;
}
.unternehmen-accordion {
  border: none;
}
.unternehmen-accordion .accordion-item.is-active .accordion-title:before, .unternehmen-accordion .accordion-item.is-active .accordion-title:after {
  display: none;
}
.unternehmen-accordion .accordion-item .display-switch {
  float: right;
}
.unternehmen-accordion .accordion-item .display-switch .switch-wrapper {
  display: flex;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
  border-radius: 3.125rem;
  padding: 0.3125rem 0.625rem;
  height: 3.75rem;
}
.unternehmen-accordion .accordion-item .display-switch .trenner {
  width: 1px;
  height: 100%;
  background-color: #CECECE;
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}
.unternehmen-accordion .accordion-item .display-switch .map-switch, .unternehmen-accordion .accordion-item .display-switch .list-switch {
  display: inline-block;
  padding: 10px 30px;
}
.unternehmen-accordion .accordion-item .display-switch .map-switch.active, .unternehmen-accordion .accordion-item .display-switch .list-switch.active {
  background-color: #5fb345;
  border-radius: 3.125rem;
}
.unternehmen-accordion .accordion-item .display-switch .map-switch.active span, .unternehmen-accordion .accordion-item .display-switch .list-switch.active span {
  color: #ffffff;
}
.unternehmen-accordion .accordion-item .display-switch .map-switch.active svg, .unternehmen-accordion .accordion-item .display-switch .list-switch.active svg {
  fill: #ffffff;
}
.unternehmen-accordion .accordion-item .display-switch .inner {
  display: flex;
  align-items: center;
}
.unternehmen-accordion .accordion-item .display-switch .inner svg {
  width: 1.875rem;
  height: auto;
  fill: #5fb345;
}
.unternehmen-accordion .accordion-item .display-switch .inner span {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25rem;
  text-transform: uppercase;
  color: #5fb345;
}
.unternehmen-accordion .accordion-item .accordion-title {
  display: inline-block;
  padding: 0;
  line-height: 1.5625rem;
  border: none;
  font-family: "Averta W01", calibri, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 3.75rem;
}
.unternehmen-accordion .accordion-item .accordion-title .title-wrapper {
  display: flex;
  align-items: center;
  height: 3.75rem;
}
.unternehmen-accordion .accordion-item .accordion-title .title-wrapper svg {
  fill: #5fb345;
  width: 1.875rem;
  height: auto;
}
.unternehmen-accordion .accordion-item .accordion-title .title-wrapper span {
  padding-left: 0.9375rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25rem;
}
.unternehmen-accordion .accordion-item .accordion-title:before {
  display: none;
}
.unternehmen-accordion .accordion-item .accordion-title:after {
  display: none;
}
.unternehmen-accordion .accordion-item .accordion-title:hover {
  color: #5fb345;
  padding: 0;
}
.unternehmen-accordion .accordion-item .accordion-content {
  border: none;
  padding: 0;
}
.addMarginBottom {
  margin-bottom: 2em;
}
.addMarginBottom.extraHeight {
  margin-bottom: 3.5em;
}
.copyright-info-wrapper {
  pointer-events: none;
}
.copyright-info {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 2px 3px;
  font-size: 9px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 0 2px #222;
  cursor: default;
  z-index: 2;
}
.copyright-info a, .copyright-info a:hover {
  pointer-events: auto;
  color: #ffffff;
}
.cell.detail-img .copyright-info {
  right: 8px;
}
.writer-date-info {
  color: #777;
  font-size: 0.7em;
  margin-top: 2.5em;
  margin-bottom: 0.5em;
}
.list-wrapper + .grid-container .writer-date-info {
  margin-top: 0.5em;
}
.embed-code {
  margin-top: 2em;
  margin-bottom: 2em;
}
/* für /service/daten-region-om */
.table-scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
}
#mainnav_helper {
  display: none;
}
.widget-centerImageTeaser {
  margin-top: 5rem;
  margin-bottom: 3.125rem;
}
.breadcrumb {
  color: #5fb345;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-align: center;
  /*padding-top: 1rem;*/
  padding-bottom: 3.125rem;
  /*@include breakpoint(large){
    margin: 0 rem-calc(50);
  }*/
}
@media print, screen and (min-width: 37.5em) {
  .breadcrumb {
    padding-bottom: 4.6875rem;
  }
}
.breadcrumbs-anchors .breadcrumb {
  padding-bottom: 1.5625rem;
}
@media print, screen and (min-width: 64em) {
  .breadcrumbs-anchors .breadcrumb {
    margin-top: -1.5625rem;
  }
}
.breadcrumbs-anchors .anchor-block {
  position: relative;
}
#heroshot {
  padding: 50px 0 0;
  max-width: 1920px;
  height: 600px;
  height: 100vh;
  min-height: 600px;
  max-height: 100%;
  max-height: 66.67vh;
  margin: 0 auto 25px;
  position: relative;
}
#heroshot .inner {
  height: 100%;
  background: #f3f3f3 no-repeat center center;
  background-size: cover;
  position: relative;
}
#heroshot .inner[data-interchange]:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  z-index: 1;
  transition: opacity 800ms;
}
#heroshot .inner[data-resize]:after {
  opacity: 0;
}
#heroshot .nojs {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: no-repeat center center;
  background-size: cover;
}
#heroshot picture {
  display: block;
  height: 100%;
}
#heroshot picture img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  #heroshot picture img {
    /* IE10+ specific styles go here */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
  }
}
#heroshot .logo {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  z-index: 4;
  max-width: 50%;
  max-height: 75%;
}
@media screen and (max-width: 420px) {
  #heroshot .logo.om-home {
    left: 35%;
    max-width: 35%;
  }
}
#heroshot .cta {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 12;
  max-width: 12.5rem;
  height: auto;
  width: 20%;
}
#heroshot .scrolldown {
  width: 60px;
  height: 60px;
  background: #ffffff;
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 5;
  margin-left: -30px;
  border-radius: 100%;
  display: none;
}
#heroshot .scrolldown:before, #heroshot .scrolldown:after {
  content: "";
  width: 3px;
  height: 35%;
  background: #5fb345;
  position: absolute;
  top: 30%;
  left: 50%;
  transition: top 100ms;
}
#heroshot .scrolldown:before {
  margin-left: -2px;
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
#heroshot .scrolldown:after {
  margin-left: -1px;
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
body.desktop #heroshot .scrolldown:hover:before, body.desktop #heroshot .scrolldown:hover:after {
  top: 35%;
}
#heroshot .heroshot-description {
  position: absolute;
  bottom: 15px;
  left: 65px;
  z-index: 3;
  width: 980px;
  max-width: 75%;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}
#heroshot .heroshot-description.text-center {
  left: 0;
  width: 100%;
  max-width: 100%;
  padding: 0 33px;
}
#heroshot .heroshot-description.text-center.om-description {
  padding: 0 0.9375rem;
}
#heroshot .heroshot-description h4 {
  color: #ffffff;
  font-size: 1.1875rem;
  line-height: 1.1;
  margin: 0 0 0.3em;
}
#heroshot .heroshot-description h1, #heroshot .heroshot-description h3 {
  color: #ffffff;
  font-size: 1.9375rem;
  line-height: 1.1;
  margin: 0 0 0.15em;
}
#heroshot .heroshot-description p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.35;
  margin: 0;
}
#heroshot .heroshot-links {
  position: absolute;
  bottom: 40px;
  left: 17%;
  width: 66%;
  font-size: 0;
  text-align: center;
}
#heroshot .heroshot-links a {
  display: inline-block;
  font-family: "Averta W01", calibri, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  background: #ffffff;
  padding: 10px 20px;
  margin: 0 6px;
  border-radius: 20px;
}
#heroshot .heroshot-description, #heroshot .heroshot-links {
  display: block;
}
#heroshot div[data-interchange] .heroshot-description, #heroshot div[data-interchange] .heroshot-links {
  opacity: 0;
  transition: opacity 600ms 300ms;
}
#heroshot div[data-interchange][data-resize] .heroshot-description, #heroshot div[data-interchange][data-resize] .heroshot-links {
  opacity: 1;
}
#heroshot .inner:before {
  content: "";
  width: 100%;
  height: 65%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: -moz-linear-gradient(top, rgba(209, 209, 209, 0) 0%, rgba(104, 103, 103, 0.6) 90%);
  background: -webkit-linear-gradient(top, rgba(209, 209, 209, 0) 0%, rgba(104, 103, 103, 0.6) 90%);
  background: linear-gradient(to bottom, rgba(209, 209, 209, 0) 0%, rgba(104, 103, 103, 0.6) 90%);
  mix-blend-mode: darken;
}
#heroshot .channels {
  display: none;
}
/*
@include breakpoint(small only) {
#heroshot .scrolldown {
box-shadow: 0 2px 15px 0 rgba(0,0,0,0.15) !important;
}
#heroshot #slideshow-wrapper {
height: 55% !important;
}
#heroshot #slideshow-text-wrapper {
height: 45% !important;
top: 55% !important;
overflow: visible !important;
background-color: white !important;

&:before {
content: '';
display: block;
position: absolute;
height: 10%;
left: 0;
right: 0;
top: -9%;
background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,1) 100%);
}

& > div {
top: 0 !important;
}
}

#heroshot .copyright-info {
bottom: 215% !important;
}
#heroshot .heroshot-description {
top: 0 !important;
text-shadow: none !important;
color: $green !important;
//background-color: white !important;
padding: 0 !important;

.flex {
display: flex;
flex: 0 1 auto;
flex-wrap: wrap;
height: 100%;
align-content: flex-end;
}

h3, h4 {
color: $green !important;
width: 100% !important;
padding: 0 5%;
background-color: white;
}

h3 {
font-size: rem-calc(30) !important;
line-height: rem-calc(32) !important;
padding-bottom: rem-calc(10) !important;
}

h4 {
font-size: rem-calc(18) !important;
line-height: rem-calc(22) !important;
margin: 0 !important;
padding-bottom: 0.15em !important;
padding-top: rem-calc(10) !important;
&.om-home {
padding-top: 37.5% !important;
}
}
&.om-header { display: none; }
}
}
*/
@media print, screen and (min-width: 37.5em) {
  #heroshot .logo {
    display: block;
  }
  #heroshot .channels {
    display: block;
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 3;
  }
  #heroshot .channels a {
    display: block;
    width: 37px;
    height: 37px;
    margin: 10px 0 0;
    padding: 8px;
    background: #ffffff;
    border-radius: 50%;
  }
  #heroshot .channels a svg {
    width: 21px;
    height: 21px;
    fill: #5fb345;
  }
  #heroshot .channels a.channel-facebook svg {
    fill: #4460a0;
  }
  #heroshot .channels a.channel-youtube svg {
    fill: #ce1211;
  }
  #heroshot .channels a.channel-instagram svg {
    fill: #000000;
  }
  #heroshot .channels a.channel-pinterest svg {
    fill: #E60023;
  }
  #heroshot .heroshot-description.text-center {
    padding: 0 70px;
  }
  #heroshot .heroshot-description h4 {
    font-size: 1.6875rem;
    margin: 0 0 0.2em;
  }
  #heroshot .heroshot-description h1, #heroshot .heroshot-description h3 {
    font-size: 2.6875rem;
  }
  #heroshot .heroshot-description p {
    font-size: 18px;
  }
}
@media print, screen and (min-width: 64em) {
  #heroshot {
    padding: 50px;
    padding-top: 80px;
    min-height: 620px;
    height: 89vh;
  }
  #heroshot h4 {
    margin: 0 0 0.15em;
  }
  #heroshot .scrolldown {
    display: none;
  }
  #heroshot .scrolldown {
    margin-bottom: 50px;
  }
  #heroshot .heroshot-description.text-center.om-description {
    padding: 0 17%;
    bottom: 115px;
  }
}
@media screen and (min-width: 75em) {
  #heroshot {
    max-height: 1440px;
  }
  #heroshot .heroshot-description {
    bottom: 115px;
  }
  #heroshot .heroshot-description.text-center {
    bottom: 130px;
  }
  #heroshot .heroshot-description h1, #heroshot .heroshot-description h3 {
    font-size: 3.75rem;
  }
  #heroshot .heroshot-description p {
    font-size: 1.875rem;
  }
}
#heroshot1 {
  padding: 50px 0 0;
  max-width: 1920px;
  height: 350px;
  height: 80vh;
  min-height: 350px;
  max-height: 750px;
  margin: 0 auto 25px;
  position: relative;
}
#heroshot1 .inner {
  height: 100%;
  background: #f3f3f3 no-repeat center center;
  background-size: cover;
  position: relative;
}
#heroshot1 .inner[data-interchange]:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  z-index: 1;
  transition: opacity 800ms;
}
#heroshot1 .inner[data-resize]:after {
  opacity: 0;
}
#heroshot1 .nojs {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: no-repeat center center;
  background-size: cover;
}
#heroshot1 .logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  max-width: 50%;
  max-height: 75%;
}
#heroshot1 .scrolldown {
  width: 60px;
  height: 60px;
  background: #ffffff;
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 5;
  margin-left: -30px;
  border-radius: 100%;
}
#heroshot1 .scrolldown:before, #heroshot1 .scrolldown:after {
  content: "";
  width: 3px;
  height: 35%;
  background: #5fb345;
  position: absolute;
  top: 30%;
  left: 50%;
  transition: top 100ms;
}
#heroshot1 .scrolldown:before {
  margin-left: -2px;
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
#heroshot1 .scrolldown:after {
  margin-left: -1px;
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
body.desktop #heroshot1 .scrolldown:hover:before, body.desktop #heroshot1 .scrolldown:hover:after {
  top: 35%;
}
#heroshot1 .heroshot-description, #heroshot1 .heroshot-links {
  display: none;
}
#heroshot1 .channels {
  display: none;
}
#introimg-placeholder {
  display: block;
  height: 5rem;
}
@media print, screen and (min-width: 37.5em) {
  #introimg-placeholder {
    height: 8.75rem;
  }
}
#introimg-placeholder.icon-placeholder {
  height: 0;
}
@media print, screen and (min-width: 37.5em) {
  #introimg-placeholder.icon-placeholder {
    height: 1.1875rem;
  }
}
@media print, screen and (min-width: 64em) {
  #introimg-placeholder.icon-placeholder {
    height: 3.0625rem;
  }
}
#introimg-placeholder.extra-placeholder {
  height: 0;
}
#introimg-placeholder.extra-placeholder.wissenswertes {
  height: 5rem;
}
#introimg-placeholder.extra-placeholder.artikel {
  height: 3.125rem;
}
@media print, screen and (min-width: 37.5em) {
  #introimg-placeholder.extra-placeholder {
    height: 1.1875rem;
  }
  #introimg-placeholder.extra-placeholder.artikel {
    height: 1.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  #introimg-placeholder.extra-placeholder {
    height: 5rem;
  }
  #introimg-placeholder.extra-placeholder.artikel {
    height: 3.125rem;
  }
}
.introimg-article + .intro-container {
  margin-top: 1.625rem !important;
}
@media print, screen and (min-width: 37.5em) {
  .introimg-article + .intro-container {
    margin-top: 2.1875rem !important;
  }
}
#introimg {
  padding: 50px 0 0;
  max-width: 1920px;
  margin: 0 auto 30px;
}
#introimg .inner {
  width: 100%;
  padding: 35vh 0 0;
  background: #f3f3f3 no-repeat center center;
  background-size: cover;
  position: relative;
}
#introimg .inner[data-interchange]:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  z-index: 1;
  transition: opacity 800ms;
}
#introimg .inner[data-resize]:after {
  opacity: 0;
}
#introimg .inner .nojs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center center;
  background-size: cover;
  z-index: 2;
}
#introimg .inner.picture-source picture img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
#introimg .inner.no-interchange picture img, #heroshot .inner.no-interchange picture img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
@media print, screen and (min-width: 37.5em) {
  #introimg {
    margin-bottom: 4.375rem;
  }
  #introimg .inner {
    padding-top: 32%;
  }
  #introimg.introimg-icon {
    margin-bottom: 2.1875rem;
  }
}
@media print, screen and (min-width: 64em) {
  #introimg {
    padding-right: 50px;
    padding-left: 50px;
  }
  #introimg .inner {
    padding-top: 25%;
  }
}
.off-canvas-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .off-canvas-wrapper {
    display: block;
  }
}
main {
  width: 100%;
  flex: 1;
}
.off-canvas-content + header, .off-canvas-content + header + main, .off-canvas-content + header + main + footer {
  transform: none;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}
.off-canvas-content + header.has-transition-push, .off-canvas-content + header + main.has-transition-push, .off-canvas-content + header + main + footer.has-transition-push {
  transform: translate(0, 0);
}
.off-canvas-content + header .off-canvas.is-open, .off-canvas-content + header + main .off-canvas.is-open, .off-canvas-content + header + main + footer .off-canvas.is-open {
  transform: translate(0, 0);
}
.off-canvas-content.is-open-left + header, .off-canvas-content.is-open-left + header + main, .off-canvas-content.is-open-left + header + main + footer {
  transform: translateX(275px);
}
@media print, screen and (min-width: 26.25em) {
  .off-canvas {
    width: 380px;
    transform: translateX(-380px);
  }
  .off-canvas.is-open-left {
    transform: translateX(380px);
  }
  .off-canvas-content.is-open-left + header, .off-canvas-content.is-open-left + header + main, .off-canvas-content.is-open-left + header + main + footer {
    transform: translateX(380px);
  }
}
@media screen and (min-width: 143.75em) {
  .off-canvas-content.is-open-left + header, .off-canvas-content.is-open-left + header + main, .off-canvas-content.is-open-left + header + main + footer {
    transform: translateX(380px/2);
  }
}
@media screen and (min-width: 167.5em) {
  .off-canvas-content.is-open-left + header, .off-canvas-content.is-open-left + header + main, .off-canvas-content.is-open-left + header + main + footer {
    transform: none;
  }
}
.js-off-canvas-overlay {
  top: 50px;
  left: 275px;
}
@media print, screen and (min-width: 26.25em) {
  .js-off-canvas-overlay {
    left: 380px;
  }
}
header .icons {
  height: 100%;
  position: absolute;
  top: 0;
  right: 5px;
}
@media print, screen and (min-width: 64em) {
  header .icons {
    right: 50px;
  }
}
header .icons a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  float: left;
  height: 100%;
  padding: 0 0.5625rem;
}
header .icons a.merk-icon, header .icons a.merk-icon-cart {
  position: relative;
}
header .icons a.merk-icon.selected:before, header .icons a.merk-icon-cart.selected:before {
  content: attr(data-number);
  position: absolute;
  display: block;
  top: 3px;
  right: -7px;
  color: #ffffff;
  background-color: #5fb345;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
}
@media print, screen and (min-width: 37.5em) {
  header .icons a.merk-icon.selected:before, header .icons a.merk-icon-cart.selected:before {
    top: 8px;
    right: -3px;
  }
}
header .icons img {
  max-height: 100%;
  transition: max-height 250ms;
}
header .icons svg {
  fill: #5fb345;
}
@media screen and (max-width: 63.9375em) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    background: #ffffff;
    width: 100%;
    font-size: 0.875rem;
  }
  header .first-row {
    display: none;
  }
  header .second-row {
    height: 50px;
    max-width: 1920px;
    padding: 0 15px;
    margin: 0 auto;
    transition: height 100ms;
    position: relative;
  }
  header .second-row .logo, header .second-row ul {
    display: none;
  }
  header.sticky-custom .second-row {
    height: 39px;
    transition: height 250ms;
  }
  header.sticky-custom .second-row .icons img {
    max-height: 31px;
  }
  header .menubtn {
    cursor: pointer;
    position: relative;
    display: block;
    width: 60px;
    height: 100%;
    float: left;
    padding: 0;
    margin: 0 0 0 -15px;
    color: #5fb345;
    opacity: 1;
    transition: color 150ms, opacity 500s;
  }
  header .menubtn:before, header .menubtn:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    display: block;
    width: 23px;
    height: 8px;
    border-top: 2px solid #5fb345;
    border-bottom: 2px solid #5fb345;
    margin: -1px 0 0;
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
    transition: transform 250ms, margin 250ms 250ms, height 250ms 250ms, border-width 250ms 250ms, left 150ms, border-color 150ms;
  }
  header .menubtn:before {
    margin-top: -7px;
    border-bottom: none;
  }
  header .menubtn[aria-expanded="true"]:before, header .menubtn[aria-expanded="true"]:after {
    height: 2px;
    margin-top: -1px;
    border-bottom-width: 0px;
    transition: margin 300ms, height 300ms, border-width 300ms, transform 300ms 300ms, left 150ms, border-color 150ms;
  }
  header .menubtn[aria-expanded="true"]:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header .menubtn[aria-expanded="true"]:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
@media print, screen and (min-width: 64em) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    background: #ffffff;
    width: 100%;
    /*
    position: relative;
    z-index: 50;
    background: $body-background;
    width: 100%;
    font-size: rem-calc(14);
    margin-bottom: -80px;
    */
    color: #009ee3;
  }
  header.tourismus {
    color: #007a67;
  }
  header.das-om {
    color: #5fb345;
  }
  header.sticky-custom .second-row {
    height: 39px;
    transition: height 250ms;
  }
  header.sticky-custom .second-row .icons img {
    max-height: 31px;
  }
  header.sticky-custom .second-row ul.first-level > li > a {
    height: 39px;
    line-height: 39px;
  }
  header .menubtn {
    display: none;
  }
  header .first-row {
    height: 30px;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    box-shadow: inset 0px -4px 5px rgba(0, 0, 0, 0.1);
  }
  header .first-row a {
    display: block;
    width: 182px;
    max-width: 40%;
    text-align: center;
    background: #009ee3;
    color: #ffffff;
    font-family: "Averta W01", calibri, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 10px;
    line-height: 30px;
    text-transform: uppercase;
  }
  header .first-row a.tourismus {
    background: #007a67;
  }
  header .first-row a.das-om {
    background: #5fb345;
  }
  header .second-row {
    height: 50px;
    max-width: 1920px;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
  }
  header .second-row .logo {
    display: block;
    font-size: 1em;
    margin: 0;
    padding: 0;
    width: 130px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 5px;
    overflow: hidden;
    text-indent: -999px;
    background: url("//static.oldenburger-muensterland.de/images/logo-wide.svg") no-repeat left center;
    background-size: 125px 23px;
  }
  header ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  header ul li {
    margin: 0;
    padding: 0;
  }
  header ul li a {
    display: block;
    font-family: "Averta W01", calibri, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 13px;
    text-transform: uppercase;
    color: inherit;
  }
  header ul li a:hover, header ul li a:focus {
    color: inherit;
  }
  header ul li a[href=""] {
    cursor: default;
  }
  header ul.first-level {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  header ul.first-level > li > a {
    display: inline-block;
    overflow: hidden;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    position: relative;
  }
  header ul.first-level > li > a::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 300%;
    box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.2);
    z-index: -1;
    opacity: 0;
    transition: opacity 200ms;
  }
  header ul.first-level > li:hover > a::before {
    opacity: 1;
  }
  header .submenu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    width: 100%;
    padding: 0;
    transition: padding 200ms;
  }
  header .submenu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    width: 5000px;
    width: 110vw;
    height: 100%;
    z-index: -1;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
  }
  header ul.first-level > li:hover .submenu {
    padding: 2em 0 5em;
    transition: padding 400ms 50ms;
    z-index: 2;
  }
  header ul.second-level {
    display: flex;
    flex-wrap: wrap;
    width: 600px;
    max-width: 90%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 100ms linear;
  }
  header ul.second-level li {
    display: block;
    width: 46%;
    margin: 0 2%;
  }
  header ul.second-level li:first-child, header ul.second-level li:first-child + li {
    border-top: 2px solid #009ee3;
  }
  header ul.second-level li a {
    width: 100%;
    border-bottom: 1px solid #009ee3;
    line-height: 1.2;
    padding: 1.25em 1em;
  }
  header ul.first-level > li:hover ul.second-level {
    max-height: 1000px;
    transition: max-height 200ms linear 50ms;
  }
  header.tourismus ul.second-level li:first-child, header.tourismus ul.second-level li:first-child + li {
    border-top: 2px solid #007a67;
  }
  header.tourismus ul.second-level li a {
    border-bottom-color: #007a67;
  }
  header.das-om ul.second-level li:first-child, header.das-om ul.second-level li:first-child + li {
    border-top: 2px solid #5fb345;
  }
  header.das-om ul.second-level li a {
    border-bottom-color: #5fb345;
  }
  header ul.second-level li.searchform, header .icons div.searchform {
    width: 100%;
    border: none;
  }
  header ul.second-level li.searchform form, header .icons div.searchform form {
    width: 80%;
    margin: 40px auto 0;
    padding: 0;
    position: relative;
  }
  header ul.second-level li.searchform form input[type="search"], header .icons div.searchform form input[type="search"] {
    padding-right: 50px;
    border-bottom: 1px solid #009ee3;
  }
  header ul.second-level li.searchform form input[type="search"]:focus, header .icons div.searchform form input[type="search"]:focus {
    box-shadow: inset 0 0 1px 1px #009ee3;
    border-bottom-color: transparent;
  }
  header ul.second-level li.searchform form input[type="submit"], header .icons div.searchform form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    border-radius: 0;
    height: 100%;
    overflow: hidden;
    text-indent: -999px;
    width: 45px;
    background: transparent url("//static.oldenburger-muensterland.de/images/icon_search_blue.svg") no-repeat center center;
    background-size: 50%;
  }
  header .icons div.searchform {
    width: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    float: left;
    height: 100%;
  }
  header .icons div.searchform form {
    margin: 0;
    width: 9.375rem;
  }
  header .icons div.searchform form input[type="search"] {
    margin: 0;
    height: 2.25rem;
  }
  header.tourismus ul.second-level li.searchform form input[type="search"], header.tourismus .icons div.searchform form input[type="search"] {
    border-bottom: 1px solid #007a67;
  }
  header.tourismus ul.second-level li.searchform form input[type="search"]:focus, header.tourismus .icons div.searchform form input[type="search"]:focus {
    box-shadow: inset 0 0 1px 1px #007a67;
    border-bottom-color: transparent;
  }
  header.tourismus ul.second-level li.searchform form input[type="submit"], header.tourismus .icons div.searchform form input[type="submit"] {
    background-image: url("//static.oldenburger-muensterland.de/images/icon_search_dark.svg");
  }
  header.das-om ul.second-level li.searchform form input[type="search"], header.das-om .icons div.searchform form input[type="search"] {
    border-bottom: 1px solid #5fb345;
  }
  header.das-om ul.second-level li.searchform form input[type="search"]:focus, header.das-om .icons div.searchform form input[type="search"]:focus {
    box-shadow: inset 0 0 1px 1px #5fb345;
    border-bottom-color: transparent;
  }
  header.das-om ul.second-level li.searchform form input[type="submit"], header.das-om .icons div.searchform form input[type="submit"] {
    background-image: url("//static.oldenburger-muensterland.de/images/icon_search.svg");
  }
  header .quickstart {
    width: 100%;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    transition: max-height 100ms linear, margin 100ms;
  }
  header .quickstart a {
    width: 150px;
    text-align: center;
    text-transform: none;
    font-size: 14px;
  }
  header .quickstart a img {
    width: 64px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 5px;
  }
  header ul.first-level > li:hover .quickstart {
    margin: 50px 0 -20px;
    max-height: 150px;
    transition: max-height 200ms linear 50ms, margin 200ms 50ms;
  }
}
@media print, screen and (min-width: 64em) and print, screen and (min-width: 64em) {
  header .second-row .logo {
    left: 50px;
  }
}
@media print, screen and (min-width: 64em) and print, screen and (min-width: 64em) {
  header .submenu {
    padding-right: 50px;
    padding-left: 50px;
  }
}
#mainnav {
  padding: 50px 15px;
  /*
      .siteswitch {
      font-size: 14px;
      color: $dark-gray;
      margin-top: -32px;
      margin-bottom: 22px;
      display: flex;
      justify-content: flex-start;

      a {
      display: block;
      padding: 5px 0;
      margin: 0 1em 0 0;
      color: $dark-gray;
      cursor: default;
      outline: 0;
      &[href] { cursor: pointer; }
      &.current {
      font-weight: $font-weight-medium;
      border-bottom: 3px solid $dark-gray;
    }
    }

    }
      */
}
#mainnav .siteswitch {
  margin-top: -50px;
  font-size: 14px;
  margin-bottom: 22px;
  margin-left: -15px;
  margin-right: -15px;
}
#mainnav .siteswitch a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  align-items: center;
  text-align: center;
  display: flex;
  padding-top: 10px;
  justify-content: center;
  padding-bottom: 10px;
  height: 50px;
  outline: none;
}
#mainnav .siteswitch a.current {
  color: #ffffff;
}
#mainnav .siteswitch a:nth-child(1) {
  background-color: #5fb345;
}
#mainnav .siteswitch a:nth-child(2) {
  background-color: #009ee3;
}
#mainnav .siteswitch a:nth-child(3) {
  background-color: #007a67;
}
#mainnav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=);
  list-style-type: none;
  font-size: 0;
  line-height: 0;
}
#mainnav ul li {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}
#mainnav ul a {
  display: block;
  color: #007a67;
  padding: 14px 45px 14px 0;
  border-bottom: 2px solid #007a67;
  font-size: 0.9375rem;
  font-family: "Averta W01", calibri, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  transition: padding 200ms;
  outline: 0;
}
#mainnav ul a:hover {
  color: #007a67;
}
#mainnav ul.wirtschaft a {
  color: #009ee3;
  border-bottom-color: #009ee3;
}
#mainnav ul.wirtschaft a:hover {
  color: #009ee3;
}
#mainnav ul.das-om a {
  color: #5fb345;
  border-bottom-color: #5fb345;
}
#mainnav ul.das-om a:hover {
  color: #5fb345;
}
body.desktop #mainnav ul a:hover {
  padding-left: 5px;
  padding-right: 40px;
}
#mainnav ul > li.withchilds > a {
  position: relative;
}
#mainnav ul > li.withchilds > a:before {
  display: block;
  width: 0;
  height: 0;
  border: inset 10px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #007a67;
  position: absolute;
  top: 50%;
  right: 1px;
  margin: -10px 0 0;
  border-radius: 3px;
  transition: all 200ms;
}
#mainnav ul > li.withchilds > a:after {
  display: block;
  width: 0;
  height: 0;
  border: inset 10px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  top: 50%;
  right: 4px;
  margin: -10px 0 0;
  transition: all 200ms;
}
#mainnav ul > li.withchilds[aria-expanded="true"] > a:before {
  right: 5px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}
#mainnav ul > li.withchilds[aria-expanded="true"] > a:after {
  right: 5px;
  margin-top: -13px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}
#mainnav ul.wirtschaft > li.withchilds > a:before {
  border-left-color: #009ee3;
}
#mainnav ul.das-om > li.withchilds > a:before {
  border-left-color: #5fb345;
}
#mainnav ul ul {
  display: none;
  padding-left: 15px;
  border-bottom: 2px solid #007a67;
}
#mainnav ul ul a {
  font-size: 0.875rem;
  border-top: 1px solid #007a67;
  border-bottom: none;
}
#mainnav ul ul li:first-child a {
  border-top: none;
}
#mainnav ul.wirtschaft ul {
  border-bottom-color: #009ee3;
}
#mainnav ul.wirtschaft ul a {
  border-top-color: #009ee3;
}
#mainnav ul.das-om ul {
  border-bottom-color: #5fb345;
}
#mainnav ul.das-om ul a {
  border-top-color: #5fb345;
}
#mainnav ul ul ul {
  border-bottom: none;
}
#mainnav form {
  display: block;
  margin: 45px 0 0;
  padding: 0;
  position: relative;
}
#mainnav form input[type="search"] {
  padding-right: 50px;
  border-bottom: 1px solid #009ee3;
}
#mainnav form input[type="search"]:focus {
  box-shadow: inset 0 0 1px 1px #009ee3;
  border-bottom-color: transparent;
}
#mainnav form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  height: 100%;
  overflow: hidden;
  text-indent: -999px;
  width: 45px;
  background: transparent url("//static.oldenburger-muensterland.de/images/icon_search_blue.svg") no-repeat center center;
  background-size: 50%;
}
#mainnav ul.tourismus + form input[type="search"] {
  border-bottom: 1px solid #007a67;
}
#mainnav ul.tourismus + form input[type="search"]:focus {
  box-shadow: inset 0 0 1px 1px #007a67;
  border-bottom-color: transparent;
}
#mainnav ul.tourismus + form input[type="submit"] {
  background-image: url("//static.oldenburger-muensterland.de/images/icon_search_dark.svg");
}
#mainnav ul.das-om + form input[type="search"] {
  border-bottom: 1px solid #5fb345;
}
#mainnav ul.das-om + form input[type="search"]:focus {
  box-shadow: inset 0 0 1px 1px #5fb345;
  border-bottom-color: transparent;
}
#mainnav ul.das-om + form input[type="submit"] {
  background-image: url("//static.oldenburger-muensterland.de/images/icon_search.svg");
}
#mainnav #navigation-quickstart {
  margin: 40px -5px 0;
  color: #009ee3;
}
#mainnav #navigation-quickstart.tourismus {
  color: #007a67;
}
#mainnav #navigation-quickstart.das-om {
  color: #5fb345;
}
#mainnav #navigation-quickstart a, #mainnav #navigation-quickstart a:hover, #mainnav #navigation-quickstart a:focus {
  color: inherit;
}
#mainnav #navigation-quickstart a {
  display: block;
  float: left;
  width: 33.33%;
  padding: 0 2px;
  text-align: center;
  margin: 0 0 25px;
  font-family: "Averta W01", calibri, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: -0.03em;
  line-height: 1.3;
}
#mainnav #navigation-quickstart a img {
  display: block;
  width: 43px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 5px;
}
#mainnav #navigation-quickstart a:nth-child(4), #mainnav #navigation-quickstart a:nth-child(7) {
  clear: left;
}
.anchorBlockData {
  display: none;
}
.anchor-block {
  padding: 0;
  position: relative;
}
.anchor-block.clean {
  padding: 0;
  margin: 0;
  max-width: 100%;
  padding-bottom: 1.25rem;
  text-align: center;
}
.anchor-block.clean .anchorlink {
  border-radius: 1.5625rem;
  border: 2px solid #5fb345;
}
.anchor-block .anchorlink {
  font-family: "Averta W01", calibri, sans-serif;
  font-size: 0.9375rem;
  text-transform: uppercase;
  background-color: #f3f3f3;
  border-radius: 0.25rem;
  padding: 1.0625rem 1.25rem 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin: 0.3125rem;
}
.anchor-block .anchorlink.selected {
  background-color: #5fb345;
  color: #ffffff;
}
.anchor-block .anchorlink.selected:hover {
  filter: brightness(1.05);
}
.anchor-inner .anchor-block {
  margin-top: -30px;
  margin-bottom: 30px;
}
.anchor-block {
  margin: 0 auto;
  padding: 0;
  padding-bottom: 6.875rem;
  padding-bottom: 0;
  text-align: center;
  max-width: 1920px;
}
.anchor-block .anchorlink {
  padding: 0;
  margin: 0;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  background-color: transparent;
  border-left: 2px solid #5fb345;
  border-radius: 0;
  margin-bottom: 0.625rem;
}
.anchor-block .anchorlink:first-child {
  border-left: none;
}
@media print, screen and (min-width: 64em) {
  .anchor-block {
    padding: 0 3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1920px;
  }
  .anchor-block:first-child {
    margin-top: -3.125rem;
  }
  .anchor-block.clean {
    padding: 0;
    margin: 0;
    max-width: 100%;
    padding-bottom: 1.25rem;
  }
  .anchor-block.clean .cell {
    width: 20%;
  }
  .anchor-inner .anchor-block {
    padding: 0;
    margin-top: -40px;
    margin-bottom: 50px;
  }
  .anchor-block .anchorlink:first-child {
    margin-left: 0;
  }
}
.teaser-wrapper {
  position: relative;
  transition-property: visibility, opacity, transform, position;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.teaser-wrapper .copyright-info-wrapper {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 32.5% 0;
}
.teaser-wrapper .copyright-info-wrapper2 {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.teaser-wrapper .copyright-info {
  right: 12px;
}
.teaser-wrapper[data-thumbnail="580x285px"] .copyright-info-wrapper {
  padding: 23.5% 0;
}
.teaser-wrapper[data-thumbnail="580x440px"] .copyright-info-wrapper {
  padding: 36.3% 0;
}
.teaser-wrapper[data-thumbnail="580x540px"] .copyright-info-wrapper {
  padding: 45.3% 0;
}
.teaser-wrapper--hidden {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transform: translateY(100px);
}
.teaser-wrapper.teaser-wrapper__magazin {
  margin-bottom: 5rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .teaser-wrapper .copyright-info-wrapper {
    padding: 0;
    position: static;
  }
  .teaser-wrapper .copyright-info-wrapper .copyright-info {
    bottom: auto;
    top: 0;
    transform-origin: 100% 100%;
    transform: translateY(-100%) rotate(-90deg);
  }
}
.articles-link {
  margin: -5em 0 5em;
  position: relative;
  z-index: 20;
}
.teaser {
  display: block;
  position: relative;
  font-size: 1rem;
  color: #222;
  margin: 0 0 5rem;
}
.teaser:hover {
  color: #222;
}
.teaser.teaser-magazin {
  height: 100%;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  padding-bottom: 4.375rem;
  margin: 0 !important;
}
.teaser.teaser-magazin .more {
  font-size: 0.875rem;
  line-height: 1.6875rem;
  font-weight: 600;
  font-family: "Averta W01", calibri, sans-serif;
  text-transform: uppercase;
  color: #7b7b7b;
  position: absolute;
  width: 100%;
  bottom: 10px;
}
.teaser.teaser-magazin .more span {
  display: inline-block;
  padding-right: 0.9375rem;
}
.teaser.teaser-magazin .more img {
  display: inline-block;
  vertical-align: text-bottom;
}
.teaser .imgwrapper {
  margin: 0 0 1.625rem;
  min-height: 100px;
  position: relative;
}
.teaser .imgwrapper img {
  display: block;
}
.teaser .imgwrapper .stars-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.625rem;
}
.teaser .imgwrapper .stars-wrapper .star {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
}
.teaser h3, .teaser h2, .teaser h5, .teaser p, .teaser ul {
  padding: 0 10px 0 20px;
  margin: 0 0 8px;
}
.teaser h5 {
  font-size: 0.9375rem;
  font-family: "Fira Sans", calibri, sans-serif;
  font-weight: 400;
  line-height: 1.3;
}
.teaser h4 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #5fb345;
  color: #ffffff;
  text-transform: uppercase;
  padding: 12px 20px 9px;
  max-width: 75%;
}
.teaser h4 span {
  position: relative;
  z-index: 3;
}
.teaser h4.bubble-left:before {
  content: "";
  width: 100%;
  height: 25%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  background: inherit;
  border-radius: 100%;
  -webkit-transform: translateY(-60%);
  -moz-transform: translateY(-60%);
  transform: translateY(-60%);
}
.teaser h4.bubble-left:after {
  content: "";
  width: 50px;
  height: 22px;
  position: absolute;
  top: 100%;
  margin: -10px 0 0;
  z-index: 1;
  background: inherit;
  right: 30px;
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transform: rotate(15deg);
  -moz-transform: rotate(15deg);
  transform: rotate(15deg);
}
.teaser h4.bubble-right {
  left: auto;
  right: 0;
}
.teaser h4.bubble-right:before {
  content: "";
  width: 100%;
  height: 25%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  background: inherit;
  border-radius: 100%;
  -webkit-transform: translateY(-60%);
  -moz-transform: translateY(-60%);
  transform: translateY(-60%);
}
.teaser h4.bubble-right:after {
  content: "";
  width: 50px;
  height: 22px;
  position: absolute;
  top: 100%;
  margin: -10px 0 0;
  z-index: 1;
  background: inherit;
  left: 30px;
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: rotate(-15deg);
  -moz-transform: rotate(-15deg);
  transform: rotate(-15deg);
}
.teaser.greenlight h4 {
  background: #a2c617;
}
.teaser.greendark h4 {
  background: #007a67;
}
.teaser.magenta h4 {
  background: #e1007d;
}
.teaser.blue h4 {
  background: #009ee3;
}
.wideteaser {
  font-size: 1rem;
  margin-bottom: 5rem;
}
.wideteaser a {
  display: block;
  position: relative;
  color: #222;
}
.wideteaser a.pic {
  margin-bottom: 1.625rem;
}
.wideteaser a.txt {
  padding: 0 10px 0 20px;
}
.wideteaser h4 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background: #5fb345;
  color: #ffffff;
  text-transform: uppercase;
  padding: 12px 20px 9px;
  max-width: 75%;
}
.wideteaser h4 span {
  position: relative;
  z-index: 3;
}
.wideteaser h4:before {
  content: "";
  width: 100%;
  height: 25%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  background: inherit;
  border-radius: 100%;
  -webkit-transform: translateY(-60%);
  -moz-transform: translateY(-60%);
  transform: translateY(-60%);
}
.wideteaser h4:after {
  content: "";
  width: 50px;
  height: 22px;
  position: absolute;
  top: 100%;
  margin: -10px 0 0;
  z-index: 1;
  background: inherit;
  left: 30px;
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: rotate(-15deg);
  -moz-transform: rotate(-15deg);
  transform: rotate(-15deg);
}
.wideteaser.greenlight a h4 {
  background: #a2c617;
}
.wideteaser.greendark a h4 {
  background: #007a67;
}
.wideteaser.magenta a h4 {
  background: #e1007d;
}
.wideteaser.blue a h4 {
  background: #009ee3;
}
.wideteaser .imgwrapper {
  min-height: 100px;
}
.wideteaser .imgwrapper img {
  display: block;
}
.widget-offer-teaser {
  margin-top: 1.5625rem;
}
.widget-offer-teaser + div + .widget-offer-teaser {
  margin-top: 0;
}
@media print, screen and (min-width: 37.5em) {
  .teaser-wrapper .copyright-info {
    right: 8px;
  }
  .teaser {
    margin-bottom: 9.375rem;
    /*
    &.shift, &.shift {
      margin-top: 7%;
      + .copyright-info-wrapper { margin-top: 7%; }
    }
    .medium-offset-1 > &.shift {
      margin-top: 15%;
      + .copyright-info-wrapper { margin-top: 15%; }
    }
*/
  }
  .teaser .imgwrapper {
    margin-bottom: 2.375rem;
  }
  .teaser h3, .teaser h2, .teaser h5, .teaser p, .teaser ul {
    padding: 0 3% 0 7%;
  }
  .teaser h4 {
    padding: 13px 7% 10px;
    letter-spacing: 0.015em;
  }
  body.desktop .teaser .imgwrapper {
    position: relative;
    overflow: hidden;
  }
  body.desktop .teaser .imgwrapper img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    transition: transform 200ms;
  }
  body.desktop .teaser .imgwrapper:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #5fb345;
    mix-blend-mode: soft-light;
    opacity: 0;
    transition: opacity 200ms;
  }
  body.desktop .teaser:hover .imgwrapper img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
  }
  body.desktop .teaser:hover .imgwrapper:after {
    opacity: 0.8;
  }
  body.desktop .teaser.active .imgwrapper:after {
    opacity: 0.8;
    mix-blend-mode: hard-light;
  }
  body.desktop.edge .teaser:hover .imgwrapper:after {
    opacity: 0.2;
  }
  .wideteaser {
    margin-bottom: 9.375rem;
  }
  .wideteaser a.txt {
    padding-left: 3%;
    padding-bottom: 10px;
  }
  .wideteaser h4 {
    padding: 13px 7% 10px;
    letter-spacing: 0.015em;
  }
  body.desktop .wideteaser a.pic .imgwrapper {
    position: relative;
    overflow: hidden;
  }
  body.desktop .wideteaser a.pic .imgwrapper img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    transition: transform 200ms;
  }
  body.desktop .wideteaser a.pic:hover .imgwrapper img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
  }
  .readMoreButton-wrapper {
    margin-top: -4rem;
    margin-bottom: 3rem;
    position: relative;
  }
  .readMoreButton-wrapper.noTeaser {
    margin-top: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .teaser-wrapper .copyright-info-wrapper {
    padding: 33.3% 0;
  }
  .teaser h3, .teaser h2, .teaser h5, .teaser p, .teaser ul {
    padding-right: 14%;
  }
  .teaser h4 {
    padding-top: 17px;
    padding-bottom: 13px;
  }
  .wideteaser h4 {
    padding-top: 17px;
    padding-bottom: 13px;
  }
}
.teaser__loadmore {
  position: relative;
  display: block;
  width: 100%;
  background-color: #E36B6E;
  padding-bottom: 68.9655172414%;
  color: white;
  cursor: pointer;
}
.teaser__loadmore__inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
.teaser__loadmore img {
  display: block;
  margin: 0 auto 20px;
}
.loadmore-button button {
  transform: translateY(-2rem);
}
@media print, screen and (min-width: 37.5em) {
  .loadmore-button button {
    transform: translateY(0);
  }
}
@media print, screen and (min-width: 64em) {
  .loadmore-button button {
    transform: translateY(-4rem);
  }
}
.teaserblock-wrapper {
  margin-top: 25px;
  margin-bottom: 5rem;
}
.teaserblock-wrapper .teaser-wrapper .teaser {
  min-height: 100%;
  background: #f3f3f3;
  margin-bottom: 0;
  padding-bottom: 2.375rem;
  background: linear-gradient(to bottom, rgba(243, 243, 243, 0.9) 0%, rgba(243, 243, 243, 0.9) 70%, rgba(243, 243, 243, 0) 95%);
}
.teaserblock-wrapper .teaser-wrapper .copyright-info {
  top: 0;
  bottom: auto;
}
@media print, screen and (min-width: 37.5em) {
  .teaserblock-wrapper .teaser-wrapper .imgwrapper img {
    aspect-ratio: 2.0350877193;
    object-fit: cover;
  }
}
.large-image-teaser {
  max-width: 1920px;
  margin: 0 auto 4.375rem;
}
.large-image-teaser .image-inner-wrapper {
  position: relative;
  display: block;
  margin-bottom: 2em;
  margin-right: 0.3125rem;
  margin-left: 0.3125rem;
}
@media print, screen and (min-width: 64em) {
  .large-image-teaser .image-inner-wrapper {
    margin-right: 0.46875rem;
    margin-left: 0.46875rem;
  }
}
.large-image-teaser .image-inner-wrapper img {
  dispplay: block;
  width: 100%;
  height: auto;
  min-height: 320px;
}
.large-image-teaser .image-inner-wrapper img[data-resize] {
  min-height: 0;
}
.large-image-teaser .image-inner-wrapper .teaser-inner-txt, .large-image-teaser .image-inner-wrapper .teaser-inner-txt:hover {
  margin: 0;
  font-size: 1rem;
  padding: 18px 12px;
  color: #ffffff;
  text-transform: uppercase;
  background: #007a67;
}
.large-image-teaser .image-inner-wrapper .teaser-inner-txt.economy, .large-image-teaser .image-inner-wrapper .teaser-inner-txt:hover.economy {
  background: #009ee3;
}
.large-image-teaser .image-inner-wrapper .teaser-inner-txt.neutral, .large-image-teaser .image-inner-wrapper .teaser-inner-txt:hover.neutral {
  background: #5fb345;
}
.large-image-teaser.panorama-image-teaser .copyright-info {
  top: 0;
  bottom: auto;
}
@media print, screen and (min-width: 37.5em) {
  .large-image-teaser {
    margin-bottom: 7.5rem;
  }
  .large-image-teaser .image-inner-wrapper .teaser-inner-txt, .large-image-teaser .image-inner-wrapper .teaser-inner-txt:hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, #007a67 40px, rgba(0, 122, 103, 0.75) 100%);
  }
  .large-image-teaser .image-inner-wrapper .teaser-inner-txt.economy, .large-image-teaser .image-inner-wrapper .teaser-inner-txt:hover.economy {
    background: linear-gradient(to top, #009ee3 40px, rgba(0, 158, 227, 0.75) 100%);
  }
  .large-image-teaser .image-inner-wrapper .teaser-inner-txt.neutral, .large-image-teaser .image-inner-wrapper .teaser-inner-txt:hover.neutral {
    background: linear-gradient(to top, #5fb345 40px, rgba(95, 179, 69, 0.75) 100%);
  }
  .large-image-teaser .image-inner-wrapper img {
    min-height: 500px;
  }
  .large-image-teaser .image-inner-wrapper img[data-resize] {
    min-height: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-image-teaser .image-inner-wrapper {
    margin-right: 50px;
    margin-left: 50px;
  }
  .large-image-teaser .image-inner-wrapper img {
    min-height: 600px;
  }
  .large-image-teaser .image-inner-wrapper img[data-resize] {
    min-height: 0;
  }
  .large-image-teaser .image-inner-wrapper .teaser-inner-txt, .large-image-teaser .image-inner-wrapper .teaser-inner-txt:hover {
    font-size: 1.125rem;
    padding: 24px 12px;
  }
}
.teaser-article-wrapper .hide-article, .teaser-article-wrapper-editmode .hide-article {
  display: none;
}
.teaser-article-wrapper .more-wrapper, .teaser-article-wrapper-editmode .more-wrapper {
  text-align: center;
  background-color: #E36B6E;
  color: #ffffff;
  cursor: pointer;
}
.teaser-article-wrapper .more-wrapper .content, .teaser-article-wrapper-editmode .more-wrapper .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E36B6E;
}
.teaser-article-wrapper .more-wrapper .content .fullHeight, .teaser-article-wrapper-editmode .more-wrapper .content .fullHeight {
  height: 100%;
}
.teaser-article-wrapper .more-wrapper .content img, .teaser-article-wrapper-editmode .more-wrapper .content img {
  padding-bottom: 1.25rem;
  position: relative;
}
.teaser-article-wrapper .more-wrapper .content p, .teaser-article-wrapper-editmode .more-wrapper .content p {
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-family: "Averta W01", calibri, sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 107%;
}
.teaser-article-wrapper .teaser-wrapper, .teaser-article-wrapper-editmode .teaser-wrapper {
  overflow: hidden;
  position: relative;
  margin-bottom: 0.9375rem;
}
.teaser-article-wrapper .teaser-wrapper img, .teaser-article-wrapper-editmode .teaser-wrapper img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  transition: transform 200ms;
  top: 0;
}
.teaser-article-wrapper .teaser-wrapper img.fullwidth, .teaser-article-wrapper-editmode .teaser-wrapper img.fullwidth {
  width: 100%;
  height: auto;
}
.teaser-article-wrapper .teaser-wrapper.with-description:hover .overlay, .teaser-article-wrapper-editmode .teaser-wrapper.with-description:hover .overlay {
  top: 0;
}
.teaser-article-wrapper .teaser-wrapper.no-description:after, .teaser-article-wrapper-editmode .teaser-wrapper.no-description:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #5fb345;
  mix-blend-mode: soft-light;
  opacity: 0;
  transition: opacity 200ms;
}
.teaser-article-wrapper .teaser-wrapper.no-description:hover:after, .teaser-article-wrapper-editmode .teaser-wrapper.no-description:hover:after {
  opacity: 0.8;
}
.teaser-article-wrapper .teaser-wrapper.no-description:hover img, .teaser-article-wrapper-editmode .teaser-wrapper.no-description:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}
.teaser-article-wrapper .teaser-wrapper .overlay, .teaser-article-wrapper-editmode .teaser-wrapper .overlay {
  top: calc(100% - 90px);
  height: 100%;
  background-color: #009ee3;
  background-color: rgba(0, 158, 227, 0.9);
  width: 100%;
  overflow: hidden;
  transition: top 0.5s;
  color: #ffffff;
  pointer-events: none;
  z-index: 3;
  background: rgba(0, 159, 227, 0.9);
  background: -moz-linear-gradient(top, rgba(0, 159, 227, 0.9) 0%, rgba(0, 159, 227, 0.9) 33%, #009fe3 66%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 159, 227, 0.9)), color-stop(33%, rgba(0, 159, 227, 0.9)), color-stop(66%, #009fe3));
  background: -webkit-linear-gradient(top, rgba(0, 159, 227, 0.9) 0%, rgba(0, 159, 227, 0.9) 33%, #009fe3 66%);
  background: -o-linear-gradient(top, rgba(0, 159, 227, 0.9) 0%, rgba(0, 159, 227, 0.9) 33%, #009fe3 66%);
  background: -ms-linear-gradient(top, rgba(0, 159, 227, 0.9) 0%, rgba(0, 159, 227, 0.9) 33%, #009fe3 66%);
  background: linear-gradient(to bottom, rgba(0, 159, 227, 0.9) 0%, rgba(0, 159, 227, 0.9) 33%, #009fe3 66%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#009fe3", endColorstr="#009fe3", GradientType=0);
}
.teaser-article-wrapper .teaser-wrapper .overlay .head, .teaser-article-wrapper-editmode .teaser-wrapper .overlay .head {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  padding-top: 1.25rem;
  padding-bottom: 0.625rem;
}
.teaser-article-wrapper .teaser-wrapper .overlay .head h5, .teaser-article-wrapper-editmode .teaser-wrapper .overlay .head h5 {
  padding: 0;
  color: #ffffff;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.teaser-article-wrapper .teaser-wrapper .overlay .head h3, .teaser-article-wrapper-editmode .teaser-wrapper .overlay .head h3 {
  padding: 0;
  color: #ffffff;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.teaser-article-wrapper .teaser-wrapper .overlay .body, .teaser-article-wrapper-editmode .teaser-wrapper .overlay .body {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  padding-bottom: 1.25rem;
  overflow: hidden;
  height: calc(100% - 90px);
  position: relative;
}
.teaser-article-wrapper .teaser-wrapper .overlay .body div > *:last-child, .teaser-article-wrapper-editmode .teaser-wrapper .overlay .body div > *:last-child {
  margin-bottom: 0;
}
.teaser-article-wrapper .teaser-wrapper .overlay .body p, .teaser-article-wrapper-editmode .teaser-wrapper .overlay .body p {
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
}
.teaser-article-wrapper .teaser-wrapper .overlay:after, .teaser-article-wrapper-editmode .teaser-wrapper .overlay:after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 25px;
  background: #009ee3;
  background: rgba(0, 159, 227, 0);
  background: -moz-linear-gradient(top, rgba(0, 159, 227, 0) 0%, #009fe3 50%, #009fe3 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 159, 227, 0)), color-stop(50%, #009fe3), color-stop(100%, #009fe3));
  background: -webkit-linear-gradient(top, rgba(0, 159, 227, 0) 0%, #009fe3 50%, #009fe3 100%);
  background: -o-linear-gradient(top, rgba(0, 159, 227, 0) 0%, #009fe3 50%, #009fe3 100%);
  background: -ms-linear-gradient(top, rgba(0, 159, 227, 0) 0%, #009fe3 50%, #009fe3 100%);
  background: linear-gradient(to bottom, rgba(0, 159, 227, 0) 0%, #009fe3 50%, #009fe3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#009fe3", endColorstr="#009fe3", GradientType=0);
}
.teaser-article-wrapper .teaser-wrapper .overlay.tourism, .teaser-article-wrapper-editmode .teaser-wrapper .overlay.tourism {
  background: rgba(0, 122, 103, 0.9);
  background: -moz-linear-gradient(top, rgba(0, 122, 103, 0.9) 0%, rgba(0, 122, 103, 0.9) 33%, #007a67 66%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 122, 103, 0.9)), color-stop(33%, rgba(0, 122, 103, 0.9)), color-stop(66%, #007a67));
  background: -webkit-linear-gradient(top, rgba(0, 122, 103, 0.9) 0%, rgba(0, 122, 103, 0.9) 33%, #007a67 66%);
  background: -o-linear-gradient(top, rgba(0, 122, 103, 0.9) 0%, rgba(0, 122, 103, 0.9) 33%, #007a67 66%);
  background: -ms-linear-gradient(top, rgba(0, 122, 103, 0.9) 0%, rgba(0, 122, 103, 0.9) 33%, #007a67 66%);
  background: linear-gradient(to bottom, rgba(0, 122, 103, 0.9) 0%, rgba(0, 122, 103, 0.9) 33%, #007a67 66%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#007a67", endColorstr="#007a67", GradientType=0);
}
.teaser-article-wrapper .teaser-wrapper .overlay.tourism:after, .teaser-article-wrapper-editmode .teaser-wrapper .overlay.tourism:after {
  background: #007a67;
  background: rgba(0, 122, 103, 0);
  background: -moz-linear-gradient(top, rgba(0, 122, 103, 0) 0%, #007a67 50%, #007a67 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 122, 103, 0)), color-stop(50%, #007a67), color-stop(100%, #007a67));
  background: -webkit-linear-gradient(top, rgba(0, 122, 103, 0) 0%, #007a67 50%, #007a67 100%);
  background: -o-linear-gradient(top, rgba(0, 122, 103, 0) 0%, #007a67 50%, #007a67 100%);
  background: -ms-linear-gradient(top, rgba(0, 122, 103, 0) 0%, #007a67 50%, #007a67 100%);
  background: linear-gradient(to bottom, rgba(0, 122, 103, 0) 0%, #007a67 50%, #007a67 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#007a67", endColorstr="#007a67", GradientType=0);
}
.teaser-article-wrapper .teaser-wrapper .overlay.neutral, .teaser-article-wrapper-editmode .teaser-wrapper .overlay.neutral {
  background: rgba(95, 179, 69, 0.9);
  background: -moz-linear-gradient(top, rgba(95, 179, 69, 0.9) 0%, rgba(95, 179, 69, 0.9) 33%, #5fb345 66%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(95, 179, 69, 0.9)), color-stop(33%, rgba(95, 179, 69, 0.9)), color-stop(66%, #5fb345));
  background: -webkit-linear-gradient(top, rgba(95, 179, 69, 0.9) 0%, rgba(95, 179, 69, 0.9) 33%, #5fb345 66%);
  background: -o-linear-gradient(top, rgba(95, 179, 69, 0.9) 0%, rgba(95, 179, 69, 0.9) 33%, #5fb345 66%);
  background: -ms-linear-gradient(top, rgba(95, 179, 69, 0.9) 0%, rgba(95, 179, 69, 0.9) 33%, #5fb345 66%);
  background: linear-gradient(to bottom, rgba(95, 179, 69, 0.9) 0%, rgba(95, 179, 69, 0.9) 33%, #5fb345 66%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5fb345", endColorstr="#5fb345", GradientType=0);
}
.teaser-article-wrapper .teaser-wrapper .overlay.neutral:after, .teaser-article-wrapper-editmode .teaser-wrapper .overlay.neutral:after {
  background: #5fb345;
  background: rgba(95, 179, 69, 0);
  background: -moz-linear-gradient(top, rgba(95, 179, 69, 0) 0%, #5fb345 50%, #5fb345 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(95, 179, 69, 0)), color-stop(50%, #5fb345), color-stop(100%, #5fb345));
  background: -webkit-linear-gradient(top, rgba(95, 179, 69, 0) 0%, #5fb345 50%, #5fb345 100%);
  background: -o-linear-gradient(top, rgba(95, 179, 69, 0) 0%, #5fb345 50%, #5fb345 100%);
  background: -ms-linear-gradient(top, rgba(95, 179, 69, 0) 0%, #5fb345 50%, #5fb345 100%);
  background: linear-gradient(to bottom, rgba(95, 179, 69, 0) 0%, #5fb345 50%, #5fb345 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5fb345", endColorstr="#5fb345", GradientType=0);
}
.teaser-article-wrapper .teaser-wrapper .copyright-info, .teaser-article-wrapper-editmode .teaser-wrapper .copyright-info {
  top: 0;
  bottom: auto;
  pointer-events: none;
}
.teaser-article-wrapper .teaser-wrapper .teaser-link, .teaser-article-wrapper-editmode .teaser-wrapper .teaser-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}
@media print, screen and (min-width: 37.5em) {
  .teaser-article-wrapper-editmode .medium-12 .teaser-wrapper:before, .teaser-article-wrapper-editmode .large-12 .teaser-wrapper:before, .teaser-article-wrapper .medium-12 .teaser-wrapper:before, .teaser-article-wrapper .large-12 .teaser-wrapper:before {
    content: "";
    display: block;
    padding-top: 57.1428%;
  }
  .teaser-article-wrapper-editmode .medium-6 .teaser-wrapper:before, .teaser-article-wrapper-editmode .large-6 .teaser-wrapper:before, .teaser-article-wrapper .medium-6 .teaser-wrapper:before, .teaser-article-wrapper .large-6 .teaser-wrapper:before {
    content: "";
    display: block;
    padding-top: 57.1428%;
  }
  .teaser-article-wrapper-editmode .medium-4 .teaser-wrapper:before, .teaser-article-wrapper-editmode .large-4 .teaser-wrapper:before, .teaser-article-wrapper .medium-4 .teaser-wrapper:before, .teaser-article-wrapper .large-4 .teaser-wrapper:before {
    content: "";
    display: block;
    padding-top: 86.20689%;
  }
  .teaser-article-wrapper-editmode .medium-3 .teaser-wrapper:before, .teaser-article-wrapper-editmode .large-3 .teaser-wrapper:before, .teaser-article-wrapper .medium-3 .teaser-wrapper:before, .teaser-article-wrapper .large-3 .teaser-wrapper:before {
    content: "";
    display: block;
    padding-top: 86.20689%;
  }
  .teaser-article-wrapper-editmode .teaser-wrapper img.fullwidth, .teaser-article-wrapper .teaser-wrapper img.fullwidth {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .teaser-article-wrapper-editmode img, .teaser-article-wrapper img {
    position: absolute;
  }
  .teaser-article-wrapper-editmode .overlay, .teaser-article-wrapper .overlay {
    position: absolute;
  }
  .teaser-article-wrapper-editmode .copyright-info, .teaser-article-wrapper .copyright-info {
    top: auto;
    bottom: 90px;
  }
}
@media print, screen and (min-width: 37.5em) and print, screen and (min-width: 37.5em) {
  .teaser-article-wrapper-editmode .medium-12 .teaser-wrapper:before, .teaser-article-wrapper-editmode .large-12 .teaser-wrapper:before, .teaser-article-wrapper .medium-12 .teaser-wrapper:before, .teaser-article-wrapper .large-12 .teaser-wrapper:before {
    padding-top: 28.25%;
  }
}
.teaser-blog-wrapper .hide-article {
  display: none;
}
.teaser-blog-wrapper .medium-6 .teaser-wrapper:before, .teaser-blog-wrapper .large-6 .teaser-wrapper:before, .teaser-blog-wrapper .small-6 .teaser-wrapper:before {
  content: "";
  display: block;
  padding-top: 57.1428%;
}
.teaser-blog-wrapper .medium-4 .teaser-wrapper:before, .teaser-blog-wrapper .large-4 .teaser-wrapper:before, .teaser-blog-wrapper .small-4 .teaser-wrapper:before {
  content: "";
  display: block;
  padding-top: 86.20689%;
}
.teaser-blog-wrapper .teaser-wrapper {
  overflow: hidden;
  position: relative;
  margin-bottom: 0.9375rem;
}
.teaser-blog-wrapper .teaser-wrapper img {
  position: absolute;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  transition: transform 200ms;
  top: 0;
}
.teaser-blog-wrapper .teaser-wrapper.with-description:hover .author {
  top: unset;
  bottom: 0;
}
.teaser-blog-wrapper .teaser-wrapper.with-description:hover .overlay {
  top: 0;
}
.teaser-blog-wrapper .teaser-wrapper .author {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}
.teaser-blog-wrapper .teaser-wrapper .author .author-img {
  width: 2.875rem;
  height: 3.125rem;
  display: inline-block;
  background-image: url("//static.oldenburger-muensterland.de/images/blog_author_bubble.png");
  background-repeat: no-repeat;
  background-size: 2.875rem 3.125rem;
  margin: 0.625rem 0.5rem 0 0.75rem;
}
.teaser-blog-wrapper .teaser-wrapper .author .author-img img {
  width: 2.375rem;
  height: 2.375rem;
  top: 0.875rem;
  left: 1rem;
  border-radius: 50%;
}
.teaser-blog-wrapper .teaser-wrapper .author .author-name {
  display: inline-block;
  transform: translateY(-1.45rem);
}
.teaser-blog-wrapper .teaser-wrapper .author .author-name h4 {
  color: #ffffff;
  text-shadow: 0 0 2px #222;
}
.teaser-blog-wrapper .teaser-wrapper.no-description:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #5fb345;
  mix-blend-mode: soft-light;
  opacity: 0;
  transition: opacity 200ms;
}
.teaser-blog-wrapper .teaser-wrapper.no-description:hover:after {
  opacity: 0.8;
}
.teaser-blog-wrapper .teaser-wrapper.no-description:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}
.teaser-blog-wrapper .teaser-wrapper .overlay {
  position: absolute;
  top: calc(100% - 90px);
  height: 100%;
  background-color: #5fb345;
  background-color: rgba(95, 179, 69, 0.9);
  width: 100%;
  overflow: hidden;
  transition: top 0.5s;
  color: #ffffff;
  pointer-events: none;
  z-index: 3;
  background: rgba(95, 179, 69, 0.9);
  background: -moz-linear-gradient(top, rgba(95, 179, 69, 0.9) 0%, rgba(95, 179, 69, 0.9) 33%, #5fb345 66%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(95, 179, 69, 0.9)), color-stop(33%, rgba(95, 179, 69, 0.9)), color-stop(66%, #5fb345));
  background: -webkit-linear-gradient(top, rgba(95, 179, 69, 0.9) 0%, rgba(95, 179, 69, 0.9) 33%, #5fb345 66%);
  background: -o-linear-gradient(top, rgba(95, 179, 69, 0.9) 0%, rgba(95, 179, 69, 0.9) 33%, #5fb345 66%);
  background: -ms-linear-gradient(top, rgba(95, 179, 69, 0.9) 0%, rgba(95, 179, 69, 0.9) 33%, #5fb345 66%);
  background: linear-gradient(to bottom, rgba(95, 179, 69, 0.9) 0%, rgba(95, 179, 69, 0.9) 33%, #5fb345 66%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#009fe3", endColorstr="#009fe3", GradientType=0);
}
.teaser-blog-wrapper .teaser-wrapper .overlay .head {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  padding-top: 1.25rem;
  padding-bottom: 0.625rem;
}
.teaser-blog-wrapper .teaser-wrapper .overlay .head h5 {
  padding: 0;
  color: #ffffff;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-family: "Fira Sans", calibri, sans-serif;
  font-weight: 400;
}
.teaser-blog-wrapper .teaser-wrapper .overlay .head h3 {
  padding: 0;
  color: #ffffff;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.teaser-blog-wrapper .teaser-wrapper .overlay .body {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  padding-bottom: 1.25rem;
  overflow: hidden;
  height: calc(100% - 90px);
  position: relative;
}
.teaser-blog-wrapper .teaser-wrapper .overlay .body:after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 25px;
  background: #009ee3;
  background: rgba(95, 179, 69, 0);
  background: -moz-linear-gradient(top, rgba(95, 179, 69, 0) 0%, #5fb345 50%, #5fb345 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(95, 179, 69, 0)), color-stop(50%, #5fb345), color-stop(100%, #5fb345));
  background: -webkit-linear-gradient(top, rgba(95, 179, 69, 0) 0%, #5fb345 50%, #5fb345 100%);
  background: -o-linear-gradient(top, rgba(95, 179, 69, 0) 0%, #5fb345 50%, #5fb345 100%);
  background: -ms-linear-gradient(top, rgba(95, 179, 69, 0) 0%, #5fb345 50%, #5fb345 100%);
  background: linear-gradient(to bottom, rgba(95, 179, 69, 0) 0%, #5fb345 50%, #5fb345 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#009fe3", endColorstr="#009fe3", GradientType=0);
}
.teaser-blog-wrapper .teaser-wrapper .overlay .body p {
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
}
.teaser-blog-wrapper .teaser-wrapper .copyright-info {
  bottom: 90px;
  pointer-events: none;
}
.teaser-blog-wrapper .teaser-wrapper .teaser-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}
.widget-linklist {
  margin-bottom: 1.25rem;
}
.widget-linklist .linklist {
  margin-bottom: 1.875rem;
}
.widget-linklist .linklist h3 {
  margin: 0;
  padding: 0.6em 0;
  border-bottom: 2px solid #ccc;
}
.widget-linklist .linklist .headline-spacer {
  text-indent: -999px;
  overflow: hidden;
  display: block;
  border-bottom: 2px solid #ccc;
}
.widget-linklist .linklist .headline-spacer::before {
  content: ".";
}
.widget-linklist .linklist a {
  display: block;
  padding: 1em 0 1em 28px;
  border-bottom: 1px solid #ccc;
  font-size: 0.9375rem;
  font-family: "Averta W01", calibri, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.3;
  text-transform: uppercase;
  background: url("//static.oldenburger-muensterland.de/images/icon-plus.svg") no-repeat left center;
  background-size: 19px 19px;
}
.widget-linklist .linklist a.doc {
  background-image: url("//static.oldenburger-muensterland.de/images/icon-document.svg");
  background-size: 20px 22px;
}
@media print, screen and (min-width: 37.5em) {
  .widget-linklist {
    margin-bottom: 1.25rem;
  }
  .widget-linklist .headline-spacer {
    padding: 0.6em 0;
    font-size: 1.1875rem;
    font-family: "Averta W01", calibri, sans-serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1.3;
  }
}
#shortnews {
  background: #f3f3f3;
  font-size: 1rem;
  padding: 2.5rem 0;
  margin: 0 0 5rem;
}
#shortnews h2.text-center {
  margin-bottom: 3.125rem;
}
#shortnews .newsitem {
  background: #f3f3f3;
}
#shortnews .newsitem a {
  display: block;
  padding: 0 20px;
  color: #222;
}
#shortnews .newsitem h3 {
  transition: color 200ms;
}
#shortnews .newsitem .day {
  color: #5fb345;
  font-size: 0.9375rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  transition: color 200ms;
}
#shortnews .newsitem p {
  display: inline;
  margin-right: 5px;
}
#shortnews .newsitem .readmore {
  color: #5fb345;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 200ms;
}
body.desktop #shortnews .newsitem a:hover h3, body.desktop #shortnews .newsitem a:hover .day, body.desktop #shortnews .newsitem a:hover .readmore {
  color: #007a67;
}
#shortnews a.button {
  margin-top: 2.5rem;
  margin-bottom: 0;
  padding: 0.9em 2em;
  transition: padding 150ms;
}
#shortnews a.button:hover, #shortnews a.button:focus {
  background: #ffffff;
}
body.desktop #shortnews a.button:hover {
  padding: 0.9em 2.5em;
}
@media screen and (max-width: 26.1875em) {
  #shortnews-swiper > .grid-x {
    flex-flow: row nowrap;
  }
  #shortnews-swiper.swiper-container-autoheight > .grid-x {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  #shortnews-swiper .swiper-pagination {
    position: static;
    margin: 25px 0 -10px;
  }
  #shortnews-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #5fb345;
  }
}
@media print, screen and (min-width: 37.5em) {
  #shortnews {
    margin-bottom: 6.875rem;
  }
  #shortnews h2.text-center:before {
    content: "+ + ";
  }
  #shortnews h2.text-center:after {
    content: " + +";
  }
  #shortnews .newsitem a {
    padding: 0 3%;
  }
  #shortnews-swiper > .grid-x {
    transform: none !important;
  }
  #shortnews-swiper .newsitem {
    width: 33.3333333333% !important;
  }
}
@media print, screen and (min-width: 64em) {
  #shortnews {
    margin-right: 50px;
    margin-left: 50px;
    padding-right: 50px;
    padding-left: 50px;
  }
  #shortnews .grid-x {
    justify-content: center;
  }
  #shortnews .newsitem a {
    padding: 0;
  }
}
@media screen and (min-width: 120em) {
  #shortnews {
    max-width: 1820px;
    margin-right: auto;
    margin-left: auto;
  }
}
#topnews-swiper h2.text-center {
  margin-bottom: 3.125rem;
}
#topnews-swiper .news-container {
  background: #5fb345;
}
#topnews-swiper .news-container span, #topnews-swiper .news-container h3, #topnews-swiper .news-container a {
  color: #ffffff;
}
#topnews-swiper .swiper-container {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
}
#topnews-swiper .swiper-container .arrow-prev, #topnews-swiper .swiper-container .arrow-next {
  position: absolute;
  top: 50%;
  z-index: 5;
  cursor: pointer;
}
#topnews-swiper .swiper-container .arrow-prev.swiper-button-disabled, #topnews-swiper .swiper-container .arrow-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
}
#topnews-swiper .grid-x {
  padding: 0 0.3125rem;
}
#topnews-swiper .news-img-wrapper {
  margin: 2rem auto 0.5rem;
  width: 10.9375rem;
}
#topnews-swiper .news-img-wrapper .news-img {
  width: 175px;
  height: 175px;
  border-radius: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
}
#topnews-swiper .news-content {
  margin: 2rem 3rem;
}
#topnews-swiper .news-content .news-date {
  font-size: 0.875rem;
}
#topnews-swiper .news-content .news-descr {
  font-size: 1rem;
}
#topnews-swiper .news-content .news-descr::after {
  content: " mehr";
  text-transform: uppercase;
  font-family: "Averta W01", calibri, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
}
@media screen and (max-width: 63.9375em) {
  #topnews-swiper .arrow-prev, #topnews-swiper .arrow-next {
    display: none;
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 60px;
    margin-top: -20px;
    z-index: 10;
    cursor: pointer;
    font-size: 40px;
    color: #ffffff;
    font-family: "Averta W01", calibri, sans-serif;
    font-weight: 300;
    font-size: 36px;
    line-height: 50px;
    text-align: center;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  }
  #topnews-swiper .arrow-prev:before, #topnews-swiper .arrow-prev:after, #topnews-swiper .arrow-next:before, #topnews-swiper .arrow-next:after {
    display: block;
    transform: scaleY(2);
  }
  #topnews-swiper .arrow-prev.swiper-button-disabled, #topnews-swiper .arrow-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  #topnews-swiper .arrow-prev {
    left: 0;
  }
  #topnews-swiper .arrow-prev:before {
    content: "<";
  }
  #topnews-swiper .arrow-next {
    right: 0;
  }
  #topnews-swiper .arrow-next:before {
    content: ">";
  }
}
@media print, screen and (min-width: 37.5em) {
  #topnews-swiper {
    margin-bottom: 6.875rem;
  }
  #topnews-swiper h2.text-center:before {
    content: "+ + ";
  }
  #topnews-swiper h2.text-center:after {
    content: " + +";
  }
  #topnews-swiper a .news-content {
    transition: padding 200ms;
    margin: 3rem 2.5rem 2.5rem 4rem;
    padding: 0.3125rem 0;
  }
  #topnews-swiper a:hover .news-content {
    padding-top: 0;
    padding-bottom: 0.625rem;
  }
  #topnews-swiper .news-img-wrapper {
    margin: 3rem 17.5% 2rem 32.5%;
  }
}
@media print, screen and (min-width: 64em) {
  #topnews-swiper a .news-content {
    margin: 3.25rem 5rem 2rem 0.875rem;
  }
  #topnews-swiper .arrow-prev, #topnews-swiper .arrow-next {
    left: 15px;
    width: 60px;
    height: 60px;
    margin: -30px 0 0;
    background: #ffffff;
    border-radius: 100%;
  }
  #topnews-swiper .arrow-prev:before, #topnews-swiper .arrow-prev:after, #topnews-swiper .arrow-next:before, #topnews-swiper .arrow-next:after {
    content: "";
    width: 35%;
    height: 3px;
    background: #5fb345;
    position: absolute;
    top: 50%;
    left: 36%;
    transition: left 100ms;
  }
  #topnews-swiper .arrow-prev:before, #topnews-swiper .arrow-next:before {
    margin-top: -1px;
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #topnews-swiper .arrow-prev:after, #topnews-swiper .arrow-next:after {
    margin-top: -2px;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  body.desktop #topnews-swiper .arrow-prev:hover:before, body.desktop #topnews-swiper .arrow-prev:hover:after, body.desktop #topnews-swiper .arrow-next:hover:before, body.desktop #topnews-swiper .arrow-next:hover:after {
    left: 32%;
  }
  #topnews-swiper .arrow-next {
    right: 15px;
    left: auto;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  #topnews-swiper .news-img-wrapper {
    margin: 2rem 17.5% 2rem 32.5%;
  }
  #topnews-swiper .news-img {
    width: 18.75rem;
    height: 18.75rem;
    margin-left: 0rem;
  }
}
#events-swiper .swiper-container {
  height: 17.5625rem;
  margin-bottom: 5rem;
  padding: 0;
}
#events-swiper .swiper-container .swiper-wrapper {
  height: 15.625rem;
  margin-bottom: 1.25rem;
}
#events-swiper .swiper-container .swiper-wrapper .swiper-slide a {
  height: inherit;
  margin-left: 0.3125rem;
  margin-right: 0.3125rem;
  display: block;
}
#events-swiper .swiper-container .swiper-wrapper .swiper-slide a.bg-0 {
  background-color: #5fb345;
}
#events-swiper .swiper-container .swiper-wrapper .swiper-slide a.bg-1 {
  background-color: #009ee3;
}
#events-swiper .swiper-container .swiper-wrapper .swiper-slide a.bg-2 {
  background-color: #e1007d;
}
#events-swiper .swiper-container .swiper-wrapper .swiper-slide a.bg-3 {
  background-color: #6f2584;
}
#events-swiper .swiper-container .swiper-wrapper .swiper-slide a h4, #events-swiper .swiper-container .swiper-wrapper .swiper-slide a span {
  color: #ffffff;
}
#events-swiper .swiper-container .swiper-wrapper .swiper-slide a .month-tile .month-cell .month-rel {
  position: relative;
  padding-bottom: 10.9375rem;
}
#events-swiper .swiper-container .swiper-wrapper .swiper-slide a .month-tile .month-cell .month-rel .month, #events-swiper .swiper-container .swiper-wrapper .swiper-slide a .month-tile .month-cell .month-rel .year {
  display: inline-block;
  font-family: "Averta W01", calibri, sans-serif;
  position: absolute;
}
#events-swiper .swiper-container .swiper-wrapper .swiper-slide a .month-tile .month-cell .month-rel .month {
  font-size: 8.75rem;
  line-height: 1;
  right: 0;
  top: 1.5625rem;
}
#events-swiper .swiper-container .swiper-wrapper .swiper-slide a .month-tile .month-cell .month-rel .year {
  line-height: normal;
  font-size: 1.125rem;
  transform: rotate(270deg);
  left: -17px;
  top: 6.75rem;
}
#events-swiper .swiper-container .swiper-wrapper .swiper-slide a .month-tile .month-cell .month-rel .year::before {
  content: "—";
}
#events-swiper .swiper-container .swiper-wrapper .swiper-slide a .month-tile h4 {
  font-size: 1.125rem;
}
#events-swiper .swiper-container .swiper-pagination {
  position: absolute;
  bottom: 0;
}
#events-swiper .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: #5fb345;
  opacity: 1;
  width: 0.3125rem;
  height: 0.3125rem;
  margin-bottom: 0.1875rem;
}
#events-swiper .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 0.6875rem;
  height: 0.6875rem;
  margin-bottom: 0;
}
@media print, screen and (min-width: 37.5em) {
  #events-swiper .swiper-container {
    height: 22.1875rem;
  }
  #events-swiper .swiper-container .swiper-wrapper {
    height: 19.625rem;
    margin-bottom: 1.25rem;
  }
  #events-swiper .swiper-container .swiper-wrapper .swiper-slide a .month-tile h4 {
    margin: 0 auto;
  }
  #events-swiper .swiper-container .swiper-wrapper .swiper-slide a .month-tile .month-cell .month-rel {
    padding-bottom: 13.125rem;
  }
  #events-swiper .swiper-container .swiper-wrapper .swiper-slide a .month-tile .month-cell .month-rel .month {
    right: -10px;
    top: 2.5rem;
  }
  #events-swiper .swiper-container .swiper-wrapper .swiper-slide a .month-tile .month-cell .month-rel .year {
    left: -5px;
    top: 7.5625rem;
  }
}
@media print, screen and (min-width: 64em) {
  #events-swiper .swiper-container {
    height: 19.625rem;
  }
  #events-swiper .swiper-container .swiper-wrapper .swiper-slide a .month-tile .month-cell .month-rel .month {
    right: -17px;
  }
  #events-swiper .swiper-container .swiper-wrapper .swiper-slide a .month-tile .month-cell .month-rel .year {
    left: -2px;
  }
}
@media screen and (max-width: 63.9375em) {
  #events-swiper .arrow-prev, #events-swiper .arrow-next {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 60px;
    margin-top: -20px;
    z-index: 10;
    cursor: pointer;
    font-size: 40px;
    color: #ffffff;
    font-family: "Averta W01", calibri, sans-serif;
    font-weight: 300;
    font-size: 36px;
    line-height: 50px;
    text-align: center;
  }
  #events-swiper .arrow-prev:before, #events-swiper .arrow-prev:after, #events-swiper .arrow-next:before, #events-swiper .arrow-next:after {
    display: block;
    transform: scaleY(2);
  }
  #events-swiper .arrow-prev.swiper-button-disabled, #events-swiper .arrow-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  #events-swiper .arrow-prev {
    left: 0;
  }
  #events-swiper .arrow-prev:before {
    content: "<";
  }
  #events-swiper .arrow-next {
    right: 0;
  }
  #events-swiper .arrow-next:before {
    content: ">";
  }
}
#events-swiper .arrow-prev, #events-swiper .arrow-next {
  top: 7.8125rem;
}
@media print, screen and (min-width: 37.5em) {
  #events-swiper .arrow-prev, #events-swiper .arrow-next {
    top: 9.8125rem;
  }
}
.link-stripes {
  margin-bottom: 5.6875rem;
}
.link-stripes .stripe {
  margin-bottom: 2.1875rem;
  padding: 1.875rem 0;
}
.link-stripes .stripe.lightgreen {
  background-color: #5FB345;
}
.link-stripes .stripe.ht-green {
  background-color: #a1bf36;
}
.link-stripes .stripe.darkgreen {
  background-color: #007967;
}
.link-stripes .stripe.blue {
  background-color: #009EE3;
}
.link-stripes .stripe.violet {
  background-color: #5B56A2;
}
.link-stripes .stripe.red {
  background-color: #E36B6E;
}
.link-stripes .stripe img {
  margin-bottom: 1.25rem;
}
.link-stripes .stripe a {
  display: block;
  width: auto;
  height: 100%;
  margin: 0 auto;
}
.link-stripes .stripe a:hover h3 {
  transform: translateY(-0.625rem);
}
.link-stripes .stripe a h3 {
  color: #ffffff;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.875rem;
  -webkit-transition: transform 200ms;
  transition: transform 200ms;
}
@media print, screen and (min-width: 37.5em) {
  .link-stripes {
    margin-bottom: 8.5rem;
  }
  .link-stripes .stripe a {
    width: 22.5rem;
  }
  .link-stripes .stripe a h3 {
    font-size: 0.9375rem;
  }
}
/*
transition: transform 200ms;
&:hover {
transform: translateY(rem-calc(-10));
}
*/
.widget-imageTextRow .item {
  display: block;
  margin-bottom: 0.9375rem;
  background-color: #f3f3f3;
  color: #222;
}
.widget-imageTextRow a.item {
  transition-property: color, background;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
.widget-imageTextRow a.item:hover {
  color: #ffffff;
  background-color: #5fb345;
}
.widget-imageTextRow a.item:hover .day, .widget-imageTextRow a.item:hover .headline, .widget-imageTextRow a.item:hover .readmore {
  color: #ffffff;
}
.widget-imageTextRow .item-grid {
  min-height: 11.25rem;
}
.widget-imageTextRow .content {
  padding: 15px 20px 10px;
}
.widget-imageTextRow .content > * {
  margin: 0 0 8px;
}
.widget-imageTextRow .day {
  color: #5fb345;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}
.widget-imageTextRow .headline {
  transition: color 0.2s ease;
}
.widget-imageTextRow .readmore {
  color: #5fb345;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}
@media print, screen and (min-width: 37.5em) {
  .widget-imageTextRow .content {
    padding: 1.25rem 1.25rem 1.25rem 0;
  }
  .image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.imageTextSquared {
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
}
@media print, screen and (min-width: 64em) {
  .imageTextSquared {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.imageTextSquared__item {
  position: relative;
  background-color: #F2F2F2;
}
@media print, screen and (min-width: 64em) {
  .imageTextSquared__item {
    display: flex;
    align-items: flex-start;
  }
  .imageTextSquared__item--reverse {
    flex-direction: row-reverse;
  }
  .imageTextSquared__item > * {
    width: 50%;
  }
}
.imageTextSquared__img {
  position: relative;
}
.imageTextSquared__content {
  padding: 1.875rem 2.5rem;
  align-self: center;
}
@media print, screen and (min-width: 37.5em) {
  .imageTextSquared__content {
    padding: 3.75rem 5.625rem;
  }
}
.imageTextSquared__content > :last-child {
  margin-bottom: 0;
}
.imageTextSquared .button {
  margin-top: 2.5rem;
}
@supports (object-fit: cover) {
  @media print, screen and (min-width: 64em) {
    .imageTextSquared__img {
      align-self: stretch;
    }
    .imageTextSquared__img img {
      height: 100%;
      object-fit: cover;
    }
  }
}
#interestingfacts {
  margin-bottom: 5rem;
}
#interestingfacts h2.text-center {
  margin-bottom: 2.5rem;
}
#interestingfacts .button {
  margin-top: 2.5rem;
}
.fact-wrapper .fact {
  position: relative;
}
.fact-wrapper .fact .copyright-info {
  right: 5px;
  bottom: auto;
  top: 0;
  transform: translateY(-100%) rotate(-90deg);
  transform-origin: 100% 100%;
}
.fact-wrapper .fact > a {
  display: block;
  position: relative;
  margin: 0 0 10px;
  padding: 0 0 40px;
}
.fact-wrapper .fact > a img {
  display: block;
  width: 100%;
}
.fact-wrapper .fact > a h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #ffffff;
  margin: 0;
  padding: 24px 12px;
  text-align: center;
  text-transform: uppercase;
  background: inherit;
  background: linear-gradient(to top, #5fb345 40px, rgba(95, 179, 69, 0.75) 100%);
}
.fact-wrapper .fact > a.greenlightbg h3 {
  background: linear-gradient(to top, #a2c617 40px, rgba(162, 198, 23, 0.75) 100%);
}
.fact-wrapper .fact > a.greendarkbg h3 {
  background: linear-gradient(to top, #007a67 40px, rgba(0, 122, 103, 0.75) 100%);
}
.fact-wrapper .fact > a.magentabg h3 {
  background: linear-gradient(to top, #e1007d 40px, rgba(225, 0, 125, 0.75) 100%);
}
.fact-wrapper .fact > a.purplebg h3 {
  background: linear-gradient(to top, #6f2584 40px, rgba(111, 37, 132, 0.75) 100%);
}
.fact-wrapper .fact > a.bluebg h3 {
  background: linear-gradient(to top, #009ee3 40px, rgba(0, 158, 227, 0.75) 100%);
}
.fact-wrapper .loadmore {
  margin-top: 2.5rem;
  margin-bottom: 0;
  padding: 0.9em 2em;
  transition: padding 150ms;
}
.fact-wrapper .loadmore:hover, .fact-wrapper .loadmore:focus {
  background: #5fb345;
}
body.desktop .fact-wrapper .loadmore:hover {
  padding: 0.9em 2.5em;
}
.fact-set-margin {
  margin-top: 6.875rem;
  margin-bottom: 2em;
}
.fact-set-margin + .fact-set-margin {
  margin-top: -2em;
}
@media screen and (max-width: 26.1875em) {
  #interestingfacts > .grid-x {
    flex-flow: row nowrap;
  }
  #interestingfacts.swiper-container-autoheight > .grid-x {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  #interestingfacts {
    position: relative;
  }
  #interestingfacts .arrow-prev, #interestingfacts .arrow-next {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 60px;
    margin-top: -45px;
    z-index: 10;
    cursor: pointer;
    font-size: 40px;
    color: #ffffff;
    font-family: "Averta W01", calibri, sans-serif;
    font-weight: 300;
    font-size: 36px;
    line-height: 50px;
    text-align: center;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  }
  #interestingfacts .arrow-prev:before, #interestingfacts .arrow-prev:after, #interestingfacts .arrow-next:before, #interestingfacts .arrow-next:after {
    display: block;
    transform: scaleY(2);
  }
  #interestingfacts .arrow-prev.swiper-button-disabled, #interestingfacts .arrow-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
  }
  #interestingfacts .arrow-prev {
    left: 0;
  }
  #interestingfacts .arrow-prev:before {
    content: "<";
  }
  #interestingfacts .arrow-next {
    right: 0;
  }
  #interestingfacts .arrow-next:before {
    content: ">";
  }
  #interestingfacts .swiper-pagination {
    position: static;
    margin: 15px 0 -5px;
  }
  #interestingfacts .swiper-pagination .swiper-pagination-bullet-active {
    background: #5fb345;
  }
}
@media print, screen and (min-width: 37.5em) {
  #interestingfacts {
    margin-bottom: 8.4375rem;
  }
  .fact-wrapper .fact.loadlater {
    display: none;
  }
  .fact-wrapper .fact.shift a {
    margin-top: 10%;
  }
  .fact-wrapper .fact.shift-up a {
    margin-top: -10%;
  }
  .fact-wrapper .fact .copyright-info {
    right: 8px;
  }
  body.desktop .fact-wrapper .fact > a h3 {
    transition: padding 200ms;
  }
  body.desktop .fact-wrapper .fact > a:hover h3 {
    padding-top: 19px;
    padding-bottom: 29px;
  }
  #interestingfacts > .grid-x {
    transform: none !important;
  }
  #interestingfacts .fact {
    width: 50% !important;
  }
}
@media print, screen and (min-width: 64em) {
  #interestingfacts > .grid-x {
    justify-content: center;
  }
  .fact-wrapper .fact > a {
    margin-bottom: 15px;
  }
  .fact-wrapper .fact > a h3 {
    padding-right: 18px;
    padding-left: 18px;
    min-height: 95px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #interestingfacts .fact {
    width: 41.6666666667% !important;
  }
}
.testimonial {
  margin-bottom: 5rem;
  color: #5fb345;
}
.testimonial .bubble {
  background: #5fb345;
  color: #ffffff;
  font-size: 1.625rem;
  line-height: 1.3;
  padding: 20px 30px 5px;
  position: relative;
}
.testimonial .bubble:before {
  content: "";
  width: 100%;
  height: 25%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  background: inherit;
  border-radius: 100%;
  -webkit-transform: translateY(-60%);
  -moz-transform: translateY(-60%);
  transform: translateY(-60%);
}
.testimonial .bubble:after {
  content: "";
  width: 50px;
  height: 22px;
  position: absolute;
  top: 100%;
  margin: -10px 0 0;
  z-index: 1;
  background: inherit;
  right: 30px;
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transform: rotate(15deg);
  -moz-transform: rotate(15deg);
  transform: rotate(15deg);
}
.testimonial .bubble span {
  position: relative;
  z-index: 3;
}
.testimonial .author img {
  display: block;
  border-radius: 100%;
  padding: 10px;
}
body.desktop.edge .testimonial .author img {
  padding: 0;
}
.testimonial .testimonial-img-wrapper {
  position: relative;
}
.testimonial .testimonial-img-wrapper__inner {
  width: 100%;
  position: relative;
  display: inline-block;
}
.testimonial .testimonial-img-wrapper .copyright-info {
  display: none;
  bottom: 30px;
  left: 50%;
  width: 100%;
  max-width: 50%;
  color: #ccc;
  text-shadow: none;
  text-align: center;
  transform: translateX(-50%);
}
.testimonial .testimonial-img-wrapper .copyright-info a, .testimonial .testimonial-img-wrapper .copyright-info a:hover {
  color: #ccc;
}
.testimonial .bubble {
  display: flex;
  flex-direction: column;
}
.testimonial .bubble:before {
  height: 80px;
  width: 650px;
  left: 50%;
  -webkit-transform: translate(-50%, -50px);
  -moz-transform: translate(-50%, -50px);
  transform: translate(-50%, -50px);
}
.testimonial .bubble:after {
  width: 100px;
  height: 35px;
  margin-top: 12px;
  right: 80px;
  background: #5fb345;
}
.testimonial .bubble span {
  align-self: center;
}
.testimonial .author {
  padding-top: 60px;
  padding-bottom: 25px;
}
@media print, screen and (min-width: 37.5em) {
  .testimonial {
    margin-bottom: 8.4375rem;
  }
  .testimonial .bubble {
    padding: 30px 30px 20px;
  }
  .testimonial .bubble:before {
    height: 40px;
    width: 100%;
    left: 0;
    -webkit-transform: translateY(-21px);
    -moz-transform: translateY(-21px);
    transform: translateY(-21px);
  }
  .testimonial .bubble:after {
    width: 100px;
    height: 35px;
    margin-top: 0;
    right: 70px;
  }
  .testimonial .author {
    padding-top: 60px;
    padding-bottom: inherit;
  }
  .testimonial .testimonial-img-wrapper .copyright-info {
    display: block;
  }
}
@media print, screen and (min-width: 64em) {
  .testimonial .bubble {
    font-size: 1.75rem;
    padding: 45px 45px 30px;
  }
}
.testimonial-simple {
  margin-bottom: 5rem;
  color: #5fb345;
}
.testimonial-simple .bubble {
  background: #5fb345;
  color: #ffffff;
  font-size: 1.625rem;
  line-height: 1.3;
  padding: 20px 30px 5px;
  position: relative;
}
.testimonial-simple .bubble.blue {
  background: #009ee3;
}
.testimonial-simple .bubble:before {
  content: "";
  width: 100%;
  height: 25%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  background: inherit;
  border-radius: 100%;
  -webkit-transform: translateY(-60%);
  -moz-transform: translateY(-60%);
  transform: translateY(-60%);
}
.testimonial-simple .bubble:after {
  content: "";
  width: 50px;
  height: 22px;
  position: absolute;
  top: 100%;
  margin: -10px 0 0;
  z-index: 1;
  background: inherit;
  right: 30px;
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transform: rotate(15deg);
  -moz-transform: rotate(15deg);
  transform: rotate(15deg);
}
.testimonial-simple .bubble span, .testimonial-simple .bubble p {
  position: relative;
  z-index: 3;
}
.testimonial-simple .bubble span a, .testimonial-simple .bubble p a {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.testimonial-simple .bubble span.quelle, .testimonial-simple .bubble p.quelle {
  font-size: 0.875rem;
}
.testimonial-simple .author img {
  display: block;
  border-radius: 100%;
  padding: 10px;
}
body.desktop.edge .testimonial-simple .author img {
  padding: 0;
}
.testimonial-simple .testimonial-img-wrapper {
  position: relative;
}
.testimonial-simple .testimonial-img-wrapper__inner {
  width: 100%;
  position: relative;
  display: inline-block;
}
.testimonial-simple .testimonial-img-wrapper .copyright-info {
  bottom: 30px;
  left: 50%;
  width: 100%;
  max-width: 50%;
  color: #ccc;
  text-shadow: none;
  text-align: center;
  transform: translateX(-50%);
}
.testimonial-simple .testimonial-img-wrapper .copyright-info a, .testimonial-simple .testimonial-img-wrapper .copyright-info a:hover {
  color: #ccc;
}
.testimonial-simple .bubble {
  display: flex;
  flex-direction: column;
  /**/
}
.testimonial-simple .bubble:before {
  height: 80px;
  width: 650px;
  left: 50%;
  -webkit-transform: translate(-50%, -50px);
  -moz-transform: translate(-50%, -50px);
  transform: translate(-50%, -50px);
}
.testimonial-simple .bubble:after {
  width: 100px;
  height: 35px;
  margin-top: 12px;
  right: 100px;
  background: #5fb345;
}
.testimonial-simple .bubble span {
  align-self: center;
}
.testimonial-simple .bubble.blue:after {
  background: #009ee3;
}
.testimonial-simple .author {
  padding-top: 70px;
  padding-bottom: 25px;
}
.testimonial-simple .author img {
  margin: 0 auto;
}
@media print, screen and (min-width: 37.5em) {
  .testimonial-simple {
    margin-bottom: 8.4375rem;
  }
  .testimonial-simple .bubble {
    padding: 30px 30px 20px;
    z-index: 10;
  }
  .testimonial-simple .bubble:before {
    height: 40px;
    width: 100%;
    left: 0;
    z-index: 10;
    -webkit-transform: translateY(-21px);
    -moz-transform: translateY(-21px);
    transform: translateY(-21px);
  }
  .testimonial-simple .bubble:after {
    width: 100px;
    height: 35px;
    margin-top: 0;
    right: 70px;
    z-index: 10;
  }
  .testimonial-simple .author {
    padding-top: inherit;
    margin-top: -20px;
  }
  .testimonial-simple .testimonial-img-wrapper__inner {
    width: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .testimonial-simple .bubble {
    font-size: 1.75rem;
    padding: 45px 45px 30px;
  }
  .testimonial-simple .author {
    padding-top: inherit;
    margin-top: -180px;
  }
  .testimonial-simple .testimonial-img-wrapper__inner {
    margin-left: 30px;
  }
}
.acc-wrapper .teaser-wrapper .teaser .imgwrapper img {
  background-color: #d8d8d8;
}
.slideshow {
  max-width: 1920px;
  margin: 0 auto 5rem;
}
.slideshow .inner {
  position: relative;
  padding: 0;
  height: 100vh;
  height: calc(100vh - 39px);
  min-height: 380px;
  max-height: 700px;
}
.slideshow .swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slideshow .swiper-slide .pic {
  width: 100%;
  height: 100%;
  position: relative;
  background: #f3f3f3;
  overflow: hidden;
}
.slideshow .swiper-slide .pic img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.slideshow .swiper-slide .info {
  position: relative;
  color: #ffffff;
  background: #5fb345;
  padding: 32px 40px 24px;
  min-height: 40px;
  font-family: "Averta W01", calibri, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  text-transform: uppercase;
  display: flex;
}
.slideshow .swiper-slide .info:before {
  content: "";
  width: 100%;
  height: 25%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  background: inherit;
  border-radius: 100%;
  -webkit-transform: translateY(-60%);
  -moz-transform: translateY(-60%);
  transform: translateY(-60%);
}
.slideshow .swiper-slide .info:after {
  content: "";
  width: 50px;
  height: 22px;
  position: absolute;
  top: 100%;
  margin: -10px 0 0;
  z-index: 1;
  background: inherit;
  right: 30px;
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transform: rotate(15deg);
  -moz-transform: rotate(15deg);
  transform: rotate(15deg);
}
.slideshow .swiper-slide .info:before {
  height: 36px;
  -webkit-transform: translateY(-19px);
  -moz-transform: translateY(-19px);
  transform: translateY(-19px);
  background: #5fb345;
}
.slideshow .swiper-slide .info:after {
  width: 100px;
  height: 35px;
  margin-top: -2px;
  right: 60px;
  background: #5fb345;
}
.slideshow .swiper-slide .info span {
  position: relative;
  z-index: 3;
  align-self: center;
}
.slideshow.slideshow-top-thumbs .inner {
  padding-top: 100%;
}
.slideshow.slideshow-top-thumbs .inner .galleryimg-top {
  height: calc(100% - 75px);
  padding-bottom: 0.625rem;
}
.slideshow.slideshow-top-thumbs .inner .galleryimg-thumbs {
  height: 4.6875rem;
  box-sizing: border-box;
  max-height: 4.6875rem;
  top: unset;
  bottom: 0;
}
.slideshow.slideshow-top-thumbs .inner .galleryimg-thumbs .swiper-slide {
  width: 4.6875rem;
  /*opacity: .5;
					&.swiper-slide-active {
					opacity: 1;
				}*/
}
.slideshow .arrow-prev, .slideshow .arrow-next {
  position: absolute;
  top: 50%;
  z-index: 5;
  cursor: pointer;
}
.slideshow .arrow-prev.swiper-button-disabled, .slideshow .arrow-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
}
@media screen and (max-width: 26.1875em) {
  .slideshow .inner {
    padding: 0;
    height: 100vh;
    height: calc(100vh - 39px);
    min-height: 380px;
    max-height: 700px;
  }
  .slideshow .swiper-slide {
    display: flex;
    flex-direction: column;
  }
  .slideshow .swiper-slide .info {
    transform: none !important;
  }
  .slideshow .swiper-slide .pic {
    height: auto;
    display: flex;
    flex-grow: 1;
  }
  .slideshow.slideshow-top-thumbs {
    max-height: 44.375rem;
  }
}
@media screen and (max-width: 63.9375em) {
  .slideshow .arrow-prev, .slideshow .arrow-next {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 60px;
    margin-top: -20px;
    z-index: 10;
    cursor: pointer;
    font-size: 40px;
    color: #ffffff;
    font-family: "Averta W01", calibri, sans-serif;
    font-weight: 300;
    font-size: 36px;
    line-height: 50px;
    text-align: center;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  }
  .slideshow .arrow-prev:before, .slideshow .arrow-prev:after, .slideshow .arrow-next:before, .slideshow .arrow-next:after {
    display: block;
    transform: scaleY(2);
  }
  .slideshow .arrow-prev.swiper-button-disabled, .slideshow .arrow-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  .slideshow .arrow-prev {
    left: 0;
  }
  .slideshow .arrow-prev:before {
    content: "<";
  }
  .slideshow .arrow-next {
    right: 0;
  }
  .slideshow .arrow-next:before {
    content: ">";
  }
}
@media print, screen and (min-width: 37.5em) {
  .slideshow {
    margin-bottom: 8.4375rem;
    padding-right: 0.46875rem;
    padding-left: 0.46875rem;
  }
  .slideshow .inner {
    height: 100vh;
    height: calc(100vh - 100px);
    max-height: 720px;
  }
  .slideshow .swiper-slide .info {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    min-width: 220px;
    max-width: 450px;
  }
  body.desktop.edge .slideshow .swiper-slide .info {
    display: block;
  }
  .slideshow.slideshow-top-thumbs .inner {
    padding-top: 85%;
  }
}
@media print, screen and (min-width: 37.5em) and print, screen and (min-width: 64em) {
  .slideshow {
    padding-right: 0.46875rem;
    padding-left: 0.46875rem;
  }
}
@media print, screen and (min-width: 64em) {
  .slideshow {
    padding-right: 50px;
    padding-left: 50px;
  }
  .slideshow .inner {
    max-height: 1200px;
  }
  .slideshow .arrow-prev, .slideshow .arrow-next {
    left: 15px;
    width: 60px;
    height: 60px;
    margin: -30px 0 0;
    background: #ffffff;
    border-radius: 100%;
  }
  .slideshow .arrow-prev:before, .slideshow .arrow-prev:after, .slideshow .arrow-next:before, .slideshow .arrow-next:after {
    content: "";
    width: 35%;
    height: 3px;
    background: #5fb345;
    position: absolute;
    top: 50%;
    left: 36%;
    transition: left 100ms;
  }
  .slideshow .arrow-prev:before, .slideshow .arrow-next:before {
    margin-top: -1px;
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .slideshow .arrow-prev:after, .slideshow .arrow-next:after {
    margin-top: -2px;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  body.desktop .slideshow .arrow-prev:hover:before, body.desktop .slideshow .arrow-prev:hover:after, body.desktop .slideshow .arrow-next:hover:before, body.desktop .slideshow .arrow-next:hover:after {
    left: 32%;
  }
  .slideshow .arrow-next {
    right: 15px;
    left: auto;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
.hero-swiper-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  opacity: 1;
}
.hero-swiper-slideshow.is--hidden {
  opacity: 0.01;
}
.hero-swiper-slideshow .slideshow-text-wrapper {
  opacity: 0.01;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-swiper-slideshow .swiper {
  height: 100%;
}
.hero-swiper-slideshow .swiper .swiper-slide {
  position: relative;
}
.hero-swiper-slideshow .heroshot-description {
  box-sizing: border-box;
}
.hero-swiper-slideshow .slideshow-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-swiper-slideshow .slideshow-image-wrapper:after {
  content: "";
  width: 100%;
  height: 65%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: -moz-linear-gradient(top, rgba(209, 209, 209, 0) 0%, rgba(104, 103, 103, 0.6) 90%);
  background: -webkit-linear-gradient(top, rgba(209, 209, 209, 0) 0%, rgba(104, 103, 103, 0.6) 90%);
  background: linear-gradient(to bottom, rgba(209, 209, 209, 0) 0%, rgba(104, 103, 103, 0.6) 90%);
  mix-blend-mode: darken;
}
.hero-swiper-slideshow .swiper-slide .slideshow-image-wrapper {
  transition: transform 0s linear;
  transition-delay: 6s;
  transform-origin: center;
  transform: scale(1);
}
.hero-swiper-slideshow .swiper-slide .slideshow-image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-swiper-slideshow .swiper-slide .heroshot-links {
  display: none;
}
.hero-swiper-slideshow .swiper-slide.swiper-slide-active {
  z-index: 1;
}
.hero-swiper-slideshow .swiper-slide.swiper-slide-active .heroshot-links {
  display: block;
}
.hero-swiper-slideshow .swiper-slide-duplicate-active .slideshow-text-wrapper, .hero-swiper-slideshow .swiper-slide-active .slideshow-text-wrapper {
  opacity: 1;
}
.hero-swiper-slideshow .swiper-slide-duplicate-active .slideshow-image-wrapper, .hero-swiper-slideshow .swiper-slide-active .slideshow-image-wrapper {
  transform: scale(1.03);
  transition: transform 6s ease-out;
}
.hero-swiper-slideshow .hero-swiper-slideshow > div {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  cursor: default;
}
.hero-swiper-slideshow .hero-swiper-slideshow > div a {
  pointer-events: inherit;
}
.hero-swiper-slideshow .hero-swiper-slideshow .swiper-button-prev, .hero-swiper-slideshow .hero-swiper-slideshow .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-swiper-slideshow .swiper-button-prev.swiper-button-disabled, .hero-swiper-slideshow .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.hero-swiper-slideshow .swiper-button-prev, .hero-swiper-slideshow .swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
  left: 40px;
  right: auto;
}
.hero-swiper-slideshow .swiper-button-next, .hero-swiper-slideshow .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
  right: 40px;
  left: auto;
}
@media only screen and (max-width: 600px) {
  .hero-swiper-slideshow .swiper-button-prev, .hero-swiper-slideshow .swiper-container-rtl .swiper-button-next {
    left: 10px;
    transform: scale(0.8);
    transform-origin: left center;
  }
  .hero-swiper-slideshow .swiper-button-next, .hero-swiper-slideshow .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    transform: scale(0.8);
    transform-origin: right center;
  }
}
.panorama-slider {
  max-width: 1920px;
  margin: 0 auto 4.375rem;
}
.panorama-slider .image-inner-wrapper {
  position: relative;
  padding-top: 77%;
  margin-right: 0.3125rem;
  margin-left: 0.3125rem;
}
@media print, screen and (min-width: 64em) {
  .panorama-slider .image-inner-wrapper {
    margin-right: 0.46875rem;
    margin-left: 0.46875rem;
  }
}
.panorama-slider .copyright-info {
  top: 0;
  bottom: auto;
}
.panorama-slider .swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.panorama-slider .swiper-slide {
  display: flex;
  flex-direction: column;
}
.panorama-slider .swiper-slide .pic {
  width: 100%;
  height: 100%;
  position: relative;
  background: #f3f3f3;
  overflow: hidden;
}
.panorama-slider .swiper-slide .pic img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.panorama-slider .swiper-slide .teaser-inner-txt, .panorama-slider .swiper-slide .teaser-inner-txt:hover {
  margin: 0;
  font-size: 1rem;
  padding: 18px 12px;
  color: #ffffff;
  text-transform: uppercase;
  background: #007a67;
}
.panorama-slider .swiper-slide .teaser-inner-txt.economy, .panorama-slider .swiper-slide .teaser-inner-txt:hover.economy {
  background: #009ee3;
}
.panorama-slider .swiper-slide .teaser-inner-txt.neutral, .panorama-slider .swiper-slide .teaser-inner-txt:hover.neutral {
  background: #5fb345;
}
.panorama-slider .arrow-prev, .panorama-slider .arrow-next {
  position: absolute;
  top: 50%;
  z-index: 5;
  cursor: pointer;
}
.panorama-slider .arrow-prev.swiper-button-disabled, .panorama-slider .arrow-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
}
@media screen and (max-width: 63.9375em) {
  .panorama-slider .arrow-prev, .panorama-slider .arrow-next {
    display: none;
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 60px;
    margin-top: -20px;
    z-index: 10;
    cursor: pointer;
    font-size: 40px;
    color: #ffffff;
    font-family: "Averta W01", calibri, sans-serif;
    font-weight: 300;
    font-size: 36px;
    line-height: 50px;
    text-align: center;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  }
  .panorama-slider .arrow-prev:before, .panorama-slider .arrow-prev:after, .panorama-slider .arrow-next:before, .panorama-slider .arrow-next:after {
    display: block;
    transform: scaleY(2);
  }
  .panorama-slider .arrow-prev.swiper-button-disabled, .panorama-slider .arrow-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  .panorama-slider .arrow-prev {
    left: 0;
  }
  .panorama-slider .arrow-prev:before {
    content: "<";
  }
  .panorama-slider .arrow-next {
    right: 0;
  }
  .panorama-slider .arrow-next:before {
    content: ">";
  }
}
@media print, screen and (min-width: 37.5em) {
  .panorama-slider .swiper-container {
    height: 100%;
  }
  .panorama-slider .swiper-slide {
    display: block;
  }
  .panorama-slider .swiper-slide .teaser-inner-txt, .panorama-slider .swiper-slide .teaser-inner-txt:hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, #007a67 40px, rgba(0, 122, 103, 0.75) 100%);
  }
  .panorama-slider .swiper-slide .teaser-inner-txt.economy, .panorama-slider .swiper-slide .teaser-inner-txt:hover.economy {
    background: linear-gradient(to top, #009ee3 40px, rgba(0, 158, 227, 0.75) 100%);
  }
  .panorama-slider .swiper-slide .teaser-inner-txt.neutral, .panorama-slider .swiper-slide .teaser-inner-txt:hover.neutral {
    background: linear-gradient(to top, #5fb345 40px, rgba(95, 179, 69, 0.75) 100%);
  }
  .panorama-slider .image-inner-wrapper {
    padding-top: 55%;
  }
}
@media print, screen and (min-width: 64em) {
  .panorama-slider .image-inner-wrapper {
    margin-right: 50px;
    margin-left: 50px;
    padding-top: 38%;
  }
  .panorama-slider .swiper-slide .teaser-inner-txt, .panorama-slider .swiper-slide .teaser-inner-txt:hover {
    font-size: 1.125rem;
    padding: 24px 12px;
  }
  .panorama-slider .arrow-prev, .panorama-slider .arrow-next {
    left: 15px;
    width: 60px;
    height: 60px;
    margin: -30px 0 0;
    background: #ffffff;
    border-radius: 100%;
  }
  .panorama-slider .arrow-prev:before, .panorama-slider .arrow-prev:after, .panorama-slider .arrow-next:before, .panorama-slider .arrow-next:after {
    content: "";
    width: 35%;
    height: 3px;
    background: #5fb345;
    position: absolute;
    top: 50%;
    left: 36%;
    transition: left 100ms;
  }
  .panorama-slider .arrow-prev:before, .panorama-slider .arrow-next:before {
    margin-top: -1px;
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .panorama-slider .arrow-prev:after, .panorama-slider .arrow-next:after {
    margin-top: -2px;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  body.desktop .panorama-slider .arrow-prev:hover:before, body.desktop .panorama-slider .arrow-prev:hover:after, body.desktop .panorama-slider .arrow-next:hover:before, body.desktop .panorama-slider .arrow-next:hover:after {
    left: 32%;
  }
  .panorama-slider .arrow-next {
    right: 15px;
    left: auto;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
.gm-style-iw {
  max-width: 250px !important;
}
#karte, #karte-test, #karte-old, #karte-homepage {
  max-width: 1920px;
  margin: 0 auto 5rem;
}
#karte .qrcode, #karte-test .qrcode, #karte-old .qrcode, #karte-homepage .qrcode {
  margin: auto;
  display: block;
}
#karte .inner, #karte-test .inner, #karte-old .inner, #karte-homepage .inner {
  padding: 0;
  margin-top: 1.8em;
  height: 100vh;
  height: calc(100vh - 39px);
  min-height: 380px;
  max-height: 720px;
  position: relative;
}
#karte .filter-wrapper, #karte-test .filter-wrapper, #karte-old .filter-wrapper, #karte-homepage .filter-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 20rem;
  text-align: right;
  pointer-events: none;
  z-index: 1;
}
#karte .filter-wrapper .filter-head, #karte-test .filter-wrapper .filter-head, #karte-old .filter-wrapper .filter-head, #karte-homepage .filter-wrapper .filter-head {
  display: inline-block;
  position: relative;
  background-color: #5fb345;
  padding-left: 1.25rem;
  padding-right: 3.4375rem;
  pointer-events: all;
  cursor: pointer;
  -webkit-box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.3);
  z-index: -1;
}
#karte .filter-wrapper .filter-head.collapsed:after, #karte-test .filter-wrapper .filter-head.collapsed:after, #karte-old .filter-wrapper .filter-head.collapsed:after, #karte-homepage .filter-wrapper .filter-head.collapsed:after {
  transform: rotate(-90deg);
}
#karte .filter-wrapper .filter-head:after, #karte-test .filter-wrapper .filter-head:after, #karte-old .filter-wrapper .filter-head:after, #karte-homepage .filter-wrapper .filter-head:after {
  content: "";
  display: block;
  position: absolute;
  background-image: url("//static.oldenburger-muensterland.de/images/icon_arrow.svg");
  top: 50%;
  right: 1.25rem;
  width: 21px;
  height: 13px;
  margin-top: -6.5px;
}
#karte .filter-wrapper .filter-head h5, #karte-test .filter-wrapper .filter-head h5, #karte-old .filter-wrapper .filter-head h5, #karte-homepage .filter-wrapper .filter-head h5 {
  line-height: 3.125rem;
  text-transform: uppercase;
  letter-spacing: 0.03125rem;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
#karte .filter-wrapper .filter-body, #karte-test .filter-wrapper .filter-body, #karte-old .filter-wrapper .filter-body, #karte-homepage .filter-wrapper .filter-body {
  text-align: left;
  pointer-events: all;
  display: none;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.3);
  z-index: 1;
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
}
#karte .filter-wrapper .filter-body .accordion, #karte-test .filter-wrapper .filter-body .accordion, #karte-old .filter-wrapper .filter-body .accordion, #karte-homepage .filter-wrapper .filter-body .accordion {
  border-bottom: none;
  width: 22.8125rem;
  padding: 1.875rem 1.5625rem 2.5rem 1.25rem;
}
#karte .filter-wrapper .filter-body .accordion .accordion-item.is-active .accordion-title:before, #karte-test .filter-wrapper .filter-body .accordion .accordion-item.is-active .accordion-title:before, #karte-old .filter-wrapper .filter-body .accordion .accordion-item.is-active .accordion-title:before, #karte-homepage .filter-wrapper .filter-body .accordion .accordion-item.is-active .accordion-title:before {
  right: 5px;
}
#karte .filter-wrapper .filter-body .accordion .accordion-item.is-active .accordion-title:after, #karte-test .filter-wrapper .filter-body .accordion .accordion-item.is-active .accordion-title:after, #karte-old .filter-wrapper .filter-body .accordion .accordion-item.is-active .accordion-title:after, #karte-homepage .filter-wrapper .filter-body .accordion .accordion-item.is-active .accordion-title:after {
  right: 5px;
}
#karte .filter-wrapper .filter-body .accordion .accordion-item .accordion-title, #karte-test .filter-wrapper .filter-body .accordion .accordion-item .accordion-title, #karte-old .filter-wrapper .filter-body .accordion .accordion-item .accordion-title, #karte-homepage .filter-wrapper .filter-body .accordion .accordion-item .accordion-title {
  border-bottom: 2px solid #5fb345;
  border-top: none;
}
#karte .filter-wrapper .filter-body .accordion .accordion-item .accordion-title:before, #karte-test .filter-wrapper .filter-body .accordion .accordion-item .accordion-title:before, #karte-old .filter-wrapper .filter-body .accordion .accordion-item .accordion-title:before, #karte-homepage .filter-wrapper .filter-body .accordion .accordion-item .accordion-title:before {
  right: 1px;
}
#karte .filter-wrapper .filter-body .accordion .accordion-item .accordion-title:after, #karte-test .filter-wrapper .filter-body .accordion .accordion-item .accordion-title:after, #karte-old .filter-wrapper .filter-body .accordion .accordion-item .accordion-title:after, #karte-homepage .filter-wrapper .filter-body .accordion .accordion-item .accordion-title:after {
  right: 4px;
}
#karte .filter-wrapper .filter-body .accordion .accordion-item .accordion-content, #karte-test .filter-wrapper .filter-body .accordion .accordion-item .accordion-content, #karte-old .filter-wrapper .filter-body .accordion .accordion-item .accordion-content, #karte-homepage .filter-wrapper .filter-body .accordion .accordion-item .accordion-content {
  padding: 0;
  border-bottom: 2px solid #5fb345;
  font-family: "Averta W01", calibri, sans-serif;
  font-weight: 600;
}
#karte .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element, #karte-test .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element, #karte-old .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element, #karte-homepage .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element {
  position: relative;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  padding-left: 2.5rem;
  padding-right: 1.875rem;
  border-top: 1px solid #5fb345;
  cursor: pointer;
  transition: padding-left 200ms;
}
#karte .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element:first-child, #karte-test .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element:first-child, #karte-old .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element:first-child, #karte-homepage .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element:first-child {
  border-top: none;
}
#karte .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element:hover, #karte-test .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element:hover, #karte-old .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element:hover, #karte-homepage .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element:hover {
  padding-left: 2.8125rem;
}
#karte .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element .image, #karte-test .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element .image, #karte-old .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element .image, #karte-homepage .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element .image {
  position: absolute;
  display: block;
  top: 0.625rem;
  left: 0;
  width: 1.875rem;
  height: 1.875rem;
}
#karte .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element .text, #karte-test .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element .text, #karte-old .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element .text, #karte-homepage .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element .text {
  line-height: 1.25rem;
  display: block;
  font-size: 0.8125rem;
}
#karte .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element .checkbox, #karte-test .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element .checkbox, #karte-old .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element .checkbox, #karte-homepage .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element .checkbox {
  position: absolute;
  display: block;
  right: 0;
  top: 0.9375rem;
  height: 1.25rem;
  width: 1.25rem;
  background-color: #5fb345;
  margin: 0;
}
#karte .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element .checkbox:before, #karte-test .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element .checkbox:before, #karte-old .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element .checkbox:before, #karte-homepage .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element .checkbox:before {
  content: "";
  position: absolute;
  right: 0.0625rem;
  top: 0;
  display: none;
  background-image: url("//static.oldenburger-muensterland.de/images/icon_checked.svg");
  width: 1.125rem;
  height: 1.125rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
#karte .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element .checkbox.checked:before, #karte-test .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element .checkbox.checked:before, #karte-old .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element .checkbox.checked:before, #karte-homepage .filter-wrapper .filter-body .accordion .accordion-item .accordion-content .element .checkbox.checked:before {
  display: block;
}
#karte .filter-wrapper .filter-body .element, #karte-test .filter-wrapper .filter-body .element, #karte-old .filter-wrapper .filter-body .element, #karte-homepage .filter-wrapper .filter-body .element {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
#karte .filter-wrapper .filter-body .element img, #karte-test .filter-wrapper .filter-body .element img, #karte-old .filter-wrapper .filter-body .element img, #karte-homepage .filter-wrapper .filter-body .element img {
  width: auto;
  height: 2.0625rem;
  padding-right: 0.625rem;
}
#karte .filter-wrapper .filter-body .element .text, #karte-test .filter-wrapper .filter-body .element .text, #karte-old .filter-wrapper .filter-body .element .text, #karte-homepage .filter-wrapper .filter-body .element .text {
  line-height: 2.0625rem;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.03125rem;
  text-transform: uppercase;
  color: #5fb345;
}
#karte .filter-wrapper .filter-body .element .checkbox, #karte-test .filter-wrapper .filter-body .element .checkbox, #karte-old .filter-wrapper .filter-body .element .checkbox, #karte-homepage .filter-wrapper .filter-body .element .checkbox {
  position: relative;
  float: right;
  width: 1.6875rem;
  height: 1.6875rem;
  margin-top: 0.1875rem;
  margin-bottom: 0.1875rem;
  margin-left: 1.25rem;
  display: inline-block;
  background-color: #5fb345;
  vertical-align: bottom;
  cursor: pointer;
}
#karte .filter-wrapper .filter-body .element .checkbox:before, #karte-test .filter-wrapper .filter-body .element .checkbox:before, #karte-old .filter-wrapper .filter-body .element .checkbox:before, #karte-homepage .filter-wrapper .filter-body .element .checkbox:before {
  content: "";
  position: absolute;
  display: none;
  background-image: url("//static.oldenburger-muensterland.de/images/icon_checked.svg");
  width: 1.6875rem;
  height: 1.6875rem;
  background-repeat: no-repeat;
  background-position: center center;
}
#karte .filter-wrapper .filter-body .element .checkbox.checked:before, #karte-test .filter-wrapper .filter-body .element .checkbox.checked:before, #karte-old .filter-wrapper .filter-body .element .checkbox.checked:before, #karte-homepage .filter-wrapper .filter-body .element .checkbox.checked:before {
  display: block;
}
#karte .gmaps-overlay, #karte-test .gmaps-overlay, #karte-old .gmaps-overlay, #karte-homepage .gmaps-overlay {
  background-color: #f3f3f3;
  position: relative;
  cursor: pointer;
  height: 100%;
}
#karte .gmaps-overlay .gmaps-icon, #karte .gmaps-overlay .gmaps-disclaimer, #karte-test .gmaps-overlay .gmaps-icon, #karte-test .gmaps-overlay .gmaps-disclaimer, #karte-old .gmaps-overlay .gmaps-icon, #karte-old .gmaps-overlay .gmaps-disclaimer, #karte-homepage .gmaps-overlay .gmaps-icon, #karte-homepage .gmaps-overlay .gmaps-disclaimer {
  position: absolute;
}
#karte .gmaps-overlay .gmaps-icon, #karte-test .gmaps-overlay .gmaps-icon, #karte-old .gmaps-overlay .gmaps-icon, #karte-homepage .gmaps-overlay .gmaps-icon {
  left: calc(50% - 24px);
  top: 1.6875rem;
  width: 3rem;
  height: 3rem;
  color: #222;
  stroke: currentColor;
  fill: currentColor;
  stroke-width: 0;
  display: block;
  transition-duration: 200ms;
  transition-property: color, transform;
  transition-timing-function: ease;
}
@media print, screen and (min-width: 37.5em) {
  #karte .gmaps-overlay .gmaps-icon, #karte-test .gmaps-overlay .gmaps-icon, #karte-old .gmaps-overlay .gmaps-icon, #karte-homepage .gmaps-overlay .gmaps-icon {
    top: calc(50% - 24px);
  }
}
#karte .gmaps-overlay .gmaps-disclaimer, #karte-test .gmaps-overlay .gmaps-disclaimer, #karte-old .gmaps-overlay .gmaps-disclaimer, #karte-homepage .gmaps-overlay .gmaps-disclaimer {
  bottom: 0;
  padding: 0 0.9375rem 0.9375rem;
}
#karte .gmaps-overlay:hover .gmaps-icon, #karte-test .gmaps-overlay:hover .gmaps-icon, #karte-old .gmaps-overlay:hover .gmaps-icon, #karte-homepage .gmaps-overlay:hover .gmaps-icon {
  transform: scale(1.5);
  color: #5fb345;
}
#karte #gmaps-wrapper, #karte-test #gmaps-wrapper, #karte-old #gmaps-wrapper, #karte-homepage #gmaps-wrapper {
  background: #f3f3f3;
  width: 100%;
  height: 100%;
}
#karte #gmaps-wrapper:hide, #karte-test #gmaps-wrapper:hide, #karte-old #gmaps-wrapper:hide, #karte-homepage #gmaps-wrapper:hide {
  height: 0;
}
#karte .gm-style, #karte-test .gm-style, #karte-old .gm-style, #karte-homepage .gm-style {
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}
#karte .gm-style .gm-style-iw, #karte-test .gm-style .gm-style-iw, #karte-old .gm-style .gm-style-iw, #karte-homepage .gm-style .gm-style-iw {
  font-size: 14px;
}
#karte .gm-style .gm-style-iw a.gmaps-readmore, #karte-test .gm-style .gm-style-iw a.gmaps-readmore, #karte-old .gm-style .gm-style-iw a.gmaps-readmore, #karte-homepage .gm-style .gm-style-iw a.gmaps-readmore {
  display: inline-block;
  margin-top: 10px;
}
#karte .gm-style .gm-style-iw span.gmaps-readmore, #karte-test .gm-style .gm-style-iw span.gmaps-readmore, #karte-old .gm-style .gm-style-iw span.gmaps-readmore, #karte-homepage .gm-style .gm-style-iw span.gmaps-readmore {
  color: #5fb345;
  margin-top: 10px;
  display: inline-block;
}
@media print, screen and (min-width: 37.5em) {
  #karte, #karte-test, #karte-old, #karte-homepage {
    margin-bottom: 8.4375rem;
    padding-right: 0.46875rem;
    padding-left: 0.46875rem;
  }
  #karte .inner, #karte-test .inner, #karte-old .inner, #karte-homepage .inner {
    height: calc(100vh - 100px);
  }
}
@media print, screen and (min-width: 37.5em) and print, screen and (min-width: 64em) {
  #karte, #karte-test, #karte-old, #karte-homepage {
    padding-right: 0.46875rem;
    padding-left: 0.46875rem;
  }
}
@media print, screen and (min-width: 64em) {
  #karte, #karte-test, #karte-old, #karte-homepage {
    padding-right: 50px;
    padding-left: 50px;
  }
  #karte .inner, #karte-test .inner, #karte-old .inner, #karte-homepage .inner {
    max-height: 1200px;
  }
}
.widget-regions {
  margin-bottom: 4.375rem;
}
.widget-regions .regions-map-wrapper {
  margin-top: 3em;
}
.widget-regions .regions-map-wrapper svg {
  max-width: 100%;
  height: auto;
  fill: #ccc;
}
.widget-regions .regions-map-wrapper svg use {
  cursor: pointer;
}
.widget-regions .regions-map-wrapper svg use.om-karte-barssel {
  fill: #5880c1;
}
.widget-regions .regions-map-wrapper svg use.om-karte-ett {
  fill: #2eafde;
}
.widget-regions .regions-map-wrapper svg use.om-karte-hasetal {
  fill: #0088a4;
}
.widget-regions .regions-map-wrapper svg use.om-karte-vechta {
  fill: #c1347d;
}
.widget-regions .regions-map-wrapper svg use.om-karte-dammerberge {
  fill: #eb5e64;
}
@media (-ms-high-contrast: none) {
  .widget-regions .regions-map-wrapper svg {
    height: 410px;
  }
}
.widget-regions .regions-bubble-wrapper {
  display: none;
}
.widget-regions.regions-simple .regions-description {
  margin-top: 2.5rem;
}
@media print, screen and (min-width: 37.5em) {
  .widget-regions {
    margin-bottom: 6.875rem;
  }
  .widget-regions .regions-bubble-wrapper {
    display: block;
    margin-top: 3em;
  }
  .widget-regions .regions-bubble {
    display: none;
    background: #5fb345;
    color: #ffffff;
    padding: 30px 30px 25px;
    margin-left: 1.5em;
    position: relative;
  }
  .widget-regions .regions-bubble h3 {
    color: inherit;
  }
  .widget-regions .regions-bubble:before {
    content: "";
    width: 100%;
    height: 25%;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    background: inherit;
    border-radius: 100%;
    -webkit-transform: translateY(-60%);
    -moz-transform: translateY(-60%);
    transform: translateY(-60%);
  }
  .widget-regions .regions-bubble:after {
    content: "";
    width: 50px;
    height: 22px;
    position: absolute;
    top: 100%;
    margin: -10px 0 0;
    z-index: 1;
    background: inherit;
    left: 30px;
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  .widget-regions .regions-bubble:before {
    width: 99.8%;
    left: 0.1%;
    height: 40px;
    -webkit-transform: translateY(-21px);
    -moz-transform: translateY(-21px);
    transform: translateY(-21px);
  }
  .widget-regions .regions-bubble:after {
    width: 100px;
    height: 35px;
    margin-top: 0;
    left: 70px;
  }
  .widget-regions .regions-wrapper[data-current="om-karte-barssel"] .regions-map-wrapper svg #om-karte-barssel {
    fill: #5fb345;
  }
  .widget-regions .regions-wrapper[data-current="om-karte-barssel"] .regions-bubble.om-karte-barssel {
    display: block;
  }
  .widget-regions .regions-wrapper[data-current="om-karte-ett"] .regions-map-wrapper svg #om-karte-ett {
    fill: #5fb345;
  }
  .widget-regions .regions-wrapper[data-current="om-karte-ett"] .regions-bubble.om-karte-ett {
    display: block;
  }
  .widget-regions .regions-wrapper[data-current="om-karte-hasetal"] .regions-map-wrapper svg #om-karte-hasetal {
    fill: #5fb345;
  }
  .widget-regions .regions-wrapper[data-current="om-karte-hasetal"] .regions-bubble.om-karte-hasetal {
    display: block;
  }
  .widget-regions .regions-wrapper[data-current="om-karte-vechta"] .regions-map-wrapper svg #om-karte-vechta {
    fill: #5fb345;
  }
  .widget-regions .regions-wrapper[data-current="om-karte-vechta"] .regions-bubble.om-karte-vechta {
    display: block;
  }
  .widget-regions .regions-wrapper[data-current="om-karte-dammerberge"] .regions-map-wrapper svg #om-karte-dammerberge {
    fill: #5fb345;
  }
  .widget-regions .regions-wrapper[data-current="om-karte-dammerberge"] .regions-bubble.om-karte-dammerberge {
    display: block;
  }
  .widget-regions.regions-simple .regions-bubble {
    display: block;
  }
  .widget-regions.regions-simple .regions-bubble a {
    color: #ffffff;
    text-decoration: underline;
  }
}
@media print, screen and (min-width: 64em) {
  .widget-regions .regions-bubble {
    padding: 40px 45px 30px;
    margin-left: 3em;
  }
}
.widget-app-teaser {
  margin-bottom: 4.375rem;
}
.widget-app-teaser .app-img-wrapper {
  margin-top: 3em;
}
.widget-app-teaser .app-img-wrapper img, .widget-app-teaser .app-img-wrapper svg {
  max-width: 100%;
  height: auto;
}
@media (-ms-high-contrast: none) {
  .widget-app-teaser .app-img-wrapper img, .widget-app-teaser .app-img-wrapper svg {
    height: 410px;
  }
}
.widget-app-teaser .app-teaser-bubble-wrapper {
  display: none;
}
.widget-app-teaser .app-teaser-description {
  margin-top: 2.5rem;
}
.widget-app-links {
  margin-bottom: 2.1875rem;
}
.widget-app-teaser .app-links h3, .widget-app-links .app-links h3 {
  margin-bottom: 1.0625rem;
}
.widget-app-teaser .app-links a.apple-link + a.google-link, .widget-app-links .app-links a.apple-link + a.google-link {
  padding-left: 1.5625rem;
}
@media print, screen and (min-width: 37.5em) {
  .widget-app-teaser {
    margin-bottom: 6.875rem;
  }
  .widget-app-teaser .app-teaser-bubble-wrapper {
    display: block;
    margin-top: 3em;
  }
  .widget-app-teaser .app-teaser-bubble-wrapper .app-links {
    margin-top: 4rem;
    margin-left: 1.5em;
  }
  .widget-app-teaser .app-teaser-bubble {
    display: block;
    background: #5fb345;
    color: #ffffff;
    padding: 30px 30px 25px;
    margin-left: 1.5em;
    position: relative;
  }
  .widget-app-teaser .app-teaser-bubble h3 {
    color: inherit;
  }
  .widget-app-teaser .app-teaser-bubble:before {
    content: "";
    width: 100%;
    height: 25%;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    background: inherit;
    border-radius: 100%;
    -webkit-transform: translateY(-60%);
    -moz-transform: translateY(-60%);
    transform: translateY(-60%);
  }
  .widget-app-teaser .app-teaser-bubble:after {
    content: "";
    width: 50px;
    height: 22px;
    position: absolute;
    top: 100%;
    margin: -10px 0 0;
    z-index: 1;
    background: inherit;
    left: 30px;
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  .widget-app-teaser .app-teaser-bubble:before {
    width: 99.8%;
    left: 0.1%;
    height: 40px;
    -webkit-transform: translateY(-21px);
    -moz-transform: translateY(-21px);
    transform: translateY(-21px);
  }
  .widget-app-teaser .app-teaser-bubble:after {
    width: 100px;
    height: 35px;
    margin-top: 0;
    left: 70px;
  }
  .widget-app-links {
    margin-bottom: 3.4375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .widget-app-teaser .app-teaser-bubble {
    padding: 40px 45px 30px;
    margin-left: 3em;
  }
  .widget-app-teaser .app-teaser-bubble-wrapper .app-links {
    margin-left: 3em;
  }
}
.newsletter-message {
  margin-bottom: 1.25rem;
}
.newsletter-message .success {
  background-color: #5fb345;
  display: block;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
}
.newsletter-message .error {
  background-color: #cc4b37;
  display: block;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
}
.newsletter {
  font-size: 1rem;
  margin-bottom: 5rem;
  color: #5fb345;
}
.newsletter h2.cell {
  margin-bottom: 2.5rem;
}
.newsletter div.grid-x {
  margin-bottom: 2.1875rem;
}
.newsletter input {
  margin-top: 0;
  margin-bottom: 0;
}
.newsletter input[type="submit"] {
  padding: 0.9em 2em;
  max-width: 100%;
}
.newsletter .checked {
  padding-left: 26px;
  margin-top: 3px;
  margin-bottom: 12px;
  position: relative;
  line-height: 1.3;
}
.newsletter .checked:before {
  content: "";
  width: 3px;
  height: 8px;
  background: #5fb345;
  position: absolute;
  left: 7px;
  top: 9px;
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: rotate(-40deg);
  -moz-transform: rotate(-40deg);
  transform: rotate(-40deg);
  border-radius: 3px;
}
.newsletter .checked:after {
  content: "";
  width: 3px;
  height: 16px;
  background: #5fb345;
  position: absolute;
  left: 5px;
  top: 1px;
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  transform: rotate(30deg);
  border-radius: 3px;
}
.newsletter .hideField {
  display: none;
}
@media screen and (max-width: 26.1875em) {
  #newsletter div.grid-x .cell.medium-6 {
    padding-left: 25px;
  }
  #newsletter form .cell.medium-4 {
    padding-right: 25px;
    padding-left: 25px;
  }
  #newsletter form label {
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 37.5em) {
  #newsletter {
    margin-bottom: 6.875rem;
  }
}
.detail-img {
  position: relative;
  margin-top: 1.5em;
  margin-bottom: 3em;
}
.detail-img img {
  display: block;
}
.gallery-wrapper .detail-img {
  margin-top: 0 !important;
  margin-bottom: 1em !important;
}
.detail-img .detail-img-inner {
  position: relative;
}
.detail-img > a, .detail-img .detail-img-inner > a {
  display: block;
  position: relative;
  overflow: hidden;
}
.detail-img.article-img-double, .detail-img.captioned {
  margin-bottom: 0;
}
.img-description {
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  padding: 2px 0;
}
.article-media-caption {
  margin-top: 1.75rem;
  font-family: "Averta W01", calibri, sans-serif;
  color: #222;
  font-size: 1rem;
}
.article-media-caption .article-media-title {
  text-transform: uppercase;
  font-weight: 600;
  color: #5fb345;
}
.article-media-caption .caption-underline {
  border: 0.1875rem solid #5fb345;
  margin-top: 1rem;
}
.article-media-caption.caption-margin {
  margin-bottom: 3rem;
}
.download-img {
  margin-top: 1.5em;
}
@media screen and (max-width: 26.1875em) {
  .detail-img + .detail-img {
    margin-top: -1.5em;
  }
  .detail-img > a:after, .detail-img .detail-img-inner > a:after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 1;
    width: 60px;
    height: 60px;
    background: #ffffff;
    opacity: 0.9;
    border-radius: 100%;
  }
  .gallery-wrapper .detail-img > a:after, .gallery-wrapper .detail-img .detail-img-inner > a:after {
    display: none;
  }
  .detail-img > a .magnifier, .detail-img .detail-img-inner > a .magnifier {
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 2;
    width: 24px;
    height: 24px;
    border: 4px solid #5fb345;
    border-radius: 100%;
  }
  .detail-img > a .magnifier:after, .detail-img .detail-img-inner > a .magnifier:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 100%;
    width: 4px;
    height: 11px;
    margin: -1px 0 0 -3px;
    border-radius: 2px;
    background: #5fb345;
    -webkit-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .gallery-wrapper .detail-img > a .magnifier, .gallery-wrapper .detail-img .detail-img-inner > a .magnifier {
    display: none;
  }
  .detail-img .copyright-info {
    right: auto;
    left: 5px;
  }
  .detail-img.title-img {
    margin-bottom: 3rem;
  }
  .widget-image-article-wrapper .detail-img + .detail-img {
    margin-top: 1.5em;
  }
}
@media print, screen and (min-width: 37.5em) {
  body.desktop .detail-img > a:after, body.desktop .detail-img .detail-img-inner > a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #5fb345;
    mix-blend-mode: soft-light;
    opacity: 0;
    transition: opacity 250ms;
  }
  body.desktop .detail-img > a .magnifier, body.desktop .detail-img .detail-img-inner > a .magnifier {
    position: absolute;
    top: 150%;
    left: 50%;
    z-index: 2;
    width: 60px;
    height: 60px;
    margin: -35px 0 0 -35px;
    border: 11px solid #ffffff;
    border-radius: 100%;
    transition: top 250ms;
  }
  body.desktop .detail-img > a .magnifier:after, body.desktop .detail-img .detail-img-inner > a .magnifier:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 100%;
    width: 11px;
    height: 28px;
    margin: -1px 0 0 -5px;
    border-radius: 2px;
    background: #ffffff;
    -webkit-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  body.desktop .detail-img > a:hover:after, body.desktop .detail-img .detail-img-inner > a:hover:after {
    opacity: 1;
  }
  body.desktop .detail-img > a:hover .magnifier, body.desktop .detail-img .detail-img-inner > a:hover .magnifier {
    top: 50%;
    transition: top 250ms 150ms;
  }
  body.desktop.edge .detail-img a:hover:after {
    opacity: 0.2;
  }
}
.widget-audio {
  margin-bottom: 4.375rem;
}
.widget-audio + .widget-audio {
  margin-top: -3.125rem;
}
.mediaWidget {
  margin-bottom: 1.625rem;
}
.mediaWidget .audioWidget {
  background-color: #f3f3f3;
  padding: 1.5rem 1rem;
}
.mediaWidget .audioWidget div.audioWidgetContainer {
  margin: 1rem;
}
@media print, screen and (min-width: 37.5em) {
  .mediaWidget .audioWidget div.audioWidgetContainer {
    margin: 0.5rem 2rem 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .mediaWidget .audioWidget div.audioWidgetContainer {
    margin: 1rem 2.5rem 1.5rem;
  }
}
.mediaWidget .audioWidget div.audioWidgetContainer h4 {
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.mediaWidget .audioWidget div.audioWidgetContainer .mejs__time-handle {
  left: -5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  top: -0.1rem;
  cursor: pointer;
  display: block;
  position: absolute;
  z-index: 2;
  border: none;
}
.mediaWidget .audioWidget div.audioWidgetContainer .mejs__time-handle-content {
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
}
.video-wrapper {
  width: 100%;
  margin: 0.75em 0 2em;
  position: relative;
}
.video-wrapper iframe, .video-wrapper .video-img {
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
}
.video-wrapper .video-img {
  display: block;
  cursor: pointer;
  z-index: 5;
}
.video-wrapper .video-img .playbutton {
  width: 25%;
  height: 0;
  padding-bottom: 25%;
  background: url("//static.oldenburger-muensterland.de/images/video_playbutton.png") no-repeat border-box;
  background-size: 100%;
  position: absolute;
  top: 30%;
  left: 37.5%;
}
.video-wrapper.video-overlay {
  padding: 0 0 56.25%;
}
@media screen and (min-width: 31.25em) {
  .video-wrapper.video-overlay {
    padding: 0 0 56.25%;
  }
}
.video-wrapper.video-overlay.video-fit-small {
  padding: 0 0 120%;
}
@media screen and (min-width: 31.25em) {
  .video-wrapper.video-overlay.video-fit-small {
    padding: 0 0 56.25%;
  }
}
.video-wrapper.video-overlay a.video-link {
  display: block;
}
.video-wrapper.video-overlay a.video-link::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0%;
}
.video-wrapper.video-overlay .video-icon, .video-wrapper.video-overlay .video-disclaimer {
  position: absolute;
}
.video-wrapper.video-overlay .video-img {
  z-index: unset;
}
.video-wrapper.video-overlay .video-icon {
  width: 3rem;
  height: 3rem;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  transition-duration: 200ms;
  transition-property: color, transform;
  transition-timing-function: ease;
  display: block;
  color: #222;
  stroke: currentColor;
  fill: currentColor;
  stroke-width: 0;
}
.video-wrapper.video-overlay .video-disclaimer {
  text-align: center;
  bottom: 0.625rem;
  right: 0.625rem;
  left: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #222;
  transition: opacity 200ms ease;
}
.video-wrapper.video-overlay .video-disclaimer span {
  background-color: #5fb345;
  padding: 2px;
}
.video-wrapper.video-overlay.no-thumb {
  background-color: #f3f3f3;
}
.video-wrapper.video-overlay.no-thumb .video-disclaimer span {
  padding: 0;
  background-color: unset;
}
.video-wrapper.video-overlay:hover .video-icon {
  transform: scale(1.5);
  color: #5fb345;
}
.video-wrapper.video-overlay:hover .video-disclaimer {
  opacity: 1;
}
.logo-teaser-wrapper figure {
  text-align: center;
}
.logo-teaser-wrapper a {
  display: block;
  margin-bottom: 1.875rem;
}
.logo-teaser-wrapper.logo-teaser-wrapper--greyscale a {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: -webkit-filter 0.2s;
  transition: filter 0.2s;
}
.logo-teaser-wrapper.logo-teaser-wrapper--greyscale a:hover {
  -webkit-filter: none;
  filter: none;
}
.logo-teaser-wrapper.logo-teaser-wrapper--small a {
  padding: 0 20%;
}
.social-sharing {
  margin-top: 3.5em;
  margin-bottom: 2.5em;
}
.social-sharing > .cell {
  display: flex;
  flex-direction: column;
}
.social-sharing > .cell h3 {
  order: 1;
  display: none;
}
.social-sharing > .cell .addthis_inline_share_toolbox {
  order: 2;
}
.social-sharing > .cell .addthis_inline_share_toolbox[data-url] + h3 {
  display: block;
}
.social-sharing .addthis_inline_share_toolbox .at-share-btn-elements {
  margin-left: -8px !important;
}
.social-sharing .addthis_inline_share_toolbox svg.at-icon-facebook {
  fill: #3B5998 !important;
}
.social-sharing .addthis_inline_share_toolbox svg.at-icon-twitter {
  fill: #1DA1F2 !important;
}
.social-sharing .addthis_inline_share_toolbox svg.at-icon-pinterest_share {
  fill: #CB2027 !important;
}
.social-sharing .addthis_inline_share_toolbox svg.at-icon-whatsapp {
  fill: #4DC247 !important;
}
.social-sharing .addthis_inline_share_toolbox svg.at-icon-email {
  fill: #5fb345 !important;
}
.toTop {
  bottom: 20px;
  right: 80px;
  position: fixed;
  z-index: 999999910;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}
.is--scrolled-screen .toTop {
  visibility: visible;
  opacity: 1;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}
.toTop a {
  display: block;
  margin: 0 auto;
  width: 49px;
  height: 49px;
  background: #f3f3f3;
  position: relative;
  border-radius: 100%;
}
.toTop a:before, .toTop a:after {
  content: "";
  width: 3px;
  height: 35%;
  background: #5fb345;
  position: absolute;
  top: 38%;
  left: 50%;
  transition: top 100ms;
}
.toTop a:before {
  margin-left: -2px;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.toTop a:after {
  margin-left: -1px;
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.desktop .toTop a:hover:before, body.desktop .toTop a:hover:after {
  top: 33%;
}
footer .inner {
  color: #5fb345;
  font-family: "Averta W01", calibri, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.067em;
  background: #f3f3f3;
  margin: 3.4375rem 0 0;
  padding: 2.1875rem 0;
}
footer .nav a {
  color: #5fb345;
  font-size: 0.9375rem;
}
footer .nav a:hover {
  color: #5fb345;
}
footer .channels {
  margin: 2.5rem 0 0;
}
footer .channels a {
  display: inline-block;
  width: 21px;
  height: 21px;
  margin: 0 0.25em;
}
footer .channels a svg {
  width: 100%;
  height: 100%;
  fill: #5fb345;
}
body.desktop footer .channels a {
  transition: transform 200ms;
}
body.desktop footer .channels a:hover {
  transform: scale(1.2);
}
footer .meta {
  margin-top: 0.9375rem;
  font-size: 0.75rem;
  color: #5fb345;
}
footer .meta a, footer .meta a:hover {
  color: #5fb345;
  margin: 0 0.25em;
}
footer .badges {
  position: absolute;
  right: 35px;
  bottom: 35px;
}
footer .badges img {
  max-width: 44px;
}
@media print, screen and (min-width: 64em) {
  footer .badges img {
    max-width: 60px;
  }
}
@media screen and (max-width: 26.1875em) {
  footer .nav a {
    display: inline-block;
    padding: 4px;
  }
  footer .channels {
    margin: 25px 25px 0;
    padding-top: 30px;
    border-top: 2px solid #5fb345;
  }
}
@media print, screen and (min-width: 37.5em) {
  footer .nav .cell {
    display: flex;
  }
  footer .nav .cell.withborder {
    border-right: 1px solid #5fb345;
    border-left: 1px solid #5fb345;
  }
  footer .nav a {
    display: block;
    align-self: center;
    width: 100%;
    padding: 25px 8px;
  }
  body.desktop footer .nav a {
    transition: padding 200ms;
  }
  body.desktop footer .nav a:hover {
    padding: 20px 8px 30px;
  }
}
.widget-yumpu-anchorOffset {
  display: none;
  margin: -30px 0 0;
  padding: 0 0 40px;
  position: relative;
  z-index: -1;
}
.widget-yumpu-document {
  display: none;
  background: #f3f3f3;
  font-size: 1rem;
  padding: 2.5rem 0;
  margin: 0 0 5rem;
}
.widget-yumpu-document h2.text-center {
  margin-bottom: 1.875rem;
}
.widget-yumpu-document .embed-container {
  position: relative !important;
  padding-bottom: 56.25% !important;
  height: 0 !important;
  overflow: hidden !important;
  max-width: 100% !important;
}
.widget-yumpu-document .embed-container embed, .widget-yumpu-document .embed-container iframe, .widget-yumpu-document .embed-container object {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
}
@media screen and (max-width: 26.1875em) {
  .widget-yumpu-document .embed-container.yp-check {
    padding-bottom: 32.8125rem !important;
  }
}
.widget-yumpu-document .embed-container .yumpu-overlay {
  cursor: pointer;
  height: 100%;
}
.widget-yumpu-document .embed-container .yumpu-overlay .yumpu-icon, .widget-yumpu-document .embed-container .yumpu-overlay .yumpu-disclaimer {
  position: absolute;
}
.widget-yumpu-document .embed-container .yumpu-overlay .yumpu-icon {
  left: calc(50% - 24px);
  top: calc(50% - 24px);
  width: 3rem;
  height: 3rem;
  color: #222;
  stroke: currentColor;
  fill: currentColor;
  stroke-width: 0;
  display: block;
  transition-duration: 200ms;
  transition-property: color, transform;
  transition-timing-function: ease;
}
.widget-yumpu-document .embed-container .yumpu-overlay .yumpu-disclaimer {
  bottom: 0;
  padding: 0 0.9375rem 0.9375rem;
}
.widget-yumpu-document .embed-container .yumpu-overlay:hover .yumpu-icon {
  transform: scale(1.5);
  color: #5fb345;
}
@media print, screen and (min-width: 37.5em) {
  .widget-yumpu-anchorOffset, .widget-yumpu-document {
    display: block;
  }
}
.widget-acc-search .ui.dropdown, .js-search .ui.dropdown {
  width: 100%;
  border-radius: 0;
  border: none;
  background-color: #f3f3f3;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  transition: background-color 0.1s ease;
  min-height: 0;
  min-width: 0;
  padding: 1.0625rem 2.5rem 0.8125rem 1.25rem;
  margin-bottom: 1rem;
}
.widget-acc-search .ui.dropdown:before, .js-search .ui.dropdown:before {
  display: block;
  width: 0;
  height: 0;
  border: inset 10px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #5fb345;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin: -7px 0 0;
  border-radius: 3px;
  transition: all 100ms;
}
.widget-acc-search .ui.dropdown:after, .js-search .ui.dropdown:after {
  display: block;
  width: 0;
  height: 0;
  border: inset 10px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #f3f3f3;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin: -10px 0 0;
  transition: all 100ms;
}
.widget-acc-search .ui.dropdown.active, .js-search .ui.dropdown.active {
  background-color: #5fb345;
}
.widget-acc-search .ui.dropdown.active:before, .js-search .ui.dropdown.active:before {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
  border-left-color: #ffffff;
  margin: -8.5px 0 0;
}
.widget-acc-search .ui.dropdown.active:after, .js-search .ui.dropdown.active:after {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
  border-left-color: #5fb345;
  margin: -5.5px 0 0;
}
.widget-acc-search .ui.dropdown.active .text, .js-search .ui.dropdown.active .text {
  color: #ffffff !important;
}
.widget-acc-search .ui.dropdown .text, .js-search .ui.dropdown .text {
  font-family: "Averta W01", calibri, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600 !important;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  line-height: 100%;
  color: #5fb345 !important;
  transition: color 0.1s ease;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 0.9375rem;
}
.widget-acc-search .ui.dropdown .menu, .js-search .ui.dropdown .menu {
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2) !important;
  border: none;
  margin: 0;
  min-width: 100%;
  width: 100%;
}
.widget-acc-search .ui.dropdown .menu .item, .js-search .ui.dropdown .menu .item {
  border: none !important;
  background-color: #ffffff;
  color: #5fb345;
  padding: 0.9375rem 1.25rem 0.9375rem 1.25rem !important;
  transition: padding 200ms;
  font-weight: 400;
}
.widget-acc-search .ui.dropdown .menu .item.selected, .widget-acc-search .ui.dropdown .menu .item:hover, .js-search .ui.dropdown .menu .item.selected, .js-search .ui.dropdown .menu .item:hover {
  background-color: #ffffff;
  color: #5fb345;
  padding-left: 1.5625rem !important;
  padding-right: 0.9375rem !important;
  font-weight: 400;
}
.widget-acc-search select.route-filter, .js-search select.route-filter {
  color: #5fb345;
  font-family: "Averta W01", calibri, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.widget-acc-search select.route-filter option, .js-search select.route-filter option {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  /*color: $black;*/
}
.widget-acc-search .button, .js-search .button {
  width: 100%;
}
.widget-spacer.spacer-not {
  height: 0;
}
.widget-spacer.spacer-30 {
  height: 1.875rem;
}
.widget-spacer.spacer-30-ja {
  height: 0;
  margin-top: -1.875rem;
}
.widget-spacer.spacer-50 {
  height: 3.125rem;
}
.widget-spacer.spacer-50-ja {
  height: 0;
  margin-top: -3.125rem;
}
.widget-spacer.spacer-80 {
  height: 5rem;
}
.widget-spacer.spacer-80-ja {
  height: 0;
  margin-top: -5rem;
}
.widget-spacer.spacer-100 {
  height: 6.25rem;
}
.widget-spacer.spacer-100-ja {
  height: 0;
  margin-top: -6.25rem;
}
.widget-spacer.spacer-120 {
  height: 7.5rem;
}
.widget-spacer.spacer-120-ja {
  height: 0;
  margin-top: -7.5rem;
}
.widget-spacer.spacer-150 {
  height: 9.375rem;
}
.widget-spacer.spacer-150-ja {
  height: 0;
  margin-top: -9.375rem;
}
.widget-lexikon .anchor-links {
  font-size: 180%;
  text-transform: uppercase;
}
.widget-lexikon .lexikon-head {
  padding-bottom: 1.5625rem;
  position: relative;
}
.widget-lexikon .lexikon-head:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 11px 0 11px;
  border-color: #ffffff transparent transparent transparent;
  z-index: 10;
}
.widget-lexikon .lexikon-wrapper .lexikon-anchors {
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
  background-color: #f3f3f3;
  position: relative;
}
.widget-lexikon .lexikon-wrapper .lexikon-anchors:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 11px 0 11px;
  border-color: #f3f3f3 transparent transparent transparent;
  z-index: 10;
}
.widget-lexikon .lexikon-wrapper .lexikon-section {
  padding-top: 1.5625rem;
  padding-bottom: 3.125rem;
  position: relative;
}
.widget-lexikon .lexikon-wrapper .lexikon-section .accordion-content {
  padding-bottom: 0;
}
.widget-lexikon .lexikon-wrapper .lexikon-section:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 11px 0 11px;
  border-color: #ffffff transparent transparent transparent;
  z-index: 10;
}
.widget-lexikon .lexikon-wrapper .lexikon-section:nth-child(odd) {
  background-color: #f3f3f3;
}
.widget-lexikon .lexikon-wrapper .lexikon-section:nth-child(odd) .accordion {
  background-color: transparent;
}
.widget-lexikon .lexikon-wrapper .lexikon-section:nth-child(odd) .accordion .accordion-item .accordion-title:after {
  border-left-color: #f3f3f3;
}
.widget-lexikon .lexikon-wrapper .lexikon-section:nth-child(odd) .accordion .accordion-content {
  background-color: transparent;
}
.widget-lexikon .lexikon-wrapper .lexikon-section:nth-child(odd):after {
  border-top-color: #f3f3f3;
}
.widget-lexikon .lexikon-wrapper .lexikon-section:last-child:after {
  display: none;
}
@media print, screen and (min-width: 37.5em) {
  .widget-lexikon .anchor-links {
    font-size: 100%;
  }
  .widget-lexikon .lexikon-head {
    padding-bottom: 5rem;
  }
  .widget-lexikon .lexikon-wrapper .lexikon-anchors {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
  .widget-lexikon .lexikon-wrapper .lexikon-section {
    padding-top: 3.125rem;
    padding-bottom: 5rem;
  }
  .widget-lexikon .lexikon-wrapper .lexikon-section .accordion-content {
    padding-bottom: 1.125rem;
  }
}
#intro.fietsknoop-intro {
  margin-top: 3.75rem;
  margin-bottom: 0;
}
@media print, screen and (min-width: 37.5em) {
  #intro.fietsknoop-intro {
    margin-bottom: 6.25rem;
    margin-top: 6.25rem;
  }
}
.fietsknoop-iframe {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media print, screen and (min-width: 64em) {
  .fietsknoop-iframe {
    padding-left: 3.125rem;
    padding-right: 3.125rem;
  }
}
.fietsknoop-iframe iframe {
  width: 100%;
  height: 52.5rem;
}
@media print, screen and (min-width: 64em) {
  .fietsknoop-iframe iframe {
    height: 51.875rem;
  }
}
.ds-iframe {
  max-width: 1920px;
  padding: 50px 0 0;
  height: 600px;
  height: 100vh;
  min-height: 600px;
  max-height: 100%;
  max-height: 100vh;
  margin: 0 auto 25px;
}
@media print, screen and (min-width: 37.5em) {
  .ds-iframe {
    max-height: 980px;
  }
}
@media print, screen and (min-width: 64em) {
  .ds-iframe {
    padding: 50px;
    padding-top: 80px;
    min-height: 620px;
    height: 89vh;
  }
}
.ds-iframe iframe {
  width: 100%;
  height: 100%;
}
#multislider {
  padding-bottom: 3rem;
}
#multislider .swiper-pagination {
  bottom: 0.625rem;
}
#multislider .swiper-pagination-bullet-active {
  background-color: #009ee3;
  /* #5fb345 */
}
#multislider .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#multislider .swiper-slide .teaser-link {
  background-color: #009ee3;
  padding: 1rem;
}
#multislider .swiper-slide .teaser-link h3, #multislider .swiper-slide .teaser-link h2 {
  color: #fff;
}
#multislider .swiper-slide .teaser-link a:last-of-type {
  color: #fff;
  font-size: 9px;
  position: absolute;
  bottom: 0;
  right: 0;
  text-shadow: 0 0 2px #222;
}
#multislider .swiper-slide .teaser-link a:last-of-type:hover {
  color: #009ee3;
}
#multislider .swiper-slide .teaser-link *:last-child {
  margin-bottom: 0;
}
#multislider .swiper-slide .copyright-info {
  bottom: auto;
  top: 0;
}
@media screen and (min-width: 37.5em) and (max-width: 63.9375em) {
  #multislider h2 {
    font-size: 1.625rem;
  }
}
@media print, screen and (min-width: 37.5em) {
  #multislider .swiper-slide .teaser-link {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 158, 227, 0.9);
    width: calc(100% - 2rem);
  }
}
.contacts-container {
  margin-bottom: 2.5rem;
}
.contacts-container .contact-profile {
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
}
.contacts-container .contact-profile h2.contact-name {
  margin-bottom: 1.375rem;
}
.contacts-container .contact-profile .contact-img {
  background-color: #5fb345;
  border-radius: 50%;
  margin-bottom: 25px;
}
.contacts-container .contact-profile .contact-img img {
  border-radius: 50%;
  padding: 4%;
}
@media print, screen and (min-width: 37.5em) {
  .contacts-container .contact-profile .contact-img img {
    padding: 5%;
  }
}
@media screen and (min-width: 59.375em) {
  .contacts-container .contact-profile .contact-img img {
    padding: 4%;
  }
}
@media print, screen and (min-width: 37.5em) {
  .contacts-container .contact-profile {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}
.ansprechpartner-wrapper {
  padding-top: 5rem;
}
.gemeinde-wrapper {
  padding-top: 8.75rem;
  border-top: 2px solid #5fb345;
}
.choice-wrapper {
  position: absolute;
  right: 100%;
  min-width: 75px;
  top: 0;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 10px;
}
.choice-wrapper .choice-number {
  display: inline-block;
  position: relative;
  background-color: #f3f3f3;
  border-radius: 50%;
  border: 1px solid #5fb345;
  width: 20px;
  height: 20px;
  margin-right: 2px;
  margin-left: 2px;
  cursor: pointer;
  pointer-events: all;
  font-size: 14px;
  line-height: 20px;
  color: #5fb345;
  transition: all 300ms ease;
}
.choice-wrapper .choice-number:first-child {
  margin-left: 0;
}
.choice-wrapper .choice-number:last-child {
  margin-right: 0;
}
.choice-wrapper .choice-number.selected {
  background-color: #5fb345;
  color: #ffffff;
}
.choice-wrapper .choice-number span {
  position: absolute;
  top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
}
.choice-wrapper .choice-number.prio-one span {
  transform: translate(-48%, -48%);
}
.choice-wrapper .choice-number.prio-two span {
  transform: translate(-41%, -48%);
}
.choice-wrapper .choice-number.prio-three span {
  transform: translate(-38%, -48%);
}
.choice-wrapper .choice-number.prio-four span {
  transform: translate(-38%, -48%);
}
.confirm-poll.disabled {
  opacity: 1;
  background-color: #cacaca;
}
.confirm-poll.disabled:hover {
  background-color: #b0b0b0;
}
.widget-event-registration label.attendants {
  display: block;
  position: relative;
  margin: 0;
  padding-left: 2.375rem;
  margin-bottom: 1.875rem;
  padding-top: 0.1875rem;
  cursor: pointer;
  text-transform: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  /*input:checked ~ span.radiobutton:after {
      opacity: 1;
    }*/
}
.widget-event-registration label.attendants input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 1px;
  width: 1px;
}
.widget-event-registration label.attendants span.radiobutton {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.25rem;
  width: 1.25rem;
  background-color: #f3f3f3;
  box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.widget-event-registration label.attendants span.radiobutton:after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: opacity 200ms;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5fb345;
}
.widget-event-registration label.attendants span.radiobutton.rb-checked:after {
  opacity: 1;
}
.widget-event-registration .attendant-block {
  margin-bottom: 1.25rem;
}
@media print, screen and (min-width: 37.5em) {
  .widget-event-registration .attendant-block {
    margin-bottom: 2.5rem;
  }
}
@media print, screen and (min-width: 64em) {
  .widget-event-registration .attendant-block {
    margin-bottom: 5rem;
  }
}
.widget-event-registration .attendant-block.attendant-inactive {
  display: none;
}
.copylinksWrapper .copylinksRow {
  border-bottom: 2px solid #5fb345;
  padding: 1.5em 0;
}
.copylinksWrapper .copylinksRow:first-child {
  border-top: 2px solid #5fb345;
}
.copylinksWrapper .copylinksRow .imgWrapper {
  margin-right: -0.78125rem;
  margin-left: -0.78125rem;
  margin-bottom: 1.5em;
  min-height: 1em;
}
.copylinksWrapper .copylinksRow .txtWrapper {
  width: 100%;
  font-size: 1em;
}
@media print, screen and (min-width: 37.5em) {
  .copylinksWrapper .copylinksRow .imgWrapper {
    margin: 0;
    min-height: 1em;
    width: 23%;
    float: left;
  }
  .copylinksWrapper .copylinksRow .imgWrapper img {
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .copylinksWrapper .copylinksRow .txtWrapper {
    width: 73%;
    float: left;
    margin: 0 0 0 4%;
  }
}
.lang-switch__link {
  display: inline-block !important;
  padding: 0 !important;
  float: none !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.lang-switch__link--de {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' fill-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2' clip-rule='evenodd' viewBox='0 0 19 14'%3E%3Cpath d='M0 0h19v4.63H0z'/%3E%3Cpath fill='red' d='M0 4.63h19v4.63H0z'/%3E%3Cpath fill='%23fc0' d='M0 9.26h19v4.63H0z'/%3E%3C/svg%3E");
}
.lang-switch__link--nl {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' fill-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2' clip-rule='evenodd' viewBox='0 0 19 14'%3E%3Cg transform='translate(-.25 -10.03)'%3E%3CclipPath id='a'%3E%3Cpath d='M.25 10.03h19v4.63h-19z'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23ae1c28' d='M-.75 9.03h21v6.63h-21z'/%3E%3C/g%3E%3C/g%3E%3Cg transform='translate(-.25 -.76)'%3E%3CclipPath id='b'%3E%3Cpath d='M.25 5.39h19v4.63h-19z'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23b)'%3E%3Cpath fill='%23fff' d='M-.75 4.39h21v6.63h-21z'/%3E%3C/g%3E%3C/g%3E%3Cg transform='translate(-.25 8.5)'%3E%3CclipPath id='c'%3E%3Cpath d='M.25.76h19v4.63h-19z'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23c)'%3E%3Cpath fill='%2321468b' d='M-.75-.24h21v6.63h-21z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lang-switch__link span {
  display: none;
}
.lang-switch__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lang-switch__item {
  cursor: pointer;
}
@media screen and (max-width: 63.9375em) {
  .lang-switch {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 49px;
    left: 0;
    height: 76px;
    width: 100%;
    background: #eee;
    z-index: 11;
    transition-property: opacity, visibility, transform;
    transition-timing-function: ease;
    transition-duration: 0.3s;
    transform: translateX(100%);
  }
  .lang-switch__list {
    display: flex !important;
    margin: auto 0;
    justify-content: center;
    gap: 10px;
  }
  .lang-switch__item {
    cursor: pointer;
    order: 2;
    height: 45px;
    width: 45px;
    border-radius: 100%;
    overflow: hidden;
  }
  .lang-switch__item.is--active {
    background: white;
    order: 1;
    cursor: default;
  }
  .lang-switch__item.is--active a {
    cursor: default;
  }
  .lang-switch__link {
    height: 45px;
    width: 45px;
    display: block !important;
    background-size: 25px 18px;
  }
  .c-nav.is-active ~ .icons .lang-switch {
    transform: translateX(0);
  }
}
@media print, screen and (min-width: 64em) {
  .lang-switch {
    position: relative;
    width: 29px;
    height: 100%;
    float: right;
    display: flex;
    align-items: center;
    margin-right: -5px;
  }
  .lang-switch__list {
    padding: 5px 5px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01);
  }
  .lang-switch__item {
    height: 14px;
    cursor: pointer;
    order: 2;
  }
  .lang-switch__item:not(.is--active) {
    display: none;
    opacity: 0.67;
  }
  .lang-switch__item:not(.is--active):hover {
    opacity: 1;
  }
  .lang-switch__item.is--active {
    order: 1;
  }
  .lang-switch:hover .lang-switch__item:not(.is--active) {
    display: block !important;
  }
  .lang-switch:hover .lang-switch__list {
    background: white;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
  }
  .lang-switch__link {
    width: 19px;
    height: 14px !important;
  }
}
@media screen and (max-width: 63.9375em) {
  .c-header__container .icons .weather-info {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    height: 49px;
    width: 100%;
    background: #5FB245;
    z-index: 12;
    transition-property: opacity, visibility, transform;
    transition-timing-function: ease;
    transition-duration: 0.3s;
    transform: translateX(100%);
    color: white;
  }
  .c-header__container .icons .weather-info svg {
    fill: #fff;
  }
  .c-header__container .icons .weather-info a {
    padding-left: 0;
  }
  .c-header__container .icons .weather-info__desc {
    font-size: 15px;
    font-weight: 600;
  }
}
@media screen and (max-width: 63.9375em) and print, screen and (min-width: 64em) {
  .c-header__container .icons .weather-info {
    float: left;
    height: 100%;
  }
  .c-header__container .icons .weather-info__desc {
    display: none;
  }
}
@media screen and (max-width: 63.9375em) {
  .c-header__container .c-nav.is-active ~ .icons .weather-info {
    transform: translateX(0);
  }
}
.c-header {
  position: relative;
  z-index: 4;
}
.c-header__container {
  background-color: white;
}
.c-header__container .mobile-home-link {
  display: none;
}
.c-header__nav {
  margin-bottom: 14px;
}
@media print, screen and (min-width: 64em) {
  .c-header__nav {
    flex-grow: 1;
    margin-left: 20px;
  }
}
.c-header__btn {
  display: block;
  padding: 10px;
  color: #5fb345;
  font-size: 24px;
}
.c-header__btn:hover, .c-header__btn:focus {
  color: #009ee3;
}
@media print, screen and (min-width: 64em) {
  .c-header__btn {
    display: none;
  }
}
/** ------------------------------------------------------------------------
* Allgemein
*/
.c-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  padding: 60px 0 20px;
  z-index: 10;
  font-family: "Averta W01", calibri, sans-serif;
  font-weight: bold;
  transition-property: opacity, visibility, transform;
  transition-timing-function: ease;
  transition-duration: 0.3s;
  transform: translateX(100%);
  opacity: 0;
  visibility: visible;
}
.c-nav.is-active {
  visibility: visible;
  opacity: 1;
}
[data-navigation-current-level="1"] .c-nav.is-active {
  transform: translateX(0);
}
[data-navigation-current-level="2"] .c-nav.is-active {
  transform: translateX(-100%);
}
[data-navigation-current-level="3"] .c-nav.is-active {
  transform: translateX(-100%);
}
.c-nav__mobile-home-link {
  display: none;
}
.c-nav__mobile-home-link > * {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 41px;
}
.c-nav__mobile-home-link img {
  max-height: 100%;
  padding-bottom: 19px;
}
.c-nav__custom {
  padding: 0 0.625rem;
  max-width: 43rem;
  margin: auto;
}
.c-nav__custom form {
  display: block;
  margin: 45px 0 0;
  padding: 0;
  position: relative;
}
.c-nav__custom form input[type="search"] {
  padding-right: 50px;
  border-bottom: 1px solid #5fb345;
}
.c-nav__custom form input[type="search"]:focus {
  box-shadow: inset 0 0 1px 1px #5fb345;
  border-bottom-color: transparent;
}
.c-nav__custom form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  height: 100%;
  overflow: hidden;
  text-indent: -999px;
  width: 45px;
  background: transparent url("//static.oldenburger-muensterland.de/images/icon_search.svg") no-repeat center center;
  background-size: 50%;
}
.c-nav__custom #navigation-quickstart {
  color: #5fb345;
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  padding-bottom: 2.375rem;
}
.c-nav__custom #navigation-quickstart a, .c-nav__custom #navigation-quickstart a:hover, .c-nav__custom #navigation-quickstart a:focus {
  color: inherit;
}
.c-nav__custom #navigation-quickstart a {
  display: block;
  flex: 0 0 auto;
  width: 25%;
  padding: 0 2px;
  text-align: center;
  margin: 0;
  font-family: "Averta W01", calibri, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25rem;
  text-transform: initial;
}
.c-nav__custom #navigation-quickstart a img {
  display: block;
  width: 43px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 5px;
}
.c-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block !important;
}
.c-nav__backBtn {
  padding: 1.25rem 0.9375rem;
  width: 100%;
  font-weight: bold;
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.15625rem;
  background-color: white;
  color: #5fb345;
  cursor: pointer;
  border-bottom: 1.5px solid #5fb345;
}
.c-nav__closeBtn {
  position: absolute;
  top: 8.5px;
  right: 10px;
  padding: 10px;
  cursor: pointer;
  transform: rotate(45deg);
}
.c-nav__subnav {
  padding-bottom: 160px;
}
.c-nav__subnav--level-2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: white;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.3s ease, visibility 0s linear 0.3s;
}
.c-nav__subnav--level-3 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: white;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transform: translateX(0);
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.c-nav__link--level-1.is-active + .c-nav__subnav--level-2 {
  visibility: visible;
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.c-nav__link--level-2.is-active + .c-nav__subnav--level-3 {
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s linear;
  overflow-y: auto;
  opacity: 1;
}
.c-nav__item--parent {
  margin-left: 0;
}
.c-nav__link {
  display: block;
  text-decoration: none;
  color: black;
  font-weight: bold;
}
.c-nav__link--level-1 {
  font-size: 1.0625rem;
  line-height: 1.25rem;
  padding: 1.25rem 0.625rem;
  letter-spacing: 0.044375rem;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
  text-align: center;
}
.c-nav__link--level-1:hover, .c-nav__link--level-1:focus {
  color: white;
}
.c-nav__link--level-1.dark {
  background-color: #007a67;
}
.c-nav__link--level-1.green {
  background-color: #5fb345;
}
.c-nav__link--level-1.blue {
  background-color: #009ee3;
}
.c-nav__link--level-2 {
  font-size: 1.0625rem;
  padding: 1.6875rem 0.9375rem 1.6875rem 0.625rem;
  line-height: 1.25rem;
  letter-spacing: 0.038125rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #5fb345;
  border-bottom: 1.5px solid #5fb345;
  transition: padding 0.3s ease;
  position: relative;
}
.c-nav__link--level-2:before {
  display: block;
  width: 0;
  height: 0;
  border: inset 10px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #5fb345;
  position: absolute;
  top: 50%;
  right: 1px;
  margin: -10px 0 0;
  border-radius: 3px;
  transition: all 200ms;
}
.c-nav__link--level-2:after {
  display: block;
  width: 0;
  height: 0;
  border: inset 10px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  top: 50%;
  right: 4px;
  margin: -10px 0 0;
  transition: all 200ms;
}
.c-nav__link--level-2.no-triangle:before, .c-nav__link--level-2.no-triangle:after {
  display: none;
}
.c-nav__link--level-2 span {
  pointer-events: none;
}
.c-nav__link--level-2:hover, .c-nav__link--level-2:focus {
  color: #5fb345;
  padding-left: 0.9375rem;
  padding-right: 0.0625rem;
}
.c-nav__link--level-3 {
  font-size: 1.0625rem;
  padding: 1.6875rem 0.9375rem 1.6875rem 0.625rem;
  line-height: 1.25rem;
  letter-spacing: 0.038125rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #5fb345;
  border-bottom: 1.5px solid #5fb345;
  transition: padding 0.3s ease;
  background-color: white;
}
.c-nav__link--level-3:hover, .c-nav__link--level-3:focus {
  color: #5fb345;
  padding-left: 0.9375rem;
  padding-right: 0.625rem;
}
.c-nav__link--parent {
  text-transform: uppercase;
}
.c-nav__section--891 form input[type="search"] {
  border-bottom: 1px solid #007a67;
}
.c-nav__section--891 form input[type="search"]:focus {
  box-shadow: inset 0 0 1px 1px #007a67;
}
.c-nav__section--891 form input[type="submit"] {
  background: transparent url("//static.oldenburger-muensterland.de/images/icon_search_dark.svg") no-repeat center center;
  background-size: 50%;
}
.c-nav__section--891 #navigation-quickstart {
  color: #007a67;
}
.c-nav__section--891 .c-nav__backBtn {
  color: #007a67;
  border-bottom-color: #007a67;
}
.c-nav__section--891 .c-nav__link--level-2 {
  color: #007a67;
  border-bottom-color: #007a67;
}
.c-nav__section--891 .c-nav__link--level-2 span {
  border-bottom-color: #007a67;
}
.c-nav__section--891 .c-nav__link--level-2:before {
  border-color: transparent transparent transparent #007a67;
}
.c-nav__section--891 .c-nav__link--level-2:hover, .c-nav__section--891 .c-nav__link--level-2:focus {
  color: #007a67;
}
.c-nav__section--891 .c-nav__item--level-3 {
  border-bottom-color: #007a67;
}
.c-nav__section--891 .c-nav__item--level-3:nth-child(2) {
  border-top-color: #007a67;
}
.c-nav__section--891 .c-nav__link--level-3 {
  color: #007a67;
  border-bottom-color: #007a67;
}
.c-nav__section--891 .c-nav__link--level-3:hover, .c-nav__section--891 .c-nav__link--level-3:focus {
  color: #007a67;
}
.c-nav__section--881 form input[type="search"] {
  border-bottom: 1px solid #009ee3;
}
.c-nav__section--881 form input[type="search"]:focus {
  box-shadow: inset 0 0 1px 1px #009ee3;
}
.c-nav__section--881 form input[type="submit"] {
  background: transparent url("//static.oldenburger-muensterland.de/images/icon_search_blue.svg") no-repeat center center;
  background-size: 50%;
}
.c-nav__section--881 #navigation-quickstart {
  color: #009ee3;
}
.c-nav__section--881 .c-nav__backBtn {
  color: #009ee3;
  border-bottom-color: #009ee3;
}
.c-nav__section--881 .c-nav__link--level-2 {
  color: #009ee3;
  border-bottom-color: #009ee3;
}
.c-nav__section--881 .c-nav__link--level-2 span {
  border-bottom-color: #009ee3;
}
.c-nav__section--881 .c-nav__link--level-2:before {
  border-color: transparent transparent transparent #009ee3;
}
.c-nav__section--881 .c-nav__link--level-2:hover, .c-nav__section--881 .c-nav__link--level-2:focus {
  color: #009ee3;
}
.c-nav__section--881 .c-nav__item--level-3 {
  border-bottom-color: #009ee3;
}
.c-nav__section--881 .c-nav__item--level-3:nth-child(2) {
  border-top-color: #009ee3;
}
.c-nav__section--881 .c-nav__link--level-3 {
  color: #009ee3;
  border-bottom-color: #009ee3;
}
.c-nav__section--881 .c-nav__link--level-3:hover, .c-nav__section--881 .c-nav__link--level-3:focus {
  color: #009ee3;
}
@media print, screen and (min-width: 64em) {
  /** ------------------------------------------------------------------------
	* Navigation auf Desktop
	*/
  /** ------------------------------------------------------------------------
	* Level 1 auf Desktop
	*/
  /** ------------------------------------------------------------------------
	* Level 2 auf Desktop
	*/
  /** ------------------------------------------------------------------------
	* Level 3 auf Desktop
	*/
  .c-nav {
    position: static;
    padding: 0;
    width: auto;
    background-color: transparent;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none;
    width: 100%;
    display: flex;
    margin: 0;
    justify-content: center;
  }
  .c-nav__closeBtn {
    display: none;
  }
  .c-nav__metalist {
    display: none;
  }
  .c-nav__custom {
    display: none;
  }
  .c-nav__custom--desktop {
    display: block;
  }
  .c-nav__custom--desktop #navigation-qickstart {
    margin: 0;
  }
  .c-nav__list {
    display: flex !important;
  }
  .c-nav__subnav {
    padding-bottom: 0;
  }
  .c-nav__list--level-1 {
    display: flex !important;
    justify-content: center;
    width: 100%;
    align-items: center;
  }
  .c-nav__link--level-1 {
    width: 11.25rem;
    text-align: center;
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
    font-size: 0.625rem;
    line-height: 1.5rem;
  }
  .c-nav__subnav--level-2 {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -2;
    white-space: nowrap;
    visibility: hidden;
    transform: translateY(-50px);
    opacity: 0;
    transition: visibility 0.3s ease-in, transform 0.3s ease-in, opacity 0.3s ease-in;
  }
  .c-nav__list--level-2 {
    padding: 20px 20px 38px 20px;
  }
  .c-nav__item--level-2 {
    margin: 0;
  }
  .c-nav__item--parent {
    display: none;
  }
  .c-nav__link--level-2 {
    text-transform: uppercase;
    font-size: 0.8125rem;
    line-height: 1.25rem;
    padding-bottom: 2.375rem;
    border: none;
  }
  .c-nav__link--level-2:before, .c-nav__link--level-2:after {
    display: none;
  }
  .c-nav__link--level-2 span {
    pointer-events: auto;
    display: inline-block;
    border-bottom: 2px solid #5fb345;
  }
  .c-nav__item--level-1:hover .c-nav__subnav--level-2, .c-nav__item--level-1:focus .c-nav__subnav--level-2, .c-nav__item--level-1:focus-within .c-nav__subnav--level-2 {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    transition: visibility 0.3s ease-out, transform 0.3s ease-out, opacity 0.3s ease-out;
  }
  .c-nav__backBtn {
    display: none;
  }
  .c-nav__subnav--level-3 {
    position: relative;
    opacity: 1;
    visibility: unset;
    height: auto;
    width: auto;
    transition: none;
  }
  .c-nav__list--level-3 {
    flex-flow: row wrap;
  }
  .c-nav__item--level-3 {
    width: 100%;
    border-bottom: 1px solid #5fb345;
  }
  .c-nav__item--level-3:nth-child(2) {
    border-top: 1px solid #5fb345;
  }
  .c-nav__link--level-3 {
    font-size: 0.8125rem;
    line-height: 1.25rem;
    text-transform: uppercase;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    border: none !important;
  }
}
@media screen and (max-width: 63.9375em) {
  .c-header__container .mobile-home-link {
    display: inline-block;
    position: absolute;
    left: 50%;
    margin-left: -23px;
    top: 50%;
    transform: translateX(-50%);
    transform: translateY(-50%);
    width: 46px;
    height: 21px;
  }
  .c-nav__mobile-home-link {
    display: block;
  }
}
.dsgvo-info {
  position: relative;
  font-size: 13px;
  line-height: 1.25;
  margin: 0 0 2em;
  padding: 0 0 0 25px;
}
.dsgvo-info input[type="checkbox"] {
  position: absolute;
  top: 1px;
  left: 0;
}
.dsgvo-info label.simple {
  font-size: 13px;
  color: #222;
  text-transform: none;
}
body .cc-window {
  background: #d8d8d8;
  color: #222;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.25;
}
body .cc-window a {
  opacity: 1;
  color: #222;
  text-decoration: unterline;
}
body .cc-window .cc-btn {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  background: #5fb345;
  border: none;
}
.isDevInfo {
  border: 5px solid #f00;
  background: rgba(255, 0, 0, 0.9);
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 10px;
  max-width: 80%;
  color: #fff;
  font-size: 0.8em;
  line-height: 1.25;
}
.isDevInfo p {
  margin: 0 0 8px;
}
.isDevInfo a, .isDevInfo a:hover {
  color: #fff;
  text-decoration: underline;
}
p.intro {
  font-weight: 400;
}
p.quote {
  hyphens: auto;
  font-size: 2.5rem;
  line-height: 3.375rem;
  margin-bottom: 0.9375rem;
  color: #007a67;
  text-align: center;
  font-weight: 600;
  font-family: "Averta W01", calibri, sans-serif;
}
@media print, screen and (min-width: 37.5em) {
  p.quote {
    hyphens: none;
    font-size: 3.75rem;
    line-height: 4.625rem;
  }
}
p.source {
  color: #5fb345;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.375rem;
  margin-bottom: 0.875rem;
}
.login-wrapper .text-left, .newsletter-register-wrapper .text-left {
  text-align: left;
}
.login-wrapper h2, .newsletter-register-wrapper h2 {
  margin-bottom: 0.625rem;
}
.login-wrapper h3, .newsletter-register-wrapper h3 {
  margin-bottom: 2.5rem;
}
.login-wrapper ul, .newsletter-register-wrapper ul {
  margin: 0 0 1rem;
  list-style: none;
}
.login-wrapper ul li, .newsletter-register-wrapper ul li {
  background-image: url("//static.oldenburger-muensterland.de/images/checkmark.svg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 1.875rem 2.5rem;
  padding-left: 2.34375rem;
  padding-bottom: 0.46875rem;
}
.login-wrapper input, .newsletter-register-wrapper input {
  margin-bottom: 0;
}
.login-wrapper .button, .newsletter-register-wrapper .button {
  width: 100%;
}
.login-wrapper .no-user, .newsletter-register-wrapper .no-user {
  width: 100%;
  display: block;
  font-size: 14px;
  line-height: 18px;
  padding-top: 15px;
  color: #5fb345;
  text-align: center;
}
.login-wrapper .no-user a, .newsletter-register-wrapper .no-user a {
  text-decoration: underline;
}
.newsletter-register-wrapper h2 {
  margin-bottom: 2.5rem;
}
.om-iframe {
  margin-top: 3rem;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
@media print, screen and (min-width: 37.5em) {
  .om-iframe {
    margin-top: 5rem;
  }
}
#karte .filter-wrapper .filter-body {
  display: block;
}
.form-revert {
  color: #828282;
  font-size: 0.8125rem;
  font-weight: 600;
}
.form-revert:hover {
  color: #828282;
}
.form-revert:hover img {
  transform: rotate(180deg);
}
.form-revert img {
  margin-left: 0.625rem;
  transition: transform 0.5s ease;
}
