/**
 * Swiper 4.4.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 19, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.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'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.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'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  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");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  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");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  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'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  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'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

.swiper-stagecontainer .image::after {
  display: block;
  position: relative;
  background: -moz-linear-gradient(top, rgba(0,0,0,0) 30%, rgba(0,0,0,0.64) 80%, rgba(0,0,0,0.9) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,0) 30%, rgba(0,0,0,0.64) 80%, rgba(0,0,0,0.9) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.64) 80%, rgba(0,0,0,0.9) 100%);
  margin-top: -150px;
  height: 150px;
  width: 100%;
  content: '';
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.breadcrumb ol>li .home:before {
  display: inline-block;
  font-family: FontAwesome;
  line-height: 1;
  font-size: inherit;
}

.breadcrumb ol>li .home:before {
  content: "\f015";
}

.appendix {
  margin-top: 2rem;
}

.aural {
  height: 1px;
  overflow: hidden;
  position: absolute;
  top: -1000px;
  width: 1px;
  margin: 0 !important;
  padding: 0 !important;
}

body,
body,
body {
  margin: 0;
  background-color: #fff;
  font-size: .9375rem;
  line-height: 1.4;
}

#content-wrapper,
#content-wrapper {
  padding: 0;
  margin-top: 12px;
  padding-left: .75rem;
  padding-right: .75rem;
  margin-bottom: 1.5rem;
}

#content-wrapper:after,
#content-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

@media print, (min-width: 45.001rem) {
  #content-wrapper,
  #content-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media screen and (max-width: 45rem) {
  #content-wrapper.hide {
    display: none;
  }

  #content-wrapper .main-content {
    margin-bottom: 1.5rem;
  }
}

.js-easypopup {
  position: relative;
  z-index: auto;
}

.js-easypopup .js-easypopup__toggler {
  cursor: pointer;
}

.js-easypopup .js-easypopup__content {
  display: none;
  position: absolute;
  z-index: 1;
  max-width: 90vw;
  box-shadow: 0 0 5px rgba(0,0,0,0.4);
  padding: .75rem;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
}

.js-easypopup .js-easypopup__content form {
  background: transparent;
  padding: 0;
}

.js-easypopup .js-easypopup__close {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
}

.js-easypopup.opened .js-easypopup__content {
  display: block;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

@font-face {
  font-family: 'FontAwesome';
  src: url(/css/xmas/bundle/8b43027f47b20503057dfbbaa9401fef.eot);
  src: url(/css/xmas/bundle/8b43027f47b20503057dfbbaa9401fef.eot?#iefix&v=4.7.0) format("embedded-opentype"),url(/css/xmas/bundle/20fd1704ea223900efa9fd4e869efb08.woff2) format("woff2"),url(/css/xmas/bundle/f691f37e57f04c152e2315ab7dbad881.woff) format("woff"),url(/css/xmas/bundle/1e59d2330b4c6deb84b340635ed36249.ttf) format("truetype"),url(/css/xmas/bundle/c1e38fd9e0e74ba58f7a2b77ef29fdd3.svg#fontawesomeregular) format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: .75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none;
}

.fa-ul>li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: .14286em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right {
  margin-left: .3em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}

.fa.pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-wheelchair-alt:before {
  content: "";
}

.fa-question-circle-o:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-volume-control-phone:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "";
}

.fa-handshake-o:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-o:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-book-o:before {
  content: "";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-circle-o:before {
  content: "";
}

.fa-user-o:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-eercast:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-snowflake-o:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

@font-face {
  font-family: 'bde';
  src: url(/css/xmas/bundle/3225f9418e5f9b41eabfe7be2b33873d.eot);
  src: url(/css/xmas/bundle/3225f9418e5f9b41eabfe7be2b33873d.eot?#iefix) format("embedded-opentype"),url(/css/xmas/bundle/79f31a31a21dd4a05d4badf512844d40.woff) format("woff"),url(/css/xmas/bundle/69cf89ccb90bb17a3ebfbb7cc802531b.ttf) format("truetype"),url(/css/xmas/bundle/96837593bfe68cada20fc029e790d949.svg#bde) format("svg");
  font-weight: normal;
  font-style: normal;
}

.display-block {
  display: block;
}

.display-none {
  display: none;
}

.flex-column--reversed {
  align-items: flex-start;
  display: flex;
  flex-direction: column-reverse;
}

.flex-column--reversed>* {
  max-width: 100%;
}

.grid {
  list-style: none;
  padding: 0;
  margin-left: -1.5rem;
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  align-items: flex-start;
  box-sizing: border-box;
}

@media print, (min-width: 45.001rem) {
  .grid>.auto {
    -webkit-flex: 1;
    flex: 1;
  }

  .grid>.grid__item.one-half {
    padding-left: 1.5rem;
    width: 100%;
    width: 50%;
  }

  .grid>.grid__item.one-third {
    padding-left: 1.5rem;
    width: 100%;
    width: 33.333%;
  }

  .grid>.grid__item.one-fourth {
    padding-left: 1.5rem;
    width: 100%;
    width: 25%;
  }

  .grid>.grid__item.three-fourths {
    padding-left: 1.5rem;
    width: 100%;
    width: 75%;
  }

  .grid>.grid__item.two-thirds {
    padding-left: 1.5rem;
    width: 100%;
    width: 66.666%;
  }

  .grid>.grid__item.one-fifth {
    padding-left: 1.5rem;
    width: 100%;
    width: 20.00%;
  }

  .grid>.grid__item.two-fifths {
    padding-left: 1.5rem;
    width: 100%;
    width: 40.00%;
  }

  .grid>.grid__item.three-fifths {
    padding-left: 1.5rem;
    width: 100%;
    width: 60.00%;
  }

  .grid>.grid__item.four-fifths {
    padding-left: 1.5rem;
    width: 100%;
    width: 80.00%;
  }

  .grid>.grid__item.one-sixth {
    padding-left: 1.5rem;
    width: 100%;
    padding-left: 1.5rem;
    width: 100%;
    width: 16.666%;
  }

  .grid>.grid__item.five-sixths {
    padding-left: 1.5rem;
    width: 100%;
    width: 83.333%;
  }
}

.grid--reversed {
  flex-direction: row-reverse;
}

.grid>.grid__item {
  padding-left: 1.5rem;
  width: 100%;
}

@media print, (min-width: 45.001rem) {
  .grid>.grid__item.flexcontent-autoheight {
    display: flex;
    flex-direction: column;
  }

  .grid>.grid__item.flexcontent-autoheight>* {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    height: 100%;
    flex-shrink: 1;
  }
}

.grid--searchpage {
  list-style: none;
  padding: 0;
  margin-left: -1.5rem;
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  align-items: flex-start;
  box-sizing: border-box;
}

.grid--searchpage>[class*="grid__item"] {
  padding-left: 1.5rem;
  width: 100%;
}

@media print, (min-width: 45.001rem) {
  .grid--searchpage>[class*="grid__item"] {
    width: 66.666%;
  }

  .grid--searchpage>[class*="grid__item"]:nth-child(2n+0) {
    width: 33.333%;
  }
}

html {
  color: #000;
  overflow-y: scroll;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "Open sans",Arial,sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

@media print {
  html {
    background-color: #fff;
  }
}

html,
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

@media print {
  * {
    page-break-inside: always;
  }
}

.grid__item.marginal {
  margin-top: 2.5em;
}

.grid__item.marginal>*:first-child {
  margin-top: 0;
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

#page-wrapper {
  border: 0px solid;
  position: relative;
  z-index: auto;
}

#page-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

#page-wrapper>.pw-inner {
  background: #fff;
  position: relative;
}

@media print, (min-width: 45.001rem) {
  #page-wrapper {
    width: 61.25rem;
    max-width: 61.25rem;
    margin: 0 auto;
  }

  #page-wrapper>.pw-inner {
    box-shadow: 0px 0px 10px 0px rgba(100,100,100,0.2);
    margin-right: 5px;
    margin-top: 5px;
  }

  #page-wrapper .fradSection.Banner,
  #page-wrapper .fradSection.HpBanner {
    text-align: center;
  }

  #page-wrapper .fradSection.Skyscraper {
    position: absolute;
    left: 100%;
    top: 0;
    z-index: 1;
    margin-left: 5px;
  }

  #page-wrapper .fradSection.Content>div {
    margin-bottom: 35px;
  }

  #page-wrapper .fradSection.Content3>ins.adsbygoogle,
  #page-wrapper .fradSection.Teaser>ins.adsbygoogle {
    margin-bottom: 2.1875rem;
  }
}

@media screen and (max-width: 45rem) {
  #page-wrapper .fradSection {
    padding-left: 1.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  #page-wrapper .fradSection>div>:first-child iframe {
    margin-bottom: 17.5px !important;
  }

  #page-wrapper .fradSection.Mobile-Bottom {
    z-index: 0;
    position: relative;
  }

  #page-wrapper .fradSection>ins.adsbygoogle {
    flex-basis: 100%;
  }

  #page-wrapper .grid>.fradSection {
    padding-left: 1.5rem;
    width: 100%;
  }
}

@media print {
  #page-wrapper {
    width: auto;
    box-shadow: none;
  }
}

@page {
  margin: 1.5cm 1cm 1cm 1cm;
}

@media print, (min-width: 45.001rem) {
  .desk-hide {
    display: none !important;
  }

  .palm-show {
    display: none !important;
  }
}

@media print, (min-width: 45.001rem) {
  .palm-show {
    display: none !important;
  }
}

@media screen and (max-width: 45rem) {
  .palm-hide {
    display: none !important;
  }

  .palm-show {
    display: inline-block !important;
  }
}

@media print, (max-width: 26.25rem) {
  .smallest-hide {
    display: none !important;
  }

  .smallest-show {
    display: inline-block !important;
  }
}

.styelguide-colors .sg-label {
  text-align: center;
  display: block;
}

.styelguide-colors .sg-label::after {
  display: block;
}

.styelguide-colors .sg-color-white {
  background-color: #fff;
}

.styelguide-colors .sg-color-black {
  background-color: #000;
}

.styelguide-colors .sg-color-grey {
  background-color: #f5f5f5;
}

.styelguide-colors .sg-color-primaryThemeColor {
  background-color: #A101C5;
}

.styelguide-colors .sg-color-secondaryThemeColor {
  background-color: #9B8E42;
}

.styelguide-colors .sg-color-tertiaryThemeColor {
  background-color: #00B4CD;
}

.styelguide-colors .sg-color-greysource {
  background-color: #555;
}

.styelguide-colors .sg-color-baseTextColor {
  background-color: #000;
}

.styelguide-colors .sg-color-lightestTextGrey {
  background-color: #555;
}

.styelguide-colors .sg-color-linkColor {
  background-color: #A101C5;
}

.styelguide-colors .sg-color-greyBorder {
  background-color: #e0e0e0;
}

.styelguide-colors .sg-color-page-background-color {
  background-color: #fff;
}

.styleguide .sg-def-p {
  display: block;
}

.styleguide .sg-def-pb {
  display: block;
}

.styleguide .sg-def-a {
  display: block;
}

.styleguide .sg-def-source {
  display: block;
}

.styleguide .sg-def-sourceDesk {
  display: block;
}

.styleguide .sg-def-sourceDesk::after {
  content: "font: normal 11px/1.2 Open sans,Arial,sans-serif; color: #e0e0e0";
}

.styleguide label {
  font-weight: bold;
}

blockquote {
  background-color: #f5f5f5;
  border-left: 5px solid #dcdcdc;
  margin-left: 1.5rem;
  padding: .75rem;
  margin-bottom: 2.1875rem;
  color: #333;
}

blockquote>*:last-child {
  margin-bottom: 0;
}

button {
  font-family: "Open sans",Arial,sans-serif;
  cursor: pointer;
}

button:focus {
  outline: 1px dotted;
}

.btn,
button.button,
.button-submit,
.button--spaced,
a.button,
.button--ghost,
.button--footer,
.button--reversed,
.button--disabled,
.button--white,
.place a.reservation,
.teaser--place a.reservation,
.form-login .form-actions .register {
  height: 36px;
  margin-bottom: 17.5px;
  box-shadow: none;
  text-decoration: none;
  padding: 4px 18px;
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
  font: inherit;
  line-height: 21px;
  text-align: center;
  cursor: pointer;
  overflow: visible;
  background: linear-gradient(134deg, #3023AE 0%, #A101C5 100%);
  color: #fff;
  border: 1px solid rgba(0,0,0,0);
  border-radius: 2em;
}

@media screen and (max-width: 45rem) {
  .btn,
  button.button,
  .button-submit,
  .button--spaced,
  a.button,
  .button--ghost,
  .button--footer,
  .button--reversed,
  .button--disabled,
  .button--white,
  .place a.reservation,
  .teaser--place a.reservation,
  .form-login .form-actions .register {
    height: 36px;
    line-height: 21px;
  }
}

.btn:focus,
button.button:focus,
.button-submit:focus,
.button--spaced:focus,
a.button:focus,
.button--ghost:focus,
.button--footer:focus,
.button--reversed:focus,
.button--disabled:focus,
.button--white:focus,
.place a.reservation:focus,
.teaser--place a.reservation:focus,
.form-login .form-actions .register:focus {
  outline: 1px dotted black;
  outline-offset: 0;
}

button.button {
  background: linear-gradient(134deg, #3023AE 0%, #A101C5 100%);
  color: #fff;
  font-weight: 700;
}

button.button:hover,
button.button:focus {
  background: #b601de;
}

.button-submit {
  background: linear-gradient(134deg, #3023AE 0%, #A101C5 100%);
  color: #fff;
}

.button-submit:hover,
.button-submit:focus {
  background: #b601de;
}

button.searchmore,
.button--pagination {
  margin-bottom: 2.1875rem;
  border: 1px solid #e0e0e0;
  color: #A101C5;
  font-size: 15px;
  text-align: center;
  padding: 0.4em 0.75em 0.3em 0.75em;
  display: inline-block;
  text-decoration: none;
  background: #fff;
  outline-color: black;
  width: 100%;
  text-align: center;
  min-height: 2.25rem;
}

@media screen and (max-width: 45rem) {
  button.searchmore,
  .button--pagination {
    min-height: 2.25rem;
  }
}

button.searchmore:hover,
button.searchmore:active,
.button--pagination:hover,
.button--pagination:active {
  background: #f5f5f5;
  color: #A101C5;
}

button.searchmore::after,
.button--pagination::after {
  content: "\f078";
  font-family: FontAwesome;
  margin-left: 0.55em;
}

.button--spaced {
  width: 100%;
  display: block;
}

a.button {
  color: #fff;
  font-weight: 700;
  line-height: 21px;
}

a.button:hover,
a.button:focus {
  text-decoration: none;
  background: #b601de;
}

.button--footer {
  display: inline-block;
  padding: 5px 12px;
}

.button--ghost,
.button--footer {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 700;
  opacity: 1;
}

.button--ghost:hover,
.button--footer:hover,
.button--ghost:focus,
.button--footer:focus {
  opacity: 0.8;
  background: transparent;
  text-decoration: none;
  outline-color: #fff;
}

.button--reversed {
  background: #fff;
  border: 2px solid #A101C5;
  color: #A101C5;
  font-weight: normal;
  opacity: 1;
}

.button--reversed:hover,
.button--reversed:focus {
  background: #f5f5f5;
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}

.button--disabled {
  background: transparent;
  border: 1px solid #D5D5D5;
  color: #D5D5D5;
  font-weight: normal;
  opacity: 1;
  cursor: not-allowed;
}

.button--white {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
  font-weight: normal;
  opacity: 0.9;
}

.button--white:hover,
.button--white:focus {
  opacity: 1;
  color: #000;
  background: #fff;
  outline-color: #fff;
}

button.link,
input.link {
  background: transparent;
  border: 0 none;
  color: #A101C5;
  padding: 0;
  margin: 0;
  text-align: left;
  height: auto;
  cursor: pointer;
  font-size: 1em;
}

button.link:hover,
input.link:hover {
  text-decoration: underline;
}

button.link:focus,
button.link:active,
input.link:focus,
input.link:active {
  outline: 1px dotted;
}

.button-booking {
  font-size: .9375rem;
  background: linear-gradient(134deg, #3023AE 0%, #A101C5 100%);
  border-color: #8c01ac;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  line-height: 1;
  padding: 0.4rem 0.625rem 0.15rem 0.625rem;
  border-width: 0 0 0.313rem 0;
  border-style: solid;
  border-radius: 2em;
  height: auto;
  text-align: center;
  height: 2.25rem;
  text-decoration: none;
  text-shadow: none;
  width: auto;
  white-space: nowrap;
  margin: 0;
  cursor: pointer;
}

@media screen and (max-width: 45rem) {
  .button-booking {
    height: 2.25rem;
  }
}

.button-booking:hover,
.button-booking:focus {
  background: #b601de;
  text-decoration: none;
  outline-color: #000;
}

.button-booking .text::after,
.button-booking .text::before {
  line-height: inherit;
  display: inline-block;
  font-family: FontAwesome;
  font-feature-settings: normal;
  font-kerning: auto;
  font-language-override: normal;
  font-size: inherit;
  font-size-adjust: none;
  font-stretch: normal;
  font-style: normal;
  font-synthesis: weight style;
  font-variant: normal;
  font-weight: normal;
  text-rendering: auto;
  transform: translate(0px, 0px);
}

.button-booking .text::before {
  content: "\f07a";
  opacity: 0.60;
  margin-right: 0.65em;
}

.button-booking .text:after {
  content: "\f105";
  font-size: 1.2em;
  margin-left: 0.55em;
  line-height: 0.5em;
}

.button-booking.clean .text::before {
  content: "";
  margin-right: 0.35em;
}

.button-booking.search .text::before {
  content: "\f002";
}

.button-booking * {
  vertical-align: -3px;
}

.button-booking .price {
  border-right: 1px solid rgba(255,255,255,0.6);
  margin-right: 0.267em;
  padding-right: 0.700em;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.button-booking .bicon {
  opacity: 0.65;
}

.button-booking .fa-chevron-right {
  font-size: 11px;
  font-size: 0.688rem;
}

@media screen and (max-width: 45rem) {
  a.button-booking {
    padding-top: 0.5em;
  }
}

.button-tickethotline>* {
  margin-bottom: 0;
}

.formfilter.hide {
  visibility: hidden;
  overflow: hidden;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: 0 none;
  display: inline-block;
}

.formfilter--checkbox {
  background-color: #fff;
  padding: .25em 2em .25em .5em;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  border: 1px solid #cfcfcf;
  position: relative;
  display: inline-block;
}

.formfilter--checkbox.hide {
  visibility: hidden;
  overflow: hidden;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: 0 none;
  display: flex;
  position: absolute;
  z-index: -1;
}

.formfilter--checkbox .close {
  padding: 0.25em 0.5em;
  border: 0px solid;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
}

.formfilter--checkbox .close:after {
  font-family: FontAwesome;
  content: "\f00d";
  display: inline-block;
}

.formfilter--checkbox input[type=checkbox]:disabled+label+.close {
  cursor: not-allowed;
}

.formfilter--checkbox input[type=checkbox]:disabled+label+.close:after {
  color: #D5D5D5;
}

.formfilter--checkbox input.hide {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

@media screen and (max-width: 45rem) {
  .formfilter--checkbox {
    display: block;
    margin-right: 0em;
  }
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: bold;
  color: #000;
  border: 0 none;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  font-weight: inherit;
}

h1.heading--bluebox,
h2.heading--bluebox,
h3.heading--bluebox,
h4.heading--bluebox,
h5.heading--bluebox {
  font-size: 1rem;
  background-color: #3023AE;
  color: #fff !important;
  padding: 0.425rem 0.625rem;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: normal;
}

h1.heading--bluebox a,
h2.heading--bluebox a,
h3.heading--bluebox a,
h4.heading--bluebox a,
h5.heading--bluebox a {
  color: #fff;
}

h1.heading--bluebox+form,
h2.heading--bluebox+form,
h3.heading--bluebox+form,
h4.heading--bluebox+form,
h5.heading--bluebox+form {
  border-top: 0 none;
}

h1 {
  font-size: 28px;
  color: #000;
  font-family: "Contrail One",Arial,sans-serif;
  margin-top: 0;
  margin: 0 0 24px 0;
  line-height: 36px;
  font-style: normal;
  font-weight: 400;
}

h1 a {
  color: #000;
}

@media print {
  h1 {
    page-break-after: avoid !important;
  }
}

h2 {
  font-size: 18px;
  color: #9B8E42;
  font-family: "Contrail One",Arial,sans-serif;
  margin-top: 1em;
  margin: 1em 0 0.8em 0;
  line-height: 24px;
  font-style: normal;
  font-weight: 400;
}

h2 a {
  color: #9B8E42;
}

@media print {
  h2 {
    page-break-before: auto;
    page-break-after: avoid !important;
  }
}

h3,
.h3 {
  font-size: 18px;
  margin-top: 1.5em;
  margin-bottom: 0.45em;
  line-height: 24px;
  color: #000;
  font-weight: 400;
  font-style: normal;
  font-family: "Contrail One",Arial,sans-serif;
}

h3 a,
.h3 a {
  color: #000;
}

@media print {
  h3,
  .h3 {
    page-break-before: auto;
    page-break-after: avoid !important;
  }
}

h4,
.h4 {
  font-size: 15px;
  margin-top: 1em;
  margin-bottom: 0.4em;
  color: #000;
  font-weight: 700;
  font-style: normal;
  font-family: "Open Sans",sans-serif,Arial;
}

h4 a,
.h4 a {
  color: #000;
}

@media print {
  h4,
  .h4 {
    page-break-after: avoid;
  }
}

.heading-navigation {
  font-size: 18px;
  margin-top: 1.5em;
  margin-bottom: 0.45em;
  line-height: 24px;
  color: #000;
  font-weight: 400;
  font-style: normal;
  font-family: "Contrail One",Arial,sans-serif;
  margin-top: 0;
}

.heading-navigation a {
  color: #000;
}

@media print {
  .heading-navigation {
    page-break-before: auto;
    page-break-after: avoid !important;
  }
}

.add-sectionborder {
  border-bottom: 5px solid #e0e0e0;
  margin-top: 0;
  margin-bottom: 0.6rem;
  padding-bottom: 0.2rem;
}

.heading-sectiontitle {
  font-family: "Contrail One",Arial,sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 1em;
  margin-top: 0;
  border-bottom: 2px solid #9B8E42;
}

.heading-sectiontitle a {
  color: #9B8E42;
}

.heading-sectiontitle .text {
  display: inline-block;
  background-color: rgba(0,0,0,0);
  color: #9B8E42;
  padding: 2px 6px;
}

.heading--formsection {
  margin-top: 2em;
  margin-bottom: 0.7em;
  font-size: 20px;
  font-style: normal;
  color: #A101C5;
  font-family: "Contrail One",Arial,sans-serif;
  font-weight: 400;
}

.heading-channel {
  font-family: "Contrail One",Arial,sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 1em;
  margin-top: 0;
  border-bottom: 2px solid #9B8E42;
}

.heading-channel a {
  color: #9B8E42;
}

.heading-channel .text {
  display: inline-block;
  background-color: rgba(0,0,0,0);
  color: #9B8E42;
  padding: 2px 6px;
}

.heading-resultcounter {
  margin-top: 3.625rem;
  margin-bottom: 1.75rem;
  font-weight: normal;
  font-size: 15px;
  color: #000;
}

.heading--places {
  margin-bottom: 0.45em;
}

.heading--article+.subheading--article {
  margin-top: -0.75em;
}

.subheading--article {
  font-size: 1.125rem;
  color: #555;
  margin: 1em 0 0.5em 0;
}

.subheading {
  font-size: 11px;
  font-weight: bold;
  line-height: 1.4em;
  margin-bottom: 0.4em;
  margin-top: -3px;
}

@media screen and (max-width: 45rem) {
  .heading-channel.land:before {
    bottom: -3.9vw;
    background-size: 160vw auto;
  }
}

.fa-icon {
  font-family: FontAwesome;
}

[class*='bdeicon'] {
  position: relative;
}

[class*='bdeicon']::before,
[class*='bdeicon']::after {
  display: inline-block;
  font-family: 'bde';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class*='bdeicon']::before {
  text-decoration: underline;
}

[class*='bdeicon']:before,
[class*='bdeicon']:hover:before {
  text-decoration: none;
}

.bdeicon-kultur:before {
  content: '\0031';
}

.bdeicon-befi:before {
  content: '\0032';
}

.bdeicon-sbahn:before {
  content: '\0073';
  color: #006F35;
}

.bdeicon-tram:before {
  content: '\0074';
  color: #CC0000;
}

.bdeicon-bus:before {
  content: '\0062';
  color: #A3007C;
}

.bdeicon-ubahn:before {
  content: '\0075';
  color: #0664AB;
}

.bdeicon-metrobus:before {
  content: '\006D';
  color: #F47920;
}

.bdeicon-faehre:before {
  content: '\0066';
  color: #0080C0;
}

.bdeicon-bahn:before {
  content: '\007A';
  color: #DA251D;
}

.bdeicon-roadclosure:before {
  content: '\006F';
  color: #DA251D;
}

.bdeicon-warning::before {
  content: '\0061';
  color: #9F0732;
}

.bdeicon-warning::after {
  content: '\0021';
  color: #000000;
  margin-left: -1em;
}

.bdeicon-roadworks::before {
  content: '\0061';
  color: #9F0732;
}

.bdeicon-roadworks::after {
  content: '\0077';
  color: #000000;
  margin-left: -1em;
}

.wettericon {
  background: url(/css/xmas/bundle/d683b02309c124372cce5a4a730d5a4f.png) 0 0 no-repeat;
  height: 32px;
  width: 32px;
  display: inline-block;
  overflow: hidden;
}

.wettericon.wind-dir-n {
  background-position: 0 -513px;
}

.wettericon.wind-dir-nw {
  background-position: 0 -449px;
}

.wettericon.wind-dir-w {
  background-position: 0 -385px;
}

.wettericon.wind-dir-sw {
  background-position: 0 -321px;
}

.wettericon.wind-dir-s {
  background-position: 0 -257px;
}

.wettericon.wind-dir-so {
  background-position: 0 -193px;
}

.wettericon.wind-dir-o {
  background-position: 0 -130px;
}

.wettericon.wind-dir-no {
  background-position: 0 -66px;
}

.wettericon.rain {
  background-position: 0 -1976px;
}

.wettericon.sun {
  background-position: 0 -2022px;
}

.wettericon.sunrise {
  background-position: 0 -640px;
}

.wettericon.sunset {
  background-position: 0 -704px;
}

.wettericon.tempmin {
  background-position: 0 -769px;
}

.wettericon.tempmax {
  background-position: 0 -896px;
}

.wettericon.wind0,
.wettericon.wind1,
.wettericon.wind2 {
  background-position: 0 -966px;
}

.wettericon.wind3,
.wettericon.wind4 {
  background-position: 0 -1027px;
}

.wettericon.wind5,
.wettericon.wind6 {
  background-position: 0 -1092px;
}

.wettericon.wind7,
.wettericon.wind8 {
  background-position: 0 -1158px;
}

.wettericon.wind9,
.wettericon.wind10,
.wettericon.wind11,
.wettericon.wind12,
.wettericon.wind13 {
  background-position: 0 -1285px;
}

figure {
  margin: 0;
}

img {
  max-height: 100%;
  max-width: 100%;
  border: 0;
}

.image img,
.mainimage img {
  width: 100%;
  max-width: 100%;
}

.image .caption,
.mainimage .caption {
  margin: 0;
}

.image {
  overflow: visible;
}

a {
  text-decoration: none;
  color: #A101C5;
  font-weight: normal;
}

a:hover,
a:focus {
  text-decoration: underline;
}

a:focus {
  outline: 1px dotted;
  outline-offset: 0px;
}

a p {
  color: #000;
}

a.readmore {
  color: #A101C5;
  display: inline;
  white-space: nowrap;
  font-family: "Contrail One",Arial,sans-serif;
}

a.readmore::after {
  content: "»";
  display: inline-block;
  width: 0.8em;
  height: 1em;
  margin-left: 0.2em;
  line-height: 0.8em;
  text-align: center;
  text-decoration: underline;
}

a.readmore:after,
a.readmore:hover:after {
  text-decoration: none;
}

a.fa:hover,
a.fa:focus {
  text-decoration: none;
}

a.right {
  float: right;
}

a::after {
  text-decoration: underline;
}

a:after,
a:hover:after {
  text-decoration: none;
}

.link-citymap::before {
  display: inline-block;
  font-family: FontAwesome;
  line-height: 1;
  font-size: inherit;
  content: "\f041";
  margin-right: 0.5em;
  text-decoration: underline;
}

.link-citymap:before,
.link-citymap:hover:before {
  text-decoration: none;
}

.link--berlinmail::before {
  display: inline-block;
  font-family: FontAwesome;
  line-height: 1;
  font-size: inherit;
  content: "\f0e0";
  margin-right: 0.5em;
  text-decoration: underline;
}

.link--berlinmail:before,
.link--berlinmail:hover:before {
  text-decoration: none;
}

.link--homepage-breaker {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  display: block;
  padding: 0.7em;
  margin: 1.5em 0 1.7em 0;
}

.link--homepage-breaker::before {
  content: "\f109";
  display: inline-block;
  font-family: FontAwesome;
  font-size: 1.0em;
  margin-right: 1.5em;
  vertical-align: -0.05em;
}

.link--befi-register {
  margin: 35px 0;
  display: block;
}

.link--clear-befi-filter {
  padding: 0.286em 0.643em;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  color: #000;
  margin: 0.5em 0.5em 0.5em 0em;
  white-space: nowrap;
  display: inline-block;
}

.link--clear-befi-filter:hover {
  text-decoration: none;
  background: #f5f5f5;
}

.link--clear-befi-filter::after {
  color: #000;
  font-family: FontAwesome;
  content: "\f00d";
  padding: 0 0 0 5px;
  display: inline-block;
}

.link--download {
  display: inline-block;
  margin-right: 0.5em;
}

.link--download::before {
  color: #777777;
  content: "\f016";
  display: inline-block;
  font-family: FontAwesome;
  font-size: 1.0em;
  margin-right: 0.5em;
  vertical-align: -0.05em;
}

.link--addcompany {
  margin: 0.5em 0 1em 0;
  display: flex;
}

.link--addcompany::before {
  content: "\f0fe";
  font-family: FontAwesome;
  margin-right: 0.5em;
  display: inline-block;
}

.link--addcompany.bordered {
  border: 1px solid #e0e0e0;
  padding: 0.3em;
  text-align: center;
  display: block;
  font-size: 1rem;
  margin-bottom: 2.1875rem;
}

.link--addcompany.align-right {
  text-align: right;
  display: block;
}

dt {
  font-weight: bold;
}

ul {
  padding-inline-start: 1.2em;
  padding-left: 1.2em;
  margin-bottom: 1.09375rem;
  margin-top: 0;
  list-style-image: none;
}

ul li {
  margin-left: 0;
  line-height: 1.3em;
  margin-bottom: 0.5em;
}

ul>li.grid__item {
  padding-left: 1.5rem;
}

ul>li.grid__item::before {
  display: none;
}

ul.nav {
  list-style: none;
  padding-left: 0;
}

ol {
  padding-inline-start: 0.5em;
  padding-left: 0.5em;
}

ol li {
  margin-left: 0.7em;
}

.list--downloads {
  margin-left: 0;
  padding: 0;
  list-style: none;
}

.list--downloads>li {
  margin-left: 0;
  padding-left: 1em;
}

.list--downloads>li::before {
  margin-left: -1.3em;
  color: inherit;
  content: "";
  display: inline-block;
  float: left;
  font-size: .75rem;
  height: 1em;
  vertical-align: baseline;
  font-family: FontAwesome;
  height: 1em;
  width: 1.3em;
  text-indent: 0;
}

ul.list--checklist {
  margin-left: 0;
  padding: 0;
  list-style: none;
}

ul.list--checklist>li {
  margin-left: 0;
  padding-left: 1em;
}

ul.list--checklist>li::before {
  margin-left: -1.3em;
  color: green;
  content: "";
  display: inline-block;
  float: left;
  font-size: .75rem;
  height: 1em;
  vertical-align: baseline;
  font-family: FontAwesome;
  height: 1em;
  width: 1.3em;
  text-indent: 0;
}

.list-footer-portallinks {
  padding-left: 0;
  list-style: none;
  display: table;
  padding: 0;
  margin: 0 0 0.5em 0;
  list-style: none;
  line-height: 21px;
  font-size: .75rem;
  margin: 24px 0 0 0;
  padding: 0px;
}

.list-footer-portallinks:after {
  content: "";
  display: table;
  clear: both;
}

.list-footer-portallinks>li {
  padding-left: 0;
}

.list-footer-portallinks>li::before {
  content: "" !important;
  margin: 0 !important;
  display: none !important;
}

.list-footer-portallinks li {
  float: none;
  display: inline;
  line-height: 1.3125rem;
  margin: 0 0.25em 0 0;
  padding-left: 0 !important;
}

.list-footer-portallinks li {
  margin: 0 1.2em 0 0;
  padding: 0 1.2em 0 0;
  border-right: 1px solid #000;
}

.list-footer-portallinks li:last-child {
  margin-right: 0;
  padding-right: 0;
  border: 0 none;
}

ul.list--horizontal {
  padding-left: 0;
  list-style: none;
  display: table;
  padding: 0;
  margin: 0 0 0.5em 0;
  list-style: none;
  line-height: 21px;
}

ul.list--horizontal:after {
  content: "";
  display: table;
  clear: both;
}

ul.list--horizontal>li {
  padding-left: 0;
}

ul.list--horizontal>li::before {
  content: "" !important;
  margin: 0 !important;
  display: none !important;
}

ul.list--horizontal li {
  float: none;
  display: inline;
  line-height: 1.3125rem;
  margin: 0 0.25em 0 0;
  padding-left: 0 !important;
}

ul.list--horizontal-border {
  padding-left: 0;
  list-style: none;
  display: table;
  padding: 0;
  margin: 0 0 0.5em 0;
  list-style: none;
  line-height: 21px;
}

ul.list--horizontal-border:after {
  content: "";
  display: table;
  clear: both;
}

ul.list--horizontal-border>li {
  padding-left: 0;
}

ul.list--horizontal-border>li::before {
  content: "" !important;
  margin: 0 !important;
  display: none !important;
}

ul.list--horizontal-border li {
  float: none;
  display: inline;
  line-height: 1.3125rem;
  margin: 0 0.25em 0 0;
  padding-left: 0 !important;
}

ul.list--horizontal-border li>*::after {
  content: "|";
  display: inline-block;
  margin-left: 0.5em;
  line-height: 1.25;
}

ul.list--horizontal-border li:last-child>*:after {
  content: "";
  margin-left: 0em;
}

@media screen and (max-width: 45rem) {
  .list-footer-portallinks {
    margin-left: 0;
  }

  .list-footer-portallinks li {
    margin-bottom: 2em;
    display: inline-block;
  }
}

@media print, (min-width: 45.001rem) {
  ul.list--double {
    display: flex;
    flex-wrap: wrap;
  }

  ul.list--double>li {
    vertical-align: top;
    width: 50%;
    padding-right: 1em;
  }
}

@media print, (min-width: 45.001rem) {
  ul.list--triple {
    display: flex;
    flex-wrap: wrap;
  }

  ul.list--triple>li {
    vertical-align: top;
    width: 33.33%;
    padding-right: 1em;
  }
}

ul.list--half {
  column-count: 1;
}

ul.list--half>li {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}

@media print, (min-width: 45.001rem) {
  ul.list--half {
    column-count: 2;
    padding-left: 0;
  }

  ul.list--half li {
    list-style-position: outside;
    margin-left: 1.1em;
  }

  ul.list--half li .nowidows {
    display: table-cell;
  }
}

ul.list--bullets>li {
  line-height: 1.3em;
  margin-bottom: 0.5em;
  margin-left: 0;
  padding-left: 1em;
}

ul.list--bullets>li::before {
  content: "\f111";
  font-size: 0.5em;
  vertical-align: 0.3em;
  text-indent: -0.5em;
  color: #000;
  margin-left: -1.3em;
  display: inline-block;
  float: none;
  height: 1em;
  line-height: 1em;
  font-family: FontAwesome;
  height: 1em;
  width: 1.3em;
}

ul.list--clean {
  padding-left: 0;
  list-style: none;
}

ul.list--clean>li {
  padding-left: 0;
}

ul.list--clean>li::before {
  content: "" !important;
  margin: 0 !important;
  display: none !important;
}

.dl--horizontal {
  display: table;
}

@media print, (max-width: 26.25rem) {
  .dl--horizontal {
    display: unset;
  }
}

.dl--horizontal dt {
  float: left;
  margin: 0 0.5em 0 0;
  display: unset;
  color: #000;
  font-weight: 700;
}

.dl--horizontal dd {
  margin: 0 0 0.5em 0;
  display: initial;
}

.dl--horizontal dd:after {
  content: "";
  display: table;
  clear: both;
  margin-bottom: 0.2em;
}

.text ul.decoda-list {
  margin-bottom: 0;
}

li.highlight>a {
  font-weight: 700;
}

.message,
.message--error,
.message--success,
.message--info,
.message--darkgrey {
  color: #000;
  background-color: #fcf8e3;
  padding: .75rem;
  margin-top: 1.09375rem;
  margin-bottom: 1.09375rem;
}

.message:after,
.message--error:after,
.message--success:after,
.message--info:after,
.message--darkgrey:after {
  content: "";
  display: table;
  clear: both;
}

.message>*:first-child,
.message--error>*:first-child,
.message--success>*:first-child,
.message--info>*:first-child,
.message--darkgrey>*:first-child {
  margin-top: 0;
}

.message>*:last-child,
.message--error>*:last-child,
.message--success>*:last-child,
.message--info>*:last-child,
.message--darkgrey>*:last-child {
  margin-bottom: 0;
}

.message:before,
.message--error:before,
.message--success:before,
.message--info:before,
.message--darkgrey:before {
  font-family: FontAwesome;
  display: inline-block;
  content: "";
  float: left;
  font-size: 1.3em;
  width: auto;
  margin: 0;
  padding: 0;
  line-height: 1.1em;
}

.message--error {
  background-color: #f2dede;
}

.message--error>*,
.message--error>p,
.message--error>h4 {
  margin-left: 2em;
}

.message--error:before {
  content: "\f071";
  color: #9F0732;
}

.message--success {
  background-color: #dff0d8;
}

.message--success>*,
.message--success>p,
.message--success>h4 {
  margin-left: 2em;
}

.message--success:before {
  content: "\f00c";
  color: green;
}

.message--info {
  background-color: #fcf8e3;
}

.message--info>*,
.message--info>p,
.message--info>h4 {
  margin-left: 2em;
}

.message--info:before {
  content: "\f05a";
  color: #FFBF00;
}

.message--darkgrey {
  background-color: #e0e0e0;
}

p {
  margin-top: 0;
  margin-bottom: .7em;
}

p+h4 {
  margin-top: 1.357em;
}

.introtext {
  margin-top: 1em;
  margin-bottom: 1em;
  font-weight: bold;
}

.paragraph {
  margin-bottom: 1.25rem;
}

small {
  display: inline-block;
  line-height: 1.4;
  margin-bottom: 1em;
  font-size: .6875rem;
}

p a,
.inner a {
  word-wrap: break-word;
}

.text-light {
  color: #555;
}

.text-small {
  font-size: .6875rem;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

.disclaimer {
  color: #555;
  font-size: .6875rem;
  margin-top: 1.09375rem;
  margin-bottom: 2.1875rem;
}

p.keywords {
  color: #555;
  font-size: .6875rem;
  margin-top: 1.09375rem;
  margin-bottom: 2.1875rem;
}

.article-maintext {
  margin-bottom: 2.1875rem;
  margin-top: 1.09375rem;
}

.image-caption {
  font-size: .75rem;
  font-weight: bold;
  line-height: 1.4em;
  margin-bottom: 1.2em;
}

.bbcode h2,
.bbcode h3,
.bbcode h4,
.bbcode h5,
.bbcode h6 {
  margin: 0;
  padding: 0;
}

.source {
  color: #555;
  display: inline-block;
}

.source a {
  color: inherit;
}

.sources-text {
  color: #555;
  display: inline-block;
  font-size: .6875rem;
}

.sources-text a {
  color: inherit;
}

.sources-images {
  color: #555;
  display: inline-block;
  font-size: .6875rem;
}

.sources-images a {
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.table--base,
.table--bordered,
.table--bordered-light,
.table--zebra,
.table--grey,
.table--collapse {
  margin-bottom: 2.1875rem;
}

.table--base td,
.table--bordered td,
.table--bordered-light td,
.table--zebra td,
.table--grey td,
.table--collapse td,
.table--base th,
.table--bordered th,
.table--bordered-light th,
.table--zebra th,
.table--grey th,
.table--collapse th {
  text-align: left;
  padding: 0.3em 0.3em;
  text-align: left;
  vertical-align: top;
}

.table--base .cell--max,
.table--bordered .cell--max,
.table--bordered-light .cell--max,
.table--zebra .cell--max,
.table--grey .cell--max,
.table--collapse .cell--max {
  width: 100%;
}

.table--base .cell--min,
.table--bordered .cell--min,
.table--bordered-light .cell--min,
.table--zebra .cell--min,
.table--grey .cell--min,
.table--collapse .cell--min {
  max-width: 0;
}

.table--base .cell--nowrap,
.table--bordered .cell--nowrap,
.table--bordered-light .cell--nowrap,
.table--zebra .cell--nowrap,
.table--grey .cell--nowrap,
.table--collapse .cell--nowrap {
  white-space: nowrap;
}

.table--base .wrap,
.table--bordered .wrap,
.table--bordered-light .wrap,
.table--zebra .wrap,
.table--grey .wrap,
.table--collapse .wrap,
.table--base.wrap,
.wrap.table--bordered,
.wrap.table--bordered-light,
.wrap.table--zebra,
.wrap.table--grey,
.wrap.table--collapse {
  white-space: initial;
}

.table--base .wrap td,
.table--bordered .wrap td,
.table--bordered-light .wrap td,
.table--zebra .wrap td,
.table--grey .wrap td,
.table--collapse .wrap td,
.table--base .wrap th,
.table--bordered .wrap th,
.table--bordered-light .wrap th,
.table--zebra .wrap th,
.table--grey .wrap th,
.table--collapse .wrap th,
.table--base.wrap td,
.wrap.table--bordered td,
.wrap.table--bordered-light td,
.wrap.table--zebra td,
.wrap.table--grey td,
.wrap.table--collapse td,
.table--base.wrap th,
.wrap.table--bordered th,
.wrap.table--bordered-light th,
.wrap.table--zebra th,
.wrap.table--grey th,
.wrap.table--collapse th {
  white-space: initial;
}

.table-responsive-wrapper {
  margin-bottom: 2.1875rem;
  overflow-x: visible;
  border: 0px solid #e0e0e0;
  overflow-y: hidden;
  width: 100%;
  min-height: 0.01%;
  padding: 0;
}

.table-responsive-wrapper table {
  width: 100%;
  margin-bottom: 0;
}

.table--bordered th,
.table--bordered td {
  border: 1px solid #e0e0e0;
}

.table--bordered tfoot td {
  border-width: 1px 0 0 0;
}

.table--bordered-light th,
.table--bordered-light td {
  border-bottom: 1px solid #f0f0f0;
}

.table--bordered-light tr:last-child th,
.table--bordered-light tr:last-child td {
  border-bottom: 0 none;
}

.table--zebra tr:nth-child(odd) td {
  background-color: #f5f5f5;
}

.table--grey td,
.table--grey th {
  background-color: #F8F8F8;
  border: 1px solid #fff;
}

.table--grey tfoot td {
  background-color: transparent;
}

@media screen and (max-width: 45rem) {
  .table--collapse {
    display: block;
  }

  .table--collapse thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .table--collapse tr {
    display: block;
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid #e0e0e0;
  }

  .table--collapse td,
  .table--collapse th {
    display: inline-block;
    width: 100%;
    border: none;
  }

  .table--collapse td::before {
    content: attr(data-label);
    display: inline;
    font-weight: bold;
  }

  .table--collapse.table--zebra tr {
    margin-bottom: 0;
    border: 0 none;
    padding: 0;
  }

  .table--collapse.table--bordered tr {
    margin-bottom: 0em;
    padding: 1em;
    border: 1px solid #e0e0e0;
    border-width: 1px 1px 0 1px;
  }

  .table--collapse.table--bordered tr:last-child {
    border-bottom-width: 1px;
  }

  .table--collapse.table--bordered-light tr {
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid #e0e0e0;
  }
}

html[lang="en"] body .ad::before {
  content: "AD";
}

html[lang="fr"] body .ad::before {
  content: "Annonce";
}

html[lang="it"] body .ad::before {
  content: "Annuncio";
}

@media print, (min-width: 45.001rem) {
  .clearimagefloat>article>.image,
  .clearimagefloat>section>.image,
  .one-half:not(.marginal)>article>.image,
  .one-half:not(.marginal)>section>.image,
  .one-third:not(.marginal)>article>.image,
  .one-third:not(.marginal)>section>.image,
  .channelsection .grid__item>article>.image,
  .channelsection .grid__item>section>.image {
    width: 100%;
    max-width: none;
    height: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: .75rem;
  }

  .clearimagefloat>article.ad,
  .clearimagefloat>article[class*="cv-lnk-"],
  .clearimagefloat>section.ad,
  .clearimagefloat>section[class*="cv-lnk-"],
  .one-half:not(.marginal)>article.ad,
  .one-half:not(.marginal)>article[class*="cv-lnk-"],
  .one-half:not(.marginal)>section.ad,
  .one-half:not(.marginal)>section[class*="cv-lnk-"],
  .one-third:not(.marginal)>article.ad,
  .one-third:not(.marginal)>article[class*="cv-lnk-"],
  .one-third:not(.marginal)>section.ad,
  .one-third:not(.marginal)>section[class*="cv-lnk-"],
  .channelsection .grid__item>article.ad,
  .channelsection .grid__item>article[class*="cv-lnk-"],
  .channelsection .grid__item>section.ad,
  .channelsection .grid__item>section[class*="cv-lnk-"] {
    border-top: 0 none;
    border-bottom: 0 none;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
  }

  .clearimagefloat>article.ad::before,
  .clearimagefloat>article[class*="cv-lnk-"]::before,
  .clearimagefloat>section.ad::before,
  .clearimagefloat>section[class*="cv-lnk-"]::before,
  .one-half:not(.marginal)>article.ad::before,
  .one-half:not(.marginal)>article[class*="cv-lnk-"]::before,
  .one-half:not(.marginal)>section.ad::before,
  .one-half:not(.marginal)>section[class*="cv-lnk-"]::before,
  .one-third:not(.marginal)>article.ad::before,
  .one-third:not(.marginal)>article[class*="cv-lnk-"]::before,
  .one-third:not(.marginal)>section.ad::before,
  .one-third:not(.marginal)>section[class*="cv-lnk-"]::before,
  .channelsection .grid__item>article.ad::before,
  .channelsection .grid__item>article[class*="cv-lnk-"]::before,
  .channelsection .grid__item>section.ad::before,
  .channelsection .grid__item>section[class*="cv-lnk-"]::before {
    top: -1.5em;
  }

  .clearimagefloat>article.special,
  .clearimagefloat>section.special,
  .one-half:not(.marginal)>article.special,
  .one-half:not(.marginal)>section.special,
  .one-third:not(.marginal)>article.special,
  .one-third:not(.marginal)>section.special,
  .channelsection .grid__item>article.special,
  .channelsection .grid__item>section.special {
    border-top: 0 none;
    border-bottom: 0 none;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
  }
}

.accordion {
  overflow: hidden;
  margin-bottom: 2.1875rem;
}

.accordion>*:last-child {
  margin-bottom: 0;
}

.accordion .accordion-trigger {
  background: none;
  display: block;
  cursor: pointer;
  font-size: 15px;
  font-weight: normal;
  position: relative;
  width: 100%;
  text-align: left;
  margin: 0;
  padding: 0.5em;
  margin-bottom: 5px;
  border: 1px solid #eee;
  border-radius: 2px 2px 0px 0px;
}

.accordion .accordion-trigger:hover {
  background: #fdfdfd;
}

.accordion .accordion-trigger:focus,
.accordion .accordion-trigger:hover {
  outline-offset: -5px;
}

.accordion .accordion-trigger:before {
  font-family: FontAwesome;
  content: "\f078";
  float: right;
  color: #000;
}

.accordion .accordion-trigger[aria-expanded="true"] {
  box-shadow: 0 2px 2px rgba(210,210,210,0.1);
  margin-bottom: 0px;
  border-radius: 0.1em 0.1em 0 0;
}

.accordion .accordion-trigger[aria-expanded="true"]:before {
  content: "\f077";
}

.accordion .accordion-panel {
  margin: 0;
  margin-bottom: .3125rem;
  padding: 0.8em 0.5em 1.0em 0.5em;
  border: 1px solid #eee;
  border-width: 0 1px 1px 1px;
  background: #f2f3f3;
  border-radius: 0 0 0.1em 0.1em;
}

.accordion .accordion-panel[hidden] {
  display: none;
}

.accordion .accordion-panel>*:last-child {
  margin-bottom: 0;
}

.adventskalender:after {
  content: "";
  display: table;
  clear: both;
}

.adventskalender ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: -10px;
}

.adventskalender ul>li {
  display: block;
  position: static;
  float: left;
  margin: 10px;
}

.adventskalender ul>li a {
  height: 67px;
  width: 90px;
  background-repeat: no-repeat;
  display: block;
}

.adventskalender .closed {
  background: url(/css/xmas/bundle/c745d415faecdfc6f07cdb20fd0b8ef6.png);
}

.adventskalender .opened {
  background: url(/css/xmas/bundle/7c860304b368b05fd9046541ca819960.png);
}

.adventskalender .backpos_1 {
  background-position: -8px 0;
}

.adventskalender .backpos_2 {
  background-position: -81px -74px;
}

.adventskalender .backpos_3 {
  background-position: -12px -151px;
}

.adventskalender .backpos_4 {
  background-position: -80px -226px;
}

.adventskalender .backpos_5 {
  background-position: -11px -305px;
}

.adventskalender .backpos_6 {
  background-position: -79px -385px;
}

.adventskalender .backpos_7 {
  background-position: -10px -461px;
}

.adventskalender .backpos_8 {
  background-position: -79px -537px;
}

.adventskalender .backpos_9 {
  background-position: -9px -618px;
}

.adventskalender .backpos_10 {
  background-position: -81px -690px;
}

.adventskalender .backpos_11 {
  background-position: -10px -771px;
}

.adventskalender .backpos_12 {
  background-position: -81px -846px;
}

.adventskalender .backpos_13 {
  background-position: -11px -922px;
}

.adventskalender .backpos_14 {
  background-position: -80px -1001px;
}

.adventskalender .backpos_15 {
  background-position: -11px -1078px;
}

.adventskalender .backpos_16 {
  background-position: -81px -1154px;
}

.adventskalender .backpos_17 {
  background-position: -11px -1231px;
}

.adventskalender .backpos_18 {
  background-position: -81px -1309px;
}

.adventskalender .backpos_19 {
  background-position: -10px -1385px;
}

.adventskalender .backpos_20 {
  background-position: -84px -1461px;
}

.adventskalender .backpos_21 {
  background-position: -12px -1538px;
}

.adventskalender .backpos_22 {
  background-position: -84px -1617px;
}

.adventskalender .backpos_23 {
  background-position: -10px -1696px;
}

.adventskalender .backpos_24 {
  height: 120px !important;
  width: 160px !important;
  background-position: -9px -1798px;
}

.article-attributes {
  margin-bottom: 2.1875rem;
}

.article-attributes ul {
  list-style: none;
  padding-left: 0;
  display: table;
}

.article-attributes ul>li {
  display: table-row;
  line-height: 1.75;
}

.article-attributes ul>li>* {
  display: table-cell;
  padding-bottom: 0.2em;
}

@media screen and (max-width: 45rem) {
  .article-attributes ul>li>* {
    display: block;
  }
}

.article-attributes ul>li .title {
  padding-right: 2.2em;
  white-space: nowrap;
  font-weight: bold;
  color: #000;
}

.article-attributes ul>li .title .fa {
  margin-right: 0.3em;
  min-width: 1.1em;
  text-align: center;
}

@media screen and (max-width: 45rem) {
  .article-attributes ul>li .text {
    margin-bottom: 0.75em;
  }
}

.page-mainimage,
.article-mainimage {
  position: relative;
  margin-bottom: 1.5rem;
  position: relative;
}

.page-mainimage img,
.article-mainimage img {
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.page-mainimage+.caption,
.page-mainimage+.image-caption,
.article-mainimage+.caption,
.article-mainimage+.image-caption {
  font-size: .75rem;
  font-weight: bold;
  line-height: 1.4em;
  margin-bottom: 1.2em;
  margin-top: -1.5em;
}

.page-mainimage .source,
.article-mainimage .source {
  background-color: transparent;
  display: inline-block;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
  margin: 0;
  padding: 1px 3px 1px 3px;
  color: #fff;
  font-size: .6875rem;
  line-height: 1.2;
  text-align: right;
  word-break: break-word;
  word-wrap: break-word;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1px 3px 1px 3px;
}

.page-mainimage.js-articleimage-add-blur,
.article-mainimage.js-articleimage-add-blur {
  align-items: center;
  display: flex;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 45rem) {
  .page-mainimage.js-articleimage-add-blur,
  .article-mainimage.js-articleimage-add-blur {
    height: 52.3125vw;
  }
}

@media print, (min-width: 45.001rem) {
  .page-mainimage.js-articleimage-add-blur,
  .article-mainimage.js-articleimage-add-blur {
    height: 21.9375rem;
  }
}

.mainimage__overlay {
  position: absolute;
  right: 0;
  top: 1.5rem;
  min-width: 40%;
  max-width: 47%;
  min-height: 6em;
  background-color: rgba(255,255,255,0.9);
  padding: .75rem;
  text-align: right;
}

@media screen and (max-width: 45rem) {
  .mainimage__overlay {
    max-width: 85%;
  }
}

.mainimage__overlay .overlay__text {
  font-weight: bold;
  font-size: 1.125rem;
  display: block;
  margin-bottom: 0.4em;
}

.mainimage__overlay .overlay__price {
  font-weight: bold;
  font-size: 1.625rem;
  display: block;
  margin-bottom: 0.2em;
}

.article-meta {
  float: right;
  text-align: right;
  display: flex;
  flex-direction: column-reverse;
  margin-top: -2em;
}

.article-meta .page-anzeige {
  display: block;
  float: none;
}

.article-meta .language-linklist {
  display: block;
  float: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.autoteaser {
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
}

.autoteaser>*:last-child {
  margin-bottom: 0;
}

.autoteaser .heading-sectiontitle {
  margin-bottom: 1.4em;
  margin-top: 1.4em;
  padding-bottom: 0.5em;
  display: block;
}

.befi-address {
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
  margin-top: 1.5rem;
}

.befi-address>*:last-child {
  margin-bottom: 0;
}

.befi-address>h2,
.befi-address>h3 {
  margin-top: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.befi-address>h2 a,
.befi-address>h3 a {
  display: inline;
}

.befi-address dl {
  display: block;
  width: 100%;
}

.befi-address dl dt {
  display: inline-block;
  width: 25%;
  min-width: 6em;
  margin: 0;
  vertical-align: top;
  font-weight: bold;
  margin-bottom: 0.5em;
  margin-right: 0.25em;
}

@media screen and (max-width: 45rem) {
  .befi-address dl dt {
    display: block;
    width: auto;
    margin-bottom: 0em;
  }
}

.befi-address dl dt .fa {
  margin-right: 0.25em;
}

.befi-address dl dd {
  display: inline-block;
  width: 65%;
  margin: 0;
  margin-bottom: 0.5em;
  vertical-align: top;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
}

.befi-address dl dd a {
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
}

.befi-attributes {
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.befi-attributes>*:last-child {
  margin-bottom: 0;
}

.befi-attributes>h2,
.befi-attributes>h3 {
  margin-top: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.befi-attributes>h2 a,
.befi-attributes>h3 a {
  display: inline;
}

.befi-attributes ul {
  margin-bottom: 0;
}

.befi-bookingbyphone {
  margin-bottom: 2.1875rem;
  position: relative;
  font-size: 1rem;
  border: 1px solid #e0e0e0;
  border-width: 1px 0 1px 0;
  padding-top: .5rem;
  padding-bottom: .5625rem;
  display: flex;
  justify-content: space-between;
}

.befi-bookingbyphone .title {
  flex-grow: 1;
  color: #139213;
  font-weight: bold;
}

.befi-bookingbyphone .title:before {
  content: "\f00c";
  display: inline-block;
  font-family: FontAwesome;
  font-weight: normal;
  margin-right: 0.5em;
}

@media screen and (max-width: 45rem) {
  .befi-bookingbyphone .number {
    font-size: .9375rem;
    font-weight: normal;
  }
}

@media print, (min-width: 45.001rem) {
  .befi-bookingbyphone .number {
    color: #000;
    font-weight: bold;
    padding: 0;
    border: 0 none;
    background: transparent;
    height: auto;
  }

  .befi-bookingbyphone .number:hover,
  .befi-bookingbyphone .number:focus {
    background: transparent;
  }
}

.befi-bookingbyphone small {
  position: absolute;
  bottom: -2.5em;
  right: 0;
  color: #555;
}

.befi-brand {
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
}

.befi-brand>*:last-child {
  margin-bottom: 0;
}

.befi-brand:after {
  content: "";
  display: table;
  clear: both;
}

.befi-brand .image {
  width: 30.5%;
  float: left;
  margin-right: 24px;
  margin-bottom: 0;
}

.befi-brand ul {
  display: table;
}

.befi-brand>h1,
.befi-brand>h2,
.befi-brand>h3 {
  margin-top: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.befi-brand>h1 a,
.befi-brand>h2 a,
.befi-brand>h3 a {
  display: inline;
}

.befi-contact {
  margin-bottom: 2.1875rem;
  margin-top: 2.1875rem;
  padding-bottom: .54688rem;
  padding-top: .54688rem;
  display: flex;
  border: 1px solid #e0e0e0;
  border-width: 0 0 1px 0;
}

.befi-contact> {
  flex-grow: 0;
}

.befi-contact>:first-child {
  flex-grow: 1;
}

.wrapper-menumodo {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 0.7em;
  margin: 1.5em 0 1.7em 0;
}

.wrapper-menumodo:after {
  content: "";
  display: table;
  clear: both;
}

.wrapper-menumodo .bootstrap-iso>a {
  text-decoration: none;
  color: #A101C5;
  color: #A101C5 !important;
}

.wrapper-menumodo .bootstrap-iso>a:hover,
.wrapper-menumodo .bootstrap-iso>a:focus {
  text-decoration: underline;
}

.wrapper-menumodo .bootstrap-iso>a:focus {
  outline: 1px dotted;
  outline-offset: 0px;
}

.wrapper-menumodo .bootstrap-iso>a::before {
  color: #777777;
  content: "\00f0f5";
  display: inline-block;
  font-family: FontAwesome;
  font-size: 1.0em;
  margin-right: 1.5em;
  vertical-align: -0.05em;
}

.shofi {
  position: relative;
  top: 0px;
  left: 0px;
}

.shofi .dataentry .form-group.required label:AFTER {
  padding-left: 0.5em;
  content: "*";
}

.shofi .dataentry .item {
  margin: 1em 0;
}

.shofi .dataentry .item .value {
  margin: 0.5em 0;
  padding: 0.5em;
  background: #fff;
  border: 1px #f5f5f5;
  border-radius: 0.5em;
}

.shofi .dataentry .image-uploads:after {
  content: "";
  display: table;
  clear: both;
}

.shofi .dataentry .image-uploads section {
  position: relative;
  float: left;
  width: 49%;
  box-sizing: border-box;
  margin: 0.5em 0;
  padding: 0.5em;
  background: #f5f5f5;
  overflow: hidden;
}

.shofi .dataentry .image-uploads section:nth-child(odd) {
  clear: left;
  margin-right: 2%;
}

.shofi .dataentry .image-uploads section h1 {
  font-size: 1em;
  margin: 0.5em 0;
  color: #000;
}

.shofi .dataentry .image-uploads section p {
  padding: 0;
  margin: 0.2em 0;
}

.shofi .dataentry .image-uploads section img {
  width: 100%;
  max-height: 50%;
  box-sizing: border-box;
}

.shofi .dataentry .image-uploads section .invalid-msg {
  display: none;
  color: #f0ad4e;
}

.shofi .dataentry .image-uploads section .invalid img {
  border: 4px solid #f0ad4e;
}

.shofi .dataentry .image-uploads section .invalid .invalid-msg {
  display: block;
}

.shofi .dataentry .image-uploads section.loading:after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  content: url(data:image/gif;base64,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);
}

.shofi .form-confirm ul[role="tablist"] {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
}

.shofi .form-confirm ul[role="tablist"] li {
  display: inline-block;
  border: 1px solid #EDEDED;
  border-radius: 0.5em;
  border-bottom-left-radius: initial;
  border-bottom-right-radius: initial;
  margin: 0 0 -1px 1em;
  padding: 0;
  background: #f5f5f5;
}

.shofi .form-confirm ul[role="tablist"] li:before {
  display: none;
}

.shofi .form-confirm ul[role="tablist"] li.active {
  font-weight: bold;
  background: initial;
  border-bottom: 1px solid #fff;
}

.shofi .form-confirm ul[role="tablist"] li a {
  padding: 0.5em;
  display: inline-block;
}

.shofi .form-confirm [role="tabpanel"] {
  border-top: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
  display: none;
}

.shofi .form-confirm [role="tabpanel"].active {
  display: block;
}

.form--base .selectize-dropdown .selectize-dropdown-content {
  line-height: 1.2em;
}

@media screen and (max-width: 45rem) {
  .form--base .selectize-dropdown .selectize-dropdown-content {
    font-size: 6mm;
  }
}

.form--base .selectize-dropdown .selectize-dropdown-content>* {
  padding: 0.2em 0.5em;
}

.form--base .selectize-dropdown .selectize-dropdown-content>*.active {
  background: #00B4CD;
}

.form--base .selectize-dropdown .selectize-dropdown-content>* .highlight {
  font-weight: bold;
  background: #FFBF00;
}

.befi-search-filter {
  margin-bottom: 2.1875rem;
}

.befi-search-filter ul {
  margin-left: 0;
  padding: 0;
  list-style: none;
}

.befi-search-filter ul>li {
  margin-left: 0;
  padding-left: 1em;
}

.befi-search-filter ul>li::before {
  margin-left: -1.3em;
  color: #9F0732;
  content: "";
  display: inline-block;
  float: left;
  font-size: .625rem;
  height: 1em;
  vertical-align: baseline;
  font-family: FontAwesome;
  height: 1em;
  width: 1.3em;
  text-indent: 0;
}

.befi-search-filter .filter-delete>span {
  display: inline-block;
}

.befi-search-filter .filter-add {
  position: relative;
  display: flex;
}

.befi-search-filter .filter-add .js-easypopup {
  position: static;
  margin-left: 0.25em;
}

.befi-search-filter .filter-add .js-easypopup__content {
  left: 0;
  max-width: 90%;
  width: 100%;
}

.befi-search-filter .filter-add .divider {
  margin-left: -0.1em;
}

.billboard {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

@media screen and (max-width: 45rem) {
  .billboard {
    display: none;
  }
}

.js-block-limit-height {
  display: block;
  position: relative;
  max-height: none;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.js-block-limit-height .js-block-limit-height__toggler {
  position: relative;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
}

.js-block-limit-height .js-block-limit-height__toggler .toggler {
  margin: 0;
  display: block;
  width: 100%;
  padding: .625rem;
  padding-left: 0;
  padding-right: .625rem;
  border-bottom: 1px solid #e0e0e0;
  margin-top: 15px;
  background-color: #fff;
  outline-offset: -1px;
}

.js-block-limit-height .js-block-limit-height__toggler .toggler::after {
  display: inline-block;
  font-family: FontAwesome;
  content: "\f078";
  color: #000;
  float: right;
  font-weight: normal;
  transform: rotate(180deg);
}

.js-block-limit-height.closed {
  max-height: 15.5em;
}

.js-block-limit-height.closed .js-block-limit-height__toggler {
  position: absolute;
  display: initial;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 60%, #fff 100%);
}

.js-block-limit-height.closed .toggler {
  margin-top: 4em;
}

.js-block-limit-height.closed .toggler:after {
  transform: rotate(0deg);
}

.block {
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
}

.block>*:last-child {
  margin-bottom: 0;
}

.block .heading {
  margin-top: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.block .heading a {
  display: inline;
}

.block .readall {
  color: #A101C5;
  display: inline;
  white-space: nowrap;
  font-family: "Contrail One",Arial,sans-serif;
  float: right;
  margin-top: 0.5em;
}

.block .readall::after {
  content: "»";
  display: inline-block;
  width: 0.8em;
  height: 1em;
  margin-left: 0.2em;
  line-height: 0.8em;
  text-align: center;
  text-decoration: underline;
}

.block .readall:after,
.block .readall:hover:after {
  text-decoration: none;
}

.block.special {
  border-top: 3px solid #00B4CD;
  border-bottom: 3px solid #00B4CD;
  margin-bottom: 24px;
  margin-top: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
  top: 0;
  overflow: visible;
}

.block.special::before {
  top: 0.2em;
}

.block.special+.special {
  margin-top: -24px;
  border-top: 0px none;
}

.block.special .heading::before {
  color: #00B4CD;
  content: "";
  display: inline-block;
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
  vertical-align: 1px;
  margin-right: 0.3em;
}

@media print, (min-width: 45.001rem) {
  .marginal .block .image {
    margin-right: 16px;
  }
}

.block--colored {
  background: #A101C5 url(/css/xmas/bundle/7d4690c4a2ccd74c5ec909ee4191cb8e.jpg) no-repeat right/cover;
}

.block--colored .heading {
  color: #fff;
  padding: 12px;
  padding-bottom: 0;
  font-style: normal;
  font-family: Contrail One,Arial,sans-serif;
  font-weight: 600;
}

.block--colored form fieldset {
  background: transparent !important;
  border: 0 none !important;
  padding-top: 0 !important;
}

.block--colored form label,
.block--colored form legend,
.block--colored form .legend,
.block--colored form .required-symbol {
  color: #fff;
}

.block--colored form .grid .form-actions {
  margin-top: 1.8em;
}

.block--colored form .grid .form-actions button {
  width: 100%;
}

.block--ad {
  border-top: 1px solid #DEDEDE;
  border-bottom: 1px solid #DEDEDE;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-bottom: 24px;
  position: relative;
  top: 0;
  overflow: visible;
}

.block--ad::before {
  top: 0.0em;
}

.block--ad+.ad,
.block--ad+*[class*="cv-lnk-"] {
  margin-top: -24px;
  border-top: 0px none;
}

.block--ad::before {
  position: absolute;
  right: 0;
  display: block;
  line-height: 1.5em;
  content: "ANZEIGEN";
  font-size: .6875rem;
  color: #555;
}

.block--ad .ad {
  border: 0 none !important;
  padding: 0  !important;
}

.block--ad .ad:before {
  display: none !important;
}

.block--ad .ad:last-child {
  margin-bottom: 0;
}

.block--ad .teaser.ad+.ad {
  margin-top: 0;
}

.block--grey {
  background-color: #f5f5f5;
}

.block--grey.block {
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
  padding: 12px;
}

.block--grey.block>*:last-child {
  margin-bottom: 0;
}

.bo_sidebar .bo-nahverkehr {
  background: transparent;
  border: 0 none;
  padding: 0;
}

.bo_sidebar .bo-nahverkehr .bo-nahverkehr-title {
  background: transparent;
  padding: 0;
  margin: 0 0 0.5em 0;
  border: 0 none;
}

.bo-nahverkehr {
  margin-bottom: 2.1875rem;
  margin-top: 1.5rem;
}

.bo-nahverkehr ul {
  list-style: none;
  margin: 0 0 1em 0;
}

.bo-nahverkehr .bo-nahverkehr-icon {
  background: none;
  padding: 0;
  position: relative;
}

.bo-nahverkehr .bo-nahverkehr-icon::before,
.bo-nahverkehr .bo-nahverkehr-icon::after {
  display: inline-block;
  font-family: 'bde';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bo-nahverkehr .bo-nahverkehr-icon::before {
  text-decoration: underline;
}

.bo-nahverkehr .bo-nahverkehr-icon:before,
.bo-nahverkehr .bo-nahverkehr-icon:hover:before {
  text-decoration: none;
}

.bo-nahverkehr .bo-nahverkehr-icon-bahn:before {
  content: '\007A';
  color: #DA251D;
}

.bo-nahverkehr .bo-nahverkehr-icon-ubahn:before {
  content: '\0075';
  color: #0664AB;
}

.bo-nahverkehr .bo-nahverkehr-icon-sbahn:before {
  content: '\0073';
  color: #006F35;
}

.bo-nahverkehr .bo-nahverkehr-icon-tram:before {
  content: '\0074';
  color: #CC0000;
}

.bo-nahverkehr .bo-nahverkehr-icon-bus:before {
  content: '\0062';
  color: #A3007C;
}

.bo-nahverkehr .bo-nahverkehr-icon-ferry:before {
  content: '\0066';
  color: #0080C0;
}

.bo-nahverkehr .bo-nahverkehr-icon-metrobus:before {
  content: '\006D';
  color: #F47920;
}

.bo-nahverkehr .bo-nahverkehr-distance {
  float: right;
  margin-top: 0.3em;
  color: #555;
}

.bo-nahverkehr .bo-nahverkehr-route-list {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.bo-nahverkehr .bo-nahverkehr-route-list .bo-nahverkehr-route-item {
  display: inline-block;
  margin: 0.3em 0 .3em 0;
  border: 1px solid #e0e0e0;
  padding: 0 0.3em;
  border-radius: 0.15em;
  background: #fff;
}

.bo-nahverkehr .bo-nahverkehr-route-list .bo-nahverkehr-route-item::after {
  content: none;
}

.bo-nahverkehr .bo-nahverkehr-stop-list {
  padding: 0;
}

.bo-nahverkehr .bo-nahverkehr-stop-list .bo-nahverkehr-stop-item {
  margin-left: 0;
}

.bo-nahverkehr .bo-nahverkehr-stop-list .bo-nahverkehr-stop-item .bo-nahverkehr-icon {
  display: none;
}

.bo-nahverkehr .bo-nahverkehr-stop-routing {
  margin-right: 0.2em;
}

@media screen and (max-width: 45rem) {
  .bo-nahverkehr .bo-nahverkehr-route-list {
    display: block;
  }
}

.bo-nahverkehr .bo-nahverkehr-type {
  margin-top: .3em;
}

.bo-nahverkehr .bo-nahverkehr-type .bo-nahverkehr-icon {
  font-size: 1.3em;
  vertical-align: middle;
  height: 1em;
  line-height: 1em;
}

.bo-nahverkehr .accordion-panel {
  padding-bottom: 0;
}

.detailpage-map {
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
  margin-top: 2.1875rem;
}

.detailpage-map>*:last-child {
  margin-bottom: 0;
}

.detailpage-map>h2,
.detailpage-map>h3 {
  margin-top: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.detailpage-map>h2 a,
.detailpage-map>h3 a {
  display: inline;
}

.detailpage-map .inner {
  border: 1px solid #e0e0e0;
  width: 100%;
  min-height: 210px;
  overflow: hidden;
}

.detailpage-map img {
  max-height: none;
  width: 100%;
}

.detailpage-map .geomap-popup {
  max-width: 12em;
}

.detailpage-map .geomap-div-icon {
  color: #3023AE;
}

@media screen and (max-width: 45rem) {
  .detailpage-map .geomap {
    height: 46.5vw;
  }
}

@media print, (min-width: 45.001rem) {
  .detailpage-map .geomap {
    height: 312px;
  }
}

#discoball {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -50px;
  -webkit-animation: rotateDiscoBall 18s linear infinite;
  animation: rotateDiscoBall 18s linear infinite;
}

@-webkit-keyframes rotateDiscoBall {
  0% {
    -webkit-transform: rotateX(90deg) rotateZ(0deg) rotate(0deg);
  }

  100% {
    -webkit-transform: rotateX(90deg) rotateZ(360deg) rotate(0deg);
  }
}

@keyframes rotateDiscoBall {
  0% {
    transform: rotateX(90deg) rotateZ(0deg) rotate(0deg);
  }

  100% {
    transform: rotateX(90deg) rotateZ(360deg) rotate(0deg);
  }
}

@-webkit-keyframes rotateDiscoBallMiddle {
  0% {
    -webkit-transform: rotateX(90deg) rotateY(0deg) rotate(0deg);
  }

  100% {
    -webkit-transform: rotateX(90deg) rotateY(-360deg) rotate(0deg);
  }
}

@keyframes rotateDiscoBallMiddle {
  0% {
    transform: rotateX(90deg) rotateY(0deg) rotate(0deg);
  }

  100% {
    transform: rotateX(90deg) rotateY(-360deg) rotate(0deg);
  }
}

@-webkit-keyframes reflect {
  0% {
    -webkit-filter: brightness(60%);
  }

  50% {
    -webkit-filter: brightness(120%);
  }

  100% {
    -webkit-filter: brightness(90%);
  }
}

@keyframes reflect {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

#discoball .discoball__bg {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: -50px;
  border-radius: 100%;
  background-color: black;
  display: block;
}

#discoball .square {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: absolute;
  top: 50px;
  left: 50px;
  width: 6px;
  height: 6px;
  position: absolute;
  transform: rotateX(90deg) rotateY(0deg) translateZ(0px);
}

.embed-container {
  height: 0;
  height: auto;
  margin: 1.5rem 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.embed-container.ratio4x3 {
  padding-bottom: 75%;
}

.embed-container[data-type=youtube] iframe,
.embed-container[data-type=vimeo] iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.embed-container[data-type=kfzversicherungsvergleich] {
  height: 440px;
}

.embed-container[data-type=tweet] {
  padding-bottom: 50.25%;
}

.embed-container[data-type=tweet] .playbutton {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.embed-container[data-type=tweet] .playbutton .btn,
.embed-container[data-type=tweet] .playbutton button.button,
.embed-container[data-type=tweet] .playbutton .button-submit,
.embed-container[data-type=tweet] .playbutton .button--spaced,
.embed-container[data-type=tweet] .playbutton a.button,
.embed-container[data-type=tweet] .playbutton .button--ghost,
.embed-container[data-type=tweet] .playbutton .button--footer,
.embed-container[data-type=tweet] .playbutton .button--reversed,
.embed-container[data-type=tweet] .playbutton .button--disabled,
.embed-container[data-type=tweet] .playbutton .button--white,
.embed-container[data-type=tweet] .playbutton .place a.reservation,
.place .embed-container[data-type=tweet] .playbutton a.reservation,
.embed-container[data-type=tweet] .playbutton .teaser--place a.reservation,
.teaser--place .embed-container[data-type=tweet] .playbutton a.reservation,
.embed-container[data-type=tweet] .playbutton .form-login .form-actions .register,
.form-login .form-actions .embed-container[data-type=tweet] .playbutton .register {
  line-height: 1.5;
  margin-bottom: 3em;
}

@media screen and (max-width: 45rem) {
  .embed-container[data-type=tweet] .playbutton .btn,
  .embed-container[data-type=tweet] .playbutton button.button,
  .embed-container[data-type=tweet] .playbutton .button-submit,
  .embed-container[data-type=tweet] .playbutton .button--spaced,
  .embed-container[data-type=tweet] .playbutton a.button,
  .embed-container[data-type=tweet] .playbutton .button--ghost,
  .embed-container[data-type=tweet] .playbutton .button--footer,
  .embed-container[data-type=tweet] .playbutton .button--reversed,
  .embed-container[data-type=tweet] .playbutton .button--disabled,
  .embed-container[data-type=tweet] .playbutton .button--white,
  .embed-container[data-type=tweet] .playbutton .place a.reservation,
  .place .embed-container[data-type=tweet] .playbutton a.reservation,
  .embed-container[data-type=tweet] .playbutton .teaser--place a.reservation,
  .teaser--place .embed-container[data-type=tweet] .playbutton a.reservation,
  .embed-container[data-type=tweet] .playbutton .form-login .form-actions .register,
  .form-login .form-actions .embed-container[data-type=tweet] .playbutton .register {
    height: 2.2em;
  }
}

.embed-container .embed-placeholder {
  border-radius: 4px;
  border-width: 1px;
  border: 1px solid var(--embetty-border-color, #ccc);
  box-sizing: border-box;
  display: block;
  height: 100%;
  overflow: hidden;
  position: absolute;
  width: 100%;
}

.embed-container .embed-placeholder .poster {
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.embed-container .embed-placeholder .poster img {
  object-fit: cover;
  width: 100%;
}

.embed-container .embed-placeholder .playbutton {
  background: none;
  border: 0;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 100%;
  opacity: 0.9;
  position: absolute;
  transition: opacity 150ms;
  width: 100%;
  z-index: 1;
}

.embed-container .embed-placeholder .playbutton:hover {
  opacity: 1;
}

.embed-container .embed-placeholder .playbutton:hover .hint {
  height: 0;
  opacity: 0;
}

.embed-container .embed-placeholder .hint {
  background: rgba(0,0,0,0.6);
  bottom: 0;
  color: #fff;
  font-size: 90%;
  left: 0;
  opacity: 1;
  padding: 0.5em;
  position: absolute;
  transition: all ease 0.3s;
  width: 100%;
  z-index: 2;
}

.embed-container .embed-placeholder .hint a {
  color: #fff;
  text-decoration: underline;
}

.embed-container .loaded[data-type=tweet] {
  padding-bottom: 0;
}

.embed-container .loaded[data-type=instagrampost] {
  padding-bottom: 0;
}

.embed-container .loaded[data-type=facebookpost] {
  padding-bottom: 0;
}

.social-widget-include {
  padding-bottom: 25px;
}

#KFZ {
  width: 342px;
  height: 415px;
  margin-left: 20%;
}

@media screen and (max-width: 45rem) {
  #KFZ {
    margin-left: 0;
    width: 100%;
  }
}

#KFZ .playbutton {
  height: 630px;
}

#KFZ .poster {
  width: 342px;
  height: 402px;
}

@media screen and (min-width: 1201px) {
  .ems-mfp .mfp-content {
    opacity: 0;
    transition: all 0.3s ease-out;
    transform: scale(0.9);
  }

  .ems-mfp.ems-ticketshop-lightbox .mfp-container .mfp-close {
    color: #fff;
    position: absolute;
    top: -40px;
    right: 0;
  }

  .ems-mfp.ems-ticketshop-lightbox .mfp-iframe-scaler .mfp-iframe {
    background: white;
    position: absolute;
    top: 0;
    left: 0;
  }

  .ems-mfp.mfp-ready .mfp-content {
    width: 950px;
    min-width: 40vw;
    max-width: 950px;
    height: 700px;
    min-height: 40vh;
    max-height: 90vh;
    padding: 1em;
    opacity: 1;
    transform: scale(1);
    background: white;
  }

  .mfp-ready .mfp-content>* {
    z-index: 1337;
  }

  .mfp-ready.mfp-bg {
    opacity: 0.8;
  }

  .mfp-removing .mfp-content {
    opacity: 0;
    transform: scale(0.8);
  }

  .mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
  }

  .mfp-removing.mfp-bg {
    opacity: 0;
  }
}

.ems-ticketshop-title {
  position: absolute;
  height: 44px;
  top: -40px;
  line-height: 44px;
  margin: 0 0 0 -1em;
  color: white;
  font-weight: 700;
}

.ems-tickethotline {
  border: 1px solid #e0e0e0;
  border-width: 1px 0;
  padding: 0.75em 0;
  margin: 1.5em 0;
  display: flex;
  align-items: center;
}

.ems-tickethotline:after {
  content: "";
  display: table;
  clear: both;
}

.ems-tickethotline .icon {
  margin-right: 1em;
}

.ems-tickethotline .icon .fa {
  font-size: 1.75rem;
  border: 2px solid #e0e0e0;
  background-color: #f5f5f5;
  border-radius: 1em;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  text-align: center;
  color: #555;
}

.ems-tickethotline .phone {
  font-size: 1.3125rem;
  font-weight: 700;
  display: block;
}

.ems-tickethotline .sub {
  margin-bottom: 0;
}

.ems-tickethotline p {
  margin: 0;
}

.ems-ticketline-teaser {
  margin-bottom: 2.1875rem;
}

.ems-ticketline-teaser:after {
  content: "";
  display: table;
  clear: both;
}

.ems-ticketline-teaser>.heading {
  margin-top: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
  margin-bottom: 1.3125rem;
}

.ems-ticketline-teaser>.heading a {
  display: inline;
}

.ems-ticketline-teaser .image {
  margin-bottom: 4px;
  margin-top: 3px;
  display: block;
  margin-right: 1.3125rem;
  width: 33.33%;
  display: inherit;
  padding: 0;
  float: left;
}

.ems-ticketline-teaser .image img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.ems-ticketline-teaser .image>a {
  display: block;
  max-width: 100%;
}

@media print, (min-width: 45.001rem) {
  .ems-ticketline-teaser .image {
    position: relative;
  }

  .ems-ticketline-teaser .image .source {
    background-color: transparent;
    display: inline-block;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    margin: 0;
    padding: 1px 3px 1px 3px;
    color: #fff;
    font-size: .6875rem;
    line-height: 1.2;
    text-align: right;
    word-break: break-word;
    word-wrap: break-word;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 1px 3px 1px 3px;
  }
}

@media screen and (max-width: 45rem) {
  .ems-ticketline-teaser .image {
    margin-bottom: 2em;
  }
}

.ems-ticketline-teaser .source {
  font-size: .6875rem;
  color: #555;
  display: block;
  line-height: 1.2em;
  margin-top: 0.2em;
  margin-left: 0;
  position: static;
  padding: 0;
  word-wrap: break-word;
  background-color: transparent;
  text-align: left;
  text-shadow: none;
}

.ems-ticketline-teaser .phone {
  font-size: 1.3125rem;
  font-weight: 700;
  display: flex;
  border: 1px solid #e0e0e0;
  border-width: 1px 0;
  padding: 0.75em 0;
  margin: 0.5em 0 0.25em;
}

@media screen and (max-width: 45rem) {
  .ems-ticketline-teaser .phone {
    display: table;
    width: 100%;
    margin-top: 2em;
  }
}

.ems-ticketline-teaser .phone a.call {
  font-size: 0.875rem;
  float: right;
}

.ems-tipp {
  border: 1px solid #e0e0e0;
  border-width: 1px 0;
  padding: 0.75em 0;
  margin: 1.5em 0;
}

.ems-tipp:after {
  content: "";
  display: table;
  clear: both;
}

.ems-tipp .text .fa {
  margin-right: 0.25em;
}

.ems-tipp .flex {
  display: flex;
}

.ems-tipp .flex>* {
  flex-grow: 1;
}

.ems-tipp .flex>*:last-child {
  align-self: flex-end;
  flex-grow: 0;
  white-space: nowrap;
  align-self: center;
}

.ems-tipp p {
  margin: 0;
}

.event-attributes {
  margin-bottom: 2.1875rem;
}

.event-attributes ul {
  list-style: none;
  padding-left: 0;
  display: table;
}

.event-attributes ul>li {
  display: table-row;
  line-height: 1.5;
}

.event-attributes ul>li>* {
  display: table-cell;
  padding-bottom: 0.2em;
}

.event-attributes ul>li .title {
  padding-right: 2.2em;
  white-space: nowrap;
}

.event-attributes ul>li .fa {
  margin-right: 0.3em;
  min-width: 1.1em;
  text-align: center;
}

.event-booknow,
.offer-booknow {
  border: 0px solid #e0e0e0;
  padding: 12px;
  background-color: #f5f5f5;
  margin: 0em 0 6px 0;
  align-items: center;
  display: block;
}

@media print, (min-width: 45.001rem) {
  .event-booknow,
  .offer-booknow {
    display: flex;
    flex-wrap: nowrap;
  }
}

.event-booknow .title,
.offer-booknow .title {
  flex-grow: 1;
  font-size: 1em;
  font-weight: bold;
  display: inline-block;
}

@media screen and (max-width: 45rem) {
  .event-booknow .title,
  .offer-booknow .title {
    margin-bottom: 0.6em;
  }
}

.event-booknow .options,
.offer-booknow .options {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.event-booknow .options button,
.event-booknow .options a,
.offer-booknow .options button,
.offer-booknow .options a {
  margin: 0em 0 0 0.5em;
  min-width: 9em;
}

@media screen and (max-width: 45rem) {
  .event-booknow .options button,
  .event-booknow .options a,
  .offer-booknow .options button,
  .offer-booknow .options a {
    display: block;
    width: auto;
    margin: 0 0.5em 0 0;
  }
}

@media print, (min-width: 45.001rem) {
  .event-booknow .options,
  .offer-booknow .options {
    justify-content: flex-end;
  }

  .event-booknow .options a,
  .offer-booknow .options a {
    margin-left: 0.5em;
  }
}

@media screen and (max-width: 45rem) {
  .event-booknow .options,
  .offer-booknow .options {
    margin-left: 0;
  }
}

@media print, (min-width: 45.001rem) {
  .event-booknow.offer-sticky-container,
  .offer-booknow.offer-sticky-container {
    display: flex;
    margin-bottom: 35px;
  }

  .event-booknow.offer-sticky-container .title,
  .offer-booknow.offer-sticky-container .title {
    margin-bottom: 0;
  }
}

.block.offer-booknow {
  margin-bottom: 35px;
}

.block.offer-booknow+.block.offer-booknow {
  margin-top: -26.92308px;
}

.event-resultlist__item {
  display: flex;
  align-items: center;
  border-top: 1px solid #e0e0e0;
  padding: 12px 0;
  margin: 0;
}

.event-resultlist__item .title {
  flex-grow: 0;
  flex-shrink: 0;
  font-weight: bold;
  margin: 0;
  font-size: 1em;
  border-right: 1px solid #e0e0e0;
  padding-right: 0.75em;
  width: 7em;
}

.event-resultlist__item .title a {
  color: #000;
}

.event-resultlist__item .text {
  flex-grow: 1;
  padding: 0 0.75em;
}

.event-resultlist__item .button-tickethotline {
  display: block;
}

.event-resultlist__item .day {
  display: block;
  font-size: 1.5em;
}

.event-resultlist__item .date {
  display: block;
  font-weight: normal;
}

.event-resultlist__item .hour {
  display: block;
  font-weight: normal;
}

.event-resultlist__item .options {
  text-align: right;
  justify-content: flex-end;
}

.event-resultlist__item .options button,
.event-resultlist__item .options a {
  margin: 0;
  min-width: 8em;
  display: inline-block;
  margin-bottom: 0.5em;
  min-width: 9em;
  white-space: nowrap;
}

@media print, (min-width: 45.001rem) {
  .event-resultlist__item .options>*:last-child {
    margin-bottom: 0;
  }

  .event-resultlist__item .options>:last-child {
    margin-bottom: 0;
    margin-left: 0.5em;
  }
}

@media screen and (max-width: 45rem) {
  .event-resultlist__item {
    flex-wrap: wrap;
  }

  .event-resultlist__item .options {
    width: 100%;
    display: flex;
  }

  .event-resultlist__item .options button,
  .event-resultlist__item .options a {
    width: auto;
    display: block;
    margin: 0 0.5em 0 0;
  }

  .event-resultlist__item .title {
    margin-bottom: 0.5em;
  }

  .event-resultlist__item .text {
    max-width: 60vw;
  }
}

.event-resultlist__item.tiny {
  padding: 6px 0;
}

.event-resultlist__item.tiny .day,
.event-resultlist__item.tiny .description {
  display: none;
}

.event-resultlist__item.tiny .options {
  flex-grow: 1;
  flex-shrink: 0;
}

.event-resultlist__item.tiny .text {
  max-height: 2.7em;
  overflow: hidden;
  margin-bottom: 0;
}

.event-resultlist__item.tiny .button-tickethotline {
  display: inline-block;
}

.event-resultlist__item.tiny button,
.event-resultlist__item.tiny a {
  margin-bottom: 0;
  margin-top: 0;
}

.flatpickr-calendar {
  background: transparent;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,0.08);
  box-shadow: 1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,0.08);
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  visibility: visible;
  overflow: visible;
  max-height: 640px;
}

body .flatpickr-calendar.open {
  display: inline-block;
  z-index: 5000000;
}

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.hasWeeks {
  width: auto;
}

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.rightMost:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-month {
  background: transparent;
  color: rgba(0,0,0,0.9);
  fill: rgba(0,0,0,0.9);
  height: 28px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
}

.flatpickr-prev-month,
.flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  line-height: 16px;
  height: 28px;
  padding: 10px calc(3.57% - 1.5px);
  z-index: 3;
}

.flatpickr-prev-month i,
.flatpickr-next-month i {
  position: relative;
}

.flatpickr-prev-month.flatpickr-next-month,
.flatpickr-next-month.flatpickr-next-month {
  right: 0;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
  fill: #3023AE;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
  width: 14px;
}

.flatpickr-prev-month svg path,
.flatpickr-next-month svg path {
  -webkit-transition: fill .1s;
  transition: fill .1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
  min-height: unset;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57,57,57,0.05);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0,0,0,0.1);
}

.numInputWrapper span:active {
  background: rgba(0,0,0,0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
  top: 33%;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57,57,57,0.6);
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57,57,57,0.6);
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0,0,0,0.5);
}

.numInputWrapper:hover {
  background: rgba(0,0,0,0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 6.16px 0 0 0;
  line-height: 1;
  height: 28px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.flatpickr-current-month.slideLeft {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-animation: fpFadeOut 400ms ease,fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeOut 400ms ease,fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-current-month.slideLeftNew {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-animation: fpFadeIn 400ms ease,fpSlideLeftNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeIn 400ms ease,fpSlideLeftNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-current-month.slideRight {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-animation: fpFadeOut 400ms ease,fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeOut 400ms ease,fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-current-month.slideRightNew {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-animation: fpFadeIn 400ms ease,fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeIn 400ms ease,fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: .5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0,0,0,0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0,0,0,0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0,0,0,0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: default;
  padding: 0 0 0 .5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: initial;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0,0,0,0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0,0,0,0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder;
}

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.flatpickr-calendar.animate .dayContainer.slideLeft {
  -webkit-animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1),fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1),fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.animate .dayContainer.slideLeft,
.flatpickr-calendar.animate .dayContainer.slideLeftNew {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.flatpickr-calendar.animate .dayContainer.slideLeftNew {
  -webkit-animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1),fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1),fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.animate .dayContainer.slideRight {
  -webkit-animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1),fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1),fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.flatpickr-calendar.animate .dayContainer.slideRightNew {
  -webkit-animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1),fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1),fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #3023AE;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #3023AE;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 5px 0 0 5px;
}

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 5px 5px 0;
}

.flatpickr-day.selected.startRange+.endRange,
.flatpickr-day.startRange.startRange+.endRange,
.flatpickr-day.endRange.startRange+.endRange {
  -webkit-box-shadow: -10px 0 0 #3023AE;
  box-shadow: -10px 0 0 #3023AE;
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 5px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  pointer-events: none;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57,57,57,0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #3023AE,5px 0 0 #3023AE;
  box-shadow: -5px 0 0 #3023AE,5px 0 0 #3023AE;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  display: inline-block;
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day {
  display: block;
  width: 100%;
  max-width: none;
}

.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  cursor: pointer;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  display: inline-block;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #f0f0f0;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fpSlideLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fpSlideLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@-webkit-keyframes fpSlideLeftNew {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fpSlideLeftNew {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fpSlideRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fpSlideRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@-webkit-keyframes fpSlideRightNew {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fpSlideRightNew {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fpFadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fpFadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes fpFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fpFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.gallery-preview {
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
  margin-top: 2.1875rem;
}

.gallery-preview>*:last-child {
  margin-bottom: 0;
}

.gallery-preview>h2,
.gallery-preview>h3 {
  margin-top: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 1.3125rem;
  color: #9F0732;
}

.gallery-preview>h2 a,
.gallery-preview>h3 a {
  display: inline;
}

.gallery-preview>ul>li::before {
  content: "";
}

.hero-indexpage {
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
}

.hero-indexpage>*:last-child {
  margin-bottom: 0;
}

.hero-indexpage .mainimage {
  width: 100%;
  max-width: 100%;
  display: block;
}

.hero-indexpage .source {
  font-size: .6875rem;
  color: #555;
  display: block;
  line-height: 1.2em;
  margin-top: 0.2em;
  margin-left: 0;
  position: static;
  padding: 0;
  word-wrap: break-word;
  background-color: transparent;
  text-align: left;
  text-shadow: none;
}

.hero-indexpage .caption {
  margin: 0;
}

@media print, (min-width: 45.001rem) {
  .hero-indexpage .image {
    position: relative;
  }

  .hero-indexpage .image .source {
    background-color: transparent;
    display: inline-block;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    margin: 0;
    padding: 1px 3px 1px 3px;
    color: #fff;
    font-size: .6875rem;
    line-height: 1.2;
    text-align: right;
    word-break: break-word;
    word-wrap: break-word;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 1px 3px 1px 3px;
  }
}

.hotelsearchmask {
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
}

.hotelsearchmask>*:last-child {
  margin-bottom: 0;
}

.image--paragraph {
  margin-bottom: 4px;
  margin-top: 3px;
  display: block;
  margin-bottom: 0.25em;
  width: 100%;
  float: none;
}

.image--paragraph .source {
  font-size: .6875rem;
  color: #555;
  display: block;
  line-height: 1.2em;
  margin-top: 0.2em;
  margin-left: 0;
  position: static;
  padding: 0;
  word-wrap: break-word;
  background-color: transparent;
  text-align: left;
  text-shadow: none;
}

.image--paragraph .inner {
  position: relative;
}

.image--paragraph img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.image--paragraph>a {
  display: block;
  max-width: 100%;
}

@media print, (min-width: 45.001rem) {
  .image--paragraph {
    position: relative;
  }

  .image--paragraph .source {
    background-color: transparent;
    display: inline-block;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    margin: 0;
    padding: 1px 3px 1px 3px;
    color: #fff;
    font-size: .6875rem;
    line-height: 1.2;
    text-align: right;
    word-break: break-word;
    word-wrap: break-word;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 1px 3px 1px 3px;
  }
}

.image--paragraph .caption {
  font-size: .75rem;
  font-weight: bold;
  line-height: 1.4em;
  margin-bottom: 1.2em;
}

.image--paragraph.t_left {
  float: left;
  margin-right: 1.5rem;
}

.image--paragraph.t_right {
  float: right;
  margin-left: 1.5rem;
}

@media print, (min-width: 45.001rem) {
  .image--paragraph {
    width: 30.5%;
  }
}

.imageframe .imageframe__image {
  display: none;
}

@media print, (min-width: 45.001rem) {
  .imageframe {
    padding: 1.25rem;
    overflow: hidden;
  }

  .imageframe>h2,
  .imageframe h3 {
    margin-top: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: absolute;
    z-index: 1;
  }

  .imageframe>h2 a,
  .imageframe h3 a {
    display: inline;
  }

  .imageframe .imageframe__inner {
    background-color: rgba(255,255,255,0.9);
    margin-bottom: 0;
    position: relative;
  }

  .imageframe .imageframe__inner fieldset {
    background-color: transparent;
  }

  .imageframe .imageframe__image {
    display: block;
    position: absolute;
    height: 100%;
    width: auto;
    top: 0;
    left: 0;
    min-height: 100%;
    max-width: none;
  }
}

@media print, (min-width: 45.001rem) {
  .location-publictransport>dl,
  dl.info-container-list {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }

  .location-publictransport>dl>h3,
  .location-publictransport>dl div,
  dl.info-container-list>h3,
  dl.info-container-list div {
    grid-column: span 2;
  }
}

.location-publictransport>dl>dt,
dl.info-container-list>dt {
  margin: 0 1.5rem 0.5em 0;
  font-weight: bold;
}

.location-publictransport>dl>dd,
dl.info-container-list>dd {
  margin: 0 0 0.5em 0;
  overflow-wrap: break-word;
  hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
}

.js-collapse-me {
  position: relative;
  z-index: 0;
  min-height: 0;
}

.js-collapse-me .js-collapse-me-toggler {
  cursor: pointer;
  display: inline-block;
}

.js-collapse-me .js-collapse-me-inner {
  height: 0;
  max-height: 0;
  overflow: hidden;
  display: block;
  position: relative;
  transition: max-height 0.5s ease-out;
}

.js-collapse-me.opened .js-collapse-me-inner {
  height: auto;
  max-height: 1000px;
  overflow: auto;
}

.linklist {
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
}

.linklist>*:last-child {
  margin-bottom: 0;
}

.linklist:after {
  content: "";
  display: table;
  clear: both;
}

.linklist .image {
  width: 30.5%;
  float: left;
  margin-right: 24px;
  margin-bottom: 0;
}

.linklist ul {
  display: table;
}

.linklist .heading {
  margin-top: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.linklist .heading a {
  display: inline;
}

.linklist .image {
  margin-bottom: 4px;
  margin-top: 3px;
  display: block;
}

.linklist .image img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.linklist .image>a {
  display: block;
  max-width: 100%;
}

@media print, (min-width: 45.001rem) {
  .linklist .image {
    position: relative;
  }

  .linklist .image .source {
    background-color: transparent;
    display: inline-block;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    margin: 0;
    padding: 1px 3px 1px 3px;
    color: #fff;
    font-size: .6875rem;
    line-height: 1.2;
    text-align: right;
    word-break: break-word;
    word-wrap: break-word;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 1px 3px 1px 3px;
  }
}

.linklist .source {
  font-size: .6875rem;
  color: #555;
  display: block;
  line-height: 1.2em;
  margin-top: 0.2em;
  margin-left: 0;
  position: static;
  padding: 0;
  word-wrap: break-word;
  background-color: transparent;
  text-align: left;
  text-shadow: none;
}

.linklist ul+.readmore {
  display: block;
  margin-top: -1.3em;
}

.linklist.ad {
  border-top: 1px solid #DEDEDE;
  border-bottom: 1px solid #DEDEDE;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-bottom: 24px;
  position: relative;
  top: 0;
  overflow: visible;
}

.linklist.ad::before {
  top: 0.0em;
}

.linklist.ad+.ad,
.linklist.ad+*[class*="cv-lnk-"] {
  margin-top: -24px;
  border-top: 0px none;
}

.linklist.ad::before {
  position: absolute;
  right: 0;
  display: block;
  line-height: 1.5em;
  content: "ANZEIGE";
  font-size: .6875rem;
  color: #555;
}

.linklist.special {
  border-top: 3px solid #00B4CD;
  border-bottom: 3px solid #00B4CD;
  margin-bottom: 24px;
  margin-top: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
  top: 0;
  overflow: visible;
}

.linklist.special::before {
  top: 0.2em;
}

.linklist.special+.special {
  margin-top: -24px;
  border-top: 0px none;
}

.linklist.special .heading::before {
  color: #00B4CD;
  content: "";
  display: inline-block;
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
  vertical-align: 1px;
  margin-right: 0.3em;
}

body .mfp-bg {
  opacity: .9;
  z-index: 3000000;
}

body .mfp-wrap {
  z-index: 4000000;
}

body .mfp-hide {
  display: none;
}

body .mfp-container {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 0;
}

body .mfp-container .mfp-close {
  color: #000000;
  font-weight: 700;
  opacity: 1;
  right: 0em;
  top: -0.2em;
  width: 2em;
}

@media print, (min-width: 45.001rem) {
  body .mfp-container .mfp-content {
    max-width: 56em;
  }
}

body .mfp-container .mfp-content .mfp-lightbox--form-multipart__inner {
  background: #f5f5f5;
  margin-bottom: 0;
  position: relative;
}

@media print, (min-width: 45.001rem) {
  body .mfp-container .mfp-content .mfp-lightbox--form-multipart__inner {
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
  }
}

@media screen and (max-width: 45rem) {
  body .mfp-container .mfp-content .mfp-lightbox--form-multipart__inner {
    height: 100vh;
    left: 0;
    margin: 0;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    width: 100vw;
  }
}

body .mfp-container .mfp-content .mfp-lightbox--form-multipart__inner .mfp-close {
  color: #000;
}

body .mfp-container .mfp-iframe-scaler {
  padding-top: 0;
  max-height: initial !important;
}

@media screen and (max-width: 45rem) {
  body .mfp-container .mfp-iframe-scaler {
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
  }
}

body .mfp-container .mfp-iframe-scaler iframe {
  position: static;
  left: initial;
  top: initial;
}

.navigation-teaser {
  line-height: 1.2em;
  font-size: .875rem;
  margin-bottom: 1rem;
}

.navigation-teaser .image {
  max-width: 12rem;
  position: relative;
}

.navigation-teaser .image .source {
  background-color: transparent;
  display: inline-block;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
  margin: 0;
  padding: 1px 3px 1px 3px;
  color: #fff;
  font-size: .6875rem;
  line-height: 1.2;
  text-align: right;
  word-break: break-word;
  word-wrap: break-word;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1px 3px 1px 3px;
}

.navigation-teaser .image img {
  display: block;
}

.navigation-teaser .image a {
  display: block;
}

.navigation-teaser .source {
  font-size: .6875rem;
  color: #555;
  display: block;
  line-height: 1.2em;
  margin-top: 0.2em;
  margin-left: 0;
  position: static;
  padding: 0;
  word-wrap: break-word;
  background-color: transparent;
  text-align: left;
  text-shadow: none;
}

.newslist {
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
}

.newslist>*:last-child {
  margin-bottom: 0;
}

.newslist:after {
  content: "";
  display: table;
  clear: both;
}

.newslist>h2,
.newslist>h3,
.newslist .heading {
  margin-top: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.newslist>h2 a,
.newslist>h3 a,
.newslist .heading a {
  display: inline;
}

.newslist ul {
  list-style: 0;
  padding-left: 0;
  display: table;
  margin-bottom: .75rem;
}

.newslist ul li {
  display: table-row;
  border-collapse: unset;
}

.newslist ul li>.cell {
  display: table-cell;
  border-top: 1px solid #e0e0e0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.newslist ul li .time,
.newslist ul li .date {
  white-space: nowrap;
  display: block;
}

.newslist ul li .district {
  display: block;
}

.newslist ul li:first-child>* {
  border-top: 0 none;
  padding-top: 0;
}

.newslist ul li:last-child>* {
  padding-bottom: 0;
}

.newslist ul li>*:first-child {
  padding-right: .75rem;
}

.newslist .readall {
  color: #A101C5;
  display: inline;
  white-space: nowrap;
  font-family: "Contrail One",Arial,sans-serif;
  float: right;
  margin-top: 0.5em;
}

.newslist .readall::after {
  content: "»";
  display: inline-block;
  width: 0.8em;
  height: 1em;
  margin-left: 0.2em;
  line-height: 0.8em;
  text-align: center;
  text-decoration: underline;
}

.newslist .readall:after,
.newslist .readall:hover:after {
  text-decoration: none;
}

.offer-sticky-container {
  display: block;
  padding: 12px;
  background-color: #f5f5f5;
}

@media screen and (max-width: 45rem) {
  .offer-sticky-container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    position: fixed;
    z-index: 20000;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    background-color: #f5f5f5;
    box-shadow: 0 -3px 6px rgba(0,0,0,0.2);
  }
}

.offer-sticky-container .title {
  flex-grow: 1;
  display: inline-block;
  margin: 0;
}

@media print, (min-width: 45.001rem) {
  .offer-sticky-container .title {
    margin: 0 0 0.5em 0;
  }
}

@media print, (max-width: 26.25rem) {
  .offer-sticky-container .title {
    display: none;
  }
}

.offer-sticky-container button,
.offer-sticky-container .options {
  margin: 0;
}

@media print, (max-width: 26.25rem) {
  .offer-sticky-container button,
  .offer-sticky-container .options {
    width: 100%;
    display: block;
  }
}

.place-openinghours {
  margin-top: 1.09375rem;
  margin-bottom: 2.1875rem;
}

.place-openinghours ul {
  padding-left: 0;
  list-style: none;
}

.place-openinghours ul>li {
  padding-left: 0;
}

.place-openinghours ul>li::before {
  content: "" !important;
  margin: 0 !important;
  display: none !important;
}

@media print, (min-width: 45.001rem) {
  .place-openinghours ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 10px;
    -webkit-column-gap: 10px;
    column-gap: 10px;
  }
}

.place-openinghours .title {
  font-weight: normal;
  min-width: 6.3em;
  display: inline-block;
  color: #000;
}

.marginal .place-openinghours ul {
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
  -moz-column-gap: 0;
  -webkit-column-gap: 0;
  column-gap: 0;
}

.progressbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: outside none none;
  padding: 0;
  width: 100%;
}

.progressbar .progressbar__title {
  display: block;
  white-space: nowrap;
  font-weight: 700;
}

.progressbar .progressbar__step {
  flex: 0 1 auto;
  width: 3em;
}

.progressbar .progressbar__icon {
  display: inline-block;
  border: 1px solid transparent;
  background-color: #f5f5f5;
  color: #555;
  padding: 0.5em;
  border-radius: 2.3em;
  width: 2.3em;
  height: 2.3em;
}

.progressbar .progressbar__linewrapper {
  flex: 1 0 auto;
  text-align: center;
  flex-flow: row nowrap;
  display: flex;
}

.progressbar .progressbar__linewrapper::before {
  flex: 1 0 auto;
  content: "";
  display: block;
  height: 5px;
  width: auto;
  background-color: #f5f5f5;
  margin: 1em 0.2em;
}

.progressbar .progressbar__linewrapper.active .progressbar__icon {
  background-color: #3023AE;
  color: #fff;
}

.progressbar .progressbar__linewrapper.active::before {
  background-color: #3023AE;
}

.progressbar .progressbar__linewrapper:first-child {
  flex: 0 1 auto;
}

.progressbar .progressbar__linewrapper:first-child::before {
  display: none !important;
}

.quick-access-bar {
  padding: 0.7em 6em;
  background: url(/css/xmas/bundle/51b3e0b4094e1cb6d2e3ef35bcdc58cf.jpg) right center repeat-y #000;
  background-size: 100% auto;
  color: #D4AE67;
}

.quick-access-bar .heading {
  color: #D4AE67;
  font-style: normal;
  font-weight: normal;
  font-family: "Contrail One",Arial,sans-serif;
  font-size: 20px;
  margin-bottom: 0.9em;
}

.quick-access-bar a {
  color: #D4AE67;
}

.quick-access-bar ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.quick-access-bar ul li {
  margin-bottom: 0;
}

.quick-access-bar ul li a {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

.quick-access-bar ul li a:focus,
.quick-access-bar ul li a:hover {
  text-decoration: none;
}

.quick-access-bar ul li a:focus .text,
.quick-access-bar ul li a:hover .text {
  text-decoration: underline;
}

.quick-access-bar ul li .icon {
  border-radius: 50%;
  overflow: hidden;
  display: block;
  margin: 0 auto;
  width: 80px;
  height: 80px;
  background: #fff;
}

.quick-access-bar ul li .icon.texticon {
  font-size: 4em;
  line-height: 1;
}

.quick-access-bar ul li .icon.texticon.slap {
  font-family: IBM Plex Serif,Times,serif;
}

.quick-access-bar ul li.highlight .icon {
  border: 1px solid #fff;
}

.quick-access-bar ul li .text {
  display: block;
  font-size: .875rem;
  font-weight: bold;
  margin-top: 8px;
}

@media screen and (max-width: 45rem) {
  .quick-access-bar {
    display: none;
  }
}

.quick-access-bar.layout-ber ul li {
  padding: 1em;
  width: 18%;
}

.quick-access-bar.layout-ber ul li .text {
  margin-top: 0px;
}

@media print, (min-width: 45.001rem) {
  .marginal .quick-access-bar {
    padding: 0.5em 1em;
    background-image: none;
  }

  .marginal .quick-access-bar ul {
    display: block;
    padding: 0;
    column-count: 3;
  }

  .marginal .quick-access-bar ul li .text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media print, (min-width: 45.001rem) {
  .main-content .quick-access-bar {
    margin-left: -16px;
    margin-right: -16px;
    width: auto;
    min-width: 100%;
  }
}

.rectangle {
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
  display: none;
  background: transparent;
}

.rectangle>*:last-child {
  margin-bottom: 0;
}

.rectangle .inner {
  height: auto;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}

@media print, (min-width: 45.001rem) {
  .rectangle {
    display: block;
  }
}

.rectangle-mobile {
  display: block;
  text-align: center;
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
}

.rectangle-mobile>*:last-child {
  margin-bottom: 0;
}

.rectangle-mobile .inner {
  height: auto;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}

@media print {
  .rectangle-mobile {
    display: none;
  }
}

@media print, (min-width: 45.001rem) {
  .rectangle-mobile {
    display: none;
  }
}

.searchresult {
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
  margin-bottom: 3.125rem;
}

.searchresult>*:last-child {
  margin-bottom: 0;
}

.searchresult>h2,
.searchresult>h3 {
  margin-top: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: .1875rem;
}

.searchresult>h2 a,
.searchresult>h3 a {
  display: inline;
}

.searchresult p {
  margin-bottom: .75rem;
}

.shariff {
  margin: 1.5rem 0;
  min-height: 2.75em;
}

@media print {
  .shariff {
    display: none;
  }
}

.shariff ul.orientation-horizontal {
  display: flex;
  list-style: outside none none;
  padding: 0;
}

.shariff ul.orientation-horizontal li {
  margin-right: 1.8%;
}

@media screen and (max-width: 45rem) {
  .shariff ul.orientation-horizontal li {
    min-width: auto;
    flex-grow: 0;
  }
}

.shariff-init {
  margin: 1.5rem 0;
  min-height: 2.75em;
}

.shopping-card {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2147483647;
  background: rgba(0,0,0,0.8);
  cursor: pointer;
}

.shopping-card>.container {
  display: flex;
  flex-direction: column;
  background: #fff;
  max-width: 900px;
  height: 100vh;
  margin: auto;
  cursor: auto;
}

.shopping-card>.container .content {
  padding: 10px;
  flex-grow: 0;
}

.shopping-card>.container .content:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 45rem) {
  .shopping-card>.container .content img {
    display: none;
  }
}

@media print, (min-width: 45.001rem) {
  .shopping-card>.container .content img {
    float: left;
    max-height: 140px;
    margin-right: 0.5em;
  }
}

.shopping-card>.container .content .tour {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0.5rem 0;
}

.shopping-card>.container .content h1 {
  margin: 0.5rem 0;
}

.shopping-card>.container .content .sub {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0;
}

.shopping-card>.container .content .close {
  text-align: right;
  margin: 0;
}

.shopping-card>.container .content .close button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 0.3em 0.3em 0.3em 1em;
  background: none;
  border: 1px solid #A101C5;
  border-radius: 0.3em;
  color: #A101C5;
  vertical-align: middle;
  background-color: #fff;
  cursor: pointer;
}

.shopping-card>.container .content .close button:after {
  display: inline-block;
  padding-left: 0.5em;
  content: "\00f00d";
  font: 1.4em FontAwesome;
  line-height: 1em;
  vertical-align: middle;
}

.shopping-card>.container>iframe,
.shopping-card>.container>.iframe-wrapper {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  flex-grow: 1;
  height: 70vh;
}

.shopping-card>.container>iframe iframe,
.shopping-card>.container>.iframe-wrapper iframe {
  display: block;
}

.shopping-card>.container .iframe-wrapper {
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
}

.shopping-card>.container iframe {
  width: 100%;
  border: 0;
  margin: 0;
  padding: 0;
}

.balconycontainer {
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
  position: relative;
}

.balconycontainer>*:last-child {
  margin-bottom: 0;
}

.balconycontainer>.body>* {
  margin: 0px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
  z-index: 0;
}

@media print, (min-width: 45.001rem) {
  .balconycontainer>.body>*:first-child {
    position: relative;
  }
}

@media screen and (max-width: 45rem) {
  .balconycontainer>.body>* article {
    display: flex;
    flex-flow: column;
  }

  .balconycontainer>.body>*.active {
    position: relative;
  }
}

.balconycontainer>.body>*.active {
  z-index: 1;
  opacity: 1;
}

.balconycontainer>.body>* .main-image {
  margin: 0px;
  width: 100%;
  z-index: 1;
  position: relative;
  order: 1;
}

.balconycontainer>.body>* .main-image img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 45rem) {
  .balconycontainer>.body>* .main-image img {
    min-height: 46.5vw;
  }
}

@media print, (min-width: 45.001rem) {
  .balconycontainer>.body>* .main-image img {
    min-height: 312px;
  }
}

.balconycontainer>.body>* .body {
  display: block;
  order: 2;
  background: #3023AE;
  color: #fff;
  padding: 10px;
  padding-bottom: 0;
  z-index: 2;
}

@media print, (min-width: 45.001rem) {
  .balconycontainer>.body>* .body {
    font-size: 13px;
    position: absolute;
    bottom: 4em;
    right: 2.7em;
    width: 19.5em;
  }
}

.balconycontainer>.body>* .body h3 {
  color: #fff;
  font-style: normal;
  word-wrap: break-word;
  margin: 0 0 0.4em 0;
}

@media print, (min-width: 45.001rem) {
  .balconycontainer>.body>* .body h3 {
    font-size: 15px;
  }
}

.balconycontainer>.body>* .body p {
  margin: 0;
  padding: 0;
  color: #fff;
  min-height: 3em;
}

.balconycontainer>.body>* .body .more {
  background: #9F0732;
  color: #fff;
  display: block;
  margin: 1.2em -10px 0 -10px;
  padding: 4px 10px;
}

.balconycontainer>.body>* .body .more:before {
  font: 0.6em FontAwesome;
  padding-right: 0.7em;
  display: inline-block;
  vertical-align: middle;
  content: "\00f04b";
}

.balconycontainer>.body>* .body .more:hover {
  text-decoration: underline;
}

.balconycontainer>.body>* .body:focus {
  text-decoration: none;
}

.balconycontainer>.body>* a.body:hover {
  text-decoration: none;
}

.balconycontainer>.body>* .copyright {
  background-color: transparent;
  display: inline-block;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
  margin: 0;
  padding: 1px 3px 1px 3px;
  color: #fff;
  font-size: .6875rem;
  line-height: 1.2;
  text-align: right;
  word-break: break-word;
  word-wrap: break-word;
  position: absolute;
  bottom: 0em;
  right: 0em;
}

.balconycontainer>.body>* .copyright a {
  color: #fff;
}

.balconycontainer>.navtabs {
  z-index: 2;
  padding: 0;
  width: 100%;
}

@media screen and (max-width: 45rem) {
  .balconycontainer>.navtabs {
    text-align: center;
  }
}

@media print, (min-width: 45.001rem) {
  .balconycontainer>.navtabs {
    background: #3023AE;
  }
}

.balconycontainer>.navtabs ul {
  display: inline-block;
  margin: 0;
}

.balconycontainer>.navtabs li {
  display: inline-block;
  margin: 0;
  padding: 0;
  border-right: 1px solid #707070;
  position: relative;
}

.balconycontainer>.navtabs li:before {
  display: none;
}

@media screen and (max-width: 45rem) {
  .balconycontainer>.navtabs li {
    border: none;
  }
}

.balconycontainer>.navtabs li a {
  color: #fff;
  font-size: 90%;
  padding: 6px 8px;
  text-decoration: none;
  display: block;
}

.balconycontainer>.navtabs li a:focus {
  outline: #fff;
  outline-offset: -1px;
}

.balconycontainer>.navtabs li a:focus,
.balconycontainer>.navtabs li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 45rem) {
  .balconycontainer>.navtabs li a {
    text-indent: -1000vw;
    color: #3023AE;
    background: iniherit;
    overflow: hidden;
    width: 1em;
  }

  .balconycontainer>.navtabs li a:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 33px;
    font-family: FontAwesome;
    padding: 6px 0;
    margin: 0;
    content: "\00f10c";
    text-indent: 0;
  }
}

.balconycontainer>.navtabs li.active {
  background: #9F0732;
}

@media screen and (max-width: 45rem) {
  .balconycontainer>.navtabs li.active {
    background: inherit;
  }

  .balconycontainer>.navtabs li.active a {
    color: #9F0732;
  }

  .balconycontainer>.navtabs li.active a:before {
    content: "\00f111";
  }
}

@media print, (min-width: 45.001rem) {
  .balconycontainer>.play-pause {
    position: absolute;
    bottom: -1.75em;
    font-size: 13px;
  }
}

.balconycontainer>.play-pause .play,
.balconycontainer>.play-pause .pause {
  display: none;
  cursor: pointer;
  background: transparent;
  color: #3023AE;
  border: none;
  margin: 0;
  padding: 0;
}

.balconycontainer>.play-pause .play.active,
.balconycontainer>.play-pause .pause.active {
  display: inline;
}

.balconycontainer>.play-pause .play:before,
.balconycontainer>.play-pause .pause:before {
  width: 1em;
  height: 1em;
  line-height: 0.8em;
  font-size: 0.8em;
  font-family: FontAwesome;
  margin-right: 0.4em;
  display: inline-block;
  vertical-align: middle;
}

.balconycontainer>.play-pause .play:before {
  content: "\00f04b";
}

.balconycontainer>.play-pause .pause:before {
  content: "\00f04c";
}

.event .options,
.teaser--event .options {
  text-align: right;
  display: block;
  padding-bottom: 6px;
}

.event .options>*,
.teaser--event .options>* {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5em;
  margin-bottom: 0;
}

.event .options>.button,
.teaser--event .options>.button {
  margin-bottom: 0;
}

.event+.event,
.event+.teaser--event,
.teaser--event+.event,
.teaser--event+.teaser--event {
  border-top: 1px solid #e0e0e0;
  padding-top: 16px;
  margin-top: 23.33333px;
}

.event>*:last-child,
.teaser--event>*:last-child {
  margin-bottom: 0 !important;
}

.event .image .placeholder,
.teaser--event .image .placeholder {
  background-color: #f5f5f5;
  color: #fff;
  display: block;
  text-align: center;
  font-size: 5em;
  height: 22vw;
  padding: 5vw 0;
}

@media print, (min-width: 45.001rem) {
  .event .image .placeholder,
  .teaser--event .image .placeholder {
    padding: 0.6em 0em;
    font-size: 5em;
    height: auto;
  }
}

.ad+.event {
  border-top: 0 none;
}

.teaser--job {
  position: relative;
}

.teaser--job+.teaser--job {
  border-top: 1px solid #e0e0e0;
  padding-top: 1rem;
  margin-top: -1.45833rem;
}

.teaser--job>*:last-child {
  margin-bottom: 0 !important;
}

.teaser--job .last-modified {
  color: #555;
  font-size: .6875rem;
}

.place,
.teaser--place {
  position: relative;
  padding-bottom: 1rem;
}

.place .image .placeholder,
.teaser--place .image .placeholder {
  background-color: #f5f5f5;
  color: #fff;
  display: block;
  text-align: center;
  font-size: 10vw;
  height: 22vw;
  padding: 5vw 0;
}

@media print, (min-width: 45.001rem) {
  .place .image .placeholder,
  .teaser--place .image .placeholder {
    padding: 0.55em 0em;
    font-size: 5em;
    height: auto;
  }
}

.place .image a:hover,
.place .image a:focus,
.teaser--place .image a:hover,
.teaser--place .image a:focus {
  text-decoration: none;
}

@media print, (min-width: 45.001rem) {
  .place>p,
  .teaser--place>p {
    padding-bottom: 3.5em;
  }
}

.place .address,
.teaser--place .address {
  display: block;
  margin-top: 0.6em;
}

.place .options,
.teaser--place .options {
  bottom: 0.5rem;
  position: relative;
  right: 0;
  text-align: right;
  display: block;
}

.place .options>*,
.teaser--place .options>* {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5em;
  margin-top: 2em;
  margin-bottom: 0;
}

.place .options>.button,
.teaser--place .options>.button {
  margin-bottom: 0;
}

@media print, (min-width: 45.001rem) {
  .place .options,
  .teaser--place .options {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
  }
}

@media screen and (max-width: 45rem) {
  .place ul.list--horizontal li,
  .teaser--place ul.list--horizontal li {
    display: list-item;
  }
}

.place a.reservation,
.teaser--place a.reservation {
  background: #fff;
  border: 2px solid #A101C5;
  color: #A101C5;
  font-weight: normal;
  opacity: 1;
  vertical-align: middle;
}

.place a.reservation:hover,
.place a.reservation:focus,
.teaser--place a.reservation:hover,
.teaser--place a.reservation:focus {
  background: #f5f5f5;
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}

.place+.place,
.place+.teaser--place,
.teaser--place+.place,
.teaser--place+.teaser--place {
  border-top: 1px solid #9B8E42;
  padding-top: 1rem;
  margin-top: -2.25rem;
}

.place.premium,
.place.business,
.teaser--place.premium,
.teaser--place.business {
  border-top: 1px solid #DEDEDE;
  border-bottom: 1px solid #DEDEDE;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-bottom: 24px;
  position: relative;
  top: 0;
  overflow: visible;
  margin-bottom: 2.1875rem;
  border: 1px solid #9B8E42;
  padding: 1rem;
}

.place.premium::before,
.place.business::before,
.teaser--place.premium::before,
.teaser--place.business::before {
  top: 0.0em;
}

.place.premium+.ad,
.place.premium+*[class*="cv-lnk-"],
.place.business+.ad,
.place.business+*[class*="cv-lnk-"],
.teaser--place.premium+.ad,
.teaser--place.premium+*[class*="cv-lnk-"],
.teaser--place.business+.ad,
.teaser--place.business+*[class*="cv-lnk-"] {
  margin-top: -24px;
  border-top: 0px none;
}

.place.premium::before,
.place.business::before,
.teaser--place.premium::before,
.teaser--place.business::before {
  position: absolute;
  right: 0;
  display: block;
  line-height: 1.5em;
  content: "ANZEIGE";
  font-size: .6875rem;
  color: #555;
  top: -1.75em;
}

.place.premium+.premium::before,
.place.premium+.business::before,
.place.business+.premium::before,
.place.business+.business::before,
.teaser--place.premium+.premium::before,
.teaser--place.premium+.business::before,
.teaser--place.business+.premium::before,
.teaser--place.business+.business::before {
  display: none;
}

@media print, (min-width: 45.001rem) {
  .place.premium .image,
  .place.business .image,
  .teaser--place.premium .image,
  .teaser--place.business .image {
    margin-left: -1rem;
  }
}

.place.premium,
.teaser--place.premium {
  background-color: #F1F4F4;
}

.place+.link--befi-register,
.teaser--place+.link--befi-register {
  margin-top: -17.5px;
}

.place--nearbylist ul {
  padding-left: 0;
}

.place--nearbylist li {
  display: flex;
  justify-content: space-between;
}

.place--nearbylist .title {
  width: 100%;
}

.place--nearbylist .highlight a {
  font-weight: 700;
}

.place--nearbylist .distance {
  color: #555;
  padding-left: 1em;
}

.teaser--tour {
  padding-bottom: 0.7em;
}

.teaser--tour .options {
  text-align: right;
  display: block;
}

.teaser--tour .options>* {
  display: inline-block;
  vertical-align: middle;
  margin-left: 1em;
  margin-bottom: 0;
}

.teaser--tour .options>.button {
  margin-bottom: 0;
}

.teaser--tour+.teaser--tour {
  border-top: 1px solid #DEDEDE;
  padding-top: 1rem;
  margin-top: -1.75rem;
}

.teaser--tour>*:last-child {
  margin-bottom: 0 !important;
}

.teaser--tour .readmore {
  margin-bottom: 0.5em;
  display: inline-block;
}

.ad+.event {
  border-top: 0 none;
}

.teaser {
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
}

.teaser>*:last-child {
  margin-bottom: 0;
}

.teaser:after {
  content: "";
  display: table;
  clear: both;
}

.teaser .image {
  width: 30.5%;
  float: left;
  margin-right: 24px;
  margin-bottom: 0;
}

.teaser ul {
  display: table;
}

.teaser .heading,
.teaser>h3 {
  margin-top: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.teaser .heading a,
.teaser>h3 a {
  display: inline;
}

.teaser .image {
  margin-bottom: 4px;
  margin-top: 3px;
  display: block;
  min-height: 2em;
}

.teaser .image img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.teaser .image>a {
  display: block;
  max-width: 100%;
}

@media print, (min-width: 45.001rem) {
  .teaser .image {
    position: relative;
  }

  .teaser .image .source {
    background-color: transparent;
    display: inline-block;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    margin: 0;
    padding: 1px 3px 1px 3px;
    color: #fff;
    font-size: .6875rem;
    line-height: 1.2;
    text-align: right;
    word-break: break-word;
    word-wrap: break-word;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 1px 3px 1px 3px;
  }
}

.teaser .source {
  font-size: .6875rem;
  color: #555;
  display: block;
  line-height: 1.2em;
  margin-top: 0.2em;
  margin-left: 0;
  position: static;
  padding: 0;
  word-wrap: break-word;
  background-color: transparent;
  text-align: left;
  text-shadow: none;
}

.teaser.ad {
  border-top: 1px solid #DEDEDE;
  border-bottom: 1px solid #DEDEDE;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-bottom: 24px;
  position: relative;
  top: 0;
  overflow: visible;
}

.teaser.ad::before {
  top: 0.0em;
}

.teaser.ad+.ad,
.teaser.ad+*[class*="cv-lnk-"] {
  margin-top: -24px;
  border-top: 0px none;
}

.teaser.ad::before {
  position: absolute;
  right: 0;
  display: block;
  line-height: 1.5em;
  content: "ANZEIGE";
  font-size: .6875rem;
  color: #555;
}

.teaser.special {
  border-top: 3px solid #00B4CD;
  border-bottom: 3px solid #00B4CD;
  margin-bottom: 24px;
  margin-top: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
  top: 0;
  overflow: visible;
}

.teaser.special::before {
  top: 0.2em;
}

.teaser.special+.special {
  margin-top: -24px;
  border-top: 0px none;
}

.teaser.special .heading::before {
  color: #00B4CD;
  content: "";
  display: inline-block;
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
  vertical-align: 1px;
  margin-right: 0.3em;
}

.teaser[class*="cv-lnk-"] {
  border-top: 1px solid #DEDEDE;
  border-bottom: 1px solid #DEDEDE;
  padding-top: 18px;
  padding-bottom: 16px;
  margin-bottom: 24px;
  position: relative;
  top: 0;
  overflow: visible;
}

.teaser[class*="cv-lnk-"]::before {
  font-size: .6875rem;
  color: #555;
  position: absolute;
  right: 0;
  display: block;
  line-height: 1.5em;
  top: 0;
}

.teaser[class*="cv-lnk-"]+.ad,
.teaser[class*="cv-lnk-"]+*[class*="cv-lnk-"] {
  margin-top: -24px;
  border-top: 0px none;
}

.teaser.cv-lnk-bde::before {
  content: "Berlin.de";
}

.teaser.cv-lnk-ber::before {
  content: "Berliner.de";
}

.teaser.cv-lnk-wib::before {
  content: "WeihnachteninBerlin.de";
}

.teaser.cv-lnk-sib::before {
  content: "Berliner-Silvester.de";
}

.teaser dl {
  display: table;
  margin-top: 0;
}

.teaser p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.teaser .timestamp {
  position: absolute;
  right: 0;
  top: -1.5em;
  display: block;
  line-height: 1.5em;
  font-size: .6875rem;
  color: #555;
}

@media print, (min-width: 45.001rem) {
  .teaser .image.image--filmposter {
    min-height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
  }

  .teaser .image.image--filmposter>* {
    flex-grow: 1;
  }
}

p+.teaser.special {
  margin-top: 24px;
}

.marginal .teaser .image .source {
  font-size: .6875rem;
  color: #555;
  display: block;
  line-height: 1.2em;
  margin-top: 0.2em;
  margin-left: 0;
  position: static;
  padding: 0;
  word-wrap: break-word;
  background-color: transparent;
  text-align: left;
  text-shadow: none;
}

.mediateaser .image {
  margin-bottom: 4px;
  margin-top: 3px;
  display: block;
}

.mediateaser .image img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.mediateaser .image>a {
  display: block;
  max-width: 100%;
}

@media print, (min-width: 45.001rem) {
  .mediateaser .image {
    position: relative;
  }

  .mediateaser .image .source {
    background-color: transparent;
    display: inline-block;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    margin: 0;
    padding: 1px 3px 1px 3px;
    color: #fff;
    font-size: .6875rem;
    line-height: 1.2;
    text-align: right;
    word-break: break-word;
    word-wrap: break-word;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 1px 3px 1px 3px;
  }
}

.mediateaser .source {
  font-size: .6875rem;
  color: #555;
  display: block;
  line-height: 1.2em;
  margin-top: 0.2em;
  margin-left: 0;
  position: static;
  padding: 0;
  word-wrap: break-word;
  background-color: transparent;
  text-align: left;
  text-shadow: none;
}

.mediateaser .source::before {
  content: "© ";
}

@media print, (min-width: 45.001rem) {
  .mediateaser {
    position: relative;
  }

  .mediateaser .source {
    background-color: transparent;
    display: inline-block;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    margin: 0;
    padding: 1px 3px 1px 3px;
    color: #fff;
    font-size: .6875rem;
    line-height: 1.2;
    text-align: right;
    word-break: break-word;
    word-wrap: break-word;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 1px 3px 1px 3px;
  }
}

.ticket-hotline {
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
  display: block;
  background-color: #3023AE;
  border: 1px solid #3023AE;
  padding: 12px;
  background-image: url(/css/xmas/bundle/dec539682bd4f606141a97d4f02db40a.png);
  background-repeat: no-repeat;
  background-position: right -50px center;
  background-size: 259px auto;
  color: #fff;
}

.ticket-hotline>*:last-child {
  margin-bottom: 0;
}

.ticket-hotline a {
  color: #fff;
}

.ticket-hotline p {
  font-weight: bold;
  color: #fff;
}

.ticket-hotline .logo {
  width: 8.9em;
  margin-top: 0.4em;
}

.ticket-hotline .claim {
  display: block;
  font-size: 18px;
  margin: 0.4em 0 0.0em 0;
}

.ticket-hotline .phone {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.ticket-hotline .sub {
  display: block;
  font-size: 14px;
}

@media screen and (max-width: 45rem) {
  .ticket-hotline {
    background-position: 65vw -22px;
    background-size: 35vw auto;
  }
}

@media print, (max-width: 26.25rem) {
  .ticket-hotline {
    background-position: right -30px top -20px;
    background-size: 154px auto;
  }

  .ticket-hotline .logo {
    width: 8.9em;
    margin-top: 35px;
    margin-bottom: 10px;
  }

  .ticket-hotline .sub {
    font-size: 13px;
  }

  .ticket-hotline .claim {
    font-size: 16px;
  }
}

@media print, (min-width: 45.001rem) {
  .marginal .ticket-hotline {
    background-position: 118% -27px;
    background-size: 154px auto;
  }

  .marginal .ticket-hotline .logo {
    width: 8.9em;
    margin-top: 35px;
    margin-bottom: 10px;
  }

  .marginal .ticket-hotline .claim {
    font-size: 16px;
  }

  .marginal .ticket-hotline .sub {
    font-size: 13px;
  }
}

.logo-wetteronline {
  float: none !important;
  margin-top: 0 !important;
  width: 70px !important;
  font-size: 11px;
  color: #555;
  margin-bottom: 0.75em;
}

.wetteronline {
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
}

.wetteronline>*:last-child {
  margin-bottom: 0;
}

.wetteronline .nowrap,
.wetteronline .cell .text {
  display: inline;
  white-space: nowrap;
}

.wetteronline .temperature .temp {
  color: #3023AE;
  font-size: 1.3125rem;
  vertical-align: middle;
  margin-right: .75rem;
}

.wetteronline .temperature .text {
  font-size: .6875rem;
  margin-right: .25rem;
}

.wetteronline.teaser .image {
  max-height: none;
}

.wetteronline.teaser .image img.wimage {
  padding: 1.875rem 1.250em;
  background-color: #fff;
  border: 1px solid #e0e0e0;
}

.wetteronline.teaser .temperature {
  display: flex;
  margin-bottom: .375rem;
}

.wetteronline.teaser .temperature .temp {
  color: #3023AE;
  font-size: 1.3125rem;
  vertical-align: middle;
  margin-right: .75rem;
}

.wetteronline.teaser .temperature .text {
  font-size: .6875rem;
  margin-right: .25rem;
}

.wetteronline.teaser .more {
  display: block;
  margin-top: .375rem;
}

.wetteronline.current .top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: .75rem;
  margin-bottom: .75rem;
}

.wetteronline.current .top>* {
  display: flex;
  flex-flow: row nowrap;
}

.wetteronline.current .top .top-left>* {
  margin-right: .75rem;
}

.wetteronline.current .top .top-right>* {
  margin-left: .75rem;
}

.wetteronline.current .top .temp {
  color: #3023AE;
  font-size: 1.3125rem;
}

.wetteronline.current .top .subinfo .text {
  white-space: nowrap;
}

.wetteronline.current .wettericon {
  display: block;
}

@media print, (min-width: 26.251rem) {
  .wetteronline .split2 {
    display: flex;
  }

  .wetteronline .split2>* {
    flex-grow: 1;
    margin-right: 1em;
  }
}

.wetteronline .split2 h4 {
  margin-top: 0;
  margin-bottom: 0.3em;
}

.wetteronline .horizontal-list {
  display: flex;
  flex-wrap: wrap;
}

.wetteronline .horizontal-list>* {
  flex-grow: 0;
  margin: 0.5em 2% 0.5em 0;
  padding: 0 2% 0 0;
  border-right: 1px solid #e0e0e0;
  flex-basis: 2em;
  text-align: center;
}

.wetteronline .horizontal-list>*:last-child {
  border-right: 0 none;
}

@media print, (min-width: 45.001rem) {
  .wetteronline .horizontal-list {
    flex-wrap: nowrap;
  }

  .wetteronline .horizontal-list>* {
    flex-grow: 1;
  }
}

.wetteronline .horizontal-list .temp {
  font-size: 1em;
  font-weight: bold;
  color: #3023AE;
}

.wetteronline.daylist .head {
  width: 100%;
  font-weight: bold;
  margin-bottom: .375rem;
}

.wetteronline.daylist .cell {
  text-align: center;
}

.wetteronline.daylist .cell .image {
  flex-grow: 0;
}

.wetteronline.daylist .cell .image .text {
  font-size: .6875rem;
}

.wetteronline.daylist .temperature.compact .temp-max {
  border-bottom: 1px solid #e0e0e0;
  display: block;
  margin-bottom: 0.3em;
  padding-bottom: 0.3em;
}

.wetteronline.daylist .wettericon {
  display: block;
}

.wetteronline ul.weather-list {
  list-style: none;
  padding-left: 0;
}

.wetteronline ul.weather-list>li {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: .75rem;
  margin-bottom: .75rem;
}

.wetteronline ul.weather-list>li:last-child {
  border-bottom: 0 none;
}

.wetteronline ul.weather-list>li>.cell {
  flex-grow: 1;
  margin: 1em 5% 1em 0;
}

.wetteronline ul.weather-list .cell {
  flex-grow: 0;
  display: flex;
  align-items: center;
}

.wetteronline ul.weather-list .cell:last-child {
  padding-right: 0;
}

.wetteronline ul.weather-list .subinfo,
.wetteronline ul.weather-list .image {
  display: flex;
  flex-direction: column;
  margin: 0 0.5em;
  align-items: flex-start;
}

.wetteronline ul.weather-list .image img {
  max-width: none;
  width: auto;
}

.wetteronline.pollenflug .table-wrapper {
  display: flex;
  align-items: flex-end;
}

.wetteronline.pollenflug .table-wrapper .cell>* {
  margin: 0.1em;
}

.wetteronline.pollenflug .polle {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  -ms-transform: rotate(270deg);
}

@media print, (min-width: 26.251rem) {
  .wetteronline.pollenflug .polle {
    transform: rotate(222deg);
    -ms-transform: rotate(-47deg);
    margin-left: 1em !important;
  }
}

.wetteronline .pollenflug-staerke .inner {
  display: block;
  width: auto;
  height: auto;
}

.wetteronline .pollenflug-staerke .inner.s0 {
  background-color: #70C14B;
}

.wetteronline .pollenflug-staerke .inner.s1 {
  background-color: #CED370;
}

.wetteronline .pollenflug-staerke .inner.s2 {
  background-color: #F0972F;
}

.wetteronline .pollenflug-staerke .inner.s3 {
  background-color: #DD5F16;
}

.wetteronline .pollen-legende {
  display: flex;
  margin-top: 0.4em;
  padding-top: 0.2em;
  border-top: 1px solid #e0e0e0;
}

.wetteronline .pollen-legende>* {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}

.wetteronline .pollen-legende .inner {
  width: 1em;
  height: 1em;
  margin: 0 0.2em 0 0.5em;
}

.footer-search {
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0 none;
}

.footer-search .form-group {
  margin: 0;
  max-width: none;
}

.footer-search .form-group .controls {
  position: relative;
  background-color: #fff;
  border-radius: 2em;
}

.footer-search .form-group input {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 2em;
  padding: 2px 8px;
  margin: 0;
  display: inline-block;
  max-width: none;
  min-height: 32px;
  padding-right: 2.1875rem;
}

.footer-search .form-group button {
  height: 32px;
  position: absolute;
  display: inline-block;
  padding: 0 0 0 8px;
  margin: 0;
  color: #000;
  background: transparent;
  right: 0;
  top: 0;
  background-color: transparent;
  float: none;
  width: 2.1875rem;
  overflow: hidden;
  text-align: center;
  border: 0 none;
  display: flex;
}

.footer-search .form-group button::before {
  padding: 5px;
  content: "";
  display: inline-block;
  font-family: FontAwesome;
  color: #000;
  height: 100%;
  margin-right: 35px;
}

.form-berlinfinder {
  margin-bottom: 2.1875rem;
  margin-top: 1.09375rem;
  position: relative;
}

.form-berlinfinder form {
  padding: 12px;
  padding-bottom: 1.1rem;
  background-color: #f2f3f3;
  border: 1px solid #f5f5f5;
  position: relative;
  margin-bottom: 0;
}

.form-berlinfinder form label {
  min-width: 3.5em;
}

.form-berlinfinder a.serviceportal {
  display: block;
  text-align: right;
}

.form-berlinfinder .inner:after {
  content: "";
  display: table;
  clear: both;
}

.form-berlinfinder .logo {
  width: 7rem;
}

.form-berlinfinder .company {
  font-size: .6875rem;
  margin-top: 1em;
  display: block;
  text-align: right;
  clear: both;
}

.form-berlinfinder .form--inarow .inner+.company {
  margin-top: 0;
}

@media print, (min-width: 45.001rem) {
  .form-berlinfinder.imageframe a.serviceportal {
    position: absolute;
    right: 1.2em;
    bottom: 0;
    color: #fff;
  }
}

.form-berlinfinder.imageframe .imageframe__image {
  height: auto;
  max-height: none;
}

.form-berlinfinder+a.serviceportal {
  margin-top: -1.875rem;
  font-size: .6875rem;
  display: block;
  text-align: right;
}

.form-berlinfinder+.link--addcompany {
  margin-top: -1.875rem;
}

.form-bookingdotcom>h3 {
  margin-top: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.form-bookingdotcom>h3 a {
  display: inline;
}

.form-bookingdotcom form {
  padding: 12px;
  padding-bottom: 1.1rem;
  background-color: #f2f3f3;
  border: 1px solid #f5f5f5;
  background-color: #febb02;
  position: relative;
}

.form-bookingdotcom form .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media print, (min-width: 45.001rem) {
  .form-bookingdotcom form .image {
    justify-content: left;
  }
}

.form-bookingdotcom form .image .text {
  margin-right: 0.5em;
}

.form-bookingdotcom form .image img {
  max-width: 6.25rem;
  margin-top: 2px;
  width: auto;
}

.form-bookingdotcom form button {
  background-color: #07c;
  border-color: #07c;
}

.form-bookingdotcom form button:hover {
  background-color: #003580;
  border-color: #003580;
}

@media screen and (max-width: 715px) {
  .form-bookingdotcom #booking-label {
    padding-top: 9px;
  }

  .form-bookingdotcom .form-bookingdotcom {
    margin-bottom: 2.1875rem;
    margin-top: 2.1875rem;
  }
}

@media screen and (min-width: 715px) {
  .form-bookingdotcom .shofi-form {
    padding-top: 20px;
    padding-bottom: 12px;
  }

  .form-bookingdotcom #bookingcom-logo {
    margin-top: 5px;
  }

  .form-bookingdotcom #bookingcom-button {
    width: 100%;
  }
}

.marginal .form-eventlocation .grid,
.grid__item.one-third .form-eventlocation .grid {
  display: block;
}

.marginal .form-eventlocation .grid>.grid__item,
.grid__item.one-third .form-eventlocation .grid>.grid__item {
  display: block;
  width: 100%;
}

.form-eventpage-dateselect form {
  padding: 0;
  background-color: transparent;
  border: 0 none;
}

.form-eventpage-dateselect .form-check-label {
  text-align: right;
}

.form-eventpage-dateselect .form-group>.controls {
  display: flex;
}

.form-eventpage-dateselect .form-group>.controls>* {
  flex-grow: 1;
  margin-right: .75rem;
}

.form-eventpage-dateselect .form-group>.controls>*:last-child {
  margin-right: 0;
}

.form-eventpage-dateselect .form-group>.controls>.button {
  flex-grow: 0;
}

.form-grouprequest {
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
}

.form-grouprequest>*:last-child {
  margin-bottom: 0;
}

@media print, (min-width: 45.001rem) {
  .form-grouprequest form label {
    min-width: 12em;
  }
}

.form-hotelavailability {
  margin-bottom: 2.1875rem;
  margin-top: 2.1875rem;
}

.form-hotelavailability>h3 {
  margin-top: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.form-hotelavailability>h3 a {
  display: inline;
}

.form-hotelavailability form {
  padding: 12px;
  padding-bottom: 1.1rem;
  background-color: #f2f3f3;
  border: 1px solid #f5f5f5;
  position: relative;
}

@media print, (min-width: 45.001rem) {
  .form-hotelavailability form {
    padding-left: 8em;
  }
}

.form-hotelavailability form .image {
  margin: 0.2em 0 1.1em;
  display: block;
  max-width: 5rem;
}

@media print, (min-width: 45.001rem) {
  .form-hotelavailability form .image {
    left: 1em;
    position: absolute;
    top: 1em;
  }
}

.form-login {
  margin-bottom: 35px;
  width: 100%;
  overflow: visible;
  position: relative;
}

.form-login>*:last-child {
  margin-bottom: 0;
}

.form-login>h2,
.form-login>h3 {
  margin-top: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background-color: transparent;
  padding-left: 0;
}

.form-login>h2 a,
.form-login>h3 a {
  display: inline;
}

.form-login form {
  padding: 12px;
  padding-bottom: 1.1rem;
  background-color: #f2f3f3;
  border: 1px solid #f5f5f5;
}

.form-login .options a {
  display: inline-block;
  margin-top: 0.3em;
}

.form-login label .fa {
  font-size: 1.1875rem;
  color: #555;
  min-width: 1em;
  text-align: center;
  line-height: 0;
  vertical-align: -0.1em;
}

.form-login .forgot {
  font-size: .6875rem;
  display: inline-block;
  float: right;
  margin-top: 1em;
}

.form-login .form-actions>* {
  display: ínline-block;
  margin: 0 0 0 0;
}

.form-login .form-actions .register {
  background: #fff;
  border: 2px solid #A101C5;
  color: #A101C5;
  font-weight: normal;
  opacity: 1;
  width: 48%;
  float: left;
}

.form-login .form-actions .register:hover,
.form-login .form-actions .register:focus {
  background: #f5f5f5;
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}

.form-login .form-actions .submit,
.form-login .form-actions .button-submit {
  width: 48%;
  float: right;
}

.marginal .form-marketsearch .grid,
.grid__item.one-third .form-marketsearch .grid {
  display: block;
}

.marginal .form-marketsearch .grid>.grid__item,
.grid__item.one-third .form-marketsearch .grid>.grid__item {
  display: block;
  width: 100%;
}

.marginal .form-partysearch .grid,
.grid__item.one-third .form-partysearch .grid {
  display: block;
}

.marginal .form-partysearch .grid>.grid__item,
.grid__item.one-third .form-partysearch .grid>.grid__item {
  display: block;
  width: 100%;
}

.form-search-ems {
  margin-bottom: 2.1875rem;
}

.form-search-ems>.heading {
  margin-top: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.form-search-ems>.heading a {
  display: inline;
}

@media print, (min-width: 45.001rem) {
  .form-search-ems .ems-form-filter-row {
    display: flex;
    align-items: flex-end;
    margin-bottom: .875rem;
  }

  .form-search-ems .ems-form-filter-row>* {
    flex-grow: 1;
    margin-right: 0.75rem;
    margin-bottom: 0;
    width: 40%;
  }

  .form-search-ems .ems-form-filter-row>button {
    flex-grow: 0;
    margin-right: 0;
    width: auto;
  }

  .form-search-ems .ems-form-filter-row .controls>* {
    width: 100%;
  }
}

.form-search-ems .emsfom-sort-row {
  display: inline-flex;
  align-items: flex-end;
}

.form-search-ems .emsfom-sort-row .legend {
  margin-right: 0.2em;
}

@media screen and (max-width: 45rem) {
  .form-search-ems .emsfom-sort-row .legend {
    margin-bottom: 0.75em;
  }
}

.form-search-ems .checkbox-container {
  max-height: 9.6875rem;
  overflow: auto;
}

.form-search-ems fieldset {
  margin-bottom: 0;
}

.form-search-ems .formfilter {
  background-color: #EDEDED;
  border-top: 1px solid #c7c7c7;
}

@media screen and (max-width: 45rem) {
  .form-search-ems .ems-form-filter-row {
    margin-bottom: 0;
  }

  .form-search-ems .ems-form-filter-row>.button {
    margin-bottom: 0;
  }

  .form-search-ems .ems-form-filter-row .form-group--inline .controls {
    display: block;
  }

  .form-search-ems .ems-form-filter-row .form-group--inline .controls>* {
    width: 100%;
  }

  .form-search-ems button[type="submit"] {
    width: 100%;
    margin-bottom: .875rem;
  }
}

@media print, (min-width: 45.001rem) {
  .one-third .form-search-ems .formreset,
  .marginal .form-search-ems .formreset {
    height: auto;
    margin: 10px 0 0 0;
  }

  .one-third .form-search-ems .ems-form-filter-row,
  .marginal .form-search-ems .ems-form-filter-row {
    display: block;
    margin-bottom: 0;
  }

  .one-third .form-search-ems .ems-form-filter-row>.button,
  .marginal .form-search-ems .ems-form-filter-row>.button {
    margin-bottom: 0;
  }

  .one-third .form-search-ems .ems-form-filter-row>*,
  .marginal .form-search-ems .ems-form-filter-row>* {
    width: 100%;
    margin-bottom: .875rem;
  }

  .one-third .form-search-ems .ems-form-filter-row .form-group--inline .controls,
  .marginal .form-search-ems .ems-form-filter-row .form-group--inline .controls {
    display: block;
  }

  .one-third .form-search-ems .ems-form-filter-row .form-group--inline .controls>*,
  .marginal .form-search-ems .ems-form-filter-row .form-group--inline .controls>* {
    width: 100%;
  }

  .one-third .form-search-ems button[type="submit"],
  .marginal .form-search-ems button[type="submit"] {
    width: 100%;
  }

  .one-third .form-search-ems .emsfom-sort-row,
  .marginal .form-search-ems .emsfom-sort-row {
    display: none;
  }
}

.form-searchpage .form-group {
  display: table;
}

.form-searchpage .form-group:last-child {
  margin-bottom: 0;
}

.form-searchpage .controls {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding-right: 1em;
}

.form-searchpage .controls:last-child {
  padding-right: 0;
}

.form-searchpage .form-input,
.form-searchpage .button-submit {
  margin: 0;
  vertical-align: top;
  height: 2.25rem;
}

@media screen and (max-width: 45rem) {
  .form-searchpage .form-input,
  .form-searchpage .button-submit {
    height: 2.25rem;
  }
}

.form-searchpage .form-input {
  width: 100%;
}

form.form--base {
  background-color: transparent;
  border: 0 none;
  padding: 0;
  margin-bottom: 1.5rem;
}

form.form--base fieldset {
  padding: 12px;
  padding-bottom: 1.1rem;
  background-color: #f2f3f3;
  border: 1px solid #f5f5f5;
}

form.form--base fieldset>*:first-child {
  margin-top: 0;
}

form.form--base fieldset>*:last-child {
  margin-bottom: 0;
}

form {
  margin-bottom: 1.5rem;
}

form:after {
  content: "";
  display: table;
  clear: both;
}

form>h2,
form>h3 {
  margin-top: 0;
  margin-bottom: 0.5em;
}

form fieldset {
  margin-bottom: 1.5rem;
}

form fieldset:last-child {
  margin-bottom: 0em;
}

form .description {
  font-size: .6875rem;
  display: block;
  color: #555;
  margin-bottom: 0;
}

form label,
form .legend {
  display: block;
  font-weight: bold;
  margin-bottom: 0.4em;
  margin-top: 0;
}

form .form-check-label {
  font-weight: normal;
  display: flex;
  align-items: center;
  min-height: 2.25rem;
}

@media screen and (max-width: 45rem) {
  form .form-check-label {
    min-height: 2.25rem;
  }
}

form input[type="time"] {
  height: 2.25rem;
}

form input[type="checkbox"],
form input[type="radio"] {
  margin: 0px 0.3em 0;
  padding: 0;
  line-height: normal;
  width: auto;
  height: auto;
  min-height: auto;
}

form input[type="checkbox"]:focus,
form input[type="radio"]:focus {
  outline: thin dotted;
  outline-offset: -2px;
}

form input[disabled],
form input[disabled="disabled"],
form select[disabled],
form select[disabled="disabled"],
form textarea[disabled],
form textarea[disabled="disabled"] {
  cursor: not-allowed;
  background-color: #f5f5f5;
  opacity: 1;
  color: #555;
}

form input[readonly],
form input[readonly="readonly"],
form select[readonly],
form select[readonly="readonly"],
form textarea[readonly],
form textarea[readonly="readonly"] {
  cursor: default;
  background-color: #f5f5f5;
  opacity: 1;
  color: #555;
}

form input[readonly].input-plaintext,
form input[readonly="readonly"].input-plaintext,
form select[readonly].input-plaintext,
form select[readonly="readonly"].input-plaintext,
form textarea[readonly].input-plaintext,
form textarea[readonly="readonly"].input-plaintext {
  padding-left: 0;
  padding-right: 0;
  color: #000;
  background-color: transparent;
  border: 1px solid transparent;
  box-shadow: none;
}

form .has-success label,
form .has-success .label,
form .has-success legend,
form .has-success .legend,
form .has-success .validation-feedback {
  color: green;
}

form .has-success input,
form .has-success textarea,
form .has-success select {
  border-color: green;
  background-color: #fff;
}

form .has-success input:focus,
form .has-success textarea:focus,
form .has-success select:focus {
  border-color: green;
  box-shadow: 0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px green;
}

form .has-error label,
form .has-error .label,
form .has-error legend,
form .has-error .legend,
form .has-error .validation-feedback {
  color: #9F0732;
}

form .has-error input,
form .has-error textarea,
form .has-error select {
  border-color: #9F0732;
  background-color: #FFF8F7;
}

form .has-error input:focus,
form .has-error textarea:focus,
form .has-error select:focus {
  border-color: #9F0732;
  box-shadow: 0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px #9F0732;
}

form .validation-feedback {
  font-size: .6875rem;
}

form .form-group {
  margin-bottom: .875rem;
  max-width: none;
  display: block;
}

form .form-group:first-child label,
form .form-group:first-child .label,
form .form-group:first-child .legend {
  margin-top: 0;
}

form .form-group.prepend:after {
  content: "";
  display: table;
  clear: both;
}

form .form-group.prepend label {
  background: #fff none repeat scroll 0 0;
  display: inline-block;
  float: left;
  padding: 6px;
  margin: 0;
  font-weight: bold;
  border: 1px solid #e0e0e0;
  border-right: 0 none;
  margin-top: 0;
  line-height: 1rem;
  min-height: 2.25rem;
}

@media screen and (max-width: 45rem) {
  form .form-group.prepend label {
    min-height: 2.25rem;
  }
}

form .form-group.prepend .controls {
  display: flex;
}

form .form-group.prepend input[type="number"] {
  min-width: 0;
}

form .form-group--inline .controls>* {
  width: auto;
  float: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: .1875rem;
  margin-bottom: 0;
}

form .form-group--inline .controls .form-check-label {
  display: inline-flex;
}

form .datepicker-icon-wrapper {
  background-color: white;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: none;
}

form .datepicker-icon-wrapper input,
form .datepicker-icon-wrapper input[type="date"],
form .datepicker-icon-wrapper .datepicker-input {
  padding-right: 2em;
  background-color: #fff;
  cursor: pointer;
  background-color: transparent;
  position: relative;
  z-index: 1;
}

form .datepicker-icon-wrapper input[type="date"] {
  height: 2.25rem;
}

@media screen and (max-width: 45rem) {
  form .datepicker-icon-wrapper input[type="date"] {
    height: 2.25rem;
  }
}

form .datepicker-icon-wrapper:hover {
  cursor: pointer;
}

form .datepicker-icon-wrapper::after {
  z-index: 0;
  content: "\f073";
  font-family: FontAwesome;
  display: block;
  height: 2.25rem;
  position: absolute;
  right: 1px;
  top: 1px;
  width: 2em;
  text-align: center;
  line-height: 36px;
}

@media screen and (max-width: 45rem) {
  form .datepicker-icon-wrapper::after {
    height: 2.25rem;
  }
}

@media screen and (max-width: 45rem) {
  form .datepicker-icon-wrapper::after {
    line-height: 36px;
  }
}

form button.formreset,
form a.formreset,
form input.formreset {
  font-size: .6875rem;
  height: 2.25rem;
  display: inline-block;
  float: right;
  margin: 0;
  text-align: right;
}

form .required-symbol {
  color: #9F0732;
}

@media print, (min-width: 45.001rem) {
  .form--prependlabel div.form-group {
    display: table-row;
  }

  .form--prependlabel label,
  .form--prependlabel .label,
  .form--prependlabel .legend {
    width: auto;
    max-width: 50%;
    min-width: 20%;
    display: table-cell;
    vertical-align: top;
    padding-right: 1em;
    margin-top: 0;
    padding-top: 0.3em;
    padding-bottom: .875rem;
  }

  .form--prependlabel div.controls {
    width: 100%;
    display: table-cell;
    vertical-align: top;
    padding-bottom: .875rem;
  }

  .form--prependlabel div.form-actions {
    display: table-footer-group;
    margin-top: 0;
  }

  .form--prependlabel div.form-actions>* {
    margin-top: .75rem;
  }

  .form--prependlabel div.form-actions::before {
    content: "";
    display: table-cell;
  }
}

.form-actions {
  margin-top: .875rem;
}

.form-actions:after {
  content: "";
  display: table;
  clear: both;
}

.form-actions>button,
.form-actions>.button {
  width: 100%;
  margin-bottom: 1em;
}

@media print, (min-width: 45.001rem) {
  .form-actions>button,
  .form-actions>.button {
    width: auto;
    float: right;
    margin-bottom: 0em;
    margin-left: 1em;
  }

  .form-actions>button.link--back,
  .form-actions>.button.link--back {
    float: left;
  }
}

.form-actions .form-helptext {
  display: inline-block;
  margin-top: .64286rem;
}

.form-actions .quicklinks {
  display: inline-block;
}

.form-actions>button:last-child,
.form-actions>.button:last-child {
  margin-left: 0;
}

@media print, (min-width: 45.001rem) {
  form .grid+.form-actions {
    margin-top: 0;
  }
}

fieldset,
.fieldset {
  margin: 0;
  border: 0 none;
  padding: 0;
}

input,
textarea,
select,
.form-input {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  font-size: 1em;
  line-height: 1rem;
  width: 100%;
  font-family: "Open sans",Arial,sans-serif;
  background-color: #fff;
  background-image: none;
  border: 1px solid #e0e0e0;
  color: #000;
  padding: 6px;
  transition: border-color 0.16s ease-in-out 0s,box-shadow 0.16s ease-in-out 0s;
  max-width: none;
  min-height: 2.25rem;
}

@media screen and (max-width: 45rem) {
  input,
  textarea,
  select,
  .form-input {
    min-height: 2.25rem;
  }
}

input:focus,
textarea:focus,
select:focus,
.form-input:focus {
  border-color: #66afe9;
  box-shadow: 0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px rgba(102,175,233,0.6);
  outline: 0 none;
}

textarea {
  overflow: auto;
  line-height: 21px;
}

select[multiple] {
  padding: 0;
}

select:not([multiple]) {
  padding: 0 0px 0 2px;
  min-height: 2.1em;
  height: 2.25rem;
}

@media screen and (max-width: 45rem) {
  select:not([multiple]) {
    height: 2.25rem;
  }
}

select>option {
  padding: 6px;
}

@media print, (min-width: 45.001rem) {
  .form--split {
    padding-left: 9em !important;
    padding-top: 1.5em !important;
  }

  .form--split .logo {
    position: absolute;
    width: 8em;
    left: 1em;
    top: 18%;
  }

  .form--split .inner {
    display: block;
  }

  .form--split .form-group {
    display: block;
    width: 50%;
    float: left;
    padding-left: .75rem;
  }

  .form--split .button-submit {
    margin-left: 1em;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    float: right;
  }
}

@media print, (min-width: 45.001rem) {
  .form--inarow .inner {
    display: flex;
    align-items: center;
  }

  .form--inarow .inner>* {
    margin: 0;
  }

  .form--inarow .form-group {
    flex-grow: 1;
    flex-shrink: 1;
    padding-left: .75rem;
  }

  .form--inarow .form-actions {
    padding-left: .75rem;
  }

  .form--inarow .button-submit {
    margin-left: 0;
  }

  .form--inarow label {
    margin-top: 0;
  }
}

@media print, (min-width: 45.001rem) {
  .js-multiselect2checkboxes {
    position: relative;
    background: #fff !important;
  }

  .js-multiselect2checkboxes .arrow {
    display: none;
  }

  .js-multiselect2checkboxes:before {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 0.8em;
    display: inline-block;
    width: 1em;
    height: 1em;
    position: absolute;
    right: 0.5em;
    top: 0.5em;
  }

  .js-multiselect2checkboxes select {
    display: none;
  }

  .js-multiselect2checkboxes .checkbox-container {
    position: absolute;
    display: none;
    width: 100%;
    background: white;
    padding: 0;
    z-index: 1;
    border: 1px solid #e0e0e0;
    border-width: 0 1px 1px 1px;
  }

  .js-multiselect2checkboxes .checkbox-container label {
    display: block;
    padding: 0.3em 0.5em;
    font-weight: normal;
  }

  .js-multiselect2checkboxes .checkbox-container label+label {
    border-top: 1px solid #e0e0e0;
  }

  .js-multiselect2checkboxes .checkbox-container label input[type="checkbox"] {
    float: right;
  }
}

.js-multiselect2checkboxes__fakeselect {
  background: transparent !important;
  text-overflow: ellipsis;
  padding-right: 1.5em;
  position: relative;
}

.portal-search-form {
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0 none;
  display: inline-block;
  width: 100%;
  padding-left: 0.8em;
}

@media screen and (max-width: 45rem) {
  .portal-search-form {
    max-width: 97%;
  }
}

.portal-search-form .form-group {
  margin: 0;
  max-width: none;
}

.portal-search-form .form-group .controls {
  position: relative;
}

@media print, (min-width: 45.001rem) {
  .portal-search-form .form-group .controls {
    background-color: #fff;
    border-radius: 2em;
  }
}

.portal-search-form .form-group input {
  border-radius: 2em;
  width: 100%;
  border: 1px solid rgba(0,0,0,0);
  padding: 2px 8px;
  margin: 0;
  display: inline-block;
  padding-right: 2.1875rem;
  min-height: 30px;
}

@media print, (min-width: 45.001rem) {
  .portal-search-form .form-group input {
    max-width: 330px;
  }
}

.portal-search-form .form-group button {
  height: 30px;
  position: absolute;
  display: inline-block;
  padding: 0 0 0 8px;
  margin: 0;
  color: #000;
  right: 0;
  top: 0;
  background-color: transparent;
  float: none;
  width: 2.1875rem;
  overflow: hidden;
  text-align: center;
  border: 0 none;
  line-height: 1rem;
  display: flex;
  min-height: 1.875rem;
}

@media screen and (max-width: 45rem) {
  .portal-search-form .form-group button {
    line-height: 2em;
    right: -0.5em;
    top: 0.4em;
  }
}

@media screen and (max-width: 45rem) {
  .portal-search-form .form-group button {
    line-height: 2.5em;
    min-height: 2.5em;
  }
}

.form-progressbar {
  text-align: center;
  margin-bottom: 35px;
}

.form-progressbar .heading {
  margin-top: 0;
}

.form-progressbar .bar-outer {
  background: #e0e0e0;
  width: 100%;
}

.form-progressbar .bar-outer .bar-inner {
  background: #3023AE;
  height: 0.5em;
}

.searchpage-befifilter .form-group {
  margin-bottom: 0;
}

.searchpage-befifilter .form-group label {
  display: table-cell;
  color: #555;
  padding: 0 1em 0 0;
  vertical-align: middle;
}

.searchpage-befifilter .form-group .controls {
  display: table-cell;
  width: 100%;
  position: relative;
}

.searchpage-befifilter .form-group .controls button {
  position: absolute;
  display: inline-block;
  padding: 0;
  margin: 0;
  color: #3023AE;
  right: 0;
  top: 0;
  background-color: transparent;
  float: none;
  width: 2.1875rem;
  overflow: hidden;
  text-align: center;
  border: 0 none;
  line-height: 1.2em;
}

.searchpage-befifilter .form-group .controls button::before {
  padding: 5px;
  content: "";
  display: inline-block;
  font-family: FontAwesome;
  color: #3023AE;
  height: 100%;
}

.searchpage-befifilter .form-group .controls input {
  padding-right: 2.1875rem;
}

.twitter-typeahead {
  display: block !important;
}

.twitter-typeahead .tt-menu {
  background: #fff;
  border: 1px solid #e0e0e0;
  color: #000;
  line-height: 1.3em;
}

.twitter-typeahead .tt-menu h3 {
  padding: 0.3em 1em;
  background: #e0e0e0;
}

.twitter-typeahead .tt-menu .tt-suggestion {
  padding: 0.3em 1em;
}

.twitter-typeahead .tt-menu .tt-suggestion:hover {
  background: #3023AE;
  color: #fff;
}

.twitter-typeahead .tt-menu .tt-suggestion:hover .tt-highlight {
  color: #ff8;
}

.twitter-typeahead .tt-menu .tt-highlight {
  font-weight: bold;
  color: #9F0732;
}

.az {
  margin-bottom: 1.5rem;
}

.az:after {
  content: "";
  display: table;
  clear: both;
}

.az>h2,
.az h3 {
  margin-bottom: 1em;
}

.az li {
  margin-bottom: 0.75rem;
}

.az li>* {
  border: 1px solid #e0e0e0;
  margin-right: -1px;
  color: #A101C5;
  min-height: 2.4em;
  min-width: 2.6em;
  text-align: center;
  padding: 0.4em 0.75em 0.3em 0.75em;
  display: block;
  text-decoration: none;
  background-color: #fff;
  outline-color: black;
}

.az li a:hover,
.az li a:focus {
  background-color: #f5f5f5;
  color: #A101C5;
}

.az li .disabled {
  color: #D5D5D5;
  background-color: #fff;
  pointer-events: none;
}

.az li .disabled:hover,
.az li .disabled:focus {
  background-color: #fff;
  color: #D5D5D5;
}

.az li .active {
  color: #fff;
  background-color: #3023AE;
  border-color: #3023AE;
  pointer-events: none;
}

.az li .active:hover,
.az li .active:focus {
  background-color: #3023AE;
  color: #fff;
}

.az li:first-child>* {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.az li:last-child>* {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.az ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

ul.befi-categories,
ul.categories {
  padding-left: 0;
  list-style: none;
  display: table;
  padding: 0;
  margin: 0 0 0.5em 0;
  list-style: none;
  line-height: 21px;
  margin-bottom: 0.5em;
}

ul.befi-categories:after,
ul.categories:after {
  content: "";
  display: table;
  clear: both;
}

ul.befi-categories>li,
ul.categories>li {
  padding-left: 0;
}

ul.befi-categories>li::before,
ul.categories>li::before {
  content: "" !important;
  margin: 0 !important;
  display: none !important;
}

ul.befi-categories li,
ul.categories li {
  float: none;
  display: inline;
  line-height: 1.3125rem;
  margin: 0 0.25em 0 0;
  padding-left: 0 !important;
}

ul.befi-categories li>*::after,
ul.categories li>*::after {
  content: "|";
  display: inline-block;
  margin-left: 0.5em;
  line-height: 1.25;
}

ul.befi-categories li:last-child>*:after,
ul.categories li:last-child>*:after {
  content: "";
  margin-left: 0em;
}

ul.befi-categories a,
ul.categories a {
  font-size: 12px;
  font-weight: 700;
}

.breadcrumb {
  color: #000;
  font-size: 12px;
}

.breadcrumb a {
  color: #000;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-top: 0;
}

.breadcrumb ol>li {
  margin: 0 0.7em 0 0;
  padding: 0;
}

.breadcrumb ol>li a {
  font-weight: 700;
}

.breadcrumb ol>li .home {
  font-size: 1.4em;
  display: inline-block;
  height: 1em;
  overflow: hidden;
  padding: 0 1em 0 0;
  width: 0;
  line-height: 1.05;
  min-height: 0;
}

.breadcrumb ol>li::before {
  content: "\f054";
  font-family: FontAwesome;
  font-size: 11px;
  margin: 0 0.3em 0 0;
  width: 1em;
  display: inline-block;
}

.breadcrumb ol>li:first-child::before {
  display: none;
}

@media screen and (max-width: 45rem) {
  .breadcrumb {
    display: none;
  }
}

.channel-navigation ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
  margin-bottom: 1.875rem;
  list-style: none;
  padding: 0;
  background-color: #fff;
}

.channel-navigation ul>li {
  padding-left: 0;
}

.channel-navigation ul>li::before {
  content: "" !important;
  margin: 0 !important;
  display: none !important;
}

.channel-navigation ul>li {
  font-size: 1rem;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  word-wrap: break-word;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

.channel-navigation ul>li:last-child {
  border-bottom: 0px solid;
}

.channel-navigation ul>li>.menu-item {
  padding: .625rem;
  padding-left: 1rem;
  padding-right: .625rem;
  display: block;
}

.channel-navigation ul>li::after {
  font-family: FontAwesome;
  content: "\f054";
  color: #9F0732;
  float: right;
}

.channel-navigation ul>li::after {
  position: absolute;
  right: 0.5em;
  top: 25%;
}

.channel-navigation ul>li>* {
  display: block;
  padding-left: 0;
  padding-right: 1.5em;
  padding-top: .625rem;
  padding-bottom: .625rem;
}

.channel-navigation ul>li.active {
  font-weight: bold;
}

.channel-navigation ul>li.active>* {
  font-weight: bold;
}

.channel-navigation ul>li.active>*::after {
  color: #f5f5f5;
  content: "";
}

@media screen and (max-width: 45rem) {
  .channel-navigation ul {
    margin-left: -12px;
    margin-right: -12px;
  }

  .channel-navigation ul li>* {
    padding-left: .75rem;
  }
}

.language-linklist {
  display: flex;
  text-align: right;
}

@media print, (min-width: 45.001rem) {
  .language-linklist {
    position: absolute;
    top: 0;
    right: 0;
  }
}

.language-linklist>a {
  display: inline-block;
  min-width: 1.8em;
  min-height: 1.5em;
  text-transform: lowercase;
  margin: 0;
  background: #253276;
  color: white;
  padding: 0em;
  border-radius: 0.3em;
  font-size: 11px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 0.5em;
}

.language-linklist>li {
  display: inline-flex;
  margin: 0 0 0 0.4em;
}

.language-linklist>li>a {
  min-width: 1.8em;
  min-height: 1.5em;
  text-transform: lowercase;
  margin: 0;
  background: #253276;
  color: white;
  padding: 0em;
  border-radius: 0.3em;
  font-size: 11px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.navigation-primary .language-select {
  position: relative;
}

.navigation-primary .language-select .toggler {
  font-weight: 600;
  color: #fff;
}

.navigation-primary .language-select .toggler::after {
  color: #fff;
}

.navigation-primary .language-select .lang-icon {
  align-items: center;
  background-color: #3023AE;
  border-radius: .3em;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  min-height: 1.5em;
  min-width: 1.8em;
  text-transform: none;
}

#footer .navigation-footer ul {
  list-style: none;
  padding: 0;
}

#footer .navigation-footer>.grid {
  padding: 0;
  list-style: outside none none;
  font-size: .875rem;
}

@media print, (min-width: 45.001rem) {
  #footer .navigation-footer>.grid {
    margin: 0 0 .7em 0;
  }
}

@media print, (min-width: 45.001rem) {
  #footer .navigation-footer>.grid.list--footerflexlist-desk {
    display: flex;
    margin-left: 1em;
  }

  #footer .navigation-footer>.grid.list--footerflexlist-desk>li {
    margin-right: 2em;
    width: auto;
  }

  #footer .navigation-footer>.grid.list--footerflexlist-desk>li:last-child {
    margin-right: 0;
  }

  #footer .navigation-footer>.grid.list--footerflexlist-desk>.grid__item {
    border-top: 0 none;
    margin-top: 0;
    padding-top: 0;
  }
}

#footer .navigation-footer>.grid>.grid__item {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 1em 0 0;
  padding: 1.5em 0 0;
}

@media print, (min-width: 45.001rem) {
  #footer .navigation-footer>.grid>.grid__item:nth-child(1),
  #footer .navigation-footer>.grid>.grid__item:nth-child(2),
  #footer .navigation-footer>.grid>.grid__item:nth-child(3) {
    border-top: 0 none;
    margin-top: 0;
    padding-top: 0;
  }
}

#footer .navigation-footer>.grid>.grid__item>ul {
  font-weight: normal;
  margin-right: 1em;
  margin-bottom: 0em;
}

#footer .navigation-footer>.grid>.grid__item>ul li {
  display: block;
  margin: 0 0 0.5em 0;
  line-height: 1.3em;
}

#footer .navigation-footer>.grid>.grid__item>ul a {
  font-weight: 700;
}

@media screen and (max-width: 45rem) {
  #footer .navigation-footer>.grid {
    width: auto;
    margin: -16px -16px;
  }

  #footer .navigation-footer>.grid>.grid__item {
    border-top: 0 none;
    border-bottom: 1px solid #000;
    border-top: 0 none;
    margin: 0;
    padding: 0;
  }

  #footer .navigation-footer>.grid>.grid__item>h3::after,
  #footer .navigation-footer>.grid>.grid__item>h4::after {
    display: inline-block;
    font-family: FontAwesome;
    line-height: 1;
    font-size: inherit;
    content: "\f078";
    float: right;
    font-style: normal;
  }

  #footer .navigation-footer>.grid>.grid__item>h2,
  #footer .navigation-footer>.grid>.grid__item>h3,
  #footer .navigation-footer>.grid>.grid__item>h4,
  #footer .navigation-footer>.grid>.grid__item>a {
    font-weight: normal;
    margin: 0;
    padding: 1em;
    cursor: pointer;
    display: block;
  }

  #footer .navigation-footer>.grid>.grid__item>ul {
    display: none;
    font-size: .875rem;
    background-color: #000;
    margin: 0;
  }

  #footer .navigation-footer>.grid>.grid__item>ul>li {
    margin: 0;
    padding: 0;
  }

  #footer .navigation-footer>.grid>.grid__item>ul>li>a,
  #footer .navigation-footer>.grid>.grid__item>ul>li>span {
    padding: 1em 1em 1em 3em;
    display: block;
  }

  #footer .navigation-footer>.grid>.grid__item.opened>ul {
    display: block;
    border-top: 2px solid #000;
  }

  #footer .navigation-footer>.grid>.grid__item.opened>h4::after,
  #footer .navigation-footer>.grid>.grid__item.opened h3::after {
    content: "\f077";
  }
}

.navigation-primary {
  z-index: 10;
}

.navigation-primary a {
  font-weight: 600;
  display: block;
}

.navigation-primary ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation-primary ul li {
  margin: 0;
}

.navigation-primary .menu__item>a {
  text-transform: uppercase;
}

.navigation-primary .submenu__item {
  text-align: left;
}

@media screen and (max-width: 45rem) {
  .navigation-primary {
    display: none;
    flex-direction: row;
    background-color: #000;
    min-height: 100vh;
  }

  .navigation-primary.opened {
    display: block;
  }

  .navigation-primary ul.menu {
    overflow-y: scroll;
    height: 84vh;
  }

  .navigation-primary ul.menu>li.highlight>a {
    font-weight: 600;
  }

  .navigation-primary ul.menu>li.highlight>a::before {
    font-family: 'FontAwesome';
    content: "\f0c0";
    display: inline-block;
    margin-right: 0.5em;
    font-size: 1.1em;
    font-weight: 400;
  }

  .navigation-primary .menu__item {
    border-top: 1px solid #000;
    background-color: #000;
  }

  .navigation-primary .menu__item a {
    padding: 1em;
    color: #fff;
  }

  .navigation-primary .menu__item>a::after {
    font-family: FontAwesome;
    content: "\f078";
    color: #fff;
    float: right;
  }

  .navigation-primary .menu__item.opened>a::after {
    transform: rotate(180deg);
  }

  .navigation-primary .submenu {
    display: none;
  }

  .navigation-primary .submenu.opened {
    display: block;
    border-top: 1px solid #000;
  }

  .navigation-primary .submenu__item a {
    background: #A101C5;
    padding: 1em;
    padding-left: 2.5em;
    color: #fff;
    border-bottom: 1px solid #b601de;
  }

  .navigation-primary .submenu__item.active>a {
    background: #80019c;
  }

  .navigation-primary .portal-search,
  .navigation-primary .portal-search-form {
    padding: 0;
  }

  .navigation-primary .portal-search input,
  .navigation-primary .portal-search-form input {
    padding: .5em;
    margin: .5em;
    background-color: #f5f5f5;
  }

  .navigation-primary .channellink {
    display: block;
  }

  .navigation-primary .channellink a {
    background: #f5f5f5;
    background: linear-gradient(to bottom, #efefef 0%, #f5f5f5 28%, #f5f5f5 100%);
    color: #A101C5;
  }
}

@media print, (min-width: 45.001rem) {
  .navigation-primary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0,0,0,0);
    position: relative;
    bottom: 0;
    height: auto;
    flex-direction: row-reverse;
    overflow: visible;
    padding-left: 16px;
    padding-right: 16px;
    margin: 20px 10px 20px 0px;
  }

  .navigation-primary ul {
    padding: 0;
  }

  .navigation-primary ul.menu {
    flex-grow: 1;
    display: flex;
    flex: 0 0 auto;
    justify-content: space-between;
    align-items: stretch;
    margin: 0;
    margin-left: -10px;
    overflow: visible;
  }

  .navigation-primary ul.menu>li {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    width: auto;
    position: relative;
    overflow: visible;
    border: 4px solid #A101C5;
    border-color: rgba(0,0,0,0);
    border-width: 0 0 4px 0;
  }

  .navigation-primary ul.menu>li>* {
    margin: 1px 0;
  }

  .navigation-primary ul.menu>li.highlight>* {
    border: 1px solid #fff;
    border-radius: 3px;
    padding: 1px 10px 2px;
    font-weight: 600;
    margin: 0;
  }

  .navigation-primary ul.menu>li.active {
    background: rgba(0,0,0,0);
    border-color: #A101C5;
  }

  .navigation-primary ul.menu>li.active>a {
    color: #fff;
    border-color: transparent;
  }

  .navigation-primary .menu__item {
    font-weight: bold;
    padding: 0.6em 0em 0.2em 0em;
    margin: 0 1em;
    display: inline-block;
    outline-offset: -1px;
    width: 100%;
    text-align: center;
    color: #fff;
    border-radius: 5px 5px 0 0;
  }

  .navigation-primary .menu__item a {
    color: #fff;
  }
}

@media print, print and (min-width: 45.001rem), print and (min-width: 45.001rem), (min-width: 45.001rem) and (min-width: 45.001rem) {
  .navigation-primary .menu__item {
    white-space: nowrap;
  }
}

@media print, (min-width: 45.001rem) {
  .navigation-primary .menu__item.language-select {
    margin-right: 0;
    padding-right: 0;
  }

  .navigation-primary .submenu {
    display: none;
    position: absolute;
    left: -1em;
    top: 2.5em;
    z-index: 2;
    background: #fff;
    padding: 0;
    box-shadow: 0 0 7px 0 rgba(0,0,0,0.46);
    border-radius: 4px;
  }

  .navigation-primary .submenu.opened {
    display: block;
  }

  .navigation-primary .submenu:before {
    font-family: FontAwesome;
    content: "\f0d8";
    display: inline-block;
    position: absolute;
    top: -0.5em;
    left: 2.1em;
    text-align: center;
    color: #fff;
    font-size: 1.65em;
  }

  .navigation-primary .submenu__item {
    color: #000;
    padding: 1px 10px 2px;
  }

  .navigation-primary .submenu__item a {
    color: #000;
    padding: 14px 25px 14px 20px;
    text-decoration: none;
  }

  .navigation-primary .submenu__item a:hover,
  .navigation-primary .submenu__item a:focus {
    color: #A101C5;
  }

  .navigation-primary .submenu__item.active {
    background: #A101C5;
  }

  .navigation-primary .submenu__item.active>a {
    color: #fff;
  }

  .navigation-primary .channellink {
    display: none;
  }
}

.pagination {
  margin-bottom: 2.1875rem;
}

.pagination:after {
  content: "";
  display: table;
  clear: both;
}

.pagination ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.pagination ul li {
  min-width: 2.4em;
}

.pagination ul li>* {
  border: 1px solid #e0e0e0;
  margin-right: -1px;
  color: #A101C5;
  min-height: 2.4em;
  min-width: 2.6em;
  text-align: center;
  padding: 0.4em 0.75em 0.3em 0.75em;
  display: block;
  text-decoration: none;
  background-color: #fff;
  outline-color: black;
}

.pagination ul li a:hover,
.pagination ul li a:focus {
  background-color: #f5f5f5;
  color: #A101C5;
}

.pagination ul li .disabled {
  color: #D5D5D5;
  background-color: #fff;
  pointer-events: none;
}

.pagination ul li .disabled:hover,
.pagination ul li .disabled:focus {
  background-color: #fff;
  color: #D5D5D5;
}

.pagination ul li .active {
  color: #fff;
  background-color: #3023AE;
  border-color: #3023AE;
  pointer-events: none;
}

.pagination ul li .active:hover,
.pagination ul li .active:focus {
  background-color: #3023AE;
  color: #fff;
}

.pagination ul li:first-child>* {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.pagination ul li:last-child>* {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical>.swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow>.swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode>.swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform, height;
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.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;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.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'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.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'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

.swiper-pagination-bullet button {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-vertical>.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

.swiper-pagination-progress {
  background: rgba(0,0,0,0.25);
  position: absolute;
}

.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal>.swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical>.swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255,255,255,0.5);
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:50%;-webkit-background-size:100%;background-size:100%;background-repeat:no-repeat}.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}@-webkit-keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg)}}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper-articleimage{margin-bottom:.75rem;position:relative;position:relative;overflow:hidden}.swiper-articleimage .source{background-color:transparent;display:inline-block;text-shadow:1px 1px 1px rgba(0,0,0,0.5);margin:0;padding:1px 3px 1px 3px;color:#fff;font-size:.6875rem;line-height:1.2;text-align:right;word-break:break-word;word-wrap:break-word;position:absolute;bottom:0;right:0;padding:1px 3px 1px 3px}.swiper-articleimage>h2,.swiper-articleimage>h3{margin-top:0}.swiper-articleimage p{text-align:left}.swiper-articleimage .swiper-container{margin-top:1.5em;overflow:visible}.swiper-articleimage .swiper-container .swiper-pagination{top:-2.3em;bottom:auto;font-weight:bold;width:100%;padding:0.5em 0}@media print, (min-width: 45.001rem){.swiper-articleimage .swiper-button-next,.swiper-articleimage .swiper-button-prev{top:10.96875rem}}@media screen and (max-width: 45rem){.swiper-articleimage .swiper-button-next,.swiper-articleimage .swiper-button-prev{top:26.15625vw}}.swiper-articleimage .image{margin-bottom:0.3em}.swiper-articleimage .image img{display:block;margin:0 auto;width:100%}@media print, (min-width: 45.001rem){.swiper-articleimage .image img{max-height:21.9375rem}}.swiper-articleimage .image .swiper-zoom-container{align-items:center;display:flex}@media screen and (max-width: 45rem){.swiper-articleimage .image .swiper-zoom-container{height:52.3125vw}}@media print, (min-width: 45.001rem){.swiper-articleimage .image .swiper-zoom-container{height:21.9375rem}}@media print, (min-width: 45.001rem){.swiper-articleimage .swiper-lazy-preloader{top:10.96875rem}}@media screen and (max-width: 45rem){.swiper-articleimage .swiper-lazy-preloader{top:26.15625vw}}.swiper-articleimage.swiper-lightbox{max-width:39rem;margin:0 auto;position:relative;color:#fff;background:transparent;position:relative;overflow:hidden}.swiper-articleimage.swiper-lightbox .source{background-color:transparent;display:inline-block;text-shadow:1px 1px 1px rgba(0,0,0,0.5);margin:0;padding:1px 3px 1px 3px;color:#fff;font-size:.6875rem;line-height:1.2;text-align:right;word-break:break-word;word-wrap:break-word;position:absolute;bottom:0;right:0;padding:1px 3px 1px 3px}.swiper-articleimage.swiper-lightbox .image{margin-bottom:0em;background-color:#000}.swiper-articleimage.swiper-lightbox .text{text-align:center;margin:0 auto;padding:1em;background-color:#000}.swiper-articleimage.swiper-lightbox .swiper-container{margin-top:2.5em}.swiper-articleimage.swiper-lightbox .swiper-slide.swiper-slide-active .swiper-zoom{display:none}.swiper-articleimage.swiper-lightbox .swiper-pagination{background-color:#000}.swiper-articleimage.swiper-lightbox .mfp-close{top:-2px}@media print, (min-width: 45.001rem){.swiper-articleimage.swiper-articleimage--2x1-fullwidth .image img{max-height:29.625rem}}@media screen and (max-width: 45rem){.swiper-articleimage.swiper-articleimage--2x1-fullwidth .image .swiper-zoom-container{height:46.5vw}}@media print, (min-width: 45.001rem){.swiper-articleimage.swiper-articleimage--2x1-fullwidth .image .swiper-zoom-container{height:29.625rem}}@media print, (min-width: 45.001rem){.swiper-articleimage.swiper-articleimage--2x1-fullwidth .swiper-lazy-preloader{top:14.8125rem}}@media screen and (max-width: 45rem){.swiper-articleimage.swiper-articleimage--2x1-fullwidth .swiper-lazy-preloader{top:23.25vw}}@media print, (min-width: 45.001rem){.swiper-articleimage.swiper-articleimage--2x1-fullwidth .swiper-button-next,.swiper-articleimage.swiper-articleimage--2x1-fullwidth .swiper-button-prev{top:14.8125rem}}@media screen and (max-width: 45rem){.swiper-articleimage.swiper-articleimage--2x1-fullwidth .swiper-button-next,.swiper-articleimage.swiper-articleimage--2x1-fullwidth .swiper-button-prev{top:23.25vw}}.swiper-galleryselect{margin-bottom:35px;width:100%;overflow:visible;position:relative;position:relative;overflow:hidden}.swiper-galleryselect>*:last-child{margin-bottom:0}.swiper-galleryselect .swiper .swiper-buttons{position:absolute;top:-2.7em;height:auto;right:0;left:auto;z-index:11;width:auto;white-space:nowrap;display:block}.swiper-galleryselect .swiper .swiper-buttons .swiper-button-next,.swiper-galleryselect .swiper .swiper-buttons .swiper-button-prev{position:static;font-size:1rem;display:inline-block;width:auto;height:auto;color:#000;border:0 none;background:none;padding:0.1em 0.4em;border-radius:0}.swiper-galleryselect .swiper .swiper-buttons .swiper-button-next .fa,.swiper-galleryselect .swiper .swiper-buttons .swiper-button-prev .fa{margin:0;color:#000}.swiper-galleryselect .swiper .swiper-buttons{position:absolute;top:-2.35em;right:1px}.swiper-galleryselect .swiper-container{overflow:visible;margin-top:36px}.swiper-galleryselect .heading{font-family:"Contrail One",Arial,sans-serif;font-size:1.25rem;font-style:normal;font-weight:400;margin-bottom:1em;margin-top:0;border-bottom:2px solid #9B8E42;position:absolute;width:100%;padding-right:3.5em;top:0;left:0;display:flex}.swiper-galleryselect .heading a{color:#9B8E42}.swiper-galleryselect .heading .text{display:inline-block;background-color:rgba(0,0,0,0);color:#9B8E42;padding:2px 6px}.swiper-galleryselect .heading .text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%;display:inline-block;margin-bottom:auto}.swiper-galleryselect>h2{padding-bottom:0.1em !important}.swiper-galleryselect .placeholder{height:2.1em}.swiper-galleryselect .image{margin-bottom:4px;margin-top:3px;display:block}.swiper-galleryselect .image img{display:block;width:100%;max-width:100%}.swiper-galleryselect .image>a{display:block;max-width:100%}@media print, (min-width: 45.001rem){.swiper-galleryselect .image{position:relative}.swiper-galleryselect .image .source{background-color:transparent;display:inline-block;text-shadow:1px 1px 1px rgba(0,0,0,0.5);margin:0;padding:1px 3px 1px 3px;color:#fff;font-size:.6875rem;line-height:1.2;text-align:right;word-break:break-word;word-wrap:break-word;position:absolute;bottom:0;right:0;padding:1px 3px 1px 3px}}.swiper-galleryselect .source{font-size:.6875rem;color:#555;display:block;line-height:1.2em;margin-top:0.2em;margin-left:0;position:static;padding:0;word-wrap:break-word;background-color:transparent;text-align:left;text-shadow:none}.swiper-galleryselect .image-caption{color:#000;font-size:.75rem;font-weight:700;line-height:1.4em;margin-bottom:1.2em;margin-top:0;font-family:"Open sans",Arial,sans-serif;font-style:normal}.swiper-galleryselect ul.swiper-wrapper>li{padding-right:24px;margin-right:0 !important}@media screen and (max-width: 45rem){.swiper-galleryselect .swiper-zoom-container{flex-direction:column;align-items:flex-start}}.swiper-hero{margin-bottom:35px;width:100%;overflow:visible;position:relative}.swiper-hero>h2{border-bottom:2px solid #00B4CD;color:#00B4CD;background:rgba(0,0,0,0);margin-bottom:1em;margin-top:0em;font-weight:400;font-family:"Contrail One",Arial,sans-serif;font-style:normal;font-size:20px}.swiper-hero>h2:after{content:"";display:table;clear:both}.swiper-hero>h2 .right{float:right;width:auto}.swiper-hero>*:last-child{margin-bottom:0}.swiper-hero .swiper-buttons{display:none}.swiper-hero ul.swiper-wrapper{display:block;list-style:none;margin:0;padding:0}.swiper-stagecontainer{max-width:61.25rem;margin-bottom:.375rem;position:relative;position:relative;overflow:hidden}@media print, (min-width: 45.001rem){.swiper-stagecontainer{margin-top:-.3125rem}}.swiper-stagecontainer .source{background-color:transparent;display:inline-block;text-shadow:1px 1px 1px rgba(0,0,0,0.5);margin:0;padding:1px 3px 1px 3px;color:#fff;font-size:.6875rem;line-height:1.2;text-align:right;word-break:break-word;word-wrap:break-word;position:absolute;bottom:0;right:0;padding:1px 3px 1px 3px}@media screen and (max-width: 45rem){.swiper-stagecontainer{background-color:#000;box-shadow:0px 4px 8px rgba(0,0,0,0.2);margin-bottom:24px}}@media screen and (max-width: 45rem){.swiper-stagecontainer .source{top:54.84375vw;bottom:auto;margin-top:-1.4em}}.swiper-stagecontainer .swiper-pagination{top:0.5em;bottom:auto !important;z-index:1}.swiper-stagecontainer .swiper-stagecontainer__startstop{z-index:2;position:absolute;bottom:auto;top:0;left:0;right:auto}@media print, (min-width: 45.001rem){.swiper-stagecontainer .swiper-stagecontainer__startstop{bottom:0;top:auto;left:0;right:auto}}.swiper-stagecontainer .swiper-stagecontainer__startstop .toggler{background:none;border:none;margin:none;padding:0.6em;color:#fff;opacity:0.8;text-shadow:0px 0px 1px #000}.swiper-stagecontainer .swiper-stagecontainer__startstop .toggler:hover,.swiper-stagecontainer .swiper-stagecontainer__startstop .toggler:focus{opacity:1}.swiper-stagecontainer .image img{display:block}@media print, (min-width: 45.001rem){.swiper-stagecontainer .image img{max-height:17.5rem}}.swiper-stagecontainer .image .swiper-zoom-container>img{object-fit:initial}@media screen and (max-width: 45rem){.swiper-stagecontainer .image .swiper-zoom-container{height:54.84375vw;background-color:#f5f5f5}}.swiper-stagecontainer .inner{background:#000;padding:8px 12px 12px 12px;color:#fff}.swiper-stagecontainer .inner a,.swiper-stagecontainer .inner span.readmore{color:#fff}.swiper-stagecontainer .inner .heading{color:#fff}@media print, (min-width: 45.001rem){.swiper-stagecontainer .inner{position:absolute;left:2.5em;bottom:1.7em;min-width:25%;max-width:49%}}.swiper-stagecontainer .inner>*{color:#fff;margin:0}.swiper-stagecontainer .inner>*:last-child{margin-bottom:0}.swiper-stagecontainer span.readmore{color:#A101C5;display:inline;white-space:nowrap;font-family:"Contrail One",Arial,sans-serif}.swiper-stagecontainer span.readmore::after{content:"»";display:inline-block;width:0.8em;height:1em;margin-left:0.2em;line-height:0.8em;text-align:center;text-decoration:underline}.swiper-stagecontainer span.readmore:after,.swiper-stagecontainer span.readmore:hover:after{text-decoration:none}.swiper-stagecontainer a:hover .readmore,.swiper-stagecontainer a:active .readmore,.swiper-stagecontainer a:focus .readmore{text-decoration:underline}@media print, (min-width: 45.001rem){.swiper-stagecontainer .swiper-lazy-preloader{top:8.75rem}}@media screen and (max-width: 45rem){.swiper-stagecontainer .swiper-lazy-preloader{top:27.42188vw}}.main-content .swiper-stagecontainer{width:auto;min-width:100%}@media print, (min-width: 45.001rem){.main-content .swiper-stagecontainer{margin-left:-16px;margin-right:-16px}}@media screen and (max-width: 45rem){.main-content .swiper-stagecontainer{margin-left:-12px;margin-right:-12px}}.swiper-zoom a{color:#000}.swiper .swiper-container{padding-bottom:0;z-index:0}.swiper ul.swiper-wrapper{list-style:none;padding:0;margin:0}.swiper ul.swiper-wrapper>li{margin-left:0;margin-right:0}.swiper .swiper-slide{margin-bottom:0}.swiper .swiper-lazy-preloader{position:absolute}.swiper .image{position:relative;overflow:hidden}.swiper .image .js-imageblur{position:relative}.swiper .image .image-blured{position:absolute !important;width:100%;height:100%;max-width:none;left:0;top:6%;filter:blur(12px);backdrop-filter:blur();transform:translate3d(0, 0, 0);transform:scale(1.2);object-fit:cover}.swiper .swiper-pagination-bullet{background:#fff;opacity:0.5}.swiper .swiper-pagination-bullet-active{background:#000;opacity:0.5}@media print, (min-width: 26.251rem){.swiper .swiper-wrapper .swiper-slide>*>h3{font-size:.875rem;margin-bottom:0.7em}}.swiper .swiper-zoom-container{width:100%}.swiper .swiper-zoom-container img{display:block}.swiper .swiper-button-next,.swiper .swiper-button-prev{display:inline;position:absolute;z-index:2;background-color:rgba(0,0,0,0.5);color:#3023AE;height:2.5em;width:1.7em;border:0 none;font-size:1.5em;line-height:0;padding:0;background-image:none}.swiper .swiper-button-next .fa,.swiper .swiper-button-prev .fa{color:#fff;margin:0}.swiper .swiper-button-prev{right:auto;left:0em;text-align:center;border-radius:0 2px 2px 0}.swiper .swiper-button-prev .fa{margin-right:0.15em}.swiper .swiper-button-next{left:auto;right:0em;text-align:center;border-radius:2px 0 0 2px}.swiper .swiper-button-next .fa{margin-left:0.15em}.swiper .swiper-buttons{display:flex;position:absolute;justify-content:space-between;align-items:center;height:100%;width:100%}.swiper .swiper-buttons .swiper-button-next,.swiper .swiper-buttons .swiper-button-prev{position:static}.swiper .swiper-button-disabled{color:#3023AE;cursor:inherit;opacity:0.25}.swiper .swiper-zoom{display:none}.swiper .swiper-slide-active .swiper-zoom{display:block;float:right;margin-top:-0.1em;margin-right:1px}.swiper-headline{border-bottom:2px solid #00B4CD;color:#00B4CD;background:rgba(0,0,0,0);margin-bottom:1em;margin-top:0em;font-weight:400;font-family:"Contrail One",Arial,sans-serif;font-style:normal;font-size:20px}.swiper-headline:after{content:"";display:table;clear:both}.swiper-headline .right{float:right;width:auto}.counter-sib{display:flex;position:relative;top:0px;margin-top:10px;color:#fff}.counter-sib .counter__part{text-align:center;font-weight:bold;text-shadow:0 0 5px #000;line-height:1.0;width:90px;height:90px;max-width:17vw;max-height:17vw;position:relative;margin-left:15px}.counter-sib .counter__part .inner{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%}.counter-sib .counter__part .inner .digit{display:block;font-size:36px}@media screen and (max-width: 45rem){.counter-sib .counter__part .inner .digit{font-size:6vw}}.counter-sib .counter__part .inner .text{display:block;font-size:10px;text-transform:uppercase;position:relative}@media screen and (max-width: 45rem){.counter-sib .counter__part .inner .text{font-size:2.5vw}}.counter-sib .counter__part .circle{position:absolute;top:0;left:0;height:90px;width:90px;max-width:17vw;max-height:17vw}.counter-sib .counter__part .circle .circle__chart{display:block;max-width:100%;max-height:100%;-webkit-filter:drop-shadow(0px 0px 2px rgba(0,0,0,0.8));filter:drop-shadow(0px 0px 2px rgba(0,0,0,0.8))}.counter-sib .counter__part .circle .circle__fg{fill:none;stroke:url(#my-cool-gradient) #00ADCA;stroke-width:3.7;stroke-linecap:round}.counter-sib .counter__part .circle .circle__bg{fill:none;stroke:rgba(0,0,0,0.5);stroke-width:3.7}@keyframes progress{0%{stroke-dasharray:0 100}}.counter-wib{position:relative;top:0;overflow:hidden;background:url(data:image/png;base64,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) no-repeat;background-size:400px auto;background-position:left center;padding-left:28px;padding-right:20px}@media screen and (max-width: 45rem){.counter-wib{background-size:100% 3em;margin-left:0px;margin-right:-30px;margin-top:10px;margin-bottom:0px}}.counter-wib .text{display:flex;align-items:center;font-size:15px;font-style:normal;font-family:IBM Plex Serif,Times,serif;font-weight:600;color:#4B583C}.counter-wib .days{display:inline-block;position:relative;box-sizing:content-box;margin:0 5px}.counter-wib .days .topblend{background:rgba(0,0,0,0.1);position:absolute;top:0;left:0;width:100%;height:50%;border-bottom:2px dotted rgba(0,0,0,0.1)}.counter-wib .days .digit{background:#fff;padding:0px 3px;color:#9F0732;font-size:34px;font-weight:bold;display:inline-block;float:left;margin-right:1px;line-height:1.15;box-shadow:1px 1px 10px rgba(0,0,0,0.5)}.counter-wib .days .digit:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px}.counter-wib .days .digit:last-child{border-top-right-radius:4px;border-bottom-right-radius:4px}.floatgrid:after{content:"";display:table;clear:both}@media print, (min-width: 45.001rem){.floatgrid .floatgrid__desktop-left-top{width:66%;float:left;margin-bottom:0.5em}.floatgrid .floatgrid__desktop-right{width:31.5%;float:right;margin-left:2.5%}.floatgrid .floatgrid__desktop-right>*:first-child{margin-top:0}.floatgrid .floatgrid__desktop-left-bottom{width:66%;float:left}}#footer{padding:1.5rem 16px;padding-top:1.25rem;background-color:#000;text-align:left;color:#fff}#footer a{color:#fff;margin:0}#footer h3,#footer h4{color:#fff;font-size:15px;font-weight:bold;margin:0 0 0.9em 0;line-height:1.2em;display:block}#footer p{font-weight:700}#footer .logo{width:220px;height:auto;opacity:1;margin-bottom:1.2em}@media print, (min-width: 45.001rem){#footer .logo{margin-top:0}}#footer .poweredby{display:block;margin-bottom:2em}@media print, (min-width: 45.001rem){#footer .logo+.poweredby{margin-top:1em}}#footer .footer-search{margin-bottom:1.8em}#footer .footer_newsletter{margin-top:2em;margin-bottom:2em}#footer .footer_newsletter .button--footer{margin-top:0.5em}#footer .footer_social{display:flex;align-items:center}#footer .footer_social h4{margin-right:0.5em}#footer .footer_social .fa{padding:10px;font-size:1.5rem}#footer .footer_totop{display:block;text-align:right;margin:0 0 1.5em 0}@media screen and (max-width: 45rem){#footer .footer_totop{margin-bottom:1.5em}}#footer .footer_totop:after{content:"\00f077";font:1em FontAwesome;display:inline-block;padding-left:1em}@media print{#footer{display:none}}@media screen and (max-width: 45rem){#footer.hide{display:none}}.fof_wib img{width:100%}.fof_sib{background:url(/css/xmas/bundle/260bc24f480771bccab7667379f7ea69.jpg) 0 0 #000;background-size:cover;color:#fff}.fof_sib .fof_inner{text-align:center;padding:380px 1em 2em 1em;margin:-1rem}.fof_sib .fof_inner *{color:#fff}.fof_sib h2 span{background:#fff;color:#826a3d}#header{position:relative;background:url(/css/xmas/bundle/49fb14d8ba7b1eb0f4583fdf2945d7d4.jpg) no-repeat #000;font-size:15px;box-shadow:0 3px 8px rgba(100,100,100,0.5)}#header:after{content:"";display:table;clear:both}@media print, (min-width: 45.001rem){#header{background-size:100% auto;background-position:bottom;min-height:auto}#header .header__counter{display:block;position:absolute;top:10px;right:30px}}@media screen and (max-width: 45rem){#header{background-position:0 0;background-size:cover}#header .portal-search{display:none}#header .header__counter{display:none;position:relative;top:0}#header.opened{position:fixed;top:0;left:0;z-index:1000;width:100vw;max-width:100%;height:100vh;overflow:hidden}#header.opened .portal-search{display:block;width:100%}#header.opened .header__counter{display:block}}#header .hamburger-palm{position:absolute;top:3px;right:0;padding:0.1em 0 0.1em 0;font-size:1.5625rem;padding-right:1rem;padding-left:1rem;margin:0;width:2.3em;height:auto;background-color:transparent;display:block;overflow:hidden;white-space:normal;color:#fff;background-color:transparent;border:0 none;outline-offset:-1px;float:right}@media print, (min-width: 45.001rem){#header .hamburger-palm{display:none}}#header .hamburger-palm:hover,#header .hamburger-palm:focus{color:#fff;background-color:transparent}#header .hamburger-palm:focus{outline:1px dotted}.page-anzeige{font-size:.6875rem;color:#555;float:right;margin:0.6em 0;text-transform:uppercase}.portal-head{padding-top:1.25rem;padding-bottom:.75rem;padding-left:1rem;padding-right:1.5rem;position:relative;margin:0;background-color:transparent;width:100%}.portal-head:after{content:"";display:table;clear:both}@media print, (min-width: 45.001rem){.portal-head{min-height:auto}}.portal-head .logo-area{max-width:none}.portal-head .logo-area .portal-claim{text-align:left}.portal-head .portal-logo{display:block;position:relative;max-width:22em;margin:0}@media print, (min-width: 45.001rem){.portal-head .portal-logo{max-width:22em}}.portal-head .portal-claim{display:block;color:#D4AE67;margin:0 0 0.7em 0;position:relative;vertical-align:top;font-size:.9375rem;font-weight:bold}@media screen and (max-width: 45rem){.portal-head{padding:.75rem}.portal-head .aside{float:none;text-align:left}.portal-head .aside>*{display:none}.portal-head .aside .portal-search{display:block;margin-left:0;margin-right:0;margin-bottom:.3125rem;margin-top:.3125rem}.portal-head .portal-logo{width:60%;margin-top:-4px}.portal-head .portal-claim{display:none}.portal-head .portal-meta{display:none}}.rating{position:relative;display:inline-block;white-space:nowrap;color:#9b8e42}.rating button{margin:0;padding:0;color:#9b8e42;background:none;border:none;font-size:1em}.rating .thank-you{display:none;color:#3023AE}.rating .thank-you.voted{display:inline}.rating.rating-votes-0>*{color:#888}@font-face{font-family:"Open Sans";font-style:normal;font-display:swap;font-weight:400;src:url(/css/xmas/bundle/ea48f4ff22a3d336ebb08ccb60a54551.woff2) format("woff2"),url(/css/xmas/bundle/4f2cda059485c5f324fa636221498084.woff) format("woff");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Open Sans";font-style:normal;font-display:swap;font-weight:400;src:url(/css/xmas/bundle/b3501f3f1fa72bcb728a719f76aea79b.woff2) format("woff2"),url(/css/xmas/bundle/4f2cda059485c5f324fa636221498084.woff) format("woff");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Open Sans";font-style:normal;font-display:swap;font-weight:400;src:url(data:font/woff2;base64,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) format("woff2"),url(/css/xmas/bundle/4f2cda059485c5f324fa636221498084.woff) format("woff");unicode-range:U+1F00-1FFF}@font-face{font-family:"Open Sans";font-style:normal;font-display:swap;font-weight:400;src:url(/css/xmas/bundle/3efbf9f403ae2d6791f1e19787f6fda6.woff2) format("woff2"),url(/css/xmas/bundle/4f2cda059485c5f324fa636221498084.woff) format("woff");unicode-range:U+0370-03FF}@font-face{font-family:"Open Sans";font-style:normal;font-display:swap;font-weight:400;src:url(/css/xmas/bundle/5ec64a942bafa79974d217b56ed86754.woff2) format("woff2"),url(/css/xmas/bundle/4f2cda059485c5f324fa636221498084.woff) format("woff");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Open Sans";font-style:normal;font-display:swap;font-weight:400;src:url(/css/xmas/bundle/e21fda72f7303338832c8d53c0b4cb05.woff2) format("woff2"),url(/css/xmas/bundle/4f2cda059485c5f324fa636221498084.woff) format("woff");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Open Sans";font-style:normal;font-display:swap;font-weight:400;src:url(/css/xmas/bundle/f57a62e9efddf6ace18b15572f81905b.woff2) format("woff2"),url(/css/xmas/bundle/4f2cda059485c5f324fa636221498084.woff) format("woff");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Open Sans";font-style:normal;font-display:swap;font-weight:700;src:url(/css/xmas/bundle/7ab4304a4f29ec9dc89c9c179a944e15.woff2) format("woff2"),url(/css/xmas/bundle/56a3dea428762836a958bb3e6a870d8c.woff) format("woff");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Open Sans";font-style:normal;font-display:swap;font-weight:700;src:url(/css/xmas/bundle/d09ca2b77e933d5c6582b8580a106c17.woff2) format("woff2"),url(/css/xmas/bundle/56a3dea428762836a958bb3e6a870d8c.woff) format("woff");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Open Sans";font-style:normal;font-display:swap;font-weight:700;src:url(data:font/woff2;base64,d09GMgABAAAAAAksABEAAAAAD6QAAAjQAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGhwbEBwaBmAALAiBKgmPYBEMCoJwgloLEAABNgIkAxwEIAWDQgdHDIF4G1gOUVSN4iAfCeUYV/vZCE1y54W2R0gyCw/8d9qfO3eQpAgqTcnsk0pP6YWSLoAH6WvTZyH5X1MVOFIS2Y8uDSm4fB8jNtcKFpzInFoBXHGqZCZPKfUyxQ9ypv1fKuXJa9qw1zEak9VXa5md2dmgAmAZYaNsjOntua1NH/FcCLfigB9JqJR/oxeeWF3FPQAI/baGbIBCdLdWijxkY7iWweIZnoJ+1DAEEM4hRYeDRKBxocCBi8gInFvGEo9YNj6/Ahv0YKk5lfvQQLtE84JIO3OULzMj/rMpSphNLxpX6RD1VMpd5ad1VWGmtczXoKcFo9ltO13pMxFXAqgj2h2AiQQEMrTVKiaplBfQmQ6FjqmP7pLoQo8mDnoNZmtmtOehAKqBdG2C0HenleXBaOnOLea/80LfBs8MfRS8j6+/J9gDmca51+f8IRCFvMotQuGP9U/iez7kFvgT7RYzDx9otba6sry0uDA/Nxu+N+jPBLLX7bTF/Xt379y+dfPG9WtXL144f67VnH636p+Fd7y3Tx2ruOVSMZ/LZv6u/aRIjcSUzytBBBKifqvJ5alhz0dKCAzyiONaugr9PjMO0WSGqhyLVpTlYrRdXZSJddTld8gdT1yB4+894GP6YEmd2DetmuOhmEulqzUvJjyvR4YLwwvhLgw+GFppevndNAnLdaG7k7ubSZLLU34cxGl4ltDpe7Scdablra1AMhEe78KUL6NtXFR/2WOep1vNAZagdzFFuqC9qHdxKslHgf9gZJ8nzVf2xdglm6ZR2Ibt6JHCVKRbTZuS1n6NlQbWoIe1T/451WrKHWxCT2JjzYbLPsGhbOm/UNR8F7j9D6QGDv/llURMhxcW+9DpIl1WHj0nFkBgrA2AB9bYaPw63gTugk0KBbtKGo5kUSFFHvJyn2HwQqNrhvSWVt4hWA7x6NJDhY4oPoxyhu+8D94N5lWkrmlRYB3BqS5O2jjpeYaw98eCbB4XMV5SPeMe7Fsizjc0OuZa6avK42ulsQWQN+D5rnBFWUz7A/OWIxT7EcabyKP3oyYO7u73P/PAHqnwm+e1dDXH1PoRx4kqTro7zUkB09U2Zd2bEAYadcgstFo5wm/CEjyPtCRBmtz3g+EpjDd5q4n9hhniZFUTohdmRBRnczK5cL4nEZl3atSLzpPwPDzDY9CJXwzYghytKEemw614rIvEbFXAIXnPmuPSmvCCRCaP2Vfx4S15phCW1AG5HPooucLZd5fJFXQP+uWc6CpMVaVV27v4tmHbyM0uV8xDoZFGGtSOxpo9y2t/IIV0yrrJqgpXIFx6oG4E2zAT8LC0L4HqQDFHnPAx42e4clgqVZ323QQPQgWdO/scTvkZhbw+qZAah/oGykgea38si1zu9CSRczosLsspv9vHI/1GJHgWmac9Uq2mUxDhXhs9lJlZ2b/IJKiRrVH8bsDywVN2vS9XsAMahhzFovJQGEjGiWkOGUNmzF6+etsyF+YKiVcgB9OcCoOGnNqKGavi/dPy6EBgPbcZCFcsfATq9QQdf4Akwc+LGxXGDNI0UwVBVOfyYN4mQqQXTB6r3MJge4UeulMvH33U5+wT3YVHSEjD1c54DolDOgnQ5x2JoM+7HqgDlxC+f1V961Cnazo6OYtCnnEhNAcrvKlxxKJl0jKzmh2IYhFr6ZBeF7bGlHBLM+UU3Qm7XokqYNzR01Ehz9N6RsSSkgkx2r1EbkJkRFYUnKLDEsqkb4fjS0FIVpDvCrRIARaL5c1jES9kBZPhcVroMF+y5nl+7YFq5EQex/VX66xvNeWpIYRPQgXJt5PKus/00Bp9d7PJiYDjL7soCrhH0LF7JNSZLKADdjqYh84V7b5+X9PZ1BzSE/QP1sfodBeRpgHvh8oDF/mZn5l1D+MqrhsbHO4ljs+LESjYcIRe44QqDW4eCejAcUAfh4cvrkOBSOkpWlHVcIfHvsm9wdXrtEdu2vlZ+OEv5K4vI07/fP3218NOPziHH3xt0443e3ntNbbfzbvY/pzj4BvjvTmnCF7rdoTH3NGA9txhdnbDFxtSR3zvL53d095+/ZPLl89t7+iY2lW5sOz3u/+82//9D6vvvvevPOO8XzovXHnY01gfU52V4jntoYbk7O8qqxoa+nM8lfnnRPfo0fnD1712oJwc1E4w0P//G1Qg6At9px+nPX9quCo1RSo2uyoNKK0o9bo94rjj3F4trrzs1Gg3xIXreqw9qrnfrkpnc7+M4pRC4mnOLbxukpJHjI2JTUgMVw0MIylZGIbqTFRljOSUJypee8yNl/CI/fO5HjnupYqHK8rLEIBIePf275KTR50n/m6z2wB4ujLuKoDXC597/d/w/29ynG47HYHdznkBGcjHwQAvD25A3uk0zFCf52FsNRoU99VHWKcHgj4FNsgf3eAgsfShoeCilCEQiDAkArAxc36cagd80PYLPPj6FWzs7peUcLhfJZl7+jXieaNfJ5Ef3CLpFjaqWcys8PnhG5lmCrN6nHk/k0lWsooN+OT4nDK5mborKKM8UnwOZhdhUldPKyurlzFNVVzwseooEWlxbK+ghLabpsk26WJclZ9KTC1jSkIluHQC0Wk4VcWmvNVEi/OzIcXMlnow8knA16iJfY54qJ1h9iqOp/Qn1tkljLPKaBJX05QI91Gp0eIsIik/03q/UpppoIoaWumixi5UYikFGjM0wwz3NEAoKEgqhBSq+s7Zw1izYnF57aJq+9Tb9vjK9V7cqYfs6fWmZQpppdVLK1WG3m5vjk1ra5lKa22+HHIWuaxsb5aVEIXEDZXKdXnXlubUtKlm0VwbkRbl9Vhac7nq/ZHTpHDKU+QRKfWm2mdr362Vmd4MK9mbZMV6Yyy3cFour9M64nzRqZQ5hfBirWQbR/gR1YXYHis0cZc4a6G7q7Cw6S4jtNwUsLcPBsT+QHbXsehTOwYC+v4A1sBg34IQZ/TvOf10KlOaAhVdfQEzpd/5lIsrZSGWyn6/v3BBmveP+OcLebCKZPwIAAA=) format("woff2"),url(/css/xmas/bundle/56a3dea428762836a958bb3e6a870d8c.woff) format("woff");unicode-range:U+1F00-1FFF}@font-face{font-family:"Open Sans";font-style:normal;font-display:swap;font-weight:700;src:url(/css/xmas/bundle/f8a27a6de63d2728adc45f20d94edbde.woff2) format("woff2"),url(/css/xmas/bundle/56a3dea428762836a958bb3e6a870d8c.woff) format("woff");unicode-range:U+0370-03FF}@font-face{font-family:"Open Sans";font-style:normal;font-display:swap;font-weight:700;src:url(/css/xmas/bundle/122371a2c0cfc653004752ae6f7bffb1.woff2) format("woff2"),url(/css/xmas/bundle/56a3dea428762836a958bb3e6a870d8c.woff) format("woff");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Open Sans";font-style:normal;font-display:swap;font-weight:700;src:url(/css/xmas/bundle/3e3826616c156f9d249ffe14ab89dd42.woff2) format("woff2"),url(/css/xmas/bundle/56a3dea428762836a958bb3e6a870d8c.woff) format("woff");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Open Sans";font-style:normal;font-display:swap;font-weight:700;src:url(/css/xmas/bundle/92425c623934facef057b0cfe2e13f95.woff2) format("woff2"),url(/css/xmas/bundle/56a3dea428762836a958bb3e6a870d8c.woff) format("woff");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Contrail One";font-style:normal;font-display:swap;font-weight:400;src:url(/css/xmas/bundle/95dfca524d8b1c4b340449eb4106a9cb.woff2) format("woff2"),url(/css/xmas/bundle/296784d0c33ad0810a7788a5da7f3e93.woff) format("woff");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}



/*# sourceMappingURL=portal-sib.css-bd4824c8fda7e6aeca40.map*/