@charset "UTF-8";
/**
 * Internal SCSS-build methods (they're not ment to be used in SCSS as they're
 * generating other styles and/or mixins). Marked by a '_'-prefix in the method name.
 */
/**
 * Public ment SCSS-mixins that can/should be used in general code.
 */
/* line 5, src/client/styles/global/_buttons.scss */
.neo-button, .neo-form .form .button-wrapper input[type='submit'] {
  border-radius: 0;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  font-family: "Bechtle-DIN", sans-serif;
  font-size: 1rem;
  line-height: 1.333rem;
  min-height: 40px;
  padding: 0 20px 2px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
}

/* line 23, src/client/styles/global/_buttons.scss */
.neo-button:hover, .neo-form .form .button-wrapper input:hover[type='submit'] {
  -webkit-box-shadow: inset 0 0 0 50px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 0 0 50px rgba(0, 0, 0, 0.1);
  color: inherit;
}

/* line 28, src/client/styles/global/_buttons.scss */
.neo-button:focus, .neo-form .form .button-wrapper input:focus[type='submit'] {
  color: inherit;
}

/* line 32, src/client/styles/global/_buttons.scss */
.neo-button--brand, .neo-button--dark, .neo-button--blue {
  background-color: #155195;
  color: #FFF;
}

/* line 38, src/client/styles/global/_buttons.scss */
.neo-button--brand:hover, .neo-button--brand:focus, .neo-button--dark:hover, .neo-button--dark:focus, .neo-button--blue:hover, .neo-button--blue:focus {
  color: #FFF;
}

/* line 44, src/client/styles/global/_buttons.scss */
.neo-button--brand.neo-button--download::before, .neo-button--dark.neo-button--download::before, .neo-button--blue.neo-button--download::before {
  background-image: url("../assets/img/download-white.png");
}

/* line 50, src/client/styles/global/_buttons.scss */
.neo-button--grey, .neo-button--gray, .neo-form .form .button-wrapper input[type='submit'][onclick] {
  background-color: #DBDCDE;
  color: #000;
}

/* line 55, src/client/styles/global/_buttons.scss */
.neo-button--grey:hover, .neo-button--grey:focus, .neo-button--gray:hover, .neo-form .form .button-wrapper input:hover[type='submit'][onclick], .neo-button--gray:focus, .neo-form .form .button-wrapper input:focus[type='submit'][onclick] {
  color: #000;
}

/* line 61, src/client/styles/global/_buttons.scss */
.neo-button--light {
  background-color: #FFF;
  color: #000;
}

/* line 65, src/client/styles/global/_buttons.scss */
.neo-button--light:hover, .neo-button--light:focus {
  color: #000;
}

/* line 71, src/client/styles/global/_buttons.scss */
.neo-button--black {
  background-color: #000;
  color: #FFF;
}

/* line 75, src/client/styles/global/_buttons.scss */
.neo-button--black:hover {
  color: #DBDCDE;
}

/* line 79, src/client/styles/global/_buttons.scss */
.neo-button--black:focus {
  color: #FFF;
}

/* line 84, src/client/styles/global/_buttons.scss */
.neo-button--green, .neo-form .form .button-wrapper input[type='submit']:not([onclick]) {
  background-color: #6BC756;
  color: #FFF;
}

/* line 88, src/client/styles/global/_buttons.scss */
.neo-button--green:hover, .neo-form .form .button-wrapper input:hover[type='submit']:not([onclick]), .neo-button--green:focus, .neo-form .form .button-wrapper input:focus[type='submit']:not([onclick]) {
  color: #FFF;
}

/* line 94, src/client/styles/global/_buttons.scss */
.neo-button--outline {
  background-color: inherit;
  color: #FFF;
  border: 1px solid #FFF;
}

/* line 99, src/client/styles/global/_buttons.scss */
.neo-button--outline:hover {
  color: #B2B2B2;
  border: 1px solid #B2B2B2;
}

/* line 104, src/client/styles/global/_buttons.scss */
.neo-button--outline:focus {
  color: #FFF;
}

/* line 109, src/client/styles/global/_buttons.scss */
.neo-button--outlineDark {
  background-color: inherit;
  color: #000;
  border: 1px solid #000;
}

/* line 114, src/client/styles/global/_buttons.scss */
.neo-button--outlineDark:hover {
  color: #535353;
  border: 1px solid #535353;
}

/* line 119, src/client/styles/global/_buttons.scss */
.neo-button--outlineDark:focus {
  color: #000;
}

/* line 124, src/client/styles/global/_buttons.scss */
.neo-button--border {
  background-color: inherit;
  color: inherit;
  border: 1px solid;
}

/* line 130, src/client/styles/global/_buttons.scss */
.neo-button--big {
  min-height: 50px;
  font-size: 1.333rem;
  padding-bottom: 4px;
}

/* line 136, src/client/styles/global/_buttons.scss */
.neo-button--small {
  height: 30px;
  font-size: 0.867rem;
  padding-bottom: 0;
}

/* line 142, src/client/styles/global/_buttons.scss */
.neo-button--back {
  position: relative;
  padding-left: 40px;
}

/* line 146, src/client/styles/global/_buttons.scss */
.neo-button--back::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  background-image: url("../assets/img/chevron-thin-left.png");
  background-repeat: no-repeat;
  background-position: center;
}

/* line 159, src/client/styles/global/_buttons.scss */
.neo-button--disabled {
  cursor: default;
}

/* line 162, src/client/styles/global/_buttons.scss */
.neo-button--disabled:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 167, src/client/styles/global/_buttons.scss */
.neo-button--download {
  position: relative;
  padding-left: 40px;
}

/* line 171, src/client/styles/global/_buttons.scss */
.neo-button--download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  background-image: url("../assets/img/download.png");
  background-repeat: no-repeat;
  background-position: center;
}

/* line 184, src/client/styles/global/_buttons.scss */
.neo-button--icon {
  -ms-flex-preferred-size: inherit;
      flex-basis: inherit;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding: 8.5px 10px 8.5px 20px;
}

/* line 189, src/client/styles/global/_buttons.scss */
.neo-button--icon > .neo-icon {
  margin-left: 10px;
  margin-right: 0;
  top: 2px;
}

/* line 195, src/client/styles/global/_buttons.scss */
.neo-button--icon-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 8.5px 20px 8.5px 10px;
}

/* line 199, src/client/styles/global/_buttons.scss */
.neo-button--icon-left > .neo-icon--left {
  margin-left: 0;
  margin-right: 10px;
}

/* line 206, src/client/styles/global/_buttons.scss */
.neo-button__label {
  white-space: normal;
  word-break: break-all;
}

@media (max-width: 479px) {
  /* line 213, src/client/styles/global/_buttons.scss */
  .neo-button + .neo-button, .neo-form .form .button-wrapper input[type='submit'] + .neo-button, .neo-form .form .button-wrapper .neo-button + input[type='submit'], .neo-form .form .button-wrapper input[type='submit'] + input[type='submit'] {
    margin-top: 10px;
  }
}

/**
 * Some variables used for debugging only. Please prefix further variable
 *  with 'debug' in front.
 */
/**
 * Some mixins used for debugging only. Please prefix further mixins
 *  with 'debug' in front.
 */
/**
 * Beside the fact that we won't use '!important' in legacy code (not, never, no way... don't. do. IT.!),
 *  we can use it here for the debug mode as this is nothing that the user will ever see. In some case
 *  you'll be forced to use it anyway.
 *
 * We're also might have some specific debug-classes. These can be used to indicate that your
 *  component-or-what-ever-you-have will appear in that 'debug'-style:
 *
 * .neoDebug-layoutBox  >  renders a layout indication box. note that this will (forcefully) sets
 *                          'position:relative;' on your component.
 */
/* line 49, src/client/styles/global/_debug.scss */
.neoDebug {
  /**
     * RENDER BREAKPOINT INDICATOR
     * this utilizes a hidden value writen into the page context for JS. If debug is active
     * we can show the actual breakpoint using this hidden value.
     */
  /**
     * RENDER LAYOUT BOXES
     */
}

/* line 55, src/client/styles/global/_debug.scss */
.neoDebug::after {
  display: block !important;
  position: fixed;
  top: 5px;
  left: 5px;
  padding: 4px 10px;
  background-color: lightgray;
  border-radius: 5px;
  border: 2px solid darkgray;
  text-transform: uppercase;
  z-index: 10000;
  font-size: 12px;
  font-weight: bold;
  pointer-events: none;
  opacity: .75;
}

/* line 75, src/client/styles/global/_debug.scss */
.neoDebug .neoDebug-layoutBox,
.neoDebug .neo-layout__header,
.neoDebug .neo-layout__main,
.neoDebug .neo-layout__footer,
.neoDebug .neo-stage,
.neoDebug .neo-spacer {
  position: relative !important;
}

/* line 14, src/client/styles/global/_debug.scss */
.neoDebug .neoDebug-layoutBox::after,
.neoDebug .neo-layout__header::after,
.neoDebug .neo-layout__main::after,
.neoDebug .neo-layout__footer::after,
.neoDebug .neo-stage::after,
.neoDebug .neo-spacer::after {
  content: attr(class);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  font-size: 10px;
  font-weight: bold;
  border-radius: 5px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(224, 32, 32, 0.2)), to(rgba(255, 255, 255, 0.2)));
  background: linear-gradient(to bottom, rgba(224, 32, 32, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
  border: 2px solid rgba(224, 32, 32, 0.2);
  border-top-width: 8px;
}

/* line 86, src/client/styles/global/_debug.scss */
.neoDebug .neoDebug-element {
  display: block;
}

/* line 91, src/client/styles/global/_debug.scss */
.neoDebug-element {
  display: none;
  position: relative;
  padding: 5px;
}

/* line 14, src/client/styles/global/_debug.scss */
.neoDebug-element::after {
  content: attr(class);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  font-size: 10px;
  font-weight: bold;
  border-radius: 5px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 191, 0, 0.2)), to(rgba(255, 255, 255, 0.2)));
  background: linear-gradient(to bottom, rgba(0, 191, 0, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
  border: 2px solid rgba(0, 191, 0, 0.2);
  border-top-width: 8px;
}

/* line 98, src/client/styles/global/_debug.scss */
.neoDebug-element::after {
  content: '';
}

/* line 1, src/client/styles/global/_external.scss */
.atlwdg-trigger.atlwdg-TOP {
  z-index: 1000;
}

/* line 5, src/client/styles/global/_external.scss */
img.neo-teaserComBox__img {
  max-width: 100%;
  max-height: 178px;
}

@font-face {
  font-display: swap;
  font-family: "Bechtle-DIN";
  src: url("../assets/fonts/bechtle-din--normal.woff") format("woff"), url("../assets/fonts/bechtle-din--normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "Bechtle-DIN";
  src: url("../assets/fonts/bechtle-din--medium.woff") format("woff"), url("../assets/fonts/bechtle-din--medium.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "Bechtle-DIN";
  src: url("../assets/fonts/bechtle-din--bold.woff") format("woff"), url("../assets/fonts/bechtle-din--bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "Bechtle-DIN-Condensed";
  src: url("../assets/fonts/bechtle-din-condensed--light.woff") format("woff"), url("../assets/fonts/bechtle-din-condensed--light.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "Bechtle-DIN-Condensed";
  src: url("../assets/fonts/bechtle-din-condensed--normal.woff") format("woff"), url("../assets/fonts/bechtle-din-condensed--normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "Bechtle-DIN-Slab";
  src: url("../assets/fonts/bechtle-din-slab--normal.woff") format("woff"), url("../assets/fonts/bechtle-din-slab--normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "Bechtle-DIN-Slab";
  src: url("../assets/fonts/bechtle-din-slab--medium.woff") format("woff"), url("../assets/fonts/bechtle-din-slab--medium.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

/* line 28, src/client/styles/global/_grid.scss */
.neo-grid {
  margin: 0 -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* line 36, src/client/styles/global/_grid.scss */
.neo-grid--fix {
  margin: 0 5px;
}

/* line 40, src/client/styles/global/_grid.scss */
.neo-grid--stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/* line 44, src/client/styles/global/_grid.scss */
.neo-grid--justify-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 22, src/client/styles/global/_grid.scss */
.neo-grid__cell_xs-1 {
  display: inline-block;
  position: relative;
  min-height: 1px;
  width: calc(8.33333% - 10px);
}

/* line 22, src/client/styles/global/_grid.scss */
.neo-grid__cell_xs-2 {
  display: inline-block;
  position: relative;
  min-height: 1px;
  width: calc(16.66667% - 10px);
}

/* line 22, src/client/styles/global/_grid.scss */
.neo-grid__cell_xs-3 {
  display: inline-block;
  position: relative;
  min-height: 1px;
  width: calc(25% - 10px);
}

/* line 22, src/client/styles/global/_grid.scss */
.neo-grid__cell_xs-4, .neo-textMedia--4to8Layout .neo-textMedia__media, .neo-textMedia--2to4Layout .neo-textMedia__media {
  display: inline-block;
  position: relative;
  min-height: 1px;
  width: calc(33.33333% - 10px);
}

/* line 22, src/client/styles/global/_grid.scss */
.neo-grid__cell_xs-5 {
  display: inline-block;
  position: relative;
  min-height: 1px;
  width: calc(41.66667% - 10px);
}

/* line 22, src/client/styles/global/_grid.scss */
.neo-grid__cell_xs-6, .neo-textMedia--6to6Layout .neo-textMedia__media, .neo-textMedia--6to6Layout .neo-textMedia__text {
  display: inline-block;
  position: relative;
  min-height: 1px;
  width: calc(50% - 10px);
}

/* line 22, src/client/styles/global/_grid.scss */
.neo-grid__cell_xs-7 {
  display: inline-block;
  position: relative;
  min-height: 1px;
  width: calc(58.33333% - 10px);
}

/* line 22, src/client/styles/global/_grid.scss */
.neo-grid__cell_xs-8, .neo-textMedia--4to8Layout .neo-textMedia__text, .neo-textMedia--2to4Layout .neo-textMedia__text {
  display: inline-block;
  position: relative;
  min-height: 1px;
  width: calc(66.66667% - 10px);
}

/* line 22, src/client/styles/global/_grid.scss */
.neo-grid__cell_xs-9 {
  display: inline-block;
  position: relative;
  min-height: 1px;
  width: calc(75% - 10px);
}

/* line 22, src/client/styles/global/_grid.scss */
.neo-grid__cell_xs-10 {
  display: inline-block;
  position: relative;
  min-height: 1px;
  width: calc(83.33333% - 10px);
}

/* line 22, src/client/styles/global/_grid.scss */
.neo-grid__cell_xs-11 {
  display: inline-block;
  position: relative;
  min-height: 1px;
  width: calc(91.66667% - 10px);
}

/* line 22, src/client/styles/global/_grid.scss */
.neo-grid__cell_xs-12 {
  display: inline-block;
  position: relative;
  min-height: 1px;
  width: 100%;
}

@media (min-width: 480px) {
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_sm-1 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(8.33333% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_sm-2 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(16.66667% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_sm-3 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(25% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_sm-4 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(33.33333% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_sm-5 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(41.66667% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_sm-6 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(50% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_sm-7 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(58.33333% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_sm-8 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(66.66667% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_sm-9 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(75% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_sm-10 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(83.33333% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_sm-11 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(91.66667% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_sm-12 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_md-1 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(8.33333% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_md-2 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(16.66667% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_md-3 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(25% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_md-4 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(33.33333% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_md-5 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(41.66667% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_md-6 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(50% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_md-7 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(58.33333% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_md-8 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(66.66667% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_md-9 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(75% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_md-10 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(83.33333% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_md-11 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(91.66667% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_md-12 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_lg-1 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(8.33333% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_lg-2 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(16.66667% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_lg-3 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(25% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_lg-4 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(33.33333% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_lg-5 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(41.66667% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_lg-6 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(50% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_lg-7 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(58.33333% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_lg-8 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(66.66667% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_lg-9 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(75% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_lg-10 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(83.33333% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_lg-11 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(91.66667% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_lg-12 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: 100%;
  }
}

@media (min-width: 1400px) {
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_xl-1 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(8.33333% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_xl-2 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(16.66667% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_xl-3 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(25% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_xl-4 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(33.33333% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_xl-5 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(41.66667% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_xl-6 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(50% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_xl-7 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(58.33333% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_xl-8 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(66.66667% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_xl-9 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(75% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_xl-10 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(83.33333% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_xl-11 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: calc(91.66667% - 10px);
  }
  /* line 22, src/client/styles/global/_grid.scss */
  .neo-grid__cell_xl-12 {
    display: inline-block;
    position: relative;
    min-height: 1px;
    width: 100%;
  }
}

/* line 18, src/client/styles/global/_icons.scss */
.neo-icon {
  position: relative;
  vertical-align: baseline;
}

/* line 3, src/client/styles/global/_icons.scss */
.neo-icon--xs > svg {
  width: 10px;
  height: 10px;
}

/* line 3, src/client/styles/global/_icons.scss */
.neo-icon--sm > svg {
  width: 20px;
  height: 20px;
}

/* line 3, src/client/styles/global/_icons.scss */
.neo-icon--md > svg {
  width: 30px;
  height: 30px;
}

/* line 3, src/client/styles/global/_icons.scss */
.neo-icon--lg > svg {
  width: 50px;
  height: 50px;
}

/* line 12, src/client/styles/global/_icons.scss */
.neo-icon--white > svg, .neo-headerTheme--light .neo-icon > svg {
  fill: #FFF;
}

/* line 12, src/client/styles/global/_icons.scss */
.neo-icon--black > svg, .neo-header__inner_search_box .neo-icon--black > svg, .neo-headerTheme--dark .neo-icon > svg {
  fill: #000;
}

/* line 12, src/client/styles/global/_icons.scss */
.neo-icon--blue > svg {
  fill: #155195;
}

/* line 12, src/client/styles/global/_icons.scss */
.neo-icon--inherit > svg {
  fill: inherit;
}

/* line 32, src/client/styles/global/_icons.scss */
.neo-icon__menu {
  display: block;
  top: 50%;
  margin-top: -2px;
}

/* line 38, src/client/styles/global/_icons.scss */
.neo-icon__menu, .neo-icon__menu::before, .neo-icon__menu::after {
  height: 4px;
  background-color: #FFF;
  position: relative;
}

/* line 46, src/client/styles/global/_icons.scss */
.neo-icon__menu::before, .neo-icon__menu::after {
  content: "";
  display: block;
}

/* line 52, src/client/styles/global/_icons.scss */
.neo-icon__menu::before {
  top: -10px;
}

/* line 56, src/client/styles/global/_icons.scss */
.neo-icon__menu::after {
  bottom: -5px;
}

/* line 61, src/client/styles/global/_icons.scss */
.neo-icon--header > svg {
  width: 25px;
  height: 25px;
}

/* line 2, src/client/styles/global/_ie_hacks.scss */
_:-ms-fullscreen,
:root .neo-button,
:root .neo-form .form .button-wrapper input[type='submit'],
.neo-form .form .button-wrapper :root input[type='submit'] {
  height: 40px;
}

/* line 8, src/client/styles/global/_ie_hacks.scss */
_:-ms-fullscreen,
:root img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 479px) {
  /* line 14, src/client/styles/global/_ie_hacks.scss */
  _:-ms-fullscreen,
  :root .neo-pressOverview__item {
    display: block;
  }
}

/* line 22, src/client/styles/global/_ie_hacks.scss */
_:-ms-fullscreen,
:root .neo-button,
:root .neo-form .form .button-wrapper input[type='submit'],
.neo-form .form .button-wrapper :root input[type='submit'] {
  min-width: 85px;
}

/* line 3, src/client/styles/global/_input.scss */
.neo-input {
  font-family: "Bechtle-DIN", sans-serif;
  font-size: 1rem;
  line-height: 1rem;
}

/* line 9, src/client/styles/global/_input.scss */
.neo-form__input,
.neo-form__checkbox,
.neo-form__radio,
.neo-form__radiogroup,
.neo-form__select {
  position: relative;
  margin-bottom: 10px;
}

/* line 19, src/client/styles/global/_input.scss */
.neo-form__input--required::after,
.neo-form__checkbox--required::after,
.neo-form__radio--required::after,
.neo-form__radiogroup--required::after,
.neo-form__select--required::after {
  position: absolute;
  content: "*";
  top: 0;
  right: -10px;
}

/* line 27, src/client/styles/global/_input.scss */
.neo-form__input ::-webkit-input-placeholder,
.neo-form__checkbox ::-webkit-input-placeholder,
.neo-form__radio ::-webkit-input-placeholder,
.neo-form__radiogroup ::-webkit-input-placeholder,
.neo-form__select ::-webkit-input-placeholder {
  color: #ACACAC;
}
.neo-form__input ::-ms-input-placeholder,
.neo-form__checkbox ::-ms-input-placeholder,
.neo-form__radio ::-ms-input-placeholder,
.neo-form__radiogroup ::-ms-input-placeholder,
.neo-form__select ::-ms-input-placeholder {
  color: #ACACAC;
}
.neo-form__input ::placeholder,
.neo-form__checkbox ::placeholder,
.neo-form__radio ::placeholder,
.neo-form__radiogroup ::placeholder,
.neo-form__select ::placeholder {
  color: #ACACAC;
}

/* line 31, src/client/styles/global/_input.scss */
.neo-form__input .neo-form__input--error,
.neo-form__checkbox .neo-form__input--error,
.neo-form__radio .neo-form__input--error,
.neo-form__radiogroup .neo-form__input--error,
.neo-form__select .neo-form__input--error {
  padding-top: 1px;
  border-bottom: 2px solid #D94119;
}

/* line 39, src/client/styles/global/_input.scss */
.neo-form__checkbox {
  width: 100%;
}

/* line 42, src/client/styles/global/_input.scss */
.neo-form__checkbox.neo-form__input--error input[type='checkbox'] + label::before {
  border: 2px solid #D94119;
}

/* line 51, src/client/styles/global/_input.scss */
.form-item input[type='checkbox'],
.form-item input[type='radio'],
.neo-form__checkbox input[type='checkbox'],
.neo-form__checkbox input[type='radio'],
.neo-form__radio input[type='checkbox'],
.neo-form__radio input[type='radio'] {
  background: transparent;
  display: block;
  position: absolute;
  visibility: hidden;
  height: 0;
  margin: 0;
  padding: 0;
}

/* line 61, src/client/styles/global/_input.scss */
.form-item input[type='checkbox'] + label,
.form-item input[type='radio'] + label,
.neo-form__checkbox input[type='checkbox'] + label,
.neo-form__checkbox input[type='radio'] + label,
.neo-form__radio input[type='checkbox'] + label,
.neo-form__radio input[type='radio'] + label {
  cursor: pointer;
  display: block;
  position: relative;
  left: 25px;
  top: -2px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* line 69, src/client/styles/global/_input.scss */
.form-item input[type='checkbox'] + label::before,
.form-item input[type='radio'] + label::before,
.neo-form__checkbox input[type='checkbox'] + label::before,
.neo-form__checkbox input[type='radio'] + label::before,
.neo-form__radio input[type='checkbox'] + label::before,
.neo-form__radio input[type='radio'] + label::before {
  color: #FFF;
  background-color: #FFF;
  font-size: 0.867rem;
  font-weight: 700;
  line-height: 0.66rem;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid #DBDCDE;
  position: relative;
  left: -25px;
  margin-right: -20px;
}

/* line 86, src/client/styles/global/_input.scss */
.form-item input[type='checkbox']:hover + label::before,
.form-item input[type='radio']:hover + label::before,
.neo-form__checkbox input[type='checkbox']:hover + label::before,
.neo-form__checkbox input[type='radio']:hover + label::before,
.neo-form__radio input[type='checkbox']:hover + label::before,
.neo-form__radio input[type='radio']:hover + label::before {
  background: #DBDCDE;
  color: #DBDCDE;
}

/* line 93, src/client/styles/global/_input.scss */
.form-item input[type='checkbox']:checked + label::before,
.form-item input[type='radio']:checked + label::before,
.neo-form__checkbox input[type='checkbox']:checked + label::before,
.neo-form__checkbox input[type='radio']:checked + label::before,
.neo-form__radio input[type='checkbox']:checked + label::before,
.neo-form__radio input[type='radio']:checked + label::before {
  background: #155195;
  border-color: #155195;
}

/* line 102, src/client/styles/global/_input.scss */
.form-item input[type='checkbox'] + label::before,
.neo-form__checkbox input[type='checkbox'] + label::before,
.neo-form__radio input[type='checkbox'] + label::before {
  content: '✓';
}

/* line 109, src/client/styles/global/_input.scss */
.form-item input[type='radio'] + label::before,
.neo-form__checkbox input[type='radio'] + label::before,
.neo-form__radio input[type='radio'] + label::before {
  content: '\00a0';
  border-radius: 100%;
}

/* line 115, src/client/styles/global/_input.scss */
.form-item input[type='radio']:checked + label::before,
.neo-form__checkbox input[type='radio']:checked + label::before,
.neo-form__radio input[type='radio']:checked + label::before {
  color: #155195;
  background-color: #155195;
  -webkit-box-shadow: inset 0 0 0 3px #FFF;
          box-shadow: inset 0 0 0 3px #FFF;
}

/* line 128, src/client/styles/global/_input.scss */
.form-item--disabled input[type='checkbox'] + label,
.form-item--disabled input[type='radio'] + label,
.neo-form__checkbox--disabled input[type='checkbox'] + label,
.neo-form__checkbox--disabled input[type='radio'] + label,
.neo-form__radio--disabled input[type='checkbox'] + label,
.neo-form__radio--disabled input[type='radio'] + label {
  color: #ACACAC;
  cursor: default;
}

/* line 133, src/client/styles/global/_input.scss */
.form-item--disabled input[type='checkbox'] + label::before,
.form-item--disabled input[type='radio'] + label::before,
.neo-form__checkbox--disabled input[type='checkbox'] + label::before,
.neo-form__checkbox--disabled input[type='radio'] + label::before,
.neo-form__radio--disabled input[type='checkbox'] + label::before,
.neo-form__radio--disabled input[type='radio'] + label::before {
  background-color: #FFF;
  border-color: #F7F7F7;
  color: #F7F7F7;
}

/* line 141, src/client/styles/global/_input.scss */
.form-item--disabled input[type='checkbox']:hover + label::before, .form-item--disabled input[type='checkbox']:checked + label::before,
.form-item--disabled input[type='radio']:hover + label::before,
.form-item--disabled input[type='radio']:checked + label::before,
.neo-form__checkbox--disabled input[type='checkbox']:hover + label::before,
.neo-form__checkbox--disabled input[type='checkbox']:checked + label::before,
.neo-form__checkbox--disabled input[type='radio']:hover + label::before,
.neo-form__checkbox--disabled input[type='radio']:checked + label::before,
.neo-form__radio--disabled input[type='checkbox']:hover + label::before,
.neo-form__radio--disabled input[type='checkbox']:checked + label::before,
.neo-form__radio--disabled input[type='radio']:hover + label::before,
.neo-form__radio--disabled input[type='radio']:checked + label::before {
  background-color: #FFF;
  border-color: #F7F7F7;
  color: #F7F7F7;
}

/* line 151, src/client/styles/global/_input.scss */
.neo-form__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: 20px;
  width: 100%;
}

/* line 158, src/client/styles/global/_input.scss */
.neo-form__select_label {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  margin-right: 20px;
  -ms-word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 10px 0;
}

/* line 167, src/client/styles/global/_input.scss */
.neo-form__select_twoRowsLabel {
  padding: 0;
}

/* line 171, src/client/styles/global/_input.scss */
.neo-form__select_input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 20px 0 10px;
  min-width: 0;
}

/* line 179, src/client/styles/global/_input.scss */
.neo-form__select_input::-ms-expand {
  display: none;
}

/* line 184, src/client/styles/global/_input.scss */
.neo-form__select::before {
  border: 5px solid transparent;
  border-top-color: #000;
  content: "";
  position: absolute;
  right: 7px;
  top: 17px;
}

/* line 194, src/client/styles/global/_input.scss */
.neo-form__input_text, .neo-form__select_input, .neo-form .form input:not([type='checkbox']):not([type='radio']), .neo-form .form select {
  border-bottom: 1px solid #DBDCDE;
  border-radius: 0;
  height: 40px;
}

/* line 199, src/client/styles/global/_input.scss */
.neo-form__input_text:hover, .neo-form__select_input:hover, .neo-form .form input:hover:not([type='checkbox']):not([type='radio']), .neo-form .form select:hover {
  border-bottom: 1px solid #155195;
}

/* line 203, src/client/styles/global/_input.scss */
.neo-form__input_text:focus, .neo-form__select_input:focus, .neo-form .form input:focus:not([type='checkbox']):not([type='radio']), .neo-form .form select:focus {
  padding-top: 2px;
  border-bottom: 2px solid #155195;
}

/*
<label class="neo-button neo-toggleButton">
    <input type="checkbox" checked>
    <div class="neo-toggleButton__text"
        data-text-checked="Checked"
        data-text-unchecked="Unchecked">
    </div>
</label>
*/
/* line 218, src/client/styles/global/_input.scss */
.neo-toggleButton {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 40px;
  max-width: 100%;
}

/* line 224, src/client/styles/global/_input.scss */
.neo-toggleButton .neo-icon {
  float: left;
}

/* line 228, src/client/styles/global/_input.scss */
.neo-toggleButton input {
  display: none;
}

/* line 233, src/client/styles/global/_input.scss */
.neo-toggleButton input:checked + .neo-toggleButton__text::after {
  display: none;
}

/* line 237, src/client/styles/global/_input.scss */
.neo-toggleButton input:checked + .neo-toggleButton__text::before {
  display: block;
}

/* line 243, src/client/styles/global/_input.scss */
.neo-toggleButton__text {
  overflow: hidden;
}

/* line 246, src/client/styles/global/_input.scss */
.neo-toggleButton__text::after {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  content: attr(data-text-checked);
  display: block;
  padding-top: 2px;
}

/* line 253, src/client/styles/global/_input.scss */
.neo-toggleButton__text::before {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  content: attr(data-text-unchecked);
  display: none;
  padding-top: 2px;
}

/* line 262, src/client/styles/global/_input.scss */
form .neo-textField {
  width: 100%;
}

/* line 9, src/client/styles/global/_layout.scss */
.neo-html,
.neo-body {
  height: 100%;
}

/* line 14, src/client/styles/global/_layout.scss */
.neo-body::after {
  content: '';
  display: none;
}

@media (max-width: 479px) {
  /* line 14, src/client/styles/global/_layout.scss */
  .neo-body::after {
    content: 'xs';
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 14, src/client/styles/global/_layout.scss */
  .neo-body::after {
    content: 'sm';
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 14, src/client/styles/global/_layout.scss */
  .neo-body::after {
    content: 'md';
  }
}

@media (min-width: 1024px) {
  /* line 14, src/client/styles/global/_layout.scss */
  .neo-body::after {
    content: 'lg';
  }
}

/* line 32, src/client/styles/global/_layout.scss */
.neo-footer__brands_item,
.neo-footer__menu_column,
.neo-customerLinks__list_item,
.neo-organism {
  margin: 10px 5px;
}

/* line 40, src/client/styles/global/_layout.scss */
.neo-organism--full {
  width: 100%;
}

@media (min-width: 1400px) {
  /* line 40, src/client/styles/global/_layout.scss */
  .neo-organism--full {
    margin-left: -220px;
    margin-right: -33px;
    width: calc(100% + 253px);
  }
}

@media (max-width: 1399px) {
  /* line 40, src/client/styles/global/_layout.scss */
  .neo-organism--full {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 2 * 24px);
  }
}

@media (max-width: 1023px) {
  /* line 40, src/client/styles/global/_layout.scss */
  .neo-organism--full {
    margin-left: -22px;
    margin-right: -22px;
    width: calc(100% + 2 * 22px);
  }
}

@media (min-width: 1400px) {
  /* line 62, src/client/styles/global/_layout.scss */
  .neo-organism--grid-offset {
    margin-left: -220px;
    margin-right: -33px;
  }
}

@media (max-width: 1399px) {
  /* line 62, src/client/styles/global/_layout.scss */
  .neo-organism--grid-offset {
    margin-left: -24px;
    margin-right: -24px;
  }
}

@media (max-width: 1023px) {
  /* line 62, src/client/styles/global/_layout.scss */
  .neo-organism--grid-offset {
    margin-left: -22px;
    margin-right: -22px;
  }
}

/* line 79, src/client/styles/global/_layout.scss */
.neo-organism--reduced {
  margin-bottom: 0;
  margin-top: 0;
}

/* line 85, src/client/styles/global/_layout.scss */
.neo-layout {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

@media (min-width: 1400px) {
  /* line 91, src/client/styles/global/_layout.scss */
  .neo-layout__block {
    margin-left: auto;
    margin-right: auto;
    max-width: 1440px;
    width: 100%;
  }
}

@media (min-width: 1400px) {
  /* line 91, src/client/styles/global/_layout.scss */
  .neo-layout__block {
    padding: 0 33px 0 220px;
  }
}

@media (max-width: 1399px) {
  /* line 91, src/client/styles/global/_layout.scss */
  .neo-layout__block {
    padding: 0 24px;
  }
}

@media (max-width: 1023px) {
  /* line 91, src/client/styles/global/_layout.scss */
  .neo-layout__block {
    padding: 0 22px;
  }
}

/* line 95, src/client/styles/global/_layout.scss */
.neo-layout__block_backgroundImage {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

/* line 383, src/client/styles/global/_mixins.scss */
.neo-layout__block_backgroundImage.neo-blur--xs .neo-visibility__label--xs {
  color: #535353;
  text-decoration: line-through;
}

@media (max-width: 479px) {
  /* line 389, src/client/styles/global/_mixins.scss */
  .neo-layout__block_backgroundImage .neo-visibility__label--xs {
    background-color: #DBDCDE;
  }
}

/* line 383, src/client/styles/global/_mixins.scss */
.neo-layout__block_backgroundImage.neo-blur--sm .neo-visibility__label--sm {
  color: #535353;
  text-decoration: line-through;
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 389, src/client/styles/global/_mixins.scss */
  .neo-layout__block_backgroundImage .neo-visibility__label--sm {
    background-color: #DBDCDE;
  }
}

/* line 383, src/client/styles/global/_mixins.scss */
.neo-layout__block_backgroundImage.neo-blur--md .neo-visibility__label--md {
  color: #535353;
  text-decoration: line-through;
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 389, src/client/styles/global/_mixins.scss */
  .neo-layout__block_backgroundImage .neo-visibility__label--md {
    background-color: #DBDCDE;
  }
}

/* line 383, src/client/styles/global/_mixins.scss */
.neo-layout__block_backgroundImage.neo-blur--lg .neo-visibility__label--lg {
  color: #535353;
  text-decoration: line-through;
}

@media (min-width: 1024px) {
  /* line 389, src/client/styles/global/_mixins.scss */
  .neo-layout__block_backgroundImage .neo-visibility__label--lg {
    background-color: #DBDCDE;
  }
}

/* line 104, src/client/styles/global/_layout.scss */
.neo-layout__header {
  min-height: 160px;
}

@media (max-width: 1023px) {
  /* line 104, src/client/styles/global/_layout.scss */
  .neo-layout__header {
    min-height: 180px;
  }
}

@media (max-width: 767px) {
  /* line 104, src/client/styles/global/_layout.scss */
  .neo-layout__header {
    min-height: 80px;
  }
}

@media (min-width: 1400px) {
  /* line 116, src/client/styles/global/_layout.scss */
  .neo-layout__main {
    margin-left: auto;
    margin-right: auto;
    max-width: 1440px;
    width: 100%;
  }
}

@media (min-width: 1400px) {
  /* line 116, src/client/styles/global/_layout.scss */
  .neo-layout__main {
    padding: 0 33px 0 220px;
  }
}

@media (max-width: 1399px) {
  /* line 116, src/client/styles/global/_layout.scss */
  .neo-layout__main {
    padding: 0 24px;
  }
}

@media (max-width: 1023px) {
  /* line 116, src/client/styles/global/_layout.scss */
  .neo-layout__main {
    padding: 0 22px;
  }
}

/* line 124, src/client/styles/global/_layout.scss */
.neo-margin-0 {
  margin: 0px;
}

/* line 128, src/client/styles/global/_layout.scss */
.neo-margin--top-0 {
  margin-top: 0px;
}

/* line 132, src/client/styles/global/_layout.scss */
.neo-margin--right-0 {
  margin-right: 0px;
}

/* line 136, src/client/styles/global/_layout.scss */
.neo-margin--bottom-0 {
  margin-bottom: 0px;
}

/* line 140, src/client/styles/global/_layout.scss */
.neo-margin--left-0 {
  margin-left: 0px;
}

/* line 124, src/client/styles/global/_layout.scss */
.neo-margin-5 {
  margin: 5px;
}

/* line 128, src/client/styles/global/_layout.scss */
.neo-margin--top-5 {
  margin-top: 5px;
}

/* line 132, src/client/styles/global/_layout.scss */
.neo-margin--right-5 {
  margin-right: 5px;
}

/* line 136, src/client/styles/global/_layout.scss */
.neo-margin--bottom-5 {
  margin-bottom: 5px;
}

/* line 140, src/client/styles/global/_layout.scss */
.neo-margin--left-5 {
  margin-left: 5px;
}

/* line 124, src/client/styles/global/_layout.scss */
.neo-margin-10 {
  margin: 10px;
}

/* line 128, src/client/styles/global/_layout.scss */
.neo-margin--top-10 {
  margin-top: 10px;
}

/* line 132, src/client/styles/global/_layout.scss */
.neo-margin--right-10 {
  margin-right: 10px;
}

/* line 136, src/client/styles/global/_layout.scss */
.neo-margin--bottom-10 {
  margin-bottom: 10px;
}

/* line 140, src/client/styles/global/_layout.scss */
.neo-margin--left-10 {
  margin-left: 10px;
}

/* line 124, src/client/styles/global/_layout.scss */
.neo-margin-15 {
  margin: 15px;
}

/* line 128, src/client/styles/global/_layout.scss */
.neo-margin--top-15 {
  margin-top: 15px;
}

/* line 132, src/client/styles/global/_layout.scss */
.neo-margin--right-15 {
  margin-right: 15px;
}

/* line 136, src/client/styles/global/_layout.scss */
.neo-margin--bottom-15, .neo-facility__headline {
  margin-bottom: 15px;
}

/* line 140, src/client/styles/global/_layout.scss */
.neo-margin--left-15 {
  margin-left: 15px;
}

/* line 124, src/client/styles/global/_layout.scss */
.neo-margin-20 {
  margin: 20px;
}

/* line 128, src/client/styles/global/_layout.scss */
.neo-margin--top-20 {
  margin-top: 20px;
}

/* line 132, src/client/styles/global/_layout.scss */
.neo-margin--right-20 {
  margin-right: 20px;
}

/* line 136, src/client/styles/global/_layout.scss */
.neo-margin--bottom-20 {
  margin-bottom: 20px;
}

/* line 140, src/client/styles/global/_layout.scss */
.neo-margin--left-20 {
  margin-left: 20px;
}

/* line 124, src/client/styles/global/_layout.scss */
.neo-margin-25 {
  margin: 25px;
}

/* line 128, src/client/styles/global/_layout.scss */
.neo-margin--top-25 {
  margin-top: 25px;
}

/* line 132, src/client/styles/global/_layout.scss */
.neo-margin--right-25 {
  margin-right: 25px;
}

/* line 136, src/client/styles/global/_layout.scss */
.neo-margin--bottom-25 {
  margin-bottom: 25px;
}

/* line 140, src/client/styles/global/_layout.scss */
.neo-margin--left-25 {
  margin-left: 25px;
}

/* line 124, src/client/styles/global/_layout.scss */
.neo-margin-30 {
  margin: 30px;
}

/* line 128, src/client/styles/global/_layout.scss */
.neo-margin--top-30 {
  margin-top: 30px;
}

/* line 132, src/client/styles/global/_layout.scss */
.neo-margin--right-30 {
  margin-right: 30px;
}

/* line 136, src/client/styles/global/_layout.scss */
.neo-margin--bottom-30 {
  margin-bottom: 30px;
}

/* line 140, src/client/styles/global/_layout.scss */
.neo-margin--left-30 {
  margin-left: 30px;
}

/* line 124, src/client/styles/global/_layout.scss */
.neo-margin-40 {
  margin: 40px;
}

/* line 128, src/client/styles/global/_layout.scss */
.neo-margin--top-40 {
  margin-top: 40px;
}

/* line 132, src/client/styles/global/_layout.scss */
.neo-margin--right-40 {
  margin-right: 40px;
}

/* line 136, src/client/styles/global/_layout.scss */
.neo-margin--bottom-40 {
  margin-bottom: 40px;
}

/* line 140, src/client/styles/global/_layout.scss */
.neo-margin--left-40 {
  margin-left: 40px;
}

/* line 124, src/client/styles/global/_layout.scss */
.neo-margin-50 {
  margin: 50px;
}

/* line 128, src/client/styles/global/_layout.scss */
.neo-margin--top-50 {
  margin-top: 50px;
}

/* line 132, src/client/styles/global/_layout.scss */
.neo-margin--right-50 {
  margin-right: 50px;
}

/* line 136, src/client/styles/global/_layout.scss */
.neo-margin--bottom-50 {
  margin-bottom: 50px;
}

/* line 140, src/client/styles/global/_layout.scss */
.neo-margin--left-50 {
  margin-left: 50px;
}

/* line 124, src/client/styles/global/_layout.scss */
.neo-margin-60 {
  margin: 60px;
}

/* line 128, src/client/styles/global/_layout.scss */
.neo-margin--top-60 {
  margin-top: 60px;
}

/* line 132, src/client/styles/global/_layout.scss */
.neo-margin--right-60 {
  margin-right: 60px;
}

/* line 136, src/client/styles/global/_layout.scss */
.neo-margin--bottom-60 {
  margin-bottom: 60px;
}

/* line 140, src/client/styles/global/_layout.scss */
.neo-margin--left-60 {
  margin-left: 60px;
}

/* line 149, src/client/styles/global/_layout.scss */
.neo-padding-0 {
  padding: 0px;
}

/* line 153, src/client/styles/global/_layout.scss */
.neo-padding--top-0 {
  padding-top: 0px;
}

/* line 157, src/client/styles/global/_layout.scss */
.neo-padding--right-0 {
  padding-right: 0px;
}

/* line 161, src/client/styles/global/_layout.scss */
.neo-padding--bottom-0 {
  padding-bottom: 0px;
}

/* line 165, src/client/styles/global/_layout.scss */
.neo-padding--left-0 {
  padding-left: 0px;
}

/* line 149, src/client/styles/global/_layout.scss */
.neo-padding-5 {
  padding: 5px;
}

/* line 153, src/client/styles/global/_layout.scss */
.neo-padding--top-5 {
  padding-top: 5px;
}

/* line 157, src/client/styles/global/_layout.scss */
.neo-padding--right-5 {
  padding-right: 5px;
}

/* line 161, src/client/styles/global/_layout.scss */
.neo-padding--bottom-5 {
  padding-bottom: 5px;
}

/* line 165, src/client/styles/global/_layout.scss */
.neo-padding--left-5 {
  padding-left: 5px;
}

/* line 149, src/client/styles/global/_layout.scss */
.neo-padding-10 {
  padding: 10px;
}

/* line 153, src/client/styles/global/_layout.scss */
.neo-padding--top-10 {
  padding-top: 10px;
}

/* line 157, src/client/styles/global/_layout.scss */
.neo-padding--right-10 {
  padding-right: 10px;
}

/* line 161, src/client/styles/global/_layout.scss */
.neo-padding--bottom-10 {
  padding-bottom: 10px;
}

/* line 165, src/client/styles/global/_layout.scss */
.neo-padding--left-10 {
  padding-left: 10px;
}

/* line 149, src/client/styles/global/_layout.scss */
.neo-padding-15 {
  padding: 15px;
}

/* line 153, src/client/styles/global/_layout.scss */
.neo-padding--top-15 {
  padding-top: 15px;
}

/* line 157, src/client/styles/global/_layout.scss */
.neo-padding--right-15 {
  padding-right: 15px;
}

/* line 161, src/client/styles/global/_layout.scss */
.neo-padding--bottom-15 {
  padding-bottom: 15px;
}

/* line 165, src/client/styles/global/_layout.scss */
.neo-padding--left-15 {
  padding-left: 15px;
}

/* line 149, src/client/styles/global/_layout.scss */
.neo-padding-20 {
  padding: 20px;
}

/* line 153, src/client/styles/global/_layout.scss */
.neo-padding--top-20 {
  padding-top: 20px;
}

/* line 157, src/client/styles/global/_layout.scss */
.neo-padding--right-20 {
  padding-right: 20px;
}

/* line 161, src/client/styles/global/_layout.scss */
.neo-padding--bottom-20 {
  padding-bottom: 20px;
}

/* line 165, src/client/styles/global/_layout.scss */
.neo-padding--left-20 {
  padding-left: 20px;
}

/* line 149, src/client/styles/global/_layout.scss */
.neo-padding-25 {
  padding: 25px;
}

/* line 153, src/client/styles/global/_layout.scss */
.neo-padding--top-25 {
  padding-top: 25px;
}

/* line 157, src/client/styles/global/_layout.scss */
.neo-padding--right-25 {
  padding-right: 25px;
}

/* line 161, src/client/styles/global/_layout.scss */
.neo-padding--bottom-25 {
  padding-bottom: 25px;
}

/* line 165, src/client/styles/global/_layout.scss */
.neo-padding--left-25 {
  padding-left: 25px;
}

/* line 149, src/client/styles/global/_layout.scss */
.neo-padding-30 {
  padding: 30px;
}

/* line 153, src/client/styles/global/_layout.scss */
.neo-padding--top-30 {
  padding-top: 30px;
}

/* line 157, src/client/styles/global/_layout.scss */
.neo-padding--right-30 {
  padding-right: 30px;
}

/* line 161, src/client/styles/global/_layout.scss */
.neo-padding--bottom-30 {
  padding-bottom: 30px;
}

/* line 165, src/client/styles/global/_layout.scss */
.neo-padding--left-30 {
  padding-left: 30px;
}

/* line 149, src/client/styles/global/_layout.scss */
.neo-padding-40 {
  padding: 40px;
}

/* line 153, src/client/styles/global/_layout.scss */
.neo-padding--top-40 {
  padding-top: 40px;
}

/* line 157, src/client/styles/global/_layout.scss */
.neo-padding--right-40 {
  padding-right: 40px;
}

/* line 161, src/client/styles/global/_layout.scss */
.neo-padding--bottom-40 {
  padding-bottom: 40px;
}

/* line 165, src/client/styles/global/_layout.scss */
.neo-padding--left-40 {
  padding-left: 40px;
}

/* line 149, src/client/styles/global/_layout.scss */
.neo-padding-50 {
  padding: 50px;
}

/* line 153, src/client/styles/global/_layout.scss */
.neo-padding--top-50 {
  padding-top: 50px;
}

/* line 157, src/client/styles/global/_layout.scss */
.neo-padding--right-50 {
  padding-right: 50px;
}

/* line 161, src/client/styles/global/_layout.scss */
.neo-padding--bottom-50 {
  padding-bottom: 50px;
}

/* line 165, src/client/styles/global/_layout.scss */
.neo-padding--left-50 {
  padding-left: 50px;
}

/* line 149, src/client/styles/global/_layout.scss */
.neo-padding-60 {
  padding: 60px;
}

/* line 153, src/client/styles/global/_layout.scss */
.neo-padding--top-60 {
  padding-top: 60px;
}

/* line 157, src/client/styles/global/_layout.scss */
.neo-padding--right-60 {
  padding-right: 60px;
}

/* line 161, src/client/styles/global/_layout.scss */
.neo-padding--bottom-60 {
  padding-bottom: 60px;
}

/* line 165, src/client/styles/global/_layout.scss */
.neo-padding--left-60 {
  padding-left: 60px;
}

/**
 * Applying additional styles or modification in case we're editing OR previewing
 */
/* line 4, src/client/styles/global/_mgnl.scss */
.neo-body.neoMgnl-body--isEditing,
.neo-body.neoMgnl-body--isPreviewing {
  background-color: #FFF;
}

/**
 * Applying additional styles or modification in case we're ONLY editing
 */
/**
 * Applying additional styles or modification in case we're ONLY editing
 */
/* line 30, src/client/styles/global/_mgnl.scss */
.neo-form .form .mgnlEditor {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

/* line 40, src/client/styles/global/_mgnl.scss */
.neo-grid .neo-mgnl__text--center,
.neo-spacer .neo-mgnl__text--center,
.neo-grid__spacer .neo-mgnl__text--center {
  text-align: center;
  color: #D94119;
  background-color: #FFF;
  border: 1px solid #000;
}

/* line 50, src/client/styles/global/_mgnl.scss */
.neo-grid .neo-chapter__dividerBox.neo-mgnl__box--previewHeight {
  height: auto;
}

/* line 54, src/client/styles/global/_mgnl.scss */
.neo-grid .neo-chapter__dividerBox .mgnlEditor {
  width: 100% !important;
}

/* line 60, src/client/styles/global/_mgnl.scss */
.neo-slider.neo-mgnl-slider {
  overflow: scroll;
}

/* line 64, src/client/styles/global/_mgnl.scss */
.neo-slider.neo-mgnl-slider .neo-slider__element_container > .neo-grid {
  display: block;
}

/* only used for Magnolia editor */
/* line 71, src/client/styles/global/_mgnl.scss */
.neo-nextSlider.neo-mgnl-nextSlider {
  overflow: scroll;
}

/* line 74, src/client/styles/global/_mgnl.scss */
.neo-nextSlider.neo-mgnl-nextSlider .neo-slider__element {
  position: relative;
  width: 100% !important;
  left: 0 !important;
  float: none;
}

/* line 83, src/client/styles/global/_mgnl.scss */
.neo-nextSlider.neo-mgnl-nextSlider .neo-slider__element_container > .neo-grid {
  display: block;
}

/* line 89, src/client/styles/global/_mgnl.scss */
.neo-error {
  color: red;
}

/* line 30, src/client/styles/global/_misc.scss */
.neo-hide {
  display: none !important;
}

@media (max-width: 479px) {
  /* line 2, src/client/styles/global/_misc.scss */
  .neo-hide--xs {
    display: none !important;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 2, src/client/styles/global/_misc.scss */
  .neo-hide--sm {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 2, src/client/styles/global/_misc.scss */
  .neo-hide--md {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  /* line 2, src/client/styles/global/_misc.scss */
  .neo-hide--lg {
    display: none !important;
  }
}

@media (max-width: 479px) {
  /* line 10, src/client/styles/global/_misc.scss */
  .neo-blur--xs {
    max-height: 105px;
    overflow: hidden;
    position: relative;
  }
  /* line 16, src/client/styles/global/_misc.scss */
  .neo-blur--xs:before {
    background-color: rgba(0, 0, 0, 0.75);
    color: #FFF;
    content: 'INVISIBLE';
    padding: 30px;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 500;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 10, src/client/styles/global/_misc.scss */
  .neo-blur--sm {
    max-height: 105px;
    overflow: hidden;
    position: relative;
  }
  /* line 16, src/client/styles/global/_misc.scss */
  .neo-blur--sm:before {
    background-color: rgba(0, 0, 0, 0.75);
    color: #FFF;
    content: 'INVISIBLE';
    padding: 30px;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 500;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 10, src/client/styles/global/_misc.scss */
  .neo-blur--md {
    max-height: 105px;
    overflow: hidden;
    position: relative;
  }
  /* line 16, src/client/styles/global/_misc.scss */
  .neo-blur--md:before {
    background-color: rgba(0, 0, 0, 0.75);
    color: #FFF;
    content: 'INVISIBLE';
    padding: 30px;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 500;
  }
}

@media (min-width: 1024px) {
  /* line 10, src/client/styles/global/_misc.scss */
  .neo-blur--lg {
    max-height: 105px;
    overflow: hidden;
    position: relative;
  }
  /* line 16, src/client/styles/global/_misc.scss */
  .neo-blur--lg:before {
    background-color: rgba(0, 0, 0, 0.75);
    color: #FFF;
    content: 'INVISIBLE';
    padding: 30px;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 500;
  }
}

/* line 46, src/client/styles/global/_misc.scss */
.neo-spinner {
  background-image: url("../assets/img/spinner.gif");
  background-repeat: no-repeat;
  height: 32px;
  width: 32px;
  margin: 0 auto;
}

/* line 54, src/client/styles/global/_misc.scss */
.neo-line {
  padding-bottom: 10px;
}

/* apply a natural box layout model to all elements, but allowing components to change */
/* line 2, src/client/styles/global/_typo.scss */
.neo-html {
  font-family: "Bechtle-DIN", sans-serif;
  font-size: 15px;
  line-height: 1.333rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* line 9, src/client/styles/global/_typo.scss */
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/* line 15, src/client/styles/global/_typo.scss */
.neo-body {
  background-color: transparent;
  color: #000;
  line-height: 1.333rem;
  font-size: 15px;
}

/* line 22, src/client/styles/global/_typo.scss */
asi {
  display: block;
  width: 32px;
  height: 32px;
}

/* line 28, src/client/styles/global/_typo.scss */
button {
  background: none;
  border: 0;
  outline: 0;
}

/* line 34, src/client/styles/global/_typo.scss */
input,
select {
  font-family: "Bechtle-DIN", sans-serif;
  border: 0;
  outline: 0;
}

/* line 41, src/client/styles/global/_typo.scss */
.neo-body a,
.neo-body a:hover,
a,
a:hover {
  text-decoration: none;
}

/* line 48, src/client/styles/global/_typo.scss */
.neo-body a.raw,
.neo-body a.neo-link {
  display: initial;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

/* line 91, src/client/styles/global/_mixins.scss */
.neo-body a.raw:hover,
.neo-body a.neo-link:hover {
  color: inherit;
}

/* line 95, src/client/styles/global/_mixins.scss */
.neo-body a.raw::after,
.neo-body a.neo-link::after {
  content: '';
  margin-bottom: 0;
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 98%;
  border-bottom: 1px solid;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: width 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: width 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
}

/* line 107, src/client/styles/global/_mixins.scss */
.neo-body a.raw:hover::after,
.neo-body a.neo-link:hover::after {
  width: 104%;
  left: 50%;
}

/* line 56, src/client/styles/global/_typo.scss */
img {
  max-width: 100%;
}

/* line 60, src/client/styles/global/_typo.scss */
.neo-body .h0,
.h0 {
  font-size: 3.5rem;
  line-height: 4rem;
  font-weight: 700;
}

@media (max-width: 1023px) {
  /* line 67, src/client/styles/global/_typo.scss */
  body.neo-body:not(.cke_editable) .h0,
  body:not(.cke_editable) .h0 {
    font-size: 1.6rem;
    line-height: 1.867rem;
  }
}

@media (max-width: 767px) {
  /* line 67, src/client/styles/global/_typo.scss */
  body.neo-body:not(.cke_editable) .h0,
  body:not(.cke_editable) .h0 {
    font-size: 1.333rem;
    line-height: 1.6rem;
  }
}

/* line 80, src/client/styles/global/_typo.scss */
.neo-body .h1, .neo-body .neo-form .form .text h1, .neo-form .form .text .neo-body h1,
.neo-body .neo-form .form fieldset h1, .neo-form .form fieldset .neo-body h1,
.h1,
.neo-form .form .text h1,
.neo-form .form fieldset h1 {
  font-family: "Bechtle-DIN", sans-serif;
  font-size: 1.867rem;
  font-weight: 700;
  line-height: 2rem;
}

@media (max-width: 1023px) {
  /* line 88, src/client/styles/global/_typo.scss */
  body.neo-body:not(.cke_editable) .h1, body.neo-body:not(.cke_editable) .neo-form .form .text h1, .neo-form .form .text body.neo-body:not(.cke_editable) h1,
  body.neo-body:not(.cke_editable) .neo-form .form fieldset h1, .neo-form .form fieldset body.neo-body:not(.cke_editable) h1,
  body:not(.cke_editable) .h1,
  body:not(.cke_editable) .neo-form .form .text h1,
  .neo-form .form .text body:not(.cke_editable) h1,
  body:not(.cke_editable) .neo-form .form fieldset h1,
  .neo-form .form fieldset body:not(.cke_editable) h1 {
    font-size: 1.6rem;
    line-height: 1.867rem;
  }
}

@media (max-width: 767px) {
  /* line 88, src/client/styles/global/_typo.scss */
  body.neo-body:not(.cke_editable) .h1, body.neo-body:not(.cke_editable) .neo-form .form .text h1, .neo-form .form .text body.neo-body:not(.cke_editable) h1,
  body.neo-body:not(.cke_editable) .neo-form .form fieldset h1, .neo-form .form fieldset body.neo-body:not(.cke_editable) h1,
  body:not(.cke_editable) .h1,
  body:not(.cke_editable) .neo-form .form .text h1,
  .neo-form .form .text body:not(.cke_editable) h1,
  body:not(.cke_editable) .neo-form .form fieldset h1,
  .neo-form .form fieldset body:not(.cke_editable) h1 {
    font-size: 1.333rem;
    line-height: 1.6rem;
  }
}

/* line 101, src/client/styles/global/_typo.scss */
.neo-body .h2, .neo-body .neo-form .form .text h2, .neo-form .form .text .neo-body h2,
.neo-body .neo-form .form fieldset h2, .neo-form .form fieldset .neo-body h2,
.h2,
.neo-form .form .text h2,
.neo-form .form fieldset h2 {
  font-family: "Bechtle-DIN", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2rem;
}

@media (max-width: 1023px) {
  /* line 109, src/client/styles/global/_typo.scss */
  body.neo-body:not(.cke_editable) .h2, body.neo-body:not(.cke_editable) .neo-form .form .text h2, .neo-form .form .text body.neo-body:not(.cke_editable) h2,
  body.neo-body:not(.cke_editable) .neo-form .form fieldset h2, .neo-form .form fieldset body.neo-body:not(.cke_editable) h2,
  body:not(.cke_editable) .h2,
  body:not(.cke_editable) .neo-form .form .text h2,
  .neo-form .form .text body:not(.cke_editable) h2,
  body:not(.cke_editable) .neo-form .form fieldset h2,
  .neo-form .form fieldset body:not(.cke_editable) h2 {
    font-size: 1.333rem;
    line-height: 1.6rem;
  }
}

@media (max-width: 767px) {
  /* line 109, src/client/styles/global/_typo.scss */
  body.neo-body:not(.cke_editable) .h2, body.neo-body:not(.cke_editable) .neo-form .form .text h2, .neo-form .form .text body.neo-body:not(.cke_editable) h2,
  body.neo-body:not(.cke_editable) .neo-form .form fieldset h2, .neo-form .form fieldset body.neo-body:not(.cke_editable) h2,
  body:not(.cke_editable) .h2,
  body:not(.cke_editable) .neo-form .form .text h2,
  .neo-form .form .text body:not(.cke_editable) h2,
  body:not(.cke_editable) .neo-form .form fieldset h2,
  .neo-form .form fieldset body:not(.cke_editable) h2 {
    font-size: 1.2rem;
    line-height: 1.333rem;
  }
}

/* line 122, src/client/styles/global/_typo.scss */
.neo-body .h3,
.h3 {
  font-family: "Bechtle-DIN", sans-serif;
  font-size: 1.333rem;
  font-weight: 600;
  line-height: 1.66rem;
}

/* line 130, src/client/styles/global/_typo.scss */
.neo-body .h4, .neo-body .cke_editable .leadin, .cke_editable .neo-body .leadin,
.neo-body .cke_wysiwyg_frame .leadin, .cke_wysiwyg_frame .neo-body .leadin,
.neo-body .neo-richText .leadin, .neo-richText .neo-body .leadin,
.neo-body .neo-richTextStyles .leadin, .neo-richTextStyles .neo-body .leadin,
.h4,
.cke_editable .leadin,
.cke_wysiwyg_frame .leadin,
.neo-richText .leadin,
.neo-richTextStyles .leadin {
  font-family: "Bechtle-DIN", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.333rem;
}

/* line 138, src/client/styles/global/_typo.scss */
.neo-body .h5,
.h5 {
  font-family: "Bechtle-DIN", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.333rem;
}

/* line 147, src/client/styles/global/_typo.scss */
.neo-text--bold {
  font-weight: 700;
}

/* line 151, src/client/styles/global/_typo.scss */
.neo-text--small {
  font-size: 0.867rem;
}

/* line 156, src/client/styles/global/_typo.scss */
.h1--large {
  font-family: "Bechtle-DIN-Slab", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 4rem;
}

/* line 22, src/client/areas/footer/_0_footer.scss */
.neo-footer {
  background-color: transparent;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 264, src/client/styles/global/_mixins.scss */
.neo-footer::before, .neo-footer::after {
  content: " ";
  display: table;
}

/* line 270, src/client/styles/global/_mixins.scss */
.neo-footer::after {
  clear: both;
}

/* line 29, src/client/areas/footer/_0_footer.scss */
.neo-footer__item {
  margin-bottom: 20px;
}

/* line 33, src/client/areas/footer/_0_footer.scss */
.neo-footer__menu {
  background-color: #6B7A83;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 60px;
  color: #FFF;
}

/* line 40, src/client/areas/footer/_0_footer.scss */
.neo-footer__menu_column {
  padding-right: 10px;
}

/* line 44, src/client/areas/footer/_0_footer.scss */
.neo-footer__menu_listHeader {
  font-family: "Bechtle-DIN", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.333rem;
}

@media (max-width: 767px) {
  /* line 44, src/client/areas/footer/_0_footer.scss */
  .neo-footer__menu_listHeader {
    font-family: "Bechtle-DIN", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.333rem;
    color: #FFF;
    padding: 10px 0;
    cursor: pointer;
  }
}

@media (max-width: 767px) {
  /* line 48, src/client/areas/footer/_0_footer.scss */
  .neo-footer__menu_content {
    display: none;
  }
  /* line 52, src/client/areas/footer/_0_footer.scss */
  .neo-footer__menu_content--active {
    display: block;
  }
}

@media (max-width: 767px) {
  /* line 33, src/client/areas/footer/_0_footer.scss */
  .neo-footer__menu {
    padding-top: 0;
  }
}

@media (min-width: 768px) {
  /* line 33, src/client/areas/footer/_0_footer.scss */
  .neo-footer__menu {
    padding-bottom: 30px;
  }
  /* line 65, src/client/areas/footer/_0_footer.scss */
  .neo-footer__menu_listHeader {
    margin-bottom: 20px;
  }
}

/* line 71, src/client/areas/footer/_0_footer.scss */
.neo-footer__listItem {
  color: #FFF;
}

/* line 74, src/client/areas/footer/_0_footer.scss */
.neo-footer__listItem--social {
  margin: -4px 0 5px;
}

/* line 77, src/client/areas/footer/_0_footer.scss */
.neo-footer__listItem--social > a {
  display: block;
  color: #FFF;
  text-decoration: none;
}

/* line 82, src/client/areas/footer/_0_footer.scss */
.neo-footer__listItem--social > a:hover {
  color: #FFF;
}

/* line 86, src/client/areas/footer/_0_footer.scss */
.neo-footer__listItem--social > a > img {
  vertical-align: middle;
}

/* line 93, src/client/areas/footer/_0_footer.scss */
.neo-footer__listLink, .neo-footer__richText.neo-richText a {
  color: #FFF;
  line-height: 1.66rem;
  text-decoration: none;
}

/* line 98, src/client/areas/footer/_0_footer.scss */
.neo-footer__listLink:hover, .neo-footer__richText.neo-richText a:hover {
  color: #FFF;
  border-bottom: 2px solid #FFF;
}

/* line 103, src/client/areas/footer/_0_footer.scss */
.neo-footer__listLink > img, .neo-footer__richText.neo-richText a > img {
  vertical-align: middle;
}

/* line 108, src/client/areas/footer/_0_footer.scss */
.neo-footer__socialshare {
  background-color: #6B7A83;
}

@media (max-width: 767px) {
  /* line 115, src/client/areas/footer/_0_footer.scss */
  .neo-footer__brandLinks {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  /* line 119, src/client/areas/footer/_0_footer.scss */
  .neo-footer__customerLinks {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  /* line 123, src/client/areas/footer/_0_footer.scss */
  .neo-footer__socialshare {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  /* line 127, src/client/areas/footer/_0_footer.scss */
  .neo-footer__menu {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  /* line 131, src/client/areas/footer/_0_footer.scss */
  .neo-footer__legal {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

/* line 1, src/client/areas/footer/_footer-brand-links.scss */
.neo-brandLinks {
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  /* line 4, src/client/areas/footer/_footer-brand-links.scss */
  .neo-brandLinks__headline {
    margin-bottom: 20px;
  }
}

/* line 10, src/client/areas/footer/_footer-brand-links.scss */
.neo-brandLinks__item {
  padding: 10px;
}

/* line 14, src/client/areas/footer/_footer-brand-links.scss */
.neo-brandLinks__link {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
  width: 100%;
  min-height: 64px;
  max-height: 64px;
}

/* line 23, src/client/areas/footer/_footer-brand-links.scss */
.neo-brandLinks__link img {
  vertical-align: middle;
}

@media (max-width: 767px) {
  /* line 30, src/client/areas/footer/_footer-brand-links.scss */
  .neo-brandLinks {
    background-color: #6B7A83;
    padding-bottom: 10px;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  /* line 34, src/client/areas/footer/_footer-brand-links.scss */
  .neo-brandLinks__headline.h2, .neo-form .form .text h2.neo-brandLinks__headline,
  .neo-form .form fieldset h2.neo-brandLinks__headline {
    font-family: "Bechtle-DIN", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.333rem;
    color: #FFF;
    padding: 10px 0;
    cursor: pointer;
  }
}

@media (max-width: 767px) {
  /* line 41, src/client/areas/footer/_footer-brand-links.scss */
  .neo-brandLinks__subtitle {
    display: none;
  }
  /* line 45, src/client/areas/footer/_footer-brand-links.scss */
  .neo-brandLinks__content {
    display: none;
  }
  /* line 48, src/client/areas/footer/_footer-brand-links.scss */
  .neo-brandLinks__content.neo-footer__menu_content--active {
    display: block;
  }
}

/* line 3, src/client/areas/footer/_footer-cookie-bar.scss */
.neo-footer__cookieBar {
  background-color: #DBDCDE;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 500;
}

/* line 16, src/client/areas/footer/_footer-cookie-bar.scss */
.neo-footer__cookieBar--edit {
  position: relative;
  width: 100%;
}

/* line 22, src/client/areas/footer/_footer-cookie-bar.scss */
.neo-footer__cookieButton {
  margin: 0 20px;
}

/* line 1, src/client/areas/footer/_footer-customer-links.scss */
.neo-customerLinks {
  padding-bottom: 30px;
}

/* line 4, src/client/areas/footer/_footer-customer-links.scss */
.neo-customerLinks__item {
  padding: 0 10px 30px 0;
}

/* line 8, src/client/areas/footer/_footer-customer-links.scss */
.neo-customerLinks__headline {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  /* line 8, src/client/areas/footer/_footer-customer-links.scss */
  .neo-customerLinks__headline {
    margin-bottom: 5px;
  }
}

/* line 3, src/client/areas/footer/_footer-rich-text.scss */
.neo-footer__richText.neo-richText p {
  margin-bottom: 0;
}

/* line 1, src/client/areas/footer/_footer-social-share.scss */
.neo-socialshare {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
  padding-top: 20px;
}

/* line 7, src/client/areas/footer/_footer-social-share.scss */
.neo-socialshare__toggle {
  background-color: #6B7A83;
}

/* line 11, src/client/areas/footer/_footer-social-share.scss */
.neo-socialshare__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

/* line 16, src/client/areas/footer/_footer-social-share.scss */
.neo-socialshare__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  padding: 5px;
}

/* line 24, src/client/areas/footer/_footer-social-share.scss */
.neo-socialshare__button img {
  max-height: 30px;
  margin-right: 5px;
}

/* line 9, src/client/areas/header/_0_header.scss */
.neo-header {
  position: relative;
}

/* line 12, src/client/areas/header/_0_header.scss */
.neo-header__subMenu {
  background-color: #FFF;
  -webkit-box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.5);
  padding: 10px 22px;
  width: 100%;
}

@media (min-width: 768px) {
  /* line 12, src/client/areas/header/_0_header.scss */
  .neo-header__subMenu {
    display: none;
  }
}

/* line 23, src/client/areas/header/_0_header.scss */
.neo-header__iconButton {
  width: 45px;
  height: 45px;
  padding: 5px;
  cursor: pointer;
  position: relative;
  display: inline-block;
}

@media (max-width: 767px) {
  /* line 23, src/client/areas/header/_0_header.scss */
  .neo-header__iconButton {
    width: 60px;
    height: 60px;
    padding: 10px;
  }
}

/* line 74, src/client/styles/global/_mixins.scss */
.neo-header__iconButton > icon > svg {
  width: 25px;
  height: 25px;
}

/* line 33, src/client/areas/header/_0_header.scss */
.neo-header__iconButton--toggleable {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
}

/* line 38, src/client/areas/header/_0_header.scss */
.neo-header__iconButton--toggleable comp-svg,
.neo-header__iconButton--toggleable icon {
  /*old icon vs. new icon*/
  position: absolute;
  top: 15px;
  left: 15px;
  width: 20px;
  height: 20px;
}

/* line 46, src/client/areas/header/_0_header.scss */
.neo-header__stickyButton {
  display: none;
}

/* line 50, src/client/areas/header/_0_header.scss */
.neo-header__lower, .neo-header__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

/* line 56, src/client/areas/header/_0_header.scss */
.neo-header__upper {
  padding-bottom: 10px;
}

/* line 60, src/client/areas/header/_0_header.scss */
.neo-header__inner {
  -webkit-transition: background-color 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: background-color 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  -webkit-transition: height 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: height 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  right: 0;
  z-index: 900;
  padding: 30px 33px 0 50px;
  max-height: 80px;
  background-color: #FFF;
}

@media (min-width: 1400px) {
  /* line 60, src/client/areas/header/_0_header.scss */
  .neo-header__inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 1440px;
    width: 100%;
  }
}

/* line 73, src/client/areas/header/_0_header.scss */
.neo-header__inner_wrapper {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 78, src/client/areas/header/_0_header.scss */
.neo-header__inner_navigation {
  padding: 20px 0 0 10px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* line 83, src/client/areas/header/_0_header.scss */
.neo-header__inner_options {
  position: relative;
  padding: 15px 0 0 20px;
  display: inline-block;
  color: inherit;
}

/* line 89, src/client/areas/header/_0_header.scss */
.neo-header__inner_options .neo-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  display: inline-block;
  margin-left: 10px;
  top: 5px;
}

/* line 96, src/client/areas/header/_0_header.scss */
.neo-header__inner_options #hybris-wishlist {
  display: none;
}

/* line 101, src/client/areas/header/_0_header.scss */
.neo-header__inner_menu {
  position: relative;
  height: 30px;
  padding-left: 20px;
  max-width: 768px;
  z-index: 1;
}

/* line 108, src/client/areas/header/_0_header.scss */
.neo-header__inner_menu_block {
  font-weight: 600;
}

/* line 113, src/client/areas/header/_0_header.scss */
.neo-header__inner_breadcrumb {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 768px;
  color: inherit;
  padding-top: 10px;
  padding-left: 20px;
}

/* line 122, src/client/areas/header/_0_header.scss */
.neo-header__inner_breadcrumb_step_icon {
  padding-left: 10px;
}

/* line 126, src/client/areas/header/_0_header.scss */
.neo-header__inner_breadcrumb_step_link {
  color: inherit;
  padding-left: 10px;
}

/* line 130, src/client/areas/header/_0_header.scss */
.neo-header__inner_breadcrumb_step_link:hover {
  color: inherit;
}

/* line 74, src/client/styles/global/_mixins.scss */
.neo-header__inner_breadcrumb .neo-icon__home > svg {
  width: 15px;
  height: 15px;
}

/* line 74, src/client/styles/global/_mixins.scss */
.neo-header__inner_breadcrumb .neo-icon__arrow > svg {
  width: 6px;
  height: 12px;
}

/* line 146, src/client/areas/header/_0_header.scss */
.neo-header__logoContainer {
  padding-top: 20px;
  height: 100%;
  position: relative;
}

/* line 152, src/client/areas/header/_0_header.scss */
.neo-header__logo {
  width: 65px;
  height: 65px;
  min-width: 65px;
  min-height: 65px;
  display: inline-block;
  padding-bottom: 18px;
  -webkit-transition: width 0.3s, height 0.3s;
  transition: width 0.3s, height 0.3s;
}

/* line 159, src/client/areas/header/_0_header.scss */
.neo-header__cartIcon {
  width: 32px;
  height: 32px;
  position: fixed;
  margin-top: 0px;
  margin-left: 5px;
  display: inline-block;
}

/* line 167, src/client/areas/header/_0_header.scss */
.neo-header #hybris-shopselector {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 167, src/client/areas/header/_0_header.scss */
  .neo-header #hybris-shopselector {
    position: relative;
  }
}

@media (min-width: 0) and (max-width: 479px) {
  /* line 182, src/client/areas/header/_0_header.scss */
  .neo-header__inner {
    padding: 10px 24px 0;
  }
  /* line 185, src/client/areas/header/_0_header.scss */
  .neo-header__inner_navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    padding: 0;
  }
  /* line 191, src/client/areas/header/_0_header.scss */
  .neo-header__inner_options {
    width: 50%;
    text-align: right;
  }
  /* line 197, src/client/areas/header/_0_header.scss */
  .neo-header__logoContainer {
    padding-top: 10px;
  }
  /* line 201, src/client/areas/header/_0_header.scss */
  .neo-header__logo {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    padding-bottom: 12px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 212, src/client/areas/header/_0_header.scss */
  .neo-header__inner {
    padding: 10px 24px 0;
  }
  /* line 215, src/client/areas/header/_0_header.scss */
  .neo-header__inner_navigation {
    width: 75%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
  /* line 220, src/client/areas/header/_0_header.scss */
  .neo-header__inner_navigation .neo-header__inner_search {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  /* line 225, src/client/areas/header/_0_header.scss */
  .neo-header__inner_options {
    width: 35%;
    text-align: right;
  }
}

@media (max-width: 767px) {
  /* line 235, src/client/areas/header/_0_header.scss */
  .neo-header__logoContainer {
    padding-top: 0;
  }
  /* line 239, src/client/areas/header/_0_header.scss */
  .neo-header__logo {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    padding-bottom: 0;
  }
  /* line 245, src/client/areas/header/_0_header.scss */
  .neo-header__inner_wrapper {
    padding-left: 10px;
  }
  /* line 250, src/client/areas/header/_0_header.scss */
  .neo-header__iconButton {
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: relative;
    padding: 5px;
    display: block;
  }
  /* line 257, src/client/areas/header/_0_header.scss */
  .neo-header__iconButton icon {
    position: absolute;
    top: 15px;
    left: 15px;
  }
  /* line 74, src/client/styles/global/_mixins.scss */
  .neo-header__iconButton icon > svg {
    width: 25px;
    height: 25px;
  }
  /* line 262, src/client/areas/header/_0_header.scss */
  .neo-header__iconButton--toggleable {
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
  }
  /* line 269, src/client/areas/header/_0_header.scss */
  .neo-header__stickyButton {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 279, src/client/areas/header/_0_header.scss */
  .neo-header__inner {
    padding: 10px 24px 0;
  }
  /* line 282, src/client/areas/header/_0_header.scss */
  .neo-header__inner_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  /* line 286, src/client/areas/header/_0_header.scss */
  .neo-header__inner_navigation {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  /* line 290, src/client/areas/header/_0_header.scss */
  .neo-header__inner_options {
    text-align: right;
  }
  /* line 295, src/client/areas/header/_0_header.scss */
  .neo-header__logo {
    width: 90px;
    height: 90px;
    min-width: 90px;
    min-height: 90px;
    position: relative;
    top: 42px;
  }
  /* line 301, src/client/areas/header/_0_header.scss */
  .neo-header #hybris-shopselector {
    position: static;
  }
}

@media (min-width: 1024px) and (max-width: 100000px) {
  /* line 311, src/client/areas/header/_0_header.scss */
  .neo-header__inner {
    padding: 10px 24px 0;
  }
  /* line 315, src/client/areas/header/_0_header.scss */
  .neo-header__logo {
    height: 90px;
    width: 110px;
    min-width: 110px;
  }
}

@media (min-width: 1400px) {
  /* line 325, src/client/areas/header/_0_header.scss */
  .neo-header__inner {
    padding: 10px 24px 0 50px;
  }
  /* line 328, src/client/areas/header/_0_header.scss */
  .neo-header__inner_options {
    padding-right: 10px;
  }
  /* line 333, src/client/areas/header/_0_header.scss */
  .neo-header__logo {
    margin-right: 30px;
  }
}

/* line 2, src/client/areas/header/_1_header-sticky.scss */
.neo-header--sticky .neo-icon--white > svg, .neo-header--sticky .neo-headerTheme--light .neo-icon > svg, .neo-headerTheme--light .neo-header--sticky .neo-icon > svg {
  fill: #000;
}

/* line 6, src/client/areas/header/_1_header-sticky.scss */
.neo-header--sticky .neo-mainNav {
  display: none;
}

/* line 11, src/client/areas/header/_1_header-sticky.scss */
.neo-header--sticky .neo-header__logoContainer {
  padding-top: 0;
}

/* line 15, src/client/areas/header/_1_header-sticky.scss */
.neo-header--sticky .neo-header__logo {
  width: 60px;
  height: 60px;
  position: relative;
  top: 0;
  left: 0;
  min-width: 60px;
  min-height: 60px;
  padding: 0;
}

/* line 23, src/client/areas/header/_1_header-sticky.scss */
.neo-header--sticky .neo-header__iconButton {
  width: 60px;
  height: 60px;
  cursor: pointer;
  position: relative;
  padding: 5px;
  display: block;
}

/* line 30, src/client/areas/header/_1_header-sticky.scss */
.neo-header--sticky .neo-header__iconButton icon {
  position: absolute;
  top: 15px;
  left: 15px;
}

/* line 74, src/client/styles/global/_mixins.scss */
.neo-header--sticky .neo-header__iconButton icon > svg {
  width: 25px;
  height: 25px;
}

/* line 35, src/client/areas/header/_1_header-sticky.scss */
.neo-header--sticky .neo-header__iconButton--toggleable {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
}

/* line 42, src/client/areas/header/_1_header-sticky.scss */
.neo-header--sticky .neo-header__inner {
  -webkit-box-shadow: 0px 4px 5px -5px #000;
          box-shadow: 0px 4px 5px -5px #000;
}

/* line 74, src/client/styles/global/_mixins.scss */
.neo-header--sticky .neo-header__inner_search_icon > svg {
  width: 25px;
  height: 25px;
}

/* line 49, src/client/areas/header/_1_header-sticky.scss */
.neo-header--sticky .neo-header__inner_wrapper {
  padding-left: 10px;
}

/* line 53, src/client/areas/header/_1_header-sticky.scss */
.neo-header--sticky .neo-header__inner_options {
  color: #000;
}

/* line 57, src/client/areas/header/_1_header-sticky.scss */
.neo-header--sticky .neo-header__inner_navigation {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 62, src/client/areas/header/_1_header-sticky.scss */
.neo-header--sticky .neo-header__inner_breadcrumb {
  display: none;
}

/* line 66, src/client/areas/header/_1_header-sticky.scss */
.neo-header--sticky .neo-header__inner_menu {
  max-width: none;
}

/* line 70, src/client/areas/header/_1_header-sticky.scss */
.neo-header--sticky .neo-header__inner_search {
  height: 50px;
  padding: 14px 0 0 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media (max-width: 767px) {
  /* line 70, src/client/areas/header/_1_header-sticky.scss */
  .neo-header--sticky .neo-header__inner_search {
    width: 100%;
    height: 55px;
    left: 0;
    margin: 0;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 70, src/client/areas/header/_1_header-sticky.scss */
  .neo-header--sticky .neo-header__inner_search {
    padding: 0 22px;
  }
}

@media (min-width: 0) and (max-width: 479px) {
  /* line 70, src/client/areas/header/_1_header-sticky.scss */
  .neo-header--sticky .neo-header__inner_search {
    padding: 0 22px;
  }
}

@media (max-width: 767px) {
  /* line 96, src/client/areas/header/_1_header-sticky.scss */
  .neo-header--sticky .neo-header__inner_navigation .neo-header__stickyButton {
    display: none;
  }
}

@media (min-width: 768px) {
  /* line 106, src/client/areas/header/_1_header-sticky.scss */
  .neo-header--sticky .neo-header__inner_wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 10px;
  }
  /* line 111, src/client/areas/header/_1_header-sticky.scss */
  .neo-header--sticky .neo-header__inner_navigation {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

@media (min-width: 1024px) and (max-width: 100000px) {
  /* line 120, src/client/areas/header/_1_header-sticky.scss */
  .neo-header--sticky #hybris-shopselector {
    position: static;
  }
}

@media (min-width: 1400px) {
  /* line 129, src/client/areas/header/_1_header-sticky.scss */
  .neo-header--sticky .neo-header__inner_wrapper {
    padding-left: 0;
  }
  /* line 134, src/client/areas/header/_1_header-sticky.scss */
  .neo-header--sticky #hybris-shopselector {
    position: static;
  }
}

/* line 19, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu {
  -webkit-transition: margin-left 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: margin-left 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  height: 494px;
  background-color: #FFF;
  position: relative;
  overflow: hidden;
  margin-left: 0;
  display: block;
  max-height: 24px;
  margin-left: -20px;
  margin-right: -20px;
}

/* line 31, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__page {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  height: 440px;
  border-right: 1px solid #DBDCDE;
  display: none;
  padding-left: 10px;
  cursor: default;
}

/* line 40, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__page_header {
  width: 100%;
  height: 40px;
}

/* line 44, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__page_header > span {
  padding: 10px 0 10px 10px;
  display: inline-block;
}

/* line 50, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__page_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  cursor: pointer;
  border-right: 2px solid transparent;
}

/* line 56, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__page_item_link {
  padding: 10px 0 10px 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: inline-block;
  color: #000;
}

/* line 63, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__page_item_previousPage {
  display: none;
  height: 40px;
  cursor: pointer;
}

/* line 69, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__page_item_nextPage {
  padding: 10px 0;
  min-width: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  display: none;
  height: 40px;
  position: absolute;
  right: 0;
  cursor: pointer;
}

/* line 80, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__page_item--selected {
  border-right: 2px solid #155195;
}

/* line 84, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__page_item--selected > span > .neo-headerMenu__page_item_link {
  color: #155195;
}

/* line 91, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__page--topLevel {
  width: 100%;
  left: 0;
  border-right: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* line 99, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__page--topLevel > .neo-headerMenu__page_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  height: 40px;
}

/* line 103, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__page--topLevel > .neo-headerMenu__page_item > span > .neo-headerMenu__page_item_link {
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  height: 22px;
  padding: 0;
  white-space: nowrap;
  font-weight: 600;
  text-transform: uppercase;
}

/* line 91, src/client/styles/global/_mixins.scss */
.neo-headerMenu__page--topLevel > .neo-headerMenu__page_item > span > .neo-headerMenu__page_item_link:hover {
  color: inherit;
}

/* line 95, src/client/styles/global/_mixins.scss */
.neo-headerMenu__page--topLevel > .neo-headerMenu__page_item > span > .neo-headerMenu__page_item_link::after {
  content: '';
  margin-bottom: -2px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 0%;
  border-bottom: 2px solid;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: width 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: width 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
}

/* line 107, src/client/styles/global/_mixins.scss */
.neo-headerMenu__page--topLevel > .neo-headerMenu__page_item > span > .neo-headerMenu__page_item_link:hover::after {
  width: 100%;
  left: 50%;
}

/* line 112, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__page--topLevel > .neo-headerMenu__page_item--selected {
  border-right: 2px solid transparent;
}

/* line 118, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__page--mainLevel {
  width: 33.33333%;
  top: 24px;
  left: 0;
}

/* line 125, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__page:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 130, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__spotlight {
  position: absolute;
  height: 440px;
  width: 33.33333%;
  right: 0;
  top: 24px;
  display: none;
  padding: 20px;
}

/* line 139, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__spotlight_product, .neo-headerMenu__spotlight_link, .neo-headerMenu__spotlight_image {
  display: none;
}

/* line 145, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__spotlight_image {
  max-width: 100%;
  padding-bottom: 10px;
}

/* line 150, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__spotlight--visible {
  display: block;
}

/* line 155, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__footer {
  min-height: 30px;
  background-color: #DBDCDE;
  top: 464px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 0;
}

/* line 163, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__footer_item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
}

/* line 167, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__footer_item > img {
  vertical-align: middle;
  height: 16px;
  width: auto;
}

/* line 173, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__footer_item > a {
  color: #000;
}

/* line 179, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu__triggerButton {
  display: none;
}

/* line 183, src/client/areas/header/_2_header-menu.scss */
.neo-headerMenu--visible {
  max-height: none;
}

/* line 193, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-header__inner {
  -webkit-box-shadow: 0px 4px 5px -5px #000;
          box-shadow: 0px 4px 5px -5px #000;
}

/* line 196, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-header__inner_menu {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 0;
  background-color: #FFF;
  padding-bottom: 80px;
  display: none;
}

/* line 206, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-header__subMenu {
  position: absolute;
  bottom: 80px;
  padding: 10px 22px;
}

/* line 211, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-header__subMenu #hybris-shopselector {
  position: static;
}

/* line 216, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu {
  width: 100%;
  height: 100%;
  overflow: visible;
  margin: 0;
}

/* line 222, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu__page {
  width: 100%;
  border-right: none;
  padding-left: 0;
}

/* line 227, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu__page_header {
  display: inline-block;
  border-bottom: 1px solid #DBDCDE;
  padding-left: 10px;
}

/* line 232, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu__page_header > .h4, .neo-header--compact .cke_editable .neo-headerMenu__page_header > .leadin, .cke_editable .neo-header--compact .neo-headerMenu__page_header > .leadin,
.neo-header--compact .cke_wysiwyg_frame .neo-headerMenu__page_header > .leadin, .cke_wysiwyg_frame .neo-header--compact .neo-headerMenu__page_header > .leadin,
.neo-header--compact .neo-richText .neo-headerMenu__page_header > .leadin, .neo-richText .neo-header--compact .neo-headerMenu__page_header > .leadin,
.neo-header--compact .neo-richTextStyles .neo-headerMenu__page_header > .leadin, .neo-richTextStyles .neo-header--compact .neo-headerMenu__page_header > .leadin {
  position: absolute;
}

/* line 237, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu__page_item {
  border-bottom: 1px solid #DBDCDE;
  overflow: visible;
  padding-left: 10px;
}

/* line 242, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu__page_item_link {
  font-weight: 400;
}

/* line 246, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu__page_item_nextPage--visible {
  display: inline-block;
}

/* line 250, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu__page_item_previousPage {
  display: inline-block;
  position: relative;
  left: 5px;
  padding: 10px 0;
}

/* line 257, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu__page_item--selected {
  border-right: none;
  color: #155195;
}

/* line 261, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu__page_item--selected .neo-headerMenu__page_header {
  color: #000;
}

/* line 267, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu__page--topLevel {
  margin-left: 0;
  width: 100%;
  border-right: none;
  display: block;
  padding: 0;
  font-weight: 400;
}

/* line 275, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu__page--topLevel > .neo-headerMenu__page_item {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  height: 40px;
}

/* line 279, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu__page--topLevel > .neo-headerMenu__page_item > span > .neo-headerMenu__page_item_link {
  height: 40px;
  padding: 10px 0 10px 10px;
  font-weight: 400;
  white-space: nowrap;
  text-transform: uppercase;
}

/* line 286, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu__page--topLevel > .neo-headerMenu__page_item > span > .neo-headerMenu__page_item_link:after {
  display: none;
}

/* line 293, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu__page--mainLevel {
  width: 100%;
  top: 0;
  left: 100%;
}

/* line 298, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu__page--mainLevel > .neo-headerMenu__page_header {
  display: list-item;
}

/* line 304, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu__footer, .neo-header--compact .neo-headerMenu__spotlight {
  display: none;
}

/* line 309, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu__triggerButton {
  display: block;
}

/* line 315, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu--index1 {
  margin-left: -100%;
}

/* line 315, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu--index2 {
  margin-left: -200%;
}

/* line 315, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact .neo-headerMenu--index3 {
  margin-left: -300%;
}

/* line 322, src/client/areas/header/_2_header-menu.scss */
.neo-header--compact.neo-header--opened .neo-header__inner_menu {
  display: block;
}

/* line 333, src/client/areas/header/_2_header-menu.scss */
.neo-header--sticky .neo-headerMenu {
  margin-left: 0;
  margin-right: 0;
  -webkit-box-shadow: 0px 4px 5px -5px #000;
          box-shadow: 0px 4px 5px -5px #000;
  max-height: 28px;
}

/* line 339, src/client/areas/header/_2_header-menu.scss */
.neo-header--sticky .neo-headerMenu__triggerButton {
  display: block;
}

/* line 343, src/client/areas/header/_2_header-menu.scss */
.neo-header--sticky .neo-headerMenu__page--topLevel {
  padding-left: 20px;
  -webkit-box-pack: normal;
      -ms-flex-pack: normal;
          justify-content: normal;
}

/* line 347, src/client/areas/header/_2_header-menu.scss */
.neo-header--sticky .neo-headerMenu__page--topLevel > .neo-headerMenu__page_item {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  padding-right: 20px;
}

/* line 353, src/client/areas/header/_2_header-menu.scss */
.neo-header--sticky .neo-headerMenu__page--mainLevel {
  padding-left: 10px;
}

/* line 357, src/client/areas/header/_2_header-menu.scss */
.neo-header--sticky .neo-headerMenu--visible {
  max-height: none;
}

/* line 362, src/client/areas/header/_2_header-menu.scss */
.neo-header--sticky .neo-header__inner_menu {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  padding-left: 0;
  display: none;
}

/* line 372, src/client/areas/header/_2_header-menu.scss */
.neo-header--sticky.neo-header--opened .neo-header__inner_menu {
  display: block;
}

/* line 7, src/client/areas/header/_3_header-search-bar.scss */
.neo-header__inner_search {
  background-color: #FFF;
  color: #939393;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  line-height: 40px;
  max-width: 768px;
  z-index: 1000;
}

@media (max-width: 767px) {
  /* line 7, src/client/areas/header/_3_header-search-bar.scss */
  .neo-header__inner_search {
    -webkit-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.5);
            box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.5);
    margin-top: 0;
    position: absolute;
    top: 80px;
    display: none;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 7, src/client/areas/header/_3_header-search-bar.scss */
  .neo-header__inner_search {
    width: calc(100% - (2 * 22px));
    left: 22px;
  }
}

@media (max-width: 479px) {
  /* line 7, src/client/areas/header/_3_header-search-bar.scss */
  .neo-header__inner_search {
    width: calc(100% - (2 * 22px));
    left: 22px;
  }
}

/* line 34, src/client/areas/header/_3_header-search-bar.scss */
.neo-header__inner_search_box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 20px;
}

@media (max-width: 767px) {
  /* line 34, src/client/areas/header/_3_header-search-bar.scss */
  .neo-header__inner_search_box {
    padding-left: 10px;
  }
}

/* line 49, src/client/areas/header/_3_header-search-bar.scss */
.neo-header__inner_search_icon {
  width: auto;
  height: 20px;
  margin-top: -11px;
}

/* line 55, src/client/areas/header/_3_header-search-bar.scss */
.neo-header__inner_search_input {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 0 0 5px;
  height: 39px;
}

/* line 61, src/client/areas/header/_3_header-search-bar.scss */
.neo-header__inner_search--show {
  opacity: 1;
  display: block;
}

/* line 66, src/client/areas/header/_3_header-search-bar.scss */
.neo-header__inner_search .neo-button__search {
  margin-right: 0px;
  opacity: 0;
  display: none;
  -webkit-transition: opacity 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: opacity 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
}

/* line 72, src/client/areas/header/_3_header-search-bar.scss */
.neo-header__inner_search .neo-button__search--show {
  opacity: 1;
  display: block;
}

/* line 2, src/client/areas/header/selector-flyout/_selector-flyout.scss */
.neo-flyout__selector {
  cursor: pointer;
}

/* line 6, src/client/areas/header/selector-flyout/_selector-flyout.scss */
.neo-flyout__box {
  display: none;
  background-color: white;
  position: absolute;
  z-index: 100;
  top: 45px;
  right: 0;
  border: 1px solid #DBDCDE;
  padding: 20px 20px 30px 20px;
}

/* line 16, src/client/areas/header/selector-flyout/_selector-flyout.scss */
.neo-flyout__box--open {
  display: block;
}

/* line 20, src/client/areas/header/selector-flyout/_selector-flyout.scss */
.neo-flyout__box_closeBtn {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

/* line 27, src/client/areas/header/selector-flyout/_selector-flyout.scss */
.neo-flyout__box_content {
  min-width: 100px;
  min-height: 100px;
}

/* line 31, src/client/areas/header/selector-flyout/_selector-flyout.scss */
.neo-flyout__box_content_title {
  clear: both;
  cursor: default;
  padding: 0 120px 20px 0;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
  width: calc(100% - 30px);
}

/* line 42, src/client/areas/header/selector-flyout/_selector-flyout.scss */
.neo-flyout__box_content_listItem {
  padding: 5px 0;
  text-align: right;
}

/* line 46, src/client/areas/header/selector-flyout/_selector-flyout.scss */
.neo-flyout__box_content_listItem_link {
  white-space: nowrap;
  color: #000;
  text-decoration: none;
}

/* line 58, src/client/areas/header/selector-flyout/_selector-flyout.scss */
.neo-header__subMenu .neo-flyout__box {
  top: auto;
  bottom: 105px;
  border: none;
  border-top: 1px solid #DBDCDE;
  padding: 10px 20px;
  width: 100%;
}

/* line 66, src/client/areas/header/selector-flyout/_selector-flyout.scss */
.neo-header__subMenu .neo-flyout__box_closeBtn {
  right: 29px;
  width: 10px;
  height: 10px;
}

/* line 73, src/client/areas/header/selector-flyout/_selector-flyout.scss */
.neo-header__subMenu .neo-flyout__box_content_title {
  font-size: 1rem;
  padding-left: 0;
  padding-bottom: 0;
}

/* line 79, src/client/areas/header/selector-flyout/_selector-flyout.scss */
.neo-header__subMenu .neo-flyout__box_content_listItem {
  text-align: left;
}

/* line 1, src/client/atoms/_infobox.scss */
.neo-infoBox {
  /* alternate style 'wide' */
}

/* line 4, src/client/atoms/_infobox.scss */
.neo-infoBox__label {
  background-color: #FDDC03;
  clear: both;
  color: #000;
  display: inline-block;
  float: left;
  font-weight: 700;
  padding: 5px;
}

/* line 14, src/client/atoms/_infobox.scss */
.neo-infoBox__textBox {
  z-index: 1;
  position: relative;
  padding: 20px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  clear: both;
  float: left;
}

/* line 288, src/client/styles/global/_mixins.scss */
.neo-infoBox__textBox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

@media (max-width: 767px) {
  /* line 14, src/client/atoms/_infobox.scss */
  .neo-infoBox__textBox {
    max-height: 212px;
  }
}

/* line 30, src/client/atoms/_infobox.scss */
.neo-infoBox__headline {
  color: #FFF;
  margin-bottom: 10px;
}

/* line 35, src/client/atoms/_infobox.scss */
.neo-infoBox__subheadline {
  color: #FFF;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* line 41, src/client/atoms/_infobox.scss */
.neo-infoBox__content {
  color: #FFF;
}

/* line 50, src/client/atoms/_infobox.scss */
.neo-infoBox--wide .neo-infoBox__headline {
  font-size: 4.133rem;
  font-weight: 600;
  line-height: 4rem;
  margin-bottom: 20px;
}

@media (min-width: 480px) and (max-width: 766px) {
  /* line 50, src/client/atoms/_infobox.scss */
  .neo-infoBox--wide .neo-infoBox__headline {
    font-size: 2.667rem;
    line-height: 3rem;
  }
}

@media (max-width: 479px) {
  /* line 50, src/client/atoms/_infobox.scss */
  .neo-infoBox--wide .neo-infoBox__headline {
    font-size: 1.867rem;
    line-height: 2rem;
  }
}

/* line 76, src/client/atoms/_infobox.scss */
.neo-headerTheme--dark .neo-infoBox__textBox {
  z-index: 1;
}

/* line 288, src/client/styles/global/_mixins.scss */
.neo-headerTheme--dark .neo-infoBox__textBox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* line 80, src/client/atoms/_infobox.scss */
.neo-headerTheme--dark .neo-infoBox__headline, .neo-headerTheme--dark .neo-infoBox__content {
  color: #FFF;
}

/* line 91, src/client/atoms/_infobox.scss */
.neo-headerTheme--light .neo-infoBox__textBox {
  z-index: 1;
}

/* line 303, src/client/styles/global/_mixins.scss */
.neo-headerTheme--light .neo-infoBox__textBox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: -1;
}

/* line 94, src/client/atoms/_infobox.scss */
.neo-headerTheme--light .neo-infoBox__textBox::before {
  background-color: rgba(255, 255, 255, 0.65);
}

/* line 99, src/client/atoms/_infobox.scss */
.neo-headerTheme--light .neo-infoBox__headline, .neo-headerTheme--light .neo-infoBox__subheadline, .neo-headerTheme--light .neo-infoBox__content {
  color: #000;
}

/* line 8, src/client/atoms/_slider-controls.scss */
.neo-slider__previous {
  left: 0;
}

/* line 12, src/client/atoms/_slider-controls.scss */
.neo-slider__next {
  right: 0;
}

/* line 16, src/client/atoms/_slider-controls.scss */
.neo-slider__previous, .neo-slider__next {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  position: absolute;
  z-index: 100;
}

/* line 23, src/client/atoms/_slider-controls.scss */
.neo-slider__previous svg, .neo-slider__next svg {
  -webkit-filter: drop-shadow(0 0 3px #535353);
          filter: drop-shadow(0 0 3px #535353);
}

/* line 27, src/client/atoms/_slider-controls.scss */
.neo-slider__previous.disabled, .neo-slider__next.disabled {
  display: none;
}

/* line 34, src/client/atoms/_slider-controls.scss */
.neo-slider__navigation {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 30px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  z-index: 100;
}

/* line 45, src/client/atoms/_slider-controls.scss */
.neo-slider__navigation--hide {
  display: none;
}

/* line 49, src/client/atoms/_slider-controls.scss */
.neo-slider__navigation_dot {
  margin: 0 5px;
  width: 40px;
  height: 100%;
  cursor: pointer;
  pointer-events: all;
}

/* line 58, src/client/atoms/_slider-controls.scss */
.neo-slider__navigation_dot--selected .neo-slider__navigation_dot_icon,
.tns-nav-active .neo-slider__navigation_dot_icon {
  background-color: #FFF;
}

/* line 61, src/client/atoms/_slider-controls.scss */
.neo-slider__navigation_dot--selected .neo-slider__navigation_dot_icon--black,
.tns-nav-active .neo-slider__navigation_dot_icon--black {
  background-color: #000;
}

/* line 65, src/client/atoms/_slider-controls.scss */
.neo-slider__navigation_dot--selected .neo-slider__navigation_dot_icon--white,
.tns-nav-active .neo-slider__navigation_dot_icon--white {
  background-color: #FFF;
}

/* line 71, src/client/atoms/_slider-controls.scss */
.neo-slider__navigation_dot_icon {
  width: 100%;
  height: 2px;
  display: inline-block;
}

/* line 76, src/client/atoms/_slider-controls.scss */
.neo-slider__navigation_dot_icon--white {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0 0 12px #535353;
          box-shadow: 0 0 12px #535353;
}

/* line 81, src/client/atoms/_slider-controls.scss */
.neo-slider__navigation_dot_icon--black {
  background-color: #939393;
  -webkit-box-shadow: 0 0 12px #FFF;
          box-shadow: 0 0 12px #FFF;
}

/* line 1, src/client/atoms/date-picker/_date-picker.scss */
.flatpickr-calendar {
  border-radius: 0 !important;
}

/* line 5, src/client/atoms/date-picker/_date-picker.scss */
.flatpickr-day {
  border-radius: 0 !important;
}

/* line 9, src/client/atoms/date-picker/_date-picker.scss */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #6C98B5 !important;
  border-color: #6C98B5 !important;
}

/* line 1, src/client/atoms/forms/_forms.scss */
.neo-form {
  background-color: #F7F7F7;
  padding: 20px;
}

/* line 7, src/client/atoms/forms/_forms.scss */
.neo-form .form #mgnlhp,
.neo-form .form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
  clear: both;
}

/* line 16, src/client/atoms/forms/_forms.scss */
.neo-form .form #mgnlhp > label,
.neo-form .form .form-row > label {
  height: 40px;
  padding-top: 15px;
  margin-bottom: 10px;
}

/* line 22, src/client/atoms/forms/_forms.scss */
.neo-form .form #mgnlhp label,
.neo-form .form .form-row label {
  display: inline;
  overflow-wrap: break-word;
  width: 32%;
}

/* line 28, src/client/atoms/forms/_forms.scss */
.neo-form .form #mgnlhp fieldset,
.neo-form .form #mgnlhp input,
.neo-form .form .form-row fieldset,
.neo-form .form .form-row input {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* line 36, src/client/atoms/forms/_forms.scss */
.neo-form .form #mgnlhp.error label em,
.neo-form .form .form-row.error label em {
  color: #D94119;
}

/* line 41, src/client/atoms/forms/_forms.scss */
.neo-form .form #mgnlhp.error input,
.neo-form .form .form-row.error input {
  padding-top: 1px;
  border-bottom: 2px solid #D94119;
}

@media (min-width: 768px) {
  /* line 48, src/client/atoms/forms/_forms.scss */
  .neo-form .form #mgnlhp label,
  .neo-form .form .form-row label {
    width: 15.8%;
  }
}

/* line 53, src/client/atoms/forms/_forms.scss */
.neo-form .form #mgnlhp > input,
.neo-form .form #mgnlhp > textarea,
.neo-form .form #mgnlhp > fieldset,
.neo-form .form .form-row > input,
.neo-form .form .form-row > textarea,
.neo-form .form .form-row > fieldset {
  min-width: 33.5%;
  -webkit-box-flex: unset;
      -ms-flex-positive: unset;
          flex-grow: unset;
}

/* line 59, src/client/atoms/forms/_forms.scss */
.neo-form .form #mgnlhp > input.mod > .form-item,
.neo-form .form #mgnlhp > textarea.mod > .form-item,
.neo-form .form #mgnlhp > fieldset.mod > .form-item,
.neo-form .form .form-row > input.mod > .form-item,
.neo-form .form .form-row > textarea.mod > .form-item,
.neo-form .form .form-row > fieldset.mod > .form-item {
  float: left;
}

/* line 63, src/client/atoms/forms/_forms.scss */
.neo-form .form #mgnlhp > input > select,
.neo-form .form #mgnlhp > textarea > select,
.neo-form .form #mgnlhp > fieldset > select,
.neo-form .form .form-row > input > select,
.neo-form .form .form-row > textarea > select,
.neo-form .form .form-row > fieldset > select {
  background: none;
  width: 100%;
}

@media (max-width: 767px) {
  /* line 53, src/client/atoms/forms/_forms.scss */
  .neo-form .form #mgnlhp > input,
  .neo-form .form #mgnlhp > textarea,
  .neo-form .form #mgnlhp > fieldset,
  .neo-form .form .form-row > input,
  .neo-form .form .form-row > textarea,
  .neo-form .form .form-row > fieldset {
    min-width: 66.5%;
  }
}

/* line 73, src/client/atoms/forms/_forms.scss */
.neo-form .form .form-item {
  margin-bottom: 10px;
  padding-right: 35px;
  padding-top: 15px;
  cursor: pointer;
}

/* line 80, src/client/atoms/forms/_forms.scss */
.neo-form .form .form-item-l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 45px;
  margin-bottom: 10px;
  width: 100%;
}

@media (min-width: 768px) {
  /* line 80, src/client/atoms/forms/_forms.scss */
  .neo-form .form .form-item-l {
    width: 50%;
  }
  /* line 90, src/client/atoms/forms/_forms.scss */
  .neo-form .form .form-item-l:nth-of-type(even) {
    padding-left: 10px;
  }
  /* line 94, src/client/atoms/forms/_forms.scss */
  .neo-form .form .form-item-l:nth-of-type(odd) {
    padding-right: 10px;
  }
  /* line 98, src/client/atoms/forms/_forms.scss */
  .neo-form .form .form-item-l label {
    width: 32%;
  }
}

/* line 115, src/client/atoms/forms/_forms.scss */
.neo-form .form .text h1,
.neo-form .form .text h2,
.neo-form .form fieldset h1,
.neo-form .form fieldset h2 {
  margin-bottom: 10px;
}

/* line 120, src/client/atoms/forms/_forms.scss */
.neo-form .form .text.error,
.neo-form .form fieldset.error {
  color: #D94119;
}

/* line 135, src/client/atoms/forms/_forms.scss */
.neo-form .form select[multiple] {
  height: auto;
  overflow-y: auto;
}

/* line 143, src/client/atoms/forms/_forms.scss */
.neo-form .form .button-wrapper input[type='submit'] {
  float: left;
  margin-right: 10px;
}

/* line 161, src/client/atoms/forms/_forms.scss */
.neo-form__errorBox {
  border: 2px solid #D94119;
  padding: 10px;
  color: #D94119;
  float: left;
  width: 100%;
}

/* line 169, src/client/atoms/forms/_forms.scss */
.neo-form__radiogroup-label {
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}

/* line 177, src/client/atoms/forms/_forms.scss */
.neo-event__registration_user .neo-form__radio > label {
  margin-right: 20px;
}

/* line 9, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox {
  padding: 0;
}

/* line 13, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-stage + .neo-inquiryBox {
  position: relative;
  margin: 0 auto;
  z-index: 500;
}

@media (min-width: 1400px) {
  /* line 13, src/client/atoms/inquiry-box/_inquiry-box.scss */
  .neo-stage + .neo-inquiryBox {
    width: 1440px;
    min-height: 30px;
    background-color: #FFF;
  }
  /* line 23, src/client/atoms/inquiry-box/_inquiry-box.scss */
  .neo-stage + .neo-inquiryBox .neo-inquiryBox__form {
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    right: 30px;
    top: -410px;
    width: 380px;
  }
}

@media (max-width: 1399px) {
  /* line 13, src/client/atoms/inquiry-box/_inquiry-box.scss */
  .neo-stage + .neo-inquiryBox {
    height: initial;
    width: 100%;
  }
  /* line 36, src/client/atoms/inquiry-box/_inquiry-box.scss */
  .neo-stage + .neo-inquiryBox .neo-inquiryBox__form {
    position: relative;
    width: 100%;
  }
}

/* line 43, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form {
  background-color: transparent;
  padding: 20px;
  width: 100%;
}

/* line 48, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_statusMessage {
  overflow: hidden;
  -webkit-transition: opacity 1s cubic-bezier(0, 1, 0.5, 1) 0s, max-height 0.75s ease-out;
  transition: opacity 1s cubic-bezier(0, 1, 0.5, 1) 0s, max-height 0.75s ease-out;
  opacity: 0;
  max-height: 0;
}

/* line 54, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_statusMessage--show {
  margin-bottom: 20px 0;
  opacity: 1;
  max-height: 500px;
  -webkit-transition: max-height 0.75s ease-in;
  transition: max-height 0.75s ease-in;
}

/* line 61, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_statusMessage--error {
  color: #D94119;
}

/* line 65, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_statusMessage--success {
  color: #000;
}

/* line 70, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_leftColumn {
  max-height: 240px;
  overflow: hidden;
}

/* line 75, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_contactData {
  max-height: 135px;
  overflow: hidden;
}

/* line 80, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_contactForm {
  margin-bottom: 10px;
}

/* line 84, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_row {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 89, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_label {
  display: table;
  width: 33%;
  line-height: initial;
  height: 40px;
}

/* line 95, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_label_text {
  display: table-cell;
  vertical-align: middle;
  line-height: 16px;
}

/* line 102, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_titleLabel {
  line-height: 30px;
  margin-bottom: 10px;
}

/* line 107, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_textField {
  width: 67%;
  padding-left: 5px;
}

/* line 112, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_textArea {
  width: 100%;
  resize: vertical;
}

/* line 117, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_title {
  margin-bottom: 20px;
}

/* line 121, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_paragraph {
  margin-bottom: 20px;
}

/* line 125, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_contactLabel {
  display: table;
  width: 33%;
  float: left;
  height: 40px;
  line-height: 40px;
}

/* line 133, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_contactOptions {
  width: 67%;
}

/* line 137, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_buttonGroup {
  margin-top: 10px;
}

/* line 140, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_buttonGroup .neo-button, .neo-inquiryBox__form_buttonGroup .neo-form .form .button-wrapper input[type='submit'], .neo-form .form .button-wrapper .neo-inquiryBox__form_buttonGroup input[type='submit'] {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
}

/* line 147, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_submitBtn {
  display: none;
}

/* line 151, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_resultBtn {
  display: none;
}

/* line 154, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_resultBtn comp-svg {
  margin-left: 10px;
}

/* line 157, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_resultBtn comp-svg svg {
  width: 15px;
  height: 15px;
}

/* line 164, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_furtherBtn {
  display: none;
}

/* line 168, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_emailSection {
  display: none;
  margin-bottom: 10px;
}

/* line 173, src/client/atoms/inquiry-box/_inquiry-box.scss */
.neo-inquiryBox__form_callbackSection {
  display: none;
  margin-bottom: 10px;
}

/* line 1, src/client/atoms/navigation/_main-nav.scss */
.neo-mainNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* line 6, src/client/atoms/navigation/_main-nav.scss */
.neo-mainNav__item {
  display: inline-block;
  height: 24px;
}

/* line 10, src/client/atoms/navigation/_main-nav.scss */
.neo-mainNav__item .neo-mainNav__link,
.neo-mainNav__item .neo-mainNav__link:active,
.neo-mainNav__item .neo-mainNav__link:hover,
.neo-mainNav__item .neo-mainNav__link:focus {
  color: inherit;
}

/* line 18, src/client/atoms/navigation/_main-nav.scss */
.neo-mainNav__link {
  color: inherit;
  float: left;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

/* line 91, src/client/styles/global/_mixins.scss */
.neo-mainNav__link:hover {
  color: inherit;
}

/* line 95, src/client/styles/global/_mixins.scss */
.neo-mainNav__link::after {
  content: '';
  margin-bottom: -2px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 0%;
  border-bottom: 2px solid;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: width 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: width 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
}

/* line 107, src/client/styles/global/_mixins.scss */
.neo-mainNav__link:hover::after {
  width: 100%;
  left: 50%;
}

/* line 1, src/client/atoms/navigation/_sub-nav.scss */
.neo-subNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 80px;
  padding: 10px 10px 0 10px;
}

@media (max-width: 479px) {
  /* line 1, src/client/atoms/navigation/_sub-nav.scss */
  .neo-subNav {
    padding-bottom: 10px;
  }
}

/* line 11, src/client/atoms/navigation/_sub-nav.scss */
.neo-subNav__image {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  margin-right: 30px;
  margin-bottom: 10px;
}

@media (max-width: 479px) {
  /* line 11, src/client/atoms/navigation/_sub-nav.scss */
  .neo-subNav__image {
    margin-bottom: 0;
  }
}

/* line 21, src/client/atoms/navigation/_sub-nav.scss */
.neo-subNav__button {
  margin-right: 10px;
  margin-bottom: 10px;
}

/* line 26, src/client/atoms/navigation/_sub-nav.scss */
.neo-subNav__select {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 20px;
  margin-bottom: 0;
}

/* note: color defitions were taken from diconium styles */
/* line 3, src/client/atoms/notification-box/_notification-box.scss */
.neo-notificationBox__message {
  background-color: #b0c8d7;
  border-color: #6c98b5;
  color: #3f647c;
  margin: 15px 0;
  padding: 10px;
}

/* line 10, src/client/atoms/notification-box/_notification-box.scss */
.neo-notificationBox__message--warning {
  background-color: #f8c070;
  border-color: #F4950E;
  color: #c67809;
}

/* line 16, src/client/atoms/notification-box/_notification-box.scss */
.neo-notificationBox__message--error {
  background-color: #ee8569;
  border-color: #d94118;
  color: #ab3313;
}

/* line 1, src/client/atoms/svg/_svg.scss */
.svg {
  width: 100%;
  height: 100%;
  pointer-events: visibleStroke;
}

/* line 8, src/client/atoms/svg/_svg.scss */
.svg--color-black {
  fill: #000;
}

/* line 12, src/client/atoms/svg/_svg.scss */
.svg--color-white {
  fill: #FFF;
}

/* line 8, src/client/atoms/text-field/_text-field.scss */
.neo-textField {
  position: relative;
  -webkit-transition: border-bottom;
  transition: border-bottom;
  -webkit-transition-property: border-bottom;
  transition-property: border-bottom;
  padding-top: 20px;
  display: inline-block;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}

/* line 17, src/client/atoms/text-field/_text-field.scss */
.neo-textField input {
  width: 100%;
  border: none;
  min-height: 30px;
  padding: 0 10px;
}

/* line 23, src/client/atoms/text-field/_text-field.scss */
.neo-textField input + label {
  position: absolute;
  top: 16px;
  left: 10px;
  color: #939393;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: translateY(14px);
          transform: translateY(14px);
  pointer-events: none;
  -webkit-transition: top, left, -webkit-transform;
  transition: top, left, -webkit-transform;
  transition: transform, top, left;
  transition: transform, top, left, -webkit-transform;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-transition-property: top, left, -webkit-transform;
  transition-property: top, left, -webkit-transform;
  transition-property: transform, top, left;
  transition-property: transform, top, left, -webkit-transform;
}

/* line 36, src/client/atoms/text-field/_text-field.scss */
.neo-textField input:hover {
  border: none;
}

/* line 40, src/client/atoms/text-field/_text-field.scss */
.neo-textField input:focus {
  border: none;
}

/* line 45, src/client/atoms/text-field/_text-field.scss */
.neo-textField:hover {
  border-bottom: 1px solid #155195;
}

/* line 49, src/client/atoms/text-field/_text-field.scss */
.neo-textField--focused {
  padding-bottom: 1px;
  border-bottom: 1px solid #155195;
}

/* line 53, src/client/atoms/text-field/_text-field.scss */
.neo-textField--focused:hover {
  padding-bottom: 0px;
  border-bottom: 2px solid #155195 !important;
}

/* line 60, src/client/atoms/text-field/_text-field.scss */
.neo-textField--filled label {
  top: 6px !important;
  -webkit-transform: scale(0.7) !important;
          transform: scale(0.7) !important;
}

/* line 1, src/client/organism/_anchor.scss */
.neo-pageAnchor {
  width: 100%;
  overflow-y: hidden;
}

/* line 6, src/client/organism/_chapter.scss */
.neo-chapter__dividerBox {
  background-color: #6B7A83;
  height: 340px;
}

@media (max-width: 1023px) {
  /* line 6, src/client/organism/_chapter.scss */
  .neo-chapter__dividerBox {
    height: auto;
  }
}

/* line 14, src/client/organism/_chapter.scss */
.neo-chapter__dividerBox_img {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  overflow: hidden;
}

/* line 21, src/client/organism/_chapter.scss */
.neo-chapter__dividerBox_img--imageHeight {
  height: 340px;
}

/* line 26, src/client/organism/_chapter.scss */
.neo-chapter__dividerBox_grid {
  height: 100%;
}

/* line 29, src/client/organism/_chapter.scss */
.neo-chapter__dividerBox_grid_item {
  padding: 0 10px;
  height: 340px;
}

/* line 36, src/client/organism/_chapter.scss */
.neo-chapter__dividerBox_content--center {
  text-align: center;
}

/* line 41, src/client/organism/_chapter.scss */
.neo-chapter__dividerBox_header {
  margin-top: 60px;
  overflow: hidden;
  white-space: nowrap;
  color: #FDDC03;
  font-size: 4.133rem;
  font-family: "Bechtle-DIN-Slab", sans-serif;
  font-weight: 600;
  line-height: 5.77rem;
}

/* line 51, src/client/organism/_chapter.scss */
.neo-chapter__dividerBox_header--big {
  font-size: 5.333rem;
}

/* line 55, src/client/organism/_chapter.scss */
.neo-chapter__dividerBox_header ~ .neo-richText {
  margin-top: 10px;
}

/* line 3, src/client/organism/_consulting.scss */
.neo-consulting__box {
  background-color: #939393;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
}

/* line 9, src/client/organism/_consulting.scss */
.neo-consulting__box_img {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-top: 30px;
}

/* line 15, src/client/organism/_consulting.scss */
.neo-consulting__box_img > img {
  height: 64px;
  width: 64px;
  margin-right: 20px;
}

/* line 22, src/client/organism/_consulting.scss */
.neo-consulting__box_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* line 27, src/client/organism/_consulting.scss */
.neo-consulting__headline {
  padding-bottom: 10px;
}

/* line 31, src/client/organism/_consulting.scss */
.neo-consulting__label {
  padding-bottom: 10px;
}

/* line 12, src/client/organism/_download-tile.scss */
.neo-downloadTileGrid {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: -10px;
}

/* line 16, src/client/organism/_download-tile.scss */
.neo-downloadTileGrid .neo-downloadTile {
  margin: 10px;
  margin-bottom: 40px;
  min-width: 180px;
}

/* line 25, src/client/organism/_download-tile.scss */
.neo-downloadTile:empty {
  height: 0;
  padding: 0;
  margin-bottom: 0;
}

/* line 31, src/client/organism/_download-tile.scss */
.neo-downloadTile__preview {
  position: relative;
  width: 200px;
  height: 282px;
  padding-top: 130%;
  background-position: center;
  background-size: cover;
  margin-bottom: 30px;
}

/* line 43, src/client/organism/_download-tile.scss */
.neo-downloadTile--headlineHeight2 .neo-downloadTile__text {
  height: 2.666rem;
}

/* line 43, src/client/organism/_download-tile.scss */
.neo-downloadTile--headlineHeight3 .neo-downloadTile__text {
  height: 3.999rem;
}

/* line 43, src/client/organism/_download-tile.scss */
.neo-downloadTile--headlineHeight4 .neo-downloadTile__text {
  height: 5.332rem;
}

/* line 49, src/client/organism/_download-tile.scss */
.neo-downloadTile__text {
  overflow: hidden;
}

/* line 53, src/client/organism/_download-tile.scss */
.neo-downloadTile__overlay {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 65, src/client/organism/_download-tile.scss */
.neo-downloadTile__overlay comp-svg {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -32px;
  margin-left: -32px;
}

/* line 73, src/client/organism/_download-tile.scss */
.neo-downloadTile__overlay comp-svg,
.neo-downloadTile__overlay svg {
  width: 64px;
  height: 64px;
}

/* line 79, src/client/organism/_download-tile.scss */
.neo-downloadTile__overlay::before {
  -webkit-transition: opacity 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: opacity 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  content: '';
  background-color: #DBDCDE;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  z-index: 0;
  left: 0;
  top: 0;
}

/* line 93, src/client/organism/_download-tile.scss */
.neo-downloadTile__overlay_content {
  -webkit-transition: opacity 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: opacity 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  color: #000;
  opacity: 0;
  z-index: 1;
  position: relative;
  height: 50%;
  width: 50%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 106, src/client/organism/_download-tile.scss */
.neo-downloadTile__overlay_content span {
  display: inline-block;
  line-height: 50%;
}

/* line 112, src/client/organism/_download-tile.scss */
.neo-downloadTile__overlay--opacity {
  opacity: 0.4;
}

/* line 115, src/client/organism/_download-tile.scss */
.neo-downloadTile__overlay--opacity::before {
  opacity: 0.4;
}

/* line 119, src/client/organism/_download-tile.scss */
.neo-downloadTile__overlay--opacity:hover {
  opacity: 1;
}

/* line 125, src/client/organism/_download-tile.scss */
.neo-downloadTile__overlay:hover .neo-downloadTile__overlay_content {
  opacity: 1;
}

/* line 129, src/client/organism/_download-tile.scss */
.neo-downloadTile__overlay:hover::before {
  opacity: 0.65;
}

/* line 137, src/client/organism/_download-tile.scss */
.neo-downloadTile__buttons .neo-button, .neo-downloadTile__buttons .neo-form .form .button-wrapper input[type='submit'], .neo-form .form .button-wrapper .neo-downloadTile__buttons input[type='submit'] {
  margin-top: 10px;
  width: 100%;
  text-align: left;
}

@media (min-width: 1024px) {
  /* line 23, src/client/organism/_download-tile.scss */
  .neo-downloadTile {
    width: 200px;
  }
}

/* line 3, src/client/organism/_event-overview.scss */
.neo-eventOverview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 30px;
}

@media (max-width: 479px) {
  /* line 3, src/client/organism/_event-overview.scss */
  .neo-eventOverview {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* line 12, src/client/organism/_event-overview.scss */
.neo-eventOverview__image {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 200px;
  width: 200px;
  min-width: 200px;
  margin-right: 20px;
}

@media (max-width: 479px) {
  /* line 12, src/client/organism/_event-overview.scss */
  .neo-eventOverview__image {
    width: 100%;
  }
}

/* line 26, src/client/organism/_event-overview.scss */
.neo-eventOverview__content {
  padding: 10px;
  width: 100%;
}

/* line 31, src/client/organism/_event-overview.scss */
.neo-eventOverview__headline {
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* line 36, src/client/organism/_event-overview.scss */
.neo-eventOverview__text {
  margin-bottom: 10px;
}

/* line 40, src/client/organism/_event-overview.scss */
.neo-eventOverview__dates {
  width: 100%;
  line-height: 1.333rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 46, src/client/organism/_event-overview.scss */
.neo-eventOverview__eventButton {
  margin-top: 10px;
}

/* line 50, src/client/organism/_event-overview.scss */
.neo-eventOverview__loadButton {
  margin-top: 10px;
  text-align: center;
}

/* line 3, src/client/organism/_header-stage.scss */
.neo-stage {
  position: relative;
}

/* line 6, src/client/organism/_header-stage.scss */
.neo-stage:not([class*='neo-headerTheme--']) {
  color: #000;
}

/* line 9, src/client/organism/_header-stage.scss */
.neo-stage:not([class*='neo-headerTheme--']) ~ .neo-header__inner {
  color: #000;
}

/* line 14, src/client/organism/_header-stage.scss */
.neo-stage[class*='neo-headerTheme--dark'] ~ .neo-header__inner {
  color: #000;
}

/* line 17, src/client/organism/_header-stage.scss */
.neo-stage[class*='neo-headerTheme--dark'] ~ .neo-header__inner .neo-mainNav__item--selected {
  border-color: #000;
}

/* line 22, src/client/organism/_header-stage.scss */
.neo-stage[class*='neo-headerTheme--light'] ~ .neo-header__inner {
  color: #FFF;
}

/* line 25, src/client/organism/_header-stage.scss */
.neo-stage[class*='neo-headerTheme--light'] ~ .neo-header__inner .neo-mainNav__item--selected {
  border-color: #FFF;
}

/* line 30, src/client/organism/_header-stage.scss */
.neo-stage__infoBox {
  margin: 0 auto;
  right: 0;
  left: 0;
  z-index: 1;
  /* normal style 'standard' */
  /* alternate style 'wide' */
}

@media (min-width: 1400px) {
  /* line 30, src/client/organism/_header-stage.scss */
  .neo-stage__infoBox {
    max-width: 1440px;
  }
}

/* line 40, src/client/organism/_header-stage.scss */
.neo-stage__infoBox_layout {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}

/* line 50, src/client/organism/_header-stage.scss */
.neo-stage__infoBox--standard .neo-infoBox {
  float: right;
  width: 100%;
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 50, src/client/organism/_header-stage.scss */
  .neo-stage__infoBox--standard .neo-infoBox {
    margin: 0 22px;
    width: 350px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 50, src/client/organism/_header-stage.scss */
  .neo-stage__infoBox--standard .neo-infoBox {
    margin: 0 24px;
    width: 480px;
  }
}

@media (min-width: 1024px) {
  /* line 50, src/client/organism/_header-stage.scss */
  .neo-stage__infoBox--standard .neo-infoBox {
    margin: 0 24px;
    width: 580px;
  }
}

@media (min-width: 1400px) {
  /* line 50, src/client/organism/_header-stage.scss */
  .neo-stage__infoBox--standard .neo-infoBox {
    margin: 0 33px 0 0;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 78, src/client/organism/_header-stage.scss */
  .neo-stage__infoBox--wide .neo-infoBox {
    margin: 0 22px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 78, src/client/organism/_header-stage.scss */
  .neo-stage__infoBox--wide .neo-infoBox {
    margin: 0 24px;
  }
}

@media (min-width: 1024px) {
  /* line 78, src/client/organism/_header-stage.scss */
  .neo-stage__infoBox--wide .neo-infoBox {
    margin: 0 24px;
  }
}

@media (min-width: 1400px) {
  /* line 78, src/client/organism/_header-stage.scss */
  .neo-stage__infoBox--wide .neo-infoBox {
    margin: 0 33px 0 220px;
  }
}

/* line 99, src/client/organism/_header-stage.scss */
.neo-stage__item {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

/* line 104, src/client/organism/_header-stage.scss */
.neo-stage__item--large {
  height: 440px;
}

@media (max-width: 767px) {
  /* line 104, src/client/organism/_header-stage.scss */
  .neo-stage__item--large {
    height: 320px;
  }
}

@media (min-width: 1024px) {
  /* line 104, src/client/organism/_header-stage.scss */
  .neo-stage__item--large {
    height: 500px;
  }
}

/* line 116, src/client/organism/_header-stage.scss */
.neo-stage__item--small {
  height: 440px;
}

@media (max-width: 767px) {
  /* line 116, src/client/organism/_header-stage.scss */
  .neo-stage__item--small {
    height: 320px;
  }
}

@media (min-width: 1024px) {
  /* line 116, src/client/organism/_header-stage.scss */
  .neo-stage__item--small {
    height: 340px;
  }
}

/* line 129, src/client/organism/_header-stage.scss */
.neo-stage__element {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

/* line 135, src/client/organism/_header-stage.scss */
.neo-stage__element--transitions {
  opacity: 0;
  -webkit-transition: opacity 3s ease-in 1s;
  transition: opacity 3s ease-in 1s;
}

/* line 140, src/client/organism/_header-stage.scss */
.neo-stage__element.active {
  opacity: 1;
  -webkit-transition: opacity 3s ease-out 1s;
  transition: opacity 3s ease-out 1s;
}

/* line 145, src/client/organism/_header-stage.scss */
.neo-stage__element.active.neojs-kb-1 .neo-stage__element_img {
  -webkit-transform: translate(5%, 5%) scale(1.1);
          transform: translate(5%, 5%) scale(1.1);
}

/* line 149, src/client/organism/_header-stage.scss */
.neo-stage__element.active.neojs-kb-2 .neo-stage__element_img {
  -webkit-transform: translate(5%, -5%) scale(1.1);
          transform: translate(5%, -5%) scale(1.1);
}

/* line 153, src/client/organism/_header-stage.scss */
.neo-stage__element.active.neojs-kb-3 .neo-stage__element_img {
  -webkit-transform: translate(-5%, -5%) scale(1.1);
          transform: translate(-5%, -5%) scale(1.1);
}

/* line 157, src/client/organism/_header-stage.scss */
.neo-stage__element.active.neojs-kb-4 .neo-stage__element_img {
  -webkit-transform: translate(-5%, 5%) scale(1.1);
          transform: translate(-5%, 5%) scale(1.1);
}

/* line 162, src/client/organism/_header-stage.scss */
.neo-stage__element_img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-transform: translate(0%, 0%) scale(1);
          transform: translate(0%, 0%) scale(1);
}

/* line 174, src/client/organism/_header-stage.scss */
.neo-headerTheme--dark {
  color: #000;
}

/* line 181, src/client/organism/_header-stage.scss */
.neo-headerTheme--dark .neo-icon svg.svg--shopping-cart {
  fill: #FFF;
}

/* line 187, src/client/organism/_header-stage.scss */
.neo-headerTheme--light {
  color: #FFF;
}

/* line 7, src/client/organism/_media-with-text.scss */
.neo-textMediaLayout {
  margin: 10px 0;
}

/* line 11, src/client/organism/_media-with-text.scss */
.neo-textMedia {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* line 16, src/client/organism/_media-with-text.scss */
.neo-textMedia__media {
  text-align: left;
}

/* line 19, src/client/organism/_media-with-text.scss */
.neo-textMedia__media_caption {
  display: block;
}

/* line 23, src/client/organism/_media-with-text.scss */
.neo-textMedia__media_image {
  width: 100%;
  height: auto;
}

/* line 29, src/client/organism/_media-with-text.scss */
.neo-textMedia__text {
  padding: 0 20px;
  word-break: break-word;
}

/* line 33, src/client/organism/_media-with-text.scss */
.neo-textMedia__text_content {
  padding: 10px 0;
}

/* line 50, src/client/organism/_media-with-text.scss */
.neo-textMedia--4to8Layout .neo-textMedia__media img {
  max-width: 280px;
}

/* line 60, src/client/organism/_media-with-text.scss */
.neo-textMedia--2to4Layout {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 68, src/client/organism/_media-with-text.scss */
.neo-textMedia--2to4Layout .neo-textMedia__media img {
  max-width: 200px;
}

/* line 80, src/client/organism/_media-with-text.scss */
.neo-textMedia--ltrDirection .neo-textMedia__media {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

/* line 84, src/client/organism/_media-with-text.scss */
.neo-textMedia--ltrDirection .neo-textMedia__text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

/* line 90, src/client/organism/_media-with-text.scss */
.neo-textMedia--rtlDirection .neo-textMedia__media {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

/* line 94, src/client/organism/_media-with-text.scss */
.neo-textMedia--rtlDirection .neo-textMedia__text {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

@media (max-width: 479px) {
  /* line 11, src/client/organism/_media-with-text.scss */
  .neo-textMedia {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  /* line 102, src/client/organism/_media-with-text.scss */
  .neo-textMedia--4to8Layout .neo-textMedia,
  .neo-textMedia--6to6Layout .neo-textMedia {
    display: block;
  }
  /* line 106, src/client/organism/_media-with-text.scss */
  .neo-textMedia--4to8Layout .neo-textMedia__media, .neo-textMedia--4to8Layout .neo-textMedia__text,
  .neo-textMedia--6to6Layout .neo-textMedia__media,
  .neo-textMedia--6to6Layout .neo-textMedia__text {
    width: 100%;
  }
  /* line 111, src/client/organism/_media-with-text.scss */
  .neo-textMedia--4to8Layout .neo-textMedia__text,
  .neo-textMedia--6to6Layout .neo-textMedia__text {
    padding: 20px 0 0;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 118, src/client/organism/_media-with-text.scss */
  .neo-organism.neo-textMedia--halfWidthAboveSM {
    width: 100%;
  }
  /* line 123, src/client/organism/_media-with-text.scss */
  .neo-organism.neo-textMedia--halfWidthAboveSM .neo-textMedia__media {
    width: calc(40% - 10px);
  }
  /* line 127, src/client/organism/_media-with-text.scss */
  .neo-organism.neo-textMedia--halfWidthAboveSM .neo-textMedia__text {
    width: calc(60% - 10px);
  }
}

@media (min-width: 768px) {
  /* line 118, src/client/organism/_media-with-text.scss */
  .neo-organism.neo-textMedia--halfWidthAboveSM {
    width: 50%;
  }
  /* line 135, src/client/organism/_media-with-text.scss */
  .neo-organism.neo-textMedia--halfWidthAboveSM .neo-textMedia__media {
    width: calc(40% - 10px);
  }
  /* line 139, src/client/organism/_media-with-text.scss */
  .neo-organism.neo-textMedia--halfWidthAboveSM .neo-textMedia__text {
    width: calc(60% - 10px);
  }
}

@media (max-width: 479px) {
  /* line 118, src/client/organism/_media-with-text.scss */
  .neo-organism.neo-textMedia--halfWidthAboveSM {
    width: 100%;
  }
  /* line 147, src/client/organism/_media-with-text.scss */
  .neo-organism.neo-textMedia--halfWidthAboveSM .neo-textMedia {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  /* line 151, src/client/organism/_media-with-text.scss */
  .neo-organism.neo-textMedia--halfWidthAboveSM .neo-textMedia__media {
    width: 100%;
    max-width: initial;
  }
  /* line 155, src/client/organism/_media-with-text.scss */
  .neo-organism.neo-textMedia--halfWidthAboveSM .neo-textMedia__media h4 {
    padding: 0 20px 20px 0;
  }
  /* line 160, src/client/organism/_media-with-text.scss */
  .neo-organism.neo-textMedia--halfWidthAboveSM .neo-textMedia__text {
    width: 100%;
    padding-left: 0;
  }
}

/* line 1, src/client/organism/_product-tile-container.scss */
.display_block {
  display: block;
}

/* line 2, src/client/organism/_product-tile.scss */
.neo-productTile--marginBottom {
  margin-bottom: 20px;
}

/* line 2, src/client/organism/_rich-text.scss */
body.cke_editable {
  background-color: rgba(255, 255, 255, 0.5);
}

/* line 10, src/client/organism/_rich-text.scss */
.cke_editable img,
.cke_wysiwyg_frame img,
.neo-richText img,
.neo-richTextStyles img {
  height: auto !important;
}

/* line 14, src/client/organism/_rich-text.scss */
.cke_editable span,
.cke_editable p,
.cke_wysiwyg_frame span,
.cke_wysiwyg_frame p,
.neo-richText span,
.neo-richText p,
.neo-richTextStyles span,
.neo-richTextStyles p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.333rem;
}

/* line 21, src/client/organism/_rich-text.scss */
.cke_editable blockquote,
.cke_editable blockquote.neo-quote,
.cke_editable blockquote p,
.cke_editable blockquote.neo-quote p,
.cke_wysiwyg_frame blockquote,
.cke_wysiwyg_frame blockquote.neo-quote,
.cke_wysiwyg_frame blockquote p,
.cke_wysiwyg_frame blockquote.neo-quote p,
.neo-richText blockquote,
.neo-richText blockquote.neo-quote,
.neo-richText blockquote p,
.neo-richText blockquote.neo-quote p,
.neo-richTextStyles blockquote,
.neo-richTextStyles blockquote.neo-quote,
.neo-richTextStyles blockquote p,
.neo-richTextStyles blockquote.neo-quote p {
  font-family: "Bechtle-DIN-Condensed", sans-serif;
  font-weight: 100;
  font-size: 1.867rem;
  line-height: 2rem;
}

/* line 32, src/client/organism/_rich-text.scss */
.cke_editable blockquote:not(.neo-quote) p,
.cke_editable blockquote.neo-quote p font,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p,
.cke_wysiwyg_frame blockquote.neo-quote p font,
.neo-richText blockquote:not(.neo-quote) p,
.neo-richText blockquote.neo-quote p font,
.neo-richTextStyles blockquote:not(.neo-quote) p,
.neo-richTextStyles blockquote.neo-quote p font {
  quotes: "\201C" "\201D";
}

/* line 36, src/client/organism/_rich-text.scss */
.cke_editable blockquote:not(.neo-quote) p::before,
.cke_editable blockquote.neo-quote p font::before,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p::before,
.cke_wysiwyg_frame blockquote.neo-quote p font::before,
.neo-richText blockquote:not(.neo-quote) p::before,
.neo-richText blockquote.neo-quote p font::before,
.neo-richTextStyles blockquote:not(.neo-quote) p::before,
.neo-richTextStyles blockquote.neo-quote p font::before {
  content: open-quote;
}

/* line 40, src/client/organism/_rich-text.scss */
.cke_editable blockquote:not(.neo-quote) p::after,
.cke_editable blockquote.neo-quote p font::after,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p::after,
.cke_wysiwyg_frame blockquote.neo-quote p font::after,
.neo-richText blockquote:not(.neo-quote) p::after,
.neo-richText blockquote.neo-quote p font::after,
.neo-richTextStyles blockquote:not(.neo-quote) p::after,
.neo-richTextStyles blockquote.neo-quote p font::after {
  content: close-quote;
}

/* line 45, src/client/organism/_rich-text.scss */
.cke_editable blockquote:not(.neo-quote) p:lang(de),
.cke_editable blockquote.neo-quote p font:lang(de),
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(de),
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(de),
.neo-richText blockquote:not(.neo-quote) p:lang(de),
.neo-richText blockquote.neo-quote p font:lang(de),
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(de),
.neo-richTextStyles blockquote.neo-quote p font:lang(de) {
  quotes: "\201E" "\201C";
}

/* line 49, src/client/organism/_rich-text.scss */
.cke_editable blockquote:not(.neo-quote) p:lang(de)::before,
.cke_editable blockquote.neo-quote p font:lang(de)::before,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(de)::before,
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(de)::before,
.neo-richText blockquote:not(.neo-quote) p:lang(de)::before,
.neo-richText blockquote.neo-quote p font:lang(de)::before,
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(de)::before,
.neo-richTextStyles blockquote.neo-quote p font:lang(de)::before {
  content: open-quote;
}

/* line 53, src/client/organism/_rich-text.scss */
.cke_editable blockquote:not(.neo-quote) p:lang(de)::after,
.cke_editable blockquote.neo-quote p font:lang(de)::after,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(de)::after,
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(de)::after,
.neo-richText blockquote:not(.neo-quote) p:lang(de)::after,
.neo-richText blockquote.neo-quote p font:lang(de)::after,
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(de)::after,
.neo-richTextStyles blockquote.neo-quote p font:lang(de)::after {
  content: close-quote;
}

/* line 58, src/client/organism/_rich-text.scss */
.cke_editable blockquote:not(.neo-quote) p:lang(at),
.cke_editable blockquote.neo-quote p font:lang(at),
.cke_editable blockquote:not(.neo-quote) p:lang(cz),
.cke_editable blockquote.neo-quote p font:lang(cz),
.cke_editable blockquote:not(.neo-quote) p:lang(pl),
.cke_editable blockquote.neo-quote p font:lang(pl),
.cke_editable blockquote:not(.neo-quote) p:lang(hu),
.cke_editable blockquote.neo-quote p font:lang(hu),
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(at),
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(at),
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(cz),
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(cz),
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(pl),
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(pl),
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(hu),
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(hu),
.neo-richText blockquote:not(.neo-quote) p:lang(at),
.neo-richText blockquote.neo-quote p font:lang(at),
.neo-richText blockquote:not(.neo-quote) p:lang(cz),
.neo-richText blockquote.neo-quote p font:lang(cz),
.neo-richText blockquote:not(.neo-quote) p:lang(pl),
.neo-richText blockquote.neo-quote p font:lang(pl),
.neo-richText blockquote:not(.neo-quote) p:lang(hu),
.neo-richText blockquote.neo-quote p font:lang(hu),
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(at),
.neo-richTextStyles blockquote.neo-quote p font:lang(at),
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(cz),
.neo-richTextStyles blockquote.neo-quote p font:lang(cz),
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(pl),
.neo-richTextStyles blockquote.neo-quote p font:lang(pl),
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(hu),
.neo-richTextStyles blockquote.neo-quote p font:lang(hu) {
  quotes: "\201E" "\201D";
}

/* line 68, src/client/organism/_rich-text.scss */
.cke_editable blockquote:not(.neo-quote) p:lang(at)::before,
.cke_editable blockquote.neo-quote p font:lang(at)::before,
.cke_editable blockquote:not(.neo-quote) p:lang(cz)::before,
.cke_editable blockquote.neo-quote p font:lang(cz)::before,
.cke_editable blockquote:not(.neo-quote) p:lang(pl)::before,
.cke_editable blockquote.neo-quote p font:lang(pl)::before,
.cke_editable blockquote:not(.neo-quote) p:lang(hu)::before,
.cke_editable blockquote.neo-quote p font:lang(hu)::before,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(at)::before,
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(at)::before,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(cz)::before,
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(cz)::before,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(pl)::before,
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(pl)::before,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(hu)::before,
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(hu)::before,
.neo-richText blockquote:not(.neo-quote) p:lang(at)::before,
.neo-richText blockquote.neo-quote p font:lang(at)::before,
.neo-richText blockquote:not(.neo-quote) p:lang(cz)::before,
.neo-richText blockquote.neo-quote p font:lang(cz)::before,
.neo-richText blockquote:not(.neo-quote) p:lang(pl)::before,
.neo-richText blockquote.neo-quote p font:lang(pl)::before,
.neo-richText blockquote:not(.neo-quote) p:lang(hu)::before,
.neo-richText blockquote.neo-quote p font:lang(hu)::before,
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(at)::before,
.neo-richTextStyles blockquote.neo-quote p font:lang(at)::before,
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(cz)::before,
.neo-richTextStyles blockquote.neo-quote p font:lang(cz)::before,
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(pl)::before,
.neo-richTextStyles blockquote.neo-quote p font:lang(pl)::before,
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(hu)::before,
.neo-richTextStyles blockquote.neo-quote p font:lang(hu)::before {
  content: open-quote;
}

/* line 72, src/client/organism/_rich-text.scss */
.cke_editable blockquote:not(.neo-quote) p:lang(at)::after,
.cke_editable blockquote.neo-quote p font:lang(at)::after,
.cke_editable blockquote:not(.neo-quote) p:lang(cz)::after,
.cke_editable blockquote.neo-quote p font:lang(cz)::after,
.cke_editable blockquote:not(.neo-quote) p:lang(pl)::after,
.cke_editable blockquote.neo-quote p font:lang(pl)::after,
.cke_editable blockquote:not(.neo-quote) p:lang(hu)::after,
.cke_editable blockquote.neo-quote p font:lang(hu)::after,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(at)::after,
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(at)::after,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(cz)::after,
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(cz)::after,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(pl)::after,
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(pl)::after,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(hu)::after,
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(hu)::after,
.neo-richText blockquote:not(.neo-quote) p:lang(at)::after,
.neo-richText blockquote.neo-quote p font:lang(at)::after,
.neo-richText blockquote:not(.neo-quote) p:lang(cz)::after,
.neo-richText blockquote.neo-quote p font:lang(cz)::after,
.neo-richText blockquote:not(.neo-quote) p:lang(pl)::after,
.neo-richText blockquote.neo-quote p font:lang(pl)::after,
.neo-richText blockquote:not(.neo-quote) p:lang(hu)::after,
.neo-richText blockquote.neo-quote p font:lang(hu)::after,
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(at)::after,
.neo-richTextStyles blockquote.neo-quote p font:lang(at)::after,
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(cz)::after,
.neo-richTextStyles blockquote.neo-quote p font:lang(cz)::after,
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(pl)::after,
.neo-richTextStyles blockquote.neo-quote p font:lang(pl)::after,
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(hu)::after,
.neo-richTextStyles blockquote.neo-quote p font:lang(hu)::after {
  content: close-quote;
}

/* line 77, src/client/organism/_rich-text.scss */
.cke_editable blockquote:not(.neo-quote) p:lang(fr),
.cke_editable blockquote.neo-quote p font:lang(fr),
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(fr),
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(fr),
.neo-richText blockquote:not(.neo-quote) p:lang(fr),
.neo-richText blockquote.neo-quote p font:lang(fr),
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(fr),
.neo-richTextStyles blockquote.neo-quote p font:lang(fr) {
  quotes: "\00AB \0202F" "\0202F \00BB";
}

/* line 81, src/client/organism/_rich-text.scss */
.cke_editable blockquote:not(.neo-quote) p:lang(fr)::before,
.cke_editable blockquote.neo-quote p font:lang(fr)::before,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(fr)::before,
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(fr)::before,
.neo-richText blockquote:not(.neo-quote) p:lang(fr)::before,
.neo-richText blockquote.neo-quote p font:lang(fr)::before,
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(fr)::before,
.neo-richTextStyles blockquote.neo-quote p font:lang(fr)::before {
  content: open-quote;
}

/* line 85, src/client/organism/_rich-text.scss */
.cke_editable blockquote:not(.neo-quote) p:lang(fr)::after,
.cke_editable blockquote.neo-quote p font:lang(fr)::after,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(fr)::after,
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(fr)::after,
.neo-richText blockquote:not(.neo-quote) p:lang(fr)::after,
.neo-richText blockquote.neo-quote p font:lang(fr)::after,
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(fr)::after,
.neo-richTextStyles blockquote.neo-quote p font:lang(fr)::after {
  content: close-quote;
}

/* line 90, src/client/organism/_rich-text.scss */
.cke_editable blockquote:not(.neo-quote) p:lang(pt),
.cke_editable blockquote.neo-quote p font:lang(pt),
.cke_editable blockquote:not(.neo-quote) p:lang(es),
.cke_editable blockquote.neo-quote p font:lang(es),
.cke_editable blockquote:not(.neo-quote) p:lang(it),
.cke_editable blockquote.neo-quote p font:lang(it),
.cke_editable blockquote:not(.neo-quote) p:lang(es),
.cke_editable blockquote.neo-quote p font:lang(es),
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(pt),
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(pt),
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(es),
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(es),
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(it),
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(it),
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(es),
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(es),
.neo-richText blockquote:not(.neo-quote) p:lang(pt),
.neo-richText blockquote.neo-quote p font:lang(pt),
.neo-richText blockquote:not(.neo-quote) p:lang(es),
.neo-richText blockquote.neo-quote p font:lang(es),
.neo-richText blockquote:not(.neo-quote) p:lang(it),
.neo-richText blockquote.neo-quote p font:lang(it),
.neo-richText blockquote:not(.neo-quote) p:lang(es),
.neo-richText blockquote.neo-quote p font:lang(es),
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(pt),
.neo-richTextStyles blockquote.neo-quote p font:lang(pt),
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(es),
.neo-richTextStyles blockquote.neo-quote p font:lang(es),
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(it),
.neo-richTextStyles blockquote.neo-quote p font:lang(it),
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(es),
.neo-richTextStyles blockquote.neo-quote p font:lang(es) {
  quotes: "\00AB" "\00BB";
}

/* line 100, src/client/organism/_rich-text.scss */
.cke_editable blockquote:not(.neo-quote) p:lang(pt)::before,
.cke_editable blockquote.neo-quote p font:lang(pt)::before,
.cke_editable blockquote:not(.neo-quote) p:lang(es)::before,
.cke_editable blockquote.neo-quote p font:lang(es)::before,
.cke_editable blockquote:not(.neo-quote) p:lang(it)::before,
.cke_editable blockquote.neo-quote p font:lang(it)::before,
.cke_editable blockquote:not(.neo-quote) p:lang(es)::before,
.cke_editable blockquote.neo-quote p font:lang(es)::before,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(pt)::before,
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(pt)::before,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(es)::before,
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(es)::before,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(it)::before,
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(it)::before,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(es)::before,
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(es)::before,
.neo-richText blockquote:not(.neo-quote) p:lang(pt)::before,
.neo-richText blockquote.neo-quote p font:lang(pt)::before,
.neo-richText blockquote:not(.neo-quote) p:lang(es)::before,
.neo-richText blockquote.neo-quote p font:lang(es)::before,
.neo-richText blockquote:not(.neo-quote) p:lang(it)::before,
.neo-richText blockquote.neo-quote p font:lang(it)::before,
.neo-richText blockquote:not(.neo-quote) p:lang(es)::before,
.neo-richText blockquote.neo-quote p font:lang(es)::before,
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(pt)::before,
.neo-richTextStyles blockquote.neo-quote p font:lang(pt)::before,
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(es)::before,
.neo-richTextStyles blockquote.neo-quote p font:lang(es)::before,
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(it)::before,
.neo-richTextStyles blockquote.neo-quote p font:lang(it)::before,
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(es)::before,
.neo-richTextStyles blockquote.neo-quote p font:lang(es)::before {
  content: open-quote;
}

/* line 104, src/client/organism/_rich-text.scss */
.cke_editable blockquote:not(.neo-quote) p:lang(pt)::after,
.cke_editable blockquote.neo-quote p font:lang(pt)::after,
.cke_editable blockquote:not(.neo-quote) p:lang(es)::after,
.cke_editable blockquote.neo-quote p font:lang(es)::after,
.cke_editable blockquote:not(.neo-quote) p:lang(it)::after,
.cke_editable blockquote.neo-quote p font:lang(it)::after,
.cke_editable blockquote:not(.neo-quote) p:lang(es)::after,
.cke_editable blockquote.neo-quote p font:lang(es)::after,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(pt)::after,
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(pt)::after,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(es)::after,
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(es)::after,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(it)::after,
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(it)::after,
.cke_wysiwyg_frame blockquote:not(.neo-quote) p:lang(es)::after,
.cke_wysiwyg_frame blockquote.neo-quote p font:lang(es)::after,
.neo-richText blockquote:not(.neo-quote) p:lang(pt)::after,
.neo-richText blockquote.neo-quote p font:lang(pt)::after,
.neo-richText blockquote:not(.neo-quote) p:lang(es)::after,
.neo-richText blockquote.neo-quote p font:lang(es)::after,
.neo-richText blockquote:not(.neo-quote) p:lang(it)::after,
.neo-richText blockquote.neo-quote p font:lang(it)::after,
.neo-richText blockquote:not(.neo-quote) p:lang(es)::after,
.neo-richText blockquote.neo-quote p font:lang(es)::after,
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(pt)::after,
.neo-richTextStyles blockquote.neo-quote p font:lang(pt)::after,
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(es)::after,
.neo-richTextStyles blockquote.neo-quote p font:lang(es)::after,
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(it)::after,
.neo-richTextStyles blockquote.neo-quote p font:lang(it)::after,
.neo-richTextStyles blockquote:not(.neo-quote) p:lang(es)::after,
.neo-richTextStyles blockquote.neo-quote p font:lang(es)::after {
  content: close-quote;
}

/* line 109, src/client/organism/_rich-text.scss */
.cke_editable hr,
.cke_wysiwyg_frame hr,
.neo-richText hr,
.neo-richTextStyles hr {
  margin-top: 60px;
  margin-bottom: 60px;
}

/* line 114, src/client/organism/_rich-text.scss */
.cke_editable .leadin,
.cke_wysiwyg_frame .leadin,
.neo-richText .leadin,
.neo-richTextStyles .leadin {
  margin-bottom: 10px;
}

/* line 119, src/client/organism/_rich-text.scss */
.cke_editable .headline--slab,
.cke_wysiwyg_frame .headline--slab,
.neo-richText .headline--slab,
.neo-richTextStyles .headline--slab {
  font-family: "Bechtle-DIN-Slab", sans-serif;
}

/* line 123, src/client/organism/_rich-text.scss */
.cke_editable strong,
.cke_wysiwyg_frame strong,
.neo-richText strong,
.neo-richTextStyles strong {
  font-weight: 600;
}

/* line 127, src/client/organism/_rich-text.scss */
.cke_editable a,
.cke_wysiwyg_frame a,
.neo-richText a,
.neo-richTextStyles a {
  text-decoration: underline;
  text-decoration-skip-ink: auto;
}

/* line 131, src/client/organism/_rich-text.scss */
.cke_editable a.raw, .cke_editable a.neo-link, .cke_editable a.neo-marker, .cke_editable a.neo-button,
.cke_wysiwyg_frame a.raw,
.cke_wysiwyg_frame a.neo-link,
.cke_wysiwyg_frame a.neo-marker,
.cke_wysiwyg_frame a.neo-button,
.neo-richText a.raw,
.neo-richText a.neo-link,
.neo-richText a.neo-marker,
.neo-richText a.neo-button,
.neo-richTextStyles a.raw,
.neo-richTextStyles a.neo-link,
.neo-richTextStyles a.neo-marker,
.neo-richTextStyles a.neo-button {
  text-decoration: none;
}

/* line 138, src/client/organism/_rich-text.scss */
.cke_editable a.neo-anker,
.cke_wysiwyg_frame a.neo-anker,
.neo-richText a.neo-anker,
.neo-richTextStyles a.neo-anker {
  text-decoration: none;
  color: inherit;
}

/* line 142, src/client/organism/_rich-text.scss */
.cke_editable a.neo-anker::before,
.cke_wysiwyg_frame a.neo-anker::before,
.neo-richText a.neo-anker::before,
.neo-richTextStyles a.neo-anker::before {
  content: "";
  height: 70px;
  margin-top: -70px;
  visibility: hidden;
}

@media (max-width: 767px) {
  /* line 142, src/client/organism/_rich-text.scss */
  .cke_editable a.neo-anker::before,
  .cke_wysiwyg_frame a.neo-anker::before,
  .neo-richText a.neo-anker::before,
  .neo-richTextStyles a.neo-anker::before {
    height: 105px;
    margin-top: -105px;
  }
}

/* line 156, src/client/organism/_rich-text.scss */
.cke_editable .h1, .cke_editable .neo-form .form .text h1, .neo-form .form .text .cke_editable h1,
.cke_editable .neo-form .form fieldset h1, .neo-form .form fieldset .cke_editable h1,
.cke_editable .h2,
.cke_editable .neo-form .form .text h2,
.neo-form .form .text .cke_editable h2,
.cke_editable .neo-form .form fieldset h2,
.neo-form .form fieldset .cke_editable h2,
.cke_editable .h3,
.cke_editable .h4,
.cke_editable .leadin,
.cke_editable .h5,
.cke_wysiwyg_frame .h1,
.cke_wysiwyg_frame .neo-form .form .text h1,
.neo-form .form .text .cke_wysiwyg_frame h1,
.cke_wysiwyg_frame .neo-form .form fieldset h1,
.neo-form .form fieldset .cke_wysiwyg_frame h1,
.cke_wysiwyg_frame .h2,
.cke_wysiwyg_frame .neo-form .form .text h2,
.neo-form .form .text .cke_wysiwyg_frame h2,
.cke_wysiwyg_frame .neo-form .form fieldset h2,
.neo-form .form fieldset .cke_wysiwyg_frame h2,
.cke_wysiwyg_frame .h3,
.cke_wysiwyg_frame .h4,
.cke_wysiwyg_frame .leadin,
.cke_wysiwyg_frame .h5,
.neo-richText .h1,
.neo-richText .neo-form .form .text h1,
.neo-form .form .text .neo-richText h1,
.neo-richText .neo-form .form fieldset h1,
.neo-form .form fieldset .neo-richText h1,
.neo-richText .h2,
.neo-richText .neo-form .form .text h2,
.neo-form .form .text .neo-richText h2,
.neo-richText .neo-form .form fieldset h2,
.neo-form .form fieldset .neo-richText h2,
.neo-richText .h3,
.neo-richText .h4,
.neo-richText .leadin,
.neo-richText .h5,
.neo-richTextStyles .h1,
.neo-richTextStyles .neo-form .form .text h1,
.neo-form .form .text .neo-richTextStyles h1,
.neo-richTextStyles .neo-form .form fieldset h1,
.neo-form .form fieldset .neo-richTextStyles h1,
.neo-richTextStyles .h2,
.neo-richTextStyles .neo-form .form .text h2,
.neo-form .form .text .neo-richTextStyles h2,
.neo-richTextStyles .neo-form .form fieldset h2,
.neo-form .form fieldset .neo-richTextStyles h2,
.neo-richTextStyles .h3,
.neo-richTextStyles .h4,
.neo-richTextStyles .leadin,
.neo-richTextStyles .h5 {
  margin-bottom: 10px;
}

/* line 165, src/client/organism/_rich-text.scss */
.cke_editable ul,
.cke_wysiwyg_frame ul,
.neo-richText ul,
.neo-richTextStyles ul {
  list-style: disc outside none;
  margin: 10px 0 10px 10px;
  line-height: 1.66rem;
}

/* line 171, src/client/organism/_rich-text.scss */
.cke_editable .neo-list,
.cke_wysiwyg_frame .neo-list,
.neo-richText .neo-list,
.neo-richTextStyles .neo-list {
  list-style-position: inside;
  margin: 10px 0 10px 10px;
}

/* line 175, src/client/organism/_rich-text.scss */
.cke_editable .neo-list--brand, .cke_editable .neo-list--yellow, .cke_editable .neo-list--grey,
.cke_wysiwyg_frame .neo-list--brand,
.cke_wysiwyg_frame .neo-list--yellow,
.cke_wysiwyg_frame .neo-list--grey,
.neo-richText .neo-list--brand,
.neo-richText .neo-list--yellow,
.neo-richText .neo-list--grey,
.neo-richTextStyles .neo-list--brand,
.neo-richTextStyles .neo-list--yellow,
.neo-richTextStyles .neo-list--grey {
  list-style: none;
  list-style-position: outside;
  text-indent: -10px;
}

/* line 183, src/client/organism/_rich-text.scss */
.cke_editable .neo-list--brand > li::before, .cke_editable .neo-list--yellow > li::before, .cke_editable .neo-list--grey > li::before,
.cke_wysiwyg_frame .neo-list--brand > li::before,
.cke_wysiwyg_frame .neo-list--yellow > li::before,
.cke_wysiwyg_frame .neo-list--grey > li::before,
.neo-richText .neo-list--brand > li::before,
.neo-richText .neo-list--yellow > li::before,
.neo-richText .neo-list--grey > li::before,
.neo-richTextStyles .neo-list--brand > li::before,
.neo-richTextStyles .neo-list--yellow > li::before,
.neo-richTextStyles .neo-list--grey > li::before {
  content: '\00a0\00a0\00a0';
  display: inline-block;
  height: 12px;
  width: 5px;
  margin-right: 5px;
  position: relative;
  top: 7px;
}

/* line 195, src/client/organism/_rich-text.scss */
.cke_editable .neo-list--yellow > li::before,
.cke_wysiwyg_frame .neo-list--yellow > li::before,
.neo-richText .neo-list--yellow > li::before,
.neo-richTextStyles .neo-list--yellow > li::before {
  background-color: #FDDC03;
}

/* line 199, src/client/organism/_rich-text.scss */
.cke_editable .neo-list--brand > li::before,
.cke_editable .neo-list--grey > li::before,
.cke_wysiwyg_frame .neo-list--brand > li::before,
.cke_wysiwyg_frame .neo-list--grey > li::before,
.neo-richText .neo-list--brand > li::before,
.neo-richText .neo-list--grey > li::before,
.neo-richTextStyles .neo-list--brand > li::before,
.neo-richTextStyles .neo-list--grey > li::before {
  background-color: #ACACAC;
}

/* line 204, src/client/organism/_rich-text.scss */
.cke_editable .neo-list--number,
.cke_wysiwyg_frame .neo-list--number,
.neo-richText .neo-list--number,
.neo-richTextStyles .neo-list--number {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 10px;
}

/* line 212, src/client/organism/_rich-text.scss */
.cke_editable table,
.cke_wysiwyg_frame table,
.neo-richText table,
.neo-richTextStyles table {
  width: 100%;
  margin: 10px 0;
}

/* line 216, src/client/organism/_rich-text.scss */
.cke_editable table.cke_show_borders table.cke_show_border,
.cke_editable table.cke_show_borders table.cke_show_border > tr > td,
.cke_editable table td,
.cke_wysiwyg_frame table.cke_show_borders table.cke_show_border,
.cke_wysiwyg_frame table.cke_show_borders table.cke_show_border > tr > td,
.cke_wysiwyg_frame table td,
.neo-richText table.cke_show_borders table.cke_show_border,
.neo-richText table.cke_show_borders table.cke_show_border > tr > td,
.neo-richText table td,
.neo-richTextStyles table.cke_show_borders table.cke_show_border,
.neo-richTextStyles table.cke_show_borders table.cke_show_border > tr > td,
.neo-richTextStyles table td {
  border: 1px solid #000 !important;
  padding: 5px 20px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.66rem;
}

/* line 228, src/client/organism/_rich-text.scss */
.cke_editable table.neo-table,
.cke_wysiwyg_frame table.neo-table,
.neo-richText table.neo-table,
.neo-richTextStyles table.neo-table {
  width: 100%;
}

/* line 232, src/client/organism/_rich-text.scss */
.cke_editable table.neo-table__border > tbody > tr > td,
.cke_wysiwyg_frame table.neo-table__border > tbody > tr > td,
.neo-richText table.neo-table__border > tbody > tr > td,
.neo-richTextStyles table.neo-table__border > tbody > tr > td {
  border: 1px solid #000 !important;
}

/* line 238, src/client/organism/_rich-text.scss */
.cke_editable table.neo-table__evenodd > tbody > tr,
.cke_wysiwyg_frame table.neo-table__evenodd > tbody > tr,
.neo-richText table.neo-table__evenodd > tbody > tr,
.neo-richTextStyles table.neo-table__evenodd > tbody > tr {
  background: #F7F7F7;
}

/* line 241, src/client/organism/_rich-text.scss */
.cke_editable table.neo-table__evenodd > tbody > tr:nth-child(2n),
.cke_wysiwyg_frame table.neo-table__evenodd > tbody > tr:nth-child(2n),
.neo-richText table.neo-table__evenodd > tbody > tr:nth-child(2n),
.neo-richTextStyles table.neo-table__evenodd > tbody > tr:nth-child(2n) {
  background: none;
}

/* line 245, src/client/organism/_rich-text.scss */
.cke_editable table.neo-table__evenodd > tbody > tr > td,
.cke_wysiwyg_frame table.neo-table__evenodd > tbody > tr > td,
.neo-richText table.neo-table__evenodd > tbody > tr > td,
.neo-richTextStyles table.neo-table__evenodd > tbody > tr > td {
  border: 0 !important;
}

/* line 252, src/client/organism/_rich-text.scss */
.cke_editable table.neo-table__event > tbody > tr > td,
.cke_wysiwyg_frame table.neo-table__event > tbody > tr > td,
.neo-richText table.neo-table__event > tbody > tr > td,
.neo-richTextStyles table.neo-table__event > tbody > tr > td {
  border: 0 !important;
}

/* line 255, src/client/organism/_rich-text.scss */
.cke_editable table.neo-table__event > tbody > tr > td:first-child,
.cke_wysiwyg_frame table.neo-table__event > tbody > tr > td:first-child,
.neo-richText table.neo-table__event > tbody > tr > td:first-child,
.neo-richTextStyles table.neo-table__event > tbody > tr > td:first-child {
  position: relative;
  padding-left: 40px;
  min-width: 140px;
}

/* line 260, src/client/organism/_rich-text.scss */
.cke_editable table.neo-table__event > tbody > tr > td:first-child::before,
.cke_wysiwyg_frame table.neo-table__event > tbody > tr > td:first-child::before,
.neo-richText table.neo-table__event > tbody > tr > td:first-child::before,
.neo-richTextStyles table.neo-table__event > tbody > tr > td:first-child::before {
  content: '';
  opacity: 0.3;
  position: absolute;
  top: 17px;
  left: 0;
  height: 20px;
  width: 40px;
  background-image: url("../assets/img/clock.png");
  background-repeat: no-repeat;
  background-position: center;
}

/* line 274, src/client/organism/_rich-text.scss */
.cke_editable table.neo-table__event > tbody > tr > td *,
.cke_wysiwyg_frame table.neo-table__event > tbody > tr > td *,
.neo-richText table.neo-table__event > tbody > tr > td *,
.neo-richTextStyles table.neo-table__event > tbody > tr > td * {
  line-height: inherit !important;
}

/* line 282, src/client/organism/_rich-text.scss */
.cke_editable sub,
.cke_editable sup,
.cke_wysiwyg_frame sub,
.cke_wysiwyg_frame sup,
.neo-richText sub,
.neo-richText sup,
.neo-richTextStyles sub,
.neo-richTextStyles sup {
  position: relative;
  top: -0.6rem;
  font-size: 0.567rem;
  line-height: 0;
}

/* line 290, src/client/organism/_rich-text.scss */
.cke_editable sub,
.cke_wysiwyg_frame sub,
.neo-richText sub,
.neo-richTextStyles sub {
  top: 0.2rem;
}

/* line 294, src/client/organism/_rich-text.scss */
.cke_editable .neo-button, .cke_editable .neo-form .form .button-wrapper input[type='submit'], .neo-form .form .button-wrapper .cke_editable input[type='submit'],
.cke_wysiwyg_frame .neo-button,
.cke_wysiwyg_frame .neo-form .form .button-wrapper input[type='submit'],
.neo-form .form .button-wrapper .cke_wysiwyg_frame input[type='submit'],
.neo-richText .neo-button,
.neo-richText .neo-form .form .button-wrapper input[type='submit'],
.neo-form .form .button-wrapper .neo-richText input[type='submit'],
.neo-richTextStyles .neo-button,
.neo-richTextStyles .neo-form .form .button-wrapper input[type='submit'],
.neo-form .form .button-wrapper .neo-richTextStyles input[type='submit'] {
  margin-top: 5px;
}

/* line 1, src/client/organism/_spacer.scss */
.neo-spacer {
  width: 100%;
}

@media (max-width: 479px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--xs-0 {
    height: 0px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--sm-0 {
    height: 0px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--md-0 {
    height: 0px;
  }
}

@media (min-width: 1024px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--lg-0 {
    height: 0px;
  }
}

@media (max-width: 479px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--xs-5 {
    height: 5px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--sm-5 {
    height: 5px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--md-5 {
    height: 5px;
  }
}

@media (min-width: 1024px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--lg-5 {
    height: 5px;
  }
}

@media (max-width: 479px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--xs-10 {
    height: 10px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--sm-10 {
    height: 10px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--md-10 {
    height: 10px;
  }
}

@media (min-width: 1024px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--lg-10 {
    height: 10px;
  }
}

@media (max-width: 479px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--xs-15 {
    height: 15px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--sm-15 {
    height: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--md-15 {
    height: 15px;
  }
}

@media (min-width: 1024px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--lg-15 {
    height: 15px;
  }
}

@media (max-width: 479px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--xs-20 {
    height: 20px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--sm-20 {
    height: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--md-20 {
    height: 20px;
  }
}

@media (min-width: 1024px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--lg-20 {
    height: 20px;
  }
}

@media (max-width: 479px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--xs-25 {
    height: 25px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--sm-25 {
    height: 25px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--md-25 {
    height: 25px;
  }
}

@media (min-width: 1024px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--lg-25 {
    height: 25px;
  }
}

@media (max-width: 479px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--xs-30 {
    height: 30px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--sm-30 {
    height: 30px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--md-30 {
    height: 30px;
  }
}

@media (min-width: 1024px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--lg-30 {
    height: 30px;
  }
}

@media (max-width: 479px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--xs-40 {
    height: 40px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--sm-40 {
    height: 40px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--md-40 {
    height: 40px;
  }
}

@media (min-width: 1024px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--lg-40 {
    height: 40px;
  }
}

@media (max-width: 479px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--xs-50 {
    height: 50px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--sm-50 {
    height: 50px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--md-50 {
    height: 50px;
  }
}

@media (min-width: 1024px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--lg-50 {
    height: 50px;
  }
}

@media (max-width: 479px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--xs-60 {
    height: 60px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--sm-60 {
    height: 60px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--md-60 {
    height: 60px;
  }
}

@media (min-width: 1024px) {
  /* line 364, src/client/styles/global/_mixins.scss */
  .neo-spacer--lg-60 {
    height: 60px;
  }
}

/* line 375, src/client/styles/global/_mixins.scss */
.neo-spacer--0 {
  height: 0px;
}

/* line 375, src/client/styles/global/_mixins.scss */
.neo-spacer--5 {
  height: 5px;
}

/* line 375, src/client/styles/global/_mixins.scss */
.neo-spacer--10 {
  height: 10px;
}

/* line 375, src/client/styles/global/_mixins.scss */
.neo-spacer--15 {
  height: 15px;
}

/* line 375, src/client/styles/global/_mixins.scss */
.neo-spacer--20 {
  height: 20px;
}

/* line 375, src/client/styles/global/_mixins.scss */
.neo-spacer--25 {
  height: 25px;
}

/* line 375, src/client/styles/global/_mixins.scss */
.neo-spacer--30 {
  height: 30px;
}

/* line 375, src/client/styles/global/_mixins.scss */
.neo-spacer--40 {
  height: 40px;
}

/* line 375, src/client/styles/global/_mixins.scss */
.neo-spacer--50 {
  height: 50px;
}

/* line 375, src/client/styles/global/_mixins.scss */
.neo-spacer--60 {
  height: 60px;
}

/* line 383, src/client/styles/global/_mixins.scss */
.neo-spacer.neo-blur--xs .neo-visibility__label--xs {
  color: #535353;
  text-decoration: line-through;
}

@media (max-width: 479px) {
  /* line 389, src/client/styles/global/_mixins.scss */
  .neo-spacer .neo-visibility__label--xs {
    background-color: #DBDCDE;
  }
}

/* line 383, src/client/styles/global/_mixins.scss */
.neo-spacer.neo-blur--sm .neo-visibility__label--sm {
  color: #535353;
  text-decoration: line-through;
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 389, src/client/styles/global/_mixins.scss */
  .neo-spacer .neo-visibility__label--sm {
    background-color: #DBDCDE;
  }
}

/* line 383, src/client/styles/global/_mixins.scss */
.neo-spacer.neo-blur--md .neo-visibility__label--md {
  color: #535353;
  text-decoration: line-through;
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 389, src/client/styles/global/_mixins.scss */
  .neo-spacer .neo-visibility__label--md {
    background-color: #DBDCDE;
  }
}

/* line 383, src/client/styles/global/_mixins.scss */
.neo-spacer.neo-blur--lg .neo-visibility__label--lg {
  color: #535353;
  text-decoration: line-through;
}

@media (min-width: 1024px) {
  /* line 389, src/client/styles/global/_mixins.scss */
  .neo-spacer .neo-visibility__label--lg {
    background-color: #DBDCDE;
  }
}

/* line 383, src/client/styles/global/_mixins.scss */
.neo-grid__spacer.neo-blur--xs .neo-visibility__label--xs {
  color: #535353;
  text-decoration: line-through;
}

@media (max-width: 479px) {
  /* line 389, src/client/styles/global/_mixins.scss */
  .neo-grid__spacer .neo-visibility__label--xs {
    background-color: #DBDCDE;
  }
}

/* line 383, src/client/styles/global/_mixins.scss */
.neo-grid__spacer.neo-blur--sm .neo-visibility__label--sm {
  color: #535353;
  text-decoration: line-through;
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 389, src/client/styles/global/_mixins.scss */
  .neo-grid__spacer .neo-visibility__label--sm {
    background-color: #DBDCDE;
  }
}

/* line 383, src/client/styles/global/_mixins.scss */
.neo-grid__spacer.neo-blur--md .neo-visibility__label--md {
  color: #535353;
  text-decoration: line-through;
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 389, src/client/styles/global/_mixins.scss */
  .neo-grid__spacer .neo-visibility__label--md {
    background-color: #DBDCDE;
  }
}

/* line 383, src/client/styles/global/_mixins.scss */
.neo-grid__spacer.neo-blur--lg .neo-visibility__label--lg {
  color: #535353;
  text-decoration: line-through;
}

@media (min-width: 1024px) {
  /* line 389, src/client/styles/global/_mixins.scss */
  .neo-grid__spacer .neo-visibility__label--lg {
    background-color: #DBDCDE;
  }
}

/* line 1, src/client/organism/_textbox-on-image.scss */
.neo-textOnImage {
  overflow: hidden;
}

/* line 4, src/client/organism/_textbox-on-image.scss */
.neo-textOnImage__text {
  overflow: hidden;
}

@media (min-width: 1024px) {
  /* line 4, src/client/organism/_textbox-on-image.scss */
  .neo-textOnImage__text {
    position: absolute;
    padding: 10px;
    max-width: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    /* NOTE: these names (e.g. 'top_left') is set by backend, so can't be adapted in a simple way */
  }
  /* line 14, src/client/organism/_textbox-on-image.scss */
  .neo-textOnImage__text--top_left {
    top: 60px;
    left: 20px;
  }
  /* line 19, src/client/organism/_textbox-on-image.scss */
  .neo-textOnImage__text--top_right {
    top: 60px;
    right: 20px;
  }
  /* line 24, src/client/organism/_textbox-on-image.scss */
  .neo-textOnImage__text--bottom_left {
    bottom: 60px;
    left: 20px;
  }
  /* line 29, src/client/organism/_textbox-on-image.scss */
  .neo-textOnImage__text--bottom_right {
    bottom: 60px;
    right: 20px;
  }
  /* line 34, src/client/organism/_textbox-on-image.scss */
  .neo-textOnImage__text--bottom {
    bottom: 6px;
    right: 20px;
  }
}

/* line 40, src/client/organism/_textbox-on-image.scss */
.neo-textOnImage__text_sub {
  font-size: 0.867rem;
}

@media (max-width: 767px) {
  /* line 46, src/client/organism/_textbox-on-image.scss */
  .neo-textOnImage__image--citation {
    max-width: 100%;
  }
  /* line 50, src/client/organism/_textbox-on-image.scss */
  .neo-textOnImage__image--citation::before {
    display: none;
  }
}

/* line 58, src/client/organism/_textbox-on-image.scss */
.neo-textOnImage__text--citation {
  background-color: rgba(0, 0, 0, 0.5);
  left: 5%;
  padding: 40px;
}

@media (min-width: 768px) {
  /* line 58, src/client/organism/_textbox-on-image.scss */
  .neo-textOnImage__text--citation {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    position: absolute;
    max-width: 40%;
  }
}

/* line 71, src/client/organism/_textbox-on-image.scss */
.neo-textOnImage__text--citation .neo-textOnImage__text_inner p {
  border-left: 2px solid #FFF;
  padding-left: 20px;
  font-size: 1.867rem;
  line-height: 2rem;
  color: #FFF;
}

/* line 78, src/client/organism/_textbox-on-image.scss */
.neo-textOnImage__text--citation .neo-textOnImage__text_inner p.neo-textOnImage__text_sub {
  font-weight: 600;
  font-size: 1.333rem;
}

/* line 1, src/client/organism/_video.scss */
.neo-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 100%;
  display: inline-block;
}

/* line 13, src/client/organism/_video.scss */
.neo-video > embed,
.neo-video > iframe,
.neo-video > object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 5, src/client/organism/carousel/_carousel.scss */
.neo-carousel {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

@media (max-width: 1023px) {
  /* line 5, src/client/organism/carousel/_carousel.scss */
  .neo-carousel {
    width: calc(100% + 2 * 22px - 10px);
  }
}

@media (min-width: 1024px) and (max-width: 1398px) {
  /* line 5, src/client/organism/carousel/_carousel.scss */
  .neo-carousel {
    width: calc(100% + 2 * 24px - 10px);
  }
}

@media (min-width: 1400px) {
  /* line 5, src/client/organism/carousel/_carousel.scss */
  .neo-carousel {
    width: calc(100% + 253px - 10px);
  }
}

/* line 24, src/client/organism/carousel/_carousel.scss */
.neo-carousel--heightNormal {
  height: 500px;
}

/* line 28, src/client/organism/carousel/_carousel.scss */
.neo-carousel--heightSmaller {
  height: 400px;
}

/* line 32, src/client/organism/carousel/_carousel.scss */
.neo-carousel--heightLarger {
  height: 600px;
}

/* line 36, src/client/organism/carousel/_carousel.scss */
.neo-carousel--heightAuto {
  height: auto;
}

/* line 40, src/client/organism/carousel/_carousel.scss */
.neo-carousel__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-bottom: 30px;
}

/* line 47, src/client/organism/carousel/_carousel.scss */
.neo-carousel__element {
  height: 100%;
  position: inherit;
  overflow: hidden;
  padding-top: 10px;
  -webkit-transition: opacity 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: opacity 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
}

@media (min-width: 480px) {
  /* line 47, src/client/organism/carousel/_carousel.scss */
  .neo-carousel__element {
    opacity: 0.5;
  }
  /* line 57, src/client/organism/carousel/_carousel.scss */
  .neo-carousel__element.tns-slide-active ~ .neo-carousel__element.tns-slide-active {
    opacity: 1;
  }
  /* line 61, src/client/organism/carousel/_carousel.scss */
  .neo-carousel__element.tns-slide-active ~ .neo-carousel__element.tns-slide-active ~ .neo-carousel__element.tns-slide-active {
    opacity: 0.5;
  }
}

/* line 66, src/client/organism/carousel/_carousel.scss */
.neo-carousel__element_img {
  line-height: normal;
  position: relative;
  width: 100%;
}

/* line 71, src/client/organism/carousel/_carousel.scss */
.neo-carousel__element_img img {
  display: block;
  width: 100%;
}

/* line 77, src/client/organism/carousel/_carousel.scss */
.neo-carousel__element_headline {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #FFF;
  padding: 10px 20px;
  text-transform: uppercase;
  z-index: 1;
}

/* line 288, src/client/styles/global/_mixins.scss */
.neo-carousel__element_headline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* line 86, src/client/organism/carousel/_carousel.scss */
.neo-carousel__element_headline::before {
  background-color: rgba(0, 0, 0, 0.65);
}

/* line 92, src/client/organism/carousel/_carousel.scss */
.neo-carousel .tns-inner {
  overflow: hidden;
}

/* line 3, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* line 13, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities--wide[max-width~="1024px"] .neo-facilities__searchOverlay,
.neo-facilities--wide[max-width~="1024px"] .neo-facilities__filterOverlay {
  margin: 0 22px;
}

/* line 21, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities[max-width~="1024px"] .neo-facilities__filterOverlay {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 0 0 20px;
}

/* line 28, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities[min-width~="1024px"] {
  display: block;
}

/* line 31, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities[min-width~="1024px"] .neo-facilities__filterOverlay {
  top: 20px;
  left: auto;
  right: 20px;
  position: absolute;
}

/* line 39, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities__filterOverlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* line 44, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities__filterOption {
  padding-top: 15px;
}

/* line 48, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities__filterOption > .neo-form__checkbox > input[type='checkbox']:checked + label[for='ecommerce']::before {
  background: #FDDC03;
  border-color: #FDDC03;
  color: #155195;
}

/* line 56, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities__searchOverlay {
  background-color: #FFF;
}

/* line 59, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities__searchOverlay_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 62, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities__searchOverlay_line_input {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* line 66, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities__searchOverlay_line_input--bigger {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}

/* line 73, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities[max-width~="1024px"] .neo-facilities__searchOverlay {
  padding: 0 0 20px;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

/* line 80, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities[min-width~="1024px"] .neo-facilities__searchOverlay {
  position: absolute;
  top: 60px;
  left: 30px;
  padding: 30px;
}

/* line 88, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities__gmap {
  background-color: grey;
  height: 680px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  /*NEXT-6613/Safari Bug: not 100% valid if this will fix the issue over time, but it
          does for now.*/
}

/* line 93, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities__gmap > div {
  pointer-events: none;
}

/* line 97, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities__gmap--active > div {
  pointer-events: auto;
}

/* line 103, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities__gmap iframe {
  display: none;
}

/* line 108, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities__infoWindow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  width: 250px;
  padding: 5px 0;
}

/* line 118, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities__infoWindow--mixed .neo-facilities__infoTitle::before {
  content: "";
  float: left;
  width: 1em;
  height: 1.333rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* line 129, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities__infoWindow--mixed .neo-facilities__infoTitle--blue::before {
  background-image: url("../assets/img/marker_systemhouse.png");
}

/* line 135, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities__infoWindow--mixed .neo-facilities__infoTitle--yellow::before {
  background-image: url("../assets/img/marker_ecommerce.png");
}

/* line 144, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities__infoImage {
  width: 100%;
}

/* line 148, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities__infoImage, .neo-facilities__infoTitle, .neo-facilities__infoText {
  margin-bottom: 10px;
}

/* line 154, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities__infoTitle:not(:first-child) {
  margin-top: 5px;
  padding-top: 10px;
  border-top: 1px solid gray;
}

/* line 160, src/client/organism/facility-search/_facility-search.scss */
.neo-facilities__locateButton {
  margin-top: 30px;
  width: 100%;
}

/* line 4, src/client/organism/image-gallery/_image-gallery.scss */
.neo-imageGallery > .neo-grid__filler {
  height: 0;
}

/* line 11, src/client/organism/image-gallery/_image-gallery.scss */
.neo-gallerySlider.neo-slider {
  height: auto;
  padding-bottom: 30px;
}

/* line 15, src/client/organism/image-gallery/_image-gallery.scss */
.neo-gallerySlider.neo-slider .neo-slider__previous,
.neo-gallerySlider.neo-slider .neo-slider__next {
  padding-bottom: 30px;
}

/* line 22, src/client/organism/image-gallery/_image-gallery.scss */
.neo-gallerySlider__element_container .neo-lightBox__link {
  padding-bottom: 75%;
}

/* line 25, src/client/organism/image-gallery/_image-gallery.scss */
.neo-gallerySlider__element_container .neo-lightBox__link > img {
  height: 75%;
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
/* line 13, node_modules/photoswipe/src/css/main.scss */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}

/* line 30, node_modules/photoswipe/src/css/main.scss */
.pswp * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* line 35, node_modules/photoswipe/src/css/main.scss */
.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
/* line 41, node_modules/photoswipe/src/css/main.scss */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* line 49, node_modules/photoswipe/src/css/main.scss */
.pswp--open {
  display: block;
}

/* line 53, node_modules/photoswipe/src/css/main.scss */
.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

/* line 60, node_modules/photoswipe/src/css/main.scss */
.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

/* line 67, node_modules/photoswipe/src/css/main.scss */
.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
/* line 78, node_modules/photoswipe/src/css/main.scss */
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

/* line 91, node_modules/photoswipe/src/css/main.scss */
.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* line 100, node_modules/photoswipe/src/css/main.scss */
.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */
/* line 112, node_modules/photoswipe/src/css/main.scss */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}

/* line 121, node_modules/photoswipe/src/css/main.scss */
.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1), -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* line 132, node_modules/photoswipe/src/css/main.scss */
.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* line 139, node_modules/photoswipe/src/css/main.scss */
.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}

/* line 146, node_modules/photoswipe/src/css/main.scss */
.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

/* line 151, node_modules/photoswipe/src/css/main.scss */
.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

/* line 160, node_modules/photoswipe/src/css/main.scss */
.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
/* line 172, node_modules/photoswipe/src/css/main.scss */
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
/* line 180, node_modules/photoswipe/src/css/main.scss */
.pswp__img--placeholder--blank {
  background: #222;
}

/* line 184, node_modules/photoswipe/src/css/main.scss */
.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
/* line 195, node_modules/photoswipe/src/css/main.scss */
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

/* line 207, node_modules/photoswipe/src/css/main.scss */
.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

/* line 4, src/client/organism/image-lightbox/_image-lightbox.scss */
.neo-lightBox__item {
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 10px;
}

/* line 10, src/client/organism/image-lightbox/_image-lightbox.scss */
.neo-lightBox__link {
  display: block;
  width: 100%;
}

/* line 14, src/client/organism/image-lightbox/_image-lightbox.scss */
.neo-lightBox__link:focus {
  outline: none;
}

/* line 18, src/client/organism/image-lightbox/_image-lightbox.scss */
.neo-lightBox__link > img {
  width: 100%;
  pointer-events: none;
}

/*! Based on PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
/* line 47, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: 100;
}

/* line 65, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__button:focus, .pswp__button:hover {
  opacity: 1;
}

/* line 70, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__button:active {
  outline: none;
  opacity: 0.9;
}

/* line 75, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* line 80, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__button svg {
  pointer-events: none;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
/* line 86, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

/* line 90, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__button,
.pswp__button--arrow--left::before,
.pswp__button--arrow--right::before {
  width: 44px;
  height: 44px;
}

/* line 101, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__button--close::before,
.pswp__button--arrow--left::before,
.pswp__button--arrow--right::before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* line 113, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__button--close {
  background-position: 0 -44px;
  top: 10px;
  right: 10px;
}

/* line 118, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__button--close::before {
  background-image: url("../assets/img/cross--white.png");
}

/* line 123, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__button--share {
  background-position: -44px -44px;
}

/* line 127, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__button--fs {
  display: none;
}

/* line 131, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp--supports-fs .pswp__button--fs {
  display: block;
}

/* line 135, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

/* line 139, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

/* line 144, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* line 148, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

/* no arrows on touch screens */
/* line 154, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to ::before pseudo-element)
*/
/* line 164, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  width: 70px;
  height: 100px;
  position: absolute;
}

/* line 173, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__button--arrow--left {
  left: 0;
}

/* line 176, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__button--arrow--left::before {
  background-image: url("../assets/img/chevron-left--white.png");
}

/* line 181, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__button--arrow--right {
  right: 0;
}

/* line 184, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__button--arrow--right::before {
  background-image: url("../assets/img/chevron-right--white.png");
}

/*

	2. Share modal/popup and links

	Removed by Neofonie, not needed

 */
/*

	3. Index indicator ("1 of X" counter)

	Removed by Neofonie, not needed

 */
/*

	4. Caption

 */
/* line 211, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}

/* line 218, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}

/* line 224, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__caption__center {
  color: #FFF;
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 0.867rem;
  line-height: 0.66rem;
  padding: 10px;
}

/* line 234, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
/* line 239, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__caption--fake {
  visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

	Removed by Neofonie, not needed

 */
/*

	6. Additional styles

 */
/* root element of UI */
/* line 260, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
/* line 268, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

/* line 276, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__caption,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
/* line 286, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

/* line 292, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
/* line 298, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
/* line 306, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}

/* line 310, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
/* line 321, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
/* line 332, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

/* line 339, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp__element--disabled {
  display: none !important;
}

/* line 345, src/client/organism/image-lightbox/_image-lightbox.scss */
.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

/* line 3, src/client/organism/layout-container/_layout-container.scss */
.neo-layoutContainer {
  /**
     * Creates the row type modifiers, like '.neo-layoutContainer--twoRowLayout'.
     * For the available types see the variable '$layoutContainer_rowType' above.
     */
}

/* line 6, src/client/organism/layout-container/_layout-container.scss */
.neo-layoutContainer--rowLayout {
  display: table;
  table-layout: fixed;
  height: 100%;
}

/* line 11, src/client/organism/layout-container/_layout-container.scss */
.neo-layoutContainer--rowLayout > .neo-layoutContainer__wrapper {
  display: table-row;
  height: 100%;
}

/* line 15, src/client/organism/layout-container/_layout-container.scss */
.neo-layoutContainer--rowLayout > .neo-layoutContainer__wrapper > .neo-layoutCell {
  display: table-cell;
  vertical-align: top;
  height: 100%;
  min-height: 1px;
}

/* line 21, src/client/organism/layout-container/_layout-container.scss */
.neo-layoutContainer--rowLayout > .neo-layoutContainer__wrapper > .neo-layoutCell > .neo-organism {
  margin: 0;
  height: 100%;
}

/* line 45, src/client/organism/layout-container/_layout-container.scss */
.neo-layoutContainer--oneRowLayout > .neo-layoutContainer__wrapper .neo-layoutCell {
  width: 100%;
}

@media (max-width: 767px) {
  /* line 44, src/client/organism/layout-container/_layout-container.scss */
  .neo-layoutContainer--oneRowLayout > .neo-layoutContainer__wrapper {
    height: initial;
  }
  /* line 52, src/client/organism/layout-container/_layout-container.scss */
  .neo-layoutContainer--oneRowLayout > .neo-layoutContainer__wrapper .neo-layoutCell {
    display: block;
    width: 100%;
  }
}

/* line 45, src/client/organism/layout-container/_layout-container.scss */
.neo-layoutContainer--twoRowLayout > .neo-layoutContainer__wrapper .neo-layoutCell {
  width: 50%;
}

@media (max-width: 767px) {
  /* line 44, src/client/organism/layout-container/_layout-container.scss */
  .neo-layoutContainer--twoRowLayout > .neo-layoutContainer__wrapper {
    height: initial;
  }
  /* line 52, src/client/organism/layout-container/_layout-container.scss */
  .neo-layoutContainer--twoRowLayout > .neo-layoutContainer__wrapper .neo-layoutCell {
    display: block;
    width: 100%;
  }
}

/* line 45, src/client/organism/layout-container/_layout-container.scss */
.neo-layoutContainer--threeRowLayout > .neo-layoutContainer__wrapper .neo-layoutCell {
  width: 33.33333%;
}

@media (max-width: 767px) {
  /* line 44, src/client/organism/layout-container/_layout-container.scss */
  .neo-layoutContainer--threeRowLayout > .neo-layoutContainer__wrapper {
    height: initial;
  }
  /* line 52, src/client/organism/layout-container/_layout-container.scss */
  .neo-layoutContainer--threeRowLayout > .neo-layoutContainer__wrapper .neo-layoutCell {
    display: block;
    width: 100%;
  }
}

/* line 45, src/client/organism/layout-container/_layout-container.scss */
.neo-layoutContainer--fourRowLayout > .neo-layoutContainer__wrapper .neo-layoutCell {
  width: 25%;
}

@media (max-width: 767px) {
  /* line 44, src/client/organism/layout-container/_layout-container.scss */
  .neo-layoutContainer--fourRowLayout > .neo-layoutContainer__wrapper {
    height: initial;
  }
  /* line 52, src/client/organism/layout-container/_layout-container.scss */
  .neo-layoutContainer--fourRowLayout > .neo-layoutContainer__wrapper .neo-layoutCell {
    display: block;
    width: 100%;
  }
}

/* line 45, src/client/organism/layout-container/_layout-container.scss */
.neo-layoutContainer--fiveRowLayout > .neo-layoutContainer__wrapper .neo-layoutCell {
  width: 20%;
}

@media (max-width: 767px) {
  /* line 44, src/client/organism/layout-container/_layout-container.scss */
  .neo-layoutContainer--fiveRowLayout > .neo-layoutContainer__wrapper {
    height: initial;
  }
  /* line 52, src/client/organism/layout-container/_layout-container.scss */
  .neo-layoutContainer--fiveRowLayout > .neo-layoutContainer__wrapper .neo-layoutCell {
    display: block;
    width: 100%;
  }
}

/* line 68, src/client/organism/layout-container/_layout-container.scss */
.neo-body.neoMgnl-body--isEditing .neo-layoutContainer {
  width: 100%;
}

/* line 4, src/client/organism/masonry-grid/_masonry-grid.scss */
.neo-masonryGrid {
  margin: 0 5px;
}

/* line 7, src/client/organism/masonry-grid/_masonry-grid.scss */
.neo-masonryGrid--fix {
  margin: 0;
}

/* line 11, src/client/organism/masonry-grid/_masonry-grid.scss */
.neo-masonryGrid__item {
  background-color: #6B7A83;
  color: #FFF;
  height: 340px;
  max-height: 340px;
}

/* line 18, src/client/organism/masonry-grid/_masonry-grid.scss */
.neo-masonryGrid__item--twiceHeight {
  height: 680px;
  max-height: 680px;
}

/* line 23, src/client/organism/masonry-grid/_masonry-grid.scss */
.neo-masonryGrid__item--tripleHeight {
  height: 1020px;
  max-height: 1020px;
}

@media (min-width: 1400px) {
  /* line 11, src/client/organism/masonry-grid/_masonry-grid.scss */
  .neo-masonryGrid__item {
    width: 33.33333%;
  }
}

@media (min-width: 768px) and (max-width: 1398px) {
  /* line 11, src/client/organism/masonry-grid/_masonry-grid.scss */
  .neo-masonryGrid__item {
    width: 50%;
  }
}

@media (max-width: 767px) {
  /* line 11, src/client/organism/masonry-grid/_masonry-grid.scss */
  .neo-masonryGrid__item {
    width: 100%;
  }
}

@media (min-width: 1400px) {
  /* line 41, src/client/organism/masonry-grid/_masonry-grid.scss */
  .neo-masonryGrid__item--twiceWidth {
    width: 66.66667%;
  }
}

@media (max-width: 1399px) {
  /* line 41, src/client/organism/masonry-grid/_masonry-grid.scss */
  .neo-masonryGrid__item--twiceWidth {
    width: 100%;
  }
}

/* line 51, src/client/organism/masonry-grid/_masonry-grid.scss */
.neo-masonryGrid__item--tripleWidth {
  width: 100%;
}

/* line 56, src/client/organism/masonry-grid/_masonry-grid.scss */
.neo-masonryGrid__item_link {
  height: 100%;
  width: 100%;
  display: block;
}

/* line 63, src/client/organism/masonry-grid/_masonry-grid.scss */
.neo-masonryGrid__item_imageItem {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

@media (max-width: 767px) {
  /* line 63, src/client/organism/masonry-grid/_masonry-grid.scss */
  .neo-masonryGrid__item_imageItem {
    display: none;
  }
}

/* line 73, src/client/organism/masonry-grid/_masonry-grid.scss */
.neo-masonryGrid__item_textItem {
  max-height: inherit;
  color: inherit;
  padding: 60px;
}

/* line 78, src/client/organism/masonry-grid/_masonry-grid.scss */
.neo-masonryGrid__item_textItem > .headline {
  font-family: "Bechtle-DIN", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* line 85, src/client/organism/masonry-grid/_masonry-grid.scss */
.neo-masonryGrid__item_textItem > .subheadline {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* line 90, src/client/organism/masonry-grid/_masonry-grid.scss */
.neo-masonryGrid__item_textItem > .neo-richText {
  max-height: 95px;
  overflow: hidden;
  margin-bottom: 20px;
}

/* line 96, src/client/organism/masonry-grid/_masonry-grid.scss */
.neo-masonryGrid__item_textItem > .neo-button--margin {
  margin-right: 10px;
}

/* line 3, src/client/organism/next-slider/_next-slider.scss */
.neo-nextSlider {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

/* line 9, src/client/organism/next-slider/_next-slider.scss */
.neo-nextSlider__pages {
  -webkit-transition: left 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: left 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  left: 0;
  height: 100%;
  width: 100%;
  position: relative;
}

/* line 17, src/client/organism/next-slider/_next-slider.scss */
.neo-nextSlider__item {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  padding: 10px;
}

/* line 25, src/client/organism/next-slider/_next-slider.scss */
.neo-nextSlider .neo-slider__element {
  /*height: auto;*/
  position: absolute;
}

/* line 34, src/client/organism/next-slider/_next-slider.scss */
.neo-nextSlider .neo-slider__element > .neo-slider__element_container {
  height: auto;
  position: relative;
}

/* line 3, src/client/organism/press-overview/_press-filter.scss */
.neo-press__filter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #DBDCDE;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 10px;
}

/* line 9, src/client/organism/press-overview/_press-filter.scss */
.neo-press__filter label {
  margin-right: 10px;
}

/* line 13, src/client/organism/press-overview/_press-filter.scss */
.neo-press__filter .neo-form__select {
  margin: 0;
}

/* line 1, src/client/organism/press-overview/_press-overview.scss */
.neo-pressOverview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

/* line 7, src/client/organism/press-overview/_press-overview.scss */
.neo-pressOverview__items {
  width: 100%;
}

/* line 11, src/client/organism/press-overview/_press-overview.scss */
.neo-pressOverview__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  overflow: hidden;
}

/* line 17, src/client/organism/press-overview/_press-overview.scss */
.neo-pressOverview__panel {
  padding-left: 10px;
}

/* line 21, src/client/organism/press-overview/_press-overview.scss */
.neo-pressOverview__date {
  padding: 10px 0;
  margin-right: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  word-wrap: break-word;
}

/* line 28, src/client/organism/press-overview/_press-overview.scss */
.neo-pressOverview__content {
  padding: 10px 0;
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
}

@media (max-width: 767px) {
  /* line 28, src/client/organism/press-overview/_press-overview.scss */
  .neo-pressOverview__content {
    -webkit-box-flex: 6;
        -ms-flex: 6;
            flex: 6;
  }
}

/* line 37, src/client/organism/press-overview/_press-overview.scss */
.neo-pressOverview__spacer {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 767px) {
  /* line 37, src/client/organism/press-overview/_press-overview.scss */
  .neo-pressOverview__spacer {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
  }
}

/* line 4, src/client/organism/slider/_kenburns.scss */
.neo-stage__kbss_container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* line 11, src/client/organism/slider/_kenburns.scss */
.neo-stage__kbss_element {
  position: absolute;
  width: 100%;
  height: 100%;
  background: no-repeat 50% 100%;
  background-size: cover;
  filter: alpha(opacity=100);
  opacity: 1;
  z-index: 0;
}

/* line 24, src/client/organism/slider/_kenburns.scss */
.neo-stage__kbss_element--action {
  -webkit-animation-name: kenburns;
          animation-name: kenburns;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

/* line 29, src/client/organism/slider/_kenburns.scss */
.neo-stage__kbss_element--action-stop {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  visibility: hidden;
}

/* line 34, src/client/organism/slider/_kenburns.scss */
.neo-stage__kbss_element--action-show {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  -webkit-transition: all 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: all 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  filter: alpha(opacity=100);
  opacity: 1 !important;
  z-index: 1 !important;
}

/* line 46, src/client/organism/slider/_kenburns.scss */
.neo-stage__kbss_element_video {
  width: 100%;
  height: 100%;
  background-color: #FFF;
}

/* line 54, src/client/organism/slider/_kenburns.scss */
.neo-stage__infoBox_layout {
  filter: alpha(opacity=0);
  opacity: 0;
  z-index: 0;
}

/* line 59, src/client/organism/slider/_kenburns.scss */
.neo-stage__infoBox_layout--action {
  -webkit-animation-name: kenburnsBox;
          animation-name: kenburnsBox;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

/* line 64, src/client/organism/slider/_kenburns.scss */
.neo-stage__infoBox_layout--action-stop {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  visibility: hidden;
}

/* line 69, src/client/organism/slider/_kenburns.scss */
.neo-stage__infoBox_layout--action-show {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  filter: alpha(opacity=100);
  opacity: 1 !important;
  z-index: 1 !important;
}

/* line 6, src/client/organism/slider/_slider.scss */
.neojs-no-transition {
  -webkit-transition: all 0s;
  transition: all 0s;
}

/* line 10, src/client/organism/slider/_slider.scss */
.neo-slider {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

/* line 16, src/client/organism/slider/_slider.scss */
.neo-slider::after {
  content: '';
  width: 1px;
  height: 100%;
  display: block;
  background-color: #FFF;
  position: absolute;
  top: 0;
  right: 0;
}

/* line 27, src/client/organism/slider/_slider.scss */
.neo-slider__tabs {
  height: 500px;
  width: 100%;
}

/* line 32, src/client/organism/slider/_slider.scss */
.neo-slider__tabs .neo-slider__element {
  margin: 10px;
}

/* line 36, src/client/organism/slider/_slider.scss */
.neo-slider__tabs .neo-slider__container {
  height: calc(100% - 30px);
  overflow: hidden;
}

/* line 43, src/client/organism/slider/_slider.scss */
.neo-slider__container {
  -webkit-transition: left 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: left 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  position: relative;
  min-width: 100%;
  height: 100%;
}

/* line 49, src/client/organism/slider/_slider.scss */
.neo-slider__container--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
}

/* line 55, src/client/organism/slider/_slider.scss */
.neo-slider__element {
  height: 100%;
  display: inline-block;
  position: relative;
  float: left;
}

/* line 61, src/client/organism/slider/_slider.scss */
.neo-slider__element--flex {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* line 65, src/client/organism/slider/_slider.scss */
.neo-slider__element--edited {
  width: 100%;
  height: auto;
}

/* line 69, src/client/organism/slider/_slider.scss */
.neo-slider__element--edited > .neo-slider__element_container {
  position: initial !important;
}

/* line 74, src/client/organism/slider/_slider.scss */
.neo-slider__element_text {
  line-height: 1.6rem;
  font-size: 1.333rem;
  font-weight: 100;
  position: absolute;
  color: #FFF;
  padding: 60px 60px 0 0;
  top: 0;
  left: 50%;
}

/* line 85, src/client/organism/slider/_slider.scss */
.neo-slider__element_img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 96, src/client/organism/slider/_slider.scss */
.neo-slider__element > .neo-slider__element_container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 103, src/client/organism/slider/_slider.scss */
.neo-slider__element > .neo-slider__element_container .neo-textMedia,
.neo-slider__element > .neo-slider__element_container .neo-textOnImage,
.neo-slider__element > .neo-slider__element_container .neo-teaserTopic {
  height: 500px;
  max-height: 500px;
}

/* line 110, src/client/organism/slider/_slider.scss */
.neo-slider__element > .neo-slider__element_container .neo-organism {
  margin: 0;
}

/* line 114, src/client/organism/slider/_slider.scss */
.neo-slider__element > .neo-slider__element_container > .neo-grid {
  margin: 0;
}

/* line 9, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs__layout {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  width: calc(33.3% - 6px);
}

@media (max-width: 1023px) {
  /* line 9, src/client/organism/tabs/_tab_vertical.scss */
  .neo-tabs__layout {
    display: none;
  }
}

/* line 19, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs__arrows {
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(30%, white));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 30%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 30%);
  /* For Opera 11.1 to 12.0 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00FFFFFF', endColorstr='#FFFFFFFF', GradientType=1);
  /* IE6-9 */
  position: absolute;
  right: 0;
  height: 100%;
  width: 48px;
  display: none;
}

/* line 29, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs__panelContainer {
  width: calc(66.7% + 6px);
}

@media (max-width: 1023px) {
  /* line 29, src/client/organism/tabs/_tab_vertical.scss */
  .neo-tabs__panelContainer {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  /* line 29, src/client/organism/tabs/_tab_vertical.scss */
  .neo-tabs__panelContainer {
    border-left: solid 2px;
  }
}

@media (min-width: 1024px) {
  /* line 41, src/client/organism/tabs/_tab_vertical.scss */
  .neo-tabs__tabContent {
    max-width: 890px;
  }
}

/* line 46, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs__tabContent_head {
  padding: 0;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
}

/* line 52, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs__tabContent_head_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 1024px) {
  /* line 52, src/client/organism/tabs/_tab_vertical.scss */
  .neo-tabs__tabContent_head_title {
    display: none;
  }
}

/* line 60, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs__tabContent_head_title_openIcon {
  display: block;
}

/* line 64, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs__tabContent_head_title_closeIcon {
  display: none;
}

/* line 68, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs__tabContent_head_title .h4, .neo-tabs__tabContent_head_title .cke_editable .leadin, .cke_editable .neo-tabs__tabContent_head_title .leadin,
.neo-tabs__tabContent_head_title .cke_wysiwyg_frame .leadin, .cke_wysiwyg_frame .neo-tabs__tabContent_head_title .leadin,
.neo-tabs__tabContent_head_title .neo-richText .leadin, .neo-richText .neo-tabs__tabContent_head_title .leadin,
.neo-tabs__tabContent_head_title .neo-richTextStyles .leadin, .neo-richTextStyles .neo-tabs__tabContent_head_title .leadin {
  line-height: 40px;
}

/* line 72, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs__tabContent_head_title comp-svg {
  width: inherit;
  height: 40px;
}

/* line 76, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs__tabContent_head_title comp-svg svg {
  height: 40px;
}

/* line 84, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs__tabContent:last-child .neo-tab__container_body {
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  /* line 91, src/client/organism/tabs/_tab_vertical.scss */
  .neo-tabs__tabContent:hover .neo-tabs__tabContent_head {
    background-color: #DBDCDE;
  }
}

/* line 99, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs .neo-tab__container_title--active .neo-tabs__tabContent_head_title_openIcon {
  display: none;
}

/* line 103, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs .neo-tab__container_title--active .neo-tabs__tabContent_head_title_closeIcon {
  display: block;
}

/* line 108, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs .neo-tab__tabsTitle {
  white-space: nowrap;
}

/* line 111, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs .neo-tab__tabsTitle--hidden {
  display: none;
}

/* line 121, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs.neo-tabs--horizontal .neo-tabs__layout {
  position: relative;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
  height: 42px;
  border-bottom: 1px solid #DBDCDE;
}

/* line 132, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs.neo-tabs--horizontal .neo-tabs__tabContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  left: 0;
}

/* line 138, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs.neo-tabs--horizontal .neo-tabs__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 142, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs.neo-tabs--horizontal .neo-tabs__panelContainer {
  width: 100%;
  min-height: 100px;
}

/* line 147, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs.neo-tabs--horizontal .neo-tabs__tabContent {
  padding: 0;
  width: 100%;
  max-width: none;
}

/* line 152, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs.neo-tabs--horizontal .neo-tabs__tabContent_head_title {
  display: none;
}

/* line 158, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs.neo-tabs--horizontal .neo-tab__tabsTitle {
  padding-right: 10px;
}

/* line 161, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs.neo-tabs--horizontal .neo-tab__tabsTitle .h4, .neo-tabs.neo-tabs--horizontal .neo-tab__tabsTitle .cke_editable .leadin, .cke_editable .neo-tabs.neo-tabs--horizontal .neo-tab__tabsTitle .leadin,
.neo-tabs.neo-tabs--horizontal .neo-tab__tabsTitle .cke_wysiwyg_frame .leadin, .cke_wysiwyg_frame .neo-tabs.neo-tabs--horizontal .neo-tab__tabsTitle .leadin,
.neo-tabs.neo-tabs--horizontal .neo-tab__tabsTitle .neo-richText .leadin, .neo-richText .neo-tabs.neo-tabs--horizontal .neo-tab__tabsTitle .leadin,
.neo-tabs.neo-tabs--horizontal .neo-tab__tabsTitle .neo-richTextStyles .leadin, .neo-richTextStyles .neo-tabs.neo-tabs--horizontal .neo-tab__tabsTitle .leadin {
  font-weight: 700;
}

/* line 165, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs.neo-tabs--horizontal .neo-tab__tabsTitle--active {
  color: #155195;
  border-bottom: 2px solid #155195;
}

/* line 176, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs.neo-tabs--date .neo-tabs__layout {
  width: calc(15% - 6px);
}

/* line 180, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs.neo-tabs--date .neo-tabs__panelContainer {
  width: calc(85% + 6px);
}

@media (max-width: 1023px) {
  /* line 180, src/client/organism/tabs/_tab_vertical.scss */
  .neo-tabs.neo-tabs--date .neo-tabs__panelContainer {
    width: 100%;
  }
}

/* line 189, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs.neo-tabs--date .neo-tabs__verticalDateDay {
  font-size: 4.133rem;
  font-weight: 700;
  line-height: 4rem;
}

/* line 195, src/client/organism/tabs/_tab_vertical.scss */
.neo-tabs.neo-tabs--date .neo-tabs__verticalDateLine {
  font-size: 1.2rem;
  line-height: 1.333rem;
}

/* line 1, src/client/organism/tabs/_tab.scss */
.neo-tab {
  width: 100%;
}

/* line 4, src/client/organism/tabs/_tab.scss */
.neo-tab__tabsTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  text-transform: uppercase;
  padding-left: 10px;
}

/* line 11, src/client/organism/tabs/_tab.scss */
.neo-tab__tabsTitle .h4, .neo-tab__tabsTitle .cke_editable .leadin, .cke_editable .neo-tab__tabsTitle .leadin,
.neo-tab__tabsTitle .cke_wysiwyg_frame .leadin, .cke_wysiwyg_frame .neo-tab__tabsTitle .leadin,
.neo-tab__tabsTitle .neo-richText .leadin, .neo-richText .neo-tab__tabsTitle .leadin,
.neo-tab__tabsTitle .neo-richTextStyles .leadin, .neo-richTextStyles .neo-tab__tabsTitle .leadin {
  font-weight: 400;
  line-height: 40px;
}

/* line 17, src/client/organism/tabs/_tab.scss */
.neo-tab__tabsTitle--active .h4, .neo-tab__tabsTitle--active .cke_editable .leadin, .cke_editable .neo-tab__tabsTitle--active .leadin,
.neo-tab__tabsTitle--active .cke_wysiwyg_frame .leadin, .cke_wysiwyg_frame .neo-tab__tabsTitle--active .leadin,
.neo-tab__tabsTitle--active .neo-richText .leadin, .neo-richText .neo-tab__tabsTitle--active .leadin,
.neo-tab__tabsTitle--active .neo-richTextStyles .leadin, .neo-richTextStyles .neo-tab__tabsTitle--active .leadin {
  font-weight: 700;
}

/* line 22, src/client/organism/tabs/_tab.scss */
.neo-tab__tabsTitle:hover {
  background-color: #DBDCDE;
}

/* line 27, src/client/organism/tabs/_tab.scss */
.neo-tab__container {
  padding: 0 10px;
  position: relative;
  overflow: hidden;
}

/* line 32, src/client/organism/tabs/_tab.scss */
.neo-tab__container_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* line 38, src/client/organism/tabs/_tab.scss */
.neo-tab__container_body--show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 42, src/client/organism/tabs/_tab.scss */
.neo-tab__container_body--hidden {
  display: none;
}

/* line 51, src/client/organism/tabs/_tab.scss */
.neo-tabs--date .neo-tab__tabsTitle {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-transform: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5em 0;
}

/* line 6, src/client/organism/teaser/_teaser-article.scss */
.neo-articleTeaser__image {
  position: relative;
  font-size: 19px;
  height: 200px;
}

/* line 11, src/client/organism/teaser/_teaser-article.scss */
.neo-articleTeaser__image:hover:before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: attr(data-content);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  color: #FFF;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: background-color 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: background-color 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
}

/* line 28, src/client/organism/teaser/_teaser-article.scss */
.neo-articleTeaser__image:hover .neo-articleTeaser__image_flag {
  height: 0px;
  padding: 0px;
  -webkit-transition: height 0.25s;
  transition: height 0.25s;
  -webkit-transition: padding 0.25s;
  transition: padding 0.25s;
}

/* line 35, src/client/organism/teaser/_teaser-article.scss */
.neo-articleTeaser__image:hover .neo-articleTeaser__image_flag_day {
  opacity: 0.0;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

/* line 40, src/client/organism/teaser/_teaser-article.scss */
.neo-articleTeaser__image:hover .neo-articleTeaser__image_flag_month {
  opacity: 0.0;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

/* line 45, src/client/organism/teaser/_teaser-article.scss */
.neo-articleTeaser__image--right {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

/* line 49, src/client/organism/teaser/_teaser-article.scss */
.neo-articleTeaser__image > a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

/* line 59, src/client/organism/teaser/_teaser-article.scss */
.neo-articleTeaser__image_flag {
  position: absolute;
  top: 0;
  left: 15px;
  min-width: 50px;
  height: 58px;
  background-color: #FFF;
  text-align: center;
  padding: 15px 0;
  line-height: 14px;
  color: #333;
  font-size: 18px;
}

/* line 72, src/client/organism/teaser/_teaser-article.scss */
.neo-articleTeaser__image_flag_day {
  display: inline-block;
  width: 100%;
  font-weight: 600;
  font-size: 1.333rem;
}

/* line 79, src/client/organism/teaser/_teaser-article.scss */
.neo-articleTeaser__image_flag_month {
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.867rem;
}

/* line 89, src/client/organism/teaser/_teaser-article.scss */
.neo-articleTeaser__content {
  padding-left: 5px;
}

@media (max-width: 1023px) {
  /* line 89, src/client/organism/teaser/_teaser-article.scss */
  .neo-articleTeaser__content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-top: 10px;
  }
}

/* line 97, src/client/organism/teaser/_teaser-article.scss */
.neo-articleTeaser__content_headline {
  padding-bottom: 10px;
}

/* line 101, src/client/organism/teaser/_teaser-article.scss */
.neo-articleTeaser__content_leadin {
  font-family: "Bechtle-DIN", sans-serif;
  font-size: 1rem;
  line-height: 1.333rem;
  margin-bottom: 10px;
}

/* line 9, src/client/organism/teaser/_teaser-blog.scss */
.neo-teaserBlog .neo-teaser__content_author_date {
  margin-bottom: 5px;
}

/* line 13, src/client/organism/teaser/_teaser-blog.scss */
.neo-teaserBlog .neo-teaser__content_author_name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}

/* line 17, src/client/organism/teaser/_teaser-blog.scss */
.neo-teaserBlog .neo-teaser__content_author_img {
  margin-right: 5px;
}

/* line 22, src/client/organism/teaser/_teaser-blog.scss */
.neo-teaserBlog .neo-teaser__content_text {
  text-align: left;
}

/* line 7, src/client/organism/teaser/_teaser-hero.scss */
.neo-heroTeaser {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: #000;
}

/* line 13, src/client/organism/teaser/_teaser-hero.scss */
.neo-heroTeaser--white {
  color: #FFF;
}

/* line 17, src/client/organism/teaser/_teaser-hero.scss */
.neo-heroTeaser__link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

/* line 25, src/client/organism/teaser/_teaser-hero.scss */
.neo-heroTeaser__link:hover {
  cursor: hand;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 32, src/client/organism/teaser/_teaser-hero.scss */
.neo-heroTeaser__layout {
  background-color: rgba(0, 0, 0, 0.35);
  width: 100%;
  min-height: 320px;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px;
  color: #FFF;
  -webkit-transition: background-color 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: background-color 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
}

/* line 43, src/client/organism/teaser/_teaser-hero.scss */
.neo-heroTeaser__layout_headlines {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  font-weight: 400;
  text-transform: uppercase;
}

/* line 49, src/client/organism/teaser/_teaser-hero.scss */
.neo-heroTeaser__layout_content {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* line 54, src/client/organism/teaser/_teaser-hero.scss */
.neo-heroTeaser__layout_content_author {
  margin-right: 10px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-preferred-size: 200px;
      flex-basis: 200px;
  min-width: 200px;
}

/* line 60, src/client/organism/teaser/_teaser-hero.scss */
.neo-heroTeaser__layout_content_author_subTitle {
  margin-bottom: 5px;
}

/* line 64, src/client/organism/teaser/_teaser-hero.scss */
.neo-heroTeaser__layout_content_author_person {
  overflow: hidden;
}

/* line 67, src/client/organism/teaser/_teaser-hero.scss */
.neo-heroTeaser__layout_content_author_person_image {
  float: left;
  width: 200px;
  margin-right: 5px;
}

/* line 72, src/client/organism/teaser/_teaser-hero.scss */
.neo-heroTeaser__layout_content_author_person_image > img {
  max-width: 64px;
  max-height: 64px;
  vertical-align: middle;
}

/* line 78, src/client/organism/teaser/_teaser-hero.scss */
.neo-heroTeaser__layout_content_author_person_image > span {
  padding-left: 10px;
  display: inline-block;
}

/* line 86, src/client/organism/teaser/_teaser-hero.scss */
.neo-heroTeaser__layout_content_text {
  min-height: 180px;
  height: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  text-align: justify;
}

/* line 95, src/client/organism/teaser/_teaser-hero.scss */
.neo-heroTeaser__layout_content_text > p {
  padding: 10px 0;
}

/* line 99, src/client/organism/teaser/_teaser-hero.scss */
.neo-heroTeaser__layout_content_text_leadin {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 15px;
  line-height: 1.333rem;
  overflow: hidden;
}

/* line 106, src/client/organism/teaser/_teaser-hero.scss */
.neo-heroTeaser__layout_content_text_footer {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

@media (max-width: 767px) {
  /* line 32, src/client/organism/teaser/_teaser-hero.scss */
  .neo-heroTeaser__layout {
    height: auto;
  }
  /* line 117, src/client/organism/teaser/_teaser-hero.scss */
  .neo-heroTeaser__layout__content_author {
    margin-bottom: 10px;
  }
}

/* line 125, src/client/organism/teaser/_teaser-hero.scss */
.neo-heroTeaser[max-width~="400px"] .neo-heroTeaser__layout_content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 128, src/client/organism/teaser/_teaser-hero.scss */
.neo-heroTeaser[max-width~="400px"] .neo-heroTeaser__layout_content_author {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin-right: 0;
}

/* line 133, src/client/organism/teaser/_teaser-hero.scss */
.neo-heroTeaser[max-width~="400px"] .neo-heroTeaser__layout_content_text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* line 144, src/client/organism/teaser/_teaser-hero.scss */
.neo-layoutContainer.neo-layoutContainer--rowLayout .neo-heroTeaser {
  height: 100%;
}

/* line 147, src/client/organism/teaser/_teaser-hero.scss */
.neo-layoutContainer.neo-layoutContainer--rowLayout .neo-heroTeaser > .neo-heroTeaser__layout {
  height: 100%;
  padding-bottom: 20px;
}

/* line 151, src/client/organism/teaser/_teaser-hero.scss */
.neo-layoutContainer.neo-layoutContainer--rowLayout .neo-heroTeaser > .neo-heroTeaser__layout .neo-heroTeaser__layout_content_text {
  height: inherit;
}

/* line 3, src/client/organism/teaser/_teaser-ref.scss */
.neo-teaserRef:hover::before {
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: background-color 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: background-color 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
}

/* line 1, src/client/organism/teaser/_teaser-small.scss */
.neo-teaserSmall {
  background: #FFF;
}

/* line 4, src/client/organism/teaser/_teaser-small.scss */
.neo-teaserSmall .neo-teaserSmall__header {
  position: relative;
  padding-top: 85%;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}

/* line 13, src/client/organism/teaser/_teaser-small.scss */
.neo-teaserSmall .neo-teaserSmall__header:hover .neo-teaserSmall__header_title {
  opacity: 0;
}

/* line 17, src/client/organism/teaser/_teaser-small.scss */
.neo-teaserSmall .neo-teaserSmall__header:hover .neo-teaserSmall__header_quote {
  opacity: 1;
}

/* line 22, src/client/organism/teaser/_teaser-small.scss */
.neo-teaserSmall .neo-teaserSmall__header_title {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: opacity 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: opacity 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
}

/* line 34, src/client/organism/teaser/_teaser-small.scss */
.neo-teaserSmall .neo-teaserSmall__header_type {
  text-transform: uppercase;
  width: auto;
  color: #000;
  background: #FDDC03;
  padding: 5px 10px;
}

/* line 42, src/client/organism/teaser/_teaser-small.scss */
.neo-teaserSmall .neo-teaserSmall__header_quote {
  font-family: "Bechtle-DIN-Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 200;
  line-height: 2rem;
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #FFF;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: opacity 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
}

/* line 59, src/client/organism/teaser/_teaser-small.scss */
.neo-teaserSmall .neo-teaserSmall__header_name {
  text-transform: uppercase;
  color: #FFF;
  font-weight: 600;
  line-height: 2rem;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
}

/* line 70, src/client/organism/teaser/_teaser-small.scss */
.neo-teaserSmall__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
}

/* line 77, src/client/organism/teaser/_teaser-small.scss */
.neo-teaserSmall__content_subheadline {
  margin-bottom: 10px;
  max-width: 100%;
}

/* line 82, src/client/organism/teaser/_teaser-small.scss */
.neo-teaserSmall__content_text {
  margin-bottom: 10px;
  max-width: 100%;
  line-height: 1.66rem;
}

/* line 88, src/client/organism/teaser/_teaser-small.scss */
.neo-teaserSmall__content_link {
  text-decoration: none;
  text-transform: uppercase;
}

/* line 92, src/client/organism/teaser/_teaser-small.scss */
.neo-teaserSmall__content_link span {
  vertical-align: middle;
}

/* line 96, src/client/organism/teaser/_teaser-small.scss */
.neo-teaserSmall__content_link:hover {
  color: inherit;
}

/* line 1, src/client/organism/teaser/_teaser-topic-v2.scss */
.neo-teaserTopic2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

/* line 5, src/client/organism/teaser/_teaser-topic-v2.scss */
.neo-teaserTopic2__imageOuter {
  position: relative;
  margin-bottom: 20px;
  height: 100%;
  width: 100%;
}

/* line 12, src/client/organism/teaser/_teaser-topic-v2.scss */
.neo-teaserTopic2__image {
  display: block;
  max-height: 320px;
  -o-object-fit: none;
     object-fit: none;
  font-family: 'object-fit: none;';
}

@media (-webkit-min-device-pixel-ratio: 0) {
  /* line 12, src/client/organism/teaser/_teaser-topic-v2.scss */
  .neo-teaserTopic2__image {
    height: 100%;
  }
}

/* line 22, src/client/organism/teaser/_teaser-topic-v2.scss */
.neo-teaserTopic2__image_link {
  cursor: pointer;
  display: block;
  height: 100%;
}

/* line 29, src/client/organism/teaser/_teaser-topic-v2.scss */
.neo-teaserTopic2__headline {
  position: absolute;
  bottom: 0;
  margin-bottom: 0;
  width: 100%;
  color: #000;
  padding: 10px 20px;
  text-transform: uppercase;
  z-index: 1;
}

/* line 39, src/client/organism/teaser/_teaser-topic-v2.scss */
.neo-teaserTopic2__headline--white {
  color: #FFF;
}

/* line 43, src/client/organism/teaser/_teaser-topic-v2.scss */
.neo-teaserTopic2__headline--black {
  color: #000;
}

/* line 47, src/client/organism/teaser/_teaser-topic-v2.scss */
.neo-teaserTopic2__headline_background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.65;
  z-index: -1;
}

/* line 58, src/client/organism/teaser/_teaser-topic-v2.scss */
.neo-teaserTopic2__content {
  width: 100%;
  padding: 0 20px 10px;
}

/* line 63, src/client/organism/teaser/_teaser-topic-v2.scss */
.neo-teaserTopic2__text {
  height: 75px;
  margin-bottom: 20px;
  overflow: hidden;
}

@media (max-width: 479px) {
  /* line 63, src/client/organism/teaser/_teaser-topic-v2.scss */
  .neo-teaserTopic2__text {
    height: 120px;
  }
}

/* line 4, src/client/organism/teaser/_teaser.scss */
.neo-teaser {
  max-height: 320px;
  min-height: 320px;
  max-width: 100%;
  padding: 40px;
  color: #FFF;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* line 16, src/client/organism/teaser/_teaser.scss */
.neo-teaser::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  -webkit-transition: background-color 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: background-color 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
}

/* line 27, src/client/organism/teaser/_teaser.scss */
.neo-teaser__headlines {
  font-weight: 400;
  position: relative;
  text-transform: uppercase;
}

/* line 33, src/client/organism/teaser/_teaser.scss */
.neo-teaser__content {
  margin-top: 10px;
  min-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-preferred-size: 180px;
      flex-basis: 180px;
}

/* line 42, src/client/organism/teaser/_teaser.scss */
.neo-teaser__content_author {
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
}

/* line 48, src/client/organism/teaser/_teaser.scss */
.neo-teaser__content_author_person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 53, src/client/organism/teaser/_teaser.scss */
.neo-teaser__content_author_person > img {
  max-width: 64px;
  max-height: 64px;
}

/* line 60, src/client/organism/teaser/_teaser.scss */
.neo-teaser__content_text {
  min-height: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* line 68, src/client/organism/teaser/_teaser.scss */
.neo-teaser__content_text > p {
  padding: 10px 0;
}

/* line 72, src/client/organism/teaser/_teaser.scss */
.neo-teaser__content_text_leadin {
  margin-bottom: 15px;
  overflow: hidden;
  line-height: 1.65;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}

/* line 80, src/client/organism/teaser/_teaser.scss */
.neo-teaser__content_text_link {
  color: #FFF;
  text-decoration: none;
}

/* line 84, src/client/organism/teaser/_teaser.scss */
.neo-teaser__content_text_link:hover {
  color: #DBDCDE;
}

@media (max-width: 767px) {
  /* line 4, src/client/organism/teaser/_teaser.scss */
  .neo-teaser {
    height: auto;
    max-height: none;
  }
  /* line 97, src/client/organism/teaser/_teaser.scss */
  .neo-teaser__content_author {
    margin-bottom: 10px;
  }
}

/* line 104, src/client/organism/teaser/_teaser.scss */
.neo-teaser__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 109, src/client/organism/teaser/_teaser.scss */
.neo-teaser__wrapper[max-width~="400px"] .neo-teaser__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 112, src/client/organism/teaser/_teaser.scss */
.neo-teaser__wrapper[max-width~="400px"] .neo-teaser__content_author {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin-right: 0;
}

/* line 117, src/client/organism/teaser/_teaser.scss */
.neo-teaser__wrapper[max-width~="400px"] .neo-teaser__content_text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* line 5, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  height: 100%;
}

/* line 10, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser__media {
  width: 100%;
  height: 100%;
  position: relative;
  height: 320px;
  max-height: 320px;
  overflow: hidden;
  width: 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

/* line 23, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser__media:hover .neo-topicTeaser__media_headline--hoverable {
  opacity: 0;
}

/* line 27, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser__media:hover .neo-topicTeaser__media_quote--hoverable {
  opacity: 1;
}

/* line 32, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser__media_quote {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: opacity 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  font-family: "Bechtle-DIN-Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 200;
  line-height: 2rem;
  opacity: 0;
  color: #FFF;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
}

/* line 46, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser__media_headline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: opacity 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

/* line 54, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser__media_headline_categoryTitle {
  margin: 5px 0;
}

/* line 57, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser__media_headline_categoryTitle > span {
  background-color: #FDDC03;
  color: #000;
  text-transform: uppercase;
  font-family: "Bechtle-DIN", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.333rem;
  background-color: #FDDC03;
  padding: 5px 10px;
}

/* line 70, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser__media_headline_label {
  bottom: 0;
  margin-bottom: 0;
  width: 100%;
  color: #000;
  padding: 10px 20px;
  text-transform: uppercase;
  z-index: 1;
  position: relative;
}

/* line 80, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser__media_headline_label--white {
  color: #FFF;
}

/* line 84, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser__media_headline_label--black {
  color: #000;
}

/* line 88, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser__media_headline_label_background {
  background-color: white;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  opacity: .65;
}

/* line 101, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser__media--small {
  height: 180px;
  max-height: 180px;
}

/* line 107, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser__image {
  display: block;
  -o-object-fit: none;
     object-fit: none;
  font-family: 'object-fit: none;';
}

@media (-webkit-min-device-pixel-ratio: 0) {
  /* line 107, src/client/organism/teaser/_topic-teaser.scss */
  .neo-topicTeaser__image {
    height: 100%;
  }
}

/* line 116, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser__image_link {
  cursor: pointer;
  display: block;
  height: 100%;
}

/* line 123, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

/* line 132, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser__content_text {
  margin-bottom: 10px;
  overflow: hidden;
  max-width: 100%;
  line-height: 1.66rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

@media (max-width: 479px) {
  /* line 132, src/client/organism/teaser/_topic-teaser.scss */
  .neo-topicTeaser__content_text {
    height: 120px;
  }
}

/* line 144, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser__content_subheadline {
  margin-bottom: 10px;
  max-width: 100%;
}

/* line 149, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser__content_link {
  text-decoration: none;
  text-transform: uppercase;
}

/* line 153, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser__content_link span {
  vertical-align: middle;
}

/* line 157, src/client/organism/teaser/_topic-teaser.scss */
.neo-topicTeaser__content_link:hover {
  color: inherit;
}

/* line 5, src/client/organism/topic-of-content/_toc.scss */
.neo-topicOfContent {
  background-color: #F7F7F7;
  border-top: 0;
  color: #000;
  margin: 0 -50px;
  overflow-y: hidden;
  position: relative;
  height: 0;
  width: 1440px;
  -webkit-transition: height 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  transition: height 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
}

/* line 16, src/client/organism/topic-of-content/_toc.scss */
.neo-header--sticky .neo-topicOfContent {
  height: auto;
  border-top: 1px solid #DBDCDE;
}

/* line 21, src/client/organism/topic-of-content/_toc.scss */
.neo-topicOfContent__toggle {
  display: none;
}

/* line 25, src/client/organism/topic-of-content/_toc.scss */
.neo-topicOfContent__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-height: 50vh;
  overflow-y: auto;
}

/* line 34, src/client/organism/topic-of-content/_toc.scss */
.neo-topicOfContent__entry {
  padding: 0 10px;
  margin: 5px 0;
  line-height: 48px;
  cursor: pointer;
}

/* line 40, src/client/organism/topic-of-content/_toc.scss */
.neo-topicOfContent__entry--selected {
  font-weight: bold;
}

@media (max-width: 767px) {
  /* line 5, src/client/organism/topic-of-content/_toc.scss */
  .neo-topicOfContent {
    margin: 0 -22px;
  }
  /* line 48, src/client/organism/topic-of-content/_toc.scss */
  .neo-topicOfContent__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
  }
  /* line 52, src/client/organism/topic-of-content/_toc.scss */
  .neo-topicOfContent__toggle_title {
    opacity: 0;
    height: 32px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    line-height: 32px;
    text-align: left;
    padding: 0 20px;
    -webkit-transition: opacity 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
    transition: opacity 0.5s cubic-bezier(0, 1, 0.5, 1) 0s;
  }
  /* line 61, src/client/organism/topic-of-content/_toc.scss */
  .neo-topicOfContent__toggle_title ~ .neo-icon {
    margin-right: 20px;
    top: 5px;
  }
  /* line 69, src/client/organism/topic-of-content/_toc.scss */
  .neo-topicOfContent__toggle--closed .neo-topicOfContent__toggle_title {
    opacity: 1;
  }
  /* line 76, src/client/organism/topic-of-content/_toc.scss */
  .neo-topicOfContent__container--hidden {
    display: none;
  }
  /* line 81, src/client/organism/topic-of-content/_toc.scss */
  .neo-topicOfContent__entry {
    margin: initial;
    border-right: none;
    border-bottom: 1px solid #000;
    width: 100%;
  }
  /* line 87, src/client/organism/topic-of-content/_toc.scss */
  .neo-topicOfContent__entry:last-child {
    border-bottom: none;
  }
}

/* line 10, src/client/pages/_facility.scss */
.neo-facility__cto {
  width: 235px;
  padding-bottom: 20px;
  padding-right: 20px;
}

/* line 15, src/client/pages/_facility.scss */
.neo-facility__cto_img {
  margin-bottom: 20px;
}

/* line 19, src/client/pages/_facility.scss */
.neo-facility__cto_name, .neo-facility__cto_title {
  padding-left: 20px;
  line-height: 1.66rem;
  margin-bottom: 10px;
}

/* line 29, src/client/pages/_facility.scss */
.neo-facility__adress .h2, .neo-facility__adress .neo-form .form .text h2, .neo-form .form .text .neo-facility__adress h2,
.neo-facility__adress .neo-form .form fieldset h2, .neo-form .form fieldset .neo-facility__adress h2,
.neo-facility__adress .h3 {
  padding-bottom: 10px;
}

/* line 34, src/client/pages/_facility.scss */
.neo-facility__adress .mapButton {
  padding-top: 10px;
}

/* line 1, src/client/pages/_mag.scss */
.neo-mag {
  margin-left: 0;
}

/* line 4, src/client/pages/_mag.scss */
.neo-mag__headline {
  padding-bottom: 20px;
}

/* line 8, src/client/pages/_mag.scss */
.neo-mag__leadin {
  font-family: "Bechtle-DIN", sans-serif;
  font-size: 1.333rem;
  font-weight: 600;
  line-height: 1.66rem;
  padding-bottom: 20px;
}

/* line 3, src/client/pages/_press.scss */
.neo-press__sidebar {
  padding-right: 20px;
}

@media (max-width: 767px) {
  /* line 3, src/client/pages/_press.scss */
  .neo-press__sidebar {
    padding-right: 0;
  }
}

/* line 11, src/client/pages/_press.scss */
.neo-press__contentGridSpacer {
  clear: both;
  margin-bottom: 30px;
}

/* line 3, src/client/pages/_reference.scss */
.neo-layout .neo-reference__title {
  margin-bottom: 30px;
}

/* line 264, src/client/styles/global/_mixins.scss */
.neo-layout .neo-reference__title::before, .neo-layout .neo-reference__title::after {
  content: " ";
  display: table;
}

/* line 270, src/client/styles/global/_mixins.scss */
.neo-layout .neo-reference__title::after {
  clear: both;
}

/* line 7, src/client/pages/_reference.scss */
.neo-layout .neo-reference__title_icon {
  min-width: 110px;
  width: 140px;
  margin-right: 10px;
  vertical-align: bottom;
}

/* line 14, src/client/pages/_reference.scss */
.neo-layout .neo-reference__title_text {
  position: relative;
  display: inline-block;
}

/* line 20, src/client/pages/_reference.scss */
.neo-layout .neo-reference__intro {
  margin-bottom: 20px;
}

/* line 23, src/client/pages/_reference.scss */
.neo-layout .neo-reference__intro > p {
  font-size: 1.333rem;
  font-weight: 700;
  line-height: 1.66rem;
}

/* line 29, src/client/pages/_reference.scss */
.neo-layout .neo-reference__intro .leadin {
  text-transform: initial;
}

/* line 34, src/client/pages/_reference.scss */
.neo-layout .neo-reference__actions {
  margin-bottom: 30px;
}

/* line 37, src/client/pages/_reference.scss */
.neo-layout .neo-reference__actions > .neo-button, .neo-layout .neo-form .form .button-wrapper .neo-reference__actions > input[type='submit'], .neo-form .form .button-wrapper .neo-layout .neo-reference__actions > input[type='submit'] {
  margin-right: 20px;
  margin-bottom: 10px;
}

/* line 45, src/client/pages/_reference.scss */
.neo-layout .neo-reference__data_item {
  margin-bottom: 20px;
}

/* line 48, src/client/pages/_reference.scss */
.neo-layout .neo-reference__data_item > label {
  font-weight: 700;
}

/* line 54, src/client/pages/_reference.scss */
.neo-layout .neo-reference__more {
  color: #FFF;
}

/* line 57, src/client/pages/_reference.scss */
.neo-layout .neo-reference__more_item {
  display: block;
  position: relative;
  margin-bottom: 10px;
  color: inherit;
}

/* line 64, src/client/pages/_reference.scss */
.neo-layout .neo-reference__more_image {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 222px;
}

/* line 70, src/client/pages/_reference.scss */
.neo-layout .neo-reference__more_overlay {
  position: absolute;
  bottom: 0;
  margin: 0;
  padding: 10px 20px;
  text-transform: uppercase;
  width: 100%;
  z-index: 1;
}

/* line 288, src/client/styles/global/_mixins.scss */
.neo-layout .neo-reference__more_overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* line 79, src/client/pages/_reference.scss */
.neo-layout .neo-reference__more_overlay::before {
  background-color: rgba(0, 0, 0, 0.65);
}

/* line 83, src/client/pages/_reference.scss */
.neo-layout .neo-reference__more_overlay > .h3 {
  margin-bottom: 10px;
}

/* line 93, src/client/pages/_reference.scss */
.neo-layout .neo-reference .neo-list--grey > li:only-child::before {
  display: none;
}

/* line 3, src/client/pages/events/_event-access.scss */
.neo-event__access {
  text-align: center;
  width: 100%;
}

/* line 3, src/client/pages/events/_event-registration.scss */
.neo-event__agendaHeader {
  background-color: #DBDCDE;
  padding: 15px 20px;
}

@media (max-width: 479px) {
  /* line 3, src/client/pages/events/_event-registration.scss */
  .neo-event__agendaHeader {
    padding: 15px 30px;
  }
}

/* line 12, src/client/pages/events/_event-registration.scss */
.neo-event__agendaDay {
  padding: 15px 20px;
}

@media (max-width: 479px) {
  /* line 12, src/client/pages/events/_event-registration.scss */
  .neo-event__agendaDay {
    padding: 15px 5px;
  }
}

@media (max-width: 479px) {
  /* line 20, src/client/pages/events/_event-registration.scss */
  .neo-event__agendaSpeaker, .neo-event__agendaPartner {
    padding-left: 25px;
  }
}

/* line 28, src/client/pages/events/_event-registration.scss */
.neo-event__agendaTime {
  margin-bottom: 10px;
  padding-right: 12px;
  position: relative;
}

@media (max-width: 479px) {
  /* line 28, src/client/pages/events/_event-registration.scss */
  .neo-event__agendaTime {
    left: 2px;
  }
}

/* line 39, src/client/pages/events/_event-registration.scss */
.neo-event__registration_user {
  padding: 20px;
  background-color: #F7F7F7;
}

/* line 44, src/client/pages/events/_event-registration.scss */
.neo-event__registration_submitButton {
  float: right;
}

/* line 48, src/client/pages/events/_event-registration.scss */
.neo-event__registration .neo-form__input_text, .neo-event__registration .neo-form__select_input, .neo-event__registration .neo-form .form input:not([type='checkbox']):not([type='radio']), .neo-form .form .neo-event__registration input:not([type='checkbox']):not([type='radio']), .neo-event__registration .neo-form .form select, .neo-form .form .neo-event__registration select {
  padding-left: 10px;
  width: 100%;
}

/* line 54, src/client/pages/events/_event-registration.scss */
.neo-event .h2, .neo-event .neo-form .form .text h2, .neo-form .form .text .neo-event h2,
.neo-event .neo-form .form fieldset h2, .neo-form .form fieldset .neo-event h2 {
  margin-bottom: 20px;
  font-weight: 700;
}

/* line 64, src/client/pages/events/_event-registration.scss */
.neo-event__date .neo-form__radio--disabled label,
.neo-event__date .neo-form__checkbox--disabled label {
  text-decoration: line-through;
}

/* line 70, src/client/pages/events/_event-registration.scss */
.neo-event__image {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 200px;
  width: 200px;
}

/* line 78, src/client/pages/events/_event-registration.scss */
.neo-event__dateRemark {
  font-size: 0.867rem;
  margin: 0 0 25px 25px;
  position: relative;
  top: -10px;
}

/* line 85, src/client/pages/events/_event-registration.scss */
.neo-event__directionsLabel {
  margin-bottom: 10px;
}

/* line 89, src/client/pages/events/_event-registration.scss */
.neo-event__phoneNumber {
  padding-top: 10px;
}

/* line 93, src/client/pages/events/_event-registration.scss */
.neo-event .neo-form .neo-form__radio > input[type="radio"]:not(:checked) ~ .neo-form__select,
.neo-event .neo-form .neo-form__radio > input[type="radio"]:not(:checked) ~ .neo-form__select-label {
  display: none;
}

/* line 97, src/client/pages/events/_event-registration.scss */
.neo-event .neo-form .neo-form__radio > input[type="radio"]:not(:checked) ~ .neo-form__select > .neo-form__select_input,
.neo-event .neo-form .neo-form__radio > input[type="radio"]:not(:checked) ~ .neo-form__select-label > .neo-form__select_input {
  pointer-events: none;
  opacity: 0.5;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v4.0 | 20180602
   License: none (public domain)
*/
/* line 6, node_modules/reset-css/sass/_reset.scss */
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,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
/* line 27, node_modules/reset-css/sass/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
/* line 32, node_modules/reset-css/sass/_reset.scss */
*[hidden] {
  display: none;
}

/* line 35, node_modules/reset-css/sass/_reset.scss */
body {
  line-height: 1;
}

/* line 38, node_modules/reset-css/sass/_reset.scss */
ol, ul {
  list-style: none;
}

/* line 41, node_modules/reset-css/sass/_reset.scss */
blockquote, q {
  quotes: none;
}

/* line 44, node_modules/reset-css/sass/_reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 49, node_modules/reset-css/sass/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar.open, .flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar .hasWeeks .dayContainer, .flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar:before, .flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar.rightMost:before, .flatpickr-calendar.rightMost:after {
  left: auto;
  right: 22px;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar.arrowTop:before, .flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar.arrowBottom:before, .flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-calendar:focus {
  outline: 0;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 28px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  line-height: 16px;
  height: 28px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-months .flatpickr-prev-month.disabled, .flatpickr-months .flatpickr-next-month.disabled {
  display: none;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-months .flatpickr-prev-month i, .flatpickr-months .flatpickr-next-month i {
  position: relative;
}

/* line 1, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month, .flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
      /*rtl:begin:ignore*/
  left: 0;
  /*
      /*rtl:end:ignore*/
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
/* line 7, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month, .flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
      /*rtl:begin:ignore*/
  right: 0;
  /*
      /*rtl:end:ignore*/
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-months .flatpickr-prev-month svg path, .flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill .1s;
  transition: fill .1s;
  fill: inherit;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.numInputWrapper {
  position: relative;
  height: auto;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.numInputWrapper input, .numInputWrapper span {
  display: inline-block;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.numInputWrapper input {
  width: 100%;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.numInputWrapper input::-ms-clear {
  display: none;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.numInputWrapper span.arrowDown {
  top: 50%;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.numInputWrapper:hover span {
  opacity: 1;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 6.16px 0 0 0;
  line-height: 1;
  height: 28px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: .5ch;
  padding: 0;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 .5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-current-month input.cur-year[disabled], .flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.dayContainer, .flatpickr-weeks {
  padding: 1px 0 0 0;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-days:focus {
  outline: 0;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-around;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-day.today {
  border-color: #959ea9;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-day.today:hover, .flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange, .flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange, .flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-day.selected.startRange.endRange, .flatpickr-day.startRange.startRange.endRange, .flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-day.disabled, .flatpickr-day.disabled:hover, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay, .flatpickr-day.notAllowed, .flatpickr-day.notAllowed.prevMonthDay, .flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-day.disabled, .flatpickr-day.disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7,5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7,5px 0 0 #569ff7;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-day.hidden {
  visibility: hidden;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.rangeMode .flatpickr-day {
  margin-top: 1px;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-weekwrapper {
  display: inline-block;
  float: left;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-weekwrapper span.flatpickr-day, .flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-time input.flatpickr-minute, .flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-time .flatpickr-time-separator, .flatpickr-time .flatpickr-am-pm {
  height: inherit;
  display: inline-block;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-time input:hover, .flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
  background: #f3f3f3;
}

/* line 13, node_modules/flatpickr/dist/flatpickr.min.css */
.flatpickr-input[readonly] {
  cursor: pointer;
}

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 3, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-outer {
  padding: 0 !important;
}

/* line 5, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-outer [hidden] {
  display: none !important;
}

/* line 6, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}

/* line 7, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-outer.ms-touch {
  overflow-x: scroll;
  overflow-y: hidden;
  -ms-overflow-style: none;
  -ms-scroll-chaining: none;
  -ms-scroll-snap-type: mandatory;
  -ms-scroll-snap-points-x: snapInterval(0%, 100%);
}

/* line 16, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-slider {
  -webkit-transition: all 0s;
  transition: all 0s;
}

/* line 20, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 27, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}

/* line 29, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}

/* line 36, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-horizontal.tns-no-subpixel:after {
  content: '';
  display: table;
  clear: both;
}

/* line 41, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
  margin-right: -100%;
}

/* line 46, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-no-calc {
  position: relative;
  left: 0;
}

/* line 51, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}

/* line 56, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -webkit-transition: opacity 0s, -webkit-transform 0s;
  transition: opacity 0s, -webkit-transform 0s;
  transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s, -webkit-transform 0s;
}

/* line 63, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

/* line 69, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}

/* line 74, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-lazy-img.loaded {
  opacity: 1;
}

/* line 76, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-ah {
  -webkit-transition: height 0s;
  transition: height 0s;
}

/* line 81, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-ovh {
  overflow: hidden;
}

/* line 82, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-hdx {
  overflow-x: hidden;
}

/* line 83, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-hdy {
  overflow-y: hidden;
}

/* line 84, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

/* line 85, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

/* line 87, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

/* line 92, node_modules/tiny-slider/src/tiny-slider.scss */
.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}
