@charset "UTF-8";
@font-face {
  font-family: 'spar-regular';
  src: url("fonts/sparrg-webfont.eot");
  src: url("fonts/sparrg-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/sparrg-webfont.woff") format("woff"), url("fonts/SparRg.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'spar-light';
  src: url("fonts/sparlt-webfont.eot");
  src: url("fonts/sparlt-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/sparlt-webfont.woff") format("woff"), url("fonts/SparLt.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@media all {
  /**
   *  @section Normalisation Module
   */
  /* (en) Global reset of paddings and margins for all HTML elements */
  /* (de) Globales Zurücksetzen der Innen- und Außenabstände für alle HTML-Elemente */
  /* line 8, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  * {
    margin: 0;
    padding: 0;
  }

  /* (en) Correction: margin/padding reset caused too small select boxes. */
  /* (de) Korrektur: Das Zurücksetzen der Abstände verursacht zu kleine Selectboxen. */
  /* line 12, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  option {
    padding-left: 0.4em;
  }

  /* line 13, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  select {
    padding: 1px;
  }

  /*
  * (en) Global fix of the Italics bugs in IE 5.x and IE 6
  * (de) Globale Korrektur des Italics Bugs des IE 5.x und IE 6
  *
  * @bugfix
  * @affected   IE 5.x/Win, IE6
  * @css-for    IE 5.x/Win, IE6
  * @valid      yes
  */
  /* line 25, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  * html body * {
    overflow: visible;
  }

  /*
  * (en) Fix for rounding errors when scaling font sizes in older versions of Opera browser
  *      Standard values for colors and text alignment
  *
  * (de) Beseitigung von Rundungsfehler beim Skalieren von Schriftgrößen in älteren Opera Versionen
  *      Vorgabe der Standardfarben und Textausrichtung
  */
  /* line 34, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  body {
    font-size: 100%;
    background: #fff;
    color: #000;
    text-align: left;
  }

  /* (en) avoid visible outlines on DIV and h[x] elements in Webkit browsers */
  /* (de) Vermeidung sichtbarer Outline-Rahmen in Webkit-Browsern */
  /* line 44, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  div:target,
  h1:target,
  h2:target,
  h3:target,
  h4:target,
  h5:target,
  h6:target {
    outline: 0 none;
  }

  /* (en) HTML5 - adjusting visual formatting model to block level */
  /* (de) HTML5 - Elements werden als Blockelemente definiert */
  /* line 56, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  main,
  nav,
  section,
  summary {
    display: block;
  }

  /* (en) HTML5 - default media element styles */
  /* (de) HTML5 - Standard Eigenschaften für Media-Elemente */
  /* line 72, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  audio,
  canvas,
  video {
    display: inline-block;
  }

  /* (en) HTML5 - don't show <audio> element if there aren't controls */
  /* (de) HTML5 - <audio> ohne Kontrollelemente sollten nicht angezeigt werden */
  /* line 80, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  audio:not([controls]) {
    display: none;
  }

  /* (en) HTML5 - add missing styling in IE & old FF for hidden attribute */
  /* (de) HTML5 - Eigenschaften für das hidden-Attribut in älteren IEs und FF nachrüsten */
  /* line 86, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  [hidden] {
    display: none;
  }

  /* (en) Prevent iOS text size adjust after orientation change, without disabling user zoom. */
  /* (de) Verdindert die automatische Textanpassung bei Orientierungswechsel, ohne Zoom zu blockieren */
  /* line 92, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }

  /* (en) set correct box-modell in IE8/9 plus remove padding */
  /* (de) Setze das richtige Box-Modell im IE8/9 und entferne unnötiges Padding */
  /* line 99, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  input[type="checkbox"],
  input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
  }

  /* (en) force consistant appearance of input[type="search"] elements in all browser */
  /* (de) Einheitliches Erscheinungsbild für input[type="search"] Elemente erzwingen */
  /* line 107, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  input[type="search"] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
  }

  /* line 114, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  input[type="search"]::-webkit-search-cancel-button,
  input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  /* (en) Correct overflow displayed oddly in IE 9 */
  /* (de) Korrigiert fehlerhafte overflow Voreinstellung des IE 9 */
  /* line 121, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  svg:not(:root) {
    overflow: hidden;
  }

  /* (en) Address margin not present in IE 8/9 and Safari 5 */
  /* (en) Ergänzt fehlenden Margin in IE 8/9 und Safari 5 */
  /* line 127, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  figure {
    margin: 0;
  }

  /* (en) Clear borders for <fieldset> and <img> elements */
  /* (de) Rahmen für <fieldset> und <img> Elemente löschen */
  /* line 133, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  fieldset,
  img {
    border: 0 solid;
  }

  /* (en) new standard values for lists, blockquote, cite and tables */
  /* (de) Neue Standardwerte für Listen, Zitate und Tabellen */
  /* line 138, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  ul,
  ol,
  dl {
    margin: 0 0 1em 1em;
  }

  /* line 142, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  li {
    line-height: 1.5em;
    margin-left: 0.8em;
  }

  /* line 147, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  dt {
    font-weight: bold;
  }

  /* line 148, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  dd {
    margin: 0 0 1em 0.8em;
  }

  /* line 150, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  blockquote {
    margin: 0 0 1em 0.8em;
  }

  /* line 151, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  q {
    quotes: none;
  }

  /* line 153, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  blockquote:before,
  blockquote:after,
  q:before,
  q:after {
    content: '';
    content: none;
  }

  /* line 161, ../../sass/yaml-sass/core/base-modules/_normalization.scss */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }

  /**
  * @section Float Handling Module
  */
  /* (en) clearfix method for clearing floats */
  /* (de) Clearfix-Methode zum Clearen der Float-Umgebungen */
  /* line 8, ../../sass/yaml-sass/core/base-modules/_float-handling.scss */
  .ym-clearfix:before {
    content: "";
    display: table;
  }

  /* line 12, ../../sass/yaml-sass/core/base-modules/_float-handling.scss */
  .ym-clearfix:after {
    clear: both;
    content: ".";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
  }

  /* (en) alternative solutions to contain floats */
  /* (de) Alternative Methoden zum Einschließen von Float-Umgebungen */
  /* line 23, ../../sass/yaml-sass/core/base-modules/_float-handling.scss */
  .ym-contain-dt {
    display: table;
    table-layout: fixed;
    width: 100%;
  }

  /* line 26, ../../sass/yaml-sass/core/base-modules/_float-handling.scss */
  .ym-contain-oh {
    display: block;
    overflow: hidden;
    width: 100%;
  }

  /* line 29, ../../sass/yaml-sass/core/base-modules/_float-handling.scss */
  .ym-contain-fl {
    float: left;
    width: 100%;
  }

  /**
  * @section Column Module
  *
  * default column config:
  * |-------------------------------|
  * | col1    | col3      | col2    |
  * | 20%     | flexible  | 20%     |
  * |-------------------------------|
  */
  /* line 12, ../../sass/yaml-sass/core/base-modules/_columns.scss */
  .ym-column {
    display: table;
    table-layout: fixed;
    width: 100%;
  }

  /* line 16, ../../sass/yaml-sass/core/base-modules/_columns.scss */
  .ym-col1 {
    float: left;
    width: 20%;
  }

  /* line 17, ../../sass/yaml-sass/core/base-modules/_columns.scss */
  .ym-col2 {
    float: right;
    width: 20%;
  }

  /* line 18, ../../sass/yaml-sass/core/base-modules/_columns.scss */
  .ym-col3 {
    width: auto;
    margin: 0 20%;
  }

  /* line 20, ../../sass/yaml-sass/core/base-modules/_columns.scss */
  .ym-cbox {
    padding: 0 10px;
  }

  /* line 21, ../../sass/yaml-sass/core/base-modules/_columns.scss */
  .ym-cbox-left {
    padding: 0 10px 0 0;
  }

  /* line 22, ../../sass/yaml-sass/core/base-modules/_columns.scss */
  .ym-cbox-right {
    padding: 0 0 0 10px;
  }

  /* (en) IE-Clearing: Only used in Internet Explorer, switched on in iehacks.css */
  /* (de) IE-Clearing: Benötigt nur der Internet Explorer und über iehacks.css zugeschaltet */
  /* line 26, ../../sass/yaml-sass/core/base-modules/_columns.scss */
  .ym-ie-clearing {
    display: none;
  }

  /**
  * @section Grid Module
  */
  /* line 7, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-grid, .mm {
    display: table;
    table-layout: fixed;
    width: 100%;
    list-style-type: none;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  /* line 16, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-gl {
    float: left;
    margin: 0;
  }

  /* line 21, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-gr {
    float: right;
    margin: 0 0 0 -5px;
  }

  /* line 26, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-g20 {
    width: 20%;
  }

  /* line 27, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-g30 {
    width: 30%;
  }

  /* line 28, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-g40 {
    width: 40%;
  }

  /* line 29, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-g60 {
    width: 60%;
  }

  /* line 30, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-g80 {
    width: 80%;
  }

  /* line 31, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-g25 {
    width: 25%;
  }

  /* line 32, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-g33 {
    width: 33.333%;
  }

  /* line 33, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-g50 {
    width: 50%;
  }

  /* line 34, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-g66 {
    width: 66.666%;
  }

  /* line 35, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-g75 {
    width: 75%;
  }

  /* line 36, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-g38 {
    width: 38.2%;
  }

  /* line 37, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-g62 {
    width: 61.8%;
  }

  /* line 39, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-gbox {
    padding: 0 10px;
  }

  /* line 40, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-gbox-left {
    padding: 0 10px 0 0;
  }

  /* line 41, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-gbox-right {
    padding: 0 0 0 10px;
  }

  /* line 43, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-equalize {
    overflow: hidden;
  }

  /* line 45, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-equalize > [class*="ym-g"] {
    display: table-cell;
    float: none;
    margin: 0;
    vertical-align: top;
  }

  /* line 52, ../../sass/yaml-sass/core/base-modules/_grids-core.scss */
  .ym-equalize > [class*="ym-g"] > [class*="ym-gbox"] {
    padding-bottom: 10000px;
    margin-bottom: -10000px;
  }

  /**
  * @section Form Module
  */
  /** Vertical-Forms - technical base (standard)
  *
  * |-------------------------------|
  * | form                          |
  * |-------------------------------|
  * |   label                       |
  * |   input / select / textarea   |
  * |-------------------------------|
  * | /form                         |
  * |-------------------------------|
  *
  * (en) Styling of forms where both label and input/select/textarea are styled with display:block;
  * (de) Formulargestaltung, bei der sowohl label als auch input/select/textarea mit display:block; gestaltet werden
  */
  /* line 21, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-form,
  .ym-form fieldset {
    overflow: hidden;
  }

  /* line 25, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-form div {
    position: relative;
  }
  /* line 27, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-form label,
  .ym-form .ym-label,
  .ym-form .ym-message {
    position: relative;
    line-height: 1.5;
    display: block;
  }
  /* line 35, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-form .ym-message {
    clear: both;
  }
  /* line 39, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-form .ym-fbox-check label {
    display: inline;
  }
  /* line 43, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-form input,
  .ym-form textarea {
    cursor: text;
  }
  /* line 46, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-form .ym-fbox-check input,
  .ym-form input[type="image"],
  .ym-form input[type="radio"],
  .ym-form input[type="checkbox"],
  .ym-form select,
  .ym-form label {
    cursor: pointer;
  }
  /* line 56, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-form textarea {
    overflow: auto;
  }
  /* line 62, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-form input.hidden,
  .ym-form input[type=hidden] {
    display: none !important;
  }
  /* line 69, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-form .ym-fbox:before,
  .ym-form .ym-fbox-text:before,
  .ym-form .ym-fbox-select:before,
  .ym-form .ym-fbox-check:before,
  .ym-form .ym-fbox-button:before {
    content: "";
    display: table;
  }
  /* line 78, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-form .ym-fbox:after,
  .ym-form .ym-fbox-text:after,
  .ym-form .ym-fbox-select:after,
  .ym-form .ym-fbox-check:after,
  .ym-form .ym-fbox-button:after {
    clear: both;
    content: ".";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
  }
  /* line 92, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-form .ym-fbox-check input:focus,
  .ym-form .ym-fbox-check input:hover,
  .ym-form .ym-fbox-check input:active,
  .ym-form input[type="radio"]:focus,
  .ym-form input[type="radio"]:hover,
  .ym-form input[type="radio"]:active,
  .ym-form input[type="checkbox"]:focus,
  .ym-form input[type="checkbox"]:hover,
  .ym-form input[type="checkbox"]:active {
    border: 0 none;
  }
  /* line 108, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-form input,
  .ym-form textarea,
  .ym-form select {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 70%;
  }
  /* line 118, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-form .ym-fbox-check input,
  .ym-form input[type="radio"],
  .ym-form input[type="checkbox"] {
    display: inline;
    margin-left: 0;
    margin-right: 0.5ex;
    width: auto;
    height: auto;
  }
  /* line 128, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-form input[type="image"] {
    border: 0;
    display: inline;
    height: auto;
    margin: 0;
    padding: 0;
    width: auto;
  }
  /* line 137, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-form label,
  .ym-form .ym-label {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  /* line 144, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-form .ym-fbox-button input {
    display: inline;
    overflow: visible;
    width: auto;
  }
  /* line 151, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-form .ym-inline {
    display: inline-block;
    float: none;
    margin-right: 0;
    width: auto;
    vertical-align: baseline;
  }

  /* default form wrapper width */
  /* line 161, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-fbox-wrap {
    display: table;
    table-layout: fixed;
    width: 70%;
  }
  /* line 166, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-fbox-wrap input,
  .ym-fbox-wrap textarea,
  .ym-fbox-wrap select {
    width: 100%;
  }
  /* line 172, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-fbox-wrap input[type="image"] {
    width: auto;
  }
  /* line 176, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-fbox-wrap input[type="radio"],
  .ym-fbox-wrap input[type="checkbox"] {
    display: inline;
    width: auto;
    margin-left: 0;
    margin-right: 0.5ex;
  }
  /* line 184, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-fbox-wrap label,
  .ym-fbox-wrap .ym-label {
    display: inline;
  }

  /* line 191, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-full input,
  .ym-full textarea,
  .ym-full select {
    width: 100%;
  }
  /* line 196, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-full .ym-fbox-wrap {
    width: 100%;
  }

  /**
  *  Columnar forms display - technical base (optional)
  *
  *  |-------------------------------------------|
  *  | form                                      |
  *  |-------------------------------------------|
  *  |                                           |
  *  |   label   |   input / select / textarea   |
  *  |                                           |
  *  |-------------------------------------------|
  *  | /form                                     |
  *  |-------------------------------------------|
  *
  *  (en) Styling of forms where label floats left of form-elements
  *  (de) Formulargestaltung, bei der die label-Elemente nach links fließen
  */
  /* line 222, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-columnar input,
  .ym-columnar textarea,
  .ym-columnar select {
    float: left;
    margin-right: -3px;
  }
  /* line 229, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-columnar label,
  .ym-columnar .ym-label {
    display: inline;
    float: left;
    width: 30%;
    z-index: 1;
  }
  /* line 239, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-columnar .ym-fbox-check input,
  .ym-columnar .ym-message {
    margin-left: 30%;
  }
  /* line 245, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-columnar .ym-fbox-wrap {
    margin-left: 30%;
    margin-right: -3px;
  }
  /* line 249, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-columnar .ym-fbox-wrap .ym-message {
    margin-left: 0%;
  }
  /* line 253, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-columnar .ym-fbox-wrap label {
    float: none;
    width: auto;
    z-index: 1;
    margin-left: 0;
  }
  /* line 260, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-columnar .ym-fbox-wrap input {
    margin-left: 0;
    position: relative;
  }
  /* line 266, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-columnar .ym-fbox-check {
    position: relative;
  }
  /* line 269, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-columnar .ym-fbox-check label,
  .ym-columnar .ym-fbox-check .ym-label {
    padding-top: 0;
  }
  /* line 274, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-columnar .ym-fbox-check input {
    top: 3px;
  }
  /* line 280, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-columnar .ym-fbox-button input {
    float: none;
    margin-right: 1em;
  }

  /* line 287, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-fbox-wrap + .ym-fbox-wrap {
    margin-top: 0.5em;
  }

  /* global and local columnar settings for button alignment */
  /* line 292, ../../sass/yaml-sass/core/base-modules/_forms-core.scss */
  .ym-columnar fieldset .ym-fbox-button,
  fieldset.ym-columnar .ym-fbox-button {
    padding-left: 30%;
  }

  /**
  * @section Accessibility Module
  *
  * (en) skip links and hidden content
  * (de) Skip-Links und versteckte Inhalte
  */
  /* (en) classes for invisible elements in the base layout */
  /* (de) Klassen für unsichtbare Elemente im Basislayout */
  /* line 12, ../../sass/yaml-sass/core/base-modules/_accessibility.scss */
  .ym-skip,
  .ym-hideme,
  .ym-print {
    position: absolute !important;
    top: -32768px;
    left: -32768px;
  }

  /* (en) make skip links visible when using tab navigation */
  /* (de) Skip-Links für Tab-Navigation sichtbar schalten */
  /* line 22, ../../sass/yaml-sass/core/base-modules/_accessibility.scss */
  .ym-skip:focus,
  .ym-skip:active {
    position: static;
    top: 0;
    left: 0;
  }

  /* skiplinks:technical setup */
  /* line 30, ../../sass/yaml-sass/core/base-modules/_accessibility.scss */
  .ym-skiplinks {
    position: absolute;
    top: 0px;
    left: -32768px;
    z-index: 1000;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  /* line 40, ../../sass/yaml-sass/core/base-modules/_accessibility.scss */
  .ym-skiplinks .ym-skip:focus,
  .ym-skiplinks .ym-skip:active {
    left: 32768px;
    outline: 0 none;
    position: absolute;
    width: 100%;
  }
}
@media print {
  /**
  * @section print adjustments for core modules
  *
  * (en) float containment for grids. Uses display:table to avoid bugs in FF & IE
  * (de) Floats in Grids einschließen. Verwendet display:table, um Darstellungsprobleme im FF & IE zu vermeiden
  *
  * @bugfix
  * @since     3.0
  * @affected  FF2.0, FF3.0, IE7
  * @css-for   all browsers
  * @valid     yes
  */
  /* line 16, ../../sass/yaml-sass/core/base-modules/_print-core.scss */
  .ym-grid > .ym-gl, .mm > .ym-gl,
  .ym-grid > .ym-gr,
  .mm > .ym-gr {
    overflow: visible;
    display: table;
    table-layout: fixed;
  }

  /* (en) make .ym-print class visible */
  /* (de) .ym-print-Klasse sichtbar schalten */
  /* line 26, ../../sass/yaml-sass/core/base-modules/_print-core.scss */
  .ym-print {
    position: static;
    left: 0;
  }

  /* (en) generic class to hide elements for print */
  /* (de) Allgemeine CSS Klasse, um beliebige Elemente in der Druckausgabe auszublenden */
  /* line 33, ../../sass/yaml-sass/core/base-modules/_print-core.scss */
  .ym-noprint {
    display: none !important;
  }
}
@media print {
  /**
  * @section basic layout preparation
  */
  /* (en) change font size unit to [pt] - avoids problems with [px] in Gecko based browsers */
  /* (de) Wechsel der der Schriftgrößen-Maßheinheit zu [pt] - Probleme mit [px] in Gecko-Browsern vermeiden */
  /* line 11, ../../sass/yaml-sass/print/_print.scss */
  body {
    font-size: 10pt;
    padding: 0 5px;
  }

  /* (en) Hide unneeded container of the screenlayout in print layout */
  /* (de) Für den Druck nicht benötigte Container des Layouts abschalten */
  /* line 18, ../../sass/yaml-sass/print/_print.scss */
  nav,
  .ym-searchform {
    display: none;
  }

  /*------------------------------------------------------------------------------------------------------*/
  /* (en) Avoid page breaks right after headings */
  /* (de) Vermeidung von Seitenumbrüchen direkt nach einer Überschrift */
  /* line 27, ../../sass/yaml-sass/print/_print.scss */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    page-break-after: avoid;
  }
}
/* line 2, ../../sass/mixins/placeholders/_lists.scss */
.footer ul.linklist, .footer .privacy ul.privacy-list, .textcntinner ul, .teaser ul, .no-list, .faq-container .faq-content .faq-content-inner ul {
  list-style-type: none;
}
/* line 4, ../../sass/mixins/placeholders/_lists.scss */
.footer ul.linklist, .footer .privacy ul.privacy-list, .textcntinner ul, .teaser ul, .no-list, .faq-container .faq-content .faq-content-inner ul, .footer ul.linklist li, .footer .privacy ul.privacy-list li, .textcntinner ul li, .teaser ul li, .no-list li, .faq-container .faq-content .faq-content-inner ul li {
  margin-left: 0;
  padding-left: 0;
}

/* ------- Module --------------- */
/*  box sizing */
/* line 2, ../../sass/modules/basics/_layout.scss */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 6, ../../sass/modules/basics/_layout.scss */
body {
  background-color: #fff;
  position: relative;
}

/* line 11, ../../sass/modules/basics/_layout.scss */
.ym-wbox {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

/* line 17, ../../sass/modules/basics/_layout.scss */
.ym-wbox {
  padding: 30px 20px 30px 20px;
}
@media only screen and (min-width: 1200px) {
  /* line 17, ../../sass/modules/basics/_layout.scss */
  .ym-wbox {
    padding: 30px 60px 30px 60px;
  }
}
@media only screen and (min-width: 1400px) {
  /* line 17, ../../sass/modules/basics/_layout.scss */
  .ym-wbox {
    padding: 30px 60px 30px 60px;
  }
}

/* line 27, ../../sass/modules/basics/_layout.scss */
.ym-wbox-2 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
@media only screen and (min-width: 1200px) {
  /* line 27, ../../sass/modules/basics/_layout.scss */
  .ym-wbox-2 {
    padding: 0 60px;
  }
}
@media only screen and (min-width: 1400px) {
  /* line 27, ../../sass/modules/basics/_layout.scss */
  .ym-wbox-2 {
    padding: 0 60px;
  }
}
@media only screen and (max-width: 480px) {
  /* line 27, ../../sass/modules/basics/_layout.scss */
  .ym-wbox-2 {
    padding: 0;
  }
}
/* line 41, ../../sass/modules/basics/_layout.scss */
.ym-wbox-2 .ym-gl, .ym-wbox-2 .ym-gr {
  padding-top: 25px;
  padding-bottom: 25px;
  margin-bottom: 0;
}
@media only screen and (max-width: 880px) {
  /* line 41, ../../sass/modules/basics/_layout.scss */
  .ym-wbox-2 .ym-gl, .ym-wbox-2 .ym-gr {
    padding-bottom: 20px;
  }
}
/* line 50, ../../sass/modules/basics/_layout.scss */
.ym-wbox-2 .ym-gbox .ym-gl, .ym-wbox-2 .ym-gbox .ym-gr {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 20px;
}
@media only screen and (max-width: 880px) {
  /* line 56, ../../sass/modules/basics/_layout.scss */
  .ym-wbox-2.with-stage {
    padding: 0;
  }
}

/* line 63, ../../sass/modules/basics/_layout.scss */
.carousel-landingpage {
  margin: 0 !important;
}
/* line 66, ../../sass/modules/basics/_layout.scss */
.carousel-landingpage .gwd-page-container div {
  border: none;
}
/* line 69, ../../sass/modules/basics/_layout.scss */
.carousel-landingpage .gwd-page-container > div {
  position: relative !important;
}

/* line 75, ../../sass/modules/basics/_layout.scss */
.ym-wbox-landingpage {
  margin-top: -3px;
}
/* line 77, ../../sass/modules/basics/_layout.scss */
.ym-wbox-landingpage .ym-wbox {
  max-width: 1160px;
  padding: 20px;
}
/* line 81, ../../sass/modules/basics/_layout.scss */
.ym-wbox-landingpage .headline {
  margin-top: 20px;
}

/* line 86, ../../sass/modules/basics/_layout.scss */
.ui-autocomplete {
  background: #f6f4f1 !important;
}

/* line 91, ../../sass/modules/basics/_layout.scss */
.unterseitencontainer {
  padding: 0 0 0 140px;
}
/* line 93, ../../sass/modules/basics/_layout.scss */
.unterseitencontainer > div {
  padding-right: 140px;
}

/* line 98, ../../sass/modules/basics/_layout.scss */
.textcnt {
  max-width: 1280px;
  margin: 0 auto;
}

/* line 104, ../../sass/modules/basics/_layout.scss */
.hellgrau1 {
  background-color: #f6f4f1;
}

/* line 108, ../../sass/modules/basics/_layout.scss */
.hellgrau2 {
  background-color: #ddd8d3;
}

/* line 112, ../../sass/modules/basics/_layout.scss */
.mittelgrau {
  background-color: #a3988e;
}

/* line 123, ../../sass/modules/basics/_layout.scss */
.white-bg {
  background-color: #fff;
}

/* line 128, ../../sass/modules/basics/_layout.scss */
.intro-no-headerimage {
  padding-top: 60px;
}

/* line 131, ../../sass/modules/basics/_layout.scss */
.button-row {
  width: 100%;
  margin: 50px 0 0 0;
}
/* line 134, ../../sass/modules/basics/_layout.scss */
.button-row a {
  border: 1px solid #ddd8d3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #fff;
  padding: 10px;
  font-size: 107.1%;
  display: block;
  float: left;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line 156, ../../sass/modules/basics/_layout.scss */
.button-row a span {
  position: relative;
  bottom: 2px;
}
/* line 160, ../../sass/modules/basics/_layout.scss */
.button-row a:hover, .button-row a:focus {
  color: #e2001a;
}
/* line 163, ../../sass/modules/basics/_layout.scss */
.button-row a.print, .button-row a.pdf {
  width: 32.25%;
  margin: 0 0 0 1.5%;
  text-align: center;
}
/* line 168, ../../sass/modules/basics/_layout.scss */
.button-row a:first-child {
  margin-left: 0;
}
/* line 173, ../../sass/modules/basics/_layout.scss */
.button-row .fa-print:before {
  content: url('../images/icons/print.png');
  margin-right: 15px;
}
/* line 179, ../../sass/modules/basics/_layout.scss */
.button-row .fa-file-pdf-o:before {
  content: url('../images/icons/pdf.png');
  margin-right: 15px;
}
@media only screen and (max-width: 1200px) {
  /* line 185, ../../sass/modules/basics/_layout.scss */
  .button-row a.print, .button-row a.pdf {
    width: 49%;
    margin-left: 0;
  }
  /* line 189, ../../sass/modules/basics/_layout.scss */
  .button-row a.print {
    margin: 0 2% 0 0;
  }
  /* line 191, ../../sass/modules/basics/_layout.scss */
  .button-row a.print + a.print {
    margin: 0 0 0 0;
  }
}

/* line 224, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-wrapper {
  width: 100%;
  margin: 0 auto;
}

/* line 228, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-gbox {
  padding-left: 15px;
  padding-right: 15px;
}

/* line 234, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-gbox-left {
  padding-left: 0;
  padding-right: 15px;
}

/* line 240, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-gbox-right {
  padding-left: 15px;
  padding-right: 0;
}

/* line 246, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
[class*="-push-"],
[class*="-pull-"] {
  position: relative;
}

/* line 250, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-1 {
  width: 10%;
}

/* line 250, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-2 {
  width: 20%;
}

/* line 250, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-3 {
  width: 30%;
}

/* line 250, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-4 {
  width: 40%;
}

/* line 250, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-5 {
  width: 50%;
}

/* line 250, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-6 {
  width: 60%;
}

/* line 250, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-7 {
  width: 70%;
}

/* line 250, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-8 {
  width: 80%;
}

/* line 250, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-9 {
  width: 90%;
}

/* line 250, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-10 {
  width: 100%;
}

/* line 254, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-push-1 {
  left: 10%;
}

/* line 254, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-push-2 {
  left: 20%;
}

/* line 254, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-push-3 {
  left: 30%;
}

/* line 254, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-push-4 {
  left: 40%;
}

/* line 254, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-push-5 {
  left: 50%;
}

/* line 254, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-push-6 {
  left: 60%;
}

/* line 254, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-push-7 {
  left: 70%;
}

/* line 254, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-push-8 {
  left: 80%;
}

/* line 254, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-push-9 {
  left: 90%;
}

/* line 258, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-pull-1 {
  left: -10%;
}

/* line 258, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-pull-2 {
  left: -20%;
}

/* line 258, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-pull-3 {
  left: -30%;
}

/* line 258, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-pull-4 {
  left: -40%;
}

/* line 258, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-pull-5 {
  left: -50%;
}

/* line 258, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-pull-6 {
  left: -60%;
}

/* line 258, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-pull-7 {
  left: -70%;
}

/* line 258, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-pull-8 {
  left: -80%;
}

/* line 258, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.ym-dl-pull-9 {
  left: -90%;
}

/* line 6, ../../sass/modules/basics/_grid.scss */
.ym-gbox {
  margin: 0 !important;
  padding-top: 30px !important;
  padding-right: 30px !important;
  padding-bottom: 30px !important;
  padding-left: 30px !important;
}
@media only screen and (max-width: 880px) {
  /* line 6, ../../sass/modules/basics/_grid.scss */
  .ym-gbox {
    padding-top: 20px !important;
    padding-right: 20px !important;
    padding-bottom: 20px !important;
    padding-left: 20px !important;
  }
}

/* line 20, ../../sass/modules/basics/_grid.scss */
.ym-gbox-left {
  padding-right: 20px;
}
@media only screen and (max-width: 640px) {
  /* line 20, ../../sass/modules/basics/_grid.scss */
  .ym-gbox-left {
    padding-right: 0;
  }
}

/* line 25, ../../sass/modules/basics/_grid.scss */
.ym-gbox-right {
  padding-left: 20px;
}
@media only screen and (max-width: 640px) {
  /* line 25, ../../sass/modules/basics/_grid.scss */
  .ym-gbox-right {
    padding-left: 0;
  }
}

/* line 30, ../../sass/modules/basics/_grid.scss */
.ym-g25:first-child {
  padding-right: 20px;
}
@media only screen and (max-width: 880px) {
  /* line 30, ../../sass/modules/basics/_grid.scss */
  .ym-g25:first-child {
    padding-left: 0;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 480px) {
  /* line 30, ../../sass/modules/basics/_grid.scss */
  .ym-g25:first-child {
    padding-right: 0;
  }
}

/* line 36, ../../sass/modules/basics/_grid.scss */
.ym-g25:first-child + .ym-g25 {
  padding-left: 6.66667px;
  padding-right: 13.33333px;
}
@media only screen and (min-width: 881px) {
  /* line 36, ../../sass/modules/basics/_grid.scss */
  .ym-g25:first-child + .ym-g25 {
    padding-left: 6.66667px;
    padding-right: 13.33333px;
  }
}
@media only screen and (max-width: 880px) {
  /* line 36, ../../sass/modules/basics/_grid.scss */
  .ym-g25:first-child + .ym-g25 {
    padding-left: 10px;
    padding-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  /* line 36, ../../sass/modules/basics/_grid.scss */
  .ym-g25:first-child + .ym-g25 {
    padding-left: 0;
    padding-right: 0;
  }
}

/* line 44, ../../sass/modules/basics/_grid.scss */
.ym-g25:first-child + .ym-g25 + .ym-g25 {
  padding-left: 13.33333px;
  padding-right: 6.66667px;
}
@media only screen and (min-width: 881px) {
  /* line 44, ../../sass/modules/basics/_grid.scss */
  .ym-g25:first-child + .ym-g25 + .ym-g25 {
    padding-left: 13.33333px;
    padding-right: 6.66667px;
  }
}
@media only screen and (max-width: 880px) {
  /* line 44, ../../sass/modules/basics/_grid.scss */
  .ym-g25:first-child + .ym-g25 + .ym-g25 {
    padding-left: 0;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 480px) {
  /* line 44, ../../sass/modules/basics/_grid.scss */
  .ym-g25:first-child + .ym-g25 + .ym-g25 {
    padding-left: 0;
    padding-right: 0;
  }
}

/* line 52, ../../sass/modules/basics/_grid.scss */
.ym-g25.ym-gr {
  padding-left: 20px;
}
@media only screen and (max-width: 880px) {
  /* line 52, ../../sass/modules/basics/_grid.scss */
  .ym-g25.ym-gr {
    padding-left: 10px;
    padding-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  /* line 52, ../../sass/modules/basics/_grid.scss */
  .ym-g25.ym-gr {
    padding-left: 0;
  }
}

/* line 58, ../../sass/modules/basics/_grid.scss */
.ym-g50.ym-gl {
  padding-right: 10px;
}
@media only screen and (max-width: 640px) {
  /* line 58, ../../sass/modules/basics/_grid.scss */
  .ym-g50.ym-gl {
    padding-right: 0;
  }
}

/* line 63, ../../sass/modules/basics/_grid.scss */
.ym-g50.ym-gl:first-child + .ym-g25 {
  padding-right: 6.66667px;
  padding-left: 13.33333px;
}
@media only screen and (max-width: 880px) {
  /* line 63, ../../sass/modules/basics/_grid.scss */
  .ym-g50.ym-gl:first-child + .ym-g25 {
    padding-left: 0;
    padding-right: 0;
  }
}

/* line 69, ../../sass/modules/basics/_grid.scss */
.ym-g50.ym-gr {
  padding-left: 10px;
}
@media only screen and (max-width: 640px) {
  /* line 69, ../../sass/modules/basics/_grid.scss */
  .ym-g50.ym-gr {
    padding-left: 0;
  }
}

/* line 74, ../../sass/modules/basics/_grid.scss */
.ym-g33:first-child {
  padding-right: 20px;
}
@media only screen and (max-width: 640px) {
  /* line 74, ../../sass/modules/basics/_grid.scss */
  .ym-g33:first-child {
    padding-right: 0;
  }
}

/* line 79, ../../sass/modules/basics/_grid.scss */
.ym-g33:first-child + .ym-g33 {
  padding-left: 10px;
  padding-right: 10px;
}
@media only screen and (max-width: 640px) {
  /* line 79, ../../sass/modules/basics/_grid.scss */
  .ym-g33:first-child + .ym-g33 {
    padding-left: 0;
    padding-right: 0;
  }
}

/* line 85, ../../sass/modules/basics/_grid.scss */
.ym-g33.ym-gr {
  padding-left: 20px;
  padding-top: 0;
}
@media only screen and (max-width: 880px) {
  /* line 85, ../../sass/modules/basics/_grid.scss */
  .ym-g33.ym-gr {
    padding-left: 0;
    padding-top: 25px;
  }
}

@media only screen and (max-width: 880px) {
  /* line 95, ../../sass/modules/basics/_grid.scss */
  .ym-gr {
    margin-left: 0;
  }

  /* line 98, ../../sass/modules/basics/_grid.scss */
  .ym-g33.ym-gr {
    float: none;
    width: 100%;
    clear: both;
    padding-left: 0;
    margin-left: 0;
  }

  /* line 105, ../../sass/modules/basics/_grid.scss */
  .ym-g33.ym-gl {
    width: 50%;
  }

  /* line 109, ../../sass/modules/basics/_grid.scss */
  .ym-g33.ym-gl:first-child {
    padding-right: 10px;
  }

  /* line 113, ../../sass/modules/basics/_grid.scss */
  .ym-g33.ym-gl:first-child + .ym-g33.ym-gl {
    padding-left: 10px;
  }

  /* line 117, ../../sass/modules/basics/_grid.scss */
  .ym-g25 {
    width: 50%;
  }
  /* line 119, ../../sass/modules/basics/_grid.scss */
  .ym-g25:nth-child(3) {
    clear: both;
  }

  /* line 125, ../../sass/modules/basics/_grid.scss */
  .ym-g66,
  .ym-g75 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  /* line 131, ../../sass/modules/basics/_grid.scss */
  .ym-g25:first-child + .ym-g50 {
    width: 100% !important;
    padding-right: 0;
  }

  /* line 135, ../../sass/modules/basics/_grid.scss */
  .ym-g50 + .ym-g25 {
    width: 100%;
    padding-left: 0;
  }
}
@media only screen and (max-width: 640px) {
  /* line 142, ../../sass/modules/basics/_grid.scss */
  .ym-gr {
    margin-left: 0;
  }

  /* line 145, ../../sass/modules/basics/_grid.scss */
  .ym-g30, .ym-g33, .ym-g40, .ym-g50, .ym-g60, .ym-g66, .ym-g75 {
    width: 100% !important;
  }

  /* line 148, ../../sass/modules/basics/_grid.scss */
  .footer .ym-g33.ym-gl {
    float: left;
    width: 50%;
  }

  /* line 152, ../../sass/modules/basics/_grid.scss */
  .ym-g33.ym-gl:first-child {
    padding-right: 0;
  }

  /* line 155, ../../sass/modules/basics/_grid.scss */
  .ym-g33.ym-gl:first-child + .ym-g33.ym-gl {
    padding-left: 0;
  }
}
@media only screen and (max-width: 480px) {
  /* line 161, ../../sass/modules/basics/_grid.scss */
  .ym-g25 {
    width: 100% !important;
  }

  /* line 164, ../../sass/modules/basics/_grid.scss */
  .ym-g25:first-child + .ym-g50 {
    width: 100% !important;
    padding-left: 0;
  }
}
/* line 170, ../../sass/modules/basics/_grid.scss */
.ym-grid + .ym-grid, .mm + .ym-grid, .ym-grid + .mm, .mm + .mm {
  margin-top: 20px;
}

@media all {
  /* line 3, ../../sass/modules/basics/_typography.scss */
  html * {
    font-size: 100%;
  }

  /* line 4, ../../sass/modules/basics/_typography.scss */
  pre, code, kbd, samp, var, tt {
    font-family: Consolas, "Lucida Console", "Andale Mono", "Bitstream Vera Sans Mono", "Courier New", Courier;
  }

  /* line 7, ../../sass/modules/basics/_typography.scss */
  body {
    font-family: "spar-regular", Arial, Helvetica, sans-serif;
    font-size: 87.5%;
    color: #444;
  }

  /*--- Headings | Überschriften ------------------------------------------------------------------------*/
  /* line 15, ../../sass/modules/basics/_typography.scss */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    color: #161e21;
    margin: 0;
  }
  /* line 19, ../../sass/modules/basics/_typography.scss */
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: inherit;
  }

  /* line 22, ../../sass/modules/basics/_typography.scss */
  h1 {
    /*! font-size: 48px; */
    font-size: 228.57143%;
    line-height: 1.3125;
    margin: 0 0 0.65625em 0;
  }

  /* line 29, ../../sass/modules/basics/_typography.scss */
  h2 {
    /*! font-size: 32px; */
    font-size: 228.57143%;
    line-height: 1.3125;
    margin: 0 0 0.65625em 0;
  }

  /* line 36, ../../sass/modules/basics/_typography.scss */
  h3 {
    /*! font-size: 24px; */
    font-size: 171.42857%;
    line-height: 0.875;
    margin: 0 0 0.875em 0;
  }

  /* line 43, ../../sass/modules/basics/_typography.scss */
  h4 {
    /*! font-size: 21px; */
    font-size: 150%;
    line-height: 1;
    margin: 0 0 1em 0;
  }

  /* line 50, ../../sass/modules/basics/_typography.scss */
  h5 {
    /*! font-size: 18px; */
    font-size: 128.57143%;
    line-height: 1.16667;
    margin: 0 0 1.16667em 0;
  }

  /* line 57, ../../sass/modules/basics/_typography.scss */
  h6 {
    /*! font-size: 14px; */
    font-size: 100%;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 1.5em 0;
  }

  /* --- Lists | Listen  -------------------------------------------------------------------------------- */
  /* line 67, ../../sass/modules/basics/_typography.scss */
  ul,
  ol,
  dl {
    font-size: 100%;
    line-height: 1.5;
    margin: 0 0 1.5em 0;
  }

  /* line 75, ../../sass/modules/basics/_typography.scss */
  ul {
    list-style-type: disc;
  }

  /* line 79, ../../sass/modules/basics/_typography.scss */
  ol {
    list-style-type: decimal;
  }

  /* line 83, ../../sass/modules/basics/_typography.scss */
  ul ul {
    list-style-type: circle;
    margin-top: 0;
  }

  /* line 88, ../../sass/modules/basics/_typography.scss */
  ol ol {
    list-style-type: lower-latin;
    margin-top: 0;
  }

  /* line 93, ../../sass/modules/basics/_typography.scss */
  ol ul {
    list-style-type: circle;
    margin-top: 0;
  }

  /* line 98, ../../sass/modules/basics/_typography.scss */
  li {
    font-size: 100%;
    line-height: 1.5;
    margin-left: 1.2em;
  }

  /* line 104, ../../sass/modules/basics/_typography.scss */
  dt {
    font-weight: bold;
  }

  /* line 108, ../../sass/modules/basics/_typography.scss */
  dd {
    margin: 0 0 1.5em 0.8em;
  }

  /* --- general text formatting | Allgemeine Textauszeichnung ------------------------------------------ */
  /* line 114, ../../sass/modules/basics/_typography.scss */
  p {
    font-size: 100%;
    line-height: 1.5;
    margin: 0 0 1.5em 0;
  }

  /* line 120, ../../sass/modules/basics/_typography.scss */
  blockquote,
  cite,
  q {
    font-family: "Droid Serif", Georgia, "Times New Roman", Times, serif;
    font-style: italic;
  }

  /* line 127, ../../sass/modules/basics/_typography.scss */
  blockquote {
    background: transparent;
    color: #666;
    margin: 1.5em 0 0 1.5em;
  }

  /* line 133, ../../sass/modules/basics/_typography.scss */
  strong,
  b {
    font-weight: bold;
  }

  /* line 138, ../../sass/modules/basics/_typography.scss */
  em,
  i {
    font-style: italic;
  }

  /* line 143, ../../sass/modules/basics/_typography.scss */
  big {
    /*! font-size: 16px; */
    font-size: 114.28571%;
    line-height: 1.3125;
  }

  /* line 149, ../../sass/modules/basics/_typography.scss */
  small {
    /*! font-size: 12px; */
    font-size: 85.71429%;
    line-height: 1.75;
  }

  /* line 155, ../../sass/modules/basics/_typography.scss */
  pre,
  code,
  kbd,
  tt,
  samp,
  var {
    font-size: 100%;
  }

  /* line 164, ../../sass/modules/basics/_typography.scss */
  pre {
    font-size: 100%;
    line-height: 1.5;
    margin: 0 0 1.5em 0;
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
  }

  /* line 172, ../../sass/modules/basics/_typography.scss */
  pre,
  code {
    color: #800;
  }

  /* line 177, ../../sass/modules/basics/_typography.scss */
  kbd,
  samp,
  var,
  tt {
    color: #666;
    font-weight: bold;
  }

  /* line 185, ../../sass/modules/basics/_typography.scss */
  var,
  dfn {
    font-style: italic;
  }

  /* line 190, ../../sass/modules/basics/_typography.scss */
  acronym,
  abbr {
    border-bottom: 1px #aaa dotted;
    font-variant: small-caps;
    letter-spacing: .07em;
    cursor: help;
  }

  /* line 198, ../../sass/modules/basics/_typography.scss */
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }

  /* line 206, ../../sass/modules/basics/_typography.scss */
  sup {
    top: -0.5em;
  }

  /* line 207, ../../sass/modules/basics/_typography.scss */
  sub {
    bottom: -0.25em;
  }

  /* line 209, ../../sass/modules/basics/_typography.scss */
  mark {
    background: #ff0;
    color: #000;
  }

  /* line 214, ../../sass/modules/basics/_typography.scss */
  hr {
    color: #fff;
    background: transparent;
    margin: 0 0 0.75em 0;
    padding: 0 0 0.67857em 0;
    border: 0;
    border-bottom: 1px #eee solid;
  }

  /*--- Links ----------------------------------------------------------------------------------------- */
  /* line 237, ../../sass/modules/basics/_typography.scss */
  a {
    color: #444;
    text-decoration: underline;
  }

  /* line 242, ../../sass/modules/basics/_typography.scss */
  a:hover, a:focus {
    color: #e2001a;
  }

  /* line 243, ../../sass/modules/basics/_typography.scss */
  a:active {
    outline: none;
  }

  /* line 245, ../../sass/modules/basics/_typography.scss */
  p a {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  /* line 247, ../../sass/modules/basics/_typography.scss */
  p a:hover, p a:focus {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }

  /* --- images ------------------ */
  /* line 254, ../../sass/modules/basics/_typography.scss */
  img,
  figure {
    margin: 0;
  }

  /* line 259, ../../sass/modules/basics/_typography.scss */
  .flexible {
    max-width: 100%;
    height: auto;
    width: auto;
    display: block;
  }

  /* IE6 workaround - 2% space for possible borders */
  /* line 267, ../../sass/modules/basics/_typography.scss */
  * html .flexible {
    width: 98%;
  }

  /* line 271, ../../sass/modules/basics/_typography.scss */
  .bordered {
    border: 2px #eee solid;
    border: 2px white solid;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
  }

  /**
  * ----------------------------------------------------------------------- #
  *
  * Generic Content Classes
  *
  * (en) standard classes for positioning and highlighting
  * (de) Standardklassen zur Positionierung und Hervorhebung
  *
  * @section content-generic-classes
  */
  /* line 289, ../../sass/modules/basics/_typography.scss */
  .highlight {
    color: #c30;
  }

  /* line 293, ../../sass/modules/basics/_typography.scss */
  .dimmed {
    color: #888;
  }

  /* line 297, ../../sass/modules/basics/_typography.scss */
  .label {
    font-family: Verdana, Geneva, sans-serif;
    padding: 1px 6px 2px;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: normal;
    white-space: nowrap;
    border-radius: 3px;
    background: #06C;
    color: #fff;
    font-size: 10px;
    line-height: 12px;
  }

  /* line 311, ../../sass/modules/basics/_typography.scss */
  .info {
    background: #f4f4f4;
  }

  /* line 315, ../../sass/modules/basics/_typography.scss */
  .success {
    background: #8c8;
  }

  /* line 319, ../../sass/modules/basics/_typography.scss */
  .warning {
    background: #cc8;
  }

  /* line 323, ../../sass/modules/basics/_typography.scss */
  .error {
    background: none;
  }
  /* line 325, ../../sass/modules/basics/_typography.scss */
  .error .stackTrace {
    cursor: pointer;
  }

  /* line 330, ../../sass/modules/basics/_typography.scss */
  .float-left {
    float: left;
    display: inline;
    margin: 0 1em 1.5em 0;
  }

  /* line 336, ../../sass/modules/basics/_typography.scss */
  .float-right {
    float: right;
    display: inline;
    margin: 0 0 1.5em 1em;
  }

  /* line 342, ../../sass/modules/basics/_typography.scss */
  .float_left {
    float: left;
    display: inline;
    margin: 0 1.5em 1.5em 0;
  }

  /* line 348, ../../sass/modules/basics/_typography.scss */
  .float_right {
    float: right;
    display: inline;
    margin: 0 0 1.5em 1.5em;
  }

  /* line 354, ../../sass/modules/basics/_typography.scss */
  .center {
    display: block;
    text-align: center;
    margin: 0 auto 1.5em auto;
  }
}
@media all {
  /**
  * ------------------------------------------------------------------------------------------------- #
  *
  * Tables | Tabellen
  *
  * (en) Generic classes for table-width and design definition
  * (de) Generische Klassen für die Tabellenbreite und Gestaltungsvorschriften für Tabellen
  *
  * @section content-tables
  */
  /* line 12, ../../sass/modules/basics/_tables.scss */
  .align-left {
    float: left;
    display: inline;
    margin: 0 1.5em 1.5em 0;
  }

  /* line 17, ../../sass/modules/basics/_tables.scss */
  .align-right {
    float: right;
    display: inline;
    margin: 0 0 1.5em 1.5em;
  }

  /* line 22, ../../sass/modules/basics/_tables.scss */
  .align-center {
    display: block;
    text-align: center;
    margin: 0 auto 1.5em auto;
  }

  /* line 27, ../../sass/modules/basics/_tables.scss */
  .hide-grid,
  .hide-grid * {
    border: none !important;
  }

  /* line 31, ../../sass/modules/basics/_tables.scss */
  .odd {
    background-color: #f7f7f7;
  }

  /* line 34, ../../sass/modules/basics/_tables.scss */
  table {
    width: 100%;
    border-collapse: collapse;
    color: #444;
    border-top: 1px #ddd8d3 solid;
    border-bottom: 1px #ddd8d3 solid;
    margin: 0 0 1.35714em 0;
  }
  /* line 42, ../../sass/modules/basics/_tables.scss */
  table.narrow {
    margin: 0 0 1.42857em 0;
  }
  /* line 45, ../../sass/modules/basics/_tables.scss */
  table.narrow th,
  table.narrow td {
    padding: 0 0.5em;
    line-height: 1.42857;
  }
  /* line 52, ../../sass/modules/basics/_tables.scss */
  table.fixed {
    table-layout: fixed;
  }
  /* line 56, ../../sass/modules/basics/_tables.scss */
  table.bordertable {
    border: 1px #ddd8d3 solid;
  }
  /* line 59, ../../sass/modules/basics/_tables.scss */
  table.bordertable thead th {
    background: #e0e0e0;
    border-right: 1px #ddd8d3 solid;
    border-bottom: 1px #ddd8d3 solid;
  }
  /* line 66, ../../sass/modules/basics/_tables.scss */
  table.bordertable tbody th[scope="row"] {
    background: #f0f0f0;
  }
  /* line 69, ../../sass/modules/basics/_tables.scss */
  table.bordertable tbody th {
    border-right: 1px solid #ddd8d3;
  }
  /* line 72, ../../sass/modules/basics/_tables.scss */
  table.bordertable tbody td {
    border-right: 1px solid #ddd8d3;
  }

  /* line 79, ../../sass/modules/basics/_tables.scss */
  caption {
    font-variant: small-caps;
  }

  /* line 83, ../../sass/modules/basics/_tables.scss */
  th,
  td {
    line-height: 1.5em;
    vertical-align: top;
    padding: 0.71429em 0.5em;
  }

  /* line 90, ../../sass/modules/basics/_tables.scss */
  th *:first-child,
  td *:first-child {
    margin-top: 0;
  }

  /* line 95, ../../sass/modules/basics/_tables.scss */
  th.nowrap,
  td.nowrap {
    white-space: nowrap;
  }

  /* line 100, ../../sass/modules/basics/_tables.scss */
  thead th {
    text-align: left;
    border-left: 1px #ddd8d3 solid;
    border-right: 1px #ddd8d3 solid;
    background-color: #a3988e;
    color: #fff;
    font-size: 16px;
  }

  /* line 109, ../../sass/modules/basics/_tables.scss */
  tbody {
    /* highlight row on mouse over */
  }
  /* line 110, ../../sass/modules/basics/_tables.scss */
  tbody th,
  tbody td {
    text-align: left;
    border-top: 1px solid #ddd8d3;
    border-left: 1px #ddd8d3 solid;
    border-right: 1px #ddd8d3 solid;
  }
  /* line 119, ../../sass/modules/basics/_tables.scss */
  tbody tr:hover th,
  tbody tr:hover td {
    background: #ddd8d3;
  }
}
/* Styles for View Themeportal START */
@media only screen and (min-width: 1200px) {
  /* line 5, ../../sass/modules/basics/views/_themeportal.scss */
  .view-themeportal .contentColumn > .textcntinner > p, .view-themeportal .contentColumn > .textcntinner > h2, .view-themeportal .contentColumn > .textcntinner > h3, .view-themeportal .contentColumn > .textcntinner > h4, .view-themeportal .textcntinner > div.list-element ol {
    max-width: 80%;
  }
}
@media only screen and (min-width: 1200px) {
  /* line 9, ../../sass/modules/basics/views/_themeportal.scss */
  .view-themeportal .overview-intro {
    max-width: 80%;
  }
}
/* line 14, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal h1 span {
  font-size: 112.5%;
}
/* line 19, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal h2 span.basecontent-headline {
  font-size: 133.3334%;
  line-height: 1.2em;
}
/* line 24, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal h4.basecontent-sub-heading {
  font-size: 160.0643%;
  line-height: 1.2em;
}
/* line 29, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal p span {
  font-size: 120.048%;
}
/* line 33, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal .imageteaser h2 span.basecontent-headline {
  font-size: 112.5%;
  line-height: 1.5em;
}
/* line 38, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal .imageteaser h3.teaserheadsmall span {
  line-height: 1.5em;
}
/* line 43, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal .ym-grid + .ym-grid, .view-themeportal .mm + .ym-grid, .view-themeportal .ym-grid + .mm, .view-themeportal .mm + .mm, .view-themeportal .mm + .ym-grid, .view-themeportal .mm + .mm, .view-themeportal .ym-grid + .mm, .view-themeportal .mm + .mm, .view-themeportal .mm + .mm {
  margin-top: 3em;
}
/* line 47, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal .textcntinner div[align='left'], .view-themeportal div[align='right'], .view-themeportal div[align='center'] {
  font-size: 120.048%;
}
/* line 51, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal .cta {
  font-size: 120.048%;
  line-height: 1.2em;
}
/* line 56, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal .teaser ul li {
  font-size: 120.048%;
  margin-bottom: 0.66666em;
}
/* line 62, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal .basecontent-list li, .view-themeportal .basecontent-numbered-list li {
  font-size: 120.048%;
}
/* line 66, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal .download-list li:before {
  top: 4px !important;
}
/* line 70, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal div.image table caption {
  font-size: 120.048%;
}
/* line 73, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal .link-box, .view-themeportal .cta-teaser {
  font-size: 120.048%;
}
/* line 77, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal .link-box {
  font-size: 100%;
}
/* line 81, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal .view-themeportal h2.teaserheadsmall span.basecontent-headline {
  font-size: 100%;
}
/* line 85, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal .teaser.download p {
  font-size: 107.1%;
}
/* line 89, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal .faq-container h3 span.basecontent-headline {
  font-size: 112.5%;
}
/* line 93, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal .view-themeportal h2.teaserheadsmall .basecontent-headline {
  font-size: 112.5%;
}
/* line 97, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal .textcntinner .list-element > h2, .view-themeportal .textcntinner .list-element h3, .view-themeportal .textcntinner .list-element h4 {
  font-size: 18px;
}
/* line 101, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal .teaser h2 span.basecontent-headline {
  font-size: 18px;
}
/* line 105, ../../sass/modules/basics/views/_themeportal.scss */
.view-themeportal .teaser .textcntinner h2 span.basecontent-headline {
  font-size: 28px;
}

/* Styles for View Themeportal END */
/* line 2, ../../sass/modules/_footer.scss */
.footer .headline {
  color: #e2001a;
}
/* line 5, ../../sass/modules/_footer.scss */
.footer p {
  margin-top: 1.5em;
  margin-bottom: 0;
}
/* line 9, ../../sass/modules/_footer.scss */
.footer ul.linklist {
  margin-bottom: 0;
}
/* line 12, ../../sass/modules/_footer.scss */
.footer ul.linklist li {
  margin-bottom: 10px;
}
/* line 14, ../../sass/modules/_footer.scss */
.footer ul.linklist li a {
  text-decoration: none;
}
/* line 16, ../../sass/modules/_footer.scss */
.footer ul.linklist li a:after {
  content: "\203a";
  display: inline-block;
  font-size: 20px;
  margin-left: 10px;
  position: relative;
  top: 1px;
  line-height: 1;
}
/* line 26, ../../sass/modules/_footer.scss */
.footer ul.linklist li:last-child {
  margin-bottom: 0;
}
/* line 31, ../../sass/modules/_footer.scss */
.footer .privacy {
  margin-top: 20px;
  padding-top: 25px;
  border-top: 1px solid #f6f4f1;
}
/* line 35, ../../sass/modules/_footer.scss */
.footer .privacy .ym-g25,
.footer .privacy .ym-g75 {
  margin-bottom: 0;
}
/* line 39, ../../sass/modules/_footer.scss */
.footer .privacy .olympic-logo {
  display: block;
  margin-left: -6px;
}
/* line 43, ../../sass/modules/_footer.scss */
.footer .privacy ul.privacy-list {
  text-align: right;
  margin-top: 10px;
  margin-bottom: 0;
}
/* line 48, ../../sass/modules/_footer.scss */
.footer .privacy ul.privacy-list li {
  display: inline-block;
  margin: 25px 0 0 30px;
}
/* line 51, ../../sass/modules/_footer.scss */
.footer .privacy ul.privacy-list li a {
  text-decoration: none;
}
@media only screen and (max-width: 880px) {
  /* line 58, ../../sass/modules/_footer.scss */
  .footer .ym-g33.ym-gl {
    padding-top: 0;
  }
  /* line 61, ../../sass/modules/_footer.scss */
  .footer .ym-g33.ym-gr {
    padding-top: 25px;
  }
  /* line 63, ../../sass/modules/_footer.scss */
  .footer .ym-g33.ym-gr:last-child {
    margin-bottom: 40px;
  }
  /* line 67, ../../sass/modules/_footer.scss */
  .footer .ym-g25 {
    width: 25%;
  }
  /* line 70, ../../sass/modules/_footer.scss */
  .footer .ym-g75 {
    width: 75%;
  }
  /* line 73, ../../sass/modules/_footer.scss */
  .footer .privacy {
    margin-top: 0;
  }
}
@media only screen and (max-width: 640px) {
  /* line 79, ../../sass/modules/_footer.scss */
  .footer .privacy .olympic-logo {
    margin: 5px auto 10px auto;
  }
  /* line 82, ../../sass/modules/_footer.scss */
  .footer .privacy ul.privacy-list {
    margin-top: 0;
    text-align: center;
  }
  /* line 85, ../../sass/modules/_footer.scss */
  .footer .privacy ul.privacy-list li {
    margin: 20px 15px 0 15px;
  }
  /* line 90, ../../sass/modules/_footer.scss */
  .footer .ym-g33.ym-gl {
    padding-top: 25px;
  }
  /* line 92, ../../sass/modules/_footer.scss */
  .footer .ym-g33.ym-gl:first-child {
    padding-top: 0;
  }
  /* line 96, ../../sass/modules/_footer.scss */
  .footer .ym-g25,
  .footer .ym-g75 {
    width: 100%;
  }
}

/* line 1, ../../sass/modules/_meta.scss */
.meta {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}
@media only screen and (max-width: 640px) {
  /* line 1, ../../sass/modules/_meta.scss */
  .meta {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 350px) {
  /* line 1, ../../sass/modules/_meta.scss */
  .meta {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* line 18, ../../sass/modules/_meta.scss */
.openthis {
  text-decoration: none !important;
  font-size: 30px;
  color: #e2001a;
  display: inline-block;
}
/* line 23, ../../sass/modules/_meta.scss */
.openthis:hover, .openthis:focus {
  color: #333;
}

/* line 27, ../../sass/modules/_meta.scss */
.meta-left {
  float: left;
  width: 50%;
  margin: 10px 0;
  position: relative;
}
@media only screen and (max-width: 880px) {
  /* line 27, ../../sass/modules/_meta.scss */
  .meta-left {
    margin-bottom: 0;
    width: 40%;
  }
}
@media only screen and (max-width: 640px) {
  /* line 27, ../../sass/modules/_meta.scss */
  .meta-left {
    width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  /* line 27, ../../sass/modules/_meta.scss */
  .meta-left {
    width: 60%;
  }
}
@media only screen and (max-width: 350px) {
  /* line 27, ../../sass/modules/_meta.scss */
  .meta-left {
    width: 55%;
  }
}
/* line 45, ../../sass/modules/_meta.scss */
.meta-left .logo, .meta-left .welt {
  text-decoration: none;
}
/* line 47, ../../sass/modules/_meta.scss */
.meta-left .logo:hover, .meta-left .logo.focus, .meta-left .welt:hover, .meta-left .welt.focus {
  opacity: 0.5;
}
@media only screen and (max-width: 880px) {
  /* line 45, ../../sass/modules/_meta.scss */
  .meta-left .logo, .meta-left .welt {
    float: none;
    display: block;
    margin: 0 0 10px 0;
  }
}
/* line 56, ../../sass/modules/_meta.scss */
.meta-left .welt {
  height: 60px;
  display: block;
  position: absolute;
  left: -73px;
}
@media only screen and (max-width: 880px) {
  /* line 56, ../../sass/modules/_meta.scss */
  .meta-left .welt {
    display: none;
  }
}
/* line 65, ../../sass/modules/_meta.scss */
.meta-left .logo {
  float: left;
  margin-left: 3px;
  margin-right: 30px;
}
@media only screen and (max-width: 880px) {
  /* line 65, ../../sass/modules/_meta.scss */
  .meta-left .logo {
    margin-right: 30px;
    margin-bottom: 9px;
  }
}
@media only screen and (max-width: 480px) {
  /* line 65, ../../sass/modules/_meta.scss */
  .meta-left .logo {
    margin-right: 0;
    margin-left: 0;
  }
}
@media only screen and (max-width: 420px) {
  /* line 78, ../../sass/modules/_meta.scss */
  .meta-left .logo img {
    width: 100%;
  }
}
@media only screen and (max-width: 350px) {
  /* line 83, ../../sass/modules/_meta.scss */
  .meta-left .logo img {
    margin-top: 6px;
  }
}

/* line 89, ../../sass/modules/_meta.scss */
.meta-right {
  float: right;
  width: 50%;
  padding-left: 10px;
  margin: 10px 0;
}
@media only screen and (max-width: 880px) {
  /* line 89, ../../sass/modules/_meta.scss */
  .meta-right {
    padding-left: 0;
    width: 60%;
  }
}
@media only screen and (max-width: 640px) {
  /* line 89, ../../sass/modules/_meta.scss */
  .meta-right {
    width: 50%;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 480px) {
  /* line 89, ../../sass/modules/_meta.scss */
  .meta-right {
    width: 40%;
  }
}
@media only screen and (max-width: 420px) {
  /* line 89, ../../sass/modules/_meta.scss */
  .meta-right {
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 350px) {
  /* line 89, ../../sass/modules/_meta.scss */
  .meta-right {
    width: 45%;
  }
}

/* line 113, ../../sass/modules/_meta.scss */
.ym-searchform {
  float: right;
  width: 278px;
  padding-right: 5px;
  position: relative;
}
@media only screen and (max-width: 880px) {
  /* line 113, ../../sass/modules/_meta.scss */
  .ym-searchform {
    width: 50%;
  }
}
@media only screen and (max-width: 700px) {
  /* line 113, ../../sass/modules/_meta.scss */
  .ym-searchform {
    width: 40%;
  }
}
@media only screen and (max-width: 640px) {
  /* line 113, ../../sass/modules/_meta.scss */
  .ym-searchform {
    width: 89.8%;
    padding-right: 0;
    margin-bottom: 10px;
    float: left;
  }
}
@media only screen and (max-width: 568px) {
  /* line 113, ../../sass/modules/_meta.scss */
  .ym-searchform {
    width: 88.5%;
  }
}
@media only screen and (max-width: 480px) {
  /* line 113, ../../sass/modules/_meta.scss */
  .ym-searchform {
    width: 86.4%;
  }
}
@media only screen and (max-width: 420px) {
  /* line 113, ../../sass/modules/_meta.scss */
  .ym-searchform {
    width: 84.3%;
  }
}
@media only screen and (max-width: 414px) {
  /* line 113, ../../sass/modules/_meta.scss */
  .ym-searchform {
    width: 84%;
  }
}
@media only screen and (max-width: 375px) {
  /* line 113, ../../sass/modules/_meta.scss */
  .ym-searchform {
    width: 82.3%;
  }
}
@media only screen and (max-width: 350px) {
  /* line 113, ../../sass/modules/_meta.scss */
  .ym-searchform {
    margin-bottom: 5px;
    width: 81.6%;
  }
}
@media only screen and (max-width: 320px) {
  /* line 113, ../../sass/modules/_meta.scss */
  .ym-searchform {
    width: 79.8%;
  }
}
/* line 152, ../../sass/modules/_meta.scss */
.ym-searchform input,
.ym-searchform select,
.ym-searchform textarea {
  font-family: "spar-regular", Arial, Helvetica, sans-serif;
}
/* line 157, ../../sass/modules/_meta.scss */
.ym-searchform input {
  width: 100%;
  background-color: #f6f4f1;
  border: none;
  color: #333;
  padding: 17px 35px 17px 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}

@media only screen and (max-width: 880px) {
  /* line 170, ../../sass/modules/_meta.scss */
  .landingpage .meta-right .ym-searchform {
    margin-top: 5px;
    padding-right: 0;
  }
}
/* line 178, ../../sass/modules/_meta.scss */
.landingpage .ym-searchform {
  padding-right: 0;
}
@media only screen and (max-width: 880px) {
  /* line 178, ../../sass/modules/_meta.scss */
  .landingpage .ym-searchform {
    width: 100% !important;
  }
}

/* line 185, ../../sass/modules/_meta.scss */
.lupe {
  border: none;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 21px;
  height: 21px;
  background: no-repeat center center;
  background-image: url('../images/icons/search_grey.png');
  cursor: pointer;
}
/* line 195, ../../sass/modules/_meta.scss */
.lupe:active {
  top: 16px;
  right: 9px;
}

/* line 202, ../../sass/modules/_meta.scss */
.int-site-container {
  float: right;
  position: relative;
}
/* line 205, ../../sass/modules/_meta.scss */
.int-site-container .int-site-list {
  display: none;
  position: absolute;
  top: 55px;
  right: -10px;
  z-index: 30;
  width: 350px;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
}
/* line 213, ../../sass/modules/_meta.scss */
.int-site-container .int-site-list:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #e2001a transparent;
  top: -10px;
  right: 34px;
}
/* line 224, ../../sass/modules/_meta.scss */
.int-site-container .int-site-list header {
  padding: 20px;
  background-color: #fff;
}
/* line 227, ../../sass/modules/_meta.scss */
.int-site-container .int-site-list header h4 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}
/* line 233, ../../sass/modules/_meta.scss */
.int-site-container .int-site-list ul {
  padding: 20px;
  background-color: #f6f4f1;
  margin-bottom: 0;
  list-style: none;
}
/* line 238, ../../sass/modules/_meta.scss */
.int-site-container .int-site-list ul .ym-g50 {
  margin-bottom: 0;
}
/* line 241, ../../sass/modules/_meta.scss */
.int-site-container .int-site-list ul li {
  margin-left: 0;
}
/* line 243, ../../sass/modules/_meta.scss */
.int-site-container .int-site-list ul li a {
  text-decoration: none;
}
@media only screen and (max-width: 880px) {
  /* line 205, ../../sass/modules/_meta.scss */
  .int-site-container .int-site-list {
    display: none !important;
  }
}

/* line 255, ../../sass/modules/_meta.scss */
.logincnt {
  float: right;
  position: relative;
}

/* line 261, ../../sass/modules/_meta.scss */
.login,
.logout {
  display: inline-block;
  line-height: 40px;
  text-decoration: none;
  text-align: center;
  background-color: #e2001a;
  color: #fff;
  padding: 5px;
  width: 60px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
/* line 272, ../../sass/modules/_meta.scss */
.login:hover, .login:focus,
.logout:hover,
.logout:focus {
  background-color: #960011;
  color: #fff;
}

/* line 279, ../../sass/modules/_meta.scss */
.loginform {
  display: none;
  position: absolute;
  top: 65px;
  right: 50px;
  z-index: 20;
  max-width: 1180px;
  width: 98%;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
}
/* line 288, ../../sass/modules/_meta.scss */
.loginform:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #e2001a transparent;
  top: -10px;
  right: 96px;
}
/* line 299, ../../sass/modules/_meta.scss */
.loginform .ym-grid, .loginform .mm {
  padding: 20px;
  background-color: #f6f4f1;
}
/* line 302, ../../sass/modules/_meta.scss */
.loginform .ym-grid .flyout-column, .loginform .mm .flyout-column {
  margin: 0;
  border-left: 1px solid #ddd8d3;
}
/* line 305, ../../sass/modules/_meta.scss */
.loginform .ym-grid .flyout-column:first-child, .loginform .mm .flyout-column:first-child {
  padding-right: 20px;
  border-left: none;
}
/* line 309, ../../sass/modules/_meta.scss */
.loginform .ym-grid .flyout-column:first-child + .flyout-column, .loginform .mm .flyout-column:first-child + .flyout-column {
  padding-left: 20px;
  padding-right: 20px;
}
/* line 313, ../../sass/modules/_meta.scss */
.loginform .ym-grid .flyout-column.ym-gr, .loginform .mm .flyout-column.ym-gr {
  padding-left: 20px;
}
/* line 316, ../../sass/modules/_meta.scss */
.loginform .ym-grid .flyout-column header, .loginform .mm .flyout-column header {
  padding: 0;
  margin-bottom: 20px;
  background-color: transparent;
}
/* line 321, ../../sass/modules/_meta.scss */
.loginform .ym-grid .flyout-column .ym-g33, .loginform .mm .flyout-column .ym-g33, .loginform .ym-grid .flyout-column .ym-g66, .loginform .mm .flyout-column .ym-g66 {
  margin: 0;
}
/* line 326, ../../sass/modules/_meta.scss */
.loginform header {
  padding: 20px;
  background-color: #fff;
}
/* line 330, ../../sass/modules/_meta.scss */
.loginform h4 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}
/* line 335, ../../sass/modules/_meta.scss */
.loginform h5 {
  color: #e2001a;
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
}
/* line 341, ../../sass/modules/_meta.scss */
.loginform ul {
  margin-bottom: 0;
  list-style: none;
}
/* line 344, ../../sass/modules/_meta.scss */
.loginform ul li {
  margin-left: 0;
  margin-bottom: 15px;
}
/* line 347, ../../sass/modules/_meta.scss */
.loginform ul li a {
  text-decoration: none;
  -ms-word-break: break-all;
  word-break: break-all;
  /* Non standard for webkit */
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
/* line 359, ../../sass/modules/_meta.scss */
.loginform ul li a:after {
  content: "\203a";
  margin-left: 10px;
  font-size: 20px;
  line-height: 1;
  position: relative;
  top: 1px;
}
/* line 369, ../../sass/modules/_meta.scss */
.loginform ul li span.time-period {
  position: relative;
  display: block;
  padding-top: 10px;
  color: #444;
}
/* line 379, ../../sass/modules/_meta.scss */
.loginform form div {
  margin-bottom: 10px;
}
/* line 382, ../../sass/modules/_meta.scss */
.loginform form label {
  display: block;
}
/* line 385, ../../sass/modules/_meta.scss */
.loginform form input,
.loginform form select,
.loginform form textarea {
  font-family: "spar-regular", Arial, Helvetica, sans-serif;
}
/* line 390, ../../sass/modules/_meta.scss */
.loginform form input {
  border: 1px solid #ddd8d3;
  padding: 10px;
  width: 100%;
}
/* line 395, ../../sass/modules/_meta.scss */
.loginform form button {
  display: block;
  padding: 10px;
  background-color: #e2001a;
  border: 1px solid #e2001a;
  color: #fff;
  width: 100%;
  cursor: pointer;
  text-align: left;
}
/* line 404, ../../sass/modules/_meta.scss */
.loginform form button:after {
  content: "\00BB";
  float: right;
  margin-right: 10px;
  position: relative;
  top: -1px;
}
/* line 411, ../../sass/modules/_meta.scss */
.loginform form button:hover, .loginform form button:focus {
  background-color: #fff;
  color: #e2001a;
}
/* line 415, ../../sass/modules/_meta.scss */
.loginform form button:active {
  position: relative;
  top: 1px;
  left: 1px;
}
/* line 421, ../../sass/modules/_meta.scss */
.loginform form .input-cnt {
  margin: 0;
  min-height: 60px;
}
/* line 425, ../../sass/modules/_meta.scss */
.loginform form .error {
  display: none;
  background-color: transparent;
  color: #e2001a;
  font-size: 11px;
  margin: 5px 0;
}
/* line 433, ../../sass/modules/_meta.scss */
.loginform .forgot-password {
  margin-top: 20px;
}
/* line 435, ../../sass/modules/_meta.scss */
.loginform .forgot-password a {
  text-decoration: none;
}
/* line 437, ../../sass/modules/_meta.scss */
.loginform .forgot-password a:hover, .loginform .forgot-password a:focus {
  text-decoration: underline;
}
/* line 443, ../../sass/modules/_meta.scss */
.loginform .login-head a {
  color: #444;
  text-decoration: none;
}
/* line 446, ../../sass/modules/_meta.scss */
.loginform .login-head a:hover, .loginform .login-head a:focus {
  color: #e2001a;
}
/* line 450, ../../sass/modules/_meta.scss */
.loginform .login-head.active a {
  color: #e2001a;
}
/* line 454, ../../sass/modules/_meta.scss */
.loginform .login-form {
  display: none;
}
/* line 456, ../../sass/modules/_meta.scss */
.loginform .login-form:first-child {
  display: block;
}
@media only screen and (max-width: 1200px) {
  /* line 279, ../../sass/modules/_meta.scss */
  .loginform {
    right: 10px;
  }
}
@media only screen and (max-width: 880px) {
  /* line 464, ../../sass/modules/_meta.scss */
  .loginform:after {
    right: 156px;
  }
  /* line 468, ../../sass/modules/_meta.scss */
  .loginform .ym-grid .flyout-column, .loginform .mm .flyout-column {
    border-left: none;
  }
  /* line 470, ../../sass/modules/_meta.scss */
  .loginform .ym-grid .flyout-column:first-child, .loginform .mm .flyout-column:first-child {
    padding-right: 0;
  }
  /* line 473, ../../sass/modules/_meta.scss */
  .loginform .ym-grid .flyout-column:first-child + .flyout-column, .loginform .mm .flyout-column:first-child + .flyout-column {
    border-left: none;
    padding-left: 0;
    border-bottom: none;
    width: 50%;
  }
  /* line 479, ../../sass/modules/_meta.scss */
  .loginform .ym-grid .flyout-column:first-child + .flyout-column ul:last-child, .loginform .mm .flyout-column:first-child + .flyout-column ul:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  /* line 487, ../../sass/modules/_meta.scss */
  .loginform .ym-grid .flyout-column:last-child ul:last-child, .loginform .mm .flyout-column:last-child ul:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-top: 0;
  }
  /* line 494, ../../sass/modules/_meta.scss */
  .loginform .ym-grid .flyout-column.ym-g50, .loginform .mm .flyout-column.ym-g50 {
    width: 100%;
    margin-bottom: 30px;
  }
  /* line 497, ../../sass/modules/_meta.scss */
  .loginform .ym-grid .flyout-column.ym-g50 .ym-g33, .loginform .mm .flyout-column.ym-g50 .ym-g33 {
    padding-right: 20px;
  }
  /* line 500, ../../sass/modules/_meta.scss */
  .loginform .ym-grid .flyout-column.ym-g50 .ym-g66, .loginform .mm .flyout-column.ym-g50 .ym-g66 {
    width: 50%;
  }
  /* line 504, ../../sass/modules/_meta.scss */
  .loginform .ym-grid .flyout-column.ym-g25:nth-child(3), .loginform .mm .flyout-column.ym-g25:nth-child(3) {
    clear: none;
  }
  /* line 507, ../../sass/modules/_meta.scss */
  .loginform .ym-grid .flyout-column.ym-gr, .loginform .mm .flyout-column.ym-gr {
    padding-left: 0;
  }
  /* line 513, ../../sass/modules/_meta.scss */
  .loginform ul:last-child {
    margin-top: 0;
    border-top: none;
  }
  /* line 518, ../../sass/modules/_meta.scss */
  .loginform .forgot-password {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 640px) {
  /* line 279, ../../sass/modules/_meta.scss */
  .loginform {
    width: auto;
    right: 0;
    margin: 0 5px;
  }
  /* line 526, ../../sass/modules/_meta.scss */
  .loginform:after {
    right: 91px;
  }
  /* line 530, ../../sass/modules/_meta.scss */
  .loginform .ym-grid .flyout-column, .loginform .mm .flyout-column {
    width: 100% !important;
  }
  /* line 532, ../../sass/modules/_meta.scss */
  .loginform .ym-grid .flyout-column.ym-gr, .loginform .mm .flyout-column.ym-gr, .loginform .ym-grid .flyout-column:first-child, .loginform .mm .flyout-column:first-child, .loginform .ym-grid .flyout-column:first-child + .flyout-column, .loginform .mm .flyout-column:first-child + .flyout-column, .loginform .ym-grid .flyout-column:first-child + .flyout-column + .flyout-column, .loginform .mm .flyout-column:first-child + .flyout-column + .flyout-column {
    padding: 0;
  }
  /* line 537, ../../sass/modules/_meta.scss */
  .loginform .ym-grid .flyout-column.ym-gr ul, .loginform .mm .flyout-column.ym-gr ul, .loginform .ym-grid .flyout-column:first-child ul, .loginform .mm .flyout-column:first-child ul, .loginform .ym-grid .flyout-column:first-child + .flyout-column ul, .loginform .mm .flyout-column:first-child + .flyout-column ul, .loginform .ym-grid .flyout-column:first-child + .flyout-column + .flyout-column ul, .loginform .mm .flyout-column:first-child + .flyout-column + .flyout-column ul {
    margin-bottom: 30px;
  }
  /* line 539, ../../sass/modules/_meta.scss */
  .loginform .ym-grid .flyout-column.ym-gr ul:last-child, .loginform .mm .flyout-column.ym-gr ul:last-child, .loginform .ym-grid .flyout-column:first-child ul:last-child, .loginform .mm .flyout-column:first-child ul:last-child, .loginform .ym-grid .flyout-column:first-child + .flyout-column ul:last-child, .loginform .mm .flyout-column:first-child + .flyout-column ul:last-child, .loginform .ym-grid .flyout-column:first-child + .flyout-column + .flyout-column ul:last-child, .loginform .mm .flyout-column:first-child + .flyout-column + .flyout-column ul:last-child {
    margin-bottom: 30px;
  }
  /* line 546, ../../sass/modules/_meta.scss */
  .loginform .ym-grid .flyout-column:last-child ul:last-child, .loginform .mm .flyout-column:last-child ul:last-child {
    margin-bottom: 0;
  }
  /* line 552, ../../sass/modules/_meta.scss */
  .loginform .ym-grid .flyout-column.ym-g50 .ym-g33, .loginform .mm .flyout-column.ym-g50 .ym-g33 {
    margin-bottom: 20px;
    padding-right: 0;
  }
  /* line 559, ../../sass/modules/_meta.scss */
  .loginform .forgot-password {
    text-align: right;
    margin-bottom: 20px;
  }
}

/* line 567, ../../sass/modules/_meta.scss */
.contact-flyout {
  display: none;
  position: absolute;
  top: 65px;
  right: 50px;
  z-index: 20;
  width: 98%;
  max-width: 1180px;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
}
/* line 576, ../../sass/modules/_meta.scss */
.contact-flyout:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #e2001a transparent;
  top: -10px;
  right: 34px;
}
/* line 587, ../../sass/modules/_meta.scss */
.contact-flyout .ym-grid, .contact-flyout .mm {
  padding: 20px;
  background-color: #f6f4f1;
}
/* line 590, ../../sass/modules/_meta.scss */
.contact-flyout .ym-grid .flyout-column, .contact-flyout .mm .flyout-column {
  margin: 0;
  border-left: 1px solid #ddd8d3;
}
/* line 593, ../../sass/modules/_meta.scss */
.contact-flyout .ym-grid .flyout-column:first-child, .contact-flyout .mm .flyout-column:first-child {
  padding-right: 30px;
  border-left: none;
}
/* line 597, ../../sass/modules/_meta.scss */
.contact-flyout .ym-grid .flyout-column:first-child + .flyout-column, .contact-flyout .mm .flyout-column:first-child + .flyout-column {
  padding-left: 30px;
  padding-right: 30px;
}
/* line 601, ../../sass/modules/_meta.scss */
.contact-flyout .ym-grid .flyout-column.ym-gr, .contact-flyout .mm .flyout-column.ym-gr {
  padding-left: 30px;
}
/* line 604, ../../sass/modules/_meta.scss */
.contact-flyout .ym-grid .flyout-column header, .contact-flyout .mm .flyout-column header {
  padding: 0;
  margin-bottom: 20px;
  background-color: transparent;
}
/* line 611, ../../sass/modules/_meta.scss */
.contact-flyout h4 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}
/* line 616, ../../sass/modules/_meta.scss */
.contact-flyout h5 {
  color: #e2001a;
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
}
/* line 622, ../../sass/modules/_meta.scss */
.contact-flyout header {
  padding: 20px;
  background-color: #fff;
}
/* line 626, ../../sass/modules/_meta.scss */
.contact-flyout footer {
  padding-bottom: 20px;
  padding-right: 20px;
  text-align: center;
  background-color: #f6f4f1;
}
/* line 631, ../../sass/modules/_meta.scss */
.contact-flyout footer h4 {
  color: #e2001a;
}
/* line 635, ../../sass/modules/_meta.scss */
.contact-flyout ul {
  margin-bottom: 0;
  list-style: none;
}
/* line 638, ../../sass/modules/_meta.scss */
.contact-flyout ul.linklist {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #ddd8d3;
}
/* line 643, ../../sass/modules/_meta.scss */
.contact-flyout ul li {
  margin-left: 0;
  margin-bottom: 15px;
}
/* line 646, ../../sass/modules/_meta.scss */
.contact-flyout ul li a {
  text-decoration: none;
}
/* line 648, ../../sass/modules/_meta.scss */
.contact-flyout ul li a:after {
  content: "\203a";
  margin-left: 10px;
  font-size: 20px;
  line-height: 1;
  position: relative;
  top: 1px;
}
/* line 658, ../../sass/modules/_meta.scss */
.contact-flyout ul li span.time-period {
  position: relative;
  display: block;
  padding-top: 10px;
  color: #444;
}
/* line 668, ../../sass/modules/_meta.scss */
.contact-flyout .telefon:before, .contact-flyout .fax:before, .contact-flyout .email:before {
  content: "";
  width: 21px;
  height: 21px;
  float: left;
  margin-right: 10px;
  background-repeat: no-repeat;
}
/* line 677, ../../sass/modules/_meta.scss */
.contact-flyout .telefon {
  position: relative;
  padding-left: 30px;
}
/* line 680, ../../sass/modules/_meta.scss */
.contact-flyout .telefon:before {
  background-image: url('../images/icons/phone_red.png');
  position: absolute;
  left: 0;
}
/* line 686, ../../sass/modules/_meta.scss */
.contact-flyout .fax {
  position: relative;
  padding-left: 30px;
}
/* line 689, ../../sass/modules/_meta.scss */
.contact-flyout .fax:before {
  background-image: url('../images/icons/printer_red.png');
  position: absolute;
  left: 0;
}
/* line 695, ../../sass/modules/_meta.scss */
.contact-flyout .email {
  position: relative;
  padding-left: 30px;
}
/* line 698, ../../sass/modules/_meta.scss */
.contact-flyout .email:before {
  height: 15px;
  background-image: url('../images/icons/mail_red.png');
  position: absolute;
  left: 0;
  top: 2px;
}
/* line 706, ../../sass/modules/_meta.scss */
.contact-flyout .email a:after {
  content: none;
  margin-left: 0;
}
/* line 712, ../../sass/modules/_meta.scss */
.contact-flyout .contactname {
  color: #e2001a;
  margin-bottom: 0;
}
/* line 715, ../../sass/modules/_meta.scss */
.contact-flyout .contactname:before {
  display: none;
}
@media only screen and (max-width: 1200px) {
  /* line 567, ../../sass/modules/_meta.scss */
  .contact-flyout {
    right: 10px;
  }
}
@media only screen and (max-width: 880px) {
  /* line 721, ../../sass/modules/_meta.scss */
  .contact-flyout:after {
    right: 94px;
  }
  /* line 724, ../../sass/modules/_meta.scss */
  .contact-flyout ul li span {
    display: block;
    padding-bottom: 10px;
  }
  /* line 727, ../../sass/modules/_meta.scss */
  .contact-flyout ul li span.time-period {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 640px) {
  /* line 567, ../../sass/modules/_meta.scss */
  .contact-flyout {
    width: auto;
    right: 0;
    margin: 0 5px;
  }
  /* line 736, ../../sass/modules/_meta.scss */
  .contact-flyout:after {
    right: 28px;
  }
  /* line 740, ../../sass/modules/_meta.scss */
  .contact-flyout .ym-grid .flyout-column, .contact-flyout .mm .flyout-column {
    border-left: none;
  }
  /* line 742, ../../sass/modules/_meta.scss */
  .contact-flyout .ym-grid .flyout-column:first-child, .contact-flyout .mm .flyout-column:first-child {
    padding: 0;
  }
  /* line 745, ../../sass/modules/_meta.scss */
  .contact-flyout .ym-grid .flyout-column:first-child + .flyout-column, .contact-flyout .mm .flyout-column:first-child + .flyout-column {
    padding: 0;
  }
  /* line 748, ../../sass/modules/_meta.scss */
  .contact-flyout .ym-grid .flyout-column.ym-gr, .contact-flyout .mm .flyout-column.ym-gr {
    padding: 0;
  }
  /* line 753, ../../sass/modules/_meta.scss */
  .contact-flyout .ym-grid .flyout-column:last-child ul:last-child, .contact-flyout .mm .flyout-column:last-child ul:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  /* line 762, ../../sass/modules/_meta.scss */
  .contact-flyout ul:last-child {
    margin-top: 0;
    margin-bottom: 25px;
    padding-top: 20px;
    padding-bottom: 10px;
    border-top: none;
    border-bottom: 1px solid #ddd8d3;
  }
}

@media only screen and (max-width: 880px) {
  /* line 776, ../../sass/modules/_meta.scss */
  .landingpage .contact-flyout:after {
    right: 28px;
  }
}

/* line 784, ../../sass/modules/_meta.scss */
.switchcnt {
  float: right;
  position: relative;
  padding-left: 5px;
}

/* line 790, ../../sass/modules/_meta.scss */
.switch {
  position: absolute;
  display: block;
  height: 23px;
  width: 27px;
  color: #fff;
  background-color: #a3988e;
  padding: 4px 8px;
  font-size: 10px;
  text-decoration: none;
  right: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
/* line 802, ../../sass/modules/_meta.scss */
.switch:first-child {
  margin-right: 4px;
  right: auto;
}
/* line 806, ../../sass/modules/_meta.scss */
.switch.active {
  background-color: #333;
}
/* line 809, ../../sass/modules/_meta.scss */
.switch:hover, .switch:focus {
  color: #fff;
  background-color: #8c7e72;
}

/* line 815, ../../sass/modules/_meta.scss */
.kontaktlink {
  display: block;
  padding: 4px;
  background-color: #e2001a;
  color: #fff;
  text-decoration: none;
  margin-top: 27px;
  width: 58px;
  font-size: 12px;
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
/* line 826, ../../sass/modules/_meta.scss */
.kontaktlink:hover, .kontaktlink:focus {
  background-color: #960011;
  color: #fff;
}

/* line 1, ../../sass/modules/_errors.scss */
#errorDiv {
  display: none;
}

/* line 1, ../../sass/modules/_cta.scss */
.cta {
  display: block;
  padding: 10px 30px 10px 10px;
  background-color: #e2001a;
  border: 1px solid #e2001a;
  color: #fff;
  float: right;
  margin-bottom: 20px;
  width: auto;
  min-width: 150px;
  text-align: left;
  position: relative;
  text-decoration: none;
}
/* line 14, ../../sass/modules/_cta.scss */
.cta:after {
  content: "\00BB";
  float: right;
  right: 13px;
  top: 10px;
  position: absolute;
}
/* line 21, ../../sass/modules/_cta.scss */
.cta:hover, .cta:focus {
  background-color: #fff;
  color: #e2001a;
}
/* line 25, ../../sass/modules/_cta.scss */
.cta:active {
  position: relative;
  top: 1px;
  left: 1px;
}

/* line 34, ../../sass/modules/_cta.scss */
.ym-g25 .cta,
.marginColumn .cta {
  width: 100%;
  min-width: 0;
  margin-top: 20px;
}

/* line 1, ../../sass/modules/hero/_hero.scss */
.hero {
  position: relative;
  z-index: 1;
  margin: 0 0 -2px 0;
}

/* line 7, ../../sass/modules/hero/_hero.scss */
.hugeimage {
  width: 100%;
  height: auto;
  max-width: 100%;
  position: relative;
  z-index: 1;
  display: block !important;
}

/* line 16, ../../sass/modules/hero/_hero.scss */
.hero > .hero-overlay {
  z-index: 200;
}

/* line 19, ../../sass/modules/hero/_hero.scss */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  /* line 19, ../../sass/modules/hero/_hero.scss */
  .hero-overlay {
    position: relative;
    width: auto;
    height: auto;
    background-color: #fff;
  }
}
/* line 33, ../../sass/modules/hero/_hero.scss */
.hero-overlay .ym-wbox {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 20;
}
@media only screen and (max-width: 780px) {
  /* line 33, ../../sass/modules/hero/_hero.scss */
  .hero-overlay .ym-wbox {
    padding: 0;
  }
}

/* line 55, ../../sass/modules/hero/_hero.scss */
.buehne-overlay {
  overflow: hidden;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}
/* line 61, ../../sass/modules/hero/_hero.scss */
.buehne-overlay .ym-wbox {
  padding-bottom: 0;
}
@media only screen and (max-width: 640px) {
  /* line 55, ../../sass/modules/hero/_hero.scss */
  .buehne-overlay {
    position: static;
  }
  /* line 64, ../../sass/modules/hero/_hero.scss */
  .buehne-overlay .ym-wbox {
    padding: 0 20px 20px 20px;
  }
}

/* line 68, ../../sass/modules/hero/_hero.scss */
.videocnt + .buehne-overlay {
  display: none;
}
@media only screen and (max-width: 640px) {
  /* line 68, ../../sass/modules/hero/_hero.scss */
  .videocnt + .buehne-overlay {
    display: block;
  }
}

/* line 75, ../../sass/modules/hero/_hero.scss */
.brand-headline {
  position: relative;
  margin: 0 0 0 25%;
  padding: 43px 14px 0 10px;
  display: block;
  overflow: hidden;
}
/* line 81, ../../sass/modules/hero/_hero.scss */
.brand-headline h1 {
  position: relative;
  left: -40px;
  margin: 0 50px 0 0;
  background-color: #e2001a;
  background-color: rgba(226, 0, 26, 0.6);
  color: #fff;
  font-size: 30px;
  line-height: 34px;
  letter-spacing: 0.2px;
  word-spacing: 1px;
  padding: 20px 0 20px 80px;
  z-index: 5;
  -webkit-transform: skewX(-18deg);
  -moz-transform: skewX(-18deg);
  -ms-transform: skewX(-18deg);
  -o-transform: skewX(-18deg);
  transform: skewX(-18deg);
}
/* line 94, ../../sass/modules/hero/_hero.scss */
.brand-headline h1 span {
  display: inline-block;
  padding-right: 100px;
  -webkit-transform: skewX(18deg);
  -moz-transform: skewX(18deg);
  -ms-transform: skewX(18deg);
  -o-transform: skewX(18deg);
  transform: skewX(18deg);
}
/* line 100, ../../sass/modules/hero/_hero.scss */
.brand-headline .bg-skew {
  display: inline-block;
  text-align: right;
  height: 65%;
  background-color: #e2dbcf;
  width: 220px;
  position: absolute;
  top: 15%;
  right: -20px;
  z-index: 1;
  -webkit-transform: skewX(-18deg);
  -moz-transform: skewX(-18deg);
  -ms-transform: skewX(-18deg);
  -o-transform: skewX(-18deg);
  transform: skewX(-18deg);
}
@media only screen and (max-width: 879px) {
  /* line 75, ../../sass/modules/hero/_hero.scss */
  .brand-headline {
    margin-left: 0;
  }
  /* line 114, ../../sass/modules/hero/_hero.scss */
  .brand-headline h1 {
    font-size: 24px;
    line-height: 24px;
  }
  /* line 118, ../../sass/modules/hero/_hero.scss */
  .brand-headline .bg-skew {
    height: 60%;
    top: 22%;
  }
}

@media only screen and (max-width: 880px) {
  /* line 127, ../../sass/modules/hero/_hero.scss */
  .hero .buehne-overlay > .ym-wbox,
  .hero .ym-wbox-2 {
    padding: 0;
  }
}
@media only screen and (max-width: 640px) {
  /* line 133, ../../sass/modules/hero/_hero.scss */
  .hero .buehne-overlay {
    background-color: #f6f4f1;
  }
  /* line 135, ../../sass/modules/hero/_hero.scss */
  .hero .buehne-overlay .brand-headline {
    padding: 14px 14px 0 10px;
  }
  /* line 137, ../../sass/modules/hero/_hero.scss */
  .hero .buehne-overlay .brand-headline .bg-skew {
    top: 0;
    height: 70%;
    right: -60px;
  }
  /* line 142, ../../sass/modules/hero/_hero.scss */
  .hero .buehne-overlay .brand-headline h1 {
    padding: 15px 0 15px 50px;
    font-size: 21px;
  }
  /* line 145, ../../sass/modules/hero/_hero.scss */
  .hero .buehne-overlay .brand-headline h1 span {
    padding-right: 65px;
  }
}
@media only screen and (max-width: 500px) {
  /* line 154, ../../sass/modules/hero/_hero.scss */
  .hero .brand-headline .bg-skew {
    right: -80px;
  }
  /* line 157, ../../sass/modules/hero/_hero.scss */
  .hero .brand-headline h1 {
    font-size: 18px;
  }
  /* line 159, ../../sass/modules/hero/_hero.scss */
  .hero .brand-headline h1 span {
    padding-right: 50px;
  }
}

/* line 1, ../../sass/modules/hero/_heroteaser.scss */
.heroteaser {
  position: absolute;
  z-index: 10;
  right: 140px;
  top: 16%;
  width: 500px;
  padding: 0;
  background-color: #fff;
  overflow: hidden;
}
/* line 10, ../../sass/modules/hero/_heroteaser.scss */
.heroteaser p {
  margin: 10px 0 10px 25px;
}
/* line 13, ../../sass/modules/hero/_heroteaser.scss */
.heroteaser .weiterlesen {
  text-decoration: none;
  color: #e2001a;
  display: block;
  text-align: right;
}
/* line 18, ../../sass/modules/hero/_heroteaser.scss */
.heroteaser .weiterlesen:after {
  content: "\00BB";
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  height: 25px;
  padding: 0 3px;
  background-color: #e2001a;
  color: #fff;
  border: 1px solid #e2001a;
  margin-left: 20px;
}
/* line 31, ../../sass/modules/hero/_heroteaser.scss */
.heroteaser .weiterlesen:hover:after, .heroteaser .weiterlesen:focus:after {
  color: #e2001a;
  background-color: #fff;
}
/* line 36, ../../sass/modules/hero/_heroteaser.scss */
.heroteaser .weiterlesen + .claim {
  margin: 0 0 0 25px;
}
/* line 40, ../../sass/modules/hero/_heroteaser.scss */
.heroteaser .claim {
  color: #e2001a;
  margin: 15px 0 0 25px;
  font-size: 18px;
}
@media only screen and (max-width: 1400px) {
  /* line 1, ../../sass/modules/hero/_heroteaser.scss */
  .heroteaser {
    right: 60px;
    top: 20%;
  }
}
@media only screen and (max-width: 1200px) {
  /* line 1, ../../sass/modules/hero/_heroteaser.scss */
  .heroteaser {
    right: 20px;
  }
}
@media only screen and (max-width: 880px) {
  /* line 1, ../../sass/modules/hero/_heroteaser.scss */
  .heroteaser {
    top: 5%;
  }
}
@media only screen and (max-width: 780px) {
  /* line 1, ../../sass/modules/hero/_heroteaser.scss */
  .heroteaser {
    position: relative;
    top: 0;
    width: auto;
    right: auto !important;
  }
  /* line 60, ../../sass/modules/hero/_heroteaser.scss */
  .heroteaser p {
    margin: 20px 25px;
  }
  /* line 63, ../../sass/modules/hero/_heroteaser.scss */
  .heroteaser .weiterlesen {
    margin-right: 25px;
  }
}

/* line 68, ../../sass/modules/hero/_heroteaser.scss */
.heroheadlinewrapper {
  background: transparent url('../images/bg-panel.png?1514982395') no-repeat scroll right 20px;
  height: 140px;
  padding: 20px 36% 10px 25px;
  display: table;
  width: 100%;
}
/* line 74, ../../sass/modules/hero/_heroteaser.scss */
.heroheadlinewrapper .heroheadline {
  color: #fff;
  display: table-cell;
  font-size: 21px;
  padding-top: 20px;
  vertical-align: middle;
  line-height: 1;
}
@media only screen and (max-width: 780px) {
  /* line 68, ../../sass/modules/hero/_heroteaser.scss */
  .heroheadlinewrapper {
    background-position: right 10px;
    height: 130px;
  }
}

/* line 88, ../../sass/modules/hero/_heroteaser.scss */
.no-content .heroheadlinewrapper {
  margin-bottom: 20px;
}
@media only screen and (max-width: 780px) {
  /* line 88, ../../sass/modules/hero/_heroteaser.scss */
  .no-content .heroheadlinewrapper {
    margin-bottom: 45px;
  }
}

/* line 96, ../../sass/modules/hero/_heroteaser.scss */
.subheroheadline .heroheadlinewrapper {
  width: 75%;
  margin-left: 25%;
  padding: 20px 18% 10px 30px;
}
@media only screen and (max-width: 1200px) {
  /* line 96, ../../sass/modules/hero/_heroteaser.scss */
  .subheroheadline .heroheadlinewrapper {
    padding-right: 22%;
  }
}
@media only screen and (max-width: 880px) {
  /* line 96, ../../sass/modules/hero/_heroteaser.scss */
  .subheroheadline .heroheadlinewrapper {
    padding-right: 24%;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 780px) {
  /* line 96, ../../sass/modules/hero/_heroteaser.scss */
  .subheroheadline .heroheadlinewrapper {
    padding-right: 30%;
  }
  /* line 109, ../../sass/modules/hero/_heroteaser.scss */
  .subheroheadline .heroheadlinewrapper .heroheadline {
    padding-top: 10px;
  }
}
@media only screen and (max-width: 640px) {
  /* line 96, ../../sass/modules/hero/_heroteaser.scss */
  .subheroheadline .heroheadlinewrapper {
    padding-right: 40%;
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 480px) {
  /* line 96, ../../sass/modules/hero/_heroteaser.scss */
  .subheroheadline .heroheadlinewrapper {
    padding-right: 47%;
  }
  /* line 120, ../../sass/modules/hero/_heroteaser.scss */
  .subheroheadline .heroheadlinewrapper .heroheadline {
    font-size: 18px;
  }
}
@media only screen and (max-width: 400px) {
  /* line 96, ../../sass/modules/hero/_heroteaser.scss */
  .subheroheadline .heroheadlinewrapper {
    padding-right: 55%;
  }
}
/* line 128, ../../sass/modules/hero/_heroteaser.scss */
.subheroheadline h1 {
  line-height: 1.25;
}

/* line 130, ../../sass/modules/hero/_heroteaser.scss */
.contentwrapper {
  width: 80%;
  margin: 0;
  padding: 0 0 20px 0;
  overflow: hidden;
}
@media only screen and (max-width: 780px) {
  /* line 130, ../../sass/modules/hero/_heroteaser.scss */
  .contentwrapper {
    padding-bottom: 50px;
    width: 100%;
  }
}

/* line 3, ../../sass/modules/hero/_heroteasercontrolcnt.scss */
.teasercontrolcnt {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  overflow: hidden;
}

/* line 12, ../../sass/modules/hero/_heroteasercontrolcnt.scss */
.teasercontrol, .teasercontrol li {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}
/* line 17, ../../sass/modules/hero/_heroteasercontrolcnt.scss */
.teasercontrol li {
  height: 100px;
}
/* line 20, ../../sass/modules/hero/_heroteasercontrolcnt.scss */
.teasercontrol a {
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  padding: 10px 20px;
  text-decoration: none;
  line-height: 1.5;
  font-size: 18px;
  color: #333;
}
/* line 32, ../../sass/modules/hero/_heroteasercontrolcnt.scss */
.teasercontrol a.active, .teasercontrol a.active:hover, .teasercontrol a.active:focus, .teasercontrol a.active:active {
  background-color: rgba(255, 255, 255, 0.85);
}
/* line 34, ../../sass/modules/hero/_heroteasercontrolcnt.scss */
.teasercontrol a.active:before, .teasercontrol a.active:hover:before, .teasercontrol a.active:focus:before, .teasercontrol a.active:active:before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: #e2001a;
}
/* line 46, ../../sass/modules/hero/_heroteasercontrolcnt.scss */
.teasercontrol a:hover, .teasercontrol a:focus {
  background-color: rgba(255, 255, 255, 0.75);
}

/* line 1, ../../sass/modules/hero/_carousel.scss */
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 2;
}

/* line 7, ../../sass/modules/hero/_carousel.scss */
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}

/* line 13, ../../sass/modules/hero/_carousel.scss */
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}

/* line 20, ../../sass/modules/hero/_carousel.scss */
.carousel-inner > .active {
  display: block;
  left: 0;
}

/* line 26, ../../sass/modules/hero/_carousel.scss */
.carousel.carousel-fade .item {
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}

/* line 32, ../../sass/modules/hero/_carousel.scss */
.carousel.carousel-fade .active.item {
  opacity: 1;
}

/* line 38, ../../sass/modules/hero/_carousel.scss */
.carousel .item {
  background-origin: padding-box;
}

/* line 44, ../../sass/modules/hero/_carousel.scss */
.hero.carousel .item {
  display: none;
}
/* line 46, ../../sass/modules/hero/_carousel.scss */
.hero.carousel .item:first-child {
  display: block;
}

/* line 54, ../../sass/modules/hero/_carousel.scss */
.js .hero.carousel .item {
  display: block;
}

/* line 62, ../../sass/modules/hero/_carousel.scss */
.indicators-overlay {
  position: absolute;
  top: 370px;
  right: 180px;
  z-index: 100;
  max-width: 1280px;
  padding: 0 140px;
}
@media only screen and (max-width: 780px) {
  /* line 62, ../../sass/modules/hero/_carousel.scss */
  .indicators-overlay {
    position: static;
    width: auto;
    height: auto;
    margin-left: 20px;
    padding: 0;
    background-color: #fff;
  }
}

/* line 84, ../../sass/modules/hero/_carousel.scss */
.carousel-indicators, .carousel-indicators li {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}
/* line 89, ../../sass/modules/hero/_carousel.scss */
.carousel-indicators li {
  display: inline-block;
  margin-left: 12px;
}
/* line 92, ../../sass/modules/hero/_carousel.scss */
.carousel-indicators li:first-child {
  margin-left: 0;
}
/* line 95, ../../sass/modules/hero/_carousel.scss */
.carousel-indicators li.active a {
  background-color: #e2001a;
}
/* line 99, ../../sass/modules/hero/_carousel.scss */
.carousel-indicators a {
  width: 24px;
  height: 24px;
  background-color: #fff;
  display: block;
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
/* line 105, ../../sass/modules/hero/_carousel.scss */
.carousel-indicators a:hover, .carousel-indicators a:focus {
  background-color: #f6f4f1;
}
/* line 108, ../../sass/modules/hero/_carousel.scss */
.carousel-indicators a:active {
  background-color: #e2001a;
}

/* line 2, ../../sass/modules/hero/_parallax.scss */
.parallax {
  background-attachment: scroll;
  background-position: left top;
  background-size: contain;
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  overflow: hidden;
}
/* line 10, ../../sass/modules/hero/_parallax.scss */
.parallax img {
  visibility: hidden;
  width: 100%;
  height: auto;
  max-width: 100%;
  display: inline;
}

/* line 20, ../../sass/modules/hero/_parallax.scss */
.slick-slide .parallax img {
  display: block;
}

/* line 1, ../../sass/modules/navigations/_subnavigation.scss */
.no-subnav {
  padding-top: 0 !important;
}

/* line 4, ../../sass/modules/navigations/_subnavigation.scss */
.subnav {
  padding-top: 0 !important;
}
/* line 6, ../../sass/modules/navigations/_subnavigation.scss */
.subnav .ym-vlist {
  background-color: #f6f4f1;
  padding: 10px;
  position: absolute;
  width: 22.65%;
  z-index: 5;
}
@media only screen and (max-width: 1200px) {
  /* line 6, ../../sass/modules/navigations/_subnavigation.scss */
  .subnav .ym-vlist {
    width: 24%;
  }
}
@media only screen and (max-width: 880px) {
  /* line 6, ../../sass/modules/navigations/_subnavigation.scss */
  .subnav .ym-vlist {
    padding: 0;
    position: static !important;
    width: 100%;
  }
}
/* line 20, ../../sass/modules/navigations/_subnavigation.scss */
.subnav .ym-vlist .ym-vtitle {
  color: #e2001a;
  font-size: 16px;
  margin-bottom: 10px;
}
/* line 24, ../../sass/modules/navigations/_subnavigation.scss */
.subnav .ym-vlist .ym-vtitle a {
  color: inherit;
  text-decoration: none;
}
/* line 29, ../../sass/modules/navigations/_subnavigation.scss */
.subnav .ym-vlist ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}
/* line 34, ../../sass/modules/navigations/_subnavigation.scss */
.subnav .ym-vlist ul li {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}
/* line 38, ../../sass/modules/navigations/_subnavigation.scss */
.subnav .ym-vlist ul li a {
  display: block;
  padding: 20px 0 20px 20px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid #ebebeb;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line 47, ../../sass/modules/navigations/_subnavigation.scss */
.subnav .ym-vlist ul li a:hover, .subnav .ym-vlist ul li a:focus {
  color: #e2001a;
}
@media only screen and (max-width: 1200px) {
  /* line 38, ../../sass/modules/navigations/_subnavigation.scss */
  .subnav .ym-vlist ul li a {
    padding: 20px 0 20px 5px;
  }
}
@media only screen and (max-width: 640px) {
  /* line 38, ../../sass/modules/navigations/_subnavigation.scss */
  .subnav .ym-vlist ul li a {
    padding: 14px 0 14px 14px;
  }
}
/* line 58, ../../sass/modules/navigations/_subnavigation.scss */
.subnav .ym-vlist ul li.active a {
  color: #e2001a;
}
/* line 62, ../../sass/modules/navigations/_subnavigation.scss */
.subnav .ym-vlist ul li.active ul li a {
  color: #333;
}
/* line 64, ../../sass/modules/navigations/_subnavigation.scss */
.subnav .ym-vlist ul li.active ul li a:hover, .subnav .ym-vlist ul li.active ul li a:focus {
  color: #e2001a;
}
/* line 68, ../../sass/modules/navigations/_subnavigation.scss */
.subnav .ym-vlist ul li.active ul li.active a {
  color: #e2001a;
}
/* line 74, ../../sass/modules/navigations/_subnavigation.scss */
.subnav .ym-vlist ul li ul li a {
  padding: 20px 0 20px 40px;
}
@media only screen and (max-width: 640px) {
  /* line 74, ../../sass/modules/navigations/_subnavigation.scss */
  .subnav .ym-vlist ul li ul li a {
    padding: 14px 0 14px 28px;
  }
}
/* line 81, ../../sass/modules/navigations/_subnavigation.scss */
.subnav .ym-vlist ul li ul li ul li a {
  padding: 20px 0 20px 60px;
}
@media only screen and (max-width: 640px) {
  /* line 81, ../../sass/modules/navigations/_subnavigation.scss */
  .subnav .ym-vlist ul li ul li ul li a {
    padding: 14px 0 14px 42px;
  }
}
/* line 88, ../../sass/modules/navigations/_subnavigation.scss */
.subnav .ym-vlist ul li ul li ul li ul li a {
  padding: 20px 0 20px 80px;
}
@media only screen and (max-width: 640px) {
  /* line 88, ../../sass/modules/navigations/_subnavigation.scss */
  .subnav .ym-vlist ul li ul li ul li ul li a {
    padding: 14px 0 14px 56px;
  }
}
/* line 95, ../../sass/modules/navigations/_subnavigation.scss */
.subnav .ym-vlist ul li ul li ul li ul li ul li a {
  padding: 20px 0 20px 100px;
}
@media only screen and (max-width: 640px) {
  /* line 95, ../../sass/modules/navigations/_subnavigation.scss */
  .subnav .ym-vlist ul li ul li ul li ul li ul li a {
    padding: 14px 0 14px 70px;
  }
}
/* line 102, ../../sass/modules/navigations/_subnavigation.scss */
.subnav .ym-vlist ul li ul li ul li ul li ul li ul li a {
  padding: 20px 0 20px 120px;
}
@media only screen and (max-width: 640px) {
  /* line 102, ../../sass/modules/navigations/_subnavigation.scss */
  .subnav .ym-vlist ul li ul li ul li ul li ul li ul li a {
    padding: 14px 0 14px 84px;
  }
}
/* line 109, ../../sass/modules/navigations/_subnavigation.scss */
.subnav .ym-vlist ul li ul li ul li ul li ul li ul li ul li a {
  padding: 20px 0 20px 140px;
}
@media only screen and (max-width: 640px) {
  /* line 109, ../../sass/modules/navigations/_subnavigation.scss */
  .subnav .ym-vlist ul li ul li ul li ul li ul li ul li ul li a {
    padding: 14px 0 14px 98px;
  }
}
/* line 116, ../../sass/modules/navigations/_subnavigation.scss */
.subnav .ym-vlist ul li ul li ul li ul li ul li ul li ul li ul li a {
  padding: 20px 0 20px 160px;
}
@media only screen and (max-width: 640px) {
  /* line 116, ../../sass/modules/navigations/_subnavigation.scss */
  .subnav .ym-vlist ul li ul li ul li ul li ul li ul li ul li ul li a {
    padding: 14px 0 14px 112px;
  }
}
/* line 131, ../../sass/modules/navigations/_subnavigation.scss */
.subnav .ym-vlist > ul > li:last-child a {
  border-bottom: none;
}
/* line 134, ../../sass/modules/navigations/_subnavigation.scss */
.subnav .ym-vlist.scroll-to-fixed-fixed {
  top: 60px !important;
  background-color: #fff;
  padding: 10px;
  width: 280px;
}

@media only screen and (max-width: 880px) {
  /* line 144, ../../sass/modules/navigations/_subnavigation.scss */
  .no-subnav {
    display: none;
  }

  /* line 147, ../../sass/modules/navigations/_subnavigation.scss */
  .subnav {
    width: 100%;
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  /* line 154, ../../sass/modules/navigations/_subnavigation.scss */
  .subnav {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
/* line 1, ../../sass/modules/navigations/_megamenue.scss */
.mainnav.affix {
  position: fixed;
  top: 0;
  z-index: 1001;
}
@media only screen and (min-width: 1400px) {
  /* line 1, ../../sass/modules/navigations/_megamenue.scss */
  .mainnav.affix {
    width: 1280px;
  }
}

@media only screen and (min-width: 881px) {
  /* line 272, ../../sass/modules/navigations/_megamenue.scss */
  .mainnav {
    width: auto;
    margin: 0 auto;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    padding: 0 20px;
    z-index: 10;
  }
  /* line 281, ../../sass/modules/navigations/_megamenue.scss */
  .mainnav ul, .mainnav li {
    list-style-type: none;
    margin-left: 0;
  }

  /* line 287, ../../sass/modules/navigations/_megamenue.scss */
  .mm-container {
    position: relative;
    width: 100%;
    display: table;
    table-layout: fixed;
    z-index: 100;
    margin: 0;
    -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  }

  /* line 297, ../../sass/modules/navigations/_megamenue.scss */
  .mm {
    display: none;
    width: 100%;
    max-height: 500px;
    padding: 25px 20px 20px;
    position: relative;
    overflow-y: auto;
    left: 0;
    top: inherit;
    margin-bottom: 0;
    background: #f6f4f1;
  }
  /* line 308, ../../sass/modules/navigations/_megamenue.scss */
  .mm a {
    text-decoration: none;
  }

  /* line 318, ../../sass/modules/navigations/_megamenue.scss */
  .firstlevel {
    display: table-cell;
    margin: 0;
    border-left: 1px solid #ddd8d3;
    background-color: #fff;
  }
  /* line 325, ../../sass/modules/navigations/_megamenue.scss */
  .firstlevel:hover .secondlevel, .firstlevel:focus .secondlevel {
    display: block;
    z-index: 1000;
    width: 400%;
    max-width: 1160px;
    left: 0px;
  }
  /* line 335, ../../sass/modules/navigations/_megamenue.scss */
  .firstlevel + .firstlevel:hover .secondlevel, .firstlevel + .firstlevel:focus .secondlevel {
    left: -100%;
  }
  /* line 341, ../../sass/modules/navigations/_megamenue.scss */
  .firstlevel + .firstlevel + .firstlevel:hover .secondlevel, .firstlevel + .firstlevel + .firstlevel:focus .secondlevel {
    left: -200%;
  }
  /* line 347, ../../sass/modules/navigations/_megamenue.scss */
  .firstlevel + .firstlevel + .firstlevel + .firstlevel:hover .secondlevel, .firstlevel + .firstlevel + .firstlevel + .firstlevel:focus .secondlevel {
    left: -300%;
  }
  /* line 353, ../../sass/modules/navigations/_megamenue.scss */
  .firstlevel + .firstlevel + .firstlevel + .firstlevel + .firstlevel:hover .secondlevel, .firstlevel + .firstlevel + .firstlevel + .firstlevel + .firstlevel:focus .secondlevel {
    left: -400%;
  }
  /* line 359, ../../sass/modules/navigations/_megamenue.scss */
  .firstlevel + .firstlevel + .firstlevel + .firstlevel + .firstlevel + .firstlevel:hover .secondlevel, .firstlevel + .firstlevel + .firstlevel + .firstlevel + .firstlevel + .firstlevel:focus .secondlevel {
    left: -500%;
  }
  /* line 365, ../../sass/modules/navigations/_megamenue.scss */
  .firstlevel + .firstlevel + .firstlevel + .firstlevel + .firstlevel + .firstlevel + .firstlevel:hover .secondlevel, .firstlevel + .firstlevel + .firstlevel + .firstlevel + .firstlevel + .firstlevel + .firstlevel:focus .secondlevel {
    left: -600%;
  }
  /* line 371, ../../sass/modules/navigations/_megamenue.scss */
  .firstlevel + .firstlevel + .firstlevel + .firstlevel + .firstlevel + .firstlevel + .firstlevel + .firstlevel:hover .secondlevel, .firstlevel + .firstlevel + .firstlevel + .firstlevel + .firstlevel + .firstlevel + .firstlevel + .firstlevel:focus .secondlevel {
    left: -700%;
  }
  /* line 382, ../../sass/modules/navigations/_megamenue.scss */
  .firstlevel:first-child {
    border: none;
  }
  /* line 385, ../../sass/modules/navigations/_megamenue.scss */
  .firstlevel:last-of-type {
    margin: 0;
  }
  /* line 388, ../../sass/modules/navigations/_megamenue.scss */
  .firstlevel > a, .firstlevel > a:visited {
    display: block;
    cursor: pointer;
    padding: 9px 20px;
    margin: 5px 5px 0 5px;
    text-decoration: none;
    text-align: center;
    background: #fff;
    color: #666;
    font-size: 16px;
    text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    border-bottom: 2px solid #fff;
  }
  /* line 402, ../../sass/modules/navigations/_megamenue.scss */
  .firstlevel:hover > a, .firstlevel:focus > a, .firstlevel > a:hover, .firstlevel > a:focus, .firstlevel > a:active {
    background: #f2f2f2;
    border-bottom: 2px solid #f2f2f2;
  }
  /* line 407, ../../sass/modules/navigations/_megamenue.scss */
  .firstlevel > a:active {
    outline: none;
  }
  /* line 410, ../../sass/modules/navigations/_megamenue.scss */
  .firstlevel.active > a {
    background: #f6f4f1;
    color: #e2001a;
    border-bottom: 2px solid #f6f4f1;
  }
  /* line 415, ../../sass/modules/navigations/_megamenue.scss */
  .firstlevel.marked > a {
    border-bottom: 2px solid #e2001a;
    color: #e2001a;
  }
  /* line 419, ../../sass/modules/navigations/_megamenue.scss */
  .firstlevel.marked.active > a {
    border-bottom: 2px solid #f6f4f1;
  }

  /* line 426, ../../sass/modules/navigations/_megamenue.scss */
  .secondlevel > li > a {
    color: #e2001a;
  }
  /* line 428, ../../sass/modules/navigations/_megamenue.scss */
  .secondlevel > li > a:hover, .secondlevel > li > a:focus {
    text-decoration: underline;
  }
  /* line 432, ../../sass/modules/navigations/_megamenue.scss */
  .secondlevel > li {
    float: left;
    width: 33.33333333%;
    padding: 0 0 20px 20px;
  }
  /* line 436, ../../sass/modules/navigations/_megamenue.scss */
  .secondlevel > li:nth-of-type(4) {
    clear: both;
  }

  /* line 443, ../../sass/modules/navigations/_megamenue.scss */
  .thirdlevel {
    margin: 10px 0 0 0;
  }
  /* line 445, ../../sass/modules/navigations/_megamenue.scss */
  .thirdlevel li {
    padding-left: 10px;
    line-height: 2;
    margin-bottom: 8px;
  }
  /* line 449, ../../sass/modules/navigations/_megamenue.scss */
  .thirdlevel li a {
    color: #666;
  }
  /* line 451, ../../sass/modules/navigations/_megamenue.scss */
  .thirdlevel li a:hover, .thirdlevel li a:focus {
    text-decoration: underline;
  }

  /* line 459, ../../sass/modules/navigations/_megamenue.scss */
  .nosub {
    margin-bottom: 20px;
  }

  /* line 466, ../../sass/modules/navigations/_megamenue.scss */
  .js .firstlevel:hover .secondlevel, .js .firstlevel:focus .secondlevel {
    display: none;
    z-index: 1000;
    width: auto;
    max-width: none;
  }
  /* line 475, ../../sass/modules/navigations/_megamenue.scss */
  .js .firstlevel + .firstlevel:hover .secondlevel, .js .firstlevel + .firstlevel:focus .secondlevel {
    left: 0;
  }
  /* line 481, ../../sass/modules/navigations/_megamenue.scss */
  .js .firstlevel + .firstlevel + .firstlevel:hover .secondlevel, .js .firstlevel + .firstlevel + .firstlevel:focus .secondlevel {
    left: 0;
  }
  /* line 487, ../../sass/modules/navigations/_megamenue.scss */
  .js .firstlevel + .firstlevel + .firstlevel + .firstlevel:hover .secondlevel, .js .firstlevel + .firstlevel + .firstlevel + .firstlevel:focus .secondlevel {
    left: 0;
  }
  /* line 499, ../../sass/modules/navigations/_megamenue.scss */
  .js .touch .thirdlevel a {
    background-color: rgba(221, 216, 211, 0.2);
    padding: 5px;
    display: block;
  }
  /* line 503, ../../sass/modules/navigations/_megamenue.scss */
  .js .touch .thirdlevel a:hover, .js .touch .thirdlevel a:focus {
    background-color: rgba(221, 216, 211, 0.5);
  }
}
@media only screen and (min-width: 1400px) {
  /* line 513, ../../sass/modules/navigations/_megamenue.scss */
  .mainnav {
    padding: 0 60px;
  }
}
@media only screen and (max-width: 1400px) and (min-width: 1200px) {
  /* line 513, ../../sass/modules/navigations/_megamenue.scss */
  .mainnav {
    padding: 0 60px;
  }
}

@media only screen and (min-width: 881px) {
  /* line 536, ../../sass/modules/navigations/_megamenue.scss */
  .nav-toggle {
    display: none;
  }
}
@media only screen and (max-width: 880px) {
  /* line 542, ../../sass/modules/navigations/_megamenue.scss */
  .nav-toggle {
    background-color: #333;
    color: #fff;
    padding: 3px 6px;
    text-transform: uppercase;
    font-size: 18px;
    position: absolute;
    top: 20px;
    right: 20px;
  }
}
/*! responsive-nav.js 1.0.32 by @viljamis */
/* line 4, ../../sass/modules/navigations/_responsive-nav.scss */
.js-nav-active .meta {
  position: static;
}
/* line 8, ../../sass/modules/navigations/_responsive-nav.scss */
.js-nav-active .nav-collapse {
  background-color: #f6f4f1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow: hidden;
  width: 70%;
}
@media only screen and (min-width: 501px) {
  /* line 8, ../../sass/modules/navigations/_responsive-nav.scss */
  .js-nav-active .nav-collapse {
    width: 70%;
  }
}
@media only screen and (max-width: 500px) {
  /* line 8, ../../sass/modules/navigations/_responsive-nav.scss */
  .js-nav-active .nav-collapse {
    width: 85%;
  }
}
/* line 22, ../../sass/modules/navigations/_responsive-nav.scss */
.js-nav-active .nav-collapse ul {
  list-style: none;
  width: 100%;
  float: none;
}
/* line 32, ../../sass/modules/navigations/_responsive-nav.scss */
.js-nav-active .nav-collapse.opened {
  display: block !important;
  max-height: 9999px;
}
/* line 36, ../../sass/modules/navigations/_responsive-nav.scss */
.js-nav-active .nav-collapse ul {
  margin: 0;
  padding: 0;
}
/* line 40, ../../sass/modules/navigations/_responsive-nav.scss */
.js-nav-active .nav-collapse li {
  float: none;
}
/* line 43, ../../sass/modules/navigations/_responsive-nav.scss */
.js-nav-active .nav-collapse .firstlevel {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #a3988e;
}
/* line 48, ../../sass/modules/navigations/_responsive-nav.scss */
.js-nav-active .nav-collapse .secondlevel {
  margin-left: 20px;
}
/* line 50, ../../sass/modules/navigations/_responsive-nav.scss */
.js-nav-active .nav-collapse .secondlevel li {
  margin-left: 10px;
}
/* line 56, ../../sass/modules/navigations/_responsive-nav.scss */
.js-nav-active .disable-pointer-events {
  pointer-events: none !important;
}
/* line 60, ../../sass/modules/navigations/_responsive-nav.scss */
.js-nav-active .nav-toggle {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
/* line 73, ../../sass/modules/navigations/_responsive-nav.scss */
.js-nav-active .nav-collapse li {
  float: left;
  width: 100%;
}
/* line 86, ../../sass/modules/navigations/_responsive-nav.scss */
.js-nav-active .nav-collapse a {
  color: #333;
  text-decoration: none;
  display: block;
  background: transparent;
  border-bottom: 1px solid white;
  padding: 0.7em 1em;
}
/* line 93, ../../sass/modules/navigations/_responsive-nav.scss */
.js-nav-active .nav-collapse a:hover, .js-nav-active .nav-collapse a:focus, .js-nav-active .nav-collapse a:active {
  color: #e2001a;
  text-decoration: underline;
}

/* line 101, ../../sass/modules/navigations/_responsive-nav.scss */
.js .nav-collapse {
  display: block;
}

/* line 104, ../../sass/modules/navigations/_responsive-nav.scss */
.nav-toggle {
  display: none;
}

@media screen and (min-width: 881px) {
  /* line 109, ../../sass/modules/navigations/_responsive-nav.scss */
  .js .nav-collapse {
    display: block;
  }

  /* line 112, ../../sass/modules/navigations/_responsive-nav.scss */
  .nav-toggle {
    display: none;
  }
}
@media screen and (max-width: 880px) {
  /* line 118, ../../sass/modules/navigations/_responsive-nav.scss */
  .nav-toggle {
    display: block;
  }

  /* line 121, ../../sass/modules/navigations/_responsive-nav.scss */
  .nav-collapse.closed {
    max-height: none;
    display: none;
  }
}
/* line 134, ../../sass/modules/navigations/_responsive-nav.scss */
.nav-collapse.opened {
  max-height: 9999px;
  display: block;
}

/* line 1, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_menu {
  display: none;
}
/* line 3, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_menu .slicknav_arrow {
  display: inline-block;
  margin-left: 15px;
  font-size: 150%;
  position: relative;
  top: 1px;
  color: #444;
}
/* line 10, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_menu .slicknav_arrow:hover, .slicknav_menu .slicknav_arrow:focus {
  color: #e2001a;
}

/* line 16, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_btn {
  position: relative;
  display: none;
  vertical-align: middle;
  text-align: center;
  float: right;
  padding: 5px 10px;
  line-height: 40px;
  cursor: pointer;
  margin: 0 0 0 5px;
  text-decoration: none;
  color: #fff;
  background-color: #333;
}
/* line 29, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_btn:hover, .slicknav_btn:focus {
  color: #fff;
}

/* line 33, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_nav_hidden {
  display: none;
}

/* line 34, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_open > .slicknav_item,
.slicknav_open > .slicknav_item > a {
  color: #e2001a;
}
/* line 37, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_open > .slicknav_item .slicknav_arrow,
.slicknav_open > .slicknav_item > a .slicknav_arrow {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 3px;
}

/* line 42, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_nav {
  background-color: #f6f4f1;
  position: absolute;
  top: 55px;
  left: 0;
  z-index: 1000;
  overflow: hidden;
  width: 100%;
  padding: 0 10px;
  list-style: none;
  margin-bottom: 0;
  border: 20px solid #fff;
  border-top: none;
}
@media only screen and (max-width: 640px) {
  /* line 42, ../../sass/modules/navigations/_slicknav.scss */
  .slicknav_nav {
    width: 100%;
    top: 110px;
    border-width: 10px;
  }
}
/* line 60, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* line 65, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_nav li {
  float: none;
}
/* line 68, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_nav .firstlevel {
  padding: 10px 0;
  margin-left: 0;
  border-bottom: 1px solid #ddd8d3;
}
/* line 72, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_nav .firstlevel:first-child {
  padding-top: 11px;
}
/* line 75, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_nav .firstlevel:last-child {
  border: none;
  padding-bottom: 12px;
}
/* line 80, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_nav .secondlevel, .slicknav_nav .thirdlevel {
  margin-left: 10px;
}
/* line 82, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_nav .secondlevel li, .slicknav_nav .thirdlevel li {
  margin-left: 10px;
}
/* line 86, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_nav a {
  color: #444;
  text-decoration: none;
  display: inline-block;
  background: transparent;
  padding: 10px 0 10px 5px;
}
/* line 92, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_nav a:hover, .slicknav_nav a:active {
  color: #e2001a;
}
/* line 95, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_nav a.slicknav_item {
  padding: 0;
}
/* line 97, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_nav a.slicknav_item > a {
  color: inherit;
  outline: none;
}
/* line 103, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_nav .link-replacement {
  outline: none;
  display: inline-block;
  padding: 10px 0 10px 5px;
}
/* line 108, ../../sass/modules/navigations/_slicknav.scss */
.slicknav_nav .mm {
  display: block;
}

@media only screen and (max-width: 880px) {
  /* line 115, ../../sass/modules/navigations/_slicknav.scss */
  .js .mainnav {
    display: none;
  }
  /* line 118, ../../sass/modules/navigations/_slicknav.scss */
  .js .slicknav_menu {
    display: block;
    position: relative;
    top: 15px;
    z-index: 666;
  }
  /* line 124, ../../sass/modules/navigations/_slicknav.scss */
  .js .slicknav_btn {
    display: block;
  }
}
@media only screen and (max-width: 640px) {
  /* line 130, ../../sass/modules/navigations/_slicknav.scss */
  .js .slicknav_nav .firstlevel {
    padding: 5px 0;
  }
  /* line 134, ../../sass/modules/navigations/_slicknav.scss */
  .js .slicknav_btn {
    border-left: 5px solid #fff;
    width: 10.2%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 568px) {
  /* line 143, ../../sass/modules/navigations/_slicknav.scss */
  .js .slicknav_btn {
    width: 11.5%;
  }
}
@media only screen and (max-width: 480px) {
  /* line 148, ../../sass/modules/navigations/_slicknav.scss */
  .js .slicknav_btn {
    width: 13.6%;
  }
}
@media only screen and (max-width: 420px) {
  /* line 153, ../../sass/modules/navigations/_slicknav.scss */
  .js .slicknav_btn {
    width: 15.7%;
  }
}
@media only screen and (max-width: 414px) {
  /* line 158, ../../sass/modules/navigations/_slicknav.scss */
  .js .slicknav_btn {
    width: 16%;
  }
}
@media only screen and (max-width: 375px) {
  /* line 163, ../../sass/modules/navigations/_slicknav.scss */
  .js .slicknav_btn {
    width: 17.7%;
  }
}
@media only screen and (max-width: 350px) {
  /* line 168, ../../sass/modules/navigations/_slicknav.scss */
  .js .slicknav_nav {
    border-width: 5px;
    top: 105px;
  }
  /* line 172, ../../sass/modules/navigations/_slicknav.scss */
  .js .slicknav_btn {
    width: 18.4%;
  }
}
@media only screen and (max-width: 320px) {
  /* line 177, ../../sass/modules/navigations/_slicknav.scss */
  .js .slicknav_btn {
    width: 20.2%;
  }
}

/* line 1, ../../sass/modules/navigations/_breadcrumb.scss */
.breadcrumb {
  margin-top: 20px;
  overflow: hidden;
  width: 100%;
  position: relative;
  top: 45px;
  z-index: 2;
}
/* line 8, ../../sass/modules/navigations/_breadcrumb.scss */
.breadcrumb .crumb,
.breadcrumb .crumb:before,
.breadcrumb .crumb:after {
  background-image: url('../images/breadcrumb-sprite.png?1514982395');
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.25), only screen and (-o-min-device-pixel-ratio: 125 / 100), only screen and (min-resolution: 120dpi), only screen and (min-resolution: 1.25dppx) {
  /* line 8, ../../sass/modules/navigations/_breadcrumb.scss */
  .breadcrumb .crumb,
  .breadcrumb .crumb:before,
  .breadcrumb .crumb:after {
    background-image: url('../images/breadcrumb-sprite-2x.png?1514982395');
    background-size: 12px 210px;
  }
}
/* line 17, ../../sass/modules/navigations/_breadcrumb.scss */
.breadcrumb .crumb {
  display: inline-block;
  background-repeat: repeat-x;
  background-position: 0 0;
  position: relative;
  height: 34px;
  margin: 0 7px 0 7px;
}
/* line 24, ../../sass/modules/navigations/_breadcrumb.scss */
.breadcrumb .crumb:before {
  content: "";
  background-repeat: no-repeat;
  background-position: 0px -70px;
  position: absolute;
  height: 34px;
  width: 24px;
  left: -12px;
  top: 0;
}
/* line 34, ../../sass/modules/navigations/_breadcrumb.scss */
.breadcrumb .crumb:after {
  content: "";
  background-repeat: no-repeat;
  background-position: 0px -35px;
  position: absolute;
  height: 34px;
  width: 24px;
  right: -24px;
  top: 0;
}
/* line 44, ../../sass/modules/navigations/_breadcrumb.scss */
.breadcrumb .crumb:hover, .breadcrumb .crumb:focus {
  background-position: 0 -105px;
}
/* line 46, ../../sass/modules/navigations/_breadcrumb.scss */
.breadcrumb .crumb:hover:before, .breadcrumb .crumb:focus:before {
  background-position: 0px -175px;
}
/* line 49, ../../sass/modules/navigations/_breadcrumb.scss */
.breadcrumb .crumb:hover:after, .breadcrumb .crumb:focus:after {
  background-position: 0px -140px;
}
/* line 53, ../../sass/modules/navigations/_breadcrumb.scss */
.breadcrumb .crumb:first-child {
  margin-left: 0;
}
/* line 55, ../../sass/modules/navigations/_breadcrumb.scss */
.breadcrumb .crumb:first-child:before {
  content: normal;
}
/* line 59, ../../sass/modules/navigations/_breadcrumb.scss */
.breadcrumb .crumb a, .breadcrumb .crumb .nolink {
  display: inline-block;
  padding: 9px 14px;
  text-decoration: none;
  color: #444;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
/* line 68, ../../sass/modules/navigations/_breadcrumb.scss */
.breadcrumb .current, .breadcrumb .current:hover, .breadcrumb .current:focus {
  font-weight: bold;
  background: none;
}
/* line 72, ../../sass/modules/navigations/_breadcrumb.scss */
.breadcrumb .current:after, .breadcrumb .current:before {
  content: normal;
}
@media only screen and (max-width: 880px) {
  /* line 1, ../../sass/modules/navigations/_breadcrumb.scss */
  .breadcrumb {
    margin-top: 0;
    margin-bottom: 10px;
    top: 0;
  }
  /* line 83, ../../sass/modules/navigations/_breadcrumb.scss */
  .breadcrumb .crumb {
    height: auto;
    background-image: none;
    margin: 0 12px 0 12px;
  }
  /* line 87, ../../sass/modules/navigations/_breadcrumb.scss */
  .breadcrumb .crumb:before {
    background-image: none;
    content: "\00BB";
    position: absolute;
    height: auto;
    width: auto;
    left: -18px;
  }
  /* line 95, ../../sass/modules/navigations/_breadcrumb.scss */
  .breadcrumb .crumb:after {
    content: normal;
    background-image: none;
  }
  /* line 99, ../../sass/modules/navigations/_breadcrumb.scss */
  .breadcrumb .crumb a, .breadcrumb .crumb .nolink {
    padding: 0;
  }
}
@media only screen and (max-width: 640px) {
  /* line 1, ../../sass/modules/navigations/_breadcrumb.scss */
  .breadcrumb {
    display: none;
  }
}

/* line 1, ../../sass/modules/_textcntinner.scss */
.textcntinner {
  word-wrap: break-word;
  line-height: 1.5;
  font-size: 107.1%;
}
/* line 5, ../../sass/modules/_textcntinner.scss */
.textcntinner h2 {
  color: #e2001a;
  font-size: 21px;
  margin: 0 0 20px 0;
}
/* line 10, ../../sass/modules/_textcntinner.scss */
.textcntinner > h2 {
  padding-top: 20px;
}
/* line 13, ../../sass/modules/_textcntinner.scss */
.textcntinner h3 {
  color: #333;
  font-size: 16px;
  margin: 0 0 20px 0;
}
/* line 18, ../../sass/modules/_textcntinner.scss */
.textcntinner p {
  margin-bottom: 20px;
}
/* line 21, ../../sass/modules/_textcntinner.scss */
.textcntinner .image {
  float: none;
  display: block;
  margin: 0 0 1.5em 0;
}
/* line 25, ../../sass/modules/_textcntinner.scss */
.textcntinner .image.float_left {
  float: left;
  display: inline;
  margin: 0 1.5em 1.5em 0;
}
/* line 30, ../../sass/modules/_textcntinner.scss */
.textcntinner .image.float_right {
  float: right;
  display: inline;
  margin: 0 0 1.5em 1.5em;
}
/* line 36, ../../sass/modules/_textcntinner.scss */
.textcntinner .image.center {
  display: block;
  text-align: center;
  margin: 0 auto 1.5em auto;
}
/* line 43, ../../sass/modules/_textcntinner.scss */
.textcntinner .list-element h2 {
  color: #e2001a;
  font-size: 20px;
  margin: 0 0 20px 0;
}
/* line 48, ../../sass/modules/_textcntinner.scss */
.textcntinner .list-element > h2 {
  padding-top: 20px;
}
/* line 51, ../../sass/modules/_textcntinner.scss */
.textcntinner .list-element h3 {
  color: #e2001a;
  font-size: 16px;
  margin: 0 0 20px 0;
}
/* line 56, ../../sass/modules/_textcntinner.scss */
.textcntinner .list-element h4 {
  color: #333;
  font-size: 20px;
  margin: 0 0 20px 0;
}
/* line 61, ../../sass/modules/_textcntinner.scss */
.textcntinner .list-element h5 {
  color: #333;
  font-size: 16px;
  margin: 0 0 20px 0;
}
/* line 67, ../../sass/modules/_textcntinner.scss */
.textcntinner ul {
  margin-left: 14px;
  margin-bottom: 20px;
  list-style-type: square;
}
/* line 72, ../../sass/modules/_textcntinner.scss */
.textcntinner ul span {
  color: #444;
}
/* line 76, ../../sass/modules/_textcntinner.scss */
.textcntinner .download-list {
  width: 100%;
}
/* line 78, ../../sass/modules/_textcntinner.scss */
.textcntinner .download-list li {
  list-style-type: none;
  position: relative;
  padding-left: 10px;
}
/* line 82, ../../sass/modules/_textcntinner.scss */
.textcntinner .download-list li:before {
  content: "";
  width: 8px;
  height: 15px;
  background-image: url('../images/icons/download_list_icon.gif');
  background-color: transparent;
  position: absolute;
  top: 2px;
  left: -6px;
}
/* line 93, ../../sass/modules/_textcntinner.scss */
.textcntinner .download-list li:hover:before {
  background-image: url('../images/icons/download_list_icon_red.gif');
}
/* line 100, ../../sass/modules/_textcntinner.scss */
.textcntinner:last-child > p:last-child, .textcntinner:last-child > ul:last-child, .textcntinner:last-child > ol:last-child, .textcntinner:last-child > h2:last-child,
.textcntinner:last-child > h3:last-child, .textcntinner:last-child > h4:last-child, .textcntinner:last-child > h5:last-child, .textcntinner:last-child > .videocnt:last-child {
  margin-bottom: 0;
}

/* line 108, ../../sass/modules/_textcntinner.scss */
.css-class-for-dlcom-list li {
  padding-left: 0 !important;
  list-style-image: url('../images/icons/dl_dot.gif');
  margin-left: 7px !important;
}

/* line 115, ../../sass/modules/_textcntinner.scss */
.privacy-police-form {
  text-align: left !important;
}

/* line 126, ../../sass/modules/_textcntinner.scss */
.ym-gbox .textcntinner:first-child > h2:first-child,
.ym-gbox .textcntinner:first-child .list-element h2:first-child,
.faq-content-inner .textcntinner:first-child > h2:first-child,
.faq-content-inner .textcntinner:first-child .list-element h2:first-child,
.faq-content-inner .composedcontent-akkordeon-content .textcntinner:first-child > h2:first-child,
.faq-content-inner .composedcontent-akkordeon-content .textcntinner:first-child .list-element h2:first-child {
  padding-top: 0;
}

/* line 135, ../../sass/modules/_textcntinner.scss */
.intro-text h2 {
  color: #e2001a;
  font-size: 20px;
  margin: 0 0 20px 0;
}
/* line 140, ../../sass/modules/_textcntinner.scss */
.intro-text p {
  line-height: 1.5;
  margin-bottom: 30px;
  font-size: 1.15em;
}

/* line 2, ../../sass/modules/teaser/_teaser.scss */
.teaser-row .teaser-block-link {
  height: 104%;
  width: 104%;
}
/* line 6, ../../sass/modules/teaser/_teaser.scss */
.teaser-row .imageteaser {
  margin-bottom: 0;
}
/* line 9, ../../sass/modules/teaser/_teaser.scss */
.teaser-row .teaser {
  margin-bottom: 0;
}
/* line 12, ../../sass/modules/teaser/_teaser.scss */
.teaser-row .mejs-container {
  background: transparent;
}

/* line 17, ../../sass/modules/teaser/_teaser.scss */
.teaser {
  margin-bottom: 20px;
  padding: 10px;
  position: relative;
  border: 5px solid #fff;
}
/* line 22, ../../sass/modules/teaser/_teaser.scss */
.teaser ul {
  margin-left: 7px;
  margin-bottom: 0;
}
/* line 26, ../../sass/modules/teaser/_teaser.scss */
.teaser ul li {
  position: relative;
  padding-left: 10px;
}
/* line 29, ../../sass/modules/teaser/_teaser.scss */
.teaser ul li a {
  text-decoration: none;
}
/* line 36, ../../sass/modules/teaser/_teaser.scss */
.teaser .download-list li:before {
  width: 8px;
  height: 15px;
  background-image: url('../images/icons/download_list_icon.gif');
  background-color: transparent;
  top: 2px;
}
/* line 44, ../../sass/modules/teaser/_teaser.scss */
.teaser .download-list li:hover:before {
  background-image: url('../images/icons/download_list_icon_red.gif');
}
/* line 52, ../../sass/modules/teaser/_teaser.scss */
.teaser.international-clock .ym-g50.ym-gl, .teaser.international-clock .ym-g50.ym-gr {
  padding-bottom: 0;
  padding-top: 10px;
}

/* line 60, ../../sass/modules/teaser/_teaser.scss */
.teaser + .teaser {
  margin-top: 20px;
}

/* line 64, ../../sass/modules/teaser/_teaser.scss */
.teaserheader-small {
  font-size: 12px;
  border-bottom: 1px solid #ddd8d3;
  padding-bottom: 12px;
  margin-bottom: 12px;
  line-height: 1.5;
  overflow: hidden;
}
/* line 71, ../../sass/modules/teaser/_teaser.scss */
.teaserheader-small span {
  margin-bottom: 0;
}

/* line 75, ../../sass/modules/teaser/_teaser.scss */
.dark-teaser .teaserheader-small {
  color: #fff;
}

/* line 80, ../../sass/modules/teaser/_teaser.scss */
.teaserheader-mixed {
  border-bottom: 1px solid #ddd8d3;
  padding-bottom: 6px;
  margin-bottom: 12px;
}
/* line 84, ../../sass/modules/teaser/_teaser.scss */
.teaserheader-mixed * {
  margin-bottom: 0;
}
/* line 87, ../../sass/modules/teaser/_teaser.scss */
.teaserheader-mixed .float-left {
  position: relative;
  top: 4px;
}

/* line 93, ../../sass/modules/teaser/_teaser.scss */
.whitebg {
  background-color: #fff;
}
/* line 95, ../../sass/modules/teaser/_teaser.scss */
.whitebg .teaserheadsmall {
  color: #e2001a;
}
/* line 97, ../../sass/modules/teaser/_teaser.scss */
.whitebg .teaserheadsmall a {
  text-decoration: none;
}
/* line 99, ../../sass/modules/teaser/_teaser.scss */
.whitebg .teaserheadsmall a:hover, .whitebg .teaserheadsmall a:focus {
  text-decoration: underline;
}
/* line 104, ../../sass/modules/teaser/_teaser.scss */
.whitebg .teaserheader {
  color: #333;
  border-bottom-color: #a3988e;
}

/* line 110, ../../sass/modules/teaser/_teaser.scss */
.greybg,
.white-bg .teaser.whitebg {
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}
/* line 114, ../../sass/modules/teaser/_teaser.scss */
.greybg .teaserheadsmall,
.white-bg .teaser.whitebg .teaserheadsmall {
  color: #e2001a;
}
/* line 116, ../../sass/modules/teaser/_teaser.scss */
.greybg .teaserheadsmall a,
.white-bg .teaser.whitebg .teaserheadsmall a {
  text-decoration: none;
}
/* line 118, ../../sass/modules/teaser/_teaser.scss */
.greybg .teaserheadsmall a:hover, .greybg .teaserheadsmall a:focus,
.white-bg .teaser.whitebg .teaserheadsmall a:hover,
.white-bg .teaser.whitebg .teaserheadsmall a:focus {
  text-decoration: underline;
}
/* line 123, ../../sass/modules/teaser/_teaser.scss */
.greybg .teaserheader,
.white-bg .teaser.whitebg .teaserheader {
  color: #333;
  border-bottom-color: #a3988e;
}

/* line 129, ../../sass/modules/teaser/_teaser.scss */
.teaserheadbig {
  font-size: 20px;
  color: #fff;
}

/* line 133, ../../sass/modules/teaser/_teaser.scss */
.teaserheadsmall {
  font-size: 16px;
  color: #fff;
}

/* line 138, ../../sass/modules/teaser/_teaser.scss */
.teaserimage {
  margin-bottom: 20px;
}
/* line 140, ../../sass/modules/teaser/_teaser.scss */
.teaserimage img {
  display: block;
}

/* line 143, ../../sass/modules/teaser/_teaser.scss */
.teaser-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  z-index: 10;
}

/* line 152, ../../sass/modules/teaser/_teaser.scss */
.goon {
  text-decoration: none;
}
/* line 154, ../../sass/modules/teaser/_teaser.scss */
.goon:after {
  content: "\00BB";
  display: inline-block;
  position: absolute;
  top: 48%;
  right: 10px;
  font-size: 35px;
  color: #e2001a;
}
/* line 164, ../../sass/modules/teaser/_teaser.scss */
.goon:hover:after, .goon:focus:after {
  color: #ff495e;
}

/* line 170, ../../sass/modules/teaser/_teaser.scss */
.teaser-block-link {
  text-decoration: none;
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: -5px;
  left: -5px;
}
/* line 178, ../../sass/modules/teaser/_teaser.scss */
.teaser-block-link.goon:after {
  right: 15px;
}

/* line 184, ../../sass/modules/teaser/_teaser.scss */
.teaser p, .teaser ul, .teaser .teaserheadsmall {
  margin-right: 35px;
}

/* line 192, ../../sass/modules/teaser/_teaser.scss */
.loadmore a, .kontakt-button-box .tocontact a {
  display: block;
  clear: both;
  background-color: #a3988e;
  color: #fff;
  border: 1px solid #a3988e;
  text-align: center;
  text-decoration: none;
  padding: 10px;
  margin: 10px 0;
}
/* line 202, ../../sass/modules/teaser/_teaser.scss */
.loadmore a:hover, .kontakt-button-box .tocontact a:hover, .loadmore a:focus, .kontakt-button-box .tocontact a:focus {
  background-color: #fff;
  color: #a3988e;
}

/* line 210, ../../sass/modules/teaser/_teaser.scss */
.ym-gl, .ym-gr {
  margin-bottom: 20px;
}

/* line 215, ../../sass/modules/teaser/_teaser.scss */
.imageteaser {
  margin-bottom: 20px;
  position: relative;
  padding: 5px;
  background-color: #fff;
}
/* line 220, ../../sass/modules/teaser/_teaser.scss */
.imageteaser .imageteaser-inner {
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 5px;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 5px 10px 10px 10px;
}
/* line 231, ../../sass/modules/teaser/_teaser.scss */
.imageteaser.download .imageteaser-inner {
  bottom: 43px;
}
/* line 234, ../../sass/modules/teaser/_teaser.scss */
.imageteaser.download .teaser-footer {
  padding: 0;
  position: static;
}

/* line 242, ../../sass/modules/teaser/_teaser.scss */
.ym-wbox-landingpage .ym-wbox {
  max-width: 1160px;
  padding: 30px 20px 30px 20px;
}
/* line 247, ../../sass/modules/teaser/_teaser.scss */
.ym-wbox-landingpage .ym-wbox .multi-download-form .download-list .ym-gl {
  margin-bottom: 0;
  float: none;
}
/* line 254, ../../sass/modules/teaser/_teaser.scss */
.ym-wbox-landingpage .linklist {
  list-style-type: square;
  color: #e2001a;
}
/* line 261, ../../sass/modules/teaser/_teaser.scss */
.ym-wbox-landingpage .teaser-row .imageteaser.download .imageteaser-inner {
  bottom: 45px !important;
}

/* line 270, ../../sass/modules/teaser/_teaser.scss */
.white-bg .imageteaser {
  background-color: #f7f7f7;
}

/* line 277, ../../sass/modules/teaser/_teaser.scss */
.ym-g25 .imageteaser .imageteaser-inner,
.ym-g33 .imageteaser .imageteaser-inner {
  top: auto;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 5px 10px 10px 10px;
}
/* line 284, ../../sass/modules/teaser/_teaser.scss */
.ym-g25 .imageteaser .imageteaser-inner .teaserheader-small,
.ym-g33 .imageteaser .imageteaser-inner .teaserheader-small {
  display: none;
}
/* line 287, ../../sass/modules/teaser/_teaser.scss */
.ym-g25 .imageteaser .imageteaser-inner .teaserheadbig,
.ym-g33 .imageteaser .imageteaser-inner .teaserheadbig {
  font-size: 16px;
}
/* line 289, ../../sass/modules/teaser/_teaser.scss */
.ym-g25 .imageteaser .imageteaser-inner .teaserheadbig:last-child,
.ym-g33 .imageteaser .imageteaser-inner .teaserheadbig:last-child {
  margin-bottom: 0;
}
/* line 293, ../../sass/modules/teaser/_teaser.scss */
.ym-g25 .imageteaser .imageteaser-inner .teaserheadsmall,
.ym-g33 .imageteaser .imageteaser-inner .teaserheadsmall {
  font-size: 14px;
}
/* line 295, ../../sass/modules/teaser/_teaser.scss */
.ym-g25 .imageteaser .imageteaser-inner .teaserheadsmall:last-child,
.ym-g33 .imageteaser .imageteaser-inner .teaserheadsmall:last-child {
  margin-bottom: 0;
}

/* line 303, ../../sass/modules/teaser/_teaser.scss */
.teaser-bg-img {
  position: relative;
  display: block;
  z-index: 1;
}

/* line 313, ../../sass/modules/teaser/_teaser.scss */
.text-image-element {
  margin: 0 0 20px 0;
}
/* line 315, ../../sass/modules/teaser/_teaser.scss */
.text-image-element .image-box {
  margin-bottom: 20px;
}
/* line 319, ../../sass/modules/teaser/_teaser.scss */
.text-image-element .text-image-box p {
  margin-bottom: 0;
}
/* line 323, ../../sass/modules/teaser/_teaser.scss */
.text-image-element p {
  margin-right: 0;
}

/* line 330, ../../sass/modules/teaser/_teaser.scss */
.marginColumn .teaser.contact .ym-g50.ym-gl,
.marginColumn .teaser.contact .ym-g50.ym-gr {
  width: 100%;
  padding: 0;
}

/* line 339, ../../sass/modules/teaser/_teaser.scss */
.teaser.narrow .ym-g50.ym-gl,
.teaser.narrow .ym-g50.ym-gr {
  width: 100%;
  padding: 0;
}

@media only screen and (min-width: 881px) {
  /* line 347, ../../sass/modules/teaser/_teaser.scss */
  .ym-grid.equalHeights:last-child > *, .equalHeights.mm:last-child > * {
    margin-bottom: 0;
  }
}
/* line 1, ../../sass/modules/teaser/_teaseraside.scss */
.teaseraside {
  background-color: #e2001a;
  color: #fff;
  float: right;
  width: 290px;
  padding: 20px;
  margin: 0 -30px 20px 20px;
}
/* line 8, ../../sass/modules/teaser/_teaseraside.scss */
.teaseraside h3 {
  font-size: 20px;
  color: #fff;
  margin: 0 0 0.875em 0;
}
@media only screen and (max-width: 880px) {
  /* line 1, ../../sass/modules/teaser/_teaseraside.scss */
  .teaseraside {
    float: none;
    width: 100%;
    margin: 30px 0;
  }
}

/* line 20, ../../sass/modules/teaser/_teaseraside.scss */
.teaseraside ~ .teaseraside {
  clear: both;
}

/* line 24, ../../sass/modules/teaser/_teaseraside.scss */
.aside-image {
  border: 5px solid #fff;
}

/* line 28, ../../sass/modules/teaser/_teaseraside.scss */
.cta-teaser {
  clear: both;
  display: block;
  padding: 0;
  line-height: 60px;
  background-color: #fff;
  color: #e2001a;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  overflow: hidden;
  border: 5px solid #fff;
}
/* line 40, ../../sass/modules/teaser/_teaseraside.scss */
.cta-teaser:hover, .cta-teaser:focus {
  color: #fff;
  background-color: #e2001a;
}
/* line 44, ../../sass/modules/teaser/_teaseraside.scss */
.cta-teaser:after {
  content: "\00BB";
  font-size: 35px;
  margin-left: 10px;
  position: relative;
  top: 3px;
}

/* line 55, ../../sass/modules/teaser/_teaseraside.scss */
.landingpage .ym-wbox-landingpage .teaseraside {
  margin: 0 -20px 20px 20px;
}

/* line 1, ../../sass/modules/teaser/_img-teaser.scss */
.img-teaser {
  background-color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  display: block;
  position: relative;
}
/* line 7, ../../sass/modules/teaser/_img-teaser.scss */
.img-teaser .img-teaser-heading {
  color: #e2001a;
  font-size: 18px;
  margin-bottom: 0;
  width: 100%;
  bottom: 0;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 15px 40px 15px 20px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/* line 17, ../../sass/modules/teaser/_img-teaser.scss */
.img-teaser .img-teaser-heading:after {
  content: "\00BB";
  position: absolute;
  right: 20px;
  top: 15px;
}
/* line 24, ../../sass/modules/teaser/_img-teaser.scss */
.img-teaser img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}
/* line 30, ../../sass/modules/teaser/_img-teaser.scss */
.img-teaser div {
  position: relative;
}
/* line 33, ../../sass/modules/teaser/_img-teaser.scss */
.img-teaser p {
  padding: 20px;
  margin: 0;
}
/* line 37, ../../sass/modules/teaser/_img-teaser.scss */
.img-teaser:hover, .img-teaser:focus {
  background-color: #e2001a;
  color: #fff;
}
/* line 40, ../../sass/modules/teaser/_img-teaser.scss */
.img-teaser:hover .img-teaser-heading, .img-teaser:focus .img-teaser-heading {
  background-color: rgba(255, 255, 255, 0.6);
}
/* line 43, ../../sass/modules/teaser/_img-teaser.scss */
.img-teaser:hover p, .img-teaser:focus p {
  color: #fff;
}

/* line 51, ../../sass/modules/teaser/_img-teaser.scss */
.ym-g50 .img-teaser a img {
  width: 50%;
  height: auto;
  display: block;
  float: left;
}
/* line 57, ../../sass/modules/teaser/_img-teaser.scss */
.ym-g50 .img-teaser a p {
  padding: 20px;
  width: 50%;
  float: right;
}

@media only screen and (max-width: 880px) {
  /* line 66, ../../sass/modules/teaser/_img-teaser.scss */
  .img-teaser {
    margin-bottom: 0;
  }

  /* line 69, ../../sass/modules/teaser/_img-teaser.scss */
  .ym-g50 .img-teaser,
  .ym-g25 + .ym-g25 + .ym-g25 .img-teaser {
    margin-bottom: 0;
  }
  /* line 73, ../../sass/modules/teaser/_img-teaser.scss */
  .ym-g50 .img-teaser a img, .ym-g50 .img-teaser a p,
  .ym-g25 + .ym-g25 + .ym-g25 .img-teaser a img,
  .ym-g25 + .ym-g25 + .ym-g25 .img-teaser a p {
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  /* line 80, ../../sass/modules/teaser/_img-teaser.scss */
  .ym-g50.ym-gr {
    padding-left: 10px;
    width: 50% !important;
  }

  /* line 84, ../../sass/modules/teaser/_img-teaser.scss */
  .ym-g50.ym-gl {
    padding-right: 10px;
    width: 50% !important;
  }
}
@media only screen and (max-width: 480px) {
  /* line 90, ../../sass/modules/teaser/_img-teaser.scss */
  .ym-g50.ym-gr {
    padding-left: 0;
    width: 100% !important;
  }

  /* line 94, ../../sass/modules/teaser/_img-teaser.scss */
  .ym-g50.ym-gl {
    padding-right: 0;
    width: 100% !important;
  }

  /* line 98, ../../sass/modules/teaser/_img-teaser.scss */
  .ym-g50 .img-teaser,
  .ym-g25 + .ym-g25 + .ym-g25 .img-teaser {
    margin-bottom: 0;
  }

  /* line 102, ../../sass/modules/teaser/_img-teaser.scss */
  .ym-g50.ym-gr .img-teaser,
  .ym-g25 + .ym-g25 + .ym-g25 + .ym-g25 .img-teaser {
    margin-bottom: 0;
  }
}
/* line 3, ../../sass/modules/teaser/_presse.scss */
.press h4 {
  color: #e2001a;
  font-size: 16px;
}
/* line 7, ../../sass/modules/teaser/_presse.scss */
.press span,
.press p {
  font-family: "spar-regular", Arial, Helvetica, sans-serif !important;
  font-size: 100% !important;
  font-weight: normal !important;
}
/* line 13, ../../sass/modules/teaser/_presse.scss */
.press p {
  margin-right: 0;
}
/* line 16, ../../sass/modules/teaser/_presse.scss */
.press img.float-left.flexible {
  margin: 0 1em 1em 0;
  max-width: 230px;
  max-height: 150px;
}
/* line 22, ../../sass/modules/teaser/_presse.scss */
.press .teaserheader-mixed .float-right {
  position: relative;
}
/* line 26, ../../sass/modules/teaser/_presse.scss */
.press .contact-info {
  font-size: 12px;
  margin-bottom: .5em;
}
/* line 29, ../../sass/modules/teaser/_presse.scss */
.press .contact-info a,
.press .contact-info a:hover,
.press .contact-info a:focus {
  color: #444;
  text-decoration: underline;
}
/* line 35, ../../sass/modules/teaser/_presse.scss */
.press .contact-info strong,
.press .contact-info span,
.press .contact-info a {
  display: block;
}
/* line 40, ../../sass/modules/teaser/_presse.scss */
.press .contact-info span {
  margin-bottom: .5em;
}
/* line 44, ../../sass/modules/teaser/_presse.scss */
.press .button-container {
  height: 30px;
}
/* line 46, ../../sass/modules/teaser/_presse.scss */
.press .button-container .button-after {
  margin: 0;
}
/* line 48, ../../sass/modules/teaser/_presse.scss */
.press .button-container .button-after a {
  display: block;
  height: 30px;
  line-height: 30px;
  text-decoration: none;
  color: #e2001a;
}
/* line 54, ../../sass/modules/teaser/_presse.scss */
.press .button-container .button-after a:after {
  content: "\00BB";
  float: right;
  margin-left: 10px;
  font-size: 35px;
  padding: 0 5px 7px;
  line-height: 21px;
  color: #fff;
  background-color: #e2001a;
  border: 1px solid #e2001a;
}
/* line 66, ../../sass/modules/teaser/_presse.scss */
.press .button-container .button-after a:hover:after {
  color: #e2001a;
  background-color: #fff;
}
/* line 74, ../../sass/modules/teaser/_presse.scss */
.press .buttonlike {
  display: block;
}
/* line 76, ../../sass/modules/teaser/_presse.scss */
.press .buttonlike a {
  width: 130px;
}
/* line 78, ../../sass/modules/teaser/_presse.scss */
.press .buttonlike a:after {
  position: relative;
  top: -11%;
  font-size: 35px;
}
/* line 84, ../../sass/modules/teaser/_presse.scss */
.press .buttonlike.red a:hover {
  background-color: #e2001a;
  color: #fff;
}

/* line 1, ../../sass/modules/teaser/_slick-slider.scss */
.slick-slider {
  margin-bottom: 10px;
}
/* line 3, ../../sass/modules/teaser/_slick-slider.scss */
.slick-slider .slick-slide {
  padding: 0 4px;
}
/* line 6, ../../sass/modules/teaser/_slick-slider.scss */
.slick-slider .slick-prev {
  left: 4px;
  background-color: #e2001a;
  height: 30px;
  width: 30px;
  margin-top: -15px;
}
/* line 12, ../../sass/modules/teaser/_slick-slider.scss */
.slick-slider .slick-prev:before {
  font-family: "spar-regular", Arial, Helvetica, sans-serif;
  content: "\2039";
  line-height: 0.3;
  font-size: 35px;
  opacity: 1;
}
/* line 20, ../../sass/modules/teaser/_slick-slider.scss */
.slick-slider .slick-next {
  right: 4px;
  background-color: #e2001a;
  height: 30px;
  width: 30px;
  margin-top: -15px;
}
/* line 26, ../../sass/modules/teaser/_slick-slider.scss */
.slick-slider .slick-next:before {
  font-family: "spar-regular", Arial, Helvetica, sans-serif;
  content: "\203A";
  line-height: 0.3;
  font-size: 35px;
  opacity: 1;
}
/* line 34, ../../sass/modules/teaser/_slick-slider.scss */
.slick-slider .slick-disabled {
  display: none !important;
}
/* line 37, ../../sass/modules/teaser/_slick-slider.scss */
.slick-slider.carousel {
  overflow: hidden;
  margin-bottom: 0;
}
/* line 40, ../../sass/modules/teaser/_slick-slider.scss */
.slick-slider.carousel .slick-slide {
  padding: 0;
}
/* line 43, ../../sass/modules/teaser/_slick-slider.scss */
.slick-slider.carousel .slick-dots {
  bottom: -10px;
}
/* line 45, ../../sass/modules/teaser/_slick-slider.scss */
.slick-slider.carousel .slick-dots li {
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  margin: 0 7px;
  background-color: #fff;
}
/* line 49, ../../sass/modules/teaser/_slick-slider.scss */
.slick-slider.carousel .slick-dots li:hover, .slick-slider.carousel .slick-dots li:focus {
  background-color: #f6f4f1;
}
/* line 52, ../../sass/modules/teaser/_slick-slider.scss */
.slick-slider.carousel .slick-dots li.slick-active {
  background-color: #e2001a;
}
/* line 55, ../../sass/modules/teaser/_slick-slider.scss */
.slick-slider.carousel .slick-dots li button:before {
  content: normal;
}
@media only screen and (max-width: 1028px) {
  /* line 43, ../../sass/modules/teaser/_slick-slider.scss */
  .slick-slider.carousel .slick-dots {
    right: 40%;
  }
}
@media only screen and (max-width: 780px) {
  /* line 43, ../../sass/modules/teaser/_slick-slider.scss */
  .slick-slider.carousel .slick-dots {
    right: auto;
  }
}
/* line 67, ../../sass/modules/teaser/_slick-slider.scss */
.slick-slider.reviewslider {
  margin-bottom: 2px;
}
/* line 70, ../../sass/modules/teaser/_slick-slider.scss */
.slick-slider .fixed-item {
  left: 0 !important;
  opacity: 1 !important;
  z-index: 1000 !important;
}

/* line 1, ../../sass/modules/teaser/_download.scss */
.download {
  padding-bottom: 50px !important;
}
/* line 3, ../../sass/modules/teaser/_download.scss */
.download.imageteaser {
  padding-bottom: 5px !important;
}
/* line 4, ../../sass/modules/teaser/_download.scss */
.download .teaserheader-small + .teaser-footer, .download .teaserheadsmall + .teaser-footer {
  position: static;
}
/* line 7, ../../sass/modules/teaser/_download.scss */
.download p, .download ul, .download .teaserheadsmall {
  margin-right: 0;
}

/* line 11, ../../sass/modules/teaser/_download.scss */
.downloadlink {
  display: block;
  background-color: #ddd8d3;
  border: 1px solid #ddd8d3;
  color: #333;
  padding: 10px;
  text-align: center;
  text-decoration: none;
}
/* line 19, ../../sass/modules/teaser/_download.scss */
.downloadlink:hover, .downloadlink:focus {
  background-color: #333;
  border-color: #333;
  color: #f6f4f1;
}
/* line 24, ../../sass/modules/teaser/_download.scss */
.downloadlink:after {
  content: "»";
  display: inline-block;
  margin-left: 15px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  position: relative;
  top: 1px;
}

/* line 34, ../../sass/modules/teaser/_download.scss */
.downloadlink + .downloadlink {
  margin-top: 5px;
}

/* line 38, ../../sass/modules/teaser/_download.scss */
.teaserimage {
  position: static !important;
  padding-right: 0 !important;
}

/* line 1, ../../sass/modules/teaser/_faq.scss */
.faq-container {
  margin: 0 0 20px 0;
  overflow: hidden;
}
/* line 4, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-btn {
  width: 100%;
  margin: 5px auto 0;
  padding: 15px 30px 15px 15px;
  cursor: pointer;
  background-color: #f6f4f1;
  position: relative;
}
/* line 11, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-btn:first-child {
  margin-top: 0;
}
/* line 14, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-btn:after {
  content: "\203a";
  font-weight: normal;
  display: inline-block;
  font-size: 35px;
  position: absolute;
  right: 13px;
  top: 0;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
/* line 24, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-btn h3 {
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.25;
}
/* line 30, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-btn:hover h3 {
  color: #e2001a;
}
/* line 33, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-btn:hover:after {
  color: #e2001a;
}
/* line 38, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-content {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  color: #333;
  background: #fff;
}
/* line 44, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-content .faq-content-inner {
  padding: 20px;
}
/* line 46, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-content .faq-content-inner > *:last-child {
  margin-bottom: 0;
}
/* line 49, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-content .faq-content-inner ul {
  margin-left: 7px;
}
/* line 52, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-content .faq-content-inner ul li {
  position: relative;
  padding-left: 10px;
}
/* line 55, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-content .faq-content-inner ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  background-color: #e2001a;
  position: absolute;
  left: -6px;
  top: 9px;
}
/* line 67, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-content .faq-content-inner .list-element {
  word-wrap: break-word;
}
/* line 69, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-content .faq-content-inner .list-element > h2 {
  padding-top: 20px;
}
/* line 75, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-content .faq-content-inner .download-list li:before {
  width: 8px;
  height: 15px;
  background-image: url('../images/icons/download_list_icon.gif');
  background-color: transparent;
  top: 2px;
}
/* line 83, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-content .faq-content-inner .download-list li:hover:before {
  background-image: url('../images/icons/download_list_icon_red.gif');
}
/* line 89, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-content .faq-content-inner .float-right {
  margin: 0 0 1em 1em;
}
@media only screen and (max-width: 480px) {
  /* line 89, ../../sass/modules/teaser/_faq.scss */
  .faq-container .faq-content .faq-content-inner .float-right {
    float: none;
    margin: 0 0 1em 0;
  }
}
/* line 96, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-content .faq-content-inner h3 {
  font-size: 18px;
  color: #444;
}
/* line 100, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-content .faq-content-inner h4 {
  font-size: 16px;
  color: #e2001a;
}
/* line 104, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-content .faq-content-inner .videocnt {
  overflow: hidden;
}
/* line 107, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-content .faq-content-inner .teaser {
  padding: 0;
  border: none;
  background-color: transparent;
}
/* line 111, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-content .faq-content-inner .teaser .teaser-footer {
  padding-left: 0;
  padding-right: 0;
}
/* line 117, ../../sass/modules/teaser/_faq.scss */
.faq-container .faq-content .faq-content-inner .teaseraside h3 {
  color: #fff;
}

/* line 126, ../../sass/modules/teaser/_faq.scss */
.hellgrau1 .faq-btn, .white-bg .faq-btn {
  background-color: #ddd8d3;
}

/* line 132, ../../sass/modules/teaser/_faq.scss */
.white-bg .faq-content {
  background: #f6f4f1;
}

/* line 140, ../../sass/modules/teaser/_faq.scss */
.white-bg .hellgrau1 .faq-btn {
  background-color: #ddd8d3;
}
/* line 143, ../../sass/modules/teaser/_faq.scss */
.white-bg .hellgrau1 .faq-content {
  background: #fff;
}
/* line 148, ../../sass/modules/teaser/_faq.scss */
.white-bg .hellgrau2 .faq-btn {
  background-color: #f6f4f1;
}
/* line 151, ../../sass/modules/teaser/_faq.scss */
.white-bg .hellgrau2 .faq-content {
  background: #fff;
}
/* line 155, ../../sass/modules/teaser/_faq.scss */
.white-bg .hellgrau1 .selected,
.white-bg .hellgrau2 .selected,
.white-bg .mittelgrau .selected,
.white-bg .white-bg .selected {
  background-color: #a3988e;
}
/* line 160, ../../sass/modules/teaser/_faq.scss */
.white-bg .hellgrau1 .selected:after,
.white-bg .hellgrau2 .selected:after,
.white-bg .mittelgrau .selected:after,
.white-bg .white-bg .selected:after {
  content: "\203a";
  color: #fff;
  font-weight: normal;
  right: 21px;
  top: -1px;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
/* line 168, ../../sass/modules/teaser/_faq.scss */
.white-bg .hellgrau1 .selected h3, .white-bg .hellgrau1 .selected:hover h3,
.white-bg .hellgrau2 .selected h3,
.white-bg .hellgrau2 .selected:hover h3,
.white-bg .mittelgrau .selected h3,
.white-bg .mittelgrau .selected:hover h3,
.white-bg .white-bg .selected h3,
.white-bg .white-bg .selected:hover h3 {
  color: #fff;
}
/* line 172, ../../sass/modules/teaser/_faq.scss */
.white-bg .hellgrau1 .selected:hover:after,
.white-bg .hellgrau2 .selected:hover:after,
.white-bg .mittelgrau .selected:hover:after,
.white-bg .white-bg .selected:hover:after {
  color: #fff;
}

/* line 179, ../../sass/modules/teaser/_faq.scss */
.js .faq-content {
  display: none;
}

/* line 186, ../../sass/modules/teaser/_faq.scss */
.ym-g25 .faq-content-inner img,
.ym-g75 .ym-g33 .faq-content-inner img {
  display: none;
}

/* line 192, ../../sass/modules/teaser/_faq.scss */
.selected,
.hellgrau1 .selected,
.hellgrau2 .selected,
.mittelgrau .selected,
.white-bg .selected {
  background-color: #a3988e;
}
/* line 198, ../../sass/modules/teaser/_faq.scss */
.selected:after,
.hellgrau1 .selected:after,
.hellgrau2 .selected:after,
.mittelgrau .selected:after,
.white-bg .selected:after {
  content: "\203a";
  color: #fff;
  font-weight: normal;
  right: 21px;
  top: -1px;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
/* line 206, ../../sass/modules/teaser/_faq.scss */
.selected h3, .selected:hover h3,
.hellgrau1 .selected h3,
.hellgrau1 .selected:hover h3,
.hellgrau2 .selected h3,
.hellgrau2 .selected:hover h3,
.mittelgrau .selected h3,
.mittelgrau .selected:hover h3,
.white-bg .selected h3,
.white-bg .selected:hover h3 {
  color: #fff;
}
/* line 210, ../../sass/modules/teaser/_faq.scss */
.selected:hover:after,
.hellgrau1 .selected:hover:after,
.hellgrau2 .selected:hover:after,
.mittelgrau .selected:hover:after,
.white-bg .selected:hover:after {
  color: #fff;
}

/* line 216, ../../sass/modules/teaser/_faq.scss */
.mittelgrau .selected {
  background-color: #ddd8d3;
}

/* line 1, ../../sass/modules/teaser/_historymodule.scss */
.historymodule {
  background-image: url('../images/keyvisuals/keyvisual-geschichte.jpg?1514982395');
  padding: 30px;
}
/* line 4, ../../sass/modules/teaser/_historymodule.scss */
.historymodule .faq-container {
  border-bottom: 1px #fff solid;
  margin-bottom: 0;
}
/* line 7, ../../sass/modules/teaser/_historymodule.scss */
.historymodule .faq-container .faq-btn {
  border-top: 1px #fff solid;
  background-color: transparent;
  margin: 0 auto;
}
/* line 11, ../../sass/modules/teaser/_historymodule.scss */
.historymodule .faq-container .faq-btn h3 {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  zoom: 1;
  -webkit-transition: font-size 0.5s;
  -moz-transition: font-size 0.5s;
  -ms-transition: font-size 0.5s;
  -o-transition: font-size 0.5s;
  transition: font-size 0.5s;
}
/* line 177, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.historymodule .faq-container .faq-btn h3:before {
  content: "";
  display: table;
}
/* line 182, ../../sass/yaml-sass/mixins/_yaml-mixins-core.scss */
.historymodule .faq-container .faq-btn h3:after {
  clear: both;
  content: ".";
  display: block;
  font-size: 0;
  height: 0;
  visibility: hidden;
}
/* line 16, ../../sass/modules/teaser/_historymodule.scss */
.historymodule .faq-container .faq-btn h3 .float-left {
  margin: 0;
  margin-right: 20px;
  color: rgba(255, 255, 255, 0.3);
}
/* line 22, ../../sass/modules/teaser/_historymodule.scss */
.historymodule .faq-container .faq-btn:after {
  color: rgba(255, 255, 255, 0.6);
}
/* line 25, ../../sass/modules/teaser/_historymodule.scss */
.historymodule .faq-container .faq-btn:hover, .historymodule .faq-container .faq-btn:focus {
  -webkit-transition: font-size 0.5s;
  -moz-transition: font-size 0.5s;
  -ms-transition: font-size 0.5s;
  -o-transition: font-size 0.5s;
  transition: font-size 0.5s;
}
/* line 27, ../../sass/modules/teaser/_historymodule.scss */
.historymodule .faq-container .faq-btn:hover h3, .historymodule .faq-container .faq-btn:focus h3 {
  font-size: 21px;
  color: #fff;
  -webkit-transition: font-size 0.5s;
  -moz-transition: font-size 0.5s;
  -ms-transition: font-size 0.5s;
  -o-transition: font-size 0.5s;
  transition: font-size 0.5s;
}
/* line 31, ../../sass/modules/teaser/_historymodule.scss */
.historymodule .faq-container .faq-btn:hover h3 .float-left, .historymodule .faq-container .faq-btn:focus h3 .float-left {
  color: #fff;
}
/* line 35, ../../sass/modules/teaser/_historymodule.scss */
.historymodule .faq-container .faq-btn:hover:after, .historymodule .faq-container .faq-btn:focus:after {
  color: #fff;
}
/* line 39, ../../sass/modules/teaser/_historymodule.scss */
.historymodule .faq-container .faq-btn.selected {
  background-color: rgba(131, 131, 131, 0.5);
}
/* line 41, ../../sass/modules/teaser/_historymodule.scss */
.historymodule .faq-container .faq-btn.selected h3 {
  font-size: 21px;
  color: #fff;
}
/* line 44, ../../sass/modules/teaser/_historymodule.scss */
.historymodule .faq-container .faq-btn.selected h3 .float-left {
  color: #fff;
}
/* line 48, ../../sass/modules/teaser/_historymodule.scss */
.historymodule .faq-container .faq-btn.selected:after {
  color: #fff;
}
/* line 53, ../../sass/modules/teaser/_historymodule.scss */
.historymodule .faq-container .faq-content {
  background-color: rgba(131, 131, 131, 0.5);
}
/* line 55, ../../sass/modules/teaser/_historymodule.scss */
.historymodule .faq-container .faq-content .faq-content-inner {
  padding-top: 0;
  color: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
/* line 59, ../../sass/modules/teaser/_historymodule.scss */
.historymodule .faq-container .faq-content .faq-content-inner p {
  color: #fff;
  margin-bottom: 10px;
}
/* line 62, ../../sass/modules/teaser/_historymodule.scss */
.historymodule .faq-container .faq-content .faq-content-inner p:last-child {
  margin-bottom: 0;
}
/* line 66, ../../sass/modules/teaser/_historymodule.scss */
.historymodule .faq-container .faq-content .faq-content-inner img {
  float: left;
  display: inline;
  margin: 5px 15px 15px 0;
  width: auto;
}
/* line 75, ../../sass/modules/teaser/_historymodule.scss */
.historymodule .faq-container.old-school .faq-btn h3,
.historymodule .faq-container.old-school .faq-content .faq-content-inner p {
  font-family: Palatino,"Times New Roman", Times, serif;
}

/* line 1, ../../sass/modules/teaser/_contact.scss */
.teaser.contact {
  background-color: #fff;
}
/* line 3, ../../sass/modules/teaser/_contact.scss */
.teaser.contact .ym-g50.ym-gl,
.teaser.contact .ym-g50.ym-gr {
  margin-bottom: 10px;
}
/* line 9, ../../sass/modules/teaser/_contact.scss */
.teaser.contact .ym-gl:last-child,
.teaser.contact .ym-gr:last-child {
  margin-bottom: 55px;
}
/* line 13, ../../sass/modules/teaser/_contact.scss */
.teaser.contact p {
  margin-right: 0;
  padding-right: 0;
}

/* line 22, ../../sass/modules/teaser/_contact.scss */
.js .teaser.contact .ym-gl:last-child,
.js .teaser.contact .ym-gr:last-child {
  margin-bottom: 0;
}

/* line 30, ../../sass/modules/teaser/_contact.scss */
.contact h4 {
  font-size: 14px;
  margin-bottom: 10px;
}
/* line 31, ../../sass/modules/teaser/_contact.scss */
.contact .no-list {
  font-size: 12px;
}

/* line 35, ../../sass/modules/teaser/_contact.scss */
.kontaktbox .teaserheadsmall {
  margin-right: 0;
}
/* line 38, ../../sass/modules/teaser/_contact.scss */
.kontaktbox p {
  margin-right: 0;
}

/* line 48, ../../sass/modules/teaser/_contact.scss */
.contact-small .kontaktbox {
  margin-bottom: 20px;
}

/* line 53, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste {
  margin-right: 0;
}

/* line 57, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste,
.kontaktliste {
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 1.5em;
}
/* line 62, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste, .teaser .kontaktliste li,
.kontaktliste,
.kontaktliste li {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}
/* line 67, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste li,
.kontaktliste li {
  margin-bottom: 15px;
}
/* line 69, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste li:before,
.kontaktliste li:before {
  display: block;
  background-color: transparent;
  top: auto;
  content: "";
  width: 21px;
  height: 21px;
  float: left;
  margin-right: 10px;
  background-repeat: no-repeat;
}
/* line 81, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste .telefon,
.kontaktliste .telefon {
  position: relative;
  padding-left: 30px;
}
/* line 84, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste .telefon:before,
.kontaktliste .telefon:before {
  background-image: url('../images/icons/phone_red.png');
  position: absolute;
  left: 0;
}
/* line 90, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste .fax,
.kontaktliste .fax {
  position: relative;
  padding-left: 30px;
}
/* line 93, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste .fax:before,
.kontaktliste .fax:before {
  background-image: url('../images/icons/printer_red.png');
  position: absolute;
  left: 0;
}
/* line 99, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste .email,
.kontaktliste .email {
  position: relative;
  padding-left: 30px;
}
/* line 102, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste .email:before,
.kontaktliste .email:before {
  height: 15px;
  background-image: url('../images/icons/mail_red.png');
  position: absolute;
  left: 0;
}
/* line 108, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste .email .mail_position,
.kontaktliste .email .mail_position {
  top: -3px;
  position: relative;
}
/* line 112, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste .email .fa-info-circle,
.kontaktliste .email .fa-info-circle {
  cursor: pointer;
  transform: none;
  position: relative;
  display: inline-block;
  background-image: url('../images/../images/icons/info-icon.png');
  width: 17px;
  height: 17px;
  background-size: 17px;
  background-repeat: no-repeat;
}
/* line 124, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste .email .info-arrow:after,
.kontaktliste .email .info-arrow:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #e2001a transparent;
  bottom: -4px;
  right: 4px;
}
/* line 136, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste .email .privacy-police,
.kontaktliste .email .privacy-police {
  width: 200px;
}
/* line 139, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste .email .privacy-police,
.teaser .kontaktliste .email .privacy-police-form,
.kontaktliste .email .privacy-police,
.kontaktliste .email .privacy-police-form {
  display: none;
  background-color: #f7f7f7;
  font-size: 11px;
  line-height: 14px;
  position: absolute;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  padding: 15px;
  z-index: 1000;
  top: 21px;
}
/* line 150, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste .email .privacy-police a,
.teaser .kontaktliste .email .privacy-police-form a,
.kontaktliste .email .privacy-police a,
.kontaktliste .email .privacy-police-form a {
  text-decoration: underline;
}
/* line 155, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste .link,
.kontaktliste .link {
  position: relative;
  padding-left: 30px;
}
/* line 158, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste .link:before,
.kontaktliste .link:before {
  background-image: url('../images/icons/globe_red.png');
  position: absolute;
  left: 0;
  width: 21px;
}
/* line 165, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste .contactname,
.kontaktliste .contactname {
  color: #e2001a;
  margin-bottom: 0;
}
/* line 168, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste .contactname:before,
.kontaktliste .contactname:before {
  display: none;
}
/* line 171, ../../sass/modules/teaser/_contact.scss */
.teaser .kontaktliste .contactposition:before,
.kontaktliste .contactposition:before {
  display: none;
}

/* line 174, ../../sass/modules/teaser/_contact.scss */
.kontakt-button-box {
  clear: both;
  width: 100%;
}
/* line 177, ../../sass/modules/teaser/_contact.scss */
.kontakt-button-box .tocontact {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-right: 20px;
}
/* line 183, ../../sass/modules/teaser/_contact.scss */
.kontakt-button-box .tocontact a {
  overflow: hidden;
}
/* line 184, ../../sass/modules/teaser/_contact.scss */
.kontakt-button-box .tocontact a:after {
  content: "\00BB";
  float: right;
  margin-right: 10px;
  color: inherit;
}
@media only screen and (max-width: 640px) {
  /* line 174, ../../sass/modules/teaser/_contact.scss */
  .kontakt-button-box {
    position: static;
    bottom: auto;
    padding-right: 0;
  }
}

/* line 2, ../../sass/modules/_dl-form.scss */
.dl-form .teaserheadsmall {
  margin-right: 0;
}
/* line 6, ../../sass/modules/_dl-form.scss */
.dl-form form fieldset {
  padding: 15px;
  margin-bottom: 20px;
  background-color: #f6f4f1;
}
/* line 12, ../../sass/modules/_dl-form.scss */
.dl-form form .faq-container fieldset {
  padding: 0;
  margin-bottom: 20px;
}
/* line 17, ../../sass/modules/_dl-form.scss */
.dl-form form div {
  margin-bottom: 10px;
}
/* line 19, ../../sass/modules/_dl-form.scss */
.dl-form form div.input-cnt {
  position: relative;
}
/* line 21, ../../sass/modules/_dl-form.scss */
.dl-form form div.input-cnt.ym-clearfix {
  margin-bottom: 20px;
}
/* line 24, ../../sass/modules/_dl-form.scss */
.dl-form form div.input-cnt.file {
  margin: 20px 0;
}
/* line 28, ../../sass/modules/_dl-form.scss */
.dl-form form div.radio-box {
  margin-bottom: 20px;
  text-indent: -30px;
  margin-left: 30px;
  line-height: 1.5;
}
/* line 35, ../../sass/modules/_dl-form.scss */
.dl-form form label {
  display: block;
  margin-bottom: 5px;
}
/* line 38, ../../sass/modules/_dl-form.scss */
.dl-form form label.upload-label {
  font-size: 12px;
  text-align: right;
}
/* line 43, ../../sass/modules/_dl-form.scss */
.dl-form form input,
.dl-form form select,
.dl-form form textarea {
  font-family: "spar-regular", Arial, Helvetica, sans-serif;
}
/* line 48, ../../sass/modules/_dl-form.scss */
.dl-form form input,
.dl-form form textarea {
  border: 1px solid #ddd8d3;
  padding: 10px;
  width: 100%;
}
/* line 54, ../../sass/modules/_dl-form.scss */
.dl-form form textarea {
  height: 200px;
  overflow-y: hidden;
  resize: none;
}
/* line 59, ../../sass/modules/_dl-form.scss */
.dl-form form select {
  border: 1px solid #ddd8d3;
  padding: 9px 6px;
  width: 100%;
}
/* line 64, ../../sass/modules/_dl-form.scss */
.dl-form form input[type=radio] {
  width: auto;
  position: relative;
  top: 2px;
  margin-right: 15px;
  margin-left: 5px;
  border: none;
}
/* line 72, ../../sass/modules/_dl-form.scss */
.dl-form form button,
.dl-form form input[type="button"] {
  display: block;
  padding: 10px 24px 10px 10px;
  background-color: #e2001a;
  border: 1px solid #e2001a;
  color: #fff;
  width: 100%;
  cursor: pointer;
  text-align: left;
  position: relative;
  margin-top: 21px;
}
/* line 84, ../../sass/modules/_dl-form.scss */
.dl-form form button:after,
.dl-form form input[type="button"]:after {
  content: "\00BB";
  float: right;
  right: 13px;
  position: absolute;
}
/* line 90, ../../sass/modules/_dl-form.scss */
.dl-form form button:hover, .dl-form form button:focus,
.dl-form form input[type="button"]:hover,
.dl-form form input[type="button"]:focus {
  background-color: #fff;
  color: #e2001a;
}
/* line 94, ../../sass/modules/_dl-form.scss */
.dl-form form button:active,
.dl-form form input[type="button"]:active {
  position: relative;
  top: 1px;
  left: 1px;
}
/* line 99, ../../sass/modules/_dl-form.scss */
.dl-form form button.add-attachment, .dl-form form button[name="file_reset"],
.dl-form form input[type="button"].add-attachment,
.dl-form form input[type="button"][name="file_reset"] {
  background-color: #a3988e;
  border: 1px solid #a3988e;
}
/* line 103, ../../sass/modules/_dl-form.scss */
.dl-form form button.add-attachment:hover, .dl-form form button.add-attachment:focus, .dl-form form button[name="file_reset"]:hover, .dl-form form button[name="file_reset"]:focus,
.dl-form form input[type="button"].add-attachment:hover,
.dl-form form input[type="button"].add-attachment:focus,
.dl-form form input[type="button"][name="file_reset"]:hover,
.dl-form form input[type="button"][name="file_reset"]:focus {
  color: #a3988e;
  background-color: #fff;
}
/* line 109, ../../sass/modules/_dl-form.scss */
.dl-form form #attachments {
  margin-top: 21px;
}
/* line 111, ../../sass/modules/_dl-form.scss */
.dl-form form #attachments:first-child {
  margin-top: 0px;
}
/* line 115, ../../sass/modules/_dl-form.scss */
.dl-form form #acceptConditions {
  width: auto;
  margin-right: 5px;
}
/* line 119, ../../sass/modules/_dl-form.scss */
.dl-form form #datepicker,
.dl-form form .datepicker-input,
.dl-form form input[name="file_reset"] {
  width: 49.5%;
  float: left;
}
/* line 125, ../../sass/modules/_dl-form.scss */
.dl-form form input[name="file_reset"] {
  float: right;
}
/* line 128, ../../sass/modules/_dl-form.scss */
.dl-form form .remove-saved-file {
  background-image: url('../images/icons/trash-icon.png?1514982395');
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  width: 17px !important;
  height: 19px !important;
  margin: 0 10px 0 0 !important;
  float: left;
}
/* line 139, ../../sass/modules/_dl-form.scss */
.dl-form form .remove-saved-file:hover, .dl-form form .remove-saved-file:focus {
  background-position: 0px -46px;
}
/* line 143, ../../sass/modules/_dl-form.scss */
.dl-form form .add-attachment {
  float: left;
  padding: 10px;
  width: 46.5% !important;
  margin-right: 4%;
  white-space: normal;
}
/* line 150, ../../sass/modules/_dl-form.scss */
.dl-form form .datepicker-button {
  float: right;
  width: 46.5%;
  margin-top: 0;
  margin-left: 4%;
  background-color: #a3988e;
  border: 1px solid #a3988e;
}
/* line 157, ../../sass/modules/_dl-form.scss */
.dl-form form .datepicker-button:hover, .dl-form form .datepicker-button:focus {
  color: #a3988e;
}
/* line 161, ../../sass/modules/_dl-form.scss */
.dl-form form select#timeRequest,
.dl-form form select#timepicker {
  float: right;
  width: 46.5%;
  margin-top: 0;
  margin-left: 4%;
}
/* line 168, ../../sass/modules/_dl-form.scss */
.dl-form form .hasErrors {
  border: 1px solid #e2001a;
}
/* line 170, ../../sass/modules/_dl-form.scss */
.dl-form form .hasErrors h3 {
  color: #e2001a;
}
/* line 173, ../../sass/modules/_dl-form.scss */
.dl-form form .hasErrors:after {
  color: #e2001a;
}
/* line 177, ../../sass/modules/_dl-form.scss */
.dl-form form span.hint {
  margin-top: 10px;
  display: block;
  font-size: 11px;
  text-align: right;
}
/* line 183, ../../sass/modules/_dl-form.scss */
.dl-form form .privacy-police {
  text-align: left !important;
}
@media only screen and (max-width: 880px) {
  /* line 187, ../../sass/modules/_dl-form.scss */
  .dl-form form button {
    margin-top: 21px;
  }
  /* line 190, ../../sass/modules/_dl-form.scss */
  .dl-form form .ym-g33.ym-gr {
    padding-top: 10px;
  }
}
@media only screen and (max-width: 640px) {
  /* line 195, ../../sass/modules/_dl-form.scss */
  .dl-form form button {
    margin-top: 21px;
  }
}
@media only screen and (max-width: 480px) {
  /* line 200, ../../sass/modules/_dl-form.scss */
  .dl-form form #datepicker,
  .dl-form form .datepicker-input,
  .dl-form form input[name="file_reset"] {
    float: none;
    width: 100%;
  }
  /* line 206, ../../sass/modules/_dl-form.scss */
  .dl-form form .datepicker-button,
  .dl-form form select#timeRequest,
  .dl-form form select#timepicker {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  /* line 214, ../../sass/modules/_dl-form.scss */
  .dl-form form .add-attachment {
    float: none;
    width: 100% !important;
    margin-left: 0;
  }
}
/* line 221, ../../sass/modules/_dl-form.scss */
.dl-form .error {
  background-color: transparent;
  color: #e2001a;
  font-size: 11px;
  margin-bottom: 10px;
}
/* line 227, ../../sass/modules/_dl-form.scss */
.dl-form .form-errors {
  color: #e2001a;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 107.1%;
}

/* line 236, ../../sass/modules/_dl-form.scss */
.teaser.service-search .teaserheader-small {
  padding-bottom: 13px;
}
/* line 239, ../../sass/modules/_dl-form.scss */
.teaser.service-search ul {
  margin: 0 0 5px 0;
  list-style: none;
}
/* line 242, ../../sass/modules/_dl-form.scss */
.teaser.service-search ul li {
  color: #e2001a;
  margin-left: 0;
}
/* line 245, ../../sass/modules/_dl-form.scss */
.teaser.service-search ul li span {
  color: #444;
}

/* line 252, ../../sass/modules/_dl-form.scss */
#ui-datepicker-div {
  display: none;
  padding: 10px;
  background-color: #fff;
  font-size: 13px;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
}
/* line 258, ../../sass/modules/_dl-form.scss */
#ui-datepicker-div.hidden:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 8px;
  border-style: solid;
  border-color: transparent #e2001a transparent transparent;
  top: 75px;
  left: -16px;
}
/* line 269, ../../sass/modules/_dl-form.scss */
#ui-datepicker-div .ui-datepicker-prev {
  float: left;
  margin-left: 5px;
  cursor: pointer;
  text-decoration: none;
}
/* line 274, ../../sass/modules/_dl-form.scss */
#ui-datepicker-div .ui-datepicker-prev:before {
  content: "\00AB";
}
/* line 278, ../../sass/modules/_dl-form.scss */
#ui-datepicker-div .ui-datepicker-next {
  float: right;
  margin-right: 5px;
  cursor: pointer;
  text-decoration: none;
}
/* line 283, ../../sass/modules/_dl-form.scss */
#ui-datepicker-div .ui-datepicker-next:after {
  content: "\00BB";
}
/* line 287, ../../sass/modules/_dl-form.scss */
#ui-datepicker-div .ui-datepicker-header {
  padding: 5px 0 15px 0;
  border-bottom: 1px solid #ddd8d3;
}
/* line 291, ../../sass/modules/_dl-form.scss */
#ui-datepicker-div .ui-datepicker-title {
  text-align: center;
  font-size: 115%;
}
/* line 295, ../../sass/modules/_dl-form.scss */
#ui-datepicker-div .ui-datepicker-calendar {
  width: 200px;
  border-top: none;
  border-bottom: none;
  margin-bottom: 0;
}
/* line 300, ../../sass/modules/_dl-form.scss */
#ui-datepicker-div .ui-datepicker-calendar thead {
  font-weight: normal;
}
/* line 303, ../../sass/modules/_dl-form.scss */
#ui-datepicker-div .ui-datepicker-calendar tr {
  text-align: center;
}
/* line 305, ../../sass/modules/_dl-form.scss */
#ui-datepicker-div .ui-datepicker-calendar tr th {
  border-bottom: none;
  color: #e2001a;
  text-align: center;
  font-weight: normal;
}
/* line 311, ../../sass/modules/_dl-form.scss */
#ui-datepicker-div .ui-datepicker-calendar tr td {
  width: 27px;
  text-align: center;
  border-top: none;
  line-height: 0.8em;
}
/* line 316, ../../sass/modules/_dl-form.scss */
#ui-datepicker-div .ui-datepicker-calendar tr td.ui-datepicker-current-day {
  background-color: #a3988e;
}
/* line 318, ../../sass/modules/_dl-form.scss */
#ui-datepicker-div .ui-datepicker-calendar tr td.ui-datepicker-current-day a {
  color: #fff;
}
/* line 322, ../../sass/modules/_dl-form.scss */
#ui-datepicker-div .ui-datepicker-calendar tr td:hover {
  background-color: #e2001a;
}
/* line 324, ../../sass/modules/_dl-form.scss */
#ui-datepicker-div .ui-datepicker-calendar tr td:hover a {
  color: #fff;
}
/* line 328, ../../sass/modules/_dl-form.scss */
#ui-datepicker-div .ui-datepicker-calendar tr td a {
  text-decoration: none;
}
/* line 332, ../../sass/modules/_dl-form.scss */
#ui-datepicker-div .ui-datepicker-calendar tr td.ui-state-disabled span {
  color: #a3988e;
  cursor: default;
}
/* line 337, ../../sass/modules/_dl-form.scss */
#ui-datepicker-div .ui-datepicker-calendar tr td.ui-state-disabled:hover {
  background-color: inherit;
}

/* line 2, ../../sass/modules/_company-search.scss */
.company-search .teaserheadsmall {
  margin-right: 0;
}
/* line 5, ../../sass/modules/_company-search.scss */
.company-search form {
  padding: 15px;
  background-color: #f6f4f1;
}
/* line 8, ../../sass/modules/_company-search.scss */
.company-search form div {
  margin-bottom: 10px;
}
/* line 10, ../../sass/modules/_company-search.scss */
.company-search form div.input-cnt {
  position: relative;
}
/* line 14, ../../sass/modules/_company-search.scss */
.company-search form label {
  display: block;
}
/* line 17, ../../sass/modules/_company-search.scss */
.company-search form input,
.company-search form select,
.company-search form textarea {
  font-family: "spar-regular", Arial, Helvetica, sans-serif;
}
/* line 22, ../../sass/modules/_company-search.scss */
.company-search form input {
  border: 1px solid #ddd8d3;
  padding: 10px;
  width: 100%;
}
/* line 27, ../../sass/modules/_company-search.scss */
.company-search form .search-icon {
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo0M0MxMkZCNDIwQjYxMUU0QTY2REMwRTBCMkUyNEZDMyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo5RTAyQzYwRTIwQjYxMUU0QTY2REMwRTBCMkUyNEZDMyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQzQzEyRkIyMjBCNjExRTRBNjZEQzBFMEIyRTI0RkMzIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjQzQzEyRkIzMjBCNjExRTRBNjZEQzBFMEIyRTI0RkMzIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+9IIJsQAAAiNJREFUeNqUlF2ITWEUhvc+9nQwk/KbvyJTkig1JSVClJSkSG5c6YyMCeFCOHeElDJzYdwJSdOUi0PEDblw8ndHcmH8RGZILoYRx/EsvbuWr31qn7eezrf3+fbbWuv71opLpa4oUAvMh/WwBhZCET7BY7gDt+Gbbe7r6w2/j5LgeRZ0iQnBfzNgCeyEh3ACbsGv0LTg1hbdJTgsw+/wAu7BXajCG+1dBgOwv7NzT7GR6XTLBFbr+QkcVPqrYB2sgM3QA59VppOwC+OWrPT36mPTddjnokplaT4TFvVpmAlHFcQDH6kdxG49P4XuDMNQV+A4jMIU2EG0rd50g2o4AhfgfZRPF1Vr0xaY603Xaj2o4ufViK6WaSLM86YLtB7WATSjj/BD63ZKUEhNx+rl76h5/YGa1uYTp6bDetkW3Ns8Gi/+ZUp31VLTquuYxU0Yxro55lGHV76mabHnQKmJaBfBRtcsr72pXYtHet4K23MYToIjysyi7CH1d970K5TV61PhrLWeLnWWbKich23usP7r/9iNvkNwKj1BVFEWH9SibarhJv16DcEBor0cmhbUomWll2pUpq1BvesuANMXG5kYXxvT0bHUb6pqVv6E2YouUXqpgQ3qY3ADlsM4d71WVio3B5OMmt3Xhzbi2tV+RUXyEt6KSOdwzmU2zQZN0uAwbPNzESvtWsa+qypNrw7ZNDnJcX3qDQzTk+/XnrIGy5m/AgwA2kSFnvOS1moAAAAASUVORK5CYII=') no-repeat;
  background-size: 100%;
  display: block;
  opacity: 0.3;
  height: 15px;
  width: 15px;
  top: 11px;
  right: 10px;
  position: absolute;
}
/* line 38, ../../sass/modules/_company-search.scss */
.company-search form button {
  display: block;
  padding: 10px 24px 10px 10px;
  background-color: #a3988e;
  border: 1px solid #a3988e;
  color: #fff;
  width: 100%;
  cursor: pointer;
  text-align: left;
  position: relative;
}
/* line 48, ../../sass/modules/_company-search.scss */
.company-search form button:after {
  content: "\00BB";
  float: right;
  right: 13px;
  position: absolute;
}
/* line 54, ../../sass/modules/_company-search.scss */
.company-search form button:hover, .company-search form button:focus {
  background-color: #fff;
  color: #a3988e;
}
/* line 58, ../../sass/modules/_company-search.scss */
.company-search form button:active {
  position: relative;
  top: 1px;
  left: 1px;
}

/* line 68, ../../sass/modules/_company-search.scss */
.company-search-result .textcntinner p:first-child {
  font-weight: normal;
}
/* line 71, ../../sass/modules/_company-search.scss */
.company-search-result h2 {
  font-size: 21px;
  color: #e2001a;
  margin-bottom: 0;
}
/* line 76, ../../sass/modules/_company-search.scss */
.company-search-result h3 {
  font-size: 20px;
  color: #e2001a;
  margin-bottom: 10px;
}
/* line 81, ../../sass/modules/_company-search.scss */
.company-search-result .additional-info {
  font-size: 16px;
  color: #333;
}
/* line 85, ../../sass/modules/_company-search.scss */
.company-search-result h4 {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  margin: 10px 0;
  clear: both;
}
/* line 92, ../../sass/modules/_company-search.scss */
.company-search-result .videocnt {
  margin-bottom: 30px;
}
/* line 95, ../../sass/modules/_company-search.scss */
.company-search-result #map_canvas {
  width: 100%;
  height: 300px;
  margin-bottom: 30px;
  border: 1px solid #ebebeb;
}
/* line 100, ../../sass/modules/_company-search.scss */
.company-search-result #map_canvas p {
  line-height: 1.35;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
}
/* line 108, ../../sass/modules/_company-search.scss */
.company-search-result .kontaktbox p {
  margin-bottom: 0;
  font-size: 100%;
}
/* line 113, ../../sass/modules/_company-search.scss */
.company-search-result .kontaktliste {
  margin-bottom: 0;
}
/* line 115, ../../sass/modules/_company-search.scss */
.company-search-result .kontaktliste li:last-child {
  margin-bottom: 0;
}

/* line 2, ../../sass/modules/_service-search.scss */
.service-search-form .teaserheadsmall {
  margin-right: 0;
}
/* line 5, ../../sass/modules/_service-search.scss */
.service-search-form form {
  padding: 15px;
  background-color: #f6f4f1;
}
/* line 8, ../../sass/modules/_service-search.scss */
.service-search-form form .ym-grid, .service-search-form form .mm, .service-search-form form .ym-grid .ym-gl, .service-search-form form .mm .ym-gl, .service-search-form form .ym-grid .ym-gr, .service-search-form form .mm .ym-gr {
  margin-bottom: 0;
}
/* line 11, ../../sass/modules/_service-search.scss */
.service-search-form form .ym-g33:first-child + .ym-g33 {
  padding: 0;
}
/* line 14, ../../sass/modules/_service-search.scss */
.service-search-form form div {
  margin-bottom: 10px;
}
/* line 16, ../../sass/modules/_service-search.scss */
.service-search-form form div.input-cnt {
  position: relative;
}
/* line 20, ../../sass/modules/_service-search.scss */
.service-search-form form label {
  display: block;
  margin-bottom: 5px;
}
/* line 24, ../../sass/modules/_service-search.scss */
.service-search-form form input,
.service-search-form form select,
.service-search-form form textarea {
  font-family: "spar-regular", Arial, Helvetica, sans-serif;
}
/* line 29, ../../sass/modules/_service-search.scss */
.service-search-form form input {
  border: 1px solid #ddd8d3;
  padding: 10px;
  width: 100%;
}
/* line 34, ../../sass/modules/_service-search.scss */
.service-search-form form select {
  border: 1px solid #ddd8d3;
  padding: 9px 25px 9px 6px;
  width: 100%;
}
/* line 39, ../../sass/modules/_service-search.scss */
.service-search-form form button {
  display: block;
  padding: 10px 24px 10px 10px;
  background-color: #e2001a;
  border: 1px solid #e2001a;
  color: #fff;
  width: 100%;
  cursor: pointer;
  text-align: left;
  position: relative;
  margin-top: 21px;
}
/* line 50, ../../sass/modules/_service-search.scss */
.service-search-form form button:after {
  content: "\00BB";
  float: right;
  right: 13px;
  position: absolute;
}
/* line 56, ../../sass/modules/_service-search.scss */
.service-search-form form button:hover, .service-search-form form button:focus {
  background-color: #fff;
  color: #e2001a;
}
/* line 60, ../../sass/modules/_service-search.scss */
.service-search-form form button:active {
  position: relative;
  top: 1px;
  left: 1px;
}
@media only screen and (max-width: 880px) {
  /* line 67, ../../sass/modules/_service-search.scss */
  .service-search-form form button {
    margin-top: 0;
  }
  /* line 70, ../../sass/modules/_service-search.scss */
  .service-search-form form .ym-g33.ym-gr {
    padding-top: 10px;
  }
  /* line 73, ../../sass/modules/_service-search.scss */
  .service-search-form form span.hint {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 640px) {
  /* line 78, ../../sass/modules/_service-search.scss */
  .service-search-form form button {
    margin-top: 10px;
  }
}
/* line 83, ../../sass/modules/_service-search.scss */
.service-search-form .error {
  background-color: transparent;
  position: absolute;
  color: #e2001a;
  font-size: 11px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 880px) {
  /* line 83, ../../sass/modules/_service-search.scss */
  .service-search-form .error {
    position: static;
  }
}

/* line 95, ../../sass/modules/_service-search.scss */
.error.noresults {
  background-color: transparent;
  color: #e2001a;
  font-size: 100%;
  margin-bottom: 1.5em;
}

/* line 103, ../../sass/modules/_service-search.scss */
.service-search-result #resultContainer {
  min-height: 528px;
}
/* line 105, ../../sass/modules/_service-search.scss */
.service-search-result #resultContainer .result-row {
  display: none;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 15px;
  margin-bottom: 15px;
  min-height: 166px;
}
/* line 112, ../../sass/modules/_service-search.scss */
.service-search-result #resultContainer #resultRow0,
.service-search-result #resultContainer #resultRow1,
.service-search-result #resultContainer #resultRow2 {
  display: block;
}
/* line 117, ../../sass/modules/_service-search.scss */
.service-search-result #resultContainer p {
  margin-right: 0;
  margin-bottom: 0;
  padding: 0 15px;
  float: left;
  width: 33%;
}
/* line 123, ../../sass/modules/_service-search.scss */
.service-search-result #resultContainer p span {
  color: #e2001a;
}
/* line 126, ../../sass/modules/_service-search.scss */
.service-search-result #resultContainer p strong {
  font-size: 15px;
  font-weight: normal;
}
/* line 130, ../../sass/modules/_service-search.scss */
.service-search-result #resultContainer p.active {
  color: #e2001a;
}
@media only screen and (max-width: 640px) {
  /* line 135, ../../sass/modules/_service-search.scss */
  .service-search-result #resultContainer .result-row {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  /* line 140, ../../sass/modules/_service-search.scss */
  .service-search-result #resultContainer p {
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 15px;
    margin-right: 0;
    padding: 0 0 15px 0;
    float: none;
    width: 100%;
  }
  /* line 149, ../../sass/modules/_service-search.scss */
  .service-search-result #resultContainer #resultRowThree p:last-child {
    border-bottom: none;
  }
}
/* line 155, ../../sass/modules/_service-search.scss */
.service-search-result h2 {
  font-size: 21px;
  color: #e2001a;
  margin-bottom: 0;
}
/* line 160, ../../sass/modules/_service-search.scss */
.service-search-result h3 {
  font-size: 20px;
  color: #e2001a;
  margin-bottom: 10px;
}
/* line 165, ../../sass/modules/_service-search.scss */
.service-search-result .additional-info {
  font-size: 16px;
  color: #333;
}
/* line 169, ../../sass/modules/_service-search.scss */
.service-search-result h4 {
  font-size: 18px;
  color: #e2001a;
  margin: 10px 0;
  clear: both;
}
/* line 175, ../../sass/modules/_service-search.scss */
.service-search-result #map_canvas {
  width: 100%;
  height: 320px;
  margin-bottom: 25px;
  border: 1px solid #ebebeb;
}
/* line 180, ../../sass/modules/_service-search.scss */
.service-search-result #map_canvas p {
  line-height: 1.35;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
}
/* line 185, ../../sass/modules/_service-search.scss */
.service-search-result #map_canvas p a {
  text-decoration: none;
}
/* line 190, ../../sass/modules/_service-search.scss */
.service-search-result .print-button {
  background-color: #e2001a;
  border: 1px solid #e2001a;
  color: #fff;
  padding: 10px 24px 10px 10px;
  position: relative;
  float: right;
  cursor: pointer;
}
/* line 198, ../../sass/modules/_service-search.scss */
.service-search-result .print-button:hover, .service-search-result .print-button:focus {
  background-color: #fff;
  color: #e2001a;
}
/* line 202, ../../sass/modules/_service-search.scss */
.service-search-result .print-button:after {
  content: "\00bb";
  float: right;
  position: absolute;
  right: 13px;
}
@media only screen and (max-width: 480px) {
  /* line 190, ../../sass/modules/_service-search.scss */
  .service-search-result .print-button {
    width: 100%;
  }
}
/* line 212, ../../sass/modules/_service-search.scss */
.service-search-result .search-request {
  margin: 25px 0 15px 0;
}
/* line 214, ../../sass/modules/_service-search.scss */
.service-search-result .search-request p {
  margin: 0;
}
@media only screen and (max-width: 880px) {
  /* line 218, ../../sass/modules/_service-search.scss */
  .service-search-result .search-request .ym-g66 {
    width: 66%;
  }
  /* line 221, ../../sass/modules/_service-search.scss */
  .service-search-result .search-request .ym-g33 {
    width: 33%;
  }
  /* line 224, ../../sass/modules/_service-search.scss */
  .service-search-result .search-request .print-button {
    float: none;
  }
}
@media only screen and (max-width: 640px) {
  /* line 229, ../../sass/modules/_service-search.scss */
  .service-search-result .search-request .ym-g66 {
    width: 100%;
  }
  /* line 232, ../../sass/modules/_service-search.scss */
  .service-search-result .search-request .ym-g33 {
    width: 100%;
    padding-left: 0;
  }
  /* line 236, ../../sass/modules/_service-search.scss */
  .service-search-result .search-request .print-button {
    width: 100%;
  }
}

/* line 244, ../../sass/modules/_service-search.scss */
.teaser.service-search .teaserheader-small {
  padding-bottom: 13px;
}
/* line 247, ../../sass/modules/_service-search.scss */
.teaser.service-search ul {
  margin: 0 0 5px 0;
  list-style: none;
}
/* line 250, ../../sass/modules/_service-search.scss */
.teaser.service-search ul li {
  color: #e2001a;
  margin-left: 0;
}
/* line 253, ../../sass/modules/_service-search.scss */
.teaser.service-search ul li span {
  color: #444;
}

/* line 1, ../../sass/modules/_search-results.scss */
.search-result {
  padding: 10px 10px 10px 10px;
}
/* line 3, ../../sass/modules/_search-results.scss */
.search-result .teaserheader-mixed {
  padding-bottom: 15px;
  margin-bottom: 10px;
}
/* line 6, ../../sass/modules/_search-results.scss */
.search-result .teaserheader-mixed .float-right {
  position: relative;
  top: 4px;
}
/* line 11, ../../sass/modules/_search-results.scss */
.search-result h4 {
  color: #e2001a;
}
/* line 14, ../../sass/modules/_search-results.scss */
.search-result p {
  margin-right: 0;
  margin-bottom: 10px;
}
/* line 18, ../../sass/modules/_search-results.scss */
.search-result .searchResultInfo {
  margin-bottom: 15px;
}
/* line 20, ../../sass/modules/_search-results.scss */
.search-result .searchResultInfo a {
  text-decoration: none;
}
/* line 22, ../../sass/modules/_search-results.scss */
.search-result .searchResultInfo a:after {
  content: "\203a";
  margin: 0 2px 0 5px;
  font-size: 20px;
  line-height: 1;
  position: relative;
  top: 1px;
  color: #e2001a;
}
/* line 32, ../../sass/modules/_search-results.scss */
.search-result .searchResultInfo a:last-child:after {
  content: none;
  margin: 0;
}
/* line 39, ../../sass/modules/_search-results.scss */
.search-result img.float-left.flexible {
  margin: 0 1em 1em 0;
  max-width: 230px;
  max-height: 150px;
}
/* line 44, ../../sass/modules/_search-results.scss */
.search-result .contact-info {
  font-size: 12px;
  margin-bottom: .5em;
}
/* line 47, ../../sass/modules/_search-results.scss */
.search-result .contact-info a,
.search-result .contact-info a:hover,
.search-result .contact-info a:focus {
  color: #444;
  text-decoration: underline;
}
/* line 53, ../../sass/modules/_search-results.scss */
.search-result .contact-info strong,
.search-result .contact-info span,
.search-result .contact-info a {
  display: block;
}
/* line 58, ../../sass/modules/_search-results.scss */
.search-result .contact-info span {
  margin-bottom: .5em;
}
/* line 62, ../../sass/modules/_search-results.scss */
.search-result .button-container {
  height: 30px;
}
/* line 64, ../../sass/modules/_search-results.scss */
.search-result .button-container .button-after {
  margin: 0;
}
/* line 66, ../../sass/modules/_search-results.scss */
.search-result .button-container .button-after a {
  display: block;
  height: 30px;
  line-height: 30px;
  text-decoration: none;
  color: #e2001a;
}
/* line 72, ../../sass/modules/_search-results.scss */
.search-result .button-container .button-after a:after {
  content: "\00BB";
  float: right;
  margin-left: 10px;
  font-size: 35px;
  padding: 0 5px 7px;
  line-height: 21px;
  color: #fff;
  background-color: #e2001a;
  border: 1px solid #e2001a;
}
/* line 84, ../../sass/modules/_search-results.scss */
.search-result .button-container .button-after a:hover:after {
  color: #e2001a;
  background-color: #fff;
}
/* line 90, ../../sass/modules/_search-results.scss */
.search-result .button-container .button-after a.download-link:before {
  content: "Download";
  margin-right: 2px;
  padding-left: 20px;
  background-image: url('../images/icons/download_list_icon_red.gif');
  background-color: transparent;
  background-repeat: no-repeat;
}
/* line 102, ../../sass/modules/_search-results.scss */
.search-result .buttonlike {
  display: block;
}
/* line 104, ../../sass/modules/_search-results.scss */
.search-result .buttonlike a {
  width: 130px;
}
/* line 106, ../../sass/modules/_search-results.scss */
.search-result .buttonlike a:after {
  position: relative;
  top: -11%;
  font-size: 35px;
}
/* line 112, ../../sass/modules/_search-results.scss */
.search-result .buttonlike.red a:hover {
  background-color: #e2001a;
  color: #fff;
}

/* line 120, ../../sass/modules/_search-results.scss */
.textcntinner .search-result p {
  margin-bottom: 10px;
}

/* line 128, ../../sass/modules/_search-results.scss */
.searchDiv #searchForm .ym-grid .ym-g50, .searchDiv #searchForm .mm .ym-g50 {
  padding: 0;
}
@media only screen and (max-width: 640px) {
  /* line 128, ../../sass/modules/_search-results.scss */
  .searchDiv #searchForm .ym-grid .ym-g50, .searchDiv #searchForm .mm .ym-g50 {
    margin-bottom: 0;
  }
  /* line 132, ../../sass/modules/_search-results.scss */
  .searchDiv #searchForm .ym-grid .ym-g50 .input_fields, .searchDiv #searchForm .mm .ym-g50 .input_fields,
  .searchDiv #searchForm .ym-grid .ym-g50 .submit_buttons,
  .searchDiv #searchForm .mm .ym-g50 .submit_buttons {
    padding-bottom: 0;
  }
}
/* line 138, ../../sass/modules/_search-results.scss */
.searchDiv #searchForm .ym-grid .ym-g50 + .ym-g50, .searchDiv #searchForm .mm .ym-g50 + .ym-g50 {
  padding-right: 25px;
  width: auto;
}
@media only screen and (max-width: 640px) {
  /* line 138, ../../sass/modules/_search-results.scss */
  .searchDiv #searchForm .ym-grid .ym-g50 + .ym-g50, .searchDiv #searchForm .mm .ym-g50 + .ym-g50 {
    margin-bottom: 20px;
    padding-right: 0;
  }
  /* line 144, ../../sass/modules/_search-results.scss */
  .searchDiv #searchForm .ym-grid .ym-g50 + .ym-g50 .input_fields, .searchDiv #searchForm .mm .ym-g50 + .ym-g50 .input_fields,
  .searchDiv #searchForm .ym-grid .ym-g50 + .ym-g50 .submit_buttons,
  .searchDiv #searchForm .mm .ym-g50 + .ym-g50 .submit_buttons {
    padding-bottom: 25px;
    padding-left: 25px;
  }
  /* line 149, ../../sass/modules/_search-results.scss */
  .searchDiv #searchForm .ym-grid .ym-g50 + .ym-g50 .input_fields > div button, .searchDiv #searchForm .mm .ym-g50 + .ym-g50 .input_fields > div button,
  .searchDiv #searchForm .ym-grid .ym-g50 + .ym-g50 .submit_buttons > div button,
  .searchDiv #searchForm .mm .ym-g50 + .ym-g50 .submit_buttons > div button {
    width: 100%;
  }
}
/* line 157, ../../sass/modules/_search-results.scss */
.searchDiv #searchForm .input_fields {
  padding: 25px;
  background-color: #f7f7f7;
}
/* line 160, ../../sass/modules/_search-results.scss */
.searchDiv #searchForm .input_fields input {
  font-family: "spar-regular", Arial, Helvetica, sans-serif;
  border: 1px solid #ddd8d3;
  padding: 6px 15px;
  width: 100%;
  font-size: 20px;
}
/* line 168, ../../sass/modules/_search-results.scss */
.searchDiv #searchForm .hits {
  float: right;
  text-align: right;
  padding-top: 7px;
}
/* line 173, ../../sass/modules/_search-results.scss */
.searchDiv #searchForm .submit_buttons {
  padding: 25px 25px 25px 0;
  background-color: #f7f7f7;
}
/* line 177, ../../sass/modules/_search-results.scss */
.searchDiv #searchForm .submit_buttons > div button {
  padding: 10px 35px 10px 10px;
  background-color: #e2001a;
  border: 1px solid #e2001a;
  color: #fff;
  cursor: pointer;
  text-align: left;
  position: relative;
  margin: 0;
  width: auto;
}
/* line 187, ../../sass/modules/_search-results.scss */
.searchDiv #searchForm .submit_buttons > div button:after {
  content: "\00BB";
  float: right;
  right: 13px;
  position: absolute;
}
/* line 193, ../../sass/modules/_search-results.scss */
.searchDiv #searchForm .submit_buttons > div button:hover, .searchDiv #searchForm .submit_buttons > div button:focus {
  background-color: #fff;
  color: #e2001a;
}
/* line 197, ../../sass/modules/_search-results.scss */
.searchDiv #searchForm .submit_buttons > div button:active {
  position: relative;
  top: 1px;
  left: 1px;
}
/* line 205, ../../sass/modules/_search-results.scss */
.searchDiv #searchForm #searchForm-searchResult {
  margin-bottom: 20px;
}
/* line 207, ../../sass/modules/_search-results.scss */
.searchDiv #searchForm #searchForm-searchResult .searchPager {
  margin: 0 auto;
  width: auto;
}
/* line 210, ../../sass/modules/_search-results.scss */
.searchDiv #searchForm #searchForm-searchResult .searchPager button {
  display: inline-block;
  text-decoration: none;
  padding: 5px 9px;
  background-color: #fff;
  border: 1px solid #a3988e;
}
/* line 216, ../../sass/modules/_search-results.scss */
.searchDiv #searchForm #searchForm-searchResult .searchPager button:hover, .searchDiv #searchForm #searchForm-searchResult .searchPager button:focus {
  background-color: #e2001a;
  border-color: #e2001a;
  color: #fff;
  cursor: pointer;
}
/* line 222, ../../sass/modules/_search-results.scss */
.searchDiv #searchForm #searchForm-searchResult .searchPager button.current-page {
  color: #fff;
  font-weight: normal;
  background-color: #a3988e;
}
/* line 226, ../../sass/modules/_search-results.scss */
.searchDiv #searchForm #searchForm-searchResult .searchPager button.current-page:hover, .searchDiv #searchForm #searchForm-searchResult .searchPager button.current-page:focus {
  background-color: #a3988e;
  border-color: #a3988e;
}
/* line 231, ../../sass/modules/_search-results.scss */
.searchDiv #searchForm #searchForm-searchResult .searchPager button.wider {
  padding: 5px 6px;
}
/* line 234, ../../sass/modules/_search-results.scss */
.searchDiv #searchForm #searchForm-searchResult .searchPager button.widest {
  padding: 5px 2px;
}
/* line 241, ../../sass/modules/_search-results.scss */
.searchDiv .error {
  display: none;
}
/* line 244, ../../sass/modules/_search-results.scss */
.searchDiv .searchResult {
  text-align: center;
}
/* line 246, ../../sass/modules/_search-results.scss */
.searchDiv .searchResult .search-result,
.searchDiv .searchResult .searchPager {
  text-align: left;
}

/* line 1, ../../sass/modules/_international.scss */
.international-map {
  position: relative;
  margin-bottom: 20px;
}
/* line 4, ../../sass/modules/_international.scss */
.international-map .map-container {
  border: #fff solid 5px;
}
/* line 6, ../../sass/modules/_international.scss */
.international-map .map-container .euroMap {
  display: none;
}
/* line 10, ../../sass/modules/_international.scss */
.international-map .euro-links,
.international-map .world-links {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1000;
  list-style: none;
  padding: 7px 0 7px 15px;
  background-color: rgba(255, 255, 255, 0.8);
  line-height: 2;
  margin-bottom: 20px;
  font-size: 13px;
}
/* line 22, ../../sass/modules/_international.scss */
.international-map .euro-links li,
.international-map .world-links li {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
  border-right: 1px solid #e2001a;
}
/* line 27, ../../sass/modules/_international.scss */
.international-map .euro-links li:last-child,
.international-map .world-links li:last-child {
  border-right: none;
}
/* line 32, ../../sass/modules/_international.scss */
.international-map .euro-links,
.international-map .tooltips {
  display: none;
}

/* line 40, ../../sass/modules/_international.scss */
.white-bg .international-map .map-container {
  border: #f7f7f7 solid 5px;
}

/* line 46, ../../sass/modules/_international.scss */
.mapster_tooltip {
  height: 70px;
}

/* line 50, ../../sass/modules/_international.scss */
.euro-tooltip,
.world-tooltip {
  height: 100%;
}
/* line 53, ../../sass/modules/_international.scss */
.euro-tooltip img,
.world-tooltip img {
  height: 100%;
  max-width: 100%;
  width: auto;
  position: relative;
  display: block;
}
/* line 60, ../../sass/modules/_international.scss */
.euro-tooltip .country-details,
.world-tooltip .country-details {
  position: relative;
  left: 125px;
}
/* line 64, ../../sass/modules/_international.scss */
.euro-tooltip .country-title,
.world-tooltip .country-title {
  height: auto;
  position: relative;
  top: -70px;
}
/* line 68, ../../sass/modules/_international.scss */
.euro-tooltip .country-title span,
.world-tooltip .country-title span {
  background-color: #e2001a;
  color: #fff;
  padding: 5px 10px;
  position: absolute;
  left: 0;
}
/* line 76, ../../sass/modules/_international.scss */
.euro-tooltip .country-info,
.world-tooltip .country-info {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 6px 10px;
  margin: 0;
  line-height: 1.25;
  position: relative;
  bottom: 44px;
  font-size: 13px;
  max-width: 215px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* line 88, ../../sass/modules/_international.scss */
.euro-tooltip .country-info span,
.world-tooltip .country-info span {
  font-size: 11px;
}

@media only screen and (max-width: 940px) and (min-width: 880px) {
  /* line 102, ../../sass/modules/_international.scss */
  .mapster_tooltip {
    bottom: -21px !important;
  }

  /* line 107, ../../sass/modules/_international.scss */
  .euro-tooltip img,
  .world-tooltip img {
    display: none !important;
  }
  /* line 110, ../../sass/modules/_international.scss */
  .euro-tooltip .country-details,
  .world-tooltip .country-details {
    left: auto;
  }
  /* line 113, ../../sass/modules/_international.scss */
  .euro-tooltip .country-title,
  .world-tooltip .country-title {
    height: auto;
    top: auto;
  }
  /* line 116, ../../sass/modules/_international.scss */
  .euro-tooltip .country-title span,
  .world-tooltip .country-title span {
    left: 0;
    right: auto;
    bottom: 0;
  }
  /* line 122, ../../sass/modules/_international.scss */
  .euro-tooltip .country-info,
  .world-tooltip .country-info {
    bottom: auto;
  }
}
@media only screen and (max-width: 700px) {
  /* line 131, ../../sass/modules/_international.scss */
  .international-map .euro-links {
    margin: 0;
    position: static;
    padding: 5px 0 5px 0;
    background-color: transparent;
  }

  /* line 139, ../../sass/modules/_international.scss */
  .euro-tooltip img {
    display: none !important;
  }
  /* line 142, ../../sass/modules/_international.scss */
  .euro-tooltip .country-details {
    left: auto;
  }
  /* line 145, ../../sass/modules/_international.scss */
  .euro-tooltip .country-title {
    height: auto;
    top: auto;
  }
  /* line 148, ../../sass/modules/_international.scss */
  .euro-tooltip .country-title span {
    left: auto;
    right: 0;
    bottom: 0;
  }
  /* line 154, ../../sass/modules/_international.scss */
  .euro-tooltip .country-info {
    bottom: auto;
  }
}
@media only screen and (max-width: 640px) {
  /* line 162, ../../sass/modules/_international.scss */
  .international-map .world-links {
    margin: 0;
    position: static;
    padding: 5px 0 5px 0;
    background-color: transparent;
  }

  /* line 170, ../../sass/modules/_international.scss */
  .world-tooltip img {
    display: none !important;
  }
  /* line 173, ../../sass/modules/_international.scss */
  .world-tooltip .country-details {
    left: auto;
  }
  /* line 176, ../../sass/modules/_international.scss */
  .world-tooltip .country-title {
    height: auto;
    top: auto;
  }
  /* line 179, ../../sass/modules/_international.scss */
  .world-tooltip .country-title span {
    left: auto;
    right: 0;
    bottom: 0;
  }
  /* line 185, ../../sass/modules/_international.scss */
  .world-tooltip .country-info {
    bottom: auto;
  }
}
/* line 2, ../../sass/modules/_sso.scss */
.sso .teaserheadsmall {
  margin-right: 0;
}

/* line 7, ../../sass/modules/_sso.scss */
.ym-form.sso-form {
  padding: 15px;
  background-color: #f6f4f1;
}
/* line 10, ../../sass/modules/_sso.scss */
.ym-form.sso-form div {
  margin-bottom: 10px;
}
/* line 13, ../../sass/modules/_sso.scss */
.ym-form.sso-form label {
  display: block;
}
/* line 16, ../../sass/modules/_sso.scss */
.ym-form.sso-form input {
  border: 1px solid #ddd8d3;
  padding: 10px;
  width: 100%;
}
/* line 21, ../../sass/modules/_sso.scss */
.ym-form.sso-form button {
  display: block;
  padding: 10px 24px 10px 10px;
  background-color: #a3988e;
  border: 1px solid #a3988e;
  color: #fff;
  width: 100%;
  cursor: pointer;
  text-align: left;
  position: relative;
}
/* line 31, ../../sass/modules/_sso.scss */
.ym-form.sso-form button:after {
  content: "\00BB";
  float: right;
  right: 13px;
  position: absolute;
  margin-right: 0;
  top: auto;
}
/* line 39, ../../sass/modules/_sso.scss */
.ym-form.sso-form button:hover, .ym-form.sso-form button:focus {
  background-color: #fff;
  color: #a3988e;
}
/* line 43, ../../sass/modules/_sso.scss */
.ym-form.sso-form button:active {
  position: relative;
  top: 1px;
  left: 1px;
}
/* line 50, ../../sass/modules/_sso.scss */
.ym-form.sso-form .pw-hint span {
  color: #e2001a;
}

/* line 1, ../../sass/modules/_bitlogic.scss */
.bitlogic,
.hexaware {
  background-color: #e2001a;
  color: #fff;
  float: right;
  width: 290px;
  padding: 20px;
  border: none;
  z-index: 10;
  margin: 0 -30px 20px 20px;
}
/* line 11, ../../sass/modules/_bitlogic.scss */
.bitlogic .teaserheadsmall,
.hexaware .teaserheadsmall {
  margin-right: 0;
  color: #fff;
}
/* line 15, ../../sass/modules/_bitlogic.scss */
.bitlogic h3,
.hexaware h3 {
  font-size: 20px;
  color: #fff;
  margin: 0 0 0.875em 0;
}
/* line 20, ../../sass/modules/_bitlogic.scss */
.bitlogic p,
.hexaware p {
  margin-right: 0;
}
/* line 22, ../../sass/modules/_bitlogic.scss */
.bitlogic p a,
.hexaware p a {
  color: #fff;
  text-decoration: underline;
}
/* line 25, ../../sass/modules/_bitlogic.scss */
.bitlogic p a:hover, .bitlogic p a:focus,
.hexaware p a:hover,
.hexaware p a:focus {
  color: #ddd8d3;
}
/* line 30, ../../sass/modules/_bitlogic.scss */
.bitlogic .ym-form.bitlogic-form,
.bitlogic .ym-form.hexaware-form,
.hexaware .ym-form.bitlogic-form,
.hexaware .ym-form.hexaware-form {
  background-color: #fff;
}
/* line 33, ../../sass/modules/_bitlogic.scss */
.bitlogic .ym-form.bitlogic-form button,
.bitlogic .ym-form.hexaware-form button,
.hexaware .ym-form.bitlogic-form button,
.hexaware .ym-form.hexaware-form button {
  background-color: #e2001a;
  border: 1px solid #e2001a;
}
/* line 36, ../../sass/modules/_bitlogic.scss */
.bitlogic .ym-form.bitlogic-form button:hover, .bitlogic .ym-form.bitlogic-form button:focus,
.bitlogic .ym-form.hexaware-form button:hover,
.bitlogic .ym-form.hexaware-form button:focus,
.hexaware .ym-form.bitlogic-form button:hover,
.hexaware .ym-form.bitlogic-form button:focus,
.hexaware .ym-form.hexaware-form button:hover,
.hexaware .ym-form.hexaware-form button:focus {
  color: #e2001a;
  background-color: #fff;
}
@media only screen and (max-width: 880px) {
  /* line 1, ../../sass/modules/_bitlogic.scss */
  .bitlogic,
  .hexaware {
    float: none;
    width: 100%;
    margin: 30px 0;
  }
}

/* line 49, ../../sass/modules/_bitlogic.scss */
.white-bg .bitlogic.whitebg,
.white-bg .hexaware.whitebg {
  background-color: #e2001a;
}

/* line 54, ../../sass/modules/_bitlogic.scss */
.bitlogic ~ .hexaware,
.hexaware ~ .bitlogic {
  clear: both;
}

/* line 60, ../../sass/modules/_bitlogic.scss */
.marginColumn .bitlogic,
.marginColumn .hexaware {
  border: 5px solid #fff;
  background-color: #fff;
  color: #444;
  float: none;
  width: auto;
  padding: 10px;
  margin: 0;
}
/* line 69, ../../sass/modules/_bitlogic.scss */
.marginColumn .bitlogic .teaserheadsmall,
.marginColumn .hexaware .teaserheadsmall {
  margin-right: 0;
}
/* line 72, ../../sass/modules/_bitlogic.scss */
.marginColumn .bitlogic h3,
.marginColumn .hexaware h3 {
  font-size: 16px;
  color: #e2001a;
}
/* line 77, ../../sass/modules/_bitlogic.scss */
.marginColumn .bitlogic p a,
.marginColumn .hexaware p a {
  color: #444;
}
/* line 79, ../../sass/modules/_bitlogic.scss */
.marginColumn .bitlogic p a:hover, .marginColumn .bitlogic p a:focus,
.marginColumn .hexaware p a:hover,
.marginColumn .hexaware p a:focus {
  color: #e2001a;
}
/* line 84, ../../sass/modules/_bitlogic.scss */
.marginColumn .bitlogic .ym-form.bitlogic-form,
.marginColumn .bitlogic .ym-form.hexaware-form,
.marginColumn .hexaware .ym-form.bitlogic-form,
.marginColumn .hexaware .ym-form.hexaware-form {
  background-color: #f6f4f1;
}
/* line 87, ../../sass/modules/_bitlogic.scss */
.marginColumn .bitlogic .ym-form.bitlogic-form button,
.marginColumn .bitlogic .ym-form.hexaware-form button,
.marginColumn .hexaware .ym-form.bitlogic-form button,
.marginColumn .hexaware .ym-form.hexaware-form button {
  background-color: #a3988e;
  border: 1px solid #a3988e;
}
/* line 90, ../../sass/modules/_bitlogic.scss */
.marginColumn .bitlogic .ym-form.bitlogic-form button:hover, .marginColumn .bitlogic .ym-form.bitlogic-form button:focus,
.marginColumn .bitlogic .ym-form.hexaware-form button:hover,
.marginColumn .bitlogic .ym-form.hexaware-form button:focus,
.marginColumn .hexaware .ym-form.bitlogic-form button:hover,
.marginColumn .hexaware .ym-form.bitlogic-form button:focus,
.marginColumn .hexaware .ym-form.hexaware-form button:hover,
.marginColumn .hexaware .ym-form.hexaware-form button:focus {
  color: #a3988e;
  background-color: #fff;
}
@media only screen and (max-width: 880px) {
  /* line 60, ../../sass/modules/_bitlogic.scss */
  .marginColumn .bitlogic,
  .marginColumn .hexaware {
    float: none;
    width: 100%;
    margin: 0;
  }
}

/* line 104, ../../sass/modules/_bitlogic.scss */
.ym-form.bitlogic-form,
.ym-form.hexaware-form {
  padding: 15px;
  background-color: #f6f4f1;
}
/* line 108, ../../sass/modules/_bitlogic.scss */
.ym-form.bitlogic-form div,
.ym-form.hexaware-form div {
  margin-bottom: 10px;
}
/* line 110, ../../sass/modules/_bitlogic.scss */
.ym-form.bitlogic-form div.radio-box,
.ym-form.hexaware-form div.radio-box {
  margin-bottom: 20px;
  text-indent: -30px;
  margin-left: 30px;
  line-height: 1.5;
}
/* line 117, ../../sass/modules/_bitlogic.scss */
.ym-form.bitlogic-form label,
.ym-form.hexaware-form label {
  display: block;
}
/* line 120, ../../sass/modules/_bitlogic.scss */
.ym-form.bitlogic-form input,
.ym-form.hexaware-form input {
  border: 1px solid #ddd8d3;
  padding: 10px;
  width: 100%;
}
/* line 125, ../../sass/modules/_bitlogic.scss */
.ym-form.bitlogic-form input[type=radio],
.ym-form.hexaware-form input[type=radio] {
  width: auto;
  position: relative;
  top: 2px;
  margin-right: 15px;
  margin-left: 5px;
  border: none;
}
/* line 133, ../../sass/modules/_bitlogic.scss */
.ym-form.bitlogic-form button,
.ym-form.hexaware-form button {
  display: block;
  padding: 10px 24px 10px 10px;
  background-color: #a3988e;
  border: 1px solid #a3988e;
  color: #fff;
  width: 100%;
  cursor: pointer;
  text-align: left;
  position: relative;
}
/* line 143, ../../sass/modules/_bitlogic.scss */
.ym-form.bitlogic-form button:after,
.ym-form.hexaware-form button:after {
  content: "\00BB";
  float: right;
  right: 13px;
  position: absolute;
  margin-right: 0;
  top: auto;
}
/* line 151, ../../sass/modules/_bitlogic.scss */
.ym-form.bitlogic-form button:hover, .ym-form.bitlogic-form button:focus,
.ym-form.hexaware-form button:hover,
.ym-form.hexaware-form button:focus {
  background-color: #fff;
  color: #a3988e;
}
/* line 155, ../../sass/modules/_bitlogic.scss */
.ym-form.bitlogic-form button:active,
.ym-form.hexaware-form button:active {
  position: relative;
  top: 1px;
  left: 1px;
}
/* line 162, ../../sass/modules/_bitlogic.scss */
.ym-form.bitlogic-form .pw-hint span,
.ym-form.hexaware-form .pw-hint span {
  color: #e2001a;
}

/* line 170, ../../sass/modules/_bitlogic.scss */
.ym-gbox .textcntinner .ym-form.hexaware-form {
  width: 50%;
}

/* line 1, ../../sass/modules/_vacancies.scss */
.vacancy {
  padding: 10px 10px 55px 10px;
}
/* line 3, ../../sass/modules/_vacancies.scss */
.vacancy .teaserheader-small {
  padding-bottom: 4px;
}
/* line 6, ../../sass/modules/_vacancies.scss */
.vacancy .teaserheadsmall {
  margin-right: 0;
}
/* line 8, ../../sass/modules/_vacancies.scss */
.vacancy .teaserheadsmall a {
  text-decoration: none;
}
/* line 12, ../../sass/modules/_vacancies.scss */
.vacancy .teaserheader-small + .teaser-footer, .vacancy .teaserheadsmall + .teaser-footer {
  position: static;
}
/* line 15, ../../sass/modules/_vacancies.scss */
.vacancy p {
  margin-right: 0;
  margin-bottom: 10px;
}
/* line 19, ../../sass/modules/_vacancies.scss */
.vacancy .details-link {
  display: block;
  background-color: #ddd8d3;
  border: 1px solid #ddd8d3;
  color: #333;
  padding: 10px 24px 10px 10px;
  text-decoration: none;
  position: relative;
  width: 130px;
  float: right;
}
/* line 29, ../../sass/modules/_vacancies.scss */
.vacancy .details-link:hover, .vacancy .details-link:focus {
  background-color: #333;
  border-color: #333;
  color: #f6f4f1;
}
/* line 34, ../../sass/modules/_vacancies.scss */
.vacancy .details-link:after {
  content: "\00bb";
  float: right;
  position: absolute;
  right: 13px;
}
/* line 41, ../../sass/modules/_vacancies.scss */
.vacancy .teaser-footer {
  padding: 10px;
}

/* line 47, ../../sass/modules/_vacancies.scss */
.textcntinner .vacancy p {
  margin-bottom: 10px;
}

/* line 3, ../../sass/modules/_executive.scss */
.executivewrapper .ym-g75.ym-gr.ym-gbox .ym-g33.ym-gl {
  padding-right: 0;
}
/* line 6, ../../sass/modules/_executive.scss */
.executivewrapper .ym-g75.ym-gr.ym-gbox .ym-g66.ym-gr.ym-gbox-right {
  padding-bottom: 5px;
  margin-bottom: 0;
}
@media only screen and (max-width: 880px) {
  /* line 12, ../../sass/modules/_executive.scss */
  .executivewrapper .ym-g33.ym-gl {
    width: 100%;
    padding: 0;
    float: none;
  }
  /* line 17, ../../sass/modules/_executive.scss */
  .executivewrapper .ym-g25.ym-gl.ym-gbox-left {
    display: none;
  }
}
@media only screen and (max-width: 640px) {
  /* line 22, ../../sass/modules/_executive.scss */
  .executivewrapper .ym-g33.ym-gl {
    padding-top: 0;
  }
}
/* line 26, ../../sass/modules/_executive.scss */
.executivewrapper.dl-content-area + .executivewrapper.dl-content-area {
  background-color: #ddd8d3;
}
/* line 29, ../../sass/modules/_executive.scss */
.executivewrapper.dl-content-area + .executivewrapper.dl-content-area + .executivewrapper.dl-content-area {
  background-color: #f6f4f1;
}
/* line 32, ../../sass/modules/_executive.scss */
.executivewrapper.dl-content-area + .executivewrapper.dl-content-area + .executivewrapper.dl-content-area + .executivewrapper.dl-content-area {
  background-color: #ddd8d3;
}
/* line 35, ../../sass/modules/_executive.scss */
.executivewrapper .teaser.whitebg .teaserheadsmall {
  color: #444;
}
/* line 37, ../../sass/modules/_executive.scss */
.executivewrapper .teaser.whitebg .teaserheadsmall a:hover {
  text-decoration: none;
}

/* line 44, ../../sass/modules/_executive.scss */
.executiveinner head {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #a3988e;
}
/* line 49, ../../sass/modules/_executive.scss */
.executiveinner.faq-container {
  margin-bottom: 0;
}

/* line 54, ../../sass/modules/_executive.scss */
.executiveimagecnt {
  position: relative;
  margin-bottom: 20px;
}
/* line 57, ../../sass/modules/_executive.scss */
.executiveimagecnt .subheroheadline {
  overflow: hidden;
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
}
/* line 63, ../../sass/modules/_executive.scss */
.executiveimagecnt .subheroheadline .heroheadlinewrapper {
  background: none;
  background-color: rgba(255, 255, 255, 0.8);
  height: auto;
  width: 63.5%;
  margin-left: 36.5%;
  padding: 15px 20px;
}
/* line 70, ../../sass/modules/_executive.scss */
.executiveimagecnt .subheroheadline .heroheadlinewrapper .heroheadline {
  font-size: 26px;
  display: block;
  color: #333;
  padding: 0;
  margin: 0;
}
/* line 77, ../../sass/modules/_executive.scss */
.executiveimagecnt .subheroheadline .heroheadlinewrapper h3.heroheadline {
  font-size: 18px;
  color: #e2001a;
}
@media only screen and (max-width: 880px) {
  /* line 54, ../../sass/modules/_executive.scss */
  .executiveimagecnt {
    margin-right: 0;
  }
}
@media only screen and (max-width: 640px) {
  /* line 54, ../../sass/modules/_executive.scss */
  .executiveimagecnt {
    margin-bottom: 10px;
  }
  /* line 88, ../../sass/modules/_executive.scss */
  .executiveimagecnt .subheroheadline {
    position: static;
    margin-top: 10px;
  }
  /* line 91, ../../sass/modules/_executive.scss */
  .executiveimagecnt .subheroheadline .heroheadlinewrapper {
    width: 100%;
    margin-left: 0;
    padding: 15px;
  }
}
@media only screen and (max-width: 480px) {
  /* line 101, ../../sass/modules/_executive.scss */
  .executiveimagecnt .subheroheadline .heroheadlinewrapper .heroheadline {
    font-size: 22px;
  }
  /* line 104, ../../sass/modules/_executive.scss */
  .executiveimagecnt .subheroheadline .heroheadlinewrapper h3.heroheadline {
    font-size: 16px;
  }
}
@media only screen and (max-width: 400px) {
  /* line 113, ../../sass/modules/_executive.scss */
  .executiveimagecnt .subheroheadline .heroheadlinewrapper .heroheadline {
    font-size: 20px;
  }
  /* line 116, ../../sass/modules/_executive.scss */
  .executiveimagecnt .subheroheadline .heroheadlinewrapper h3.heroheadline {
    font-size: 14px;
  }
}

/* line 124, ../../sass/modules/_executive.scss */
.executive-hd1 {
  color: #e2001a;
  font-size: 35px;
  margin-bottom: 5px;
  margin-left: 33%;
}

/* line 131, ../../sass/modules/_executive.scss */
.executive-hd2 {
  margin-left: 33%;
  font-size: 20px;
  color: #5F5D5B;
}

/* line 139, ../../sass/modules/_executive.scss */
.resume {
  background-color: #f7f7f7;
  color: #333;
  padding: 20px;
  margin-bottom: 20px;
}
/* line 144, ../../sass/modules/_executive.scss */
.resume em {
  display: block;
  font-style: normal;
}
/* line 148, ../../sass/modules/_executive.scss */
.resume > ul, .resume > ul li {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
  word-wrap: break-word;
}
/* line 154, ../../sass/modules/_executive.scss */
.resume > ul {
  margin-bottom: 0;
}
@media only screen and (max-width: 880px) {
  /* line 139, ../../sass/modules/_executive.scss */
  .resume {
    margin-left: 0;
    margin-right: 0;
  }
}

/* line 163, ../../sass/modules/_executive.scss */
.resume-time.faq-btn {
  display: inline-block;
  padding: 10px;
  font-size: 18px;
  color: #ddd8d3;
  background-color: #a3988e;
}
/* line 168, ../../sass/modules/_executive.scss */
.resume-time.faq-btn:after {
  color: #ddd8d3 !important;
}
/* line 171, ../../sass/modules/_executive.scss */
.resume-time.faq-btn.selected, .resume-time.faq-btn:hover {
  color: #fff !important;
}
/* line 174, ../../sass/modules/_executive.scss */
.resume-time.faq-btn.selected:after, .resume-time.faq-btn:hover:after {
  color: #fff !important;
}
/* line 179, ../../sass/modules/_executive.scss */
.resume-time.faq-btn.now {
  background-color: #666;
}

/* line 184, ../../sass/modules/_executive.scss */
.resume-title {
  font-size: 18px;
  margin-bottom: 10px;
}
/* line 187, ../../sass/modules/_executive.scss */
.resume-title em {
  display: block;
  font-size: 14px;
  font-style: normal;
}

/* line 194, ../../sass/modules/_executive.scss */
.resume-subtitle {
  margin-bottom: 10px;
}

/* line 198, ../../sass/modules/_executive.scss */
.resume-function {
  margin-bottom: 10px;
}

/* line 2, ../../sass/modules/_review.scss */
.review .textcntinner {
  margin-top: 30px;
}
/* line 5, ../../sass/modules/_review.scss */
.review h2 {
  font-size: 21px;
  color: #e2001a;
  margin-bottom: 0;
}
/* line 10, ../../sass/modules/_review.scss */
.review h3 {
  font-size: 21px;
  color: #e2001a;
  margin-bottom: 0;
  padding-bottom: 15px;
}
/* line 16, ../../sass/modules/_review.scss */
.review .additional-info {
  font-size: 16px;
  color: #333;
}
/* line 20, ../../sass/modules/_review.scss */
.review h4 {
  font-size: 18px;
  color: #333;
  margin: 10px 0;
  clear: both;
}
/* line 26, ../../sass/modules/_review.scss */
.review .basecontent-text {
  line-height: 1.5;
  margin-bottom: 30px;
}
/* line 31, ../../sass/modules/_review.scss */
.review .basecontent-list ul {
  color: #e2001a;
}
/* line 33, ../../sass/modules/_review.scss */
.review .basecontent-list ul span {
  color: #444;
}
/* line 38, ../../sass/modules/_review.scss */
.review .trainee-list {
  margin-bottom: 40px;
  color: #e2001a;
}
/* line 44, ../../sass/modules/_review.scss */
.review .review-content > .ym-grid > .ym-g33.ym-gl, .review .review-content > .mm > .ym-g33.ym-gl {
  margin-bottom: 0;
}
/* line 47, ../../sass/modules/_review.scss */
.review .review-content > .ym-grid > .ym-g66.ym-gbox-right, .review .review-content > .mm > .ym-g66.ym-gbox-right {
  margin-bottom: 0;
}
/* line 49, ../../sass/modules/_review.scss */
.review .review-content > .ym-grid > .ym-g66.ym-gbox-right > h4, .review .review-content > .mm > .ym-g66.ym-gbox-right > h4 {
  margin-top: 0;
}
/* line 55, ../../sass/modules/_review.scss */
.review .videocnt {
  margin-top: 20px;
}

/* line 62, ../../sass/modules/_review.scss */
.review-slider {
  padding-top: 20px;
  border-bottom: 1px solid #ddd8d3;
}
/* line 65, ../../sass/modules/_review.scss */
.review-slider .slick-prev,
.review-slider .slick-next {
  margin-top: -60px;
}
/* line 69, ../../sass/modules/_review.scss */
.review-slider .slick-slider-footer {
  padding: 15px 0;
  overflow: hidden;
  min-height: 76px;
}
/* line 73, ../../sass/modules/_review.scss */
.review-slider .slick-slider-footer a, .review-slider .slick-slider-footer span {
  display: block;
}
/* line 75, ../../sass/modules/_review.scss */
.review-slider a {
  text-decoration: none;
}
/* line 77, ../../sass/modules/_review.scss */
.review-slider a:hover, .review-slider a:focus {
  text-decoration: underline;
}
/* line 81, ../../sass/modules/_review.scss */
.review-slider .trainee-name, .review-slider .trainee-program {
  margin-left: 10px;
  margin-right: 10px;
}
/* line 85, ../../sass/modules/_review.scss */
.review-slider .trainee-name {
  color: #e2001a;
}
/* line 88, ../../sass/modules/_review.scss */
.review-slider .trainee-program {
  font-size: 12px;
}
/* line 91, ../../sass/modules/_review.scss */
.review-slider .activetrainee {
  display: block;
}
/* line 93, ../../sass/modules/_review.scss */
.review-slider .activetrainee:hover, .review-slider .activetrainee:focus {
  text-decoration: none;
}
/* line 96, ../../sass/modules/_review.scss */
.review-slider .activetrainee .slick-slider-footer {
  background-color: #ddd8d3;
}
/* line 98, ../../sass/modules/_review.scss */
.review-slider .activetrainee .slick-slider-footer .trainee-name, .review-slider .activetrainee .slick-slider-footer .trainee-program {
  color: #444;
}
/* line 101, ../../sass/modules/_review.scss */
.review-slider .activetrainee .slick-slider-footer .trainee-name {
  color: #e2001a;
}

/* line 1, ../../sass/modules/_video.scss */
.videocnt {
  margin: 0 0 20px 0;
  width: 100%;
  max-width: 810px;
}
@media only screen and (max-width: 880px) {
  /* line 1, ../../sass/modules/_video.scss */
  .videocnt {
    margin: 0 0 20px 0;
  }
}
@media only screen and (max-width: 480px) {
  /* line 1, ../../sass/modules/_video.scss */
  .videocnt {
    margin: 0 0 20px 0;
  }
}

/* line 13, ../../sass/modules/_video.scss */
.ym-gbox > .videocnt:last-child {
  margin: 0;
}
@media only screen and (max-width: 880px) {
  /* line 13, ../../sass/modules/_video.scss */
  .ym-gbox > .videocnt:last-child {
    margin: 0;
  }
}
@media only screen and (max-width: 480px) {
  /* line 13, ../../sass/modules/_video.scss */
  .ym-gbox > .videocnt:last-child {
    margin: 0;
  }
}

/* line 24, ../../sass/modules/_video.scss */
.ym-wbox-landingpage .videocnt {
  max-width: 100%;
}

/* line 30, ../../sass/modules/_video.scss */
.slick-slide .videocnt {
  margin: 0;
  max-width: 1280px;
}
/* line 33, ../../sass/modules/_video.scss */
.slick-slide .videocnt .mejs-container .mejs-controls {
  display: none !important;
}
/* line 36, ../../sass/modules/_video.scss */
.slick-slide .videocnt .mejs-overlay-button {
  display: none !important;
}
/* line 37, ../../sass/modules/_video.scss */
.slick-slide .videocnt .mejs-overlay-loading {
  display: none;
}
/* line 38, ../../sass/modules/_video.scss */
.slick-slide .videocnt .mejs-poster {
  display: none;
}

/* line 1, ../../sass/modules/_pager.scss */
.pages {
  margin: 20px auto 0;
  width: auto;
  text-align: right;
}
/* line 5, ../../sass/modules/_pager.scss */
.pages a, .pages span {
  display: inline-block;
  text-decoration: none;
  padding: 5px 10px;
  background-color: #fff;
  border: 1px solid #a3988e;
}
/* line 11, ../../sass/modules/_pager.scss */
.pages a:hover, .pages a:focus, .pages span:hover, .pages span:focus {
  background-color: #e2001a;
  border-color: #e2001a;
  color: #fff;
  cursor: pointer;
}
/* line 17, ../../sass/modules/_pager.scss */
.pages a.current-page, .pages span.current-page {
  color: #fff;
  font-weight: normal;
  background-color: #a3988e;
}
/* line 21, ../../sass/modules/_pager.scss */
.pages a.current-page:hover, .pages a.current-page:focus, .pages span.current-page:hover, .pages span.current-page:focus {
  background-color: #a3988e;
  border-color: #a3988e;
}
/* line 26, ../../sass/modules/_pager.scss */
.pages a.wider, .pages span.wider {
  padding: 5px 6px;
}
/* line 29, ../../sass/modules/_pager.scss */
.pages a.widest, .pages span.widest {
  padding: 5px 2px;
}

/* line 35, ../../sass/modules/_pager.scss */
.service-search-result .pager-container {
  margin: 0 auto;
  width: 235px;
  float: right;
  overflow: hidden;
  height: 28px;
  position: relative;
}
/* line 42, ../../sass/modules/_pager.scss */
.service-search-result .pager-container .pages {
  margin: 0;
  text-align: center;
  height: 28px;
  position: absolute;
  width: 1000px;
  left: 34px;
}
/* line 49, ../../sass/modules/_pager.scss */
.service-search-result .pager-container .pages a, .service-search-result .pager-container .pages span {
  width: 30px;
  margin: 0 2px;
  display: block;
  float: left;
}
/* line 54, ../../sass/modules/_pager.scss */
.service-search-result .pager-container .pages a:first-child, .service-search-result .pager-container .pages span:first-child {
  margin-left: 0;
}
/* line 57, ../../sass/modules/_pager.scss */
.service-search-result .pager-container .pages a:last-child, .service-search-result .pager-container .pages span:last-child {
  margin-right: 0;
}
/* line 62, ../../sass/modules/_pager.scss */
.service-search-result .pager-container .pager-arrows {
  position: absolute;
  z-index: 100;
  float: left;
  font-size: 21.5px;
  background-color: #ddd8d3;
  color: #fff;
  line-height: 1;
  bottom: -2px;
  height: 32px;
  width: 32px;
  display: block;
  padding: 0 8px 0 8px;
  text-decoration: none;
  border: 2px solid #fff;
}
/* line 77, ../../sass/modules/_pager.scss */
.service-search-result .pager-container .pager-arrows:hover, .service-search-result .pager-container .pager-arrows:focus {
  background-color: #e2001a;
  color: #fff;
  cursor: pointer;
}
/* line 82, ../../sass/modules/_pager.scss */
.service-search-result .pager-container .pager-arrows.next-page {
  float: right;
  right: 0;
}

/* line 1, ../../sass/modules/_reg-form.scss */
.user-help {
  display: none;
}

/* line 5, ../../sass/modules/_reg-form.scss */
.tooltip span strong {
  background-color: #f00;
  color: #fff;
  padding: 1px 6px 1px 6px;
  display: block;
}

/* line 12, ../../sass/modules/_reg-form.scss */
.tooltip span small {
  font-size: 100%;
  padding: 3px 6px;
  display: block;
}

/* line 18, ../../sass/modules/_reg-form.scss */
.help-icon {
  text-decoration: none;
}

/* line 22, ../../sass/modules/_reg-form.scss */
.tooltip a:hover span {
  font-size: 69%;
  color: #000;
  background-color: #fff;
  border: 1px solid #f00;
  display: block;
  width: 220px;
  position: absolute;
  z-index: 1000;
  top: -115px;
}

/* line 34, ../../sass/modules/_reg-form.scss */
.tooltip {
  position: relative;
  float: right;
  margin-right: 88%;
}

/* line 1, ../../sass/modules/_glossary.scss */
.glossary-selector {
  margin: 0;
  list-style: none;
  margin-bottom: 38px;
}
/* line 5, ../../sass/modules/_glossary.scss */
.glossary-selector li {
  margin-right: 1px;
  margin-left: 1px;
  float: left;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 2px;
}
/* line 13, ../../sass/modules/_glossary.scss */
.glossary-selector li a {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd8d3;
  background-color: #f7f7f7;
  padding: 3px;
  text-align: center;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
/* line 23, ../../sass/modules/_glossary.scss */
.glossary-selector li a.notAvailable {
  color: #a3988e;
  cursor: default;
}
/* line 26, ../../sass/modules/_glossary.scss */
.glossary-selector li a.notAvailable:hover, .glossary-selector li a.notAvailable:focus {
  background-color: #f7f7f7;
  color: #a3988e;
}
/* line 31, ../../sass/modules/_glossary.scss */
.glossary-selector li a:hover, .glossary-selector li a:focus {
  background-color: #e2001a;
  color: #fff;
}

/* line 38, ../../sass/modules/_glossary.scss */
.glossary-index {
  margin: 0;
  list-style: none;
  padding-right: 20px;
}
/* line 42, ../../sass/modules/_glossary.scss */
.glossary-index li {
  border-bottom: 1px solid #ddd8d3;
  padding: 3px 0 10px 0;
  margin-right: 0;
  margin-left: 0;
}
/* line 47, ../../sass/modules/_glossary.scss */
.glossary-index li a {
  display: block;
  text-decoration: none;
}
/* line 50, ../../sass/modules/_glossary.scss */
.glossary-index li a:hover, .glossary-index li a:focus {
  color: #e2001a;
}
/* line 53, ../../sass/modules/_glossary.scss */
.glossary-index li a:after {
  content: "\00BB";
  margin-left: 10px;
  font-size: 21px;
  top: 1px;
  color: #e2001a;
  position: relative;
}
@media only screen and (max-width: 640px) {
  /* line 38, ../../sass/modules/_glossary.scss */
  .glossary-index {
    padding-right: 0;
  }
}

/* line 71, ../../sass/modules/_glossary.scss */
.glossary-content .textcntinner {
  width: auto;
  padding-left: 20px;
}
/* line 74, ../../sass/modules/_glossary.scss */
.glossary-content .textcntinner h2 {
  color: #e2001a;
}
/* line 76, ../../sass/modules/_glossary.scss */
.glossary-content .textcntinner h2 span {
  font-size: 100%;
  line-height: inherit;
}
@media only screen and (max-width: 880px) and (min-width: 640px) {
  /* line 70, ../../sass/modules/_glossary.scss */
  .glossary-content {
    width: 50%;
  }
}

@media only screen and (max-width: 640px) {
  /* line 88, ../../sass/modules/_glossary.scss */
  .glossary-content .textcntinner {
    padding-left: 0;
  }
}

/* line 1, ../../sass/modules/_gallery.scss */
.gallery-slider {
  margin-bottom: 30px;
  background-color: rgba(0, 0, 0, 0.5);
}
/* line 5, ../../sass/modules/_gallery.scss */
.gallery-slider .image-count {
  text-align: center;
  padding: 0;
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: white;
  font-size: 12px;
}
/* line 15, ../../sass/modules/_gallery.scss */
.gallery-slider .slick-slide {
  padding: 0 0;
  position: relative;
}
/* line 19, ../../sass/modules/_gallery.scss */
.gallery-slider .slick-slide:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.2963%;
}
/* line 26, ../../sass/modules/_gallery.scss */
.gallery-slider .slick-slide .gallery-link {
  display: block;
}
/* line 30, ../../sass/modules/_gallery.scss */
.gallery-slider .slick-slide .gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}
/* line 39, ../../sass/modules/_gallery.scss */
.gallery-slider .slick-slide figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.5);
}
/* line 46, ../../sass/modules/_gallery.scss */
.gallery-slider .slick-slide figcaption p {
  color: #fff;
  margin-bottom: 0;
}
/* line 49, ../../sass/modules/_gallery.scss */
.gallery-slider .slick-slide figcaption p .image-count {
  position: initial;
  float: right;
  margin-top: 4px;
}
/* line 57, ../../sass/modules/_gallery.scss */
.gallery-slider .slick-prev,
.gallery-slider .slick-next {
  background-color: rgba(0, 0, 0, 0.5);
}

/* line 2, ../../sass/modules/_forms.scss */
.hellgrau2 select, .hellgrau2 input, .hellgrau2 textarea, .hellgrau2 button {
  background-color: #fff;
  color: #000;
}
/* line 6, ../../sass/modules/_forms.scss */
.hellgrau2 button {
  background-color: #e2001a;
  color: #fff;
}

/* line 12, ../../sass/modules/_forms.scss */
select {
  background-color: #fff;
}

/* line 17, ../../sass/modules/_forms.scss */
.ym-form select, .ym-form input, .ym-form textarea {
  border: none;
  width: 100%;
  padding: 10px;
  font-family: "spar-regular", Arial, Helvetica, sans-serif;
}
/* line 23, ../../sass/modules/_forms.scss */
.ym-form .ym-fbox {
  margin-bottom: 10px;
}
/* line 26, ../../sass/modules/_forms.scss */
.ym-form textarea {
  height: 120px;
}
/* line 29, ../../sass/modules/_forms.scss */
.ym-form button {
  float: right;
  width: 100%;
  border: 1px solid #e2001a;
  padding: 10px;
  cursor: pointer;
  margin-top: 10px;
}
/* line 36, ../../sass/modules/_forms.scss */
.ym-form button:after {
  content: "\00BB";
  float: right;
  margin-right: 10px;
  position: relative;
  top: -1px;
}
/* line 43, ../../sass/modules/_forms.scss */
.ym-form button:hover, .ym-form button:focus {
  background-color: #fff;
  color: #e2001a;
}
/* line 47, ../../sass/modules/_forms.scss */
.ym-form button:active {
  position: relative;
  top: 1px;
  left: 1px;
}
/* line 53, ../../sass/modules/_forms.scss */
.ym-form .error {
  background-color: transparent;
  color: #e2001a;
  font-size: 11px;
}

/* line 60, ../../sass/modules/_forms.scss */
input, textarea {
  -webkit-appearance: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}

/* line 65, ../../sass/modules/_forms.scss */
input[type=checkbox] {
  -webkit-appearance: checkbox;
}

/* line 69, ../../sass/modules/_forms.scss */
input[type=radio] {
  -webkit-appearance: radio;
}

@media only screen and (max-width: 640px) {
  /* line 74, ../../sass/modules/_forms.scss */
  select {
    font-size: 18px;
  }
}
@media screen, projection {
  /* line 2, ../../sass/modules/_tabs.scss */
  .jquery_tabs {
    margin: 50px 0 1.5em 0;
  }
  /* line 5, ../../sass/modules/_tabs.scss */
  .jquery_tabs ul.tabs-list {
    display: table;
    table-layout: fixed;
    list-style-type: none;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  /* line 14, ../../sass/modules/_tabs.scss */
  .jquery_tabs ul.tabs-list li {
    margin: 0 4px 0 0;
    border: 0 none;
    float: left;
    padding: 0;
  }
  /* line 20, ../../sass/modules/_tabs.scss */
  .jquery_tabs ul.tabs-list li a {
    padding: 10px;
    background: #fff;
    display: block;
    float: left;
    font-weight: normal;
    margin: 0;
    color: #333;
    text-decoration: none;
    border: 1px #ddd8d3 solid;
    border-bottom: none;
  }
  /* line 32, ../../sass/modules/_tabs.scss */
  .jquery_tabs ul.tabs-list li a:focus, .jquery_tabs ul.tabs-list li a:hover, .jquery_tabs ul.tabs-list li a:active {
    background: #f6f4f1;
    color: #333;
    font-weight: normal;
    outline: 0 none;
    text-decoration: none;
  }
  /* line 45, ../../sass/modules/_tabs.scss */
  .jquery_tabs ul.tabs-list li.current a,
  .jquery_tabs ul.tabs-list li.current a:focus,
  .jquery_tabs ul.tabs-list li.current a:hover,
  .jquery_tabs ul.tabs-list li.current a:active {
    background: #ddd8d3;
    color: #333;
    border: 1px #ddd8d3 solid;
    border-bottom-color: #e2001a;
    text-decoration: none;
  }
  /* line 60, ../../sass/modules/_tabs.scss */
  .jquery_tabs .content {
    border-top: 1px #ccc solid;
    clear: both;
    padding: 0;
    position: relative;
    top: -1px;
    margin-bottom: -1px;
  }
  /* line 70, ../../sass/modules/_tabs.scss */
  .jquery_tabs .tabbody {
    padding-top: 20px;
  }

  /* hiding texts visually */
  /* line 76, ../../sass/modules/_tabs.scss */
  .jquery_tabs .tabhead {
    position: absolute;
    left: -32768px;
  }

  /* line 80, ../../sass/modules/_tabs.scss */
  .jquery_tabs .current-info,
  .jquery_tabs .accessibletabsanchor {
    left: -999em;
    position: absolute;
  }

   /** Avoid margin collapsing to enable correct sync of all tabs
    *
    * @workaround
    * @affected all browsers
    * @css-for all browsers
    * @valid yes
	*/
  /* line 94, ../../sass/modules/_tabs.scss */
  .jquery_tabs .tab-content {
    border-bottom: 1px transparent solid;
    border-top: 1px transparent solid;
    padding-top: 1.5em;
    *overflow: hidden;
  }
}
/* Make tabs printable */
@media print {
  /* line 106, ../../sass/modules/_tabs.scss */
  .jquery_tabs .tabs-list {
    display: none !important;
  }
  /* line 109, ../../sass/modules/_tabs.scss */
  .jquery_tabs .tabbody,
  .jquery_tabs .tabhead {
    display: block !important;
  }
}
/* line 1, ../../sass/modules/_buttons.scss */
.standard-button {
  display: block;
  padding: 10px 24px 10px 10px;
  background-color: #a3988e;
  border: 1px solid #a3988e;
  color: #fff;
  width: 100%;
  cursor: pointer;
  text-align: left;
  position: relative;
  margin-top: 21px;
}
/* line 12, ../../sass/modules/_buttons.scss */
.standard-button:after {
  content: "\00BB";
  float: right;
  right: 13px;
  position: absolute;
}
/* line 18, ../../sass/modules/_buttons.scss */
.standard-button:hover, .standard-button:focus {
  background-color: #fff;
  color: #a3988e;
}
/* line 22, ../../sass/modules/_buttons.scss */
.standard-button:active {
  position: relative;
  top: 1px;
  left: 1px;
}

/* line 29, ../../sass/modules/_buttons.scss */
.submit-button {
  display: block;
  padding: 10px 24px 10px 10px;
  background-color: #e2001a;
  border: 1px solid #e2001a;
  color: #fff;
  width: 100%;
  cursor: pointer;
  text-align: left;
  position: relative;
  margin-top: 21px;
}
/* line 40, ../../sass/modules/_buttons.scss */
.submit-button:after {
  content: "\00BB";
  float: right;
  right: 13px;
  position: absolute;
}
/* line 46, ../../sass/modules/_buttons.scss */
.submit-button:hover, .submit-button:focus {
  background-color: #fff;
  color: #e2001a;
}
/* line 50, ../../sass/modules/_buttons.scss */
.submit-button:active {
  position: relative;
  top: 1px;
  left: 1px;
}

/* line 57, ../../sass/modules/_buttons.scss */
.details-link {
  display: block;
  background-color: #ddd8d3;
  border: 1px solid #ddd8d3;
  color: #333;
  padding: 10px 24px 10px 10px;
  text-decoration: none;
  position: relative;
  width: 130px;
  float: right;
}
/* line 67, ../../sass/modules/_buttons.scss */
.details-link:hover, .details-link:focus {
  background-color: #333;
  border-color: #333;
  color: #f6f4f1;
}
/* line 72, ../../sass/modules/_buttons.scss */
.details-link:after {
  content: "\00bb";
  float: right;
  position: absolute;
  right: 13px;
}

/* line 80, ../../sass/modules/_buttons.scss */
.downloadlink {
  display: block;
  background-color: #ddd8d3;
  border: 1px solid #ddd8d3;
  color: #333;
  padding: 10px;
  text-align: center;
  text-decoration: none;
}
/* line 88, ../../sass/modules/_buttons.scss */
.downloadlink:hover, .downloadlink:focus {
  background-color: #333;
  border-color: #333;
  color: #f6f4f1;
}
/* line 93, ../../sass/modules/_buttons.scss */
.downloadlink:after {
  content: "»";
  display: inline-block;
  margin-left: 15px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  position: relative;
  top: 1px;
}

/* line 104, ../../sass/modules/_buttons.scss */
.kontakt-button-box .tocontact {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-right: 20px;
}
/* line 110, ../../sass/modules/_buttons.scss */
.kontakt-button-box .tocontact a {
  overflow: hidden;
}
/* line 111, ../../sass/modules/_buttons.scss */
.kontakt-button-box .tocontact a:after {
  content: "\00BB";
  float: right;
  margin-right: 10px;
  color: inherit;
}

/* line 2, ../../sass/modules/_maintenance.scss */
.maintenance p {
  font-size: 16px;
}
/* line 5, ../../sass/modules/_maintenance.scss */
.maintenance .privacy {
  border: none;
  padding-top: 0;
  margin-top: 0;
  text-align: center;
}

/* line 12, ../../sass/modules/_maintenance.scss */
.logo.no-link:hover,
.logo.no-link:focus {
  opacity: 1;
}

/* line 1, ../../sass/modules/_survey.scss */
.survey.dl-survey {
  font-family: "spar-regular", Arial, Helvetica, sans-serif;
  font-size: 87.5%;
  color: #444;
  line-height: 1.5;
}
/* line 7, ../../sass/modules/_survey.scss */
.survey.dl-survey .question, .survey.dl-survey .response {
  border: none;
  padding: 15px;
  margin-bottom: 20px;
  background-color: #f6f4f1;
}
/* line 13, ../../sass/modules/_survey.scss */
.survey.dl-survey .question .progressbar, .survey.dl-survey .response .progressbar {
  padding: 2px;
  background-color: #a3988e;
}
/* line 17, ../../sass/modules/_survey.scss */
.survey.dl-survey .question .progressbar div > span, .survey.dl-survey .response .progressbar div > span {
  font-weight: normal;
}
/* line 24, ../../sass/modules/_survey.scss */
.survey.dl-survey .response h3 {
  margin-bottom: 0;
}
/* line 29, ../../sass/modules/_survey.scss */
.survey.dl-survey .answer {
  padding: 10px 10px 0 10px;
  background-color: #fff;
}
/* line 33, ../../sass/modules/_survey.scss */
.survey.dl-survey .answer:last-child {
  padding-bottom: 10px;
}
/* line 38, ../../sass/modules/_survey.scss */
.survey.dl-survey .error {
  color: #e2001a;
}
/* line 42, ../../sass/modules/_survey.scss */
.survey.dl-survey select {
  border: 1px solid #ddd8d3;
  padding: 10px;
  font-family: "spar-regular", Arial, Helvetica, sans-serif;
  font-size: 14px;
}
/* line 49, ../../sass/modules/_survey.scss */
.survey.dl-survey input[type=submit] {
  background-color: #e2001a;
  font-weight: normal;
  height: auto;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 10px 24px 10px 10px;
  border: 1px solid #e2001a;
  color: #fff;
  width: 100%;
  cursor: pointer;
  text-align: left;
  position: relative;
  font-size: 14px;
}
/* line 66, ../../sass/modules/_survey.scss */
.survey.dl-survey input[type=submit]:hover, .survey.dl-survey input[type=submit]:focus {
  background-color: #fff;
  color: #e2001a;
}
/* line 72, ../../sass/modules/_survey.scss */
.survey.dl-survey h2 {
  color: #e2001a;
  font-size: 16px;
  margin: 0 0 20px 0;
}
/* line 78, ../../sass/modules/_survey.scss */
.survey.dl-survey label {
  font-size: 14px;
}
/* line 82, ../../sass/modules/_survey.scss */
.survey.dl-survey input[type=checkbox] + label > span:first-child,
.survey.dl-survey input[type=radio] + label > span:first-child {
  height: 1em !important;
  width: 1em !important;
}
/* line 87, ../../sass/modules/_survey.scss */
.survey.dl-survey input[type=checkbox] + label > span:first-child:before,
.survey.dl-survey input[type=radio] + label > span:first-child:before {
  text-shadow: none !important;
  height: 1em !important;
  width: 1em !important;
  color: #444 !important;
}
/* line 95, ../../sass/modules/_survey.scss */
.survey.dl-survey input[type=radio] + label > span > span:first-child {
  height: 0.9em !important;
  width: 0.84em !important;
  margin: 0 !important;
  background: #444 !important;
  border: #444 !important;
}

@media print {
  /**
  * @section basic layout preparation
  */
  /* (en) change font size unit to [pt] - avoids problems with [px] in Gecko based browsers  	*/
  /* (de) Wechsel der der Schriftgrößen-Maßheinheit zu [pt] - Probleme mit [px] in Gecko-Browsern vermeiden */
  /* line 9, ../../sass/modules/basics/_print.scss */
  body {
    font-size: 8pt;
    padding: 0 5px;
    background-color: #fff !important;
  }
  /* line 14, ../../sass/modules/basics/_print.scss */
  body p, body div, body span {
    orphans: 3;
    widows: 3;
  }

  /* (en) Hide unneeded container of the screenlayout in print layout */
  /* (de) Für den Druck nicht benötigte Container des Layouts abschalten */
  /* line 22, ../../sass/modules/basics/_print.scss */
  nav,
  .welt,
  .meta-right,
  .subnav,
  .no-subnav,
  #carousel-front,
  .img-teaser a:after,
  .goon,
  .teaser-footer,
  .kontakt-button-box,
  .tocontact,
  .footer .ym-grid + .ym-grid,
  .footer .mm + .ym-grid,
  .footer .ym-grid + .mm,
  .footer .mm + .mm,
  .item.slick-slide,
  .portrait,
  h1 a:after,
  .cta,
  .content p[data-icon],
  .speakerdeck-iframe {
    display: none !important;
  }

  /*------------------------------------------------------------------------------------------------------*/
  /* (en) Avoid page breaks right after headings */
  /* (de) Vermeidung von Seitenumbrüchen direkt nach einer Überschrift */
  /* line 47, ../../sass/modules/basics/_print.scss */
  h1, h2 {
    font-size: 11pt !important;
    page-break-after: avoid;
  }

  /* line 52, ../../sass/modules/basics/_print.scss */
  h3, h4, h5, h6 {
    font-size: 10pt !important;
    page-break-after: avoid;
  }

  /*------------------------------------------------------------------------------------------------------*/
  /* line 59, ../../sass/modules/basics/_print.scss */
  article p {
    max-width: 100%;
  }

  /* line 61, ../../sass/modules/basics/_print.scss */
  .content .ym-wbox {
    padding: 0;
  }

  /* line 63, ../../sass/modules/basics/_print.scss */
  #intro {
    padding: 0;
  }

  /* line 64, ../../sass/modules/basics/_print.scss */
  #header {
    margin: 0;
  }

  /* line 65, ../../sass/modules/basics/_print.scss */
  .pills li {
    color: #000;
    background-color: transparent;
  }

  /*------------------------------------------------------------------------------------------------------*/
  /* General adjustments for DL */
  /* line 69, ../../sass/modules/basics/_print.scss */
  .dl-content-area,
  .footer {
    background-color: transparent;
    padding-bottom: 0 !important;
  }

  /* line 74, ../../sass/modules/basics/_print.scss */
  .breadcrumb {
    margin-top: 0;
    margin-bottom: 10px;
    top: 0;
  }
  /* line 78, ../../sass/modules/basics/_print.scss */
  .breadcrumb .crumb {
    height: auto;
    background-image: none;
    margin: 0 12px 0 12px;
  }
  /* line 82, ../../sass/modules/basics/_print.scss */
  .breadcrumb .crumb:before {
    background-image: none;
    content: "\00BB";
    position: absolute;
    height: auto;
    width: auto;
    left: -18px;
  }
  /* line 90, ../../sass/modules/basics/_print.scss */
  .breadcrumb .crumb:after {
    content: normal;
    background-image: none;
  }
  /* line 94, ../../sass/modules/basics/_print.scss */
  .breadcrumb .crumb a, .breadcrumb .crumb .nolink {
    padding: 0;
  }

  /* line 99, ../../sass/modules/basics/_print.scss */
  .slick-track,
  .item.slick-slide.slick-active {
    width: auto !important;
    display: block !important;
    left: 0 !important;
  }

  /* line 105, ../../sass/modules/basics/_print.scss */
  .ym-wbox {
    padding: 10px 0 0 0;
  }
  /* line 107, ../../sass/modules/basics/_print.scss */
  .ym-wbox > h2 {
    display: none;
  }
  /* line 110, ../../sass/modules/basics/_print.scss */
  .ym-wbox.meta {
    padding: 0 0 0 0;
  }

  /* line 114, ../../sass/modules/basics/_print.scss */
  .ym-wbox-2 {
    padding: 0;
  }
  /* line 116, ../../sass/modules/basics/_print.scss */
  .ym-wbox-2 .ym-gl,
  .ym-wbox-2 .ym-gr {
    padding-bottom: 20px;
  }

  @-moz-document url-prefix() {
    /* line 122, ../../sass/modules/basics/_print.scss */
    .ym-grid, .mm {
      display: block;
      table-layout: initial;
    }
  }
  /* line 127, ../../sass/modules/basics/_print.scss */
  .ym-grid + .ym-grid, .mm + .ym-grid, .ym-grid + .mm, .mm + .mm {
    margin-top: 10px;
  }

  /* line 130, ../../sass/modules/basics/_print.scss */
  .ym-g50.ym-gbox,
  .subnav + .ym-g50,
  .no-subnav + .ym-g50 {
    width: 75%;
  }

  /* line 135, ../../sass/modules/basics/_print.scss */
  .ym-g75.ym-gbox,
  .subnav + .ym-g75,
  .no-subnav + .ym-g75 {
    width: 100%;
  }
  /* line 140, ../../sass/modules/basics/_print.scss */
  .ym-g75.ym-gbox > .ym-grid > .ym-g66, .ym-g75.ym-gbox > .mm > .ym-g66,
  .subnav + .ym-g75 > .ym-grid > .ym-g66,
  .subnav + .ym-g75 > .mm > .ym-g66,
  .no-subnav + .ym-g75 > .ym-grid > .ym-g66,
  .no-subnav + .ym-g75 > .mm > .ym-g66 {
    padding-top: 0 !important;
  }

  /* line 145, ../../sass/modules/basics/_print.scss */
  .ym-gbox {
    padding-top: 20px !important;
    padding-right: 0 !important;
    padding-bottom: 10px !important;
    padding-left: 0 !important;
  }

  /* line 151, ../../sass/modules/basics/_print.scss */
  .teaser, .imageteaser {
    padding: 0;
    border: none;
    min-height: 0 !important;
    background-color: #fff !important;
  }

  /* line 157, ../../sass/modules/basics/_print.scss */
  .teaser p, .teaser ul {
    margin-right: 0;
    margin-bottom: 0;
  }

  /* line 161, ../../sass/modules/basics/_print.scss */
  .img-teaser a {
    position: static;
    padding: 10px 0 0 0;
    font-size: 11pt;
  }

  /* line 167, ../../sass/modules/basics/_print.scss */
  .teaser.contact .ym-gl:last-child,
  .teaser.contact .ym-gr:last-child {
    margin-bottom: 0;
  }
  /* line 171, ../../sass/modules/basics/_print.scss */
  .teaser.contact .kontaktliste {
    margin-bottom: 0;
  }

  /* line 175, ../../sass/modules/basics/_print.scss */
  .teaseraside {
    margin: 0 0 20px 20px;
  }

  /* line 178, ../../sass/modules/basics/_print.scss */
  .meta-left .logo {
    margin-left: 0;
  }
  /* line 180, ../../sass/modules/basics/_print.scss */
  .meta-left .logo img {
    width: 75%;
    height: 75%;
  }

  /* line 186, ../../sass/modules/basics/_print.scss */
  .footer header img {
    width: 122px;
    height: 21.5px;
  }
  /* line 190, ../../sass/modules/basics/_print.scss */
  .footer ul.privacy-list {
    margin-top: 0;
    padding-top: 10px;
  }

  /* line 196, ../../sass/modules/basics/_print.scss */
  .faq-container .faq-btn {
    background-color: #a3988e;
  }
  /* line 198, ../../sass/modules/basics/_print.scss */
  .faq-container .faq-btn:after,
  .faq-container .faq-btn h3 {
    color: #fff;
  }
  /* line 203, ../../sass/modules/basics/_print.scss */
  .faq-container .faq-content {
    display: block;
    background-color: #f6f4f1;
  }

  /* line 208, ../../sass/modules/basics/_print.scss */
  .download {
    padding-bottom: 10px !important;
  }

  /* line 212, ../../sass/modules/basics/_print.scss */
  .executivewrapper .ym-g33 {
    display: none;
  }
  /* line 215, ../../sass/modules/basics/_print.scss */
  .executivewrapper .ym-g66 {
    width: 100%;
    padding-left: 0;
  }

  /* line 220, ../../sass/modules/basics/_print.scss */
  .review-slider {
    display: none;
    padding-top: 10px;
    padding-bottom: 20px;
  }
  /* line 224, ../../sass/modules/basics/_print.scss */
  .review-slider button {
    display: none !important;
  }
  /* line 227, ../../sass/modules/basics/_print.scss */
  .review-slider .slick-slide {
    display: none;
  }
  /* line 229, ../../sass/modules/basics/_print.scss */
  .review-slider .slick-slide:first-child {
    display: block;
  }
  /* line 231, ../../sass/modules/basics/_print.scss */
  .review-slider .slick-slide:first-child .slick-slider-footer {
    display: none;
  }

  /* line 238, ../../sass/modules/basics/_print.scss */
  .press button {
    display: none !important;
  }
  /* line 241, ../../sass/modules/basics/_print.scss */
  .press .slick-slide {
    display: none;
  }
  /* line 243, ../../sass/modules/basics/_print.scss */
  .press .slick-slide.slick-active {
    width: 150px !important;
    display: inline-block !important;
  }

  /* line 249, ../../sass/modules/basics/_print.scss */
  .company-search-result #map_canvas {
    width: 460px;
  }

  /* line 252, ../../sass/modules/basics/_print.scss */
  .service-search-result #map_canvas {
    width: 665px;
  }

  /* line 255, ../../sass/modules/basics/_print.scss */
  .ym-grid.ym-equalize, .ym-equalize.mm {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  /* line 259, ../../sass/modules/basics/_print.scss */
  .ym-equalize > [class*="ym-g"] {
    display: table-cell;
  }

  /* line 262, ../../sass/modules/basics/_print.scss */
  .kontaktbox p,
  .teaserheader-small {
    font-size: 8pt !important;
  }

  /*------------------------------------------------------------------------------------------------------*/
}
