/**
*
* theme.css
*
* @project   Waschsalon
* @date      Juni 2019
* @author    Mark-Oliver Kaemmerer <mok@t3-media.de>
* @licensor  t3-media GmbH
* @site      Waschsalon.eu
*
*/
.carousel {
  position: relative;
}
@media (max-width: 410px) {
  .carousel {
    padding: 0;
  }
}
@media (min-width: 410px) and (max-width: 991px) {
  .carousel {
    padding: 0;
  }
}
.carousel-inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  -moz-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -moz-transition: -moz-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  cursor: pointer;
  position: absolute;
  top: 47%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 10px;
  bottom: 0;
  width: 15%;
  color: #131313;
  text-align: center;
}
.carousel-control.left {
  width: 65px;
  height: 60px;
  cursor: pointer;
}
.carousel-control.left:before {
  font-family: ws-icons;
  content: "\e314";
  font-size: 3rem;
  background-color: rgba(255, 255, 255, 0.68);
  border-radius: 100%;
}
.carousel-control.left:hover:before,
.carousel-control.left:focus:before {
  background-color: #131313;
  color: #FFFFFF;
}
.carousel-control.right {
  left: auto;
  right: 25px;
  width: 65px;
  height: 60px;
  cursor: pointer;
}
.carousel-control.right:before {
  font-family: ws-icons;
  content: "\e315";
  font-size: 3rem;
  background-color: rgba(255, 255, 255, 0.68);
  border-radius: 100%;
}
.carousel-control.right:hover:before,
.carousel-control.right:focus:before {
  background-color: #131313;
  color: #FFFFFF;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  z-index: 15;
  margin: 0 auto;
  width: 100%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.carousel-indicators li {
  display: inline-flex;
  text-align: center;
  width: 10px;
  height: 10px;
  margin: 1px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
}
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 767px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -15px;
  }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.tooltip {
  position: absolute;
  z-index: 99999;
  display: block;
  font-size: 20px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 1;
  filter: alpha(opacity=100);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip-inner {
  max-width: 300px;
  padding: 10px 20px;
  color: #000;
  text-align: center;
  background-color: #fff;
  border: 1px solid #131313;
  border-radius: 0;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #fff;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #fff;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #fff;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #fff;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #fff;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #fff;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #fff;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #fff;
}
/*!
 * fullPage 2.8.6
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
html.fp-enabled,
.fp-enabled body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  /*Avoid flicker on slides transitions for mobile phones #336 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#superContainer {
  height: 100%;
  position: relative;
  /* Touch detection for Windows 8 */
  -ms-touch-action: none;
  /* IE 11 on Windows Phone 8.1*/
  touch-action: none;
}
.fp-section {
  position: relative;
  -webkit-box-sizing: border-box;
  /* Safari<=5 Android<=3 */
  -moz-box-sizing: border-box;
  /* <=28 */
  box-sizing: border-box;
}
.fp-slide {
  float: left;
}
.fp-slide,
.fp-slidesContainer {
  height: 100%;
  display: block;
}
.fp-slides {
  z-index: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  /* Safari<=6 Android<=4.3 */
  transition: all 0.3s ease-out;
}
.fp-section.fp-table,
.fp-slide.fp-table {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.fp-tableCell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
.fp-slidesContainer {
  float: left;
  position: relative;
}
.fp-controlArrow {
  -webkit-user-select: none;
  /* webkit (safari, chrome) browsers */
  -moz-user-select: none;
  /* mozilla browsers */
  -khtml-user-select: none;
  /* webkit (konqueror) browsers */
  -ms-user-select: none;
  /* IE10+ */
  position: absolute;
  z-index: 4;
  top: 50%;
  cursor: pointer;
  width: 0;
  height: 0;
  border-style: solid;
  margin-top: -38px;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.fp-controlArrow.fp-prev {
  left: 15px;
  width: 0;
  border-width: 38.5px 34px 38.5px 0;
  border-color: transparent #fff transparent transparent;
}
.fp-controlArrow.fp-next {
  right: 15px;
  border-width: 38.5px 0 38.5px 34px;
  border-color: transparent transparent transparent #fff;
}
.fp-scrollable {
  overflow: hidden;
  position: relative;
}
.fp-scroller {
  overflow: hidden;
}
.iScrollIndicator {
  border: 0 !important;
}
.fp-notransition {
  -webkit-transition: none !important;
  transition: none !important;
}
#fp-nav {
  position: fixed;
  z-index: 100;
  margin-top: -32px;
  top: 50%;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
}
#fp-nav.right {
  right: 17px;
}
#fp-nav.left {
  left: 17px;
}
.fp-slidesNav {
  position: absolute;
  z-index: 4;
  left: 50%;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.fp-slidesNav.bottom {
  bottom: 17px;
}
.fp-slidesNav.top {
  top: 17px;
}
#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0;
}
#fp-nav ul li,
.fp-slidesNav ul li {
  display: block;
  width: 14px;
  height: 13px;
  margin: 7px;
  position: relative;
}
.fp-slidesNav ul li {
  display: inline-block;
}
#fp-nav ul li a,
.fp-slidesNav ul li a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
}
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
  height: 12px;
  width: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 100%;
}
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  height: 4px;
  width: 4px;
  border: 0;
  background: #333;
  left: 50%;
  top: 50%;
  margin: -2px 0 0 -2px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
  width: 10px;
  height: 10px;
  margin: -5px 0px 0px -5px;
}
#fp-nav ul li .fp-tooltip {
  position: absolute;
  top: -2px;
  color: #fff;
  font-size: 14px;
  font-family: arial, helvetica, sans-serif;
  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
  display: block;
  opacity: 0;
  width: 0;
  cursor: pointer;
}
#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  width: auto;
  opacity: 1;
}
#fp-nav ul li .fp-tooltip.right {
  right: 20px;
}
#fp-nav ul li .fp-tooltip.left {
  left: 20px;
}
.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell {
  height: auto !important;
}
.fp-responsive .fp-auto-height-responsive.fp-section,
.fp-responsive .fp-auto-height-responsive .fp-slide,
.fp-responsive .fp-auto-height-responsive .fp-tableCell {
  height: auto !important;
}
/**
*
* Variables
*
*/
/* ==========================================================================
=Header
========================================================================== */
/* ==========================================================================
=Content
========================================================================== */
/* ==========================================================================
=Footer
========================================================================== */
/* ==========================================================================
=Links
========================================================================== */
/* ==========================================================================
=Transitions
========================================================================== */
/* ==========================================================================
=URLS
========================================================================== */
/* ==========================================================================
=Screens
========================================================================== */
/* ==========================================================================
=Fonts
========================================================================== */
@font-face {
  font-family: 'FreightSans Book';
  src: url('../Fonts/FreightSansProBook.otf') format('opentype'), url('../Fonts/FreightSansProBook.eot') format('eot'), url('../Fonts/FreightSansProBook.woff') format('woff'), url('../Fonts/FreightSansProBook.ttf') format('truetype');
}
@font-face {
  font-family: 'FreightSans Italic';
  src: url('../Fonts/FreightSansProBookItalic.otf') format('opentype');
}
@font-face {
  font-family: 'FreightSans Semibold';
  src: url('../Fonts/FreightSansProSemibold.otf') format('opentype'), url('../Fonts/FreightSansProSemibold.eot') format('eot'), url('../Fonts/FreightSansProSemibold.woff') format('woff'), url('../Fonts/FreightSansProSemibold.ttf') format('truetype');
}
/* ==========================================================================
=Carousel
========================================================================== */
/**
*
* HTML Reset
*
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
fieldset,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.clear {
  clear: both;
}
/**
*
* Standard
*
*/
body {
  font-family: 'FreightSans Book', Helvetica;
  font-size: 16px;
  color: #131313;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body h1,
body h2,
body h3,
body h4,
body h5 {
  font-family: 'FreightSans Semibold', Helvetica;
  font-size: 25px;
  line-height: 30px;
  color: #131313;
  font-weight: normal;
}
body a {
  color: #131313;
  text-decoration: none;
}
body .hideClass,
body .showClass {
  -webkit-animation: fadeInFromNone 0.5s ease-out;
  -moz-animation: fadeInFromNone 0.5s ease-out;
  -o-animation: fadeInFromNone 0.5s ease-out;
  animation: fadeInFromNone 0.5s ease-out;
}
body .showClass {
  display: block;
}
body .hideClass {
  display: none;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@-webkit-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
.cookie-block {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  z-index: 99999;
}
.cookie-block:after {
  width: 100vw;
  content: '';
  height: 100vh;
  background-color: #0000008f;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.cookie-block [data-pft-cookie].pftCookieShow {
  opacity: 1;
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.cookie-block [data-pft-cookie].pftCookieShow.CookieShow {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.cookie-block [data-pft-cookie] {
  right: 0;
  bottom: 10px;
  left: 0;
}
.cookie-block [data-pft-cookie] {
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: auto;
  opacity: 0;
  position: fixed;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  width: 100%;
  z-index: 9999;
  background: #f9f9f9;
  color: #111;
}
@media (max-width: 768px) {
  .cookie-block [data-pft-cookie] {
    max-width: 90%;
  }
}
.cookie-block [data-pft-cookie] p.pftCookieSubHeadline {
  font-size: 14px;
  margin: 0 0 16px;
  padding: 8px;
  text-align: center;
  text-transform: uppercase;
  background: #000;
  color: #FFF;
}
.cookie-block [data-pft-cookie] [data-pft-help] {
  display: none;
  overflow: auto;
  font-size: 11px;
}
.cookie-block [data-pft-cookie] [data-pft-help] > ul {
  list-style: none;
  margin: 10px 20px;
}
.cookie-block [data-pft-cookie] [data-pft-help] > ul li {
  margin: 10px 0;
}
.cookie-block [data-pft-cookie] [data-pft-help] ul li span {
  font-weight: 700;
}
.cookie-block [data-pft-cookie] p.pftCookieExplanation {
  font-size: 0.85rem;
  padding: 8px 0;
  text-transform: none;
  text-align: center;
}
.cookie-block [data-pft-cookie] p.pftCookieHeadline {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 10px 0 0;
  padding: 8px;
  text-align: center;
  text-transform: uppercase;
}
.cookie-block [data-pft-cookie] [data-pft-selection] ul {
  list-style: none;
  margin: 0 20px 10px;
  padding: 0;
  border-top: 1px solid #f2f2f2;
  border-left: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
}
.cookie-block [data-pft-cookie] [data-pft-selection] ul li.cookieOption1 {
  background: #FFF;
  border-bottom: 1px solid #f2f2f2;
  color: #111;
}
.cookie-block [data-pft-cookie] [data-pft-selection] ul li.cookieOption1:hover {
  background-color: #000;
  color: #FFF;
}
.cookie-block [data-pft-cookie] [data-pft-selection] ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  -webkit-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
}
.cookie-block [data-pft-cookie] [data-pft-selection] ul li:before {
  content: "";
}
.cookie-block [data-pft-cookie] [data-pft-selection] ul li:after {
  content: "";
}
.cookie-block [data-pft-cookie] [data-pft-selection] ul li input {
  display: none;
  height: auto;
  margin: 0 8px 0 0;
  padding: 0;
  -webkit-appearance: radio;
  width: auto !important;
}
.cookie-block [data-pft-cookie] [data-pft-selection] ul li.cookieOption3 {
  background: #FFF;
  border-bottom: 1px solid #f2f2f2;
  color: #111;
}
.cookie-block [data-pft-cookie] [data-pft-selection] ul li.cookieOption3:hover {
  background-color: #000;
  color: #FFF;
}
.cookie-block [data-pft-cookie] [data-pft-selection] label {
  cursor: pointer;
  display: block;
  font-weight: 400;
  padding: 8px;
  text-decoration: none;
  text-transform: inherit;
  width: 100%;
}
.cookie-block [data-pft-cookie] p.pftCookieText {
  font-size: 0.65rem;
  padding: 20px;
  text-transform: uppercase;
  text-align: center;
}
.cookie-block [data-pft-cookie] p.pftCookieSuccess {
  text-align: center;
  color: darkolivegreen;
}
.cookie-block [data-pft-cookie] p {
  margin: 0 20px;
  padding: 0;
}
.cookie-block [data-pft-cookie] [data-pft-cookie-help-link] {
  cursor: pointer;
  margin: 0 0 8px;
  color: #000;
  font-weight: bold;
}
.cookie-block [data-pft-cookie] [data-pft-selection-list] {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}
@media (max-width: 768px) {
  .cookie-block [data-pft-cookie] [data-pft-selection-list] {
    flex-direction: column;
    align-items: center;
  }
}
.cookie-block [data-pft-cookie] [data-pft-selection-list] .btn {
  margin: 5px;
  min-width: 190px;
  max-width: 260px;
}
.cookie-block [data-pft-cookie] [data-pft-selection-list] [data-pft-cookie-help-link] {
  color: inherit;
  margin: inherit;
}
.cookie-block [data-pft-cookie] [data-pft-selection-list] input {
  display: none;
}
.cookie-block [data-pft-cookie] [data-pft-selection-success] {
  display: none;
}
.cookie-block [data-pft-cookie] p.pftSubHeadline {
  font-size: 14px;
  margin: 0 0 16px;
  padding: 8px;
  text-align: center;
  text-transform: uppercase;
}
.cookie-block.static {
  position: relative !important;
}
.cookie-block.static [data-pft-cookie] {
  position: relative !important;
  max-width: 100%;
  box-shadow: none;
}
.cookie-block * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
.cookie-block i {
  font-size: 1rem;
  position: relative;
  top: 3px;
}
.ajaxCookieResponse {
  display: none;
  font-weight: 700;
}
.btn-waschsalon-black {
  transition: all 0.275s;
  background-color: #131313;
  color: #FFFFFF !important;
  border: 1px solid #131313;
}
.btn-waschsalon-black:hover {
  color: #131313 !important;
  background-color: #FFFFFF;
}
/**
*
* Forms
* * Powermail Form-Design im Powermail Abschnitt!
*
*/
.page .content input,
.page .navigation-megamenu input {
  border-radius: 0;
}
@media (max-device-width: 1024px) {
  .page .content input,
  .page .navigation-megamenu input {
    -webkit-appearance: none;
  }
}
.page .content input[type=text],
.page .navigation-megamenu input[type=text],
.page .content input[type=password],
.page .navigation-megamenu input[type=password],
.page .content input[type=tel],
.page .navigation-megamenu input[type=tel],
.page .content input[type=email],
.page .navigation-megamenu input[type=email],
.page .content input[type=number],
.page .navigation-megamenu input[type=number] {
  width: 100%;
  height: 45px;
  padding-left: 25px;
  font-size: 20px;
  font-family: 'FreightSans Book', Helvetica;
  background: #FFFFFF;
  border: 1px solid #C4C4C4;
  color: #737373;
}
@media (max-width: 767px) {
  .page .content input[type=text],
  .page .navigation-megamenu input[type=text],
  .page .content input[type=password],
  .page .navigation-megamenu input[type=password],
  .page .content input[type=tel],
  .page .navigation-megamenu input[type=tel],
  .page .content input[type=email],
  .page .navigation-megamenu input[type=email],
  .page .content input[type=number],
  .page .navigation-megamenu input[type=number] {
    width: 100%;
  }
}
.page .content input.formInput,
.page .navigation-megamenu input.formInput {
  background: #FFFFFF url('../Icons/suche.png') no-repeat center right 10px;
}
.page .content input [type=radio]::before,
.page .navigation-megamenu input [type=radio]::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  position: absolute;
  left: -1px;
  bottom: -1px;
  background-color: #FFFFFF;
  border: 1px solid #737373;
  border-radius: 8px;
}
.page .content input [type=radio]:checked::before,
.page .navigation-megamenu input [type=radio]:checked::before {
  background-color: #FFFFFF;
  content: "\2022";
  color: #737373;
  font-size: 30px;
  text-align: center;
  line-height: 16px;
}
.page .content input [type=checkbox]::before,
.page .navigation-megamenu input [type=checkbox]::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  position: absolute;
  left: -4px;
  bottom: -4px;
  background-color: #FFFFFF;
  border: 1px solid #737373;
  border-radius: 0;
}
.page .content input [type=checkbox]:checked::before,
.page .navigation-megamenu input [type=checkbox]:checked::before {
  background-color: #FFFFFF;
  content: "\2713";
  color: #737373;
  font-size: 15px;
  text-align: center;
  line-height: 16px;
}
.page .content select,
.page .navigation-megamenu select {
  width: 100%;
  height: 45px;
  background: #FFFFFF;
  border: 1px solid #C4C4C4;
  color: #737373;
  line-height: 30px;
  border-radius: 0;
  -webkit-appearance: none;
  box-sizing: border-box;
  outline: none;
  font-size: 20px;
  font-family: 'FreightSans Book', Helvetica;
  padding: 0 25px;
}
.page .content select::-ms-expand,
.page .navigation-megamenu select::-ms-expand {
  display: none;
}
@media (max-width: 767px) {
  .page .content select,
  .page .navigation-megamenu select {
    width: 100%;
  }
}
.page .content select.formSelect,
.page .navigation-megamenu select.formSelect {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #FFFFFF url('../Icons/dropdown.png') no-repeat center right 10px;
}
.page .content textarea,
.page .navigation-megamenu textarea {
  box-shadow: none !important;
  height: 120px;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #C4C4C4;
  color: #131313;
  border-radius: 0;
  font-size: 20px;
  font-family: 'FreightSans Book', Helvetica;
  padding: 1px 25px;
}
@media (max-device-width: 1024px) {
  .page .content textarea,
  .page .navigation-megamenu textarea {
    -webkit-appearance: none;
  }
}
.page .content textarea.active,
.page .navigation-megamenu textarea.active,
.page .content select.active,
.page .navigation-megamenu select.active,
.page .content input.active,
.page .navigation-megamenu input.active {
  font-family: 'FreightSans Semibold', Helvetica;
  color: #131313;
}
.page .content .searchBox,
.page .navigation-megamenu .searchBox {
  margin: 0 0 38px 0;
}
/**
*
* Content
*
*/
html {
  position: relative;
  min-height: 100%;
}
body {
  background-color: #FAFAFA;
}
.slidershortcut {
  position: relative !important;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) {
  *:focus {
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
  }
}
.overlay {
  background: transparent;
  position: relative;
  width: 640px;
  height: 480px;
  top: 480px;
  margin-top: -480px;
}
.page {
  width: 100%;
  height: 100%;
}
@media (min-width: 1440px) {
  .page {
    padding-top: 100px;
  }
}
.page .content {
  position: initial;
  color: #131313;
  width: 100%;
  overflow: hidden;
  padding-bottom: 72px;
  /**
    *
    * Marginal Content
    *
    */
}
@media screen and (max-width: 44.9375rem) {
  .page .content {
    overflow: hidden;
  }
}
.page .content .inhalt,
.page .content .inhaltslide,
.page .content .inhaltsupplier {
  max-width: 1430px;
  margin: 0 auto;
  height: auto;
}
.page .content .inhaltslide {
  display: none;
}
@media (max-width: 1400px) {
  .page .content .inhaltslide {
    padding: 0 15px;
  }
}
.page p {
  padding: 10px 0;
}
.page .black {
  color: #131313 !important;
}
/**
*
* Time Space
*
*/
.time {
  float: left;
  clear: both;
}
.time p {
  padding: 0;
}
@media (min-width: 767px) and (max-width: 1145px) {
  .time {
    float: none;
  }
}
.timemofr {
  display: inline-block;
  margin: 0 0 0 20px;
}
@media (max-width: 767px) {
  .timemofr {
    display: block;
    margin: 0 0 0 77px;
  }
}
@media (min-width: 767px) and (max-width: 1215px) {
  .timemofr {
    margin: 0 0 0 5px;
  }
}
.timemofr p {
  padding: 0;
}
.noshowheader {
  min-height: 1px;
}
.wslogonoshow {
  display: none;
}
.timemo,
.timedi,
.timemi,
.timedo,
.timefr,
.timesa,
.timeso {
  margin: 3px 0 0 8px;
}
@media (max-width: 767px) {
  .timemo,
  .timedi,
  .timemi,
  .timedo,
  .timefr,
  .timesa,
  .timeso {
    margin: 9px 0 0 20px;
  }
}
@media (min-width: 767px) and (max-width: 1145px) {
  .timemo,
  .timedi,
  .timemi,
  .timedo,
  .timefr,
  .timesa,
  .timeso {
    margin: 0 0 20px 5px;
  }
}
@media (min-width: 1145px) and (max-width: 1215px) {
  .timemo,
  .timedi,
  .timemi,
  .timedo,
  .timefr,
  .timesa,
  .timeso {
    margin: 0 0 0 44px;
  }
}
.timemo p,
.timedi p,
.timemi p,
.timedo p,
.timefr p,
.timesa p,
.timeso p {
  padding: 0;
}
.timemo.woother,
.timedi.woother,
.timemi.woother,
.timedo.woother,
.timefr.woother,
.timesa.woother,
.timeso.woother {
  margin: 0 0 0 59px;
}
.spacerLR {
  text-align: center;
}
/**
*
* Fade-In Effect on Page-Load
*
*/
.inhalt,
.inhaltslide,
.tx-waschsalon-template,
.powermail_fieldset {
  animation: fadein 2s;
  -moz-animation: fadein 2s;
  /* Firefox */
  -webkit-animation: fadein 2s;
  /* Safari and Chrome */
  -o-animation: fadein 2s;
  /* Opera */
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  /* Firefox */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  /* Safari and Chrome */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  /* Opera */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-moz-keyframes fadeout {
  /* Firefox */
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fadeout {
  /* Safari and Chrome */
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-o-keyframes fadeout {
  /* Opera */
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
.jarallax {
  position: absolute;
  z-index: 0;
  height: 100%;
  width: 100%;
}
.jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.startseite .icon-boxes {
  margin-top: 4rem;
}
a.meinwaschsaloncookie {
  font-size: 16px;
  color: #fff;
}
.text-right {
  text-align: right;
}
/**
*
* Content
*
*/
.page .marginalColumn a {
  font-family: 'FreightSans Semibold', Helvetica;
  color: #737373;
  font-weight: normal;
}
@media (max-width: 767px) {
  body.kontaktseite .marginalColumn {
    padding: 30px 0 0 0;
    border-top: 1px solid #C4C4C4;
  }
}
/**
*
* Footer
*
*/
.footer {
  clear: both;
  background: #C4C4C4;
  color: #666666;
  width: 100%;
  min-height: 145px;
  bottom: 0;
  position: absolute;
}
.footer .footer-links {
  position: relative;
  border-bottom: 1px solid #131313;
  min-height: 78px;
}
@media (max-width: 767px) {
  .footer .footer-links {
    min-height: 120px;
  }
}
.footer .footer-links .footer-links-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.footer .footer-links .footer-menu {
  padding: 25px 0 0 0;
}
.footer .footer-links .footer-menu ul.menu {
  text-align: center;
}
.footer .footer-links .footer-menu ul.menu .active {
  padding: 0 15px;
}
.footer .footer-links .footer-menu ul.menu li {
  display: inline-block;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .footer .footer-links .footer-menu ul.menu li {
    padding: 5px 15px;
  }
}
@media (min-width: 767px) and (max-width: 1100px) {
  .footer .footer-links .footer-menu ul.menu li {
    padding: 0 10px;
  }
}
.footer .footer-links .footer-menu ul.menu li a {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}
.footer .footer-links .footer-menu ul.menu li a:hover {
  border-bottom: 1px solid #131313;
  padding: 7px 0;
}
.footer .footer-links .footer-menu ul.menu li a .active {
  border-bottom: 1px solid #131313;
  padding: 7px 0;
}
.footer .footer-links .footer-socialMedia {
  position: absolute;
  right: 0;
  top: 21px;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .footer .footer-links .footer-socialMedia {
    right: 5px;
  }
}
@media (max-width: 767px) {
  .footer .footer-links .footer-socialMedia {
    position: initial;
    margin: 20px auto;
  }
}
.footer .footer-links .footer-socialMedia ul.menu {
  text-align: center;
}
.footer .footer-links .footer-socialMedia ul.menu li {
  display: inline-block;
}
.footer .footer-links .footer-socialMedia ul.menu li a img {
  margin: 0 0 0 30px;
  width: 37px;
  height: 37px;
}
@media (min-device-width: 768px) and (max-device-width: 1024px) {
  .footer .footer-links .footer-socialMedia ul.menu li a img {
    margin: 0 0 0 5px;
  }
}
.footer .footer-links .footer-socialMedia ul.menu li:last-of-type {
  margin: 0;
}
.footer .footer-copyright {
  min-height: 58px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer .footer-copyright {
    min-height: 55px;
  }
}
.footer .footer-copyright .copyright {
  color: #131313;
  padding: 20px 0;
}
body.countdown .page .navigation {
  display: none;
}
body.countdown .page .content .headpicture {
  background: #FFFFFF url('../Images/Countdown/Startseite.jpg') repeat scroll 50% 0 / cover;
  height: 850px;
  position: relative;
}
@media (max-width: 767px) {
  body.countdown .page .content .headpicture {
    background: #FFFFFF;
    height: auto;
    display: block;
  }
}
body.countdown .page .content .headpicture .headline {
  padding: 93px 0 0 140px;
  position: inherit;
}
@media (max-width: 767px) {
  body.countdown .page .content .headpicture .headline {
    display: none;
  }
}
@media (max-width: 991px) {
  body.countdown .page .content .headpicture .headline {
    padding: 134px 0 0 45px;
  }
}
body.countdown .page .content .headpicture .headline .headline-second {
  margin: -8px 0 0 440px;
}
@media (max-width: 991px) {
  body.countdown .page .content .headpicture .headline .headline-second {
    padding: 0 0 0 25px;
  }
}
body.countdown .page .content .headpicture .headline .headline-first,
body.countdown .page .content .headpicture .headline .headline-second {
  font-size: 60px;
  color: #737373;
}
body.countdown .page .content .headpicture .headline .headline-first .font-bold,
body.countdown .page .content .headpicture .headline .headline-second .font-bold {
  color: #131313;
  font-family: 'FreightSans Semibold', Helvetica;
}
body.countdown .page .content .headpicture .countdown {
  margin: 138px auto;
  background: #FFFFFF;
  max-width: 900px;
  min-height: 295px;
  border-radius: 20px;
  -webkit-box-shadow: 2px 2px 10px 2px #C4C4C4;
  -moz-box-shadow: 2px 2px 10px 2px #C4C4C4;
  box-shadow: 2px 2px 10px 2px #C4C4C4;
}
@media (max-width: 767px) {
  body.countdown .page .content .headpicture .countdown {
    min-height: 300px;
    margin: 60px 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  body.countdown .page .content .headpicture .countdown {
    margin: 99px 45px;
  }
}
@media (min-width: 767px) and (max-width: 842px) {
  body.countdown .page .content .headpicture .countdown {
    min-height: 400px;
  }
}
body.countdown .page .content .headpicture .countdown .headline,
body.countdown .page .content .headpicture .countdown .subline {
  text-align: center;
}
@media (max-width: 991px) {
  body.countdown .page .content .headpicture .countdown .headline,
  body.countdown .page .content .headpicture .countdown .subline {
    display: block;
  }
}
body.countdown .page .content .headpicture .countdown .headline {
  padding: 12px 0 0 0;
  color: #131313;
  font-family: 'FreightSans Semibold', Helvetica;
  font-size: 60px;
}
@media (max-width: 767px) {
  body.countdown .page .content .headpicture .countdown .headline {
    font-size: 30px;
  }
}
body.countdown .page .content .headpicture .countdown .subline {
  color: #737373;
}
body.countdown .page .content .headpicture .countdown .subline .punkt {
  display: inline-block;
  background: #FFFFFF url('../Icons/sprites.png') no-repeat -69px -3973px;
  width: 10px;
  height: 10px;
}
@media (max-width: 767px) {
  body.countdown .page .content .headpicture .countdown .subline {
    margin: 0 25px;
  }
}
body.countdown .page .content .headpicture .countdown .countdownuhr {
  padding: 40px 0 0 0;
  position: relative;
  text-align: center;
  color: #131313;
  font-family: 'FreightSans Book', Helvetica;
  font-weight: 100;
  letter-spacing: 1px;
  line-height: 1;
}
body.countdown .page .content .headpicture .countdown .countdownuhr a {
  display: block;
  margin-bottom: 1em;
  color: #E7F7F5;
  text-decoration: none;
}
body.countdown .page .content .headpicture .countdown .countdownuhr a:last-of-type {
  font-size: 0.9em;
}
body.countdown .page .content .headpicture .countdown .countdownuhr a:hover {
  text-decoration: underline;
}
body.countdown .page .content .headpicture .countdown .countdownuhr ul {
  margin-bottom: 4em;
}
body.countdown .page .content .headpicture .countdown .countdownuhr .chart {
  display: inline-block;
  margin: 0 39px;
  vertical-align: top;
  position: relative;
  padding-top: 15px;
  background: #FFFFFF url('../Icons/sprites.png') no-repeat -52px -4023px;
  width: 106px;
  height: 106px;
}
@media (max-width: 767px) {
  body.countdown .page .content .headpicture .countdown .countdownuhr .chart {
    margin: 0 30px;
  }
}
@media (max-width: 428px) {
  body.countdown .page .content .headpicture .countdown .countdownuhr .chart {
    margin: 0 10px;
  }
}
@media (max-width: 780px) {
  body.countdown .page .content .headpicture .countdown .countdownuhr .chart:nth-child(2) {
    margin: 0 30px;
  }
}
@media (max-width: 767px) {
  body.countdown .page .content .headpicture .countdown .countdownuhr .chart.hours {
    margin: 0 25px 25px 25px;
  }
}
@media (max-width: 428px) {
  body.countdown .page .content .headpicture .countdown .countdownuhr .chart.hours {
    margin: 0 10px 25px 10px;
  }
}
@media (max-width: 767px) {
  body.countdown .page .content .headpicture .countdown .countdownuhr .chart.secs {
    margin: inherit;
  }
}
@media (min-width: 767px) and (max-width: 842px) {
  body.countdown .page .content .headpicture .countdown .countdownuhr .chart.secs {
    margin: 15px 39px;
  }
}
body.countdown .page .content .headpicture .countdown .countdownuhr .chart span {
  display: block;
  font-size: 2em;
  font-weight: normal;
}
body.countdown .page .content .headpicture .countdown .countdownuhr .chart span.time {
  margin: -8px 0 0 0;
  font-size: 60px;
  color: #131313;
  font-family: 'FreightSans Book', Helvetica;
}
body.countdown .page .content .headpicture .countdown .countdownuhr .chart span.text {
  font-family: 'FreightSans Book', Helvetica;
  font-size: 20px;
  color: #737373;
}
body.countdown .page .content .headpicture .countdown .countdownuhr .chart canvas {
  position: absolute;
  left: 0;
  top: 0;
}
body.countdown .page .footer {
  margin: 0;
}
body.countdown .page .footer .footer-links {
  display: none;
}
/**
*
* Breadcrumbs
*
*/
.page .content .inhalt .breadcrumbs {
  line-height: 35px;
  padding: 5px 15px 10px 15px;
}
.page .content .inhalt .breadcrumbs ul.breadcrumb li {
  color: #737373;
  display: inline-block;
  padding: 18px 5px 0 15px;
}
.page .content .inhalt .breadcrumbs ul.breadcrumb li:before {
  background: transparent url('../Icons/sprites.png') no-repeat -75px -4931px;
  display: block;
  position: absolute;
  height: 28px;
  width: 28px;
  content: " ";
  margin: 0px 0 0 -15px;
}
.page .content .inhalt .breadcrumbs ul.breadcrumb li.none {
  background: none;
  padding: 18px 5px 0 0;
}
.page .content .inhalt .breadcrumbs ul.breadcrumb li.none:before {
  background: none;
}
.page .content .inhalt .breadcrumbs ul.breadcrumb li:empty {
  display: none;
}
.page .content .inhalt .breadcrumbs ul.breadcrumb li:empty:before {
  background: none;
}
.page .content .inhalt .breadcrumbs a {
  color: #737373;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.page .content .inhalt .breadcrumbs a:empty {
  display: none;
}
/**
*
* Scroll Up
*
*/
.scrollup {
  font-size: 2.2rem;
  width: 60px;
  height: 60px;
  z-index: 99;
  position: fixed;
  bottom: 5px;
  right: 25px;
  display: none;
  opacity: 0.8;
  cursor: pointer;
}
.scrollup:before {
  font-family: "ws-icons";
  content: "\e316";
}
@media (max-width: 767px) {
  .scrollup {
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}
.skiplinks {
  position: absolute;
  top: 0px;
  left: -32768px;
  z-index: 1000;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.skiplinks a {
  -webkit-transition: none;
}
.skiplinks .skip {
  position: absolute;
  top: -32768px;
  left: -32768px;
  -webkit-transition: none;
}
.skiplinks .skip:focus,
.skiplinks .skip:active {
  color: #131313;
  background: #FFFFFF;
  border-bottom: 1px #131313 solid;
  padding: 10px 0;
  text-align: center;
  text-decoration: none;
  top: 0;
  left: 32768px;
  outline: 0 none;
  position: absolute;
  width: 100%;
}
/**
*
* Columns
*
*/
.twoColumns {
  clear: both;
  overflow: hidden;
}
.twoColumns.registration {
  width: 100%;
  text-align: center;
}
.twoColumns.registration .left,
.twoColumns.registration .right {
  width: 25%;
  float: none;
  display: inline-block;
}
@media (max-width: 767px) {
  .twoColumns.registration .left,
  .twoColumns.registration .right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .twoColumns.registration .left a,
  .twoColumns.registration .right a {
    margin: 0 auto 42px auto !important;
  }
}
.twoColumns .marginalColumn {
  border-top: 1px solid #C4C4C4;
  padding-top: 30px;
}
.twoColumns .marginalColumn h1,
.twoColumns .marginalColumn h2,
.twoColumns .marginalColumn h3,
.twoColumns .marginalColumn h4,
.twoColumns .marginalColumn h5 {
  font-size: 20px;
  line-height: 30px;
}
.twoColumns .marginalColumn h1:first-of-type,
.twoColumns .marginalColumn h2:first-of-type,
.twoColumns .marginalColumn h3:first-of-type,
.twoColumns .marginalColumn h4:first-of-type,
.twoColumns .marginalColumn h5:first-of-type {
  padding: 0 0 30px 0;
}
.twoColumns .fliesstext b {
  color: #131313;
}
.twoColumns.googleMaps .leftColumn {
  float: left;
  width: 60%;
}
.twoColumns.googleMaps .rightColumn {
  float: right;
  width: 40%;
  padding-left: 80px;
}
@media (max-width: 767px) {
  .twoColumns.googleMaps {
    width: 100%;
    padding-left: 15px;
  }
}
.fourColumns {
  overflow: hidden;
  clear: both;
  padding: 60px 0 0 0;
}
.fourColumns.linetop {
  border-top: 1px solid #E5E5E5;
}
.fourColumns .thecolumns {
  max-width: 1400px;
  margin: 0 auto;
}
.fourColumns .leftColumn,
.fourColumns .middleColumn,
.fourColumns .rightColumn {
  float: left;
  width: 25%;
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
@media (max-width: 767px) {
  .fourColumns .leftColumn,
  .fourColumns .middleColumn,
  .fourColumns .rightColumn {
    width: 100%;
  }
}
.threeColumns {
  margin: 0 auto;
  max-width: 1400px;
  clear: both;
}
.threeColumns.meinws {
  height: 150px;
}
@media (max-width: 767px) {
  .threeColumns.meinws {
    height: 280px;
    overflow: hidden;
  }
}
.threeColumns.meinws .col-60 {
  display: block;
}
.threeColumns.meinws .col-60 .einfacherlink {
  text-align: left;
}
@media (max-width: 767px) {
  .threeColumns.meinws .col-60 .einfacherlink a {
    margin: 20px auto !important;
  }
}
.threeColumns.meinws .col-20 {
  width: 20%;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .threeColumns.meinws .col-20.middle {
    margin: 0 0 0 -160px;
    width: 30%;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .threeColumns.meinws .col-20.right {
    width: 10%;
  }
}
@media (max-width: 767px) {
  .threeColumns.meinws .col-20 {
    width: 100%;
  }
}
.threeColumns.meinws .col-20 .einfacherlink {
  text-align: right;
}
@media (max-width: 767px) {
  .threeColumns.meinws .col-20 .einfacherlink a {
    margin: 20px auto !important;
  }
}
.columns {
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
@media (max-width: 767px) {
  .columns.mapsL {
    padding-left: 0;
    padding-right: 0;
  }
}
.padding-left-60 {
  padding-left: 60px;
}
.col-10,
.col-20,
.col-25,
.col-30,
.col-33,
.col-40,
.col-50,
.col-60,
.col-70,
.col-80,
.col-90,
.col-100 {
  float: left;
  height: auto;
}
.col-10 .inhalt,
.col-20 .inhalt,
.col-25 .inhalt,
.col-30 .inhalt,
.col-33 .inhalt,
.col-40 .inhalt,
.col-50 .inhalt,
.col-60 .inhalt,
.col-70 .inhalt,
.col-80 .inhalt,
.col-90 .inhalt,
.col-100 .inhalt,
.col-10 .tx-powermail,
.col-20 .tx-powermail,
.col-25 .tx-powermail,
.col-30 .tx-powermail,
.col-33 .tx-powermail,
.col-40 .tx-powermail,
.col-50 .tx-powermail,
.col-60 .tx-powermail,
.col-70 .tx-powermail,
.col-80 .tx-powermail,
.col-90 .tx-powermail,
.col-100 .tx-powermail {
  max-width: 1430px;
  margin: 0 auto;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-none {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.col-10 {
  width: 10%;
}
@media (max-width: 767px) {
  .col-10 {
    width: 100%;
  }
}
.col-20 {
  width: 20%;
}
@media (max-width: 767px) {
  .col-20 {
    width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .col-20.marginalColumn {
    width: 30%;
  }
}
.col-25 {
  width: 25%;
}
@media (max-width: 767px) {
  .col-25 {
    width: 100%;
  }
}
.col-30 {
  width: 30%;
}
@media (max-width: 767px) {
  .col-30 {
    width: 100%;
    padding: 60px 0 0 0;
  }
}
.col-33 {
  width: 33.333333%;
}
@media (max-width: 767px) {
  .col-33 {
    width: 100%;
  }
}
.col-40 {
  width: 40%;
}
@media (max-width: 767px) {
  .col-40 {
    width: 100%;
  }
}
.col-50 {
  width: 50%;
}
@media (max-width: 767px) {
  .col-50 {
    width: 100%;
  }
}
.col-60 {
  width: 60%;
}
@media (max-width: 767px) {
  .col-60 {
    width: 100%;
  }
}
.col-70 {
  width: 70%;
}
@media (max-width: 767px) {
  .col-70 {
    width: 100%;
  }
}
.col-80 {
  width: 80%;
}
@media (max-width: 767px) {
  .col-80 {
    width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .col-80.contentColumn {
    width: 70%;
  }
}
.col-90 {
  width: 90%;
}
@media (max-width: 767px) {
  .col-90 {
    width: 100%;
  }
}
.col-100 {
  width: 100%;
}
@media (max-width: 767px) {
  .col-100 {
    width: 100%;
  }
}
/**
*
* Headline
*
*/
.headline-first,
.headline-second {
  position: absolute;
  font-size: 60px;
  line-height: 70px;
  color: #737373;
}
.headline-first b,
.headline-second b,
.headline-first strong,
.headline-second strong {
  color: #131313;
  font-family: 'FreightSans Semibold', Helvetica;
}
@media (max-width: 767px) {
  .headpicture .headline-first,
  .overlappingimages .headline-first,
  .headpicture .headline-second,
  .overlappingimages .headline-second {
    left: 10px !important;
  }
}
@media (max-width: 780px) {
  .headpicture .headline-first,
  .overlappingimages .headline-first,
  .headpicture .headline-second,
  .overlappingimages .headline-second {
    font-size: 30px;
    line-height: 6em;
  }
}
@media (min-width: 780px) AND (max-width: 1095px) {
  .headpicture .headline-first,
  .overlappingimages .headline-first,
  .headpicture .headline-second,
  .overlappingimages .headline-second {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 1095px) AND (max-width: 1330px) {
  .headpicture .headline-first,
  .overlappingimages .headline-first,
  .headpicture .headline-second,
  .overlappingimages .headline-second {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .overlappingimages .headline {
    padding: 0 0 30px 0;
  }
}
@media (max-width: 767px) {
  .overlappingimages .headline-first,
  .overlappingimages .headline-second {
    display: inline-block;
  }
}
/**
*
* Headline Pages
* * Kleine Headline mit Unterstrich
*
*/
.page .content .headline-pages h1,
.page .content .headline-pages h2,
.page .content .headline-pages h3,
.page .content .headline-pages h4,
.page .content .headline-pages h5 {
  clear: both;
  text-align: center;
  padding: 60px 0 0 0;
  font-size: 20px;
  font-family: 'FreightSans Semibold', Helvetica;
  color: #131313;
}
@media (max-width: 767px) {
  .page .content .headline-pages h1,
  .page .content .headline-pages h2,
  .page .content .headline-pages h3,
  .page .content .headline-pages h4,
  .page .content .headline-pages h5 {
    padding: 20px 0 0 0;
  }
}
.page .content .headline-pages hr {
  width: 100px;
  border-top: 1px solid #131313;
  border-bottom: transparent;
  margin: 30px auto 60px auto;
}
@media (max-width: 767px) {
  .page .content .headline-pages hr {
    margin: 10px auto 20px auto;
  }
}
.divider hr {
  margin: 0 0 40px 0;
  color: #C4C4C4;
  border-top: 1px solid #C4C4C4;
  border-bottom: transparent;
}
.dividersmall hr {
  margin: 0 0 40px 0;
  color: #C4C4C4;
  border-top: 1px solid #C4C4C4;
  border-bottom: transparent;
}
/**
*
* Button Link
* * "Button" Design auf A-Tag - Schwarz mit Hover weiß
* * Submit Button Design - Schwarz mit Hover weiß
*
*/
.page .content .footerhinweise a,
.page .navigation-megamenu .footerhinweise a,
.page .content .smartLinks a,
.page .navigation-megamenu .smartLinks a,
.page .content .informationgrey a,
.page .navigation-megamenu .informationgrey a,
.page .content .waschsaloninfo .textinfos .infos .link a,
.page .navigation-megamenu .waschsaloninfo .textinfos .infos .link a,
.page .content .einfacherlink a,
.page .navigation-megamenu .einfacherlink a,
.page .content .diashow .infoBox a,
.page .navigation-megamenu .diashow .infoBox a,
.page .content .changewachsalon a,
.page .navigation-megamenu .changewachsalon a,
.page .content .changewaschsalon a,
.page .navigation-megamenu .changewaschsalon a,
.page .content .morewaschsalons a,
.page .navigation-megamenu .morewaschsalons a {
  cursor: pointer;
  font-family: 'FreightSans Book', Helvetica;
  font-size: 20px;
  text-align: center;
  height: 50px;
  color: #FFFFFF;
  background: #131313;
  border: 1px solid #131313;
  line-height: 45px;
  display: inline-block;
  text-decoration: none;
  border-radius: 3px;
  padding: 0 1.5em 0 1.5em;
  margin: 42px auto;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}
@media (max-width: 767px) {
  .page .content .footerhinweise a,
  .page .navigation-megamenu .footerhinweise a,
  .page .content .smartLinks a,
  .page .navigation-megamenu .smartLinks a,
  .page .content .informationgrey a,
  .page .navigation-megamenu .informationgrey a,
  .page .content .waschsaloninfo .textinfos .infos .link a,
  .page .navigation-megamenu .waschsaloninfo .textinfos .infos .link a,
  .page .content .einfacherlink a,
  .page .navigation-megamenu .einfacherlink a,
  .page .content .diashow .infoBox a,
  .page .navigation-megamenu .diashow .infoBox a,
  .page .content .changewachsalon a,
  .page .navigation-megamenu .changewachsalon a,
  .page .content .changewaschsalon a,
  .page .navigation-megamenu .changewaschsalon a,
  .page .content .morewaschsalons a,
  .page .navigation-megamenu .morewaschsalons a {
    width: 100%;
    border-radius: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .page .content .footerhinweise a,
  .page .navigation-megamenu .footerhinweise a,
  .page .content .smartLinks a,
  .page .navigation-megamenu .smartLinks a,
  .page .content .informationgrey a,
  .page .navigation-megamenu .informationgrey a,
  .page .content .waschsaloninfo .textinfos .infos .link a,
  .page .navigation-megamenu .waschsaloninfo .textinfos .infos .link a,
  .page .content .einfacherlink a,
  .page .navigation-megamenu .einfacherlink a,
  .page .content .diashow .infoBox a,
  .page .navigation-megamenu .diashow .infoBox a,
  .page .content .changewachsalon a,
  .page .navigation-megamenu .changewachsalon a,
  .page .content .changewaschsalon a,
  .page .navigation-megamenu .changewaschsalon a,
  .page .content .morewaschsalons a,
  .page .navigation-megamenu .morewaschsalons a {
    width: 95%;
  }
}
.page .content .footerhinweise a:hover,
.page .navigation-megamenu .footerhinweise a:hover,
.page .content .smartLinks a:hover,
.page .navigation-megamenu .smartLinks a:hover,
.page .content .informationgrey a:hover,
.page .navigation-megamenu .informationgrey a:hover,
.page .content .waschsaloninfo .textinfos .infos .link a:hover,
.page .navigation-megamenu .waschsaloninfo .textinfos .infos .link a:hover,
.page .content .einfacherlink a:hover,
.page .navigation-megamenu .einfacherlink a:hover,
.page .content .diashow .infoBox a:hover,
.page .navigation-megamenu .diashow .infoBox a:hover,
.page .content .changewachsalon a:hover,
.page .navigation-megamenu .changewachsalon a:hover,
.page .content .changewaschsalon a:hover,
.page .navigation-megamenu .changewaschsalon a:hover,
.page .content .morewaschsalons a:hover,
.page .navigation-megamenu .morewaschsalons a:hover {
  color: #131313;
  background: #FFFFFF;
  border: 1px solid #131313;
}
.page .content .morewaschsalons a,
.page .navigation-megamenu .morewaschsalons a {
  padding: 20px auto;
}
.page .content input[type=submit],
.page .navigation-megamenu input[type=submit] {
  cursor: pointer;
  text-align: center;
  height: 50px;
  width: 215px;
  font-size: 20px;
  color: #FFFFFF;
  background: #131313;
  border: 1px solid #131313;
  line-height: 45px;
  display: inline-block;
  text-decoration: none;
  border-radius: 2px;
  margin: 42px auto;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}
.page .content input[type=submit]:hover,
.page .navigation-megamenu input[type=submit]:hover {
  color: #131313;
  background: #FFFFFF;
  border: 1px solid #131313;
}
.morewaschsalons {
  text-align: center;
}
.button-big {
  background-color: #131313;
  border-radius: 3px;
  border: 1px solid #131313;
  padding: 1em 1.5em 1em 1.5em;
  color: #FFFFFF;
  display: inline-block;
  text-decoration: none;
  transition: all 0.275s;
  margin-left: 10px;
  margin-right: 10px;
}
.button-normal {
  text-decoration: none;
  transition: all 0.275s;
  background-color: #131313;
  color: #FFFFFF !important;
  border: 1px solid #131313;
  padding: 0.5rem;
  border-radius: 3px;
  margin-left: 10px;
  margin-right: 10px;
}
/**
*
* Grey Filter
* * Fade Effect
*
*/
.filtergrey img {
  filter: grayscale(100%);
  filter: gray;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: url('../Images/filters.svg#grayscale');
  -webkit-filter: grayscale(1);
}
.filtergrey img:hover {
  filter: none;
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
}
.filtergrey.nonefilter {
  filter: none;
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
}
/**
*
* IMG Border
*
*/
.diashow img,
.waschsaloninfo .image img,
.fliesstext .image img,
.mediaelement-video img,
.overlappingimages img,
.contactperson img,
.infobox img,
.supplierlogo img,
.waschsalon .image img,
.overlaymeinwaschsalon .image img,
.meinwaschsalon .image img,
.locationZip .image img {
  border: 10px solid #FFFFFF;
  box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
}
@media (max-device-width: 768px) {
  .diashow img,
  .waschsaloninfo .image img,
  .fliesstext .image img,
  .mediaelement-video img,
  .overlappingimages img,
  .contactperson img,
  .infobox img,
  .supplierlogo img,
  .waschsalon .image img,
  .overlaymeinwaschsalon .image img,
  .meinwaschsalon .image img,
  .locationZip .image img {
    border: 5px solid #FFFFFF;
  }
}
#map {
  width: 100%;
  height: 700px;
}
@media (max-width: 767px) {
  #map {
    height: 500px;
    width: 100%;
  }
}
@media (min-device-width: 768px) and (max-device-width: 1024px) {
  #map {
    height: 700px;
  }
}
#map .infobox {
  min-width: 460px;
  min-height: 380px;
  overflow: hidden;
  display: block;
  font-family: 'FreightSans Book', Helvetica;
  font-size: 20px;
  line-height: 30px;
}
@media (max-width: 767px) {
  #map .infobox {
    min-width: 245px;
    min-height: 135px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  #map .infobox {
    min-width: 400px;
    min-height: 340px;
  }
}
@media (max-device-width: 768px) {
  #map .infobox {
    min-width: 245px;
    min-height: 135px;
  }
}
@media (min-device-width: 768px) and (max-device-width: 1024px) {
  #map .infobox {
    min-width: 450px;
    min-height: 400px;
  }
}
#map .infobox b {
  font-family: 'FreightSans Semibold', Helvetica;
}
#map .infobox img {
  max-width: 100%;
  margin: 0 auto;
  float: left;
  position: absolute;
}
@media (max-width: 767px) {
  #map .infobox img {
    display: none;
  }
}
#map .infobox img.imgborder.img1 {
  z-index: 1;
  margin: 20px;
  left: 20px;
}
#map .infobox img.imgborder.img2 {
  z-index: 2;
  margin: 20px 20px 20px 0;
  left: 210px;
  top: 50px;
}
@media (max-width: 991px) {
  #map .infobox img.imgborder.img2 {
    left: 155px;
  }
}
#map .infobox img.imgborder.img3 {
  z-index: 3;
  margin: 0 20px 20px 20px;
  top: 230px;
  left: -7px;
}
@media (max-width: 991px) {
  #map .infobox img.imgborder.img3 {
    top: 195px;
  }
}
#map .infobox .text {
  position: absolute;
  left: 245px;
  top: 230px;
}
@media (max-width: 767px) {
  #map .infobox .text {
    left: 0;
    top: 0;
    position: relative;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  #map .infobox .text {
    left: 180px;
    top: 195px;
  }
}
#map .infobox .terminvereinbarung,
#map .infobox .meinwaschsalonicon,
#map .infobox .meinwaschsaloniconPartner {
  width: 100%;
  height: 32px;
  top: 330px;
  left: 245px;
  position: absolute;
}
#map .infobox .terminvereinbarung:before,
#map .infobox .meinwaschsalonicon:before,
#map .infobox .meinwaschsaloniconPartner:before {
  font-family: ws-icons;
  content: "\e924";
  font-size: 2rem;
  position: relative;
  top: 5px;
  margin-right: 0.5rem;
  color: #C4C4C4;
}
#map .infobox .terminvereinbarung a,
#map .infobox .meinwaschsalonicon a,
#map .infobox .meinwaschsaloniconPartner a {
  font-family: 'FreightSans Semibold', Helvetica;
  color: #737373;
}
@media (max-width: 767px) {
  #map .infobox .terminvereinbarung,
  #map .infobox .meinwaschsalonicon,
  #map .infobox .meinwaschsaloniconPartner {
    left: 0;
    top: 0;
    position: relative;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  #map .infobox .terminvereinbarung,
  #map .infobox .meinwaschsalonicon,
  #map .infobox .meinwaschsaloniconPartner {
    left: 180px;
    top: 305px;
  }
}
#map .infobox .meinwaschsaloniconPartner {
  background: url('../Icons/partnerKM.png') no-repeat left;
  height: 50px;
  padding: 10px 0 5px 035px;
}
#map .infobox.single {
  min-width: 270px;
  min-height: 210px;
}
@media (max-width: 767px) {
  #map .infobox.single {
    min-height: 50px;
  }
}
#map .infobox.single .text {
  left: 45px;
  top: 165px;
}
#map .infobox.single .routenplaner {
  font-family: 'FreightSans Semibold', Helvetica;
  padding: 21px 0 0 35px;
  width: 100%;
  height: 32px;
}
#map .infobox.single .routenplaner:before {
  font-family: ws-icons;
  content: "\e924";
  margin-right: 10px;
  font-size: 1.5rem;
  position: relative;
  top: 5px;
}
@media (max-width: 767px) {
  #map .infobox.single .routenplaner {
    top: 13px;
  }
}
#map .infobox.infoPartner {
  min-width: 200px;
  min-height: auto;
}
#map .infobox.infoPartner img {
  position: relative;
}
#map .infobox.infoPartner img.imgborder.imglogo {
  margin: 10px;
  z-index: 1;
}
#map .infobox.infoPartner .text {
  position: relative;
  top: 10px;
  left: 10px;
}
.overlaymaps {
  position: relative;
}
.overlaymaps .overlaymeinwaschsalon {
  position: absolute;
  top: 35%;
  left: 4%;
  width: 87%;
  height: auto;
  padding: 30px;
  background: #FFFFFF;
}
@media (max-width: 420px) {
  .overlaymaps .overlaymeinwaschsalon {
    top: 5%;
    left: 4%;
    width: 92%;
    padding: 20px;
  }
}
@media (min-width: 420px) and (max-width: 500px) {
  .overlaymaps .overlaymeinwaschsalon {
    top: 10%;
    left: 4%;
    width: 92%;
    padding: 20px;
  }
}
@media (min-width: 500px) and (max-width: 767px) {
  .overlaymaps .overlaymeinwaschsalon {
    top: 25%;
    left: 4%;
    width: 92%;
    padding: 20px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .overlaymaps .overlaymeinwaschsalon {
    top: 30%;
  }
}
.overlaymaps .overlaymeinwaschsalon .closebox {
  display: block;
  position: absolute;
  background: transparent url('../Icons/sprites.png') no-repeat -75px -5339px;
  width: 20px;
  height: 20px;
  right: 10px;
  top: 10px;
}
.overlaymaps .overlaymeinwaschsalon .image {
  float: left;
  padding: 0 30px 0 0;
}
.overlaymaps .overlaymeinwaschsalon .image img {
  max-width: 100%;
}
.overlaymaps .overlaymeinwaschsalon .text {
  color: #737373;
}
.overlaymaps .overlaymeinwaschsalon .text b {
  font-family: 'FreightSans Semibold', Helvetica;
  color: black;
  font-weight: normal;
}
@media (max-width: 767px) {
  .overlaymaps .overlaymeinwaschsalon .text {
    clear: both;
  }
}
.overlaymaps .overlaymeinwaschsalon .icon {
  padding: 3px 0 0 35px;
  background: url('../Icons/sprites.png') no-repeat -80px -5388px;
  width: 100%;
  height: 32px;
  margin: 0 0 0 230px;
}
@media (max-width: 922px) {
  .overlaymaps .overlaymeinwaschsalon .icon {
    margin: 0;
  }
}
.overlaymaps .overlaymeinwaschsalon .icon a {
  font-family: 'FreightSans Semibold', Helvetica;
}
.overlaymaps .overlaymeinwaschsalon .openselectmeinwaschsalon {
  font-family: 'FreightSans Semibold', Helvetica;
}
.inlocation .locations,
.inlocation .location {
  background: #FFFFFF;
  box-shadow: 0 0 25px 0 #E7E7E7;
}
.inlocation .wswasch {
  padding: 1rem 1rem 0 1rem;
}
.inlocation .columns {
  padding-right: 0;
  padding-left: 0;
}
.inlocation .waschsalonsuche {
  padding: 15px;
  height: 200px;
}
@media screen and (min-width: 40.25rem) {
  .inlocation .waschsalonsuche {
    background: #FFFFFF;
  }
}
@media screen and (max-width: 44.9375rem) {
  .inlocation .waschsalonsuche {
    background: #FFFFFF;
  }
}
@media screen and (min-width: 112.5rem) {
  .inlocation .waschsalonsuche {
    background: #F5F5F5;
  }
}
.gm-style-iw + div {
  display: block;
  position: absolute;
  background: transparent url('../Icons/sprites.png') no-repeat -75px -5339px;
  width: 20px !important;
  height: 20px !important;
  right: 10px;
  top: 10px;
}
.gm-style-iw + div img {
  display: none;
}
/**
*
* Vereinbarung
* * Link "Termin vereinbaren >"
*
*/
.terminvereinbarung {
  margin: 0 0 30px 0;
}
.terminvereinbarung h1,
.terminvereinbarung h2,
.terminvereinbarung h3,
.terminvereinbarung h4,
.terminvereinbarung h5,
.terminvereinbarung h6 {
  display: inline;
  font-family: 'FreightSans Semibold', Helvetica;
  font-size: 20px;
  line-height: 35px;
  font-weight: normal;
}
.terminvereinbarung h1:before,
.terminvereinbarung h2:before,
.terminvereinbarung h3:before,
.terminvereinbarung h4:before,
.terminvereinbarung h5:before,
.terminvereinbarung h6:before {
  font-family: ws-icons;
  content: "\e91d";
  font-size: 1.5rem;
  position: relative;
  top: 2px;
  color: #C4C4C4;
}
.terminvereinbarung h1 a,
.terminvereinbarung h2 a,
.terminvereinbarung h3 a,
.terminvereinbarung h4 a,
.terminvereinbarung h5 a,
.terminvereinbarung h6 a {
  font-weight: normal;
  color: #737373;
}
.oeffnungszeitenGlobal {
  margin: 20px 0;
}
.wsLocation.sameheight {
  margin-bottom: -5px;
  padding-bottom: 30px;
  margin-top: 40px;
  border-bottom: 1px solid #F0F0F0;
}
/**
*
* Fliesstext
*
*/
.page .content .fliesstext,
.page .navigation-megamenu .fliesstext {
  position: relative;
}
.page .content .fliesstext p,
.page .navigation-megamenu .fliesstext p {
  padding: 0 0 10px 0;
  clear: both;
}
.page .content .fliesstext h1,
.page .navigation-megamenu .fliesstext h1,
.page .content .fliesstext h2,
.page .navigation-megamenu .fliesstext h2,
.page .content .fliesstext h3,
.page .navigation-megamenu .fliesstext h3,
.page .content .fliesstext h4,
.page .navigation-megamenu .fliesstext h4 {
  padding: 0 0 20px 0;
  color: #131313;
}
.page .content .fliesstext h5,
.page .navigation-megamenu .fliesstext h5 {
  font-size: 25px;
  line-height: 35px;
  color: #131313;
}
.page .content .fliesstext .image img,
.page .navigation-megamenu .fliesstext .image img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.page .content .fliesstext .textwrap,
.page .navigation-megamenu .fliesstext .textwrap {
  color: #737373;
  line-height: 35px;
  margin: 0 0 40px 0;
}
@media (max-width: 767px) {
  .page .content .fliesstext .textwrap,
  .page .navigation-megamenu .fliesstext .textwrap {
    margin: 0 0 20px 0;
    content: "abgehauen";
  }
}
.page .content .fliesstext ul,
.page .navigation-megamenu .fliesstext ul {
  padding: 0 14px;
  list-style: none;
}
.page .content .fliesstext ul li:before,
.page .navigation-megamenu .fliesstext ul li:before {
  background: transparent url('../Icons/sprites.png') no-repeat -75px -4931px;
  display: block;
  position: absolute;
  height: 28px;
  width: 28px;
  content: " ";
  margin: -6px 0 0 -15px;
}
.page .content .fliesstext ol li img,
.page .navigation-megamenu .fliesstext ol li img {
  display: none !important;
}
.page .content .fliesstext .terminvereinbarung h2,
.page .navigation-megamenu .fliesstext .terminvereinbarung h2 {
  padding: 2px 0 0 36px;
}
.page .content .fliesstext.youtubefliesstext,
.page .navigation-megamenu .fliesstext.youtubefliesstext {
  min-height: 787px;
  margin: 40px 0;
}
@media (max-width: 991px) {
  .page .content .fliesstext.youtubefliesstext,
  .page .navigation-megamenu .fliesstext.youtubefliesstext {
    min-height: auto;
  }
}
.page .content #fliessCarousel,
.page .navigation-megamenu #fliessCarousel,
.page .content #fliessCarousel0,
.page .navigation-megamenu #fliessCarousel0,
.page .content #fliessCarousel1,
.page .navigation-megamenu #fliessCarousel1,
.page .content #fliessCarousel2,
.page .navigation-megamenu #fliessCarousel2,
.page .content #fliessCarousel3,
.page .navigation-megamenu #fliessCarousel3,
.page .content #fliessCarousel4,
.page .navigation-megamenu #fliessCarousel4,
.page .content #fliessCarousel5,
.page .navigation-megamenu #fliessCarousel5,
.page .content #fliessCarousel6,
.page .navigation-megamenu #fliessCarousel6,
.page .content #fliessCarousel7,
.page .navigation-megamenu #fliessCarousel7,
.page .content #fliessCarousel8,
.page .navigation-megamenu #fliessCarousel8,
.page .content #fliessCarousel9,
.page .navigation-megamenu #fliessCarousel9,
.page .content #fliessCarousel10,
.page .navigation-megamenu #fliessCarousel10,
.page .content #fliessCarousel11,
.page .navigation-megamenu #fliessCarousel11,
.page .content #fliessCarousel12,
.page .navigation-megamenu #fliessCarousel12,
.page .content #fliessCarousel13,
.page .navigation-megamenu #fliessCarousel13,
.page .content #fliessCarousel14,
.page .navigation-megamenu #fliessCarousel14,
.page .content #fliessCarousel15,
.page .navigation-megamenu #fliessCarousel15 {
  max-width: 910px;
}
.page .content .marginalColumn .fliesstext h1,
.page .navigation-megamenu .marginalColumn .fliesstext h1,
.page .content .marginalColumn .fliesstext h2,
.page .navigation-megamenu .marginalColumn .fliesstext h2,
.page .content .marginalColumn .fliesstext h3,
.page .navigation-megamenu .marginalColumn .fliesstext h3,
.page .content .marginalColumn .fliesstext h4,
.page .navigation-megamenu .marginalColumn .fliesstext h4,
.page .content .marginalColumn .fliesstext h5,
.page .navigation-megamenu .marginalColumn .fliesstext h5 {
  color: #131313;
  font-size: 20px;
  line-height: 35px;
}
.page .content .marginalColumn .fliesstext b,
.page .navigation-megamenu .marginalColumn .fliesstext b,
.page .content .marginalColumn .fliesstext strong,
.page .navigation-megamenu .marginalColumn .fliesstext strong {
  color: #737373;
  font-family: 'FreightSans Semibold', Helvetica;
  line-height: 35px;
  font-weight: normal;
}
.page .content .marginalColumn .fliesstext .textwrap,
.page .navigation-megamenu .marginalColumn .fliesstext .textwrap {
  margin: 0 0 30px 0;
}
/**
*
* Diashow - 3 Pictures
*
*/
.page .content .diashow {
  clear: both;
  max-width: 1400px;
  margin: 0 auto;
}
.page .content .diashow .infoBox {
  background: #FFFFFF;
  position: absolute;
  bottom: 30px;
  left: 27px;
  z-index: 99;
  width: 92%;
  max-width: 100%;
  height: auto;
  padding: 20px;
}
@media (max-width: 430px) {
  .page .content .diashow .infoBox {
    width: 85%;
    max-height: 85%;
  }
  .page .content .diashow .infoBox a {
    font-size: 16px !important;
    height: 20px;
    line-height: 15px;
  }
  .page .content .diashow .infoBox h1 {
    font-size: 16px !important;
    line-height: 16px !important;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .page .content .diashow .infoBox {
    height: 70%;
  }
}
@media (min-width: 430px) and (max-width: 480px) {
  .page .content .diashow .infoBox {
    width: 85%;
    max-height: 85%;
  }
  .page .content .diashow .infoBox a {
    height: 30px;
    line-height: 25px;
  }
}
@media (min-width: 480px) and (max-width: 560px) {
  .page .content .diashow .infoBox {
    width: 89%;
    max-height: 85%;
  }
  .page .content .diashow .infoBox a {
    height: 40px;
    line-height: 35px;
  }
}
@media (min-width: 560px) and (max-width: 991px) {
  .page .content .diashow .infoBox {
    width: 90%;
    max-height: 85%;
  }
}
@media (min-width: 991px) and (max-width: 1100px) {
  .page .content .diashow .infoBox {
    width: 92%;
    height: 50%;
  }
}
@media (min-width: 1100px) and (max-width: 1200px) {
  .page .content .diashow .infoBox {
    width: 93%;
    height: 50%;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .page .content .diashow .infoBox {
    width: 94%;
    height: 50%;
  }
}
@media (max-width: 767px) {
  .page .content .diashow .infoBox {
    padding: 10px 1em 1em 1em;
  }
  .page .content .diashow .infoBox p {
    padding: 0;
  }
  .page .content .diashow .infoBox h1 {
    font-size: 20px;
    line-height: 35px;
  }
  .page .content .diashow .infoBox a {
    margin: 10px auto 0 auto !important;
  }
}
.page .content .diashow .infoBox.reverse {
  right: inherit;
  left: 40px;
}
.page .content .diashow .infoBox header {
  margin-bottom: 2em;
}
@media (max-width: 1160px) {
  .page .content .diashow .infoBox header {
    margin-bottom: 1em;
  }
}
@media (max-width: 920px) {
  .page .content .diashow .infoBox header {
    margin-bottom: 0;
  }
}
@media (max-width: 1160px) {
  .page .content .diashow .infoBox .infotext p {
    font-size: 16px !important;
    padding: 5px 0;
  }
}
@media (max-width: 1160px) {
  .page .content .diashow .infoBox .infotext p span {
    font-size: 16px !important;
  }
}
.page .content .diashow .infoBox .infotext .align-center {
  text-align: center;
}
.page .content .diashow .infoBox .infotext h1,
.page .content .diashow .infoBox .infotext h2,
.page .content .diashow .infoBox .infotext h3,
.page .content .diashow .infoBox .infotext h4 {
  font-family: 'FreightSans Semibold', Helvetica;
}
@media (max-width: 767px) {
  .page .content .diashow .infoBox .infotext h1,
  .page .content .diashow .infoBox .infotext h2,
  .page .content .diashow .infoBox .infotext h3,
  .page .content .diashow .infoBox .infotext h4 {
    font-size: 16px;
  }
}
@media (min-width: 767px) and (max-width: 1160px) {
  .page .content .diashow .infoBox .infotext h1,
  .page .content .diashow .infoBox .infotext h2,
  .page .content .diashow .infoBox .infotext h3,
  .page .content .diashow .infoBox .infotext h4 {
    font-size: 20px;
  }
}
.page .content .diashow .infoBox .infotext .nobutton a {
  margin: 0 auto !important;
  color: #000;
  background: transparent;
  border: 1px solid transparent;
  display: block;
  height: initial;
  line-height: inherit;
  font-size: inherit;
  font-family: 'FreightSans Semibold', Helvetica;
}
.page .content .diashow .infoBox .infotext a {
  margin: 10px auto 0 auto;
}
.page .content .diashow .infoBox .infotext a[href^="tel"] {
  margin: 0 auto !important;
  color: #000;
  background: transparent;
  border: 1px solid transparent;
  display: block;
  height: initial;
  line-height: inherit;
  font-size: inherit;
  font-family: 'FreightSans Semibold', Helvetica;
}
.page .content .diashow .infoBox .infotext .grey {
  color: #737373;
  text-align: center;
}
.page .content .diashow .showSupplier {
  position: absolute;
  text-align: right;
  top: 40px;
  right: 40px;
  z-index: 99;
  max-width: 100%;
  height: auto;
}
.page .content .diashow .showSupplier.reverse {
  right: inherit;
  left: 30px;
}
@media (max-width: 991px) {
  .page .content .diashow .showSupplier {
    width: 40%;
    top: 25px;
    right: 15px;
  }
}
.page .content .diashow .showSupplier img {
  background: #FFFFFF;
  height: auto;
  width: 100%;
}
@media (max-width: 767px) {
  .page .content .diashow {
    width: auto;
  }
}
.page .content .diashow .diashow-left,
.page .content .diashow .diashow-right {
  float: left;
  min-height: 1px;
}
.page .content .diashow .diashow-left.reverse,
.page .content .diashow .diashow-right.reverse {
  float: right;
}
.page .content .diashow .diashow-single {
  width: 100%;
}
.page .content .diashow .diashow-single img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.page .content .diashow .diashow-left {
  width: 36%;
  padding-right: 23px;
}
@media (max-width: 767px) {
  .page .content .diashow .diashow-left {
    display: none;
  }
}
.page .content .diashow .diashow-left.reverse {
  padding-right: 0;
  padding-left: 23px;
}
.page .content .diashow .diashow-left .lefttop {
  margin: 0 0 30px 0;
}
.page .content .diashow .diashow-left .lefttop,
.page .content .diashow .diashow-left .leftbottom {
  min-height: 150px;
  background: url('../Icons/loading.gif') center center no-repeat;
}
.page .content .diashow .diashow-left .lefttop img,
.page .content .diashow .diashow-left .leftbottom img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  height: auto;
}
.page .content .diashow .diashow-right {
  position: relative;
  width: 64%;
  margin: 0 0 10px 0;
}
.page .content .diashow .diashow-right.reverse .right img {
  right: auto;
  left: 0;
}
@media (max-width: 767px) {
  .page .content .diashow .diashow-right {
    width: 100%;
  }
}
.page .content .diashow .diashow-right.only {
  width: 100%;
}
.page .content .diashow .diashow-right .right {
  position: relative;
  min-height: 150px;
  background: url('../Icons/loading.gif') center center no-repeat;
}
.page .content .diashow .diashow-right .right.only {
  max-width: 100%;
}
.page .content .diashow .diashow-right .right img {
  max-width: 100%;
  max-height: 747px;
  height: auto;
  z-index: 5;
}
@media (max-width: 767px) {
  .page .content .diashow .diashow-right .right img {
    position: relative;
  }
}
.page .content .diashow .diashow-right .right .logo {
  position: absolute;
  right: 40px;
  top: 45px;
  width: 100%;
  height: auto;
  z-index: 99;
}
.page .content .diashow .diashow-right .right .logo img {
  height: auto;
  border: 10px solid #FFFFFF;
  padding: 12px 0;
  background: #FFFFFF;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.page .content .diashow .pagination {
  position: inherit;
  clear: both;
  margin: 10px auto;
}
.page .content .diashow .pagination .punkte {
  margin: 10px 15px 0 0;
  width: 21px;
  height: 21px;
}
.page .content .diashow .pagination .punkte:last-of-type {
  margin: 10px 0 0 0;
}
.page .content .diashow .pagination .punkte:before {
  font-family: ws-icons;
  content: "\e919";
  color: rgba(115, 115, 115, 0.2);
}
.page .content .diashow .pagination .punkte.active:before {
  font-family: ws-icons;
  content: "\e91a";
  color: #131313;
}
@media (max-width: 767px) {
  .page .content .diashow .pagination .punkte {
    display: none;
  }
}
.page .content .diashow .pagination.carousel-indicators {
  margin: 5px auto 40px auto;
  left: 0;
  bottom: -5px;
  min-height: 40px;
}
@media (max-width: 767px) {
  .page .content .diashow .pagination.carousel-indicators {
    margin: 0 auto;
    min-height: 20px;
  }
}
@media (max-width: 767px) {
  .page .content .diashow .nophone {
    display: none !important;
  }
}
.carousel-fade .carousel-inner .item {
  transition-property: opacity;
  padding: 10px 0;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
  z-index: 99;
}
/**
*
* Smart Links
*
*/
.page .content .smartLinks {
  max-width: 285px;
  height: auto;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .page .content .smartLinks {
    max-width: 100%;
    padding-bottom: 40px;
  }
}
.page .content .smartLinks h1,
.page .content .smartLinks h2,
.page .content .smartLinks h3,
.page .content .smartLinks h4,
.page .content .smartLinks h5 {
  font-size: 20px;
  font-family: 'FreightSans Semibold', Helvetica;
  text-align: center;
  padding: 22px 0;
}
.page .content .smartLinks .textwrap {
  color: #737373;
  text-align: center;
}
.page .content .smartLinks .image {
  margin: 0 auto;
  width: 74px;
  height: 74px;
}
.page .content .smartLinks .image img {
  margin: 0 auto;
}
.page .content .smartLinks a {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
}
@media (max-width: 767px) {
  .page .content .smartLinks a {
    width: 95%;
  }
}
.page .content .icon-boxes {
  padding: 1em 0 4em 0;
  background: #EBEBEB;
  box-shadow: 0 -1px 0 0 rgba(117, 117, 117, 0.5), 0 1px 0 0 rgba(117, 117, 117, 0.5);
}
.page .content .icon-boxes h1,
.page .content .icon-boxes h2 {
  text-align: center;
  margin: 1em 0 1em 0;
}
@media screen and (max-width: 44.9375rem) {
  .page .content .icon-boxes h1,
  .page .content .icon-boxes h2 {
    padding: 0.8rem;
  }
}
.page .content .icon-boxes ul li {
  line-height: 40px;
}
.page .content .icon-boxes ul li:before {
  font-family: ws-icons;
  content: "\e916";
  position: relative;
  top: 2px;
  margin-right: 1rem;
}
.page .content .icon-boxes .col {
  padding: 3em 0;
  color: #737373;
  background: #FFFFFF;
  box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
  align-items: center;
  text-align: left;
}
.page .content .icon-boxes .col h2 {
  margin: 0;
  padding: 0 20px;
  margin: 0.75em 0 0.5em;
}
.page .content .icon-boxes .col p {
  margin: 0;
  padding: 0 20px;
  margin-bottom: 20px;
  text-align: left;
  font-size: 0.9em;
}
.page .content .icon-boxes .col .btn {
  margin-left: 20px;
}
.page .content .icon-boxes .smart-icon {
  overflow: hidden;
  background-color: #131313;
  border: 7px solid #FFFFFF;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  color: #FFFFFF;
  font-size: 6.6em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.page .content .icon-boxes .smart-icon i {
  transition: all 0.275s;
}
.page .content .icon-boxes .smart-icon:hover i {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}
.page .content .icon-boxes .smart-icon:focus i {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}
.page .content .icon-boxes .center {
  margin-top: 2em;
  text-align: center;
}
@media screen and (max-width: 44.9375rem) {
  .page .content .icon-boxes .center {
    padding: 0.8rem;
  }
}
.page .content .icon-boxes .center span {
  display: inline-block;
  text-decoration: none;
  transition: all 0.275s;
  background-color: #131313;
  color: #FFFFFF;
  border: 1px solid #131313;
  padding: 1em 1.5em 1em 1.5em;
  border-radius: 3px;
}
.page .content .icon-boxes .center span:before {
  font-family: ws-icons;
  content: "\e904";
  position: relative;
  margin-right: 1rem;
  font-size: 1.5rem;
  float: left;
}
.page .content .icon-boxes .center span:hover:hover,
.page .content .icon-boxes .center span:focus:hover {
  color: #131313;
  background: #FFFFFF;
  border: 1px solid #131313;
}
@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}
/**
*
* Footer Hinweise
*
*/
.page .content .footerhinweise {
  text-align: center;
  background: #E5E5E5;
  padding: 62px 0 58px 0;
}
.page .content .footerhinweise p {
  line-height: 35px;
}
.page .content .footerhinweise h1 {
  margin: 0 0 10px 0;
}
.page .content .footerhinweise h2,
.page .content .footerhinweise h3,
.page .content .footerhinweise h4,
.page .content .footerhinweise h5 {
  margin: 17px 0 8px 0;
}
.page .content .footerhinweise a {
  height: 50px;
  width: 191px;
  margin: 56px auto 0 auto;
}
/**
*
* Link - Easy Link-Button
* * Design in content_buttonlink.less
*
*/
.page .content .einfacherlink {
  text-align: center;
}
.page .content .einfacherlink a {
  margin: 40px auto 60px auto !important;
}
@media (min-width: 767px) and (max-width: 991px) {
  .page .content .einfacherlink a {
    width: 215px;
  }
}
/**
*
* Mini Showroom
*
*/
.page .content .informationgrey {
  clear: both;
  width: 100%;
  text-align: center;
  padding: 50px 15px;
  margin: 60px 0 0 0;
  background: #E5E5E5;
}
.page .content .informationgrey b {
  font-family: 'FreightSans Semibold', Helvetica;
  font-size: 30px;
  line-height: 35px;
  font-weight: normal;
}
.page .content .informationgrey a {
  margin: 42px auto 0 auto;
}
@media (min-width: 767px) and (max-width: 991px) {
  .page .content .informationgrey a {
    width: 215px;
  }
}
.page .content .informationgrey a[href^="tel"] {
  margin: 0 auto;
  color: #000;
  background: transparent;
  border: 1px solid transparent;
}
.page .content .informationgrey .textwrap {
  max-width: 1400px;
  margin: 0 auto;
}
/**
*
* Supplier / Serviceprovider
*
*/
.page .content .suppliers,
.page .content .serviceproviders {
  width: 100%;
  overflow: hidden;
  margin: 60px 0;
}
.page .content .suppliers .supplierlogo,
.page .content .serviceproviders .supplierlogo {
  opacity: 1;
  position: absolute;
  top: 190px;
  right: 40px;
}
.page .content .suppliers .supplierlogo img,
.page .content .serviceproviders .supplierlogo img {
  background: #FFFFFF;
  height: auto;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: portrait) {
  .page .content .suppliers .supplierlogo,
  .page .content .serviceproviders .supplierlogo {
    right: 10px;
  }
}
.page .content .suppliers .supplier,
.page .content .serviceproviders .supplier,
.page .content .suppliers .serviceprovider,
.page .content .serviceproviders .serviceprovider {
  position: relative;
  float: left;
  width: 25%;
  height: 130px;
  border-top: 1px solid #C4C4C4;
  border-right: 1px solid #C4C4C4;
  overflow: hidden;
}
.page .content .suppliers .supplier:nth-child(1),
.page .content .serviceproviders .supplier:nth-child(1),
.page .content .suppliers .serviceprovider:nth-child(1),
.page .content .serviceproviders .serviceprovider:nth-child(1),
.page .content .suppliers .supplier:nth-child(2),
.page .content .serviceproviders .supplier:nth-child(2),
.page .content .suppliers .serviceprovider:nth-child(2),
.page .content .serviceproviders .serviceprovider:nth-child(2),
.page .content .suppliers .supplier:nth-child(3),
.page .content .serviceproviders .supplier:nth-child(3),
.page .content .suppliers .serviceprovider:nth-child(3),
.page .content .serviceproviders .serviceprovider:nth-child(3),
.page .content .suppliers .supplier:nth-child(4),
.page .content .serviceproviders .supplier:nth-child(4),
.page .content .suppliers .serviceprovider:nth-child(4),
.page .content .serviceproviders .serviceprovider:nth-child(4) {
  border-top: 0;
  border-bottom: 1px solid #C4C4C4;
}
.page .content .suppliers .supplier:nth-child(5),
.page .content .serviceproviders .supplier:nth-child(5),
.page .content .suppliers .serviceprovider:nth-child(5),
.page .content .serviceproviders .serviceprovider:nth-child(5),
.page .content .suppliers .supplier:nth-child(6),
.page .content .serviceproviders .supplier:nth-child(6),
.page .content .suppliers .serviceprovider:nth-child(6),
.page .content .serviceproviders .serviceprovider:nth-child(6),
.page .content .suppliers .supplier:nth-child(7),
.page .content .serviceproviders .supplier:nth-child(7),
.page .content .suppliers .serviceprovider:nth-child(7),
.page .content .serviceproviders .serviceprovider:nth-child(7),
.page .content .suppliers .supplier:nth-child(8),
.page .content .serviceproviders .supplier:nth-child(8),
.page .content .suppliers .serviceprovider:nth-child(8),
.page .content .serviceproviders .serviceprovider:nth-child(8) {
  border-top: 0;
}
.page .content .suppliers .supplier:last-of-type,
.page .content .serviceproviders .supplier:last-of-type,
.page .content .suppliers .serviceprovider:last-of-type,
.page .content .serviceproviders .serviceprovider:last-of-type {
  border-right: 0;
}
@media (max-width: 767px) {
  .page .content .suppliers .supplier:last-of-type,
  .page .content .serviceproviders .supplier:last-of-type,
  .page .content .suppliers .serviceprovider:last-of-type,
  .page .content .serviceproviders .serviceprovider:last-of-type {
    border-bottom: 0;
  }
}
.page .content .suppliers .supplier.last,
.page .content .serviceproviders .supplier.last,
.page .content .suppliers .serviceprovider.last,
.page .content .serviceproviders .serviceprovider.last {
  border-right: 0;
}
.page .content .suppliers .supplier.break,
.page .content .serviceproviders .supplier.break,
.page .content .suppliers .serviceprovider.break,
.page .content .serviceproviders .serviceprovider.break {
  clear: both;
}
.page .content .suppliers .supplier.break:nth-last-child(0),
.page .content .serviceproviders .supplier.break:nth-last-child(0),
.page .content .suppliers .serviceprovider.break:nth-last-child(0),
.page .content .serviceproviders .serviceprovider.break:nth-last-child(0) {
  border-bottom: 0;
}
.page .content .suppliers .supplier a,
.page .content .serviceproviders .supplier a,
.page .content .suppliers .serviceprovider a,
.page .content .serviceproviders .serviceprovider a {
  width: 350px;
  height: 130px;
  overflow: hidden;
  display: block;
}
.page .content .suppliers .supplier img,
.page .content .serviceproviders .supplier img,
.page .content .suppliers .serviceprovider img,
.page .content .serviceproviders .serviceprovider img {
  max-width: 100%;
  height: auto;
  display: block;
  position: absolute;
  vertical-align: middle;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 10px;
}
.page .content .suppliers .supplier.waschsalon,
.page .content .serviceproviders .supplier.waschsalon,
.page .content .suppliers .serviceprovider.waschsalon,
.page .content .serviceproviders .serviceprovider.waschsalon {
  background: #131313;
  padding: 0;
}
.page .content .suppliers .supplier.waschsalon:hover,
.page .content .serviceproviders .supplier.waschsalon:hover,
.page .content .suppliers .serviceprovider.waschsalon:hover,
.page .content .serviceproviders .serviceprovider.waschsalon:hover {
  filter: invert(100%);
  -moz-filter: invert(100%);
  -ms-filter: invert(100%);
  -o-filter: invert(100%);
  -webkit-filter: invert(100%);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  border-top: 1px solid #737373 !important;
}
@media (max-width: 767px) {
  .page .content .suppliers .supplier,
  .page .content .serviceproviders .supplier,
  .page .content .suppliers .serviceprovider,
  .page .content .serviceproviders .serviceprovider {
    width: 100%;
    border-right: 0;
    border-top: 1px solid #C4C4C4 !important;
    border-bottom: 0 !important;
  }
}
.page .content .suppliers .supplier:nth-child(1),
.page .content .serviceproviders .supplier:nth-child(1),
.page .content .suppliers .serviceprovider:nth-child(1),
.page .content .serviceproviders .serviceprovider:nth-child(1) {
  border-top: 0 !important;
}
.page .content .suppliers .serviceprovider,
.page .content .serviceproviders .serviceprovider {
  padding-bottom: 20px;
}
.page .content .suppliers .serviceprovider .informations,
.page .content .serviceproviders .serviceprovider .informations {
  min-height: 120px;
  padding-left: 20px;
  padding-right: 20px;
}
.page .content .suppliers .serviceprovider .informations .infCompany,
.page .content .serviceproviders .serviceprovider .informations .infCompany {
  font-weight: bold;
}
.page .content .suppliers .serviceprovider .informations .infCompany a,
.page .content .serviceproviders .serviceprovider .informations .infCompany a {
  height: auto;
  width: auto;
}
.page .content .suppliers .serviceprovider .service,
.page .content .serviceproviders .serviceprovider .service {
  border-top: 1px dotted #C4C4C4;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.page .content .suppliers .serviceprovider .service ul li,
.page .content .serviceproviders .serviceprovider .service ul li {
  color: #737373;
  display: inline-block;
  padding: 18px 5px 0 15px;
}
.page .content .suppliers .serviceprovider .service ul li:before,
.page .content .serviceproviders .serviceprovider .service ul li:before {
  background: transparent url('../Icons/sprites.png') no-repeat -75px -4931px;
  display: block;
  position: absolute;
  height: 28px;
  width: 28px;
  content: " ";
  margin: -6px 0 0 -13px;
}
.page .content .suppliers .serviceprovider .service ul li.none,
.page .content .serviceproviders .serviceprovider .service ul li.none {
  background: none;
  padding: 18px 5px 0 0;
}
.page .content .suppliers .serviceprovider .service ul li.none:before,
.page .content .serviceproviders .serviceprovider .service ul li.none:before {
  background: none;
}
.page .content .suppliers .serviceprovider .service ul li:empty,
.page .content .serviceproviders .serviceprovider .service ul li:empty {
  display: none;
}
.page .content .suppliers .serviceprovider .service ul li:empty:before,
.page .content .serviceproviders .serviceprovider .service ul li:empty:before {
  background: none;
}
.page .content .suppliers .serviceprovider.break,
.page .content .serviceproviders .serviceprovider.break {
  clear: none;
}
.page .content .suppliers.carousel-indicators,
.page .content .serviceproviders.carousel-indicators {
  position: inherit;
  bottom: 0 !important;
  left: initial;
  z-index: 15;
  width: 100%;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.page .content .locationShow .locationZip {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 20px 10px;
}
.page .content .locationShow .locationZip .image {
  width: 25%;
  float: left;
  padding-right: 20px;
}
.page .content .locationShow .locationZip .image img {
  max-width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .page .content .locationShow .locationZip .image {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
    padding-right: 0;
  }
}
.page .content .locationShow .locationZip .info {
  width: 60%;
  float: left;
}
@media (max-width: 767px) {
  .page .content .locationShow .locationZip .info {
    width: 100%;
    float: none;
  }
}
.page .content .locationShow .locationZip .info .km,
.page .content .locationShow .locationZip .info .kmPartner {
  padding: 10px 0;
  line-height: 35px;
  font-weight: bold;
  cursor: pointer;
}
.page .content .locationShow .locationZip .info .km:before,
.page .content .locationShow .locationZip .info .kmPartner:before {
  background: url('../Icons/sprites.png') no-repeat -80px -5388px;
  width: 23px;
  height: 32px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: bottom;
  content: " ";
}
.page .content .locationShow .locationZip .info .kmPartner {
  position: relative;
}
.page .content .locationShow .locationZip .info .kmPartner:before {
  background: url('../Icons/partnerKM.png');
  width: 31px;
  height: 40px;
  margin-right: 0;
  display: inline-block;
  vertical-align: bottom;
  content: " ";
}
.page .content .locationShow .locationZip .info .kmPartner .pCounter {
  position: absolute;
  top: 8px;
  font-size: 15px;
  width: 31px;
  height: 40px;
  left: 0;
  text-align: center;
}
.page .content .locationShow .locationZip .info .anschrift {
  margin: 20px 0;
  height: 107px;
}
.page .content .locationShow .locationZip .info .km + .anschrift {
  margin: 0 0 20px 0;
}
.page .content .locationShow .locationZip .info .kmPartner + .anschrift {
  margin: 0 0 20px 0;
}
.page .content .locationShow .locationZip .extras {
  width: 15%;
  float: left;
}
@media (max-width: 767px) {
  .page .content .locationShow .locationZip .extras {
    width: 100%;
    float: none;
  }
}
.page .content .locationShow .locationZip .extras ul li {
  font-weight: bold;
  color: #737373;
}
.page .content .locationShow .locationZip .extras .einfacherlink a {
  margin: 0 auto 10px auto !important;
}
.page .content .locationShow .locationZip .extras ul + .einfacherlink a {
  margin: 40px auto 10px auto !important;
}
.page .content .locationShow .locationZip .extras.partnerExtras .einfacherlink {
  position: inherit;
}
.page .content .locationShow .locationZip .image,
.page .content .locationShow .locationZip .info,
.page .content .locationShow .locationZip .extras {
  color: #737373;
}
.page .content .locationShow .locationZip .image strong,
.page .content .locationShow .locationZip .info strong,
.page .content .locationShow .locationZip .extras strong {
  color: #131313;
}
.page .content .locationShow .locationZip .image .km,
.page .content .locationShow .locationZip .info .km,
.page .content .locationShow .locationZip .extras .km {
  color: #131313;
  height: 55px;
}
.page .content .locationShow .locationZip.partnerZip {
  width: 25%;
  float: left;
  min-height: 400px;
}
@media (max-width: 767px) {
  .page .content .locationShow .locationZip.partnerZip {
    width: 100%;
  }
}
@media (min-width: 767px) AND (max-width: 991px) {
  .page .content .locationShow .locationZip.partnerZip {
    width: 50%;
  }
  .page .content .locationShow .locationZip.partnerZip:nth-child(3) {
    float: none;
  }
}
.page .content .locationShow .locationZip.partnerZip .image,
.page .content .locationShow .locationZip.partnerZip .info,
.page .content .locationShow .locationZip.partnerZip .extras {
  width: 100%;
  float: inherit;
}
.page .content .locationShow .locationZip.partnerZip .image {
  text-align: center;
  margin-bottom: 20px;
}
.page .content .locationShow .wsLocation {
  clear: both;
}
.page .content .locationShow hr {
  border-top: 1px solid #E5E5E5;
  border-bottom: 0;
  margin: 40px 0;
}
.page .content .locationShow .headline-pages h2 {
  padding: 20px 0 0 0;
}
.page .content .locationShow .headline-pages hr {
  margin: 30px auto 10px auto;
  color: #737373;
}
.page .content .locationShow .serviceproviderDiv {
  overflow: hidden;
}
.plzSelect {
  clear: both;
  padding: 40px 0 0 0 !important;
}
.plzSelect dd,
.plzSelect dt {
  margin: 0px;
  padding: 0px;
}
.plzSelect dt .openSelect {
  cursor: pointer;
  width: 100%;
  height: 45px;
  background: #FFFFFF;
  border: 1px solid #C4C4C4;
  color: #737373;
  line-height: 30px;
  border-radius: 0;
  box-sizing: border-box;
  outline: none;
  font-size: 20px;
  font-family: 'FreightSans Book', Helvetica;
  padding: 0 25px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #FFFFFF url('../Icons/dropdown.png') no-repeat center right 10px;
}
.plzSelect dt .openSelect .multiSel {
  cursor: pointer;
  padding: 7px 0;
}
.plzSelect dd ul {
  width: 100%;
  display: none;
  list-style: none;
  background: #FFFFFF;
  border: 1px solid #C4C4C4;
  color: #737373;
  border-radius: 0;
  -webkit-appearance: none;
  box-sizing: border-box;
  outline: none;
  font-size: 20px;
  font-family: 'FreightSans Book', Helvetica;
  padding: 0 25px;
  margin: -1px 0 0 0;
}
.plzSelect dd ul li {
  padding: 5px 0;
  cursor: pointer;
}
.plzSelect .selectItems {
  margin-top: 30px;
}
.plzSelect .selectItems .cbItem {
  color: #737373;
  margin-left: 30px;
  cursor: pointer;
}
.plzSelect .selectItems .cbItem:first-of-type {
  margin-left: 0;
}
.plzSelect .control {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
.plzSelect .control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  cursor: pointer;
}
.plzSelect .control_indicator {
  cursor: pointer;
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #FFFFFF;
  border: 1px solid #000000;
}
.plzSelect .control-text {
  margin-left: 10px;
  font-weight: normal;
}
.plzSelect .control:hover input ~ .control_indicator,
.plzSelect .control input:focus ~ .control_indicator {
  cursor: pointer;
}
.plzSelect .control input:checked ~ .control-text {
  font-weight: bold;
  color: #000000;
}
.plzSelect .control input:checked ~ .control_indicator {
  border-color: transparent;
  background: #FFFFFF;
}
.plzSelect .control_indicator:after {
  box-sizing: unset;
  content: '';
  position: absolute;
  display: none;
}
.plzSelect .control input:checked ~ .control_indicator:after {
  display: block;
}
.plzSelect .control-checkbox .control_indicator:after {
  left: 4px;
  top: 1px;
  width: 5px;
  height: 14px;
  border: solid #000;
  border-width: 0 5px 5px 0;
  transform: rotate(45deg);
}
.serviceProv .locations .col-30 {
  padding: 0;
}
/**
*
* Location
*
*/
.inhaltsseite .meinwaschsalon-section .icon a {
  color: #737373;
}
.inhaltsseite .meinwaschsalon-section .icon:hover {
  opacity: #131313;
}
.inhaltsseite .waschsalonsuche,
.inhaltsseite .littleheadline {
  display: none;
}
.inhaltsseite #map {
  width: 100%;
}
.inhaltsseite #wslocation {
  margin-bottom: 3rem;
}
.inhaltsseite .locations .col-70.columns {
  padding: 0;
}
.inhaltsseite .locations .col-30 {
  padding: 0;
}
@media screen and (max-width: 44.9375rem) {
  .inhaltsseite .locations .col-30 {
    margin-bottom: 6rem;
  }
}
@media (max-width: 991px) {
  .inhaltsseite .locations .col-30 {
    margin-bottom: 1rem;
  }
}
.inhaltsseite .locations .waswaschheight {
  padding-left: 1rem;
}
.inhaltsseite .locations .wspartner {
  display: none !important;
}
.inhaltsseite .locations .scroll {
  max-height: 655px !important;
}
.inhaltsseite .locationShowAll,
.inhaltsseite .locationWaschsalonShow {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 25% 25% 25% 25%;
  grid-gap: 30px;
}
.inhaltsseite .locationShowAll .name,
.inhaltsseite .locationWaschsalonShow .name {
  font-weight: bold;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .inhaltsseite .locationShowAll,
  .inhaltsseite .locationWaschsalonShow {
    display: block;
  }
  .inhaltsseite .locationShowAll .wsLocation,
  .inhaltsseite .locationWaschsalonShow .wsLocation {
    padding: 2rem 0;
  }
}
.inhaltsseite .locationShowAll {
  margin-top: 40px;
}
.page .content .location {
  overflow: hidden;
}
.page .content .inlocation .col-20,
.page .content .inlocation .col-30 {
  padding: 40px 0 0 0;
}
.page .content .inlocation .col-20.padding-left-none,
.page .content .inlocation .col-30.padding-left-none {
  padding: 0;
}
@media (max-width: 767px) {
  .page .content .inlocation .col-20.padding-left-none,
  .page .content .inlocation .col-30.padding-left-none {
    padding: 30px 0 30px 0;
  }
}
.page .content .inlocation .location {
  overflow: hidden;
  margin: 30px 0 30px 0;
}
.page .content .inlocation .location .col-20,
.page .content .inlocation .location .col-30 {
  padding: 30px 10px 10px 30px;
}
@media (max-width: 767px) {
  .page .content .inlocation .location .col-20.padding-left-none,
  .page .content .inlocation .location .col-30.padding-left-none {
    padding: 30px;
  }
}
.page .content .inlocation .location .name {
  color: #131313;
  font-family: 'FreightSans Semibold', Helvetica;
}
.page .content .inlocation .location .address {
  color: #737373;
}
.page .content .inlocation .location .bold {
  color: #131313;
  font-family: 'FreightSans Semibold', Helvetica;
}
.page .content .inlocation .location .bold a {
  color: #737373;
}
.page .content .inlocation .location .street {
  padding: 0 0 30px 0;
}
.page .content .inlocation .location .email {
  padding: 30px 0;
}
.page .content .inlocation .location .oeffnungszeiten .left {
  width: 90px;
  float: left;
}
.page .content .inlocation .location .oeffnungszeiten .right {
  width: 90px;
}
.page .content .inlocation .location .terminvereinbarung h1 {
  color: #737373;
}
.page .content .inlocation .location #map {
  width: 100%;
  max: 600px;
}
.page .content .inlocation .location a {
  color: #737373;
}
.page .content .inlocation #teamCarousel {
  overflow: visible;
}
.page .content .meinwaschsalon {
  text-align: center;
}
.page .content .meinwaschsalon a {
  font-weight: normal;
  font-family: 'FreightSans Semibold', Helvetica;
}
.page .content .changewaschsalon {
  text-align: center;
  display: block;
  margin: -50px 0 0 0;
  clear: both;
}
.serviceProv {
  margin-bottom: 5rem;
}
.serviceProv .waschsalonsuche {
  display: block;
  margin-bottom: 1rem;
  padding-left: 1rem;
}
.serviceProv .col-30 {
  padding-top: 1rem !important;
  padding-right: 1rem !important;
}
.serviceProv .locations .col-70 {
  width: 70%;
  padding-left: 0;
}
@media screen and (max-width: 44.9375rem) {
  .serviceProv .locations .col-70 {
    width: 100%;
  }
}
.serviceProv .locations {
  background: #FFFFFF;
  box-shadow: 0 0 25px 0 #E7E7E7;
}
.serviceProv #map {
  width: 100%;
}
@media screen and (max-width: 44.9375rem) {
  .radiusField {
    position: relative;
    left: -10px;
  }
}
/**
*
* Locations
*
*/
.page .content .locations {
  overflow: hidden;
  height: auto;
}
@media (max-width: 767px) {
  .page .content .locations {
    padding: 0 0 20px 0;
    overflow: visible;
  }
}
.page .content .locations .mapsR {
  padding: 60px 0 0 0;
}
.page .content .locations .waschsalonsuche .all .title,
.page .content .locations .waschsalonsuche .search .title,
.page .content .locations .waschsalonsuche .brands .title,
.page .content .locations .waschsalonsuche .services .title {
  font-family: 'FreightSans Semibold', Helvetica;
  padding: 0 0 20px 0;
}
.page .content .locations .waschsalonsuche .all .input.second,
.page .content .locations .waschsalonsuche .search .input.second,
.page .content .locations .waschsalonsuche .brands .input.second,
.page .content .locations .waschsalonsuche .services .input.second {
  padding: 0;
}
.page .content .locations .waschsalonsuche .all {
  padding: 0 0 20px 0;
}
.page .content .locations .waschsalonsuche .all:last-of-type {
  padding: 0;
}
.page .content .locations .waschsalonsuche .plzSelect .input {
  padding: 0;
}
.page .content .locations .waschsalonsuche .radiusField .title {
  float: left;
  padding: 0;
}
@media (max-width: 767px) {
  .page .content .locations .waschsalonsuche .radiusField .title {
    display: none;
  }
}
.page .content .locations .waschsalonsuche .radiusField .input {
  padding: 0;
}
.page .content .locations .waschsalons.wswasch + .page .content .locations .waschsalons.waspartner {
  margin: 20px 0 0 0;
}
.page .content .locations .waschsalons .noSPbyDistanceZip {
  margin: 80px 15px 40px 15px;
}
.page .content .locations .waschsalons.scroll {
  margin: 60px 0 0 0;
  overflow: auto;
  width: 100%;
  display: block;
  max-height: 500px;
  background: #FFFFFF;
}
@media screen and (min-width: 40.25rem) {
  .page .content .locations .waschsalons.scroll {
    margin: 0;
  }
}
@media screen and (max-width: 44.9375rem) {
  .page .content .locations .waschsalons.scroll {
    margin: 0;
  }
}
.page .content .locations .waschsalons.scroll::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}
.page .content .locations .waschsalons.scroll::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
.page .content .locations .waschsalons.wspartner,
.page .content .locations .waschsalons.waswaschheight {
  height: auto;
}
.page .content .locations .waschsalons.wspartner {
  margin: 30px 0 0 0;
}
.page .content .locations .waschsalons .littleheadline {
  font-family: 'FreightSans Semibold', Helvetica;
  margin-top: 15px;
}
.page .content .locations .waschsalons .waschsalon {
  margin: 25px 0 0 0;
}
.page .content .locations .waschsalons .waschsalon .location {
  box-shadow: none;
  background: transparent;
}
.page .content .locations .waschsalons .waschsalon .image {
  float: left;
  padding: 0 20px 0 5px;
}
.page .content .locations .waschsalons .waschsalon .name {
  font-family: 'FreightSans Semibold', Helvetica;
}
.page .content .locations .waschsalons .waschsalon .location {
  padding: 0 !important;
  margin: 0 !important;
  border-top: 0;
}
.page .content .locations .waschsalons .waschsalon .terminvereinbarung {
  margin: 30px 0;
}
.page .content .locations .waschsalons .waschsalon .street,
.page .content .locations .waschsalons .waschsalon .location,
.page .content .locations .waschsalons .waschsalon .terminvereinbarung h3 {
  color: #737373;
}
.page .content .locations .waschsalons .meinwaschsalon-section,
.page .content .locations .waschsalons .partner-section {
  padding: 20px 0;
}
.page .content .locations .waschsalons .meinwaschsalon-section .icon,
.page .content .locations .waschsalons .partner-section .icon {
  padding: 3px 0 0 14px;
  width: 100%;
  height: 32px;
}
.page .content .locations .waschsalons .meinwaschsalon-section a,
.page .content .locations .waschsalons .partner-section a {
  font-family: 'FreightSans Semibold', Helvetica;
  color: #737373;
  cursor: pointer;
}
.page .content .locations .waschsalons .partner-section {
  line-height: 37px;
}
.page .content .locations .waschsalons .partner-section .icon {
  padding: 0;
  background: none;
}
.page .content .locations .waschsalons .partner-section .icon::before {
  background: url('../Icons/partnerKM.png');
  width: 31px;
  height: 40px;
  margin-right: 0;
  display: inline-block;
  vertical-align: bottom;
  content: " ";
}
.page .content .locations .inputRadio .control {
  display: block;
  position: relative;
  padding-left: 25px;
  padding-top: 1px;
  cursor: pointer;
  float: left;
  margin-left: 15px;
  margin-bottom: 15px;
  color: #737373;
}
@media (min-width: 767px) AND (max-width: 1230px) {
  .page .content .locations .inputRadio .control {
    width: 100%;
    margin-left: 0;
    margin-bottom: 5px;
  }
}
.page .content .locations .inputRadio .control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.page .content .locations .inputRadio .control_indicator {
  position: absolute;
  top: 5px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #FFFFFF;
  border: 1px solid #000000;
}
.page .content .locations .inputRadio .control-radio .control_indicator {
  border-radius: 50%;
}
.page .content .locations .inputRadio .control:hover input ~ .control_indicator,
.page .content .locations .inputRadio .control input:focus ~ .control_indicator {
  background: #EEEEEE;
}
.page .content .locations .inputRadio .control input:checked ~ .control_indicator {
  background: #000000;
}
.page .content .locations .inputRadio .control:hover input:not([disabled]):checked ~ .control_indicator,
.page .content .locations .inputRadio .control input:checked:focus ~ .control_indicator {
  background: #eeeeee;
}
.page .content .locations .inputRadio .control input:disabled ~ .control_indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.page .content .locations .inputRadio .control_indicator:after {
  box-sizing: unset;
  content: '';
  position: absolute;
  display: none;
}
.page .content .locations .inputRadio .control input:checked ~ .control_indicator:after {
  display: block;
}
.page .content .locations .inputRadio .control-radio .control_indicator:after {
  left: 6px;
  top: 6px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #ffffff;
}
.page .content .locations .inputRadio .control-radio input:disabled ~ .control_indicator:after {
  background: #7b7b7b;
}
.page .content .locations .wssearchkontakt {
  clear: both;
  width: 100%;
  padding: 30px 0 0 0;
}
.page .content .locations .wssearchkontakt #teamCarousel {
  height: 370px;
}
.meinwaschsalon-section .btn {
  display: inline-block;
  text-decoration: none;
  transition: all 0.275s;
  background-color: #131313;
  color: #FFFFFF !important;
  border: 1px solid #131313;
  padding: 0.5rem;
  border-radius: 3px;
}
.wslist .waschsalon {
  display: none;
}
/**
*
* Header Picture
* * Infocard
*
*/
.page .content .infocard {
  display: none;
  position: absolute;
  width: 600px;
  height: 273px;
  padding: 10px;
  background: #FFFFFF;
  z-index: 150000;
}
.page .content .infocard .closebox {
  display: block;
  position: absolute;
  background: transparent url('../Icons/sprites.png') no-repeat -75px -5339px;
  width: 20px;
  height: 20px;
  right: 10px;
  top: 10px;
}
.page .content .infocard .image {
  float: left;
  width: 70%;
}
@media (min-width: 767px) and (max-width: 991px) {
  .page .content .infocard .image img {
    width: 380px;
  }
}
.page .content .infocard .text {
  float: left;
  width: 30%;
  padding: 33px 0 0 0;
  height: 253px;
  overflow: hidden;
  color: #737373;
}
.page .content .infocard .text h1,
.page .content .infocard .text h2,
.page .content .infocard .text h3,
.page .content .infocard .text h4,
.page .content .infocard .text h5 {
  font-size: 20px;
  font-family: 'FreightSans Semibold', Helvetica;
}
.page .content .infocard.icon {
  display: block;
  position: absolute;
  background: transparent url('../Icons/infoicon.png') no-repeat;
  height: 29px;
  width: 29px;
  z-index: 250;
}
@media (max-width: 767px) {
  .page .content .infocard.icon {
    display: none;
  }
}
.page .content .infocard.box {
  -webkit-box-shadow: 1px 1px 10px 0px #737373;
  -moz-box-shadow: 1px 1px 10px 0px #737373;
  box-shadow: 1px 1px 10px 0px #737373;
}
/**
*
* Waschsalon Info
* * News / Nachrichten / Neugikiten
* * Informationen der Salons, Bild links, Text rechts
* * mit Social Media Icons und A-Tag Button
*
*/
.page .content .news-list-view {
  max-width: 1430px;
  padding: 0 15px;
  margin: 0 auto;
}
.page .content .news-list-view .article {
  margin: 0 auto 40px auto;
}
.page .content .news-list-view .article:last-of-type {
  margin: 0 auto;
  border-bottom: 0;
}
.page .content .news-list-view hr {
  clear: both;
  margin: 0 0 40px 0;
  border: 0;
  border-top: 1px solid #C4C4C4;
}
.page .content .news-list-view hr:last-of-type {
  display: none;
}
.page .content .news-detail-view {
  max-width: 1430px;
  padding: 40px 15px;
  margin: 0 auto;
}
.page .content .waschsaloninfo {
  clear: both;
  position: relative;
  min-height: 1px;
  padding: 0;
}
.page .content .waschsaloninfo:nth-child(1) {
  padding-top: 5px;
}
@media (max-width: 767px) {
  .page .content .waschsaloninfo {
    max-height: inherit !important;
  }
}
.page .content .waschsaloninfo .image {
  position: relative;
  width: 28%;
  height: 275px;
  float: left;
}
@media (max-width: 767px) {
  .page .content .waschsaloninfo .image {
    width: 100%;
    padding-right: 0;
    margin: 0 0 10px 0;
  }
}
.page .content .waschsaloninfo .image img {
  max-width: 100%;
  height: auto;
  margin: 0 auto 30px auto;
  display: block;
}
.page .content .waschsaloninfo .image .video {
  position: absolute;
  background: url('../Icons/sprites.png') no-repeat -50px -2931px;
  width: 52px;
  height: 52px;
  left: 44%;
  top: 43%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.page .content .waschsaloninfo .textinfos {
  position: relative;
  width: 72%;
  padding: 13px 0 30px 45px;
  float: left;
}
@media (max-width: 767px) {
  .page .content .waschsaloninfo .textinfos {
    min-height: inherit !important;
    padding: 13px 0 30px 0;
  }
}
@media (max-width: 767px) {
  .page .content .waschsaloninfo .textinfos {
    width: 100%;
  }
}
.page .content .waschsaloninfo .textinfos h1,
.page .content .waschsaloninfo .textinfos h2,
.page .content .waschsaloninfo .textinfos h3,
.page .content .waschsaloninfo .textinfos h4,
.page .content .waschsaloninfo .textinfos h5 {
  margin: -8px 0 23px 0;
}
.page .content .waschsaloninfo .textinfos .text {
  min-height: 95px;
  width: 100% !important;
  line-height: 30px;
}
.page .content .waschsaloninfo .textinfos .infos {
  width: 100%;
  padding: 30px 0 0 0;
}
.page .content .waschsaloninfo .textinfos .infos .socialMedia {
  width: 25%;
  float: left;
}
@media (max-width: 767px) {
  .page .content .waschsaloninfo .textinfos .infos .socialMedia {
    width: 100%;
    float: none;
    overflow: hidden;
  }
}
@media (min-width: 767px) and (max-width: 885px) {
  .page .content .waschsaloninfo .textinfos .infos .socialMedia {
    width: 30%;
  }
}
.page .content .waschsaloninfo .textinfos .infos .socialMedia .socialMedia-Facebook,
.page .content .waschsaloninfo .textinfos .infos .socialMedia .socialMedia-Email {
  float: left;
  margin: 0 30px 0 0 !important;
}
.page .content .waschsaloninfo .textinfos .infos .socialMedia .socialMedia-Facebook {
  width: 38px;
  height: 38px;
}
.page .content .waschsaloninfo .textinfos .infos .socialMedia .socialMedia-Facebook:before {
  font-family: "ws-icons";
  content: "\e90d";
}
.page .content .waschsaloninfo .textinfos .infos .socialMedia .socialMedia-Email {
  width: 38px;
  height: 38px;
}
.page .content .waschsaloninfo .textinfos .infos .socialMedia .socialMedia-Email:before {
  font-family: "ws-icons";
  content: "\e923";
  font-size: 0.9rem;
}
.page .content .waschsaloninfo .textinfos .infos .link {
  width: 75%;
  float: right;
}
@media (max-width: 767px) {
  .page .content .waschsaloninfo .textinfos .infos .link {
    width: 100%;
    float: none;
    margin: 30px 0 0 0;
  }
}
@media (min-width: 767px) and (max-width: 885px) {
  .page .content .waschsaloninfo .textinfos .infos .link {
    width: 70%;
  }
}
.page .content .waschsaloninfo .textinfos .infos .link a {
  margin: -8px 10px 10px 0;
  float: right;
  width: 189px;
}
@media (min-width: 767px) and (max-width: 885px) {
  .page .content .waschsaloninfo .textinfos .infos .link a {
    float: none;
    width: 100%;
  }
}
.page .content .waschsaloninfo .textinfos .infos .link a:first-of-type {
  margin: -8px 0 10px 0;
}
@media (max-width: 767px) {
  .page .content .waschsaloninfo .textinfos .infos .link a {
    width: 100%;
    margin: 10px 0 !important;
  }
}
.page .content .waschsaloninfo hr {
  clear: both;
  border-top: 1px solid #C4C4C4;
  border-bottom: 0;
}
.page .content .waschsaloninfo #newsCarousel,
.page .content .waschsaloninfo #newsCarousel0,
.page .content .waschsaloninfo #newsCarousel1,
.page .content .waschsaloninfo #newsCarousel2,
.page .content .waschsaloninfo #newsCarousel3,
.page .content .waschsaloninfo #newsCarousel4,
.page .content .waschsaloninfo #newsCarousel5,
.page .content .waschsaloninfo #newsCarousel6,
.page .content .waschsaloninfo #newsCarousel7,
.page .content .waschsaloninfo #newsCarousel8,
.page .content .waschsaloninfo #newsCarousel9,
.page .content .waschsaloninfo #newsCarousel10 {
  height: 270px;
}
.page .content .waschsaloninfo #newsCarousel.diashow .pagination.carousel-indicators,
.page .content .waschsaloninfo #newsCarousel0.diashow .pagination.carousel-indicators,
.page .content .waschsaloninfo #newsCarousel1.diashow .pagination.carousel-indicators,
.page .content .waschsaloninfo #newsCarousel2.diashow .pagination.carousel-indicators,
.page .content .waschsaloninfo #newsCarousel3.diashow .pagination.carousel-indicators,
.page .content .waschsaloninfo #newsCarousel4.diashow .pagination.carousel-indicators,
.page .content .waschsaloninfo #newsCarousel5.diashow .pagination.carousel-indicators,
.page .content .waschsaloninfo #newsCarousel6.diashow .pagination.carousel-indicators,
.page .content .waschsaloninfo #newsCarousel7.diashow .pagination.carousel-indicators,
.page .content .waschsaloninfo #newsCarousel8.diashow .pagination.carousel-indicators,
.page .content .waschsaloninfo #newsCarousel9.diashow .pagination.carousel-indicators,
.page .content .waschsaloninfo #newsCarousel10.diashow .pagination.carousel-indicators {
  bottom: 43px;
}
.page .content .waschsaloninfo #newsCarousel.diashow .pagination .punkte,
.page .content .waschsaloninfo #newsCarousel0.diashow .pagination .punkte,
.page .content .waschsaloninfo #newsCarousel1.diashow .pagination .punkte,
.page .content .waschsaloninfo #newsCarousel2.diashow .pagination .punkte,
.page .content .waschsaloninfo #newsCarousel3.diashow .pagination .punkte,
.page .content .waschsaloninfo #newsCarousel4.diashow .pagination .punkte,
.page .content .waschsaloninfo #newsCarousel5.diashow .pagination .punkte,
.page .content .waschsaloninfo #newsCarousel6.diashow .pagination .punkte,
.page .content .waschsaloninfo #newsCarousel7.diashow .pagination .punkte,
.page .content .waschsaloninfo #newsCarousel8.diashow .pagination .punkte,
.page .content .waschsaloninfo #newsCarousel9.diashow .pagination .punkte,
.page .content .waschsaloninfo #newsCarousel10.diashow .pagination .punkte {
  margin: 10px 15px 0 0;
}
@media (max-device-width: 1024px) {
  .page .content .waschsaloninfo #newsCarousel.diashow .pagination .punkte,
  .page .content .waschsaloninfo #newsCarousel0.diashow .pagination .punkte,
  .page .content .waschsaloninfo #newsCarousel1.diashow .pagination .punkte,
  .page .content .waschsaloninfo #newsCarousel2.diashow .pagination .punkte,
  .page .content .waschsaloninfo #newsCarousel3.diashow .pagination .punkte,
  .page .content .waschsaloninfo #newsCarousel4.diashow .pagination .punkte,
  .page .content .waschsaloninfo #newsCarousel5.diashow .pagination .punkte,
  .page .content .waschsaloninfo #newsCarousel6.diashow .pagination .punkte,
  .page .content .waschsaloninfo #newsCarousel7.diashow .pagination .punkte,
  .page .content .waschsaloninfo #newsCarousel8.diashow .pagination .punkte,
  .page .content .waschsaloninfo #newsCarousel9.diashow .pagination .punkte,
  .page .content .waschsaloninfo #newsCarousel10.diashow .pagination .punkte {
    margin: 10px 5px 0 0;
  }
}
.page .content .waschsaloninfo #newsCarousel.diashow .carousel-inner,
.page .content .waschsaloninfo #newsCarousel0.diashow .carousel-inner,
.page .content .waschsaloninfo #newsCarousel1.diashow .carousel-inner,
.page .content .waschsaloninfo #newsCarousel2.diashow .carousel-inner,
.page .content .waschsaloninfo #newsCarousel3.diashow .carousel-inner,
.page .content .waschsaloninfo #newsCarousel4.diashow .carousel-inner,
.page .content .waschsaloninfo #newsCarousel5.diashow .carousel-inner,
.page .content .waschsaloninfo #newsCarousel6.diashow .carousel-inner,
.page .content .waschsaloninfo #newsCarousel7.diashow .carousel-inner,
.page .content .waschsaloninfo #newsCarousel8.diashow .carousel-inner,
.page .content .waschsaloninfo #newsCarousel9.diashow .carousel-inner,
.page .content .waschsaloninfo #newsCarousel10.diashow .carousel-inner {
  padding: 0;
  overflow: visible;
  height: auto;
}
@media (max-width: 767px) {
  .page .content .waschsaloninfo #newsCarousel.diashow .carousel-inner,
  .page .content .waschsaloninfo #newsCarousel0.diashow .carousel-inner,
  .page .content .waschsaloninfo #newsCarousel1.diashow .carousel-inner,
  .page .content .waschsaloninfo #newsCarousel2.diashow .carousel-inner,
  .page .content .waschsaloninfo #newsCarousel3.diashow .carousel-inner,
  .page .content .waschsaloninfo #newsCarousel4.diashow .carousel-inner,
  .page .content .waschsaloninfo #newsCarousel5.diashow .carousel-inner,
  .page .content .waschsaloninfo #newsCarousel6.diashow .carousel-inner,
  .page .content .waschsaloninfo #newsCarousel7.diashow .carousel-inner,
  .page .content .waschsaloninfo #newsCarousel8.diashow .carousel-inner,
  .page .content .waschsaloninfo #newsCarousel9.diashow .carousel-inner,
  .page .content .waschsaloninfo #newsCarousel10.diashow .carousel-inner {
    max-width: 400px;
  }
}
.page .content .waschsaloninfo #newsCarousel.diashow .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel0.diashow .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel1.diashow .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel2.diashow .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel3.diashow .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel4.diashow .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel5.diashow .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel6.diashow .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel7.diashow .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel8.diashow .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel9.diashow .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel10.diashow .carousel-inner .item {
  overflow: visible !important;
}
.page .content .waschsaloninfo #newsCarousel.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel0.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel1.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel2.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel3.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel4.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel5.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel6.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel7.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel8.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel9.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel10.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel0.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel1.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel2.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel3.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel4.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel5.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel6.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel7.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel8.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel9.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel10.diashow .carousel-inner .carousel-control.right {
  top: 42%;
}
@media (max-width: 767px) {
  .page .content .waschsaloninfo #newsCarousel.diashow .carousel-inner .carousel-control.left,
  .page .content .waschsaloninfo #newsCarousel0.diashow .carousel-inner .carousel-control.left,
  .page .content .waschsaloninfo #newsCarousel1.diashow .carousel-inner .carousel-control.left,
  .page .content .waschsaloninfo #newsCarousel2.diashow .carousel-inner .carousel-control.left,
  .page .content .waschsaloninfo #newsCarousel3.diashow .carousel-inner .carousel-control.left,
  .page .content .waschsaloninfo #newsCarousel4.diashow .carousel-inner .carousel-control.left,
  .page .content .waschsaloninfo #newsCarousel5.diashow .carousel-inner .carousel-control.left,
  .page .content .waschsaloninfo #newsCarousel6.diashow .carousel-inner .carousel-control.left,
  .page .content .waschsaloninfo #newsCarousel7.diashow .carousel-inner .carousel-control.left,
  .page .content .waschsaloninfo #newsCarousel8.diashow .carousel-inner .carousel-control.left,
  .page .content .waschsaloninfo #newsCarousel9.diashow .carousel-inner .carousel-control.left,
  .page .content .waschsaloninfo #newsCarousel10.diashow .carousel-inner .carousel-control.left,
  .page .content .waschsaloninfo #newsCarousel.diashow .carousel-inner .carousel-control.right,
  .page .content .waschsaloninfo #newsCarousel0.diashow .carousel-inner .carousel-control.right,
  .page .content .waschsaloninfo #newsCarousel1.diashow .carousel-inner .carousel-control.right,
  .page .content .waschsaloninfo #newsCarousel2.diashow .carousel-inner .carousel-control.right,
  .page .content .waschsaloninfo #newsCarousel3.diashow .carousel-inner .carousel-control.right,
  .page .content .waschsaloninfo #newsCarousel4.diashow .carousel-inner .carousel-control.right,
  .page .content .waschsaloninfo #newsCarousel5.diashow .carousel-inner .carousel-control.right,
  .page .content .waschsaloninfo #newsCarousel6.diashow .carousel-inner .carousel-control.right,
  .page .content .waschsaloninfo #newsCarousel7.diashow .carousel-inner .carousel-control.right,
  .page .content .waschsaloninfo #newsCarousel8.diashow .carousel-inner .carousel-control.right,
  .page .content .waschsaloninfo #newsCarousel9.diashow .carousel-inner .carousel-control.right,
  .page .content .waschsaloninfo #newsCarousel10.diashow .carousel-inner .carousel-control.right {
    top: 40%;
  }
}
.page .content .waschsaloninfo #newsCarousel.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel0.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel1.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel2.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel3.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel4.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel5.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel6.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel7.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel8.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel9.diashow .carousel-inner .carousel-control.left,
.page .content .waschsaloninfo #newsCarousel10.diashow .carousel-inner .carousel-control.left {
  width: 32px;
  height: 32px;
  left: 30px;
  right: auto;
}
.page .content .waschsaloninfo #newsCarousel.diashow .carousel-inner .carousel-control.left:hover,
.page .content .waschsaloninfo #newsCarousel0.diashow .carousel-inner .carousel-control.left:hover,
.page .content .waschsaloninfo #newsCarousel1.diashow .carousel-inner .carousel-control.left:hover,
.page .content .waschsaloninfo #newsCarousel2.diashow .carousel-inner .carousel-control.left:hover,
.page .content .waschsaloninfo #newsCarousel3.diashow .carousel-inner .carousel-control.left:hover,
.page .content .waschsaloninfo #newsCarousel4.diashow .carousel-inner .carousel-control.left:hover,
.page .content .waschsaloninfo #newsCarousel5.diashow .carousel-inner .carousel-control.left:hover,
.page .content .waschsaloninfo #newsCarousel6.diashow .carousel-inner .carousel-control.left:hover,
.page .content .waschsaloninfo #newsCarousel7.diashow .carousel-inner .carousel-control.left:hover,
.page .content .waschsaloninfo #newsCarousel8.diashow .carousel-inner .carousel-control.left:hover,
.page .content .waschsaloninfo #newsCarousel9.diashow .carousel-inner .carousel-control.left:hover,
.page .content .waschsaloninfo #newsCarousel10.diashow .carousel-inner .carousel-control.left:hover {
  width: 32px;
  height: 32px;
}
.page .content .waschsaloninfo #newsCarousel.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel0.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel1.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel2.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel3.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel4.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel5.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel6.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel7.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel8.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel9.diashow .carousel-inner .carousel-control.right,
.page .content .waschsaloninfo #newsCarousel10.diashow .carousel-inner .carousel-control.right {
  width: 32px;
  height: 32px;
  left: auto;
  right: 30px;
}
.page .content .waschsaloninfo #newsCarousel.diashow .carousel-inner .carousel-control.right:hover,
.page .content .waschsaloninfo #newsCarousel0.diashow .carousel-inner .carousel-control.right:hover,
.page .content .waschsaloninfo #newsCarousel1.diashow .carousel-inner .carousel-control.right:hover,
.page .content .waschsaloninfo #newsCarousel2.diashow .carousel-inner .carousel-control.right:hover,
.page .content .waschsaloninfo #newsCarousel3.diashow .carousel-inner .carousel-control.right:hover,
.page .content .waschsaloninfo #newsCarousel4.diashow .carousel-inner .carousel-control.right:hover,
.page .content .waschsaloninfo #newsCarousel5.diashow .carousel-inner .carousel-control.right:hover,
.page .content .waschsaloninfo #newsCarousel6.diashow .carousel-inner .carousel-control.right:hover,
.page .content .waschsaloninfo #newsCarousel7.diashow .carousel-inner .carousel-control.right:hover,
.page .content .waschsaloninfo #newsCarousel8.diashow .carousel-inner .carousel-control.right:hover,
.page .content .waschsaloninfo #newsCarousel9.diashow .carousel-inner .carousel-control.right:hover,
.page .content .waschsaloninfo #newsCarousel10.diashow .carousel-inner .carousel-control.right:hover {
  width: 32px;
  height: 32px;
}
.page .content .waschsaloninfo #newsCarousel.diashow .carousel-fade .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel0.diashow .carousel-fade .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel1.diashow .carousel-fade .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel2.diashow .carousel-fade .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel3.diashow .carousel-fade .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel4.diashow .carousel-fade .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel5.diashow .carousel-fade .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel6.diashow .carousel-fade .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel7.diashow .carousel-fade .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel8.diashow .carousel-fade .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel9.diashow .carousel-fade .carousel-inner .item,
.page .content .waschsaloninfo #newsCarousel10.diashow .carousel-fade .carousel-inner .item {
  overflow: visible;
}
/**
*
* Pagination
*
*/
.page .f3-widget-paginator {
  max-width: 1400px;
  text-align: center;
  margin: 0 auto;
  padding: 0 0 60px 0;
}
.page .f3-widget-paginator > li {
  display: inline-block;
  font-family: 'FreightSans Book', Helvetica;
  font-size: 20px;
  line-height: 25px;
  font-weight: normal;
  border: 1px solid #131313;
  border-radius: 100%;
  width: 35px;
  height: 35px;
}
.page .f3-widget-paginator > li:hover {
  border: none;
  width: 35px;
  height: 35px;
}
.page .f3-widget-paginator > li:hover > a {
  color: #FFFFFF;
  border: none;
  background: #131313;
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 100%;
}
.page .f3-widget-paginator > li > a,
.page .f3-widget-paginator > li.current {
  position: relative;
}
.page .f3-widget-paginator > li.current {
  color: #FFFFFF;
  background: #131313;
  border: none;
  width: 35px;
  height: 35px;
}
.page .f3-widget-paginator > li.current,
.page .f3-widget-paginator > li > a:hover,
.page .f3-widget-paginator > li > a:focus {
  font-family: 'FreightSans Book', Helvetica;
  font-size: 20px;
  line-height: 25px;
  font-weight: normal;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  display: inline-block;
}
.page .f3-widget-paginator > li:first-child > a,
.page .f3-widget-paginator > li.current:first-child {
  margin-left: 0;
}
/**
*
* Header Picture
*
*/
body.kontaktseite .page .content .headpicture,
body.inhaltsseiteohneslider .page .content .headpicture {
  display: none !important;
}
.page .content .headpicture {
  min-height: 100vh;
  position: relative;
}
.page .content .headpicture .dvyoutube__embed {
  width: 100%;
  height: 100%;
}
.page .content .headpicture img {
  max-width: 100%;
  height: auto;
}
.page .content .slide {
  height: auto;
  position: relative;
  margin: 0 auto;
}
.page .content .hppagedown {
  font-size: 2.2rem;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: -9999;
  bottom: 5px;
  right: 95px;
  opacity: 0.8;
  position: absolute;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.page .content .hppagedown:before {
  font-family: "ws-icons";
  content: "\e313";
}
/**
*
* Header Picture - Diashow
*
*/
#headerCarousel.diashow {
  max-width: initial;
  max-width: 2560px;
  min-height: 100px;
  background: url('../Icons/loading.gif') center center no-repeat;
}
#headerCarousel.diashow img {
  max-width: 100%;
  height: auto;
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
#headerCarousel .item {
  padding: 0;
}
#headerCarousel .carousel-control {
  top: 50%;
}
#headerCarousel .carousel-inner,
#headerCarousel.carousel {
  padding: 0;
}
.page .overlappingwait {
  min-height: 200px;
  background: url('../Icons/loading.gif') center center no-repeat;
}
.page .overlappingimages {
  margin: 0 auto 60px auto !important;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .page .overlappingimages {
    max-height: 880px;
  }
}
@media (max-width: 767px) {
  .page .overlappingimages {
    height: 455px !important;
    margin: 0 auto 20px auto !important;
    overflow: visible;
  }
}
.page .overlappingimages .headline .headline-first,
.page .overlappingimages .headline .headline-second {
  z-index: 150;
}
@media (max-width: 767px) {
  .page .overlappingimages .headline .headline-first,
  .page .overlappingimages .headline .headline-second {
    position: inherit;
    font-size: 30px;
    line-height: 35px;
  }
}
.page .overlappingimages .images {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .page .overlappingimages .images {
    position: static;
    margin: 0 0 40px 0 !important;
  }
}
.page .overlappingimages .images img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .page .overlappingimages .images img {
    position: static;
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 430px) {
  .page .overlappingimages .images .innerImages {
    text-align: center;
    overflow: visible;
    width: 100%;
    height: 350px;
  }
}
@media (min-width: 430px) and (max-width: 767px) {
  .page .overlappingimages .images .innerImages {
    text-align: center;
    overflow: visible;
    width: 400px;
    height: 350px;
  }
}
.page .overlappingimages .images .innerImages .item {
  position: absolute;
}
@media (max-width: 767px) {
  .page .overlappingimages .images .innerImages .item {
    width: 100% !important;
    top: inherit !important;
    left: inherit !important;
    z-index: 0 !important;
  }
}
.page .overlappingimages .carousel-control {
  display: none;
}
@media (max-width: 767px) {
  .page .overlappingimages .carousel-control {
    top: 45%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
  }
}
.page .overlappingimages .carousel-control.right {
  width: 32px;
  height: 32px;
}
.page .overlappingimages .carousel-control.left {
  width: 32px;
  height: 32px;
}
.page .overlappingimages #overlappingCarousel {
  margin: 0 auto 40px auto;
}
@media (max-width: 767px) {
  .page .overlappingimages #overlappingCarousel {
    min-height: 400px;
    margin: 0 auto;
    padding: 8px 0;
    overflow: visible;
    position: relative;
  }
}
.text-strong {
  font-family: 'FreightSans Semibold', Helvetica;
}
.text-black {
  color: #000;
}
.text-white {
  color: #FFF;
}
/**
*
* Contact Person
*
*/
.page .content .marginalColumn .teamCarouselInner {
  overflow: visible !important;
}
@media (min-width: 767px) {
  .page .content .marginalColumn #teamCarousel {
    overflow: visible;
  }
  .page .content .marginalColumn #teamCarousel .teamCarouselInner {
    overflow: visible;
  }
  .page .content .marginalColumn #teamCarousel .teamCarouselInner .contactperson {
    width: 100% !important;
    max-width: 240px;
  }
  .page .content .marginalColumn #teamCarousel .teamCarouselInner .contactperson .information {
    bottom: 16px !important;
  }
  .page .content .marginalColumn #teamCarousel .teamCarouselInner .contactperson .location {
    bottom: 123px !important;
  }
}
.page .content .carousel-inner .contactperson {
  width: 260px;
}
.page .content .contactperson {
  background: url('../Icons/loading.gif') center center no-repeat;
  display: inline-block;
  position: relative;
  width: 290px;
  height: auto;
  margin: 40px 20px 40px auto;
}
@media (max-width: 767px) {
  .page .content .contactperson {
    margin: 40px auto;
    width: 295px;
    margin: 0 auto 20px auto;
  }
}
@media (max-device-width: 767px) {
  .page .content .contactperson {
    width: 330px;
    height: 330px;
    margin: 0 auto 20px auto;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .page .content .contactperson {
    margin: 40px 30px 40px auto;
  }
}
.page .content .contactperson img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .page .content .contactperson:nth-child(2),
  .page .content .contactperson:nth-child(3),
  .page .content .contactperson:nth-child(4),
  .page .content .contactperson:nth-child(5),
  .page .content .contactperson:nth-child(6) {
    display: none;
  }
}
@media (max-width: 990px) {
  .page .content .contactperson:nth-child(2) {
    margin: 40px auto;
  }
}
@media (max-width: 1135px) {
  .page .content .contactperson:nth-child(3) {
    margin: 40px auto;
  }
}
@media (max-width: 991px) {
  .page .content .contactperson:nth-child(3) {
    margin: 40px auto 40px auto;
  }
}
@media (max-width: 1414px) {
  .page .content .contactperson:nth-child(4) {
    margin: 40px auto;
  }
}
.page .content .contactperson:nth-child(5) {
  margin: 40px auto 40px auto;
}
.page .content .contactperson .informations {
  display: none;
  width: 100%;
  overflow: hidden;
  position: absolute;
  bottom: -14px;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) {
  .page .content .contactperson .informations {
    bottom: -21px !important;
  }
}
.page .content .contactperson .informations .location.single {
  margin: 0;
  padding: 15px 5px 30px 5px !important;
}
.page .content .contactperson .bold {
  font-family: 'FreightSans Semibold', Helvetica;
  color: #131313;
}
.page .content .contactperson .location,
.page .content .contactperson .information,
.page .content .contactperson .terminvereinbarung {
  text-align: left;
  width: 100%;
  padding: 10px 10px 10px 20px;
  background: #FFFFFF;
  opacity: 0.95;
}
@media (max-width: 767px) {
  .page .content .contactperson .terminvereinbarung {
    padding: 10px 10px 10px 20px;
    overflow: hidden;
    line-height: 30px;
  }
}
.page .content .contactperson .informationshort .information {
  position: absolute;
}
.page .content .contactperson .location {
  display: none;
  bottom: 140px;
  height: 70px;
  border-top: 0;
}
.page .content .contactperson .location.single {
  bottom: 60px;
  color: #737373;
}
.page .content .contactperson .information {
  overflow: hidden;
  bottom: 9px;
  min-height: 105px;
  height: auto;
}
.page .content .contactperson .information.single {
  height: auto !important;
  bottom: 130px;
  z-index: 999999;
}
.page .content .contactperson .information .person {
  font-family: 'FreightSans Semibold', Helvetica;
  overflow: hidden;
  height: auto;
}
.page .content .contactperson .information .position {
  color: #737373;
}
.page .content .contactperson .telefon {
  overflow: hidden;
  height: 32px;
  margin: 0 0 0 15px;
}
.page .content .contactperson .terminvereinbarung {
  display: none;
  height: 50px;
  bottom: -20px;
}
@media (max-width: 767px) {
  .page .content .contactperson .terminvereinbarung {
    height: 51px;
    bottom: -21px;
  }
}
@media (max-device-width: 1024px) {
  .page .content .contactperson .terminvereinbarung {
    height: 55px;
    bottom: -25px;
  }
}
.page .content .contactperson .terminvereinbarung h1,
.page .content .contactperson .terminvereinbarung h2,
.page .content .contactperson .terminvereinbarung h3,
.page .content .contactperson .terminvereinbarung h4,
.page .content .contactperson .terminvereinbarung h5 {
  color: #737373;
}
.page .content .contactperson .location h1,
.page .content .contactperson .information h1,
.page .content .contactperson .location h2,
.page .content .contactperson .information h2,
.page .content .contactperson .location h3,
.page .content .contactperson .information h3,
.page .content .contactperson .location h4,
.page .content .contactperson .information h4,
.page .content .contactperson .location h5,
.page .content .contactperson .information h5 {
  font-family: 'FreightSans Semibold', Helvetica;
  font-size: 20px;
  line-height: 30px;
}
.page .content .carousel.singlelocation {
  overflow: visible !important;
  height: 380px !important;
}
.page .content #teamCarousel,
.page .content #teamCarousel0,
.page .content #teamCarousel1,
.page .content #teamCarousel2,
.page .content #teamCarousel3,
.page .content #teamCarousel4,
.page .content #teamCarousel5 {
  clear: both;
  height: 460px;
  max-width: 1400px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page .content #teamCarousel,
  .page .content #teamCarousel0,
  .page .content #teamCarousel1,
  .page .content #teamCarousel2,
  .page .content #teamCarousel3,
  .page .content #teamCarousel4,
  .page .content #teamCarousel5 {
    max-width: 384px;
    max-height: 370px;
    margin: 0 0 30px 0;
    overflow: hidden !important;
  }
}
@media (max-width: 991px) {
  .page .content #teamCarousel,
  .page .content #teamCarousel0,
  .page .content #teamCarousel1,
  .page .content #teamCarousel2,
  .page .content #teamCarousel3,
  .page .content #teamCarousel4,
  .page .content #teamCarousel5 {
    height: 310px;
  }
}
@media (max-device-width: 767px) {
  .page .content #teamCarousel,
  .page .content #teamCarousel0,
  .page .content #teamCarousel1,
  .page .content #teamCarousel2,
  .page .content #teamCarousel3,
  .page .content #teamCarousel4,
  .page .content #teamCarousel5 {
    height: 310px;
  }
}
@media (min-width: 767px) AND (max-width: 991px) {
  .page .content #teamCarousel,
  .page .content #teamCarousel0,
  .page .content #teamCarousel1,
  .page .content #teamCarousel2,
  .page .content #teamCarousel3,
  .page .content #teamCarousel4,
  .page .content #teamCarousel5 {
    overflow: hidden !important;
  }
}
@media (min-width: 767px) and (max-width: 990px) {
  .page .content #teamCarousel,
  .page .content #teamCarousel0,
  .page .content #teamCarousel1,
  .page .content #teamCarousel2,
  .page .content #teamCarousel3,
  .page .content #teamCarousel4,
  .page .content #teamCarousel5 {
    max-width: 605px;
    height: 450px;
  }
}
@media (min-width: 990px) and (max-width: 1135px) {
  .page .content #teamCarousel,
  .page .content #teamCarousel0,
  .page .content #teamCarousel1,
  .page .content #teamCarousel2,
  .page .content #teamCarousel3,
  .page .content #teamCarousel4,
  .page .content #teamCarousel5 {
    max-width: 855px;
  }
}
@media (min-width: 1135px) and (max-width: 1150px) {
  .page .content #teamCarousel,
  .page .content #teamCarousel0,
  .page .content #teamCarousel1,
  .page .content #teamCarousel2,
  .page .content #teamCarousel3,
  .page .content #teamCarousel4,
  .page .content #teamCarousel5 {
    max-width: 1125px;
  }
}
@media (min-width: 1150px) and (max-width: 1414px) {
  .page .content #teamCarousel,
  .page .content #teamCarousel0,
  .page .content #teamCarousel1,
  .page .content #teamCarousel2,
  .page .content #teamCarousel3,
  .page .content #teamCarousel4,
  .page .content #teamCarousel5 {
    max-width: 1125px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .page .content #teamCarousel,
  .page .content #teamCarousel0,
  .page .content #teamCarousel1,
  .page .content #teamCarousel2,
  .page .content #teamCarousel3,
  .page .content #teamCarousel4,
  .page .content #teamCarousel5 {
    max-width: 100%;
  }
}
@media only screen and (max-device-width: 767px) {
  .page .content #teamCarousel,
  .page .content #teamCarousel0,
  .page .content #teamCarousel1,
  .page .content #teamCarousel2,
  .page .content #teamCarousel3,
  .page .content #teamCarousel4,
  .page .content #teamCarousel5 {
    height: 350px;
  }
}
.page .content #teamCarousel .carousel-inner,
.page .content #teamCarousel0 .carousel-inner,
.page .content #teamCarousel1 .carousel-inner,
.page .content #teamCarousel2 .carousel-inner,
.page .content #teamCarousel3 .carousel-inner,
.page .content #teamCarousel4 .carousel-inner,
.page .content #teamCarousel5 .carousel-inner,
.page .content #teamCarousel .teamCarouselInner,
.page .content #teamCarousel0 .teamCarouselInner,
.page .content #teamCarousel1 .teamCarouselInner,
.page .content #teamCarousel2 .teamCarouselInner,
.page .content #teamCarousel3 .teamCarouselInner,
.page .content #teamCarousel4 .teamCarouselInner,
.page .content #teamCarousel5 .teamCarouselInner {
  height: 410px;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}
@media (max-device-width: 767px) {
  .page .content #teamCarousel .carousel-inner,
  .page .content #teamCarousel0 .carousel-inner,
  .page .content #teamCarousel1 .carousel-inner,
  .page .content #teamCarousel2 .carousel-inner,
  .page .content #teamCarousel3 .carousel-inner,
  .page .content #teamCarousel4 .carousel-inner,
  .page .content #teamCarousel5 .carousel-inner,
  .page .content #teamCarousel .teamCarouselInner,
  .page .content #teamCarousel0 .teamCarouselInner,
  .page .content #teamCarousel1 .teamCarouselInner,
  .page .content #teamCarousel2 .teamCarouselInner,
  .page .content #teamCarousel3 .teamCarouselInner,
  .page .content #teamCarousel4 .teamCarouselInner,
  .page .content #teamCarousel5 .teamCarouselInner {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .page .content #teamCarousel .carousel-inner,
  .page .content #teamCarousel0 .carousel-inner,
  .page .content #teamCarousel1 .carousel-inner,
  .page .content #teamCarousel2 .carousel-inner,
  .page .content #teamCarousel3 .carousel-inner,
  .page .content #teamCarousel4 .carousel-inner,
  .page .content #teamCarousel5 .carousel-inner,
  .page .content #teamCarousel .teamCarouselInner,
  .page .content #teamCarousel0 .teamCarouselInner,
  .page .content #teamCarousel1 .teamCarouselInner,
  .page .content #teamCarousel2 .teamCarouselInner,
  .page .content #teamCarousel3 .teamCarouselInner,
  .page .content #teamCarousel4 .teamCarouselInner,
  .page .content #teamCarousel5 .teamCarouselInner {
    overflow: hidden;
    max-height: 315px;
  }
}
@media (min-width: 767px) and (max-width: 1140px) {
  .page .content #teamCarousel .carousel-inner,
  .page .content #teamCarousel0 .carousel-inner,
  .page .content #teamCarousel1 .carousel-inner,
  .page .content #teamCarousel2 .carousel-inner,
  .page .content #teamCarousel3 .carousel-inner,
  .page .content #teamCarousel4 .carousel-inner,
  .page .content #teamCarousel5 .carousel-inner,
  .page .content #teamCarousel .teamCarouselInner,
  .page .content #teamCarousel0 .teamCarouselInner,
  .page .content #teamCarousel1 .teamCarouselInner,
  .page .content #teamCarousel2 .teamCarouselInner,
  .page .content #teamCarousel3 .teamCarouselInner,
  .page .content #teamCarousel4 .teamCarouselInner,
  .page .content #teamCarousel5 .teamCarouselInner {
    overflow: hidden;
  }
}
@media (min-width: 1140px) and (max-width: 1200px) {
  .page .content #teamCarousel .carousel-inner,
  .page .content #teamCarousel0 .carousel-inner,
  .page .content #teamCarousel1 .carousel-inner,
  .page .content #teamCarousel2 .carousel-inner,
  .page .content #teamCarousel3 .carousel-inner,
  .page .content #teamCarousel4 .carousel-inner,
  .page .content #teamCarousel5 .carousel-inner,
  .page .content #teamCarousel .teamCarouselInner,
  .page .content #teamCarousel0 .teamCarouselInner,
  .page .content #teamCarousel1 .teamCarouselInner,
  .page .content #teamCarousel2 .teamCarouselInner,
  .page .content #teamCarousel3 .teamCarouselInner,
  .page .content #teamCarousel4 .teamCarouselInner,
  .page .content #teamCarousel5 .teamCarouselInner {
    overflow: hidden;
    max-height: 420px;
  }
}
@media only screen and (max-device-width: 767px) {
  .page .content #teamCarousel .carousel-inner,
  .page .content #teamCarousel0 .carousel-inner,
  .page .content #teamCarousel1 .carousel-inner,
  .page .content #teamCarousel2 .carousel-inner,
  .page .content #teamCarousel3 .carousel-inner,
  .page .content #teamCarousel4 .carousel-inner,
  .page .content #teamCarousel5 .carousel-inner,
  .page .content #teamCarousel .teamCarouselInner,
  .page .content #teamCarousel0 .teamCarouselInner,
  .page .content #teamCarousel1 .teamCarouselInner,
  .page .content #teamCarousel2 .teamCarouselInner,
  .page .content #teamCarousel3 .teamCarouselInner,
  .page .content #teamCarousel4 .teamCarouselInner,
  .page .content #teamCarousel5 .teamCarouselInner {
    overflow: hidden;
    max-height: 380px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .page .content #teamCarousel .carousel-inner,
  .page .content #teamCarousel0 .carousel-inner,
  .page .content #teamCarousel1 .carousel-inner,
  .page .content #teamCarousel2 .carousel-inner,
  .page .content #teamCarousel3 .carousel-inner,
  .page .content #teamCarousel4 .carousel-inner,
  .page .content #teamCarousel5 .carousel-inner,
  .page .content #teamCarousel .teamCarouselInner,
  .page .content #teamCarousel0 .teamCarouselInner,
  .page .content #teamCarousel1 .teamCarouselInner,
  .page .content #teamCarousel2 .teamCarouselInner,
  .page .content #teamCarousel3 .teamCarouselInner,
  .page .content #teamCarousel4 .teamCarouselInner,
  .page .content #teamCarousel5 .teamCarouselInner {
    overflow: hidden;
    max-height: 280px;
  }
}
.page .content #teamCarousel .carousel-inner .active .left,
.page .content #teamCarousel0 .carousel-inner .active .left,
.page .content #teamCarousel1 .carousel-inner .active .left,
.page .content #teamCarousel2 .carousel-inner .active .left,
.page .content #teamCarousel3 .carousel-inner .active .left,
.page .content #teamCarousel4 .carousel-inner .active .left,
.page .content #teamCarousel5 .carousel-inner .active .left,
.page .content #teamCarousel .teamCarouselInner .active .left,
.page .content #teamCarousel0 .teamCarouselInner .active .left,
.page .content #teamCarousel1 .teamCarouselInner .active .left,
.page .content #teamCarousel2 .teamCarouselInner .active .left,
.page .content #teamCarousel3 .teamCarouselInner .active .left,
.page .content #teamCarousel4 .teamCarouselInner .active .left,
.page .content #teamCarousel5 .teamCarouselInner .active .left {
  left: -25%;
}
.page .content #teamCarousel .carousel-inner .active .right,
.page .content #teamCarousel0 .carousel-inner .active .right,
.page .content #teamCarousel1 .carousel-inner .active .right,
.page .content #teamCarousel2 .carousel-inner .active .right,
.page .content #teamCarousel3 .carousel-inner .active .right,
.page .content #teamCarousel4 .carousel-inner .active .right,
.page .content #teamCarousel5 .carousel-inner .active .right,
.page .content #teamCarousel .teamCarouselInner .active .right,
.page .content #teamCarousel0 .teamCarouselInner .active .right,
.page .content #teamCarousel1 .teamCarouselInner .active .right,
.page .content #teamCarousel2 .teamCarouselInner .active .right,
.page .content #teamCarousel3 .teamCarouselInner .active .right,
.page .content #teamCarousel4 .teamCarouselInner .active .right,
.page .content #teamCarousel5 .teamCarouselInner .active .right {
  left: 25%;
}
.page .content #teamCarousel .carousel-inner .next,
.page .content #teamCarousel0 .carousel-inner .next,
.page .content #teamCarousel1 .carousel-inner .next,
.page .content #teamCarousel2 .carousel-inner .next,
.page .content #teamCarousel3 .carousel-inner .next,
.page .content #teamCarousel4 .carousel-inner .next,
.page .content #teamCarousel5 .carousel-inner .next,
.page .content #teamCarousel .teamCarouselInner .next,
.page .content #teamCarousel0 .teamCarouselInner .next,
.page .content #teamCarousel1 .teamCarouselInner .next,
.page .content #teamCarousel2 .teamCarouselInner .next,
.page .content #teamCarousel3 .teamCarouselInner .next,
.page .content #teamCarousel4 .teamCarouselInner .next,
.page .content #teamCarousel5 .teamCarouselInner .next {
  left: 25%;
}
.page .content #teamCarousel .carousel-inner .prev,
.page .content #teamCarousel0 .carousel-inner .prev,
.page .content #teamCarousel1 .carousel-inner .prev,
.page .content #teamCarousel2 .carousel-inner .prev,
.page .content #teamCarousel3 .carousel-inner .prev,
.page .content #teamCarousel4 .carousel-inner .prev,
.page .content #teamCarousel5 .carousel-inner .prev,
.page .content #teamCarousel .teamCarouselInner .prev,
.page .content #teamCarousel0 .teamCarouselInner .prev,
.page .content #teamCarousel1 .teamCarouselInner .prev,
.page .content #teamCarousel2 .teamCarouselInner .prev,
.page .content #teamCarousel3 .teamCarouselInner .prev,
.page .content #teamCarousel4 .teamCarouselInner .prev,
.page .content #teamCarousel5 .teamCarouselInner .prev {
  left: -25%;
}
.page .content #teamCarousel .carousel-inner.left,
.page .content #teamCarousel0 .carousel-inner.left,
.page .content #teamCarousel1 .carousel-inner.left,
.page .content #teamCarousel2 .carousel-inner.left,
.page .content #teamCarousel3 .carousel-inner.left,
.page .content #teamCarousel4 .carousel-inner.left,
.page .content #teamCarousel5 .carousel-inner.left,
.page .content #teamCarousel .teamCarouselInner.left,
.page .content #teamCarousel0 .teamCarouselInner.left,
.page .content #teamCarousel1 .teamCarouselInner.left,
.page .content #teamCarousel2 .teamCarouselInner.left,
.page .content #teamCarousel3 .teamCarouselInner.left,
.page .content #teamCarousel4 .teamCarouselInner.left,
.page .content #teamCarousel5 .teamCarouselInner.left,
.page .content #teamCarousel .carousel-inner.right,
.page .content #teamCarousel0 .carousel-inner.right,
.page .content #teamCarousel1 .carousel-inner.right,
.page .content #teamCarousel2 .carousel-inner.right,
.page .content #teamCarousel3 .carousel-inner.right,
.page .content #teamCarousel4 .carousel-inner.right,
.page .content #teamCarousel5 .carousel-inner.right,
.page .content #teamCarousel .teamCarouselInner.right,
.page .content #teamCarousel0 .teamCarouselInner.right,
.page .content #teamCarousel1 .teamCarouselInner.right,
.page .content #teamCarousel2 .teamCarouselInner.right,
.page .content #teamCarousel3 .teamCarouselInner.right,
.page .content #teamCarousel4 .teamCarouselInner.right,
.page .content #teamCarousel5 .teamCarouselInner.right {
  background-image: none;
}
.page .content #teamCarousel .carousel-inner .item,
.page .content #teamCarousel0 .carousel-inner .item,
.page .content #teamCarousel1 .carousel-inner .item,
.page .content #teamCarousel2 .carousel-inner .item,
.page .content #teamCarousel3 .carousel-inner .item,
.page .content #teamCarousel4 .carousel-inner .item,
.page .content #teamCarousel5 .carousel-inner .item,
.page .content #teamCarousel .teamCarouselInner .item,
.page .content #teamCarousel0 .teamCarouselInner .item,
.page .content #teamCarousel1 .teamCarouselInner .item,
.page .content #teamCarousel2 .teamCarouselInner .item,
.page .content #teamCarousel3 .teamCarouselInner .item,
.page .content #teamCarousel4 .teamCarouselInner .item,
.page .content #teamCarousel5 .teamCarouselInner .item {
  text-align: center;
}
.page .content #teamCarousel .carousel-inner .item.singlelocation,
.page .content #teamCarousel0 .carousel-inner .item.singlelocation,
.page .content #teamCarousel1 .carousel-inner .item.singlelocation,
.page .content #teamCarousel2 .carousel-inner .item.singlelocation,
.page .content #teamCarousel3 .carousel-inner .item.singlelocation,
.page .content #teamCarousel4 .carousel-inner .item.singlelocation,
.page .content #teamCarousel5 .carousel-inner .item.singlelocation,
.page .content #teamCarousel .teamCarouselInner .item.singlelocation,
.page .content #teamCarousel0 .teamCarouselInner .item.singlelocation,
.page .content #teamCarousel1 .teamCarouselInner .item.singlelocation,
.page .content #teamCarousel2 .teamCarouselInner .item.singlelocation,
.page .content #teamCarousel3 .teamCarouselInner .item.singlelocation,
.page .content #teamCarousel4 .teamCarouselInner .item.singlelocation,
.page .content #teamCarousel5 .teamCarouselInner .item.singlelocation {
  display: inline-block;
}
@media (max-width: 767px) {
  .page .content #teamCarousel .carousel-inner .item.singlelocation,
  .page .content #teamCarousel0 .carousel-inner .item.singlelocation,
  .page .content #teamCarousel1 .carousel-inner .item.singlelocation,
  .page .content #teamCarousel2 .carousel-inner .item.singlelocation,
  .page .content #teamCarousel3 .carousel-inner .item.singlelocation,
  .page .content #teamCarousel4 .carousel-inner .item.singlelocation,
  .page .content #teamCarousel5 .carousel-inner .item.singlelocation,
  .page .content #teamCarousel .teamCarouselInner .item.singlelocation,
  .page .content #teamCarousel0 .teamCarouselInner .item.singlelocation,
  .page .content #teamCarousel1 .teamCarouselInner .item.singlelocation,
  .page .content #teamCarousel2 .teamCarouselInner .item.singlelocation,
  .page .content #teamCarousel3 .teamCarouselInner .item.singlelocation,
  .page .content #teamCarousel4 .teamCarouselInner .item.singlelocation,
  .page .content #teamCarousel5 .teamCarouselInner .item.singlelocation {
    display: block;
  }
}
.page .content #teamCarousel .carousel-inner .item.singlelocation .contactperson,
.page .content #teamCarousel0 .carousel-inner .item.singlelocation .contactperson,
.page .content #teamCarousel1 .carousel-inner .item.singlelocation .contactperson,
.page .content #teamCarousel2 .carousel-inner .item.singlelocation .contactperson,
.page .content #teamCarousel3 .carousel-inner .item.singlelocation .contactperson,
.page .content #teamCarousel4 .carousel-inner .item.singlelocation .contactperson,
.page .content #teamCarousel5 .carousel-inner .item.singlelocation .contactperson,
.page .content #teamCarousel .teamCarouselInner .item.singlelocation .contactperson,
.page .content #teamCarousel0 .teamCarouselInner .item.singlelocation .contactperson,
.page .content #teamCarousel1 .teamCarouselInner .item.singlelocation .contactperson,
.page .content #teamCarousel2 .teamCarouselInner .item.singlelocation .contactperson,
.page .content #teamCarousel3 .teamCarouselInner .item.singlelocation .contactperson,
.page .content #teamCarousel4 .teamCarouselInner .item.singlelocation .contactperson,
.page .content #teamCarousel5 .teamCarouselInner .item.singlelocation .contactperson {
  margin: 0 20px 20px 5px;
}
@media (max-width: 767px) {
  .page .content #teamCarousel .carousel-inner .item.singlelocation .contactperson,
  .page .content #teamCarousel0 .carousel-inner .item.singlelocation .contactperson,
  .page .content #teamCarousel1 .carousel-inner .item.singlelocation .contactperson,
  .page .content #teamCarousel2 .carousel-inner .item.singlelocation .contactperson,
  .page .content #teamCarousel3 .carousel-inner .item.singlelocation .contactperson,
  .page .content #teamCarousel4 .carousel-inner .item.singlelocation .contactperson,
  .page .content #teamCarousel5 .carousel-inner .item.singlelocation .contactperson,
  .page .content #teamCarousel .teamCarouselInner .item.singlelocation .contactperson,
  .page .content #teamCarousel0 .teamCarouselInner .item.singlelocation .contactperson,
  .page .content #teamCarousel1 .teamCarouselInner .item.singlelocation .contactperson,
  .page .content #teamCarousel2 .teamCarouselInner .item.singlelocation .contactperson,
  .page .content #teamCarousel3 .teamCarouselInner .item.singlelocation .contactperson,
  .page .content #teamCarousel4 .teamCarouselInner .item.singlelocation .contactperson,
  .page .content #teamCarousel5 .teamCarouselInner .item.singlelocation .contactperson {
    margin: 0 auto 20px auto;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .page .content #teamCarousel .carousel-inner .item.singlelocation .contactperson,
  .page .content #teamCarousel0 .carousel-inner .item.singlelocation .contactperson,
  .page .content #teamCarousel1 .carousel-inner .item.singlelocation .contactperson,
  .page .content #teamCarousel2 .carousel-inner .item.singlelocation .contactperson,
  .page .content #teamCarousel3 .carousel-inner .item.singlelocation .contactperson,
  .page .content #teamCarousel4 .carousel-inner .item.singlelocation .contactperson,
  .page .content #teamCarousel5 .carousel-inner .item.singlelocation .contactperson,
  .page .content #teamCarousel .teamCarouselInner .item.singlelocation .contactperson,
  .page .content #teamCarousel0 .teamCarouselInner .item.singlelocation .contactperson,
  .page .content #teamCarousel1 .teamCarouselInner .item.singlelocation .contactperson,
  .page .content #teamCarousel2 .teamCarouselInner .item.singlelocation .contactperson,
  .page .content #teamCarousel3 .teamCarouselInner .item.singlelocation .contactperson,
  .page .content #teamCarousel4 .teamCarouselInner .item.singlelocation .contactperson,
  .page .content #teamCarousel5 .teamCarouselInner .item.singlelocation .contactperson {
    margin: 0 20px 20px 5px;
  }
}
.page .content #teamCarousel .carousel-control.right,
.page .content #teamCarousel0 .carousel-control.right,
.page .content #teamCarousel1 .carousel-control.right,
.page .content #teamCarousel2 .carousel-control.right,
.page .content #teamCarousel3 .carousel-control.right,
.page .content #teamCarousel4 .carousel-control.right,
.page .content #teamCarousel5 .carousel-control.right {
  right: 5px;
}
@media (max-width: 767px) {
  .page .content #teamCarousel .carousel-control.right,
  .page .content #teamCarousel0 .carousel-control.right,
  .page .content #teamCarousel1 .carousel-control.right,
  .page .content #teamCarousel2 .carousel-control.right,
  .page .content #teamCarousel3 .carousel-control.right,
  .page .content #teamCarousel4 .carousel-control.right,
  .page .content #teamCarousel5 .carousel-control.right {
    right: 20px;
  }
}
.page .content #teamCarousel .carousel-indicators,
.page .content #teamCarousel0 .carousel-indicators,
.page .content #teamCarousel1 .carousel-indicators,
.page .content #teamCarousel2 .carousel-indicators,
.page .content #teamCarousel3 .carousel-indicators,
.page .content #teamCarousel4 .carousel-indicators,
.page .content #teamCarousel5 .carousel-indicators {
  bottom: -45px;
}
@media (max-width: 767px) {
  .page .content #teamCarousel .carousel-indicators,
  .page .content #teamCarousel0 .carousel-indicators,
  .page .content #teamCarousel1 .carousel-indicators,
  .page .content #teamCarousel2 .carousel-indicators,
  .page .content #teamCarousel3 .carousel-indicators,
  .page .content #teamCarousel4 .carousel-indicators,
  .page .content #teamCarousel5 .carousel-indicators {
    bottom: -330px;
    overflow: hidden;
  }
}
@media (min-width: 767px) and (max-width: 989px) {
  .page .content #teamCarousel .carousel-indicators,
  .page .content #teamCarousel0 .carousel-indicators,
  .page .content #teamCarousel1 .carousel-indicators,
  .page .content #teamCarousel2 .carousel-indicators,
  .page .content #teamCarousel3 .carousel-indicators,
  .page .content #teamCarousel4 .carousel-indicators,
  .page .content #teamCarousel5 .carousel-indicators {
    bottom: -145px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .page .content #teamCarousel .carousel-indicators,
  .page .content #teamCarousel0 .carousel-indicators,
  .page .content #teamCarousel1 .carousel-indicators,
  .page .content #teamCarousel2 .carousel-indicators,
  .page .content #teamCarousel3 .carousel-indicators,
  .page .content #teamCarousel4 .carousel-indicators,
  .page .content #teamCarousel5 .carousel-indicators {
    bottom: -135px;
  }
}
.page .content #teamCarousel .carousel-indicators .punkte,
.page .content #teamCarousel0 .carousel-indicators .punkte,
.page .content #teamCarousel1 .carousel-indicators .punkte,
.page .content #teamCarousel2 .carousel-indicators .punkte,
.page .content #teamCarousel3 .carousel-indicators .punkte,
.page .content #teamCarousel4 .carousel-indicators .punkte,
.page .content #teamCarousel5 .carousel-indicators .punkte {
  margin: 10px 15px 60px 0;
  background: #FFFFFF url('../Icons/sprites.png') no-repeat -50px -2064px;
  width: 21px;
  height: 21px;
}
@media (max-width: 1415px) {
  .page .content #teamCarousel .carousel-indicators .punkte,
  .page .content #teamCarousel0 .carousel-indicators .punkte,
  .page .content #teamCarousel1 .carousel-indicators .punkte,
  .page .content #teamCarousel2 .carousel-indicators .punkte,
  .page .content #teamCarousel3 .carousel-indicators .punkte,
  .page .content #teamCarousel4 .carousel-indicators .punkte,
  .page .content #teamCarousel5 .carousel-indicators .punkte {
    margin: 10px 0 60px 0;
  }
}
@media (max-width: 767px) {
  .page .content #teamCarousel .carousel-indicators .punkte,
  .page .content #teamCarousel0 .carousel-indicators .punkte,
  .page .content #teamCarousel1 .carousel-indicators .punkte,
  .page .content #teamCarousel2 .carousel-indicators .punkte,
  .page .content #teamCarousel3 .carousel-indicators .punkte,
  .page .content #teamCarousel4 .carousel-indicators .punkte,
  .page .content #teamCarousel5 .carousel-indicators .punkte {
    display: none;
  }
}
.page .content #teamCarousel .carousel-indicators .punkte.active,
.page .content #teamCarousel0 .carousel-indicators .punkte.active,
.page .content #teamCarousel1 .carousel-indicators .punkte.active,
.page .content #teamCarousel2 .carousel-indicators .punkte.active,
.page .content #teamCarousel3 .carousel-indicators .punkte.active,
.page .content #teamCarousel4 .carousel-indicators .punkte.active,
.page .content #teamCarousel5 .carousel-indicators .punkte.active {
  background: #FFFFFF url('../Icons/sprites.png') no-repeat -50px -2104px;
  width: 21px;
  height: 21px;
}
.page .content .fliesstext #teamCarousel {
  overflow: visible;
}
.page .content .fliesstext #teamCarousel .teamCarouselInner {
  overflow: visible;
}
.page .content .fliesstext #teamCarousel .teamCarouselInner .contactperson {
  width: 100% !important;
  max-width: 240px;
}
@media (max-width: 767px) {
  .page .content .fliesstext #teamCarousel .teamCarouselInner .contactperson {
    max-width: 355px;
  }
}
.page .content .fliesstext #teamCarousel .teamCarouselInner .contactperson .information {
  bottom: 16px !important;
}
@media (max-width: 767px) {
  .page .content .fliesstext #teamCarousel .teamCarouselInner .contactperson .information {
    bottom: 14px !important;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) {
  .page .content .fliesstext #teamCarousel .teamCarouselInner .contactperson .information {
    bottom: -1px !important;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: landscape) {
  .page .content .fliesstext #teamCarousel .teamCarouselInner .contactperson .information {
    bottom: -10px !important;
  }
}
.page .content .fliesstext #teamCarousel .teamCarouselInner .contactperson .location {
  bottom: 123px !important;
}
@media (max-width: 767px) {
  .page .content .fliesstext #teamCarousel .teamCarouselInner .contactperson .location {
    bottom: 94px !important;
  }
}
/* Basis */
.ce-iframe-between {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  /* Fullscreen zwischen Header/Footer */
  /* CE-Container + iFrame füllen die Fläche */
}
.ce-iframe-between.is-active {
  position: fixed;
  top: var(--header-h, 0px);
  bottom: var(--footer-h, 0px);
  left: 0;
  right: 0;
  z-index: 1;
}
.ce-iframe-between .ce-iframe {
  position: relative;
  width: 100%;
  height: 100%;
}
.ce-iframe-between .ce-iframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* MOBILE: Footer "rausschieben" und Wrapper unten auf 0 setzen */
@media (max-width: 768px), (orientation: landscape) and (max-height: 500px) {
  body.has-iframe-full .footer {
    position: static !important;
    bottom: auto !important;
    min-height: 0 !important;
  }
  .ce-iframe-between.is-active {
    bottom: 0 !important;
  }
}
/* Kleinere Landscape-Displays etwas puffern (optional) */
@media (orientation: landscape) and (max-height: 420px) {
  .ce-iframe-between.is-active {
    min-height: 300px;
  }
}
/* Safe-Areas (Notch) */
@supports (padding: max(0px)) {
  .ce-iframe-between.is-active {
    padding-left: 0px;
    padding-right: 0px;
  }
}
/* Body-Scroll sperren, solange Full aktiv ist (empfohlen) */
body.has-iframe-full {
  overflow: hidden;
}
/**
*
* Bootstrap Popover
*
*/
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 460px;
  padding: 1px;
  font-family: 'FreightSans Book', Helvetica;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 17px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  border-width: 10px;
  content: "";
}
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}
/**
*
* Powermail
*
*/
.page .container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.page .content .tx-powermail {
  margin-top: 1rem;
  padding: 0;
}
.page .content .tx-powermail .powermail_fieldwrap_badgrundrisshochladen > label {
  float: none!important;
}
.page .content .tx-powermail .powermail_fieldwrap_badgrundrisshochladen input[type="file"] {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}
.page .content .tx-powermail .powermail_fieldwrap_badgrundrisshochladen .powermail_file + label span {
  width: 200px;
  min-height: 18px;
  height: 46px;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: top;
  border: 1px solid #ccc;
}
.page .content .tx-powermail .powermail_fieldwrap_badgrundrisshochladen .powermail_file + label strong {
  height: 100%;
  color: #fff;
  background-color: #131313;
  display: inline-block;
}
.page .content .tx-powermail .powermail_fieldwrap_badgrundrisshochladen .powermail_file + label span,
.page .content .tx-powermail .powermail_fieldwrap_badgrundrisshochladen .powermail_file + label strong {
  padding: 10px;
}
.page .content .tx-powermail .powermail_fieldwrap_badgrundrisshochladen .powermail_file + label svg {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
  margin-top: -0.25em;
  margin-right: 0.25em;
}
.page .content .tx-powermail .powermail_fieldwrap_badgrundrisshochladen .powermail_field {
  position: relative;
  margin-top: 1rem;
}
.page .content .powermail_fieldset_4 .control-label {
  width: 100% !important;
}
.page .content .powermail_fieldset_4 .col-sm-10 {
  width: 100% !important;
  padding: 30px 0 !important;
  color: #737373 !important;
}
@media (max-width: 430px) {
  .page .content .powermail_fieldset_4 .col-sm-10 {
    width: 92% !important;
    padding: 0 !important;
  }
}
@media (min-width: 430px) and (max-width: 767px) {
  .page .content .powermail_fieldset_4 .col-sm-10 {
    width: 100% !important;
    padding: 0 !important;
  }
}
@media (max-device-width: 767px) {
  .page .content .powermail_fieldset_4 .col-sm-10 {
    width: 91% !important;
    padding: 0 !important;
  }
}
.page .content .powermail_fieldset_4 .checkbox {
  width: 400px !important;
}
@media (max-width: 767px) {
  .page .content .powermail_fieldset_4 input[type=text],
  .page .content .powermail_fieldset_4 input[type=password],
  .page .content .powermail_fieldset_4 input[type=tel],
  .page .content .powermail_fieldset_4 input[type=email],
  .page .content .powermail_fieldset_4 input[type=number] {
    width: 100% !important;
    margin: 5px 0 10px 0 !important;
  }
}
@media (max-device-width: 767px) {
  .page .content .powermail_fieldset_4 input[type=text],
  .page .content .powermail_fieldset_4 input[type=password],
  .page .content .powermail_fieldset_4 input[type=tel],
  .page .content .powermail_fieldset_4 input[type=email],
  .page .content .powermail_fieldset_4 input[type=number] {
    width: 95% !important;
    margin: 5px 0 10px 0 !important;
  }
}
.page .content .powermail_fieldset_4 .powermail_submit {
  float: right !important;
  width: 200px !important;
}
@media (max-width: 767px) {
  .page .content .powermail_fieldset_4 .powermail_submit {
    width: 100% !important;
    float: left !important;
  }
}
@media (max-device-width: 767px) {
  .page .content .powermail_fieldset_4 .powermail_submit {
    width: 95% !important;
    float: left !important;
  }
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_checkdatenschutzerklaerung .col-sm-10 {
  width: 100% !important;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_checkdatenschutzerklaerung label[for="powermail_field_checkdatenschutzerklaerung"] {
  display: none;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_checkdatenschutzerklaerung .checkbox {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  margin: auto;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_checkdatenschutzerklaerung .checkbox label {
  padding-left: 5px;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_checkdatenschutzerklaerung .checkbox label::after {
  content: '*';
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_checkdatenschutzerklaerung .checkbox input[type=checkbox]::before {
  top: 15px;
  left: 0;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap {
  width: 100%;
  padding: 0 0 30px 0;
  clear: both;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap.powermail_fieldwrap_checkdatenschutzerklaerung {
  display: flex;
  flex-direction: column;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap .fliesstext h1,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap .fliesstext h2,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap .fliesstext h3,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap .fliesstext h4,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap .fliesstext h5 {
  display: block !important;
  padding: 20px 0;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap .inhalt {
  padding: 0;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap .col-sm-2 {
  width: 20%;
  font-family: 'FreightSans Book', Helvetica;
  padding: 10px 0;
  float: left;
}
@media (max-width: 767px) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap .col-sm-2 {
    width: 100%;
  }
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap .col-sm-10 {
  width: 80%;
  float: left;
}
@media (max-width: 767px) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap .col-sm-10 {
    width: 100%;
  }
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap .col-sm-offset-2 {
  width: 100%;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap .powermail_label {
  width: 20%;
  float: left;
}
@media (max-width: 767px) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap .powermail_label {
    width: 100%;
  }
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap input[type=text],
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap input[type=password],
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap input[type=tel],
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap input[type=email],
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap input[type=number] {
  width: 100%;
  color: #131313;
}
@media (max-width: 767px) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap input[type=text],
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap input[type=password],
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap input[type=tel],
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap input[type=email],
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap input[type=number] {
    width: 100%;
    margin: 5px 0 10px 0;
  }
}
@media (max-device-width: 767px) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap input[type=text],
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap input[type=password],
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap input[type=tel],
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap input[type=email],
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap input[type=number] {
    width: 100%;
    margin: 5px 0 10px 0;
  }
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap input#powermail_field_checkdatenschutzerklaerung_1 {
  visibility: hidden;
}
@media (max-width: 550px) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap input#powermail_field_checkdatenschutzerklaerung_1::before {
    bottom: 28px !important;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap input#powermail_field_checkdatenschutzerklaerung_1::before {
    bottom: 34px !important;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: landscape) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap input#powermail_field_checkdatenschutzerklaerung_1::before {
    bottom: 8px !important;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap input#powermail_field_checkdatenschutzerklaerung_1:checked::before {
    line-height: 20px !important;
  }
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap .powermail_submit {
  float: right;
  width: 200px;
}
@media (max-width: 767px) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap .powermail_submit {
    width: 100%;
    float: left;
  }
}
@media (max-device-width: 767px) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap .powermail_submit {
    width: 100%;
    float: left;
  }
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_grey {
  color: #737373;
  margin: 40px 0 0 0;
}
.page .content .powermail_form .powermail_fieldset .radio {
  position: relative;
  margin: 10px 25px 10px 0;
  float: left;
}
.page .content .powermail_form .powermail_fieldset .radio input[type=radio]::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  position: absolute;
  left: -1px;
  bottom: 3px;
  background-color: #FFFFFF;
  border: 1px solid #C4C4C4;
  border-radius: 8px;
}
@media (max-device-width: 1024px) {
  .page .content .powermail_form .powermail_fieldset .radio input[type=radio]::before {
    width: 20px;
    height: 20px;
    left: 0;
    bottom: 7px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .page .content .powermail_form .powermail_fieldset .radio input[type=radio]::before {
    bottom: 34px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .page .content .powermail_form .powermail_fieldset .radio input[type=radio]::before {
    bottom: 34px;
  }
}
.page .content .powermail_form .powermail_fieldset .radio input[type=radio]:checked::before {
  background-color: #FFFFFF;
  content: "\2022";
  color: #131313;
  font-size: 30px;
  text-align: center;
  line-height: 9px;
}
.page .content .powermail_form .powermail_fieldset .checkbox {
  position: relative;
  float: left;
  margin: 10px 0 20px 40px;
  width: 155px;
}
@media (max-width: 767px) {
  .page .content .powermail_form .powermail_fieldset .checkbox {
    margin: 10px 0 20px 0px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .page .content .powermail_form .powermail_fieldset .checkbox {
    margin: 10px 0 20px 0;
  }
}
.page .content .powermail_form .powermail_fieldset .checkbox label {
  margin: 0 0 0 12px;
}
.page .content .powermail_form .powermail_fieldset .checkbox input[type=checkbox]::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  visibility: visible;
  position: absolute;
  left: -4px;
  bottom: -4px;
  background-color: #FFFFFF;
  border: 1px solid #C4C4C4;
  border-radius: 0;
}
@media (max-device-width: 640px) {
  .page .content .powermail_form .powermail_fieldset .checkbox input[type=checkbox]::before {
    left: -1px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .page .content .powermail_form .powermail_fieldset .checkbox input[type=checkbox]::before {
    left: -2px;
  }
}
.page .content .powermail_form .powermail_fieldset .checkbox input[type=checkbox]:checked::before {
  background-color: #FFFFFF;
  content: "\2713";
  color: #131313;
  font-size: 38px;
  text-align: center;
  line-height: 30px;
}
.page .content .powermail_form .powermail_fieldset .radio + .radio {
  margin-top: 10px;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_type_check label.control-label {
  padding: 10px 0 0 0;
}
@media (max-width: 767px) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_type_check label.control-label {
    margin: 0 0 15px 0;
  }
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_newsletteryes .control-label,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_exklusiveangebote .control-label,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_datenschutzerklaerung .control-label,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_datenschutz .control-label {
  display: none;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_newsletteryes .col-sm-10,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_exklusiveangebote .col-sm-10,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_datenschutzerklaerung .col-sm-10,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_datenschutz .col-sm-10 {
  margin: 0 0 0 -7px;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_newsletteryes a,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_exklusiveangebote a,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_datenschutzerklaerung a,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_datenschutz a {
  font-family: 'FreightSans Semibold', Helvetica;
  color: #737373;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_datenschutz .control-label {
  display: none;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_datenschutz a {
  font-family: 'FreightSans Semibold', Helvetica;
  color: #737373;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_datenschutz .checkbox {
  width: 100%;
}
@media (max-width: 767px) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_newsletteryes {
    padding: 20px 0 70px 0;
  }
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_datenschutz .checkbox,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_newsletteryes .checkbox,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_exklusiveangebote .checkbox,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_datenschutzerklaerung .checkbox {
  position: relative;
  margin: 10px 25px 10px 15px;
  float: left;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_datenschutz .checkbox input[type=checkbox]::before,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_newsletteryes .checkbox input[type=checkbox]::before,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_exklusiveangebote .checkbox input[type=checkbox]::before,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_datenschutzerklaerung .checkbox input[type=checkbox]::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  position: absolute;
  left: 7px;
  bottom: 1px;
  background-color: #FFFFFF;
  border: 1px solid #C4C4C4;
  border-radius: 20px;
}
@media (max-device-width: 1024px) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_datenschutz .checkbox input[type=checkbox]::before,
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_newsletteryes .checkbox input[type=checkbox]::before,
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_exklusiveangebote .checkbox input[type=checkbox]::before,
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_datenschutzerklaerung .checkbox input[type=checkbox]::before {
    left: 11px;
    bottom: 7px;
  }
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_datenschutz .checkbox input[type=checkbox]:checked::before,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_newsletteryes .checkbox input[type=checkbox]:checked::before,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_exklusiveangebote .checkbox input[type=checkbox]:checked::before,
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_datenschutzerklaerung .checkbox input[type=checkbox]:checked::before {
  background-color: #FFFFFF;
  content: "\2022";
  color: #131313;
  font-size: 30px;
  text-align: center;
  line-height: 15px;
}
@media (min-device-width: 768px) and (max-device-width: 1024px) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_datenschutz .checkbox,
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_newsletteryes .checkbox,
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_exklusiveangebote .checkbox,
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_datenschutzerklaerung .checkbox {
    margin: 8px;
  }
}
@media (max-width: 700px) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_exklusiveangebote .checkbox input[type=checkbox]::before {
    top: 3px;
  }
}
@media (max-device-width: 768px) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_check_exklusiveangebote .checkbox input[type=checkbox]::before {
    top: 0;
  }
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_type_file {
  position: relative;
  padding: 35px 0 0 0;
}
@media (max-width: 767px) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_type_file {
    padding: 0;
  }
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_type_file .col-sm-2 {
  display: none;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_type_file .col-sm-10 {
  position: relative;
  float: left;
  width: 100%;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_type_file .col-sm-10 input {
  width: 100%;
  height: 40px;
  margin: 0 0 40px 0;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_type_file .col-sm-10 input:before {
  font-family: ws-icons;
  content: "\e911";
  color: #E5E5E5;
  font-size: 1.5rem;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_type_file .col-sm-10 input::-ms-value {
  height: 1px;
  width: 1px;
  border: 0;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_type_file .col-sm-10 input::-ms-browse {
  display: none;
  background: transparent;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_type_file .col-sm-10 input::-webkit-file-upload-button {
  margin: 0 0 0 80px !important;
  width: 0;
  height: 0;
  background: none;
}
@media (max-width: 767px) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_type_file .col-sm-10 input {
    margin: 0 0 30px 0;
  }
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_type_file .col-sm-10 input::-webkit-file-upload-button {
  padding: 17px 0 0 270px;
  border: none;
  background: transparent;
  font-family: 'FreightSans Book', Helvetica;
  font-size: 20px;
  color: #737373;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_type_file .col-sm-10 input#shadow {
  margin: 7px 0 0 270px;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_type_file .col-sm-10 input #shadow {
  margin: 7px 0 0 270px;
}
.page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_type_file .textafterinput {
  position: absolute;
  top: 17px;
  left: 40px;
  font-family: 'FreightSans Semibold', Helvetica;
  color: #737373;
}
@media (max-width: 767px) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_type_file .textafterinput {
    top: 15px;
  }
}
@media (max-device-width: 640px) {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_type_file .textafterinput {
    top: 15px;
  }
}
@-moz-document url-prefix() {
  .page .content .powermail_form .powermail_fieldset .powermail_fieldwrap_type_file .textafterinput {
    display: none;
  }
}
.page .content .powermail_form .powermail_fieldset legend.powermail_legend {
  display: none;
}
.page .content .powermail_form h1,
.page .content .powermail_form h2,
.page .content .powermail_form h3,
.page .content .powermail_form h4,
.page .content .powermail_form h5 {
  display: none;
}
body.kontaktseite .page .content .powermail_form .powermail_fieldset .checkbox {
  width: 100%;
  margin: 0;
}
@media (min-width: 767px) {
  body.kontaktseite .page .content .powermail_form .powermail_fieldset .checkbox {
    white-space: nowrap;
  }
}
@media (max-width: 517px) {
  body.kontaktseite .page .content .powermail_form .powermail_fieldset .checkbox input[type=checkbox]::before {
    bottom: 24px;
  }
}
@media (max-device-width: 640px) {
  body.kontaktseite .page .content .powermail_form .powermail_fieldset .checkbox input[type=checkbox]::before {
    bottom: 34px;
  }
}
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
  width: 100% !important;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 45px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 25px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-search--inline {
  float: left;
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-dropdown {
  background-color: white;
  border: 1px solid #C4C4C4;
  border-radius: 0;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 105100000000;
}
.select2-results {
  display: block;
}
.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}
.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-results__option[aria-selected] {
  cursor: pointer;
}
.select2-container--open .select2-dropdown {
  left: 0;
}
.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-search--dropdown {
  display: block;
  padding: 4px;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}
.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #FFFFFF;
  filter: alpha(opacity=0);
}
.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}
.select2-container--default .select2-selection--single {
  background-color: #FFFFFF;
  border: 1px solid #C4C4C4;
  border-radius: 0;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #737373;
  line-height: 45px;
  font-family: 'FreightSans Book', Helvetica;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 5px;
  right: 1px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow:after {
  font-family: "ws-icons";
  content: "\e908";
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #C4C4C4;
  border-radius: 0;
  cursor: text;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #C4C4C4;
  border-radius: 0;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #C4C4C4;
  height: 40px;
  font-family: 'FreightSans Book', Helvetica;
  font-size: 20px;
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #131313;
  color: white;
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #C4C4C4;
  border-radius: 0;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #C4C4C4;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #C4C4C4;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}
.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #C4C4C4;
  border-radius: 0;
  cursor: text;
  outline: 0;
}
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #C4C4C4;
  border-radius: 0;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #C4C4C4;
  outline: 0;
}
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}
.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}
.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}
.select2-container--classic .select2-dropdown--below {
  border-top: none;
}
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}
@font-face {
  font-family: 'ws-icons';
  src: url('../Fonts/ws-icons.eot?ww3udd');
  src: url('../Fonts/ws-icons.eot?ww3udd#iefix') format('embedded-opentype'), url('../Fonts/ws-icons.ttf?ww3udd') format('truetype'), url('../Fonts/ws-icons.woff?ww3udd') format('woff'), url('../Fonts/ws-icons.svg?ww3udd#ws-icons') format('svg');
  font-weight: normal;
  font-style: normal;
}
i {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'ws-icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-webapp-logo:before {
  content: "\e926";
}
.icon-icon-handwerkspartner:before {
  content: "\e925";
}
.icon-waschsalon-signet:before {
  content: "\e922";
}
.icon-waschsalons:before {
  content: "\e924";
}
.icon-email-c:before {
  content: "\e923";
}
.icon-angebote:before {
  content: "\e900";
}
.icon-arrow-right:before {
  content: "\e901";
}
.icon-badgestaltung:before {
  content: "\e902";
}
.icon-berater:before {
  content: "\e903";
}
.icon-calendar:before {
  content: "\e904";
}
.icon-close:before {
  content: "\e905";
}
.icon-confirm:before {
  content: "\e906";
}
.icon-dot-full:before {
  content: "\e907";
}
.icon-dropdown:before {
  content: "\e908";
}
.icon-edit-d:before {
  content: "\e909";
}
.icon-edit:before {
  content: "\e90a";
}
.icon-email:before {
  content: "\e90b";
}
.icon-exercise-form:before {
  content: "\e90c";
}
.icon-facebook:before {
  content: "\e90d";
}
.icon-folder:before {
  content: "\e90e";
}
.icon-icon-badberatung:before {
  content: "\e90f";
}
.icon-icon-badplanung:before {
  content: "\e910";
}
.icon-inbox:before {
  content: "\e911";
}
.icon-login:before {
  content: "\e912";
}
.icon-logo:before {
  content: "\e913";
}
.icon-make-appointment:before {
  content: "\e914";
}
.icon-newsletter:before {
  content: "\e915";
}
.icon-ok:before {
  content: "\e916";
}
.icon-processed:before {
  content: "\e917";
}
.icon-rad:before {
  content: "\e918";
}
.icon-dot:before {
  content: "\e919";
}
.icon-dot-active:before {
  content: "\e91a";
}
.icon-remove:before {
  content: "\e91b";
}
.icon-select-appointment:before {
  content: "\e91c";
}
.icon-termin:before {
  content: "\e91d";
}
.icon-thumbs-up:before {
  content: "\e91e";
}
.icon-user-conversation:before {
  content: "\e91f";
}
.icon-users:before {
  content: "\e920";
}
.icon-veranstaltungen:before {
  content: "\e921";
}
.icon-xing:before {
  content: "\e927";
}
.icon-youtube:before {
  content: "\e928";
}
.icon-up-down:before {
  content: "\e86f";
}
.icon-keyboard_arrow_down:before {
  content: "\e313";
}
.icon-keyboard_arrow_left:before {
  content: "\e314";
}
.icon-keyboard_arrow_right:before {
  content: "\e315";
}
.icon-keyboard_arrow_up:before {
  content: "\e316";
}
/* ======================================================================== */
/* Circle for Icons*/
/* ======================================================================== */
.icon_g,
.termincolor-icon_red,
.termincolor-orange-icon_orange,
.termincolor-green-icon_green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border-radius: 50%;
  vertical-align: middle;
  padding: 10px;
  margin: 5px;
  font-size: 1.8rem;
}
.align-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
.align-center-icon,
.scrollup,
.page .content .waschsaloninfo .textinfos .infos .socialMedia .socialMedia-Facebook,
.page .content .waschsaloninfo .textinfos .infos .socialMedia .socialMedia-Email,
.page .content .hppagedown,
.circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #131313;
  color: #FFFFFF;
  border-radius: 50%;
  vertical-align: middle;
  padding: 5px;
  margin: 5px;
}
.planer-icons {
  font-family: "ws-icons";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #131313;
  color: #FFFFFF;
  border-radius: 50%;
  vertical-align: middle;
  padding: 5px;
  margin: 5px;
  width: 75px;
  height: 75px;
  font-size: 2.5rem;
}
.planer-icons-md {
  font-family: "ws-icons";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #131313;
  color: #FFFFFF;
  border-radius: 50%;
  vertical-align: middle;
  padding: 5px;
  margin: 5px;
  width: 70px;
  height: 70px;
  font-size: 2.5rem;
}
.badge-icons {
  position: absolute;
  background-color: #FFFFFF;
  width: 20px;
  height: 20px;
  font-size: 1rem;
  border-radius: 100%;
  color: #131313;
  border: 1px solid;
  text-align: center;
  top: 0;
  right: 0;
}
.select-icon,
.select2-container--default .select2-selection--single .select2-selection__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #C4C4C4;
  border: 3px solid #C4C4C4;
  border-radius: 50%;
  vertical-align: middle;
  padding: 4px;
  margin: 5px;
  font-size: 0.7rem;
}
.hover-border,
.scrollup:hover,
.page .content .waschsaloninfo .textinfos .infos .socialMedia .socialMedia-Facebook:hover,
.page .content .waschsaloninfo .textinfos .infos .socialMedia .socialMedia-Email:hover,
.page .content .hppagedown:hover {
  border: 1px solid #131313;
  background-color: #FFFFFF;
  color: #131313;
}
.termincolor-icon_red {
  background-color: #c30e12;
}
.termincolor-orange-icon_orange {
  background-color: #f29106;
}
.termincolor-green-icon_green {
  background-color: #f29106;
}
.circle.small {
  font-size: 1.2rem;
  width: 30px;
  height: 30px;
}
.circle.medium {
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
}
.circle.large {
  font-size: 2.3rem;
  width: 70px;
  height: 70px;
}
@media (max-width: 767px) {
  .circle.large {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}
@media (max-width: 991px) {
  .circle.large {
    font-size: 1.3rem;
  }
}
.circle.black {
  background-color: #131313;
}
/* ======================================================================== */
/* Same Columns Height */
/* ======================================================================== */
.flex-boxes .col img {
  width: 100%;
  height: auto;
}
.flex-boxes {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 1440px;
  max-width: 100%;
  margin: auto;
}
.flex-boxes .col {
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  /*
  If you need to keep good feeling
  about images growings, you'd
  better do:
  flex: 0 1 300px;
   */
  margin: 1em 0.5em;
}
@media (max-width: 960px) {
  .flex-boxes {
    flex-wrap: wrap;
  }
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem -1rem;
}
.gallery-item {
  flex: 1 0 29rem;
  margin: 2rem;
  box-shadow: 0 0 25px 0 #E7E7E7;
  overflow: hidden;
  position: relative;
}
.gallery-item .aligner {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  transition: transform 400ms ease-out;
}
.gallery-item .aligner:hover {
  background-color: rgba(24, 24, 24, 0.24);
  transform: scale(1.15);
}
.gallery-item .aligner:hover .linkto:after {
  right: -2px;
  transition: all 0.4s ease-in-out;
}
.gallery-item .aligner .description {
  width: 70%;
  background: rgba(255, 255, 255, 0.8);
  height: 40%;
  padding: 3rem 1.2rem 1.2rem 1.2rem;
}
@media (max-width: 767px) {
  .gallery-item .aligner .description {
    width: 90%;
    height: auto;
  }
}
@media (max-width: 1330px) and (min-width: 800px) {
  .gallery-item .aligner .description {
    width: 90%;
    height: auto;
  }
}
.gallery-item .aligner .description h3 {
  font-size: 38px;
  line-height: 48px;
  font-family: 'FreightSans Book', Helvetica;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .gallery-item .aligner .description h3 {
    font-size: 30px;
    line-height: 35px;
  }
}
.gallery-item .aligner .description .linkto {
  color: #850E11;
  font-weight: bold;
}
.gallery-item .aligner .description .linkto:after {
  content: "\e315";
  font-family: "ws-icons";
  position: relative;
  font-size: 1.5rem;
  top: 5px;
}
.flex .col {
  background: #FFFFFF;
  box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}
.flex .col .linkto {
  color: #850E11;
  font-weight: bold;
}
.flex .col .linkto:after {
  content: "\e315";
  font-family: "ws-icons";
  position: relative;
  font-size: 1.5rem;
  top: 5px;
}
.flex .col .img-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex .col h2 {
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.flex .col:hover .plus {
  opacity: 1;
  transform: scale(1);
}
.flex .col:hover .over {
  opacity: 1;
}
.flex .col .plus {
  position: absolute;
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #131313;
  transform: scale(2);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.flex .col .plus:before {
  position: absolute;
  top: 34px;
  left: 25px;
  width: 20px;
  height: 2px;
  content: "";
  background: #fff;
}
.flex .col .plus:after {
  position: absolute;
  left: 34px;
  top: 25px;
  width: 2px;
  height: 20px;
  content: "";
  background: #ffffff;
}
.flex .col .over {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.flex .col a {
  transition: 200ms all ease;
}
.gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-out;
}
@media (max-width: 767px) {
  .gallery-image {
    max-width: 100%;
  }
}
/*

The following rule will only run if your browser supports CSS grid.

*/
@supports (display: grid) {
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(29rem, 1fr));
    grid-gap: 3rem;
    grid-template-rows: 600px;
    height: 50%;
    grid-column: span 1 / 2;
  }
  @media (max-width: 1330px) and (min-width: 400px) {
    .gallery {
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    }
  }
  @media (max-width: 400px) {
    .gallery {
      grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
    }
  }
  .gallery,
  .gallery-item {
    margin: 0;
  }
}
.roomtour {
  width: 100%;
  height: 600px;
}
#dvyoutube-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
  transition: 1s opacity;
}
.panel {
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #FFFFFF;
}
.panel a.play {
  font-style: italic;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  font-size: 18px;
  line-height: 80px;
  text-align: center;
  height: 80px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  border: none;
}
.panel .play .title {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.panel .play .circle {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 123%;
  height: 100%;
  border-radius: 0;
  background-color: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -125px;
  z-index: -1;
}
.panel .play .triangle {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 0;
  height: 0;
  border-left: 60px solid #FFFFFF;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -30px;
  z-index: -2;
}
.panel .play:hover {
  border: none;
}
.panel .play:hover .title {
  opacity: 0;
  filter: alpha(opacity=0);
}
.panel .play:hover .circle {
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
}
.panel .play:hover .triangle {
  border-left: 80px solid #FFFFFF;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  margin-left: -34px;
  margin-top: -40px;
}
.panel .video-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #FAFAFA;
}
.panel .video-player-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #FAFAFA;
  display: table;
}
.panel .video-player {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.panel .videocontent {
  margin: 0 auto;
}
.panel .panel {
  position: relative;
  overflow: hidden;
  /*min-width: 540px;
    min-height: 480px*/
}
.panel .info-container {
  width: 100%;
  height: 101%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.panel .info-wrapper {
  width: 400px;
  position: absolute;
  right: 0;
  margin-right: 10%;
  height: 350px;
  bottom: 0;
}
@media screen and (max-width: 44.9375rem) {
  .panel .info-wrapper {
    margin: 0 auto;
    left: 0;
    width: 212px;
    right: 0;
    height: 130px;
    bottom: 0;
  }
}
.playing .info-container {
  left: -200%;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.loader::after {
  content: 'Loading...';
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  position: relative;
}
.preloader {
  background: transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 100%;
  z-index: 9999999;
  opacity: 1;
}
.preloader.full-preloader {
  position: fixed;
  z-index: 2000;
}
.preloader.full-preloader .preloader-animation {
  position: absolute;
  top: calc(50% - 3.25em);
  left: calc(50% - 3.25em);
}
.preloader-container {
  position: absolute;
  top: calc(50% - 3.25em);
  text-align: center;
  width: 100%;
}
.preloader-animation {
  display: inline-block;
  height: 6.5em;
  width: 6.5em;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #D8D8D8;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.preloader-animation:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #888787;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
.preloader-animation:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #000;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}
.preloader-text,
.preloader-percent {
  position: absolute;
  text-align: center;
  color: #34495e;
  z-index: 1;
}
.preloader-text {
  width: 50%;
  top: calc(50% - 6.5em);
  left: 25%;
}
.preloader-percent {
  width: 3em;
  top: calc(50% - 0.75em);
  left: calc(50% - 1.5em);
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*------------------------------------*\
    #Overlaping Grid
\*------------------------------------*/
.grid_overlaping {
  display: -ms-grid;
  display: grid;
  width: 100%;
  -ms-grid-columns: 30px 1;
  grid-template-columns: repeat(1, 30px);
  -ms-grid-rows: 50px 1;
  grid-template-rows: repeat(1, 50px);
}
.grid_overlaping img {
  max-width: 100%;
  height: auto;
  border: 10px solid #FFFFFF;
}
.grid_overlaping .internal-link {
  border: 1px solid #131313;
  padding: 0.5rem;
}
.grid_overlaping .internal-link:hover {
  opacity: 0.7;
}
.right_img-big {
  -ms-grid-column: 7;
  -ms-grid-column-span: 6;
  grid-column: 7 / span 6;
  -ms-grid-row: 2;
  -ms-grid-row-span: 8;
  grid-row: 2 / span 8;
  width: 100%;
}
.right_img-big img {
  -webkit-box-shadow: 0 0 22px 0 rgba(196, 196, 196, 0.5);
  box-shadow: 0 0 22px 0 rgba(196, 196, 196, 0.5);
  border: 10px solid #FFFFFF;
}
@media screen and (max-width: 44.9375rem) {
  .right_img-big img {
    border: none;
  }
}
.lefttop_img {
  -ms-grid-column: 2;
  -ms-grid-column-span: 6;
  grid-column: 2 / span 6;
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
  grid-row: 3 / span 2;
}
.leftbottom_img {
  -ms-grid-column: 5;
  -ms-grid-column-span: 6;
  grid-column: 5 / span 6;
  -ms-grid-row: 7;
  -ms-grid-row-span: 4;
  grid-row: 7 / span 4;
  max-width: 460px;
}
@media only screen and (max-width: 991px) {
  .grid_overlaping {
    display: flex;
  }
  .grid_overlaping img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .lefttop_img {
    display: none;
  }
  .leftbottom_img {
    display: none;
  }
}
/*------------------------------------*\
    #Grids IE11 Fixes
\*------------------------------------*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .showSupplier {
    top: 20px;
    right: 130px;
  }
  .slider-overlaping__wrapper-controls {
    margin-top: -8rem;
    margin-right: 8rem;
  }
}
/*------------------------------------*\
    #Slider
\*------------------------------------*/
@media screen and (max-width: 44.9375rem) {
  .section-overlaping {
    padding-bottom: 25%;
  }
}
.slider-overlaping__wrapper-controls {
  position: absolute;
  display: inline-flex;
  background-color: #FFFFFF;
  padding-left: 3rem;
  margin-top: -8rem;
  z-index: 2;
  margin-right: 5rem;
  right: 0;
}
@media screen and (max-width: 44.9375rem) {
  .slider-overlaping__wrapper-controls {
    margin-right: 0;
    margin-top: 0;
    padding-left: 33px;
  }
}
.slider__wrapper-controls {
  position: relative;
  display: inline-flex;
  background-color: #FFFFFF;
  padding-left: 2rem;
  z-index: 2;
  margin-right: 5rem;
  right: 0;
}
@media screen and (max-width: 44.9375rem) {
  .slider__wrapper-controls {
    margin-right: 0;
    margin-top: 0;
    padding-left: 33px;
  }
}
.slider-overlaping {
  position: relative;
  padding-bottom: 10%;
}
.showSupplier {
  position: absolute;
  text-align: right;
  top: 70px;
  right: 70px;
  z-index: 99;
  max-width: 100%;
  height: auto;
}
.showSupplier img {
  background: #FFFFFF;
}
@media screen and (max-width: 44.9375rem) {
  .showSupplier {
    top: 0;
    right: 0;
    margin: 10px;
  }
  .showSupplier img {
    width: 200px;
    height: auto;
  }
}
.infotext {
  position: absolute;
  text-align: left;
  top: 77px;
  right: 50px;
  z-index: 99;
  max-width: 100%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  padding: 2rem;
  margin: 0 auto;
  width: 530px;
  transition: background-color 0.3s ease-in-out;
}
.infotext:hover {
  background-color: #ffffff;
}
.infotext .align-center {
  display: flex;
}
@media screen and (max-width: 44.9375rem) {
  .infotext {
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    padding: 1rem;
  }
  .infotext h2,
  .infotext h3 {
    font-size: 19px;
    line-height: 19px;
  }
  .infotext p {
    font-size: 16px;
  }
}
.slider-overlaping__controls {
  height: auto;
}
.slider-overlaping__wrapper-counter {
  margin-right: 1rem;
}
.slider-overlaping__counter-big-current {
  color: #131313;
}
.slider__arrow {
  margin-left: -5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 80px;
  height: 80px;
  text-rendering: optimizeLegibility;
  font-size: 24px;
  color: #FFFFFF;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  outline: none;
  background-color: #131313;
  border-right: 1px solid #444;
}
.slider__arrow:hover {
  background-color: #272727;
  color: #FFFFFF;
}
.slider__counter-big {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
  margin-right: 3rem;
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .slider__counter-big {
    margin-right: 2rem;
  }
}
.slider__counter-big:after {
  content: '';
  width: 1px;
  height: 60px;
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #979797;
  -webkit-transform: skew(-45deg);
  transform: skew(-45deg);
}
.slider__counter-big-current {
  position: absolute;
  height: 40px;
  top: -15px;
  left: -10px;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
}
.slider__counter-big-total {
  position: absolute;
  bottom: 3px;
  right: -2px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  color: #131313;
}
.js-slider-overlaping-arrow-right {
  margin-right: -1px;
}
.js-slider-overlaping-arrow-left {
  border-right: 1px #515050 solid;
  margin-right: 1px;
}
.swiper-button-disabled {
  opacity: 0.1;
}
.slider__counter {
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888888;
  height: 12px;
}
.slider__counter_current {
  color: #b68c70;
  margin-right: 30px;
}
.slider__counter_total {
  margin-left: 30px;
}
.slider__progress {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.slider__progressbar {
  position: relative !important;
  width: 160px;
  height: 2px;
  background: #E5E5E5;
}
.slider__progressbar-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #131313;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.justify-content-center {
  -ms-flex-pack: center;
  justify-content: center;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-center .col {
  background: #FFFFFF;
  box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}
.justify-content-center .col .linkto {
  color: #850E11;
  font-weight: bold;
}
.justify-content-center .col .linkto:after {
  content: "\e315";
  font-family: "ws-icons";
  position: relative;
  font-size: 1.5rem;
  top: 5px;
}
.justify-content-center .col .img-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.justify-content-center .col h2 {
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.justify-content-center .col:hover .plus {
  opacity: 1;
  transform: scale(1);
}
.justify-content-center .col:hover .over {
  opacity: 1;
}
.justify-content-center .col .plus {
  position: absolute;
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #131313;
  transform: scale(2);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.justify-content-center .col .plus:before {
  position: absolute;
  top: 34px;
  left: 25px;
  width: 20px;
  height: 2px;
  content: "";
  background: #fff;
}
.justify-content-center .col .plus:after {
  position: absolute;
  left: 34px;
  top: 25px;
  width: 2px;
  height: 20px;
  content: "";
  background: #ffffff;
}
.justify-content-center .col .over {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.justify-content-center .col a {
  transition: 200ms all ease;
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.col-auto_left {
  width: 20%;
}
.col-auto_right {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  width: 12%;
}
.col-auto_right .col {
  background: #FFFFFF;
  box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}
.col-auto_right .col .linkto {
  color: #850E11;
  font-weight: bold;
}
.col-auto_right .col .linkto:after {
  content: "\e315";
  font-family: "ws-icons";
  position: relative;
  font-size: 1.5rem;
  top: 5px;
}
.col-auto_right .col .img-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.col-auto_right .col h2 {
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.col-auto_right .col:hover .plus {
  opacity: 1;
  transform: scale(1);
}
.col-auto_right .col:hover .over {
  opacity: 1;
}
.col-auto_right .col .plus {
  position: absolute;
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #131313;
  transform: scale(2);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.col-auto_right .col .plus:before {
  position: absolute;
  top: 34px;
  left: 25px;
  width: 20px;
  height: 2px;
  content: "";
  background: #fff;
}
.col-auto_right .col .plus:after {
  position: absolute;
  left: 34px;
  top: 25px;
  width: 2px;
  height: 20px;
  content: "";
  background: #ffffff;
}
.col-auto_right .col .over {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.col-auto_right .col a {
  transition: 200ms all ease;
}
@media only screen and (max-width: 991px) {
  .slider__counter {
    font-size: 11px;
    letter-spacing: 0.8px;
  }
}
.hidden {
  display: none;
}
/**
 * SwiperSlider 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.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;
}
/* NAVIGATION
================================*/
.navigation {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: initial;
  align-items: initial;
  width: 100%;
  min-height: 60px;
  padding: 0;
  position: relative;
  line-height: initial;
  font-family: inherit;
  box-sizing: border-box;
  background-color: #131313;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
.navigation .col {
  background: #FFFFFF;
  box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}
.navigation .col .linkto {
  color: #850E11;
  font-weight: bold;
}
.navigation .col .linkto:after {
  content: "\e315";
  font-family: "ws-icons";
  position: relative;
  font-size: 1.5rem;
  top: 5px;
}
.navigation .col .img-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation .col h2 {
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.navigation .col:hover .plus {
  opacity: 1;
  transform: scale(1);
}
.navigation .col:hover .over {
  opacity: 1;
}
.navigation .col .plus {
  position: absolute;
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #131313;
  transform: scale(2);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation .col .plus:before {
  position: absolute;
  top: 34px;
  left: 25px;
  width: 20px;
  height: 2px;
  content: "";
  background: #fff;
}
.navigation .col .plus:after {
  position: absolute;
  left: 34px;
  top: 25px;
  width: 2px;
  height: 20px;
  content: "";
  background: #ffffff;
}
.navigation .col .over {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation .col a {
  transition: 200ms all ease;
}
@media (min-width: 1440px) {
  .navigation {
    height: auto;
  }
}
.navigation *,
.navigation *:before,
.navigation *:after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}
.navigation.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 19998;
}
.navigation.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  will-change: opacity;
  z-index: 19998;
}
.navigation > .container {
  display: -ms-flexbox;
  display: flex;
}
.navigation > .container .col {
  background: #FFFFFF;
  box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}
.navigation > .container .col .linkto {
  color: #850E11;
  font-weight: bold;
}
.navigation > .container .col .linkto:after {
  content: "\e315";
  font-family: "ws-icons";
  position: relative;
  font-size: 1.5rem;
  top: 5px;
}
.navigation > .container .col .img-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation > .container .col h2 {
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.navigation > .container .col:hover .plus {
  opacity: 1;
  transform: scale(1);
}
.navigation > .container .col:hover .over {
  opacity: 1;
}
.navigation > .container .col .plus {
  position: absolute;
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #131313;
  transform: scale(2);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation > .container .col .plus:before {
  position: absolute;
  top: 34px;
  left: 25px;
  width: 20px;
  height: 2px;
  content: "";
  background: #fff;
}
.navigation > .container .col .plus:after {
  position: absolute;
  left: 34px;
  top: 25px;
  width: 2px;
  height: 20px;
  content: "";
  background: #ffffff;
}
.navigation > .container .col .over {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation > .container .col a {
  transition: 200ms all ease;
}
/* MOBILE HEADER
================================*/
.navigation-header {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.navigation-header .col {
  background: #FFFFFF;
  box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}
.navigation-header .col .linkto {
  color: #850E11;
  font-weight: bold;
}
.navigation-header .col .linkto:after {
  content: "\e315";
  font-family: "ws-icons";
  position: relative;
  font-size: 1.5rem;
  top: 5px;
}
.navigation-header .col .img-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation-header .col h2 {
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.navigation-header .col:hover .plus {
  opacity: 1;
  transform: scale(1);
}
.navigation-header .col:hover .over {
  opacity: 1;
}
.navigation-header .col .plus {
  position: absolute;
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #131313;
  transform: scale(2);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation-header .col .plus:before {
  position: absolute;
  top: 34px;
  left: 25px;
  width: 20px;
  height: 2px;
  content: "";
  background: #fff;
}
.navigation-header .col .plus:after {
  position: absolute;
  left: 34px;
  top: 25px;
  width: 2px;
  height: 20px;
  content: "";
  background: #ffffff;
}
.navigation-header .col .over {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation-header .col a {
  transition: 200ms all ease;
}
@media (min-width: 1440px) {
  .navigation-header {
    display: none;
  }
}
/* OVERLAY PANEL
================================*/
.overlay-panel {
  width: 0;
  height: 0;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -999999;
  -webkit-transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  transition: opacity 0.8s;
}
@media (min-width: 1440px) {
  .overlay-panel {
    transition: none;
  }
}
.overlay-panel.is-visible {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.overlay-panel.is-invisible {
  opacity: 0;
}
/* NAVIGATION LOGO
================================*/
.navigation-logo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.navigation-logo .col {
  background: #FFFFFF;
  box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}
.navigation-logo .col .linkto {
  color: #850E11;
  font-weight: bold;
}
.navigation-logo .col .linkto:after {
  content: "\e315";
  font-family: "ws-icons";
  position: relative;
  font-size: 1.5rem;
  top: 5px;
}
.navigation-logo .col .img-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation-logo .col h2 {
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.navigation-logo .col:hover .plus {
  opacity: 1;
  transform: scale(1);
}
.navigation-logo .col:hover .over {
  opacity: 1;
}
.navigation-logo .col .plus {
  position: absolute;
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #131313;
  transform: scale(2);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation-logo .col .plus:before {
  position: absolute;
  top: 34px;
  left: 25px;
  width: 20px;
  height: 2px;
  content: "";
  background: #fff;
}
.navigation-logo .col .plus:after {
  position: absolute;
  left: 34px;
  top: 25px;
  width: 2px;
  height: 20px;
  content: "";
  background: #ffffff;
}
.navigation-logo .col .over {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation-logo .col a {
  transition: 200ms all ease;
}
.navigation-logo a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.navigation-logo a .col {
  background: #FFFFFF;
  box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}
.navigation-logo a .col .linkto {
  color: #850E11;
  font-weight: bold;
}
.navigation-logo a .col .linkto:after {
  content: "\e315";
  font-family: "ws-icons";
  position: relative;
  font-size: 1.5rem;
  top: 5px;
}
.navigation-logo a .col .img-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation-logo a .col h2 {
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.navigation-logo a .col:hover .plus {
  opacity: 1;
  transform: scale(1);
}
.navigation-logo a .col:hover .over {
  opacity: 1;
}
.navigation-logo a .col .plus {
  position: absolute;
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #131313;
  transform: scale(2);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation-logo a .col .plus:before {
  position: absolute;
  top: 34px;
  left: 25px;
  width: 20px;
  height: 2px;
  content: "";
  background: #fff;
}
.navigation-logo a .col .plus:after {
  position: absolute;
  left: 34px;
  top: 25px;
  width: 2px;
  height: 20px;
  content: "";
  background: #ffffff;
}
.navigation-logo a .col .over {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation-logo a .col a {
  transition: 200ms all ease;
}
.navigation-logo a svg,
.navigation-logo a img {
  height: 40px;
  display: block;
}
@media (min-width: 1440px) {
  .navigation-logo a svg,
  .navigation-logo a img {
    height: 80px;
  }
}
.navigation-logo-top .navigation-body .navigation-logo img {
  width: auto;
  height: auto;
}
.navigation-logo.navigation-item a img {
  width: auto;
  height: auto;
}
.svg {
  width: 100%;
  height: 80px;
  position: relative;
  overflow: hidden;
  padding: 0;
}
/* NAVIGATION BUTTON TOGGLER
================================*/
.navigation-button-toggler {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
.navigation-button-toggler .col {
  background: #FFFFFF;
  box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}
.navigation-button-toggler .col .linkto {
  color: #850E11;
  font-weight: bold;
}
.navigation-button-toggler .col .linkto:after {
  content: "\e315";
  font-family: "ws-icons";
  position: relative;
  font-size: 1.5rem;
  top: 5px;
}
.navigation-button-toggler .col .img-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation-button-toggler .col h2 {
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.navigation-button-toggler .col:hover .plus {
  opacity: 1;
  transform: scale(1);
}
.navigation-button-toggler .col:hover .over {
  opacity: 1;
}
.navigation-button-toggler .col .plus {
  position: absolute;
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #131313;
  transform: scale(2);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation-button-toggler .col .plus:before {
  position: absolute;
  top: 34px;
  left: 25px;
  width: 20px;
  height: 2px;
  content: "";
  background: #fff;
}
.navigation-button-toggler .col .plus:after {
  position: absolute;
  left: 34px;
  top: 25px;
  width: 2px;
  height: 20px;
  content: "";
  background: #ffffff;
}
.navigation-button-toggler .col .over {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation-button-toggler .col a {
  transition: 200ms all ease;
}
.navigation-button-toggler .hamburger-icon {
  width: 20px;
  height: 2px;
  display: inline-block;
  font-style: normal;
  color: #e6e6e6;
  box-shadow: inset 0 0 0 32px, 0 -6px, 0 6px;
}
/* NAVIGATION BODY
================================*/
.navigation-body {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: -100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #ffffff;
  z-index: 20000;
  transition: left 0.8s cubic-bezier(0.1, 0.1, 0.1, 0.1), right 0.8s cubic-bezier(0.1, 0.1, 0.1, 0.1);
}
@media (min-width: 500px) {
  .navigation-body {
    width: 320px;
  }
}
@media (min-width: 1440px) {
  .navigation-body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    position: relative;
    left: auto;
    overflow: visible;
    z-index: auto;
    background-color: transparent;
    transition: all 0s ease 0s;
  }
  .navigation-body .col {
    background: #FFFFFF;
    box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
    text-align: center;
    padding-bottom: 2rem;
    position: relative;
  }
  .navigation-body .col .linkto {
    color: #850E11;
    font-weight: bold;
  }
  .navigation-body .col .linkto:after {
    content: "\e315";
    font-family: "ws-icons";
    position: relative;
    font-size: 1.5rem;
    top: 5px;
  }
  .navigation-body .col .img-holder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .navigation-body .col h2 {
    padding-top: 1rem;
    margin-bottom: 1rem;
  }
  .navigation-body .col:hover .plus {
    opacity: 1;
    transform: scale(1);
  }
  .navigation-body .col:hover .over {
    opacity: 1;
  }
  .navigation-body .col .plus {
    position: absolute;
    display: flex;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #131313;
    transform: scale(2);
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }
  .navigation-body .col .plus:before {
    position: absolute;
    top: 34px;
    left: 25px;
    width: 20px;
    height: 2px;
    content: "";
    background: #fff;
  }
  .navigation-body .col .plus:after {
    position: absolute;
    left: 34px;
    top: 25px;
    width: 2px;
    height: 20px;
    content: "";
    background: #ffffff;
  }
  .navigation-body .col .over {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }
  .navigation-body .col a {
    transition: 200ms all ease;
  }
}
.navigation-body.offcanvas-right {
  left: auto;
  right: -100%;
}
.navigation-body.offcanvas-right .navigation-body-header {
  padding: 1rem;
}
@media (min-width: 1440px) {
  .navigation-body.offcanvas-right .navigation-body-header {
    padding: 0;
  }
}
@media (min-width: 1440px) {
  .navigation-body.offcanvas-right {
    right: auto;
  }
}
.navigation-body.is-visible {
  left: 0;
  -webkit-transition: left 0.8s right 0.8s;
  -moz-transition: left 0.8s right 0.8s;
  -o-transition: left 0.8s right 0.8s;
  transition: left 0.8s right 0.8s;
  background: #131313;
}
.navigation-body.offcanvas-right.is-visible {
  right: 0;
  left: auto;
}
@media (min-width: 1440px) {
  .navigation-body.offcanvas-right.is-visible {
    right: auto;
  }
}
.navigation-body.is-invisible {
  left: -100%;
}
.navigation-body.offcanvas-right.is-invisible {
  right: -100%;
}
.navigation-body.scroll-momentum {
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 1440px) {
  .navigation-centered .navigation-body {
    -ms-flex-pack: center;
    justify-content: center;
  }
  .navigation-justified .navigation-body {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .navigation-logo-top .navigation-body {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.navigation-body-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: solid 1px #333333;
}
.navigation-body-header .col {
  background: #FFFFFF;
  box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}
.navigation-body-header .col .linkto {
  color: #850E11;
  font-weight: bold;
}
.navigation-body-header .col .linkto:after {
  content: "\e315";
  font-family: "ws-icons";
  position: relative;
  font-size: 1.5rem;
  top: 5px;
}
.navigation-body-header .col .img-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation-body-header .col h2 {
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.navigation-body-header .col:hover .plus {
  opacity: 1;
  transform: scale(1);
}
.navigation-body-header .col:hover .over {
  opacity: 1;
}
.navigation-body-header .col .plus {
  position: absolute;
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #131313;
  transform: scale(2);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation-body-header .col .plus:before {
  position: absolute;
  top: 34px;
  left: 25px;
  width: 20px;
  height: 2px;
  content: "";
  background: #fff;
}
.navigation-body-header .col .plus:after {
  position: absolute;
  left: 34px;
  top: 25px;
  width: 2px;
  height: 20px;
  content: "";
  background: #ffffff;
}
.navigation-body-header .col .over {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation-body-header .col a {
  transition: 200ms all ease;
}
@media (min-width: 1440px) {
  .navigation-body-header {
    border: none;
  }
  .navigation-centered .navigation-body-header {
    padding: 0;
  }
  .navigation-logo-top .navigation-body-header {
    padding-top: 20px;
  }
}
.navigation-body-close-button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-left: auto;
  padding-bottom: 2px;
  line-height: initial;
  text-align: center;
  font-size: 25px;
  color: #e6e6e6;
  cursor: pointer;
}
.navigation-body-close-button .col {
  background: #FFFFFF;
  box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}
.navigation-body-close-button .col .linkto {
  color: #850E11;
  font-weight: bold;
}
.navigation-body-close-button .col .linkto:after {
  content: "\e315";
  font-family: "ws-icons";
  position: relative;
  font-size: 1.5rem;
  top: 5px;
}
.navigation-body-close-button .col .img-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation-body-close-button .col h2 {
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.navigation-body-close-button .col:hover .plus {
  opacity: 1;
  transform: scale(1);
}
.navigation-body-close-button .col:hover .over {
  opacity: 1;
}
.navigation-body-close-button .col .plus {
  position: absolute;
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #131313;
  transform: scale(2);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation-body-close-button .col .plus:before {
  position: absolute;
  top: 34px;
  left: 25px;
  width: 20px;
  height: 2px;
  content: "";
  background: #fff;
}
.navigation-body-close-button .col .plus:after {
  position: absolute;
  left: 34px;
  top: 25px;
  width: 2px;
  height: 20px;
  content: "";
  background: #ffffff;
}
.navigation-body-close-button .col .over {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation-body-close-button .col a {
  transition: 200ms all ease;
}
@media (min-width: 1440px) {
  .navigation-body-close-button {
    display: none;
  }
}
.navigation-body-section {
  width: 100%;
  padding: 16px;
  display: inline-flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 1440px) {
  .navigation-body-section {
    width: auto;
    display: inline-block;
  }
}
.navigation-body-section + .navigation-body-section {
  padding-top: 0;
}
@media (min-width: 1440px) {
  .navigation-body-section + .navigation-body-section {
    padding-top: 16px;
  }
}
/* NAVIGATION MENU
================================*/
.navigation .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .navigation .container {
    width: 100%;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 500px) {
  .navigation .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.navigation-menu {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0;
  display: inline-block;
  float: left;
  padding-right: 10px;
}
@media (min-width: 500px) {
  .navigation-menu img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 44.9375rem) {
  .navigation-menu img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 1440px) {
  .navigation-menu {
    width: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }
  .navigation-menu .col {
    background: #FFFFFF;
    box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
    text-align: center;
    padding-bottom: 2rem;
    position: relative;
  }
  .navigation-menu .col .linkto {
    color: #850E11;
    font-weight: bold;
  }
  .navigation-menu .col .linkto:after {
    content: "\e315";
    font-family: "ws-icons";
    position: relative;
    font-size: 1.5rem;
    top: 5px;
  }
  .navigation-menu .col .img-holder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .navigation-menu .col h2 {
    padding-top: 1rem;
    margin-bottom: 1rem;
  }
  .navigation-menu .col:hover .plus {
    opacity: 1;
    transform: scale(1);
  }
  .navigation-menu .col:hover .over {
    opacity: 1;
  }
  .navigation-menu .col .plus {
    position: absolute;
    display: flex;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #131313;
    transform: scale(2);
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }
  .navigation-menu .col .plus:before {
    position: absolute;
    top: 34px;
    left: 25px;
    width: 20px;
    height: 2px;
    content: "";
    background: #fff;
  }
  .navigation-menu .col .plus:after {
    position: absolute;
    left: 34px;
    top: 25px;
    width: 2px;
    height: 20px;
    content: "";
    background: #ffffff;
  }
  .navigation-menu .col .over {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }
  .navigation-menu .col a {
    transition: 200ms all ease;
  }
  .navigation .navigation-menu {
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .navigation-logo-top .navigation-menu {
    -ms-flex-pack: center;
    justify-content: center;
  }
}
/* Navbar item */
.navigation-item {
  width: 100%;
  margin: 0;
  float: left;
  display: inline-block;
}
@media (min-width: 1440px) {
  .navigation-item {
    width: auto;
  }
}
.navigation-item.has-submenu:hover:after {
  content: '';
  position: absolute;
  top: calc(100% - 15px);
  left: 0;
  z-index: 5000000;
  width: 100%;
  height: 50px;
  margin-top: -20px;
  background: transparent;
}
/* Navbar link */
.navigation-link {
  width: 100%;
  padding: 13px 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #e6e6e6;
  border-bottom: solid 1px #333333;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.navigation-link .col {
  background: #FFFFFF;
  box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}
.navigation-link .col .linkto {
  color: #850E11;
  font-weight: bold;
}
.navigation-link .col .linkto:after {
  content: "\e315";
  font-family: "ws-icons";
  position: relative;
  font-size: 1.5rem;
  top: 5px;
}
.navigation-link .col .img-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation-link .col h2 {
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.navigation-link .col:hover .plus {
  opacity: 1;
  transform: scale(1);
}
.navigation-link .col:hover .over {
  opacity: 1;
}
.navigation-link .col .plus {
  position: absolute;
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #131313;
  transform: scale(2);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation-link .col .plus:before {
  position: absolute;
  top: 34px;
  left: 25px;
  width: 20px;
  height: 2px;
  content: "";
  background: #fff;
}
.navigation-link .col .plus:after {
  position: absolute;
  left: 34px;
  top: 25px;
  width: 2px;
  height: 20px;
  content: "";
  background: #ffffff;
}
.navigation-link .col .over {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation-link .col a {
  transition: 200ms all ease;
}
.navigation-link:visited {
  color: #e6e6e6;
}
@media (min-width: 1440px) {
  .navigation-item:last-child .navigation-link {
    border-top: none;
    border-bottom: none;
  }
}
.navigation-item:not(.navigation-brand-text):hover .navigation-link,
.navigation-item:not(.navigation-brand-text):focus .navigation-link,
.navigation-item:not(.navigation-brand-text).is-active .navigation-link {
  text-decoration: none !important;
  color: #BDBDBC;
  background-color: transparent;
}
@media (min-width: 1440px) {
  .navigation-item:not(.navigation-brand-text):hover .navigation-link:before,
  .navigation-item:not(.navigation-brand-text):focus .navigation-link:before,
  .navigation-item:not(.navigation-brand-text).is-active .navigation-link:before {
    content: "";
    position: absolute;
    bottom: 1.5rem;
    border-bottom: 1px solid #BDBDBC;
    width: 70%;
    -webkit-animation: fadeIn 1.2s ease;
    -moz-animation: fadeIn 1.2s ease;
    animation: fadeIn 1.2s ease;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (min-width: 1440px) {
  .navigation-link {
    height: 100%;
    padding: 10px 16px;
    line-height: 60px;
    border: none;
  }
}
.navigation-menu.navigation-social-menu + .navigation-menu:not(.navigation-social-menu) .navigation-item:first-child .navigation-link {
  border-top: solid 1px #333333;
}
@media (min-width: 1440px) {
  .navigation-menu.navigation-social-menu + .navigation-menu:not(.navigation-social-menu) .navigation-item:first-child .navigation-link {
    border-top: none;
  }
}
.navigation-body-section + .navigation-menu:not(.navigation-social-menu) > .navigation-item:first-child > .navigation-link {
  border-top: solid 1px #333333;
}
@media (min-width: 1440px) {
  .navigation-body-section + .navigation-menu:not(.navigation-social-menu) > .navigation-item:first-child > .navigation-link {
    border-top: none;
  }
}
/* SUBMENU INDICATOR
================================*/
.submenu-indicator {
  width: 46px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20000;
}
@media (min-width: 1440px) {
  .submenu-indicator {
    width: 6px;
    height: 6px;
    margin-left: 6px;
    float: right;
    position: relative;
  }
  li:not(.navigation-icon-item) span:not(.navigation-badge) + .submenu-indicator,
  li:not(.navigation-icon-item) i + span + .navigation-badge + .submenu-indicator {
    margin-left: 0;
  }
}
.submenu-indicator:after {
  height: 6px;
  width: 6px;
  margin: -3px 0 0 -3px;
  top: 50%;
  left: 50%;
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: transparent #e6e6e6 #e6e6e6 transparent;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transition: border 0.3s transform 0.3s;
  -moz-transition: border 0.3s transform 0.3s;
  -o-transition: border 0.3s transform 0.3s;
  transition: border 0.3s transform 0.3s;
}
.navigation-item:hover > .navigation-link > .submenu-indicator:after,
.navigation-item:focus > .navigation-link > .submenu-indicator:after,
.navigation-item.is-active > .navigation-link > .submenu-indicator:after {
  border-color: transparent #BDBDBC #BDBDBC transparent;
}
.submenu-indicator.is-active:after {
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
}
@media (min-width: 1440px) {
  .submenu-indicator.is-active:after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }
}
/* NAVIGATION BUTTON
================================*/
.navigation-btn {
  width: 100%;
  padding: 10px 12px;
  text-align: center;
  display: inline-flex;
  line-height: 1.4;
  font-size: 14px;
  white-space: nowrap;
  color: #ffffff;
  cursor: pointer;
  border-radius: 4px;
  border: solid 1px #e9ecef;
  -webkit-transition: opacity 0.3s background 0.3s;
  -moz-transition: opacity 0.3s background 0.3s;
  -o-transition: opacity 0.3s background 0.3s;
  transition: opacity 0.3s background 0.3s;
  text-transform: uppercase;
}
.navigation-btn:hover {
  text-decoration: none;
  color: #FFFFFF;
  border-color: #BDBDBC;
  transition: box-shadow 0.6s linear;
  box-shadow: 0px 0px 0px 0.8px #fff;
}
@media (min-width: 1440px) {
  .navigation-btn {
    width: auto;
  }
}
#btnplan:hover:before,
#vereinbarenbtn:hover:before {
  border-bottom: none !important;
}
.is-active #btnplan:before,
.is-active #vereinbarenbtn:before {
  border-bottom: none !important;
}
/* NAVIGATION TEXT
================================*/
.navigation-text {
  padding: 11px 0;
  display: inline-block;
  color: #e6e6e6;
  font-size: 14px;
}
@media (min-width: 992px) {
  .navigation-text {
    padding: 11px 16px;
  }
}
/* NAVIGATION INLINE FORM
================================*/
.navigation-inline-form {
  position: relative;
}
@media (min-width: 1440px) {
  .navigation-inline-form {
    display: -ms-flexbox;
    display: flex;
  }
  .navigation-inline-form .col {
    background: #FFFFFF;
    box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
    text-align: center;
    padding-bottom: 2rem;
    position: relative;
  }
  .navigation-inline-form .col .linkto {
    color: #850E11;
    font-weight: bold;
  }
  .navigation-inline-form .col .linkto:after {
    content: "\e315";
    font-family: "ws-icons";
    position: relative;
    font-size: 1.5rem;
    top: 5px;
  }
  .navigation-inline-form .col .img-holder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .navigation-inline-form .col h2 {
    padding-top: 1rem;
    margin-bottom: 1rem;
  }
  .navigation-inline-form .col:hover .plus {
    opacity: 1;
    transform: scale(1);
  }
  .navigation-inline-form .col:hover .over {
    opacity: 1;
  }
  .navigation-inline-form .col .plus {
    position: absolute;
    display: flex;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #131313;
    transform: scale(2);
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }
  .navigation-inline-form .col .plus:before {
    position: absolute;
    top: 34px;
    left: 25px;
    width: 20px;
    height: 2px;
    content: "";
    background: #fff;
  }
  .navigation-inline-form .col .plus:after {
    position: absolute;
    left: 34px;
    top: 25px;
    width: 2px;
    height: 20px;
    content: "";
    background: #ffffff;
  }
  .navigation-inline-form .col .over {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }
  .navigation-inline-form .col a {
    transition: 200ms all ease;
  }
}
.navigation-inline-form .navigation-btn {
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  right: 4px;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.navigation-inline-form .navigation-btn .col {
  background: #FFFFFF;
  box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}
.navigation-inline-form .navigation-btn .col .linkto {
  color: #850E11;
  font-weight: bold;
}
.navigation-inline-form .navigation-btn .col .linkto:after {
  content: "\e315";
  font-family: "ws-icons";
  position: relative;
  font-size: 1.5rem;
  top: 5px;
}
.navigation-inline-form .navigation-btn .col .img-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation-inline-form .navigation-btn .col h2 {
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.navigation-inline-form .navigation-btn .col:hover .plus {
  opacity: 1;
  transform: scale(1);
}
.navigation-inline-form .navigation-btn .col:hover .over {
  opacity: 1;
}
.navigation-inline-form .navigation-btn .col .plus {
  position: absolute;
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #131313;
  transform: scale(2);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation-inline-form .navigation-btn .col .plus:before {
  position: absolute;
  top: 34px;
  left: 25px;
  width: 20px;
  height: 2px;
  content: "";
  background: #fff;
}
.navigation-inline-form .navigation-btn .col .plus:after {
  position: absolute;
  left: 34px;
  top: 25px;
  width: 2px;
  height: 20px;
  content: "";
  background: #ffffff;
}
.navigation-inline-form .navigation-btn .col .over {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation-inline-form .navigation-btn .col a {
  transition: 200ms all ease;
}
.navigation-input {
  width: 100%;
  padding: 11px 32px 11px 12px;
  outline-width: 0;
  font-size: 14px;
  color: #e6e6e6;
  line-height: 1.4;
  box-shadow: none;
  border-radius: 4px;
  background-color: #fbfcfc;
  border-style: solid;
  border-width: 1px;
  border-color: #dee2e6;
  -webkit-transition: border 0.3s;
  -moz-transition: border 0.3s;
  -o-transition: border 0.3s;
  transition: border 0.3s;
}
.navigation-input:hover,
.navigation-input:focus {
  border-color: #BDBDBC;
}
.navigation-input::placeholder {
  color: #e8e8e8;
}
.navigation-input:-ms-input-placeholder {
  color: #e8e8e8;
}
.navigation-input::-ms-input-placeholder {
  color: #e8e8e8;
}
/* MEGAMENU
================================*/
.navigation-megamenu {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  display: block;
  position: static;
  font-size: 16px;
  color: #131313;
  z-index: 20001;
  background-color: #EFEFEF;
  transition: max-height 2s cubic-bezier(0, 1, 0, 1);
}
.navigation-megamenu.is-visible {
  max-height: 5500px;
  border-bottom: solid 1px #333333;
  transition: max-height 1s ease-out;
}
@media (min-width: 1440px) {
  .navigation-megamenu {
    position: absolute;
    opacity: 0;
    border-top: solid 0px transparent;
    box-shadow: inset 0 1px 0 #333333, 0 12px 20px -5px rgba(0, 0, 0, 0.05);
    transition: opacity 0.1s linear, max-height 0s linear 0.1s;
  }
  .navigation-megamenu.is-visible {
    opacity: 1;
    border-bottom: none;
    transition: opacity 0.2s linear, max-height 0s linear;
  }
  .navigation-megamenu.navigation-megamenu-half {
    width: 50%;
  }
  .navigation-megamenu.navigation-megamenu-quarter {
    width: 25%;
  }
}
.scroll-momentum .navigation-megamenu {
  transform: translateZ(0);
}
@media (min-width: 1440px) {
  .scroll-momentum .navigation-megamenu {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }
}
.navigation-megamenu [class*="container"] {
  width: 100%;
}
.navigation-megamenu [class*="container"] [class*="col-"] {
  padding: 0;
}
.navigation-megamenu-container {
  padding: 16px;
  display: table;
}
/* MEGAMENU GRID
================================*/
.navigation-row {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.navigation-row .col {
  background: #FFFFFF;
  box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}
.navigation-row .col .linkto {
  color: #850E11;
  font-weight: bold;
}
.navigation-row .col .linkto:after {
  content: "\e315";
  font-family: "ws-icons";
  position: relative;
  font-size: 1.5rem;
  top: 5px;
}
.navigation-row .col .img-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation-row .col h2 {
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.navigation-row .col:hover .plus {
  opacity: 1;
  transform: scale(1);
}
.navigation-row .col:hover .over {
  opacity: 1;
}
.navigation-row .col .plus {
  position: absolute;
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #131313;
  transform: scale(2);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation-row .col .plus:before {
  position: absolute;
  top: 34px;
  left: 25px;
  width: 20px;
  height: 2px;
  content: "";
  background: #fff;
}
.navigation-row .col .plus:after {
  position: absolute;
  left: 34px;
  top: 25px;
  width: 2px;
  height: 20px;
  content: "";
  background: #ffffff;
}
.navigation-row .col .over {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navigation-row .col a {
  transition: 200ms all ease;
}
.navigation-row > [class^=navigation-col] {
  width: 100%;
  min-height: 20px;
  margin-bottom: 1rem;
  position: relative;
}
@media (min-width: 1440px) {
  .navigation-row .navigation-col {
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
}
@media (min-width: 1440px) {
  .navigation-row .navigation-col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .navigation-row .navigation-col-2 {
    -ms-flex: 0 0 16.666666%;
    flex: 0 0 16.666666%;
    max-width: 16.666666%;
  }
  .navigation-row .navigation-col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .navigation-row .navigation-col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .navigation-row .navigation-col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666666%;
  }
  .navigation-row .navigation-col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .navigation-row .navigation-col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .navigation-row .navigation-col-8 {
    -ms-flex: 0 0 66.666666%;
    flex: 0 0 66.666666%;
    max-width: 66.666666%;
  }
  .navigation-row .navigation-col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .navigation-row .navigation-col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .navigation-row .navigation-col-11 {
    -ms-flex: 0 0 91.666666%;
    flex: 0 0 91.666666%;
    max-width: 91.666666%;
  }
  .navigation-row .navigation-col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.navigation-row:last-of-type [class^=navigation-col]:last-child {
  margin-bottom: 0;
}
@media (min-width: 1440px) {
  .navigation-row:last-of-type [class^=navigation-col] {
    margin-bottom: 0;
  }
}
/* DARK
================================*/
header {
  padding: 80px 0;
}
#slogan {
  opacity: 1;
}
@media (min-width: 1440px) {
  .align-to-left #slogan {
    opacity: 1;
  }
  .align-to-left .navigation-logo a svg,
  .align-to-left .navigation-logo a img {
    display: block !important;
  }
}
.align-to-left #slogan {
  opacity: 1;
}
.align-to-left .navigation-logo a svg,
.align-to-left .navigation-logo a img {
  display: none;
}
.navigation-animated {
  height: 70px !important;
}
.navigation-animated #slogan {
  opacity: 0 !important;
  transition: opacity 450ms ease;
}
.navigation-animated .svg {
  position: relative;
  padding-top: 23px;
  transition: padding-top 0.5s ease-in;
}
.navigation-animated .navigation-logo a svg {
  height: 90px;
}
.navigation {
  background-color: #131313;
  transition: background 0.3s, height 0.3s;
}
@media (min-width: 1440px) {
  .navigation {
    height: 100px;
  }
}
@media screen and (max-width: 44.9375rem) {
  .navigation .navigation-item {
    padding-left: 0.6rem;
  }
  .navigation .navigation-item .navigation-link {
    padding: 13px 5px;
  }
}
@media screen and (max-width: 44.9375rem) {
  .navigation .mega_boxes img {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1440px) {
  .navigation .mega_boxes {
    padding: 0;
    margin-top: 1px;
  }
  .navigation .mega_boxes img {
    margin: 0;
    width: 100%;
  }
  .navigation .mega_boxes.two-boxes .navigation-col {
    min-height: 400px;
  }
  .navigation .mega_boxes .navigation-col {
    border-left: 1px solid #CCCCCC;
    min-height: 350px;
  }
  .navigation .mega_boxes .navigation-col:hover {
    background: #E4DFDF;
  }
  .navigation .mega_boxes .navigation-col:first-child {
    border-left: none !important;
  }
  .navigation .mega_boxes .navigation-col .megamenu_desc {
    padding: 1rem;
  }
  .navigation .mega_boxes .navigation-col .megamenu_desc p {
    padding: 0.8rem 2rem 0;
  }
  .navigation .mega_boxes .navigation-col svg {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.navigation .loginbereich {
  padding: 1rem !important;
}
.navigation .loginbereich .menuBlur {
  opacity: 0.3;
  pointer-events: none;
}
.navigation .loginbereich .login .right {
  border-left: none !important;
  border-bottom: 1px solid #131313;
}
@media screen and (max-width: 44.9375rem) {
  .navigation .loginbereich .login .right {
    border-bottom: none;
  }
}
.navigation .loginbereich .login .left,
.navigation .loginbereich .login .right {
  float: none;
  width: 100% !important;
  height: auto;
  border-left: 0;
  padding: 0 !important;
  overflow: inherit !important;
}
@media screen and (max-width: 44.9375rem) {
  .navigation .loginbereich .login .recoveryGroup {
    position: relative !important;
    top: 0 !important;
  }
}
@media (min-width: 500px) {
  .navigation .loginbereich .login .recoveryGroup {
    position: relative !important;
    top: 0 !important;
  }
}
@media (min-width: 1440px) {
  .navigation .loginbereich .login {
    width: 100%;
    overflow: hidden;
  }
  .navigation .loginbereich .login .navigation-col {
    border-right: 1px solid #131313;
    margin-right: 1rem;
  }
  .navigation .loginbereich .login .navigation-col:last-child {
    border: none;
  }
  .navigation .loginbereich .login .left {
    float: none;
    width: 100% !important;
    padding: 0;
    border-right: none !important;
  }
  .navigation .loginbereich .login .login {
    padding: 0 !important;
  }
  .navigation .loginbereich .login .left {
    float: none;
    width: 100% !important;
    padding-right: 2rem !important;
    margin-right: 2rem;
  }
  .navigation .loginbereich .login .left h3 {
    padding: 0 0 20px 0;
  }
  .navigation .loginbereich .login .right {
    border-bottom: none;
    margin: 0 !important;
  }
  .navigation .loginbereich .login .right .einfacherlink a {
    margin-right: 1rem;
  }
}
.navigation .loginbereich .login .fliesstext ul li:before {
  margin: -10px 0 0 -15px;
}
.navigation .loginbereich .login .menu {
  position: relative;
  width: 100%;
  height: auto;
  float: none;
  padding: 0 0 0 20px;
  margin: 0 0 60px 0;
  font-size: 20px;
  line-height: 25px;
  border-left: none;
}
@media (max-width: 767px) {
  .navigation .loginbereich .login .menu {
    width: 100%;
    height: 440px;
    border-top: 1px solid #737373;
    border-left: transparent;
    padding: 20px 0;
    margin: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .navigation .loginbereich .login .menu {
    height: auto;
    padding: 0 0 10px 20px;
  }
}
.navigation .loginbereich .login .menu ul li {
  padding: 5px 0;
  color: #C4C4C4;
}
.navigation .loginbereich .login .menu ul li.logout {
  padding: 30px 0 0 0;
}
.navigation .loginbereich .login .menu h3,
.navigation .loginbereich .login .menu h4 {
  font-size: 20px;
  color: #666666;
}
.navigation .loginbereich .login .menu .menu_point {
  padding: 0 0 30px 0;
}
.navigation .loginbereich .login .menu a {
  color: #666666;
}
.navigation .loginbereich .login .menu a:hover,
.navigation .loginbereich .login .menu a:active {
  color: #131313;
}
.navigation .loginbereich .login .menu .notavailable {
  cursor: pointer;
}
.navigation .navigation-body-header {
  border-bottom-color: #333333;
}
.navigation .navigation-body-close-button {
  color: #e6e6e6;
}
.navigation .navigation-button-toggler .hamburger-icon {
  color: #e6e6e6;
}
.navigation .navigation-link {
  color: #e6e6e6;
  border-bottom-color: #333333;
}
.navigation .navigation-link:visited {
  color: #e6e6e6;
}
.navigation-item:last-child .navigation .navigation-link {
  border-bottom-color: #333333;
}
@media (min-width: 1440px) {
  .navigation-icon-item .navigation .navigation-link {
    border-left-color: #333333;
  }
}
.navigation .submenu-indicator:after {
  border-color: transparent #e6e6e6 #e6e6e6 transparent;
}
.navigation .navigation-text {
  color: #e6e6e6;
}
.navigation .navigation-input {
  background-color: #131313;
  border-color: #333333;
  color: #e6e6e6;
}
.navigation .navigation-search-icon {
  color: #e6e6e6;
}
.navigation .navigation-dropdown {
  background-color: #EFEFEF;
}
.navigation-item > .navigation .navigation-dropdown {
  border-top-color: #333333;
}
.navigation .navigation-dropdown-link {
  color: #e6e6e6;
  border-bottom-color: #333333;
}
.navigation-dropdown-item:hover > .navigation .navigation-dropdown-link,
.navigation-dropdown-item:focus > .navigation .navigation-dropdown-link,
.navigation-dropdown-item.is-active > .navigation .navigation-dropdown-link {
  background-color: #131313;
}
.navigation .navigation-dropdown-link > .submenu-indicator {
  border-color: transparent #e6e6e6 #e6e6e6 transparent;
}
.navigation .navigation-megamenu h6 {
  font-size: 1.4rem;
  font-family: 'FreightSans Book', Helvetica;
}
.navigation .navigation-megamenu.is-visible {
  border-bottom-color: #333333;
}
@media (min-width: 1440px) {
  .navigation .navigation-megamenu.is-visible {
    border-top-color: #333333;
  }
}
.navigation .navigation-list-heading > a:hover {
  color: #f2f2f2 !important;
}
.navigation-megamenu:after {
  content: "";
  width: 100%;
  background: #000;
  position: relative;
  height: 100px;
  box-shadow: 0 6px 40px 0 rgba(0, 0, 0, 0.5), 0 -1px 0 0 #A9A9A9;
}
@media screen and (max-width: 44.9375rem) {
  .navigation-megamenu .loginbereich {
    max-width: 100% !important;
  }
}
/* UTILITIES
 ================================*/
.img-fluid {
  max-width: 100%;
  height: auto;
}
.m-0 {
  margin: 0 !important;
}
.p-0 {
  padding: 0 !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.text-center {
  text-align: center !important;
}
.align-to-right {
  margin-left: auto !important;
}
.align-to-left {
  margin-right: auto !important;
}
.margin-top {
  margin-top: 1rem !important;
}
@media (min-width: 992px) {
  .margin-top {
    margin-top: 0 !important;
  }
}
@media (min-width: 992px) {
  .hide-on-portrait {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .hide-on-landscape {
    display: none !important;
  }
}
.flex-container_card {
  margin-bottom: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-container_card.flex_column {
  margin: 0;
}
.flex-container_card .col {
  background: #FFFFFF;
  box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}
.flex-container_card .col .linkto {
  color: #850E11;
  font-weight: bold;
}
.flex-container_card .col .linkto:after {
  content: "\e315";
  font-family: "ws-icons";
  position: relative;
  font-size: 1.5rem;
  top: 5px;
}
.flex-container_card .col .img-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-container_card .col h2 {
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.flex-container_card .col:hover .plus {
  opacity: 1;
  transform: scale(1);
}
.flex-container_card .col:hover .over {
  opacity: 1;
}
.flex-container_card .col .plus {
  position: absolute;
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #131313;
  transform: scale(2);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.flex-container_card .col .plus:before {
  position: absolute;
  top: 34px;
  left: 25px;
  width: 20px;
  height: 2px;
  content: "";
  background: #fff;
}
.flex-container_card .col .plus:after {
  position: absolute;
  left: 34px;
  top: 25px;
  width: 2px;
  height: 20px;
  content: "";
  background: #ffffff;
}
.flex-container_card .col .over {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.flex-container_card .col a {
  transition: 200ms all ease;
}
.flex-container_card .flex-item_bg {
  background: #FFFFFF;
  box-shadow: 0 0 25px 0 #E7E7E7;
  max-width: 80em;
  max-height: 350px;
  height: 100%;
}
@media screen and (max-width: 44.9375rem) {
  .flex-container_card .flex-item_bg {
    max-width: 100%;
    max-height: 100%;
  }
}
.flex-container_card .card_body {
  position: relative;
  display: -ms-flexbox;
  display: flex;
}
.flex-container_card .card_body .col {
  background: #FFFFFF;
  box-shadow: 0 1px 20px 3px rgba(153, 149, 149, 0.05);
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}
.flex-container_card .card_body .col .linkto {
  color: #850E11;
  font-weight: bold;
}
.flex-container_card .card_body .col .linkto:after {
  content: "\e315";
  font-family: "ws-icons";
  position: relative;
  font-size: 1.5rem;
  top: 5px;
}
.flex-container_card .card_body .col .img-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-container_card .card_body .col h2 {
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.flex-container_card .card_body .col:hover .plus {
  opacity: 1;
  transform: scale(1);
}
.flex-container_card .card_body .col:hover .over {
  opacity: 1;
}
.flex-container_card .card_body .col .plus {
  position: absolute;
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #131313;
  transform: scale(2);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.flex-container_card .card_body .col .plus:before {
  position: absolute;
  top: 34px;
  left: 25px;
  width: 20px;
  height: 2px;
  content: "";
  background: #fff;
}
.flex-container_card .card_body .col .plus:after {
  position: absolute;
  left: 34px;
  top: 25px;
  width: 2px;
  height: 20px;
  content: "";
  background: #ffffff;
}
.flex-container_card .card_body .col .over {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.flex-container_card .card_body .col a {
  transition: 200ms all ease;
}
@media screen and (max-width: 44.9375rem) {
  .flex-container_card .card_body {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.flex-container_card .card_body img {
  max-width: 100%;
  width: 100%;
}
.flex-container_card .text_info {
  padding: 3rem;
}
@media (min-width: 992px) {
  .flex-container_card .text_info .info_line::before {
    content: "";
    display: inline-block;
    width: 100px;
    height: 1px;
    background-color: #131313;
    margin-right: -5px;
    position: absolute;
    margin-left: -20%;
    top: 65px;
  }
}
@media screen and (min-width: 40.25rem) {
  .flex-container_card .text_info {
    padding: 3rem;
  }
}
@media screen and (max-width: 44.9375rem) {
  .flex-container_card .text_info {
    padding: 1rem;
  }
}
.flex-container_card .text_info p {
  color: #737373;
}
.flex-container_card .text_info .btn {
  display: inline-block;
  text-decoration: none;
  transition: all 0.275s;
  background-color: #131313;
  color: #FFFFFF;
  border: 1px solid #131313;
  padding: 0.5em 0.8em 0.5em 0.8em;
  border-radius: 3px;
  margin: 2em 0 1em 0;
}
.flex-container_card .text_info .btn:hover {
  background: #FFFFFF;
  border: 1px solid #131313;
}
.flex-container_card .text_info .btn:hover span {
  color: #131313;
}
.flex-container_card .text_info .btn span {
  color: #FFFFFF;
}
.flex-container_card .text_info .btn span:before {
  font-family: ws-icons;
  content: "\e904";
  position: relative;
  margin-right: 1rem;
  font-size: 1.5rem;
  float: left;
}
.swiper-container_card {
  overflow: hidden;
  padding: 1rem;
}
.marginalColumn .flex-container_card .info_line {
  display: none;
}
.marginalColumn .flex-container_card .card_body {
  -ms-flex-direction: column;
  flex-direction: column;
}
.marginalColumn .flex-container_card .card_body .text_info {
  padding: 1rem;
}
.marginalColumn .flex-container_card .card_body .text_info .btn {
  padding: 0.4rem;
}
.marginalColumn .flex-container_card .flex-item_bg {
  max-height: 100%;
  margin-bottom: 1rem;
}
/*# sourceMappingURL=theme.css.map */