@charset "UTF-8";
/**
 * Funktion und Map für einheitliche z-index Werte
 *
 * Diese Funktion wird zur Vereinheitlichung der z-index Werte genutzt, damit keine willkürlichen Zahlen wie 99999987
 * oder ähnliches Zahlenwirrwarr genutzt werden.
 *
 * @param {string|int} $z-layers - Map aller z-index Werte
 *
 * @return {undefined}
 */
/**
 * Function zur Erstellung von Transitions
 *
 * Gibt die Werte für das Attribut "transition" aus.
 * In der $transitionMap dürfen nur folgende Attribute enthalten sein:
 * duration - Dauer der Transition - Standardwert: .25s
 * delay - Verzögerung der Transition - Standardwert: false
 * timing-function - Timing-function - Standardwert: ease
 *
 * @link https://github.com/NikFlip/transition-mixin
 * @param $transitionMap - Kann / Darf folgende Werte enthalten: duration, delay (false oder Sekunden), timing-function
 * @param: $transitionStylesMap - Map mit den properties, die transitioned werden
 *
 */
/*
 * Mixin zur Erstellung der Newsletter Column Paddings
 *
 * Berechnet die Column-Padding-Werte (Rechts + Links) anhand des Column und des Komponenten Paddings.
 *
 * @param {Map}  $columns  Map mit den Columns
 * @param {Number} $gap Der Abstand zwischen 2 Columns
 * @param {List,Number} $text__padding Eine Liste mit Padding Werten oder ein einzelner Padding Wert
 */
/*
 * Mixin zum Extrahieren von Eigenschaften aus einer Map anhand einer Eigenschaftenliste
 *
 * Die übergebene Eigenschaftenliste wird durch laufen und prüft ob die Eigenschaft
 * in der übergebenen Map vorhanden ist. Sofern vorhanden, wird die Eigenschaft und
 * deren Wert in eine neue Map Extrahiert. Die dadurch neu entstehende Map wird zurück gegeben
 *
 * @param {Map}  $nc_button  Map mit Eigenschaften und Werten
 * @param {List} $properties Eine Liste mit Eigenschaften
 * @return {Map}
 */
/*
  * Mixin zur Ausgabe der Newsltter-Button-Attribute
  *
  * Die übergebenen Maps werden zu einer Map zusammengefügt.
  * Die Custom Map erweitert / überschreibt die Basic Map. Die Attribute werden ausgegeben.
  *
  * @param {String} $style            Welcher Style soll ausgegeben werden? td oder content
  * @param {Map}    $nc_button_basic  Map für Button Attribute - Standard
  * @param {Map}    $nc_button_custom Map für Button Attribute - Individualisierung
 */
/*
  * Mixin zur Ausgabe der Navigationspunkt-Attribute
  *
  * Die übergebenen Maps werden zu einer Map zusammengefügt.
  * Die Custom Map erweitert / überschreibt die Basic Map. Die Attribute werden ausgegeben.
  * Es kann in den Maps ein Attribut "nc-icon" übergeben werden, welches eine Map enthalten muss.
  * Sofern vorhanden, wird das nc_icon mixin für die Ausgabe der Icons mit den beiden nc-icon Maps
  * aufgerufen.
  *
  * @param: $nc_navigation-item_basic Map für Navigationspunkt Attribute - Standard
  * @param: $nc_navigation-item_custom Map für Navigationspunkt Attribute - Individualisierung - optional
 */
/**
 * Überprüft ob in der übergebenen Map alle Attribute entfernt wurden, die mit "nc-" beginnen.
 *
 * Die Funktion sollte immer aufgerufen werden, bevor die Werte einer Map als CSS ausgegeben werden,
 * um sicher zu stellen, dass keine internen Attribute mehr vorhanden sind.
 *
 * @param $nc_map
 * @return boolean
 */
/*
  * Mixin zur Erstellung der Icon-CSS Anweisungen inkl. before / after etc.
  *
  * Die übergebenen Maps werden zusammengefügt und die CSS-Anweisungen für ein Icon
  * wird ausgegeben. Die Custom Map überschreibt / erweitert die Basic Map.
  * Über ein Attribut "nc-position" in den Maps muss die Position des Icons bestimmt werden.
  * Sollten beide übergebenen Maps leer sein, wird nichts ausgegeben.
  *
  * Gültige Werte für "nc-position" sind:
  * both - Ausgabe des Icon vor und hinter dem Element
  * before - Ausgabe des Icon vor dem Element
  * after - Ausgabe des Icon nach dem Element
  * none - Keine Ausgabe des Icon
  * Standard-Wert, wenn nicht explizit angegeben: false (Fehler)
  *
  * Über ein Attribut "nc-margin" kann der Abstand des Icon zum Element bestimmt werden.
  * Je nach Position des Icons wird der Abstand automatisch nach links bzw. rechts gesetzt.
  * Als Wert muss eine Pixel-Angabe übergeben werden, wie z.B. : "20px".
  * Standardwert, wenn nicht explizit angegeben: 10px
  *
  *
  * @param: $nc_icon_basic Map für Icon - Standard
  * @param: $nc_icon_custom Map für Icon - Individualisierung
 */
/**
 * Ermittelt die angegebene Seite (top/bottom/left/right) anhand der übergebenen Liste.
 *
 * @example Ermittelt die `bottom` Eigenschaft einer Shorthand-Eigenschaft-Liste
 * $shorthandPadding: 5px 8px 4px;
 * nc_extract-shorthand-side-spacing($shorthandPadding, bottom)
 * // return: 4px;
 *
 * @param {List|Number} $val  Liste mit shorthand properties (z.B. 1px 2px 3px)
 * @param {Keyword} $side     Welcher Wert soll zurück geben werden. Muss "top", "right", "bottom", oder "left" sein.
 *
 * @returns {Number} Ein einzelner Wert anhand von "$val" und "$side".
 */
/**
 * Gibt die kontrastreichere der beiden übergebenen Farben in Relation zur Hintergrundfarbe zurück
 *
 * Es wird ein Kontrast für die beiden übergebenen Farben in Relation zur übergebenen
 * Hintergrundfarbe berechnet. Die kontrastreichere Farbe wird zurückgegeben.
 * Einfluss auf den Schwellenwert bei der Kontrastberechnung kann man über
 * die Variable $nc_theme__color_contrast-factor nehmen.
 * Der contrast-factor sollte ungefähr zwischen 0 und 2 liegen.
 * Je höher der contrast-factor, desto eher wird die helle Farbe gewählt.
 * Je niedriger der contrast-factor, desto eher wird die dunkle Farbe gewählt.
 * Der Kontrast wird nach folgender Formel berechnet:
 * ((Red value X 299) + (Green value X 587) + (Blue value X 114)) / 1000
 *
 * @link https://codepen.io/davidhalford/pen/wlDxL
 * @link http://www.webmasterworld.com/r.cgi?f=88&d=9769&url=http://www.w3.org/TR/AERT#color-contrast
 *
 * @param $background-color - Hintergrundfarbe
 * @param $color_light Helle Farbe (für dunkle Hintergründe)
 * @param $color_dark Dunkle Farbe (für helle Hintergründe)
 */
/*
  * Mixin zur Ausgabe der Button-Attribute
  *
  * Die übergebenen Maps werden zu einer Map zusammengefügt.
  * Die Custom Map erweitert / überschreibt die Basic Map. Die Attribute werden ausgegeben.
  * Es kann in den Maps ein Attribut "nc-icon" übergeben werden, welches eine Map enthalten muss.
  * Sofern vorhanden, wird das nc_icon mixin für die Ausgabe der Icons mit den beiden nc-icon Maps
  * aufgerufen.
  *
  * @param: $nc_button_basic Map für Button Attribute - Standard
  * @param: $nc_button_custom Map für Button Attribute - Individualisierung
 */
/*
  * Mixin zur Ausgabe der der Breakpoints
  *
  * Breakpoint Mediaquery werden erstellt und ausgegeben. $nc_breakpoint definiert den auszugebenden Breakpoint.
  * Mit dem $key setzt man die min oder max width. Zudem kann noch efiniert werden ob der orientation mode
  * berücksichtig werden soll.
  *
  * @param: $nc_breakpoint Breakpoint größe - Standard: md | sm | md | md-custom | lg | xl | xxl | xxxxl | xxxxxl
  * @param: $key min oder max widht ausgabe - Standard: min | max
  * @param: $orientation Orientation aktivieren - Standard: false | landscape | portrait
  *
 */
/* ==================================================================================================== BASIC ======= */
/* ================================================================================================ HEADLINES ======= */
/* ================================================================================================== BUTTONS ======= */
/* =================================================================================================== HEADER ======= */
/* =================================================================================================== SLIDER ======= */
/* ==================================================================================== BREAKPOINTS MAP WIDTH ======= */
/* ============================================================================== BREAKPOINTS CONTAINER WIDTH ======= */
/* ============================================================================== BREAKPOINTS CAPTION PADDING ======= */
/* ================================================================================= BREAKPOINT DEFAULT WIDTH ======= */
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  display: inline-block;
  width: 100%;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

span[lang] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}
img.img-responsive.lazyload {
  width: 100%;
  aspect-ratio: attr(width)/attr(height);
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * 1. Correct the different padding for dates and times
 */
input[type=date], input[type=time], input[type=datetime-local], input[type=month] {
  line-height: 1.5;
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/** ============================================ CUSTOM ================================================ */
/* HTML */
html {
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}

:focus {
  outline: none;
}

::-moz-focus-inner {
  border: 0;
}

/** BUTTON **/
.btn {
  text-transform: none;
  white-space: normal;
  font-size: inherit;
  line-height: inherit;
}

p {
  margin: 0 0 10px;
}

/** NAVIGATION **/
.navigation {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.navigation li {
  position: relative;
}
.navigation li a {
  display: block;
}

/** Vertikale Zentrierung der direkten Kind-Elemente
 */
.vertical-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/** Vertikale Positionierung am Boden der direkten Kind-Elemente
 */
.vertical-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/**
Visible für Flex
 */
.visible-xs-flex,
.visible-sm-flex,
.visible-md-flex,
.visible-lg-flex {
  display: none;
}

/** Suchen Baustein Abstände zurücksetzen **/
.search-input {
  padding-left: 15px;
}

.Lucene_Search form .row, .moduleTextSearch form .row {
  margin: 0;
}
.Lucene_Search form .row .search-input, .moduleTextSearch form .row .search-input {
  padding-right: 15px;
  padding-left: 0;
}

.Lucene_Search form .row, .moduleTextSearch form .row {
  margin: 0;
}
.Lucene_Search form .row .search-btn, .moduleTextSearch form .row .search-btn {
  padding-left: 0;
  padding-right: 0;
}

.Lucene_SearchSmall form .row {
  margin: 0;
}
.Lucene_SearchSmall form .row .search-input {
  padding-right: 15px;
  padding-left: 0;
}
.Lucene_SearchSmall form .row .search-btn {
  padding-left: 0;
  padding-right: 0;
}

.articleSearchSmall .search-input {
  padding-right: 15px;
}

.articleSearchSmall .search-btn {
  padding-left: 15px;
}

.search-btn .btn-primary, .search-btn .btn {
  margin-top: 0;
  padding: 8px 10px;
}

.mobile-nav div.mobile-nav-search .search-input {
  padding-right: 15px;
}

/**
CSS Safari Browserhack - Teasermanager
 */
@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) and (display: flow-root) {
    .Special_ChangingContents .row:before, .Special_ChangingContents .row:after {
      display: none;
    }
  }
}
@media (max-width: 767px) {
  .visible-xs-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.module-style__match-height .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.module-style__match-height .row:after, .module-style__match-height .row:before {
  display: none;
}
.module-style__match-height .row > [class*=col-] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-direction: column;
}
.module-style__match-height .row > [class*=col-] > * {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 100;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto-italic-100.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 300;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto-italic-300.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto-italic-400.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto-italic-500.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 700;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto-italic-700.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 900;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto-italic-900.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto-normal-100.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto-normal-300.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto-normal-400.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto-normal-500.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto-normal-700.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto-normal-900.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: italic;
  font-weight: 100;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto_Condensed-italic-100.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: italic;
  font-weight: 200;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto_Condensed-italic-200.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: italic;
  font-weight: 300;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto_Condensed-italic-300.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: italic;
  font-weight: 400;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto_Condensed-italic-400.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: italic;
  font-weight: 500;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto_Condensed-italic-500.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: italic;
  font-weight: 600;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto_Condensed-italic-600.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: italic;
  font-weight: 700;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto_Condensed-italic-700.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: italic;
  font-weight: 800;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto_Condensed-italic-800.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: italic;
  font-weight: 900;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto_Condensed-italic-900.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 100;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto_Condensed-normal-100.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 200;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto_Condensed-normal-200.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto_Condensed-normal-300.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto_Condensed-normal-400.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 500;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto_Condensed-normal-500.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto_Condensed-normal-600.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto_Condensed-normal-700.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto_Condensed-normal-800.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 900;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Roboto_Condensed-normal-900.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
.editor-style__counterup {
  font-size: 1.90625rem;
  font-weight: 600;
  color: #3fbfe5;
}

.editor-style__wordmark {
  background: #3fbfe5;
  color: #fff;
  padding: 2px 7px;
}

.module-style__border-radius .module-content-block {
  border-radius: 5px;
}
.module-style__border-radius .module-content-block .thumbnail {
  border-radius: 5px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.module-style__border-radius .module-content-block .thumbnail img {
  border-radius: 5px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.module-style__border-radius.Special_Sponsor .owl-item .header-img {
  border-radius: 5px;
}
.module-style__border-radius.Special_Sponsor .owl-item .header-img .thumbnail {
  border-radius: 5px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.module-style__border-radius.Special_Sponsor .owl-item .header-img .thumbnail img {
  border-radius: 5px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.module-style__box-shadow .module-content-block {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
  -webkit-transition: -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-style__box-shadow .module-content-block:hover {
  -webkit-transition: -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.module-style__box-shadow.Special_ChangingContents .category-elements > .category-element, .module-style__box-shadow.Special_ContactPerson .category-elements > .category-element {
  overflow: visible;
}
.module-style__box-shadow.Special_ChangingContents .category-elements .module-content-block, .module-style__box-shadow.Special_ContactPerson .category-elements .module-content-block {
  padding: 25px;
}
.module-style__box-shadow.Special_Sponsor .owl-item .header-img {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
  -webkit-transition: -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-style__box-shadow.Special_Sponsor .owl-item .header-img:hover {
  -webkit-transition: -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.module-style__box-white .module-content-block {
  background: #fff;
  padding: 25px;
}
.module-style__box-white.Special_ChangingContents .category-elements .module-content-block {
  padding: 25px;
}
.module-style__box-white.Special_Sponsor .owl-item .header-img {
  background: #fff;
}

.module-style__button-center p > .btn {
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.module-wrapper > [class*=col-] .amphi-slideshow.slider-text-on-image .owl-stage-outer .owl-item .header-img .gallery-carousel-caption {
  padding: 25px calc(30px + 30px);
}
.module-wrapper > [class*=col-] .amphi-slideshow.slider-text-below-image .owl-carousel:not(.navigation-offsite-slideshow) .owl-nav, .module-wrapper > [class*=col-] .amphi-slideshow.slider-text-below-image .owl-carousel:not(.navigation-offsite-slideshow) .owl-dots {
  opacity: 0;
  -webkit-transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper > [class*=col-] .amphi-slideshow.slider-text-below-image .owl-carousel:not(.navigation-offsite-slideshow):hover .owl-nav, .module-wrapper > [class*=col-] .amphi-slideshow.slider-text-below-image .owl-carousel:not(.navigation-offsite-slideshow):hover .owl-dots {
  opacity: 1;
  -webkit-transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper > [class*=col-] .amphi-slideshow .owl-nav div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  background: #3fbfe5;
  padding: 0;
  border-radius: 5px;
  opacity: 1;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper > [class*=col-] .amphi-slideshow .owl-nav div span {
  font-size: 25px;
  color: #fff;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper > [class*=col-] .amphi-slideshow .owl-nav div span:before {
  position: relative;
}
.module-wrapper > [class*=col-] .amphi-slideshow .owl-nav div.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.module-wrapper > [class*=col-] .amphi-slideshow .owl-nav div:hover {
  background: #95c11f;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper > [class*=col-] .amphi-slideshow .owl-nav div:hover span {
  color: #fff;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper > [class*=col-] .amphi-slideshow .owl-dots {
  bottom: 15px;
}
.module-wrapper > [class*=col-] .amphi-slideshow .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #3fbfe5;
  border: none;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper > [class*=col-] .amphi-slideshow .owl-dots .owl-dot.active span, .module-wrapper > [class*=col-] .amphi-slideshow .owl-dots .owl-dot:hover span, .module-wrapper > [class*=col-] .amphi-slideshow .owl-dots .owl-dot:focus span {
  background: #95c11f;
  border: none;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper > [class*=col-] .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-stage {
  padding-top: calc(30px + 15px);
  padding-bottom: 15px;
}
.module-wrapper > [class*=col-] .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav div {
  width: 30px;
  height: 30px;
  background: #3fbfe5;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper > [class*=col-] .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav div span {
  font-size: 25px;
  color: #fff;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper > [class*=col-] .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav div.owl-prev span, .module-wrapper > [class*=col-] .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav div.owl-next span {
  padding: 0;
}
.module-wrapper > [class*=col-] .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav div.owl-prev {
  right: calc(30px + 15px);
}
.module-wrapper > [class*=col-] .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav div:hover {
  background: #95c11f;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper > [class*=col-] .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav div:hover span {
  color: #fff;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper > [class*=col-] .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-dots {
  position: relative;
}
.module-wrapper.template-slideshow .amphi-slideshow .owl-carousel .owl-stage {
  padding-top: calc(30px + 15px);
}
.module-wrapper.template-slideshow .amphi-slideshow .owl-nav div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  background: #3fbfe5;
  padding: 0;
  border-radius: 5px;
  opacity: 1;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper.template-slideshow .amphi-slideshow .owl-nav div span {
  font-size: 25px;
  color: #fff;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper.template-slideshow .amphi-slideshow .owl-nav div span:before {
  position: relative;
}
.module-wrapper.template-slideshow .amphi-slideshow .owl-nav div.owl-prev span, .module-wrapper.template-slideshow .amphi-slideshow .owl-nav div.owl-next span {
  padding: 0;
}
.module-wrapper.template-slideshow .amphi-slideshow .owl-nav div.owl-prev {
  right: calc(30px + 15px);
}
.module-wrapper.template-slideshow .amphi-slideshow .owl-nav div.owl-prev span:before {
  left: -1px;
}
.module-wrapper.template-slideshow .amphi-slideshow .owl-nav div.owl-next span:before {
  right: -1px;
}
.module-wrapper.template-slideshow .amphi-slideshow .owl-nav div.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.module-wrapper.template-slideshow .amphi-slideshow .owl-nav div:hover {
  background: #95c11f;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper.template-slideshow .amphi-slideshow .owl-nav div:hover span {
  color: #fff;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper.template-slideshow .amphi-slideshow .owl-dots {
  position: relative;
  bottom: 0;
}
.module-wrapper.template-slideshow .amphi-slideshow .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #3fbfe5;
  border: none;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper.template-slideshow .amphi-slideshow .owl-dots .owl-dot.active span, .module-wrapper.template-slideshow .amphi-slideshow .owl-dots .owl-dot:hover span, .module-wrapper.template-slideshow .amphi-slideshow .owl-dots .owl-dot:focus span {
  background: #95c11f;
  border: none;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}

.ccm-cookie-declaration .ccm-cookie-declaration--intro, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent {
  margin-bottom: 30px;
}
.ccm-cookie-declaration .ccm-cookie-declaration--embedding {
  margin-bottom: 30px;
}
.ccm-cookie-declaration h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #666666;
  line-height: 1.1;
  margin-bottom: 10px;
}
.ccm-cookie-declaration h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: #3fbfe5;
  line-height: 1.1;
  margin-bottom: 10px;
}
.ccm-cookie-declaration h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #666666;
  line-height: 1.1;
  margin-bottom: 10px;
}
.ccm-cookie-declaration a {
  color: #3fbfe5;
}
.ccm-cookie-declaration a:hover, .ccm-cookie-declaration a:focus {
  color: #95c11f;
}
.ccm-cookie-declaration .ccm-cookie-declaration--change-consent a {
  color: #FFF;
  background-color: #3fbfe5;
  border: none;
  border-radius: 50px;
  margin-top: 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
  display: inline-block;
  font-family: "Roboto Condensed", sans-serif;
  padding: 6px 20px 5px 20px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none !important;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  background: #3fbfe5;
  text-transform: uppercase;
}
.ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:after {
  content: none;
}
.ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:before {
  content: none;
}
.ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:before, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:after {
  font-family: "FontAwesome";
  font-weight: 400;
}
.ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:hover, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:focus, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:active, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a.active {
  color: #FFF;
  background-color: #1daad4;
  border: none;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  font-size: 1rem;
  background: #95c11f;
  border-radius: 50px;
  text-transform: uppercase;
  margin-top: 0;
  text-decoration: none !important;
}
.ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:hover:after, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:focus:after, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:active:after, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a.active:after {
  content: none;
}
.ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:hover:before, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:focus:before, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:active:before, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a.active:before {
  content: none;
}
.ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:hover:before, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:hover:after, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:focus:before, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:focus:after, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:active:before, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:active:after, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a.active:before, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a.active:after {
  font-family: "FontAwesome";
  font-weight: 400;
}
.ccm-cookie-declaration table {
  background-color: transparent;
}
.ccm-cookie-declaration th {
  text-align: left;
}
.ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 21px;
}
.ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > thead > tr > th, .ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > thead > tr > td {
  padding: 6px;
  line-height: 1.5;
  vertical-align: top;
  border-top: 1px solid #e5e5e5;
}
.ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #e5e5e5;
}
.ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > tbody > tr > th, .ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > tbody > tr > td {
  padding: 6px;
  line-height: 1.5;
  vertical-align: top;
  border-top: 1px solid #e5e5e5;
}
.ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > tfoot > tr > td {
  padding: 6px;
  line-height: 1.5;
  vertical-align: top;
  border-top: 1px solid #e5e5e5;
}
.ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > caption + thead > tr:first-child > th, .ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > caption + thead > tr:first-child > td {
  border-top: 0;
}
.ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > colgroup + thead > tr:first-child > th, .ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > colgroup + thead > tr:first-child > td {
  border-top: 0;
}
.ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > thead:first-child > tr:first-child > th, .ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.ccm-cookie-declaration .ccm-cookie-declaration--table-wrapper.ccm--visible-mobile .ccm-cookie-declaration--embedding-asset--title {
  font-size: 1.4625rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.ccm-cookie-declaration .ccm-cookie-declaration--table-wrapper.ccm--visible-mobile .ccm-cookie-declaration--embedding-assets-list {
  margin-bottom: 10px;
}
.ccm-cookie-declaration .ccm-cookie-declaration--table-wrapper.ccm--visible-mobile .ccm-cookie-declaration--embedding-assets-list td {
  border-top: 1px solid #e5e5e5;
}
.ccm-cookie-declaration .ccm-cookie-declaration--table-wrapper.ccm--visible-mobile .ccm-cookie-declaration--embedding-assets-list tr:first-child td {
  border-top: 3px solid #e5e5e5;
}

.dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a {
  color: #FFF;
  background-color: #3fbfe5;
  border: none;
  border-radius: 50px;
  margin-top: 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
  display: inline-block;
  font-family: "Roboto Condensed", sans-serif;
  padding: 6px 20px 5px 20px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none !important;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  background: #3fbfe5;
  text-transform: uppercase;
}
.dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:after {
  content: none;
}
.dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:before {
  content: none;
}
.dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:before, .dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:after {
  font-family: "FontAwesome";
}
.dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:hover, .dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:focus, .dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:active, .dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a.active {
  color: #FFF;
  background-color: #1daad4;
  border: none;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  font-size: 1rem;
  background: #95c11f;
  border-radius: 50px;
  text-transform: uppercase;
  margin-top: 0;
  text-decoration: none !important;
}
.dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:hover:after, .dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:focus:after, .dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:active:after, .dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a.active:after {
  content: none;
}
.dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:hover:before, .dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:focus:before, .dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:active:before, .dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a.active:before {
  content: none;
}
.dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:hover:before, .dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:hover:after, .dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:focus:before, .dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:focus:after, .dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:active:before, .dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:active:after, .dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a.active:before, .dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a.active:after {
  font-family: "FontAwesome";
}

.external-content-preview-buttons .external-content-button {
  background-color: #444;
  color: #fff;
}
.external-content-preview-buttons .external-content-button:hover {
  background-color: #2b2b2b;
  color: #fff;
}

.variant-01 .form-horizontal, .module-style__company-history .form-horizontal, .module-style__teaser-contact .form-horizontal, .pagination .form-horizontal, .Special_ChangingContents .form-horizontal, .Special_ContactPerson .form-horizontal, .Newsletter_Subscribe .form-horizontal, .Newsletter_Unsubscribe .form-horizontal, .Form_Contact .form-horizontal, .Form_FormGenerator .form-horizontal, .Form_Reservation .form-horizontal, .Login_System_Registration .form-horizontal, .Login_System_Deregistration .form-horizontal, .Login_System_Login .form-horizontal, .Lucene_Search .form-horizontal, .Lucene_SearchSmall .form-horizontal, .Addresses_Search .form-horizontal, .Addresses_SearchMaps .form-horizontal, .Community_Guestbook .form-horizontal, .Special_Club_Search .form-horizontal, .Special_Condolence_CondolenceBook .form-horizontal, .Special_Condolence .form-horizontal, .Special_Calendar .form-horizontal {
  margin-top: 30px;
}
.variant-01 .form-horizontal label, .module-style__company-history .form-horizontal label, .module-style__teaser-contact .form-horizontal label, .pagination .form-horizontal label, .Special_ChangingContents .form-horizontal label, .Special_ContactPerson .form-horizontal label, .Newsletter_Subscribe .form-horizontal label, .Newsletter_Unsubscribe .form-horizontal label, .Form_Contact .form-horizontal label, .Form_FormGenerator .form-horizontal label, .Form_Reservation .form-horizontal label, .Login_System_Registration .form-horizontal label, .Login_System_Deregistration .form-horizontal label, .Login_System_Login .form-horizontal label, .Lucene_Search .form-horizontal label, .Lucene_SearchSmall .form-horizontal label, .Addresses_Search .form-horizontal label, .Addresses_SearchMaps .form-horizontal label, .Community_Guestbook .form-horizontal label, .Special_Club_Search .form-horizontal label, .Special_Condolence_CondolenceBook .form-horizontal label, .Special_Condolence .form-horizontal label, .Special_Calendar .form-horizontal label, .variant-01 .form-horizontal .control-label, .module-style__company-history .form-horizontal .control-label, .module-style__teaser-contact .form-horizontal .control-label, .pagination .form-horizontal .control-label, .Special_ChangingContents .form-horizontal .control-label, .Special_ContactPerson .form-horizontal .control-label, .Newsletter_Subscribe .form-horizontal .control-label, .Newsletter_Unsubscribe .form-horizontal .control-label, .Form_Contact .form-horizontal .control-label, .Form_FormGenerator .form-horizontal .control-label, .Form_Reservation .form-horizontal .control-label, .Login_System_Registration .form-horizontal .control-label, .Login_System_Deregistration .form-horizontal .control-label, .Login_System_Login .form-horizontal .control-label, .Lucene_Search .form-horizontal .control-label, .Lucene_SearchSmall .form-horizontal .control-label, .Addresses_Search .form-horizontal .control-label, .Addresses_SearchMaps .form-horizontal .control-label, .Community_Guestbook .form-horizontal .control-label, .Special_Club_Search .form-horizontal .control-label, .Special_Condolence_CondolenceBook .form-horizontal .control-label, .Special_Condolence .form-horizontal .control-label, .Special_Calendar .form-horizontal .control-label {
  font-weight: 600;
}
.variant-01 .form-group .checkbox label, .module-style__company-history .form-group .checkbox label, .module-style__teaser-contact .form-group .checkbox label, .pagination .form-group .checkbox label, .Special_ChangingContents .form-group .checkbox label, .Special_ContactPerson .form-group .checkbox label, .Newsletter_Subscribe .form-group .checkbox label, .Newsletter_Unsubscribe .form-group .checkbox label, .Form_Contact .form-group .checkbox label, .Form_FormGenerator .form-group .checkbox label, .Form_Reservation .form-group .checkbox label, .Login_System_Registration .form-group .checkbox label, .Login_System_Deregistration .form-group .checkbox label, .Login_System_Login .form-group .checkbox label, .Lucene_Search .form-group .checkbox label, .Lucene_SearchSmall .form-group .checkbox label, .Addresses_Search .form-group .checkbox label, .Addresses_SearchMaps .form-group .checkbox label, .Community_Guestbook .form-group .checkbox label, .Special_Club_Search .form-group .checkbox label, .Special_Condolence_CondolenceBook .form-group .checkbox label, .Special_Condolence .form-group .checkbox label, .Special_Calendar .form-group .checkbox label {
  padding-left: 1.563rem;
}
.variant-01 .form-group input[type=checkbox], .module-style__company-history .form-group input[type=checkbox], .module-style__teaser-contact .form-group input[type=checkbox], .pagination .form-group input[type=checkbox], .Special_ChangingContents .form-group input[type=checkbox], .Special_ContactPerson .form-group input[type=checkbox], .Newsletter_Subscribe .form-group input[type=checkbox], .Newsletter_Unsubscribe .form-group input[type=checkbox], .Form_Contact .form-group input[type=checkbox], .Form_FormGenerator .form-group input[type=checkbox], .Form_Reservation .form-group input[type=checkbox], .Login_System_Registration .form-group input[type=checkbox], .Login_System_Deregistration .form-group input[type=checkbox], .Login_System_Login .form-group input[type=checkbox], .Lucene_Search .form-group input[type=checkbox], .Lucene_SearchSmall .form-group input[type=checkbox], .Addresses_Search .form-group input[type=checkbox], .Addresses_SearchMaps .form-group input[type=checkbox], .Community_Guestbook .form-group input[type=checkbox], .Special_Club_Search .form-group input[type=checkbox], .Special_Condolence_CondolenceBook .form-group input[type=checkbox], .Special_Condolence .form-group input[type=checkbox], .Special_Calendar .form-group input[type=checkbox] {
  width: 0.938rem;
  height: 0.938rem;
  display: grid;
  place-content: center;
  background: #f8f9f9;
  margin-top: 0.375rem;
  margin-left: -1.563rem;
  border: 1px solid #d3d3d3;
  border-radius: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
}
.variant-01 .form-group input[type=checkbox]::before, .module-style__company-history .form-group input[type=checkbox]::before, .module-style__teaser-contact .form-group input[type=checkbox]::before, .pagination .form-group input[type=checkbox]::before, .Special_ChangingContents .form-group input[type=checkbox]::before, .Special_ContactPerson .form-group input[type=checkbox]::before, .Newsletter_Subscribe .form-group input[type=checkbox]::before, .Newsletter_Unsubscribe .form-group input[type=checkbox]::before, .Form_Contact .form-group input[type=checkbox]::before, .Form_FormGenerator .form-group input[type=checkbox]::before, .Form_Reservation .form-group input[type=checkbox]::before, .Login_System_Registration .form-group input[type=checkbox]::before, .Login_System_Deregistration .form-group input[type=checkbox]::before, .Login_System_Login .form-group input[type=checkbox]::before, .Lucene_Search .form-group input[type=checkbox]::before, .Lucene_SearchSmall .form-group input[type=checkbox]::before, .Addresses_Search .form-group input[type=checkbox]::before, .Addresses_SearchMaps .form-group input[type=checkbox]::before, .Community_Guestbook .form-group input[type=checkbox]::before, .Special_Club_Search .form-group input[type=checkbox]::before, .Special_Condolence_CondolenceBook .form-group input[type=checkbox]::before, .Special_Condolence .form-group input[type=checkbox]::before, .Special_Calendar .form-group input[type=checkbox]::before {
  content: "";
  width: 0.563rem;
  height: 0.563rem;
  background-color: #444;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
          clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.variant-01 .form-group input[type=checkbox]:checked::before, .module-style__company-history .form-group input[type=checkbox]:checked::before, .module-style__teaser-contact .form-group input[type=checkbox]:checked::before, .pagination .form-group input[type=checkbox]:checked::before, .Special_ChangingContents .form-group input[type=checkbox]:checked::before, .Special_ContactPerson .form-group input[type=checkbox]:checked::before, .Newsletter_Subscribe .form-group input[type=checkbox]:checked::before, .Newsletter_Unsubscribe .form-group input[type=checkbox]:checked::before, .Form_Contact .form-group input[type=checkbox]:checked::before, .Form_FormGenerator .form-group input[type=checkbox]:checked::before, .Form_Reservation .form-group input[type=checkbox]:checked::before, .Login_System_Registration .form-group input[type=checkbox]:checked::before, .Login_System_Deregistration .form-group input[type=checkbox]:checked::before, .Login_System_Login .form-group input[type=checkbox]:checked::before, .Lucene_Search .form-group input[type=checkbox]:checked::before, .Lucene_SearchSmall .form-group input[type=checkbox]:checked::before, .Addresses_Search .form-group input[type=checkbox]:checked::before, .Addresses_SearchMaps .form-group input[type=checkbox]:checked::before, .Community_Guestbook .form-group input[type=checkbox]:checked::before, .Special_Club_Search .form-group input[type=checkbox]:checked::before, .Special_Condolence_CondolenceBook .form-group input[type=checkbox]:checked::before, .Special_Condolence .form-group input[type=checkbox]:checked::before, .Special_Calendar .form-group input[type=checkbox]:checked::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.variant-01 .form-group input[type=checkbox]:focus, .module-style__company-history .form-group input[type=checkbox]:focus, .module-style__teaser-contact .form-group input[type=checkbox]:focus, .pagination .form-group input[type=checkbox]:focus, .Special_ChangingContents .form-group input[type=checkbox]:focus, .Special_ContactPerson .form-group input[type=checkbox]:focus, .Newsletter_Subscribe .form-group input[type=checkbox]:focus, .Newsletter_Unsubscribe .form-group input[type=checkbox]:focus, .Form_Contact .form-group input[type=checkbox]:focus, .Form_FormGenerator .form-group input[type=checkbox]:focus, .Form_Reservation .form-group input[type=checkbox]:focus, .Login_System_Registration .form-group input[type=checkbox]:focus, .Login_System_Deregistration .form-group input[type=checkbox]:focus, .Login_System_Login .form-group input[type=checkbox]:focus, .Lucene_Search .form-group input[type=checkbox]:focus, .Lucene_SearchSmall .form-group input[type=checkbox]:focus, .Addresses_Search .form-group input[type=checkbox]:focus, .Addresses_SearchMaps .form-group input[type=checkbox]:focus, .Community_Guestbook .form-group input[type=checkbox]:focus, .Special_Club_Search .form-group input[type=checkbox]:focus, .Special_Condolence_CondolenceBook .form-group input[type=checkbox]:focus, .Special_Condolence .form-group input[type=checkbox]:focus, .Special_Calendar .form-group input[type=checkbox]:focus {
  outline: none;
}
.variant-01 .form-group input[type=radio], .module-style__company-history .form-group input[type=radio], .module-style__teaser-contact .form-group input[type=radio], .pagination .form-group input[type=radio], .Special_ChangingContents .form-group input[type=radio], .Special_ContactPerson .form-group input[type=radio], .Newsletter_Subscribe .form-group input[type=radio], .Newsletter_Unsubscribe .form-group input[type=radio], .Form_Contact .form-group input[type=radio], .Form_FormGenerator .form-group input[type=radio], .Form_Reservation .form-group input[type=radio], .Login_System_Registration .form-group input[type=radio], .Login_System_Deregistration .form-group input[type=radio], .Login_System_Login .form-group input[type=radio], .Lucene_Search .form-group input[type=radio], .Lucene_SearchSmall .form-group input[type=radio], .Addresses_Search .form-group input[type=radio], .Addresses_SearchMaps .form-group input[type=radio], .Community_Guestbook .form-group input[type=radio], .Special_Club_Search .form-group input[type=radio], .Special_Condolence_CondolenceBook .form-group input[type=radio], .Special_Condolence .form-group input[type=radio], .Special_Calendar .form-group input[type=radio] {
  width: 0.938rem;
  height: 0.938rem;
  display: grid;
  place-content: center;
  background: #f8f9f9;
  margin-left: -1.563rem;
  margin-top: 0.438rem;
  border: 1px solid #d3d3d3;
  border-radius: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
}
.variant-01 .form-group input[type=radio]::before, .module-style__company-history .form-group input[type=radio]::before, .module-style__teaser-contact .form-group input[type=radio]::before, .pagination .form-group input[type=radio]::before, .Special_ChangingContents .form-group input[type=radio]::before, .Special_ContactPerson .form-group input[type=radio]::before, .Newsletter_Subscribe .form-group input[type=radio]::before, .Newsletter_Unsubscribe .form-group input[type=radio]::before, .Form_Contact .form-group input[type=radio]::before, .Form_FormGenerator .form-group input[type=radio]::before, .Form_Reservation .form-group input[type=radio]::before, .Login_System_Registration .form-group input[type=radio]::before, .Login_System_Deregistration .form-group input[type=radio]::before, .Login_System_Login .form-group input[type=radio]::before, .Lucene_Search .form-group input[type=radio]::before, .Lucene_SearchSmall .form-group input[type=radio]::before, .Addresses_Search .form-group input[type=radio]::before, .Addresses_SearchMaps .form-group input[type=radio]::before, .Community_Guestbook .form-group input[type=radio]::before, .Special_Club_Search .form-group input[type=radio]::before, .Special_Condolence_CondolenceBook .form-group input[type=radio]::before, .Special_Condolence .form-group input[type=radio]::before, .Special_Calendar .form-group input[type=radio]::before {
  content: "";
  width: 0.563rem;
  height: 0.563rem;
  background-color: #444;
  border-radius: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.variant-01 .form-group input[type=radio]:checked::before, .module-style__company-history .form-group input[type=radio]:checked::before, .module-style__teaser-contact .form-group input[type=radio]:checked::before, .pagination .form-group input[type=radio]:checked::before, .Special_ChangingContents .form-group input[type=radio]:checked::before, .Special_ContactPerson .form-group input[type=radio]:checked::before, .Newsletter_Subscribe .form-group input[type=radio]:checked::before, .Newsletter_Unsubscribe .form-group input[type=radio]:checked::before, .Form_Contact .form-group input[type=radio]:checked::before, .Form_FormGenerator .form-group input[type=radio]:checked::before, .Form_Reservation .form-group input[type=radio]:checked::before, .Login_System_Registration .form-group input[type=radio]:checked::before, .Login_System_Deregistration .form-group input[type=radio]:checked::before, .Login_System_Login .form-group input[type=radio]:checked::before, .Lucene_Search .form-group input[type=radio]:checked::before, .Lucene_SearchSmall .form-group input[type=radio]:checked::before, .Addresses_Search .form-group input[type=radio]:checked::before, .Addresses_SearchMaps .form-group input[type=radio]:checked::before, .Community_Guestbook .form-group input[type=radio]:checked::before, .Special_Club_Search .form-group input[type=radio]:checked::before, .Special_Condolence_CondolenceBook .form-group input[type=radio]:checked::before, .Special_Condolence .form-group input[type=radio]:checked::before, .Special_Calendar .form-group input[type=radio]:checked::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.variant-01 .form-group input[type=radio]:focus, .module-style__company-history .form-group input[type=radio]:focus, .module-style__teaser-contact .form-group input[type=radio]:focus, .pagination .form-group input[type=radio]:focus, .Special_ChangingContents .form-group input[type=radio]:focus, .Special_ContactPerson .form-group input[type=radio]:focus, .Newsletter_Subscribe .form-group input[type=radio]:focus, .Newsletter_Unsubscribe .form-group input[type=radio]:focus, .Form_Contact .form-group input[type=radio]:focus, .Form_FormGenerator .form-group input[type=radio]:focus, .Form_Reservation .form-group input[type=radio]:focus, .Login_System_Registration .form-group input[type=radio]:focus, .Login_System_Deregistration .form-group input[type=radio]:focus, .Login_System_Login .form-group input[type=radio]:focus, .Lucene_Search .form-group input[type=radio]:focus, .Lucene_SearchSmall .form-group input[type=radio]:focus, .Addresses_Search .form-group input[type=radio]:focus, .Addresses_SearchMaps .form-group input[type=radio]:focus, .Community_Guestbook .form-group input[type=radio]:focus, .Special_Club_Search .form-group input[type=radio]:focus, .Special_Condolence_CondolenceBook .form-group input[type=radio]:focus, .Special_Condolence .form-group input[type=radio]:focus, .Special_Calendar .form-group input[type=radio]:focus {
  outline: none;
}
.variant-01 .form-group .control-label:not(.form-group > .control-label), .module-style__company-history .form-group .control-label:not(.form-group > .control-label), .module-style__teaser-contact .form-group .control-label:not(.form-group > .control-label), .pagination .form-group .control-label:not(.form-group > .control-label), .Special_ChangingContents .form-group .control-label:not(.form-group > .control-label), .Special_ContactPerson .form-group .control-label:not(.form-group > .control-label), .Newsletter_Subscribe .form-group .control-label:not(.form-group > .control-label), .Newsletter_Unsubscribe .form-group .control-label:not(.form-group > .control-label), .Form_Contact .form-group .control-label:not(.form-group > .control-label), .Form_FormGenerator .form-group .control-label:not(.form-group > .control-label), .Form_Reservation .form-group .control-label:not(.form-group > .control-label), .Login_System_Registration .form-group .control-label:not(.form-group > .control-label), .Login_System_Deregistration .form-group .control-label:not(.form-group > .control-label), .Login_System_Login .form-group .control-label:not(.form-group > .control-label), .Lucene_Search .form-group .control-label:not(.form-group > .control-label), .Lucene_SearchSmall .form-group .control-label:not(.form-group > .control-label), .Addresses_Search .form-group .control-label:not(.form-group > .control-label), .Addresses_SearchMaps .form-group .control-label:not(.form-group > .control-label), .Community_Guestbook .form-group .control-label:not(.form-group > .control-label), .Special_Club_Search .form-group .control-label:not(.form-group > .control-label), .Special_Condolence_CondolenceBook .form-group .control-label:not(.form-group > .control-label), .Special_Condolence .form-group .control-label:not(.form-group > .control-label), .Special_Calendar .form-group .control-label:not(.form-group > .control-label) {
  color: #444;
  font-weight: 600;
  padding-left: 1.563rem;
}
.variant-01 .form-group textarea.form-control, .module-style__company-history .form-group textarea.form-control, .module-style__teaser-contact .form-group textarea.form-control, .pagination .form-group textarea.form-control, .Special_ChangingContents .form-group textarea.form-control, .Special_ContactPerson .form-group textarea.form-control, .Newsletter_Subscribe .form-group textarea.form-control, .Newsletter_Unsubscribe .form-group textarea.form-control, .Form_Contact .form-group textarea.form-control, .Form_FormGenerator .form-group textarea.form-control, .Form_Reservation .form-group textarea.form-control, .Login_System_Registration .form-group textarea.form-control, .Login_System_Deregistration .form-group textarea.form-control, .Login_System_Login .form-group textarea.form-control, .Lucene_Search .form-group textarea.form-control, .Lucene_SearchSmall .form-group textarea.form-control, .Addresses_Search .form-group textarea.form-control, .Addresses_SearchMaps .form-group textarea.form-control, .Community_Guestbook .form-group textarea.form-control, .Special_Club_Search .form-group textarea.form-control, .Special_Condolence_CondolenceBook .form-group textarea.form-control, .Special_Condolence .form-group textarea.form-control, .Special_Calendar .form-group textarea.form-control {
  padding: 12px 15px 12px 15px;
  line-height: 1.5;
}
.variant-01 .form-group .form-control, .module-style__company-history .form-group .form-control, .module-style__teaser-contact .form-group .form-control, .pagination .form-group .form-control, .Special_ChangingContents .form-group .form-control, .Special_ContactPerson .form-group .form-control, .Newsletter_Subscribe .form-group .form-control, .Newsletter_Unsubscribe .form-group .form-control, .Form_Contact .form-group .form-control, .Form_FormGenerator .form-group .form-control, .Form_Reservation .form-group .form-control, .Login_System_Registration .form-group .form-control, .Login_System_Deregistration .form-group .form-control, .Login_System_Login .form-group .form-control, .Lucene_Search .form-group .form-control, .Lucene_SearchSmall .form-group .form-control, .Addresses_Search .form-group .form-control, .Addresses_SearchMaps .form-group .form-control, .Community_Guestbook .form-group .form-control, .Special_Club_Search .form-group .form-control, .Special_Condolence_CondolenceBook .form-group .form-control, .Special_Condolence .form-group .form-control, .Special_Calendar .form-group .form-control {
  font-family: "Roboto", sans-serif;
  color: #444;
  background: #f8f9f9;
  font-size: 1.125rem;
  font-weight: 400;
  border: 1px solid #d3d3d3;
  height: 45px;
  line-height: 45px;
  padding: 5px 10px 5px 10px;
  border-radius: 5px;
}
.variant-01 .form-group .form-control::-webkit-input-placeholder, .module-style__company-history .form-group .form-control::-webkit-input-placeholder, .module-style__teaser-contact .form-group .form-control::-webkit-input-placeholder, .pagination .form-group .form-control::-webkit-input-placeholder, .Special_ChangingContents .form-group .form-control::-webkit-input-placeholder, .Special_ContactPerson .form-group .form-control::-webkit-input-placeholder, .Newsletter_Subscribe .form-group .form-control::-webkit-input-placeholder, .Newsletter_Unsubscribe .form-group .form-control::-webkit-input-placeholder, .Form_Contact .form-group .form-control::-webkit-input-placeholder, .Form_FormGenerator .form-group .form-control::-webkit-input-placeholder, .Form_Reservation .form-group .form-control::-webkit-input-placeholder, .Login_System_Registration .form-group .form-control::-webkit-input-placeholder, .Login_System_Deregistration .form-group .form-control::-webkit-input-placeholder, .Login_System_Login .form-group .form-control::-webkit-input-placeholder, .Lucene_Search .form-group .form-control::-webkit-input-placeholder, .Lucene_SearchSmall .form-group .form-control::-webkit-input-placeholder, .Addresses_Search .form-group .form-control::-webkit-input-placeholder, .Addresses_SearchMaps .form-group .form-control::-webkit-input-placeholder, .Community_Guestbook .form-group .form-control::-webkit-input-placeholder, .Special_Club_Search .form-group .form-control::-webkit-input-placeholder, .Special_Condolence_CondolenceBook .form-group .form-control::-webkit-input-placeholder, .Special_Condolence .form-group .form-control::-webkit-input-placeholder, .Special_Calendar .form-group .form-control::-webkit-input-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: "Roboto", sans-serif;
  color: #444;
  opacity: 0.5; /* Firefox */
}
.variant-01 .form-group .form-control::-moz-placeholder, .module-style__company-history .form-group .form-control::-moz-placeholder, .module-style__teaser-contact .form-group .form-control::-moz-placeholder, .pagination .form-group .form-control::-moz-placeholder, .Special_ChangingContents .form-group .form-control::-moz-placeholder, .Special_ContactPerson .form-group .form-control::-moz-placeholder, .Newsletter_Subscribe .form-group .form-control::-moz-placeholder, .Newsletter_Unsubscribe .form-group .form-control::-moz-placeholder, .Form_Contact .form-group .form-control::-moz-placeholder, .Form_FormGenerator .form-group .form-control::-moz-placeholder, .Form_Reservation .form-group .form-control::-moz-placeholder, .Login_System_Registration .form-group .form-control::-moz-placeholder, .Login_System_Deregistration .form-group .form-control::-moz-placeholder, .Login_System_Login .form-group .form-control::-moz-placeholder, .Lucene_Search .form-group .form-control::-moz-placeholder, .Lucene_SearchSmall .form-group .form-control::-moz-placeholder, .Addresses_Search .form-group .form-control::-moz-placeholder, .Addresses_SearchMaps .form-group .form-control::-moz-placeholder, .Community_Guestbook .form-group .form-control::-moz-placeholder, .Special_Club_Search .form-group .form-control::-moz-placeholder, .Special_Condolence_CondolenceBook .form-group .form-control::-moz-placeholder, .Special_Condolence .form-group .form-control::-moz-placeholder, .Special_Calendar .form-group .form-control::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: "Roboto", sans-serif;
  color: #444;
  opacity: 0.5; /* Firefox */
}
.variant-01 .form-group .form-control:-ms-input-placeholder, .module-style__company-history .form-group .form-control:-ms-input-placeholder, .module-style__teaser-contact .form-group .form-control:-ms-input-placeholder, .pagination .form-group .form-control:-ms-input-placeholder, .Special_ChangingContents .form-group .form-control:-ms-input-placeholder, .Special_ContactPerson .form-group .form-control:-ms-input-placeholder, .Newsletter_Subscribe .form-group .form-control:-ms-input-placeholder, .Newsletter_Unsubscribe .form-group .form-control:-ms-input-placeholder, .Form_Contact .form-group .form-control:-ms-input-placeholder, .Form_FormGenerator .form-group .form-control:-ms-input-placeholder, .Form_Reservation .form-group .form-control:-ms-input-placeholder, .Login_System_Registration .form-group .form-control:-ms-input-placeholder, .Login_System_Deregistration .form-group .form-control:-ms-input-placeholder, .Login_System_Login .form-group .form-control:-ms-input-placeholder, .Lucene_Search .form-group .form-control:-ms-input-placeholder, .Lucene_SearchSmall .form-group .form-control:-ms-input-placeholder, .Addresses_Search .form-group .form-control:-ms-input-placeholder, .Addresses_SearchMaps .form-group .form-control:-ms-input-placeholder, .Community_Guestbook .form-group .form-control:-ms-input-placeholder, .Special_Club_Search .form-group .form-control:-ms-input-placeholder, .Special_Condolence_CondolenceBook .form-group .form-control:-ms-input-placeholder, .Special_Condolence .form-group .form-control:-ms-input-placeholder, .Special_Calendar .form-group .form-control:-ms-input-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: "Roboto", sans-serif;
  color: #444;
  opacity: 0.5; /* Firefox */
}
.variant-01 .form-group .form-control::-ms-input-placeholder, .module-style__company-history .form-group .form-control::-ms-input-placeholder, .module-style__teaser-contact .form-group .form-control::-ms-input-placeholder, .pagination .form-group .form-control::-ms-input-placeholder, .Special_ChangingContents .form-group .form-control::-ms-input-placeholder, .Special_ContactPerson .form-group .form-control::-ms-input-placeholder, .Newsletter_Subscribe .form-group .form-control::-ms-input-placeholder, .Newsletter_Unsubscribe .form-group .form-control::-ms-input-placeholder, .Form_Contact .form-group .form-control::-ms-input-placeholder, .Form_FormGenerator .form-group .form-control::-ms-input-placeholder, .Form_Reservation .form-group .form-control::-ms-input-placeholder, .Login_System_Registration .form-group .form-control::-ms-input-placeholder, .Login_System_Deregistration .form-group .form-control::-ms-input-placeholder, .Login_System_Login .form-group .form-control::-ms-input-placeholder, .Lucene_Search .form-group .form-control::-ms-input-placeholder, .Lucene_SearchSmall .form-group .form-control::-ms-input-placeholder, .Addresses_Search .form-group .form-control::-ms-input-placeholder, .Addresses_SearchMaps .form-group .form-control::-ms-input-placeholder, .Community_Guestbook .form-group .form-control::-ms-input-placeholder, .Special_Club_Search .form-group .form-control::-ms-input-placeholder, .Special_Condolence_CondolenceBook .form-group .form-control::-ms-input-placeholder, .Special_Condolence .form-group .form-control::-ms-input-placeholder, .Special_Calendar .form-group .form-control::-ms-input-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: "Roboto", sans-serif;
  color: #444;
  opacity: 0.5; /* Firefox */
}
.variant-01 .form-group .form-control::placeholder, .module-style__company-history .form-group .form-control::placeholder, .module-style__teaser-contact .form-group .form-control::placeholder, .pagination .form-group .form-control::placeholder, .Special_ChangingContents .form-group .form-control::placeholder, .Special_ContactPerson .form-group .form-control::placeholder, .Newsletter_Subscribe .form-group .form-control::placeholder, .Newsletter_Unsubscribe .form-group .form-control::placeholder, .Form_Contact .form-group .form-control::placeholder, .Form_FormGenerator .form-group .form-control::placeholder, .Form_Reservation .form-group .form-control::placeholder, .Login_System_Registration .form-group .form-control::placeholder, .Login_System_Deregistration .form-group .form-control::placeholder, .Login_System_Login .form-group .form-control::placeholder, .Lucene_Search .form-group .form-control::placeholder, .Lucene_SearchSmall .form-group .form-control::placeholder, .Addresses_Search .form-group .form-control::placeholder, .Addresses_SearchMaps .form-group .form-control::placeholder, .Community_Guestbook .form-group .form-control::placeholder, .Special_Club_Search .form-group .form-control::placeholder, .Special_Condolence_CondolenceBook .form-group .form-control::placeholder, .Special_Condolence .form-group .form-control::placeholder, .Special_Calendar .form-group .form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: "Roboto", sans-serif;
  color: #444;
  opacity: 0.5; /* Firefox */
}
.variant-01 .form-group .form-control:-ms-input-placeholder, .module-style__company-history .form-group .form-control:-ms-input-placeholder, .module-style__teaser-contact .form-group .form-control:-ms-input-placeholder, .pagination .form-group .form-control:-ms-input-placeholder, .Special_ChangingContents .form-group .form-control:-ms-input-placeholder, .Special_ContactPerson .form-group .form-control:-ms-input-placeholder, .Newsletter_Subscribe .form-group .form-control:-ms-input-placeholder, .Newsletter_Unsubscribe .form-group .form-control:-ms-input-placeholder, .Form_Contact .form-group .form-control:-ms-input-placeholder, .Form_FormGenerator .form-group .form-control:-ms-input-placeholder, .Form_Reservation .form-group .form-control:-ms-input-placeholder, .Login_System_Registration .form-group .form-control:-ms-input-placeholder, .Login_System_Deregistration .form-group .form-control:-ms-input-placeholder, .Login_System_Login .form-group .form-control:-ms-input-placeholder, .Lucene_Search .form-group .form-control:-ms-input-placeholder, .Lucene_SearchSmall .form-group .form-control:-ms-input-placeholder, .Addresses_Search .form-group .form-control:-ms-input-placeholder, .Addresses_SearchMaps .form-group .form-control:-ms-input-placeholder, .Community_Guestbook .form-group .form-control:-ms-input-placeholder, .Special_Club_Search .form-group .form-control:-ms-input-placeholder, .Special_Condolence_CondolenceBook .form-group .form-control:-ms-input-placeholder, .Special_Condolence .form-group .form-control:-ms-input-placeholder, .Special_Calendar .form-group .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #444;
}
.variant-01 .form-group .form-control::-ms-input-placeholder, .module-style__company-history .form-group .form-control::-ms-input-placeholder, .module-style__teaser-contact .form-group .form-control::-ms-input-placeholder, .pagination .form-group .form-control::-ms-input-placeholder, .Special_ChangingContents .form-group .form-control::-ms-input-placeholder, .Special_ContactPerson .form-group .form-control::-ms-input-placeholder, .Newsletter_Subscribe .form-group .form-control::-ms-input-placeholder, .Newsletter_Unsubscribe .form-group .form-control::-ms-input-placeholder, .Form_Contact .form-group .form-control::-ms-input-placeholder, .Form_FormGenerator .form-group .form-control::-ms-input-placeholder, .Form_Reservation .form-group .form-control::-ms-input-placeholder, .Login_System_Registration .form-group .form-control::-ms-input-placeholder, .Login_System_Deregistration .form-group .form-control::-ms-input-placeholder, .Login_System_Login .form-group .form-control::-ms-input-placeholder, .Lucene_Search .form-group .form-control::-ms-input-placeholder, .Lucene_SearchSmall .form-group .form-control::-ms-input-placeholder, .Addresses_Search .form-group .form-control::-ms-input-placeholder, .Addresses_SearchMaps .form-group .form-control::-ms-input-placeholder, .Community_Guestbook .form-group .form-control::-ms-input-placeholder, .Special_Club_Search .form-group .form-control::-ms-input-placeholder, .Special_Condolence_CondolenceBook .form-group .form-control::-ms-input-placeholder, .Special_Condolence .form-group .form-control::-ms-input-placeholder, .Special_Calendar .form-group .form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #444;
}
.variant-01 .form-group .form-control:focus, .module-style__company-history .form-group .form-control:focus, .module-style__teaser-contact .form-group .form-control:focus, .pagination .form-group .form-control:focus, .Special_ChangingContents .form-group .form-control:focus, .Special_ContactPerson .form-group .form-control:focus, .Newsletter_Subscribe .form-group .form-control:focus, .Newsletter_Unsubscribe .form-group .form-control:focus, .Form_Contact .form-group .form-control:focus, .Form_FormGenerator .form-group .form-control:focus, .Form_Reservation .form-group .form-control:focus, .Login_System_Registration .form-group .form-control:focus, .Login_System_Deregistration .form-group .form-control:focus, .Login_System_Login .form-group .form-control:focus, .Lucene_Search .form-group .form-control:focus, .Lucene_SearchSmall .form-group .form-control:focus, .Addresses_Search .form-group .form-control:focus, .Addresses_SearchMaps .form-group .form-control:focus, .Community_Guestbook .form-group .form-control:focus, .Special_Club_Search .form-group .form-control:focus, .Special_Condolence_CondolenceBook .form-group .form-control:focus, .Special_Condolence .form-group .form-control:focus, .Special_Calendar .form-group .form-control:focus {
  -webkit-box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.025), 0 1.6px 3.2px rgba(0, 0, 0, 0.025), 0 3px 6px rgba(0, 0, 0, 0.03);
          box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.025), 0 1.6px 3.2px rgba(0, 0, 0, 0.025), 0 3px 6px rgba(0, 0, 0, 0.03);
}
.variant-01 .form-group .form-control.btn, .module-style__company-history .form-group .form-control.btn, .module-style__teaser-contact .form-group .form-control.btn, .pagination .form-group .form-control.btn, .Special_ChangingContents .form-group .form-control.btn, .Special_ContactPerson .form-group .form-control.btn, .Newsletter_Subscribe .form-group .form-control.btn, .Newsletter_Unsubscribe .form-group .form-control.btn, .Form_Contact .form-group .form-control.btn, .Form_FormGenerator .form-group .form-control.btn, .Form_Reservation .form-group .form-control.btn, .Login_System_Registration .form-group .form-control.btn, .Login_System_Deregistration .form-group .form-control.btn, .Login_System_Login .form-group .form-control.btn, .Lucene_Search .form-group .form-control.btn, .Lucene_SearchSmall .form-group .form-control.btn, .Addresses_Search .form-group .form-control.btn, .Addresses_SearchMaps .form-group .form-control.btn, .Community_Guestbook .form-group .form-control.btn, .Special_Club_Search .form-group .form-control.btn, .Special_Condolence_CondolenceBook .form-group .form-control.btn, .Special_Condolence .form-group .form-control.btn, .Special_Calendar .form-group .form-control.btn {
  padding: 5px 10px 5px 10px;
  background: #3fbfe5;
  border-color: #3fbfe5;
  color: #fff;
}
.variant-01 .form-group .form-control.btn:hover, .module-style__company-history .form-group .form-control.btn:hover, .module-style__teaser-contact .form-group .form-control.btn:hover, .pagination .form-group .form-control.btn:hover, .Special_ChangingContents .form-group .form-control.btn:hover, .Special_ContactPerson .form-group .form-control.btn:hover, .Newsletter_Subscribe .form-group .form-control.btn:hover, .Newsletter_Unsubscribe .form-group .form-control.btn:hover, .Form_Contact .form-group .form-control.btn:hover, .Form_FormGenerator .form-group .form-control.btn:hover, .Form_Reservation .form-group .form-control.btn:hover, .Login_System_Registration .form-group .form-control.btn:hover, .Login_System_Deregistration .form-group .form-control.btn:hover, .Login_System_Login .form-group .form-control.btn:hover, .Lucene_Search .form-group .form-control.btn:hover, .Lucene_SearchSmall .form-group .form-control.btn:hover, .Addresses_Search .form-group .form-control.btn:hover, .Addresses_SearchMaps .form-group .form-control.btn:hover, .Community_Guestbook .form-group .form-control.btn:hover, .Special_Club_Search .form-group .form-control.btn:hover, .Special_Condolence_CondolenceBook .form-group .form-control.btn:hover, .Special_Condolence .form-group .form-control.btn:hover, .Special_Calendar .form-group .form-control.btn:hover {
  background: #1daad4;
  border-color: #1daad4;
}
.variant-01 .form-group .form-control[name=captcha], .module-style__company-history .form-group .form-control[name=captcha], .module-style__teaser-contact .form-group .form-control[name=captcha], .pagination .form-group .form-control[name=captcha], .Special_ChangingContents .form-group .form-control[name=captcha], .Special_ContactPerson .form-group .form-control[name=captcha], .Newsletter_Subscribe .form-group .form-control[name=captcha], .Newsletter_Unsubscribe .form-group .form-control[name=captcha], .Form_Contact .form-group .form-control[name=captcha], .Form_FormGenerator .form-group .form-control[name=captcha], .Form_Reservation .form-group .form-control[name=captcha], .Login_System_Registration .form-group .form-control[name=captcha], .Login_System_Deregistration .form-group .form-control[name=captcha], .Login_System_Login .form-group .form-control[name=captcha], .Lucene_Search .form-group .form-control[name=captcha], .Lucene_SearchSmall .form-group .form-control[name=captcha], .Addresses_Search .form-group .form-control[name=captcha], .Addresses_SearchMaps .form-group .form-control[name=captcha], .Community_Guestbook .form-group .form-control[name=captcha], .Special_Club_Search .form-group .form-control[name=captcha], .Special_Condolence_CondolenceBook .form-group .form-control[name=captcha], .Special_Condolence .form-group .form-control[name=captcha], .Special_Calendar .form-group .form-control[name=captcha] {
  padding-right: 0;
}
.variant-01 .form-group select.form-control, .module-style__company-history .form-group select.form-control, .module-style__teaser-contact .form-group select.form-control, .pagination .form-group select.form-control, .Special_ChangingContents .form-group select.form-control, .Special_ContactPerson .form-group select.form-control, .Newsletter_Subscribe .form-group select.form-control, .Newsletter_Unsubscribe .form-group select.form-control, .Form_Contact .form-group select.form-control, .Form_FormGenerator .form-group select.form-control, .Form_Reservation .form-group select.form-control, .Login_System_Registration .form-group select.form-control, .Login_System_Deregistration .form-group select.form-control, .Login_System_Login .form-group select.form-control, .Lucene_Search .form-group select.form-control, .Lucene_SearchSmall .form-group select.form-control, .Addresses_Search .form-group select.form-control, .Addresses_SearchMaps .form-group select.form-control, .Community_Guestbook .form-group select.form-control, .Special_Club_Search .form-group select.form-control, .Special_Condolence_CondolenceBook .form-group select.form-control, .Special_Condolence .form-group select.form-control, .Special_Calendar .form-group select.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJjdXJyZW50Q29sb3IiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48cGF0aCBkPSJNNiA5bDYgNiA2LTYiLz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  line-height: inherit;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .variant-01 .form-group [type=date].form-control, .module-style__company-history .form-group [type=date].form-control, .module-style__teaser-contact .form-group [type=date].form-control, .pagination .form-group [type=date].form-control, .Special_ChangingContents .form-group [type=date].form-control, .Special_ContactPerson .form-group [type=date].form-control, .Newsletter_Subscribe .form-group [type=date].form-control, .Newsletter_Unsubscribe .form-group [type=date].form-control, .Form_Contact .form-group [type=date].form-control, .Form_FormGenerator .form-group [type=date].form-control, .Form_Reservation .form-group [type=date].form-control, .Login_System_Registration .form-group [type=date].form-control, .Login_System_Deregistration .form-group [type=date].form-control, .Login_System_Login .form-group [type=date].form-control, .Lucene_Search .form-group [type=date].form-control, .Lucene_SearchSmall .form-group [type=date].form-control, .Addresses_Search .form-group [type=date].form-control, .Addresses_SearchMaps .form-group [type=date].form-control, .Community_Guestbook .form-group [type=date].form-control, .Special_Club_Search .form-group [type=date].form-control, .Special_Condolence_CondolenceBook .form-group [type=date].form-control, .Special_Condolence .form-group [type=date].form-control, .Special_Calendar .form-group [type=date].form-control {
    padding: 0 10px;
    -webkit-min-logical-width: calc(100% - 16px);
  }
  .variant-01 .form-group [type=date].form-control::-webkit-datetime-edit, .module-style__company-history .form-group [type=date].form-control::-webkit-datetime-edit, .module-style__teaser-contact .form-group [type=date].form-control::-webkit-datetime-edit, .pagination .form-group [type=date].form-control::-webkit-datetime-edit, .Special_ChangingContents .form-group [type=date].form-control::-webkit-datetime-edit, .Special_ContactPerson .form-group [type=date].form-control::-webkit-datetime-edit, .Newsletter_Subscribe .form-group [type=date].form-control::-webkit-datetime-edit, .Newsletter_Unsubscribe .form-group [type=date].form-control::-webkit-datetime-edit, .Form_Contact .form-group [type=date].form-control::-webkit-datetime-edit, .Form_FormGenerator .form-group [type=date].form-control::-webkit-datetime-edit, .Form_Reservation .form-group [type=date].form-control::-webkit-datetime-edit, .Login_System_Registration .form-group [type=date].form-control::-webkit-datetime-edit, .Login_System_Deregistration .form-group [type=date].form-control::-webkit-datetime-edit, .Login_System_Login .form-group [type=date].form-control::-webkit-datetime-edit, .Lucene_Search .form-group [type=date].form-control::-webkit-datetime-edit, .Lucene_SearchSmall .form-group [type=date].form-control::-webkit-datetime-edit, .Addresses_Search .form-group [type=date].form-control::-webkit-datetime-edit, .Addresses_SearchMaps .form-group [type=date].form-control::-webkit-datetime-edit, .Community_Guestbook .form-group [type=date].form-control::-webkit-datetime-edit, .Special_Club_Search .form-group [type=date].form-control::-webkit-datetime-edit, .Special_Condolence_CondolenceBook .form-group [type=date].form-control::-webkit-datetime-edit, .Special_Condolence .form-group [type=date].form-control::-webkit-datetime-edit, .Special_Calendar .form-group [type=date].form-control::-webkit-datetime-edit {
    position: relative;
    top: -2px;
  }
  .variant-01 .form-group [type=date].form-control::-webkit-date-and-time-value, .module-style__company-history .form-group [type=date].form-control::-webkit-date-and-time-value, .module-style__teaser-contact .form-group [type=date].form-control::-webkit-date-and-time-value, .pagination .form-group [type=date].form-control::-webkit-date-and-time-value, .Special_ChangingContents .form-group [type=date].form-control::-webkit-date-and-time-value, .Special_ContactPerson .form-group [type=date].form-control::-webkit-date-and-time-value, .Newsletter_Subscribe .form-group [type=date].form-control::-webkit-date-and-time-value, .Newsletter_Unsubscribe .form-group [type=date].form-control::-webkit-date-and-time-value, .Form_Contact .form-group [type=date].form-control::-webkit-date-and-time-value, .Form_FormGenerator .form-group [type=date].form-control::-webkit-date-and-time-value, .Form_Reservation .form-group [type=date].form-control::-webkit-date-and-time-value, .Login_System_Registration .form-group [type=date].form-control::-webkit-date-and-time-value, .Login_System_Deregistration .form-group [type=date].form-control::-webkit-date-and-time-value, .Login_System_Login .form-group [type=date].form-control::-webkit-date-and-time-value, .Lucene_Search .form-group [type=date].form-control::-webkit-date-and-time-value, .Lucene_SearchSmall .form-group [type=date].form-control::-webkit-date-and-time-value, .Addresses_Search .form-group [type=date].form-control::-webkit-date-and-time-value, .Addresses_SearchMaps .form-group [type=date].form-control::-webkit-date-and-time-value, .Community_Guestbook .form-group [type=date].form-control::-webkit-date-and-time-value, .Special_Club_Search .form-group [type=date].form-control::-webkit-date-and-time-value, .Special_Condolence_CondolenceBook .form-group [type=date].form-control::-webkit-date-and-time-value, .Special_Condolence .form-group [type=date].form-control::-webkit-date-and-time-value, .Special_Calendar .form-group [type=date].form-control::-webkit-date-and-time-value {
    text-align: left;
  }
}
.variant-01 .form-group .checkbox .control-label > p, .module-style__company-history .form-group .checkbox .control-label > p, .module-style__teaser-contact .form-group .checkbox .control-label > p, .pagination .form-group .checkbox .control-label > p, .Special_ChangingContents .form-group .checkbox .control-label > p, .Special_ContactPerson .form-group .checkbox .control-label > p, .Newsletter_Subscribe .form-group .checkbox .control-label > p, .Newsletter_Unsubscribe .form-group .checkbox .control-label > p, .Form_Contact .form-group .checkbox .control-label > p, .Form_FormGenerator .form-group .checkbox .control-label > p, .Form_Reservation .form-group .checkbox .control-label > p, .Login_System_Registration .form-group .checkbox .control-label > p, .Login_System_Deregistration .form-group .checkbox .control-label > p, .Login_System_Login .form-group .checkbox .control-label > p, .Lucene_Search .form-group .checkbox .control-label > p, .Lucene_SearchSmall .form-group .checkbox .control-label > p, .Addresses_Search .form-group .checkbox .control-label > p, .Addresses_SearchMaps .form-group .checkbox .control-label > p, .Community_Guestbook .form-group .checkbox .control-label > p, .Special_Club_Search .form-group .checkbox .control-label > p, .Special_Condolence_CondolenceBook .form-group .checkbox .control-label > p, .Special_Condolence .form-group .checkbox .control-label > p, .Special_Calendar .form-group .checkbox .control-label > p {
  font-weight: 400;
}
.variant-01 .form-group .grouped-elements label, .module-style__company-history .form-group .grouped-elements label, .module-style__teaser-contact .form-group .grouped-elements label, .pagination .form-group .grouped-elements label, .Special_ChangingContents .form-group .grouped-elements label, .Special_ContactPerson .form-group .grouped-elements label, .Newsletter_Subscribe .form-group .grouped-elements label, .Newsletter_Unsubscribe .form-group .grouped-elements label, .Form_Contact .form-group .grouped-elements label, .Form_FormGenerator .form-group .grouped-elements label, .Form_Reservation .form-group .grouped-elements label, .Login_System_Registration .form-group .grouped-elements label, .Login_System_Deregistration .form-group .grouped-elements label, .Login_System_Login .form-group .grouped-elements label, .Lucene_Search .form-group .grouped-elements label, .Lucene_SearchSmall .form-group .grouped-elements label, .Addresses_Search .form-group .grouped-elements label, .Addresses_SearchMaps .form-group .grouped-elements label, .Community_Guestbook .form-group .grouped-elements label, .Special_Club_Search .form-group .grouped-elements label, .Special_Condolence_CondolenceBook .form-group .grouped-elements label, .Special_Condolence .form-group .grouped-elements label, .Special_Calendar .form-group .grouped-elements label, .variant-01 .form-group .grouped-elements .control-label, .module-style__company-history .form-group .grouped-elements .control-label, .module-style__teaser-contact .form-group .grouped-elements .control-label, .pagination .form-group .grouped-elements .control-label, .Special_ChangingContents .form-group .grouped-elements .control-label, .Special_ContactPerson .form-group .grouped-elements .control-label, .Newsletter_Subscribe .form-group .grouped-elements .control-label, .Newsletter_Unsubscribe .form-group .grouped-elements .control-label, .Form_Contact .form-group .grouped-elements .control-label, .Form_FormGenerator .form-group .grouped-elements .control-label, .Form_Reservation .form-group .grouped-elements .control-label, .Login_System_Registration .form-group .grouped-elements .control-label, .Login_System_Deregistration .form-group .grouped-elements .control-label, .Login_System_Login .form-group .grouped-elements .control-label, .Lucene_Search .form-group .grouped-elements .control-label, .Lucene_SearchSmall .form-group .grouped-elements .control-label, .Addresses_Search .form-group .grouped-elements .control-label, .Addresses_SearchMaps .form-group .grouped-elements .control-label, .Community_Guestbook .form-group .grouped-elements .control-label, .Special_Club_Search .form-group .grouped-elements .control-label, .Special_Condolence_CondolenceBook .form-group .grouped-elements .control-label, .Special_Condolence .form-group .grouped-elements .control-label, .Special_Calendar .form-group .grouped-elements .control-label, .variant-01 .form-group .radio label, .module-style__company-history .form-group .radio label, .module-style__teaser-contact .form-group .radio label, .pagination .form-group .radio label, .Special_ChangingContents .form-group .radio label, .Special_ContactPerson .form-group .radio label, .Newsletter_Subscribe .form-group .radio label, .Newsletter_Unsubscribe .form-group .radio label, .Form_Contact .form-group .radio label, .Form_FormGenerator .form-group .radio label, .Form_Reservation .form-group .radio label, .Login_System_Registration .form-group .radio label, .Login_System_Deregistration .form-group .radio label, .Login_System_Login .form-group .radio label, .Lucene_Search .form-group .radio label, .Lucene_SearchSmall .form-group .radio label, .Addresses_Search .form-group .radio label, .Addresses_SearchMaps .form-group .radio label, .Community_Guestbook .form-group .radio label, .Special_Club_Search .form-group .radio label, .Special_Condolence_CondolenceBook .form-group .radio label, .Special_Condolence .form-group .radio label, .Special_Calendar .form-group .radio label, .variant-01 .form-group .radio .control-label, .module-style__company-history .form-group .radio .control-label, .module-style__teaser-contact .form-group .radio .control-label, .pagination .form-group .radio .control-label, .Special_ChangingContents .form-group .radio .control-label, .Special_ContactPerson .form-group .radio .control-label, .Newsletter_Subscribe .form-group .radio .control-label, .Newsletter_Unsubscribe .form-group .radio .control-label, .Form_Contact .form-group .radio .control-label, .Form_FormGenerator .form-group .radio .control-label, .Form_Reservation .form-group .radio .control-label, .Login_System_Registration .form-group .radio .control-label, .Login_System_Deregistration .form-group .radio .control-label, .Login_System_Login .form-group .radio .control-label, .Lucene_Search .form-group .radio .control-label, .Lucene_SearchSmall .form-group .radio .control-label, .Addresses_Search .form-group .radio .control-label, .Addresses_SearchMaps .form-group .radio .control-label, .Community_Guestbook .form-group .radio .control-label, .Special_Club_Search .form-group .radio .control-label, .Special_Condolence_CondolenceBook .form-group .radio .control-label, .Special_Condolence .form-group .radio .control-label, .Special_Calendar .form-group .radio .control-label, .variant-01 .form-group .checkbox label, .module-style__company-history .form-group .checkbox label, .module-style__teaser-contact .form-group .checkbox label, .pagination .form-group .checkbox label, .Special_ChangingContents .form-group .checkbox label, .Special_ContactPerson .form-group .checkbox label, .Newsletter_Subscribe .form-group .checkbox label, .Newsletter_Unsubscribe .form-group .checkbox label, .Form_Contact .form-group .checkbox label, .Form_FormGenerator .form-group .checkbox label, .Form_Reservation .form-group .checkbox label, .Login_System_Registration .form-group .checkbox label, .Login_System_Deregistration .form-group .checkbox label, .Login_System_Login .form-group .checkbox label, .Lucene_Search .form-group .checkbox label, .Lucene_SearchSmall .form-group .checkbox label, .Addresses_Search .form-group .checkbox label, .Addresses_SearchMaps .form-group .checkbox label, .Community_Guestbook .form-group .checkbox label, .Special_Club_Search .form-group .checkbox label, .Special_Condolence_CondolenceBook .form-group .checkbox label, .Special_Condolence .form-group .checkbox label, .Special_Calendar .form-group .checkbox label, .variant-01 .form-group .checkbox .control-label, .module-style__company-history .form-group .checkbox .control-label, .module-style__teaser-contact .form-group .checkbox .control-label, .pagination .form-group .checkbox .control-label, .Special_ChangingContents .form-group .checkbox .control-label, .Special_ContactPerson .form-group .checkbox .control-label, .Newsletter_Subscribe .form-group .checkbox .control-label, .Newsletter_Unsubscribe .form-group .checkbox .control-label, .Form_Contact .form-group .checkbox .control-label, .Form_FormGenerator .form-group .checkbox .control-label, .Form_Reservation .form-group .checkbox .control-label, .Login_System_Registration .form-group .checkbox .control-label, .Login_System_Deregistration .form-group .checkbox .control-label, .Login_System_Login .form-group .checkbox .control-label, .Lucene_Search .form-group .checkbox .control-label, .Lucene_SearchSmall .form-group .checkbox .control-label, .Addresses_Search .form-group .checkbox .control-label, .Addresses_SearchMaps .form-group .checkbox .control-label, .Community_Guestbook .form-group .checkbox .control-label, .Special_Club_Search .form-group .checkbox .control-label, .Special_Condolence_CondolenceBook .form-group .checkbox .control-label, .Special_Condolence .form-group .checkbox .control-label, .Special_Calendar .form-group .checkbox .control-label {
  font-weight: 400;
}
.variant-01 .form-group.captcha-element .g-recaptcha > div, .module-style__company-history .form-group.captcha-element .g-recaptcha > div, .module-style__teaser-contact .form-group.captcha-element .g-recaptcha > div, .pagination .form-group.captcha-element .g-recaptcha > div, .Special_ChangingContents .form-group.captcha-element .g-recaptcha > div, .Special_ContactPerson .form-group.captcha-element .g-recaptcha > div, .Newsletter_Subscribe .form-group.captcha-element .g-recaptcha > div, .Newsletter_Unsubscribe .form-group.captcha-element .g-recaptcha > div, .Form_Contact .form-group.captcha-element .g-recaptcha > div, .Form_FormGenerator .form-group.captcha-element .g-recaptcha > div, .Form_Reservation .form-group.captcha-element .g-recaptcha > div, .Login_System_Registration .form-group.captcha-element .g-recaptcha > div, .Login_System_Deregistration .form-group.captcha-element .g-recaptcha > div, .Login_System_Login .form-group.captcha-element .g-recaptcha > div, .Lucene_Search .form-group.captcha-element .g-recaptcha > div, .Lucene_SearchSmall .form-group.captcha-element .g-recaptcha > div, .Addresses_Search .form-group.captcha-element .g-recaptcha > div, .Addresses_SearchMaps .form-group.captcha-element .g-recaptcha > div, .Community_Guestbook .form-group.captcha-element .g-recaptcha > div, .Special_Club_Search .form-group.captcha-element .g-recaptcha > div, .Special_Condolence_CondolenceBook .form-group.captcha-element .g-recaptcha > div, .Special_Condolence .form-group.captcha-element .g-recaptcha > div, .Special_Calendar .form-group.captcha-element .g-recaptcha > div {
  margin: 0;
}
.variant-01 .form-group.submit-element a.btn-default, .module-style__company-history .form-group.submit-element a.btn-default, .module-style__teaser-contact .form-group.submit-element a.btn-default, .pagination .form-group.submit-element a.btn-default, .Special_ChangingContents .form-group.submit-element a.btn-default, .Special_ContactPerson .form-group.submit-element a.btn-default, .Newsletter_Subscribe .form-group.submit-element a.btn-default, .Newsletter_Unsubscribe .form-group.submit-element a.btn-default, .Form_Contact .form-group.submit-element a.btn-default, .Form_FormGenerator .form-group.submit-element a.btn-default, .Form_Reservation .form-group.submit-element a.btn-default, .Login_System_Registration .form-group.submit-element a.btn-default, .Login_System_Deregistration .form-group.submit-element a.btn-default, .Login_System_Login .form-group.submit-element a.btn-default, .Lucene_Search .form-group.submit-element a.btn-default, .Lucene_SearchSmall .form-group.submit-element a.btn-default, .Addresses_Search .form-group.submit-element a.btn-default, .Addresses_SearchMaps .form-group.submit-element a.btn-default, .Community_Guestbook .form-group.submit-element a.btn-default, .Special_Club_Search .form-group.submit-element a.btn-default, .Special_Condolence_CondolenceBook .form-group.submit-element a.btn-default, .Special_Condolence .form-group.submit-element a.btn-default, .Special_Calendar .form-group.submit-element a.btn-default, .variant-01 .form-group.submit-element .btn-default, .module-style__company-history .form-group.submit-element .btn-default, .module-style__teaser-contact .form-group.submit-element .btn-default, .pagination .form-group.submit-element .btn-default, .Special_ChangingContents .form-group.submit-element .btn-default, .Special_ContactPerson .form-group.submit-element .btn-default, .Newsletter_Subscribe .form-group.submit-element .btn-default, .Newsletter_Unsubscribe .form-group.submit-element .btn-default, .Form_Contact .form-group.submit-element .btn-default, .Form_FormGenerator .form-group.submit-element .btn-default, .Form_Reservation .form-group.submit-element .btn-default, .Login_System_Registration .form-group.submit-element .btn-default, .Login_System_Deregistration .form-group.submit-element .btn-default, .Login_System_Login .form-group.submit-element .btn-default, .Lucene_Search .form-group.submit-element .btn-default, .Lucene_SearchSmall .form-group.submit-element .btn-default, .Addresses_Search .form-group.submit-element .btn-default, .Addresses_SearchMaps .form-group.submit-element .btn-default, .Community_Guestbook .form-group.submit-element .btn-default, .Special_Club_Search .form-group.submit-element .btn-default, .Special_Condolence_CondolenceBook .form-group.submit-element .btn-default, .Special_Condolence .form-group.submit-element .btn-default, .Special_Calendar .form-group.submit-element .btn-default, .variant-01 .form-group.submit-element a.btn-primary, .module-style__company-history .form-group.submit-element a.btn-primary, .module-style__teaser-contact .form-group.submit-element a.btn-primary, .pagination .form-group.submit-element a.btn-primary, .Special_ChangingContents .form-group.submit-element a.btn-primary, .Special_ContactPerson .form-group.submit-element a.btn-primary, .Newsletter_Subscribe .form-group.submit-element a.btn-primary, .Newsletter_Unsubscribe .form-group.submit-element a.btn-primary, .Form_Contact .form-group.submit-element a.btn-primary, .Form_FormGenerator .form-group.submit-element a.btn-primary, .Form_Reservation .form-group.submit-element a.btn-primary, .Login_System_Registration .form-group.submit-element a.btn-primary, .Login_System_Deregistration .form-group.submit-element a.btn-primary, .Login_System_Login .form-group.submit-element a.btn-primary, .Lucene_Search .form-group.submit-element a.btn-primary, .Lucene_SearchSmall .form-group.submit-element a.btn-primary, .Addresses_Search .form-group.submit-element a.btn-primary, .Addresses_SearchMaps .form-group.submit-element a.btn-primary, .Community_Guestbook .form-group.submit-element a.btn-primary, .Special_Club_Search .form-group.submit-element a.btn-primary, .Special_Condolence_CondolenceBook .form-group.submit-element a.btn-primary, .Special_Condolence .form-group.submit-element a.btn-primary, .Special_Calendar .form-group.submit-element a.btn-primary, .variant-01 .form-group.submit-element .btn-primary, .module-style__company-history .form-group.submit-element .btn-primary, .module-style__teaser-contact .form-group.submit-element .btn-primary, .pagination .form-group.submit-element .btn-primary, .Special_ChangingContents .form-group.submit-element .btn-primary, .Special_ContactPerson .form-group.submit-element .btn-primary, .Newsletter_Subscribe .form-group.submit-element .btn-primary, .Newsletter_Unsubscribe .form-group.submit-element .btn-primary, .Form_Contact .form-group.submit-element .btn-primary, .Form_FormGenerator .form-group.submit-element .btn-primary, .Form_Reservation .form-group.submit-element .btn-primary, .Login_System_Registration .form-group.submit-element .btn-primary, .Login_System_Deregistration .form-group.submit-element .btn-primary, .Login_System_Login .form-group.submit-element .btn-primary, .Lucene_Search .form-group.submit-element .btn-primary, .Lucene_SearchSmall .form-group.submit-element .btn-primary, .Addresses_Search .form-group.submit-element .btn-primary, .Addresses_SearchMaps .form-group.submit-element .btn-primary, .Community_Guestbook .form-group.submit-element .btn-primary, .Special_Club_Search .form-group.submit-element .btn-primary, .Special_Condolence_CondolenceBook .form-group.submit-element .btn-primary, .Special_Condolence .form-group.submit-element .btn-primary, .Special_Calendar .form-group.submit-element .btn-primary, .variant-01 .form-group.submit-element a.btn-custom, .module-style__company-history .form-group.submit-element a.btn-custom, .module-style__teaser-contact .form-group.submit-element a.btn-custom, .pagination .form-group.submit-element a.btn-custom, .Special_ChangingContents .form-group.submit-element a.btn-custom, .Special_ContactPerson .form-group.submit-element a.btn-custom, .Newsletter_Subscribe .form-group.submit-element a.btn-custom, .Newsletter_Unsubscribe .form-group.submit-element a.btn-custom, .Form_Contact .form-group.submit-element a.btn-custom, .Form_FormGenerator .form-group.submit-element a.btn-custom, .Form_Reservation .form-group.submit-element a.btn-custom, .Login_System_Registration .form-group.submit-element a.btn-custom, .Login_System_Deregistration .form-group.submit-element a.btn-custom, .Login_System_Login .form-group.submit-element a.btn-custom, .Lucene_Search .form-group.submit-element a.btn-custom, .Lucene_SearchSmall .form-group.submit-element a.btn-custom, .Addresses_Search .form-group.submit-element a.btn-custom, .Addresses_SearchMaps .form-group.submit-element a.btn-custom, .Community_Guestbook .form-group.submit-element a.btn-custom, .Special_Club_Search .form-group.submit-element a.btn-custom, .Special_Condolence_CondolenceBook .form-group.submit-element a.btn-custom, .Special_Condolence .form-group.submit-element a.btn-custom, .Special_Calendar .form-group.submit-element a.btn-custom, .variant-01 .form-group.submit-element .btn-custom, .module-style__company-history .form-group.submit-element .btn-custom, .module-style__teaser-contact .form-group.submit-element .btn-custom, .pagination .form-group.submit-element .btn-custom, .Special_ChangingContents .form-group.submit-element .btn-custom, .Special_ContactPerson .form-group.submit-element .btn-custom, .Newsletter_Subscribe .form-group.submit-element .btn-custom, .Newsletter_Unsubscribe .form-group.submit-element .btn-custom, .Form_Contact .form-group.submit-element .btn-custom, .Form_FormGenerator .form-group.submit-element .btn-custom, .Form_Reservation .form-group.submit-element .btn-custom, .Login_System_Registration .form-group.submit-element .btn-custom, .Login_System_Deregistration .form-group.submit-element .btn-custom, .Login_System_Login .form-group.submit-element .btn-custom, .Lucene_Search .form-group.submit-element .btn-custom, .Lucene_SearchSmall .form-group.submit-element .btn-custom, .Addresses_Search .form-group.submit-element .btn-custom, .Addresses_SearchMaps .form-group.submit-element .btn-custom, .Community_Guestbook .form-group.submit-element .btn-custom, .Special_Club_Search .form-group.submit-element .btn-custom, .Special_Condolence_CondolenceBook .form-group.submit-element .btn-custom, .Special_Condolence .form-group.submit-element .btn-custom, .Special_Calendar .form-group.submit-element .btn-custom {
  background: #3fbfe5;
  border-color: #3fbfe5;
  color: #fff;
}
.variant-01 .form-group.submit-element a.btn-default:hover, .module-style__company-history .form-group.submit-element a.btn-default:hover, .module-style__teaser-contact .form-group.submit-element a.btn-default:hover, .pagination .form-group.submit-element a.btn-default:hover, .Special_ChangingContents .form-group.submit-element a.btn-default:hover, .Special_ContactPerson .form-group.submit-element a.btn-default:hover, .Newsletter_Subscribe .form-group.submit-element a.btn-default:hover, .Newsletter_Unsubscribe .form-group.submit-element a.btn-default:hover, .Form_Contact .form-group.submit-element a.btn-default:hover, .Form_FormGenerator .form-group.submit-element a.btn-default:hover, .Form_Reservation .form-group.submit-element a.btn-default:hover, .Login_System_Registration .form-group.submit-element a.btn-default:hover, .Login_System_Deregistration .form-group.submit-element a.btn-default:hover, .Login_System_Login .form-group.submit-element a.btn-default:hover, .Lucene_Search .form-group.submit-element a.btn-default:hover, .Lucene_SearchSmall .form-group.submit-element a.btn-default:hover, .Addresses_Search .form-group.submit-element a.btn-default:hover, .Addresses_SearchMaps .form-group.submit-element a.btn-default:hover, .Community_Guestbook .form-group.submit-element a.btn-default:hover, .Special_Club_Search .form-group.submit-element a.btn-default:hover, .Special_Condolence_CondolenceBook .form-group.submit-element a.btn-default:hover, .Special_Condolence .form-group.submit-element a.btn-default:hover, .Special_Calendar .form-group.submit-element a.btn-default:hover, .variant-01 .form-group.submit-element .btn-default:hover, .module-style__company-history .form-group.submit-element .btn-default:hover, .module-style__teaser-contact .form-group.submit-element .btn-default:hover, .pagination .form-group.submit-element .btn-default:hover, .Special_ChangingContents .form-group.submit-element .btn-default:hover, .Special_ContactPerson .form-group.submit-element .btn-default:hover, .Newsletter_Subscribe .form-group.submit-element .btn-default:hover, .Newsletter_Unsubscribe .form-group.submit-element .btn-default:hover, .Form_Contact .form-group.submit-element .btn-default:hover, .Form_FormGenerator .form-group.submit-element .btn-default:hover, .Form_Reservation .form-group.submit-element .btn-default:hover, .Login_System_Registration .form-group.submit-element .btn-default:hover, .Login_System_Deregistration .form-group.submit-element .btn-default:hover, .Login_System_Login .form-group.submit-element .btn-default:hover, .Lucene_Search .form-group.submit-element .btn-default:hover, .Lucene_SearchSmall .form-group.submit-element .btn-default:hover, .Addresses_Search .form-group.submit-element .btn-default:hover, .Addresses_SearchMaps .form-group.submit-element .btn-default:hover, .Community_Guestbook .form-group.submit-element .btn-default:hover, .Special_Club_Search .form-group.submit-element .btn-default:hover, .Special_Condolence_CondolenceBook .form-group.submit-element .btn-default:hover, .Special_Condolence .form-group.submit-element .btn-default:hover, .Special_Calendar .form-group.submit-element .btn-default:hover, .variant-01 .form-group.submit-element a.btn-primary:hover, .module-style__company-history .form-group.submit-element a.btn-primary:hover, .module-style__teaser-contact .form-group.submit-element a.btn-primary:hover, .pagination .form-group.submit-element a.btn-primary:hover, .Special_ChangingContents .form-group.submit-element a.btn-primary:hover, .Special_ContactPerson .form-group.submit-element a.btn-primary:hover, .Newsletter_Subscribe .form-group.submit-element a.btn-primary:hover, .Newsletter_Unsubscribe .form-group.submit-element a.btn-primary:hover, .Form_Contact .form-group.submit-element a.btn-primary:hover, .Form_FormGenerator .form-group.submit-element a.btn-primary:hover, .Form_Reservation .form-group.submit-element a.btn-primary:hover, .Login_System_Registration .form-group.submit-element a.btn-primary:hover, .Login_System_Deregistration .form-group.submit-element a.btn-primary:hover, .Login_System_Login .form-group.submit-element a.btn-primary:hover, .Lucene_Search .form-group.submit-element a.btn-primary:hover, .Lucene_SearchSmall .form-group.submit-element a.btn-primary:hover, .Addresses_Search .form-group.submit-element a.btn-primary:hover, .Addresses_SearchMaps .form-group.submit-element a.btn-primary:hover, .Community_Guestbook .form-group.submit-element a.btn-primary:hover, .Special_Club_Search .form-group.submit-element a.btn-primary:hover, .Special_Condolence_CondolenceBook .form-group.submit-element a.btn-primary:hover, .Special_Condolence .form-group.submit-element a.btn-primary:hover, .Special_Calendar .form-group.submit-element a.btn-primary:hover, .variant-01 .form-group.submit-element .btn-primary:hover, .module-style__company-history .form-group.submit-element .btn-primary:hover, .module-style__teaser-contact .form-group.submit-element .btn-primary:hover, .pagination .form-group.submit-element .btn-primary:hover, .Special_ChangingContents .form-group.submit-element .btn-primary:hover, .Special_ContactPerson .form-group.submit-element .btn-primary:hover, .Newsletter_Subscribe .form-group.submit-element .btn-primary:hover, .Newsletter_Unsubscribe .form-group.submit-element .btn-primary:hover, .Form_Contact .form-group.submit-element .btn-primary:hover, .Form_FormGenerator .form-group.submit-element .btn-primary:hover, .Form_Reservation .form-group.submit-element .btn-primary:hover, .Login_System_Registration .form-group.submit-element .btn-primary:hover, .Login_System_Deregistration .form-group.submit-element .btn-primary:hover, .Login_System_Login .form-group.submit-element .btn-primary:hover, .Lucene_Search .form-group.submit-element .btn-primary:hover, .Lucene_SearchSmall .form-group.submit-element .btn-primary:hover, .Addresses_Search .form-group.submit-element .btn-primary:hover, .Addresses_SearchMaps .form-group.submit-element .btn-primary:hover, .Community_Guestbook .form-group.submit-element .btn-primary:hover, .Special_Club_Search .form-group.submit-element .btn-primary:hover, .Special_Condolence_CondolenceBook .form-group.submit-element .btn-primary:hover, .Special_Condolence .form-group.submit-element .btn-primary:hover, .Special_Calendar .form-group.submit-element .btn-primary:hover, .variant-01 .form-group.submit-element a.btn-custom:hover, .module-style__company-history .form-group.submit-element a.btn-custom:hover, .module-style__teaser-contact .form-group.submit-element a.btn-custom:hover, .pagination .form-group.submit-element a.btn-custom:hover, .Special_ChangingContents .form-group.submit-element a.btn-custom:hover, .Special_ContactPerson .form-group.submit-element a.btn-custom:hover, .Newsletter_Subscribe .form-group.submit-element a.btn-custom:hover, .Newsletter_Unsubscribe .form-group.submit-element a.btn-custom:hover, .Form_Contact .form-group.submit-element a.btn-custom:hover, .Form_FormGenerator .form-group.submit-element a.btn-custom:hover, .Form_Reservation .form-group.submit-element a.btn-custom:hover, .Login_System_Registration .form-group.submit-element a.btn-custom:hover, .Login_System_Deregistration .form-group.submit-element a.btn-custom:hover, .Login_System_Login .form-group.submit-element a.btn-custom:hover, .Lucene_Search .form-group.submit-element a.btn-custom:hover, .Lucene_SearchSmall .form-group.submit-element a.btn-custom:hover, .Addresses_Search .form-group.submit-element a.btn-custom:hover, .Addresses_SearchMaps .form-group.submit-element a.btn-custom:hover, .Community_Guestbook .form-group.submit-element a.btn-custom:hover, .Special_Club_Search .form-group.submit-element a.btn-custom:hover, .Special_Condolence_CondolenceBook .form-group.submit-element a.btn-custom:hover, .Special_Condolence .form-group.submit-element a.btn-custom:hover, .Special_Calendar .form-group.submit-element a.btn-custom:hover, .variant-01 .form-group.submit-element .btn-custom:hover, .module-style__company-history .form-group.submit-element .btn-custom:hover, .module-style__teaser-contact .form-group.submit-element .btn-custom:hover, .pagination .form-group.submit-element .btn-custom:hover, .Special_ChangingContents .form-group.submit-element .btn-custom:hover, .Special_ContactPerson .form-group.submit-element .btn-custom:hover, .Newsletter_Subscribe .form-group.submit-element .btn-custom:hover, .Newsletter_Unsubscribe .form-group.submit-element .btn-custom:hover, .Form_Contact .form-group.submit-element .btn-custom:hover, .Form_FormGenerator .form-group.submit-element .btn-custom:hover, .Form_Reservation .form-group.submit-element .btn-custom:hover, .Login_System_Registration .form-group.submit-element .btn-custom:hover, .Login_System_Deregistration .form-group.submit-element .btn-custom:hover, .Login_System_Login .form-group.submit-element .btn-custom:hover, .Lucene_Search .form-group.submit-element .btn-custom:hover, .Lucene_SearchSmall .form-group.submit-element .btn-custom:hover, .Addresses_Search .form-group.submit-element .btn-custom:hover, .Addresses_SearchMaps .form-group.submit-element .btn-custom:hover, .Community_Guestbook .form-group.submit-element .btn-custom:hover, .Special_Club_Search .form-group.submit-element .btn-custom:hover, .Special_Condolence_CondolenceBook .form-group.submit-element .btn-custom:hover, .Special_Condolence .form-group.submit-element .btn-custom:hover, .Special_Calendar .form-group.submit-element .btn-custom:hover {
  background: #1daad4;
  border-color: #1daad4;
}
.variant-01 .form-group.has-error .form-control[aria-invalid=true], .module-style__company-history .form-group.has-error .form-control[aria-invalid=true], .module-style__teaser-contact .form-group.has-error .form-control[aria-invalid=true], .pagination .form-group.has-error .form-control[aria-invalid=true], .Special_ChangingContents .form-group.has-error .form-control[aria-invalid=true], .Special_ContactPerson .form-group.has-error .form-control[aria-invalid=true], .Newsletter_Subscribe .form-group.has-error .form-control[aria-invalid=true], .Newsletter_Unsubscribe .form-group.has-error .form-control[aria-invalid=true], .Form_Contact .form-group.has-error .form-control[aria-invalid=true], .Form_FormGenerator .form-group.has-error .form-control[aria-invalid=true], .Form_Reservation .form-group.has-error .form-control[aria-invalid=true], .Login_System_Registration .form-group.has-error .form-control[aria-invalid=true], .Login_System_Deregistration .form-group.has-error .form-control[aria-invalid=true], .Login_System_Login .form-group.has-error .form-control[aria-invalid=true], .Lucene_Search .form-group.has-error .form-control[aria-invalid=true], .Lucene_SearchSmall .form-group.has-error .form-control[aria-invalid=true], .Addresses_Search .form-group.has-error .form-control[aria-invalid=true], .Addresses_SearchMaps .form-group.has-error .form-control[aria-invalid=true], .Community_Guestbook .form-group.has-error .form-control[aria-invalid=true], .Special_Club_Search .form-group.has-error .form-control[aria-invalid=true], .Special_Condolence_CondolenceBook .form-group.has-error .form-control[aria-invalid=true], .Special_Condolence .form-group.has-error .form-control[aria-invalid=true], .Special_Calendar .form-group.has-error .form-control[aria-invalid=true] {
  border: 1px solid #9a1010;
}
.variant-01 ul.form-errors, .module-style__company-history ul.form-errors, .module-style__teaser-contact ul.form-errors, .pagination ul.form-errors, .Special_ChangingContents ul.form-errors, .Special_ContactPerson ul.form-errors, .Newsletter_Subscribe ul.form-errors, .Newsletter_Unsubscribe ul.form-errors, .Form_Contact ul.form-errors, .Form_FormGenerator ul.form-errors, .Form_Reservation ul.form-errors, .Login_System_Registration ul.form-errors, .Login_System_Deregistration ul.form-errors, .Login_System_Login ul.form-errors, .Lucene_Search ul.form-errors, .Lucene_SearchSmall ul.form-errors, .Addresses_Search ul.form-errors, .Addresses_SearchMaps ul.form-errors, .Community_Guestbook ul.form-errors, .Special_Club_Search ul.form-errors, .Special_Condolence_CondolenceBook ul.form-errors, .Special_Condolence ul.form-errors, .Special_Calendar ul.form-errors {
  text-align: left;
  list-style-type: decimal;
}
.variant-01.Form_Reservation .reservation-general-description div.checkbox, .Form_Reservation .reservation-general-description div.checkbox {
  padding: 0 15px;
  background: transparent;
  border: none;
}

.variant-01 .form-horizontal, .module-style__company-history .form-horizontal, .module-style__teaser-contact .form-horizontal, .pagination .form-horizontal, .Special_ChangingContents .form-horizontal, .Special_ContactPerson .form-horizontal, .Newsletter_Subscribe .form-horizontal, .Newsletter_Unsubscribe .form-horizontal, .Form_Contact .form-horizontal, .Form_FormGenerator .form-horizontal, .Form_Reservation .form-horizontal, .Login_System_Registration .form-horizontal, .Login_System_Deregistration .form-horizontal, .Login_System_Login .form-horizontal, .Lucene_Search .form-horizontal, .Lucene_SearchSmall .form-horizontal, .Addresses_Search .form-horizontal, .Addresses_SearchMaps .form-horizontal, .Community_Guestbook .form-horizontal, .Special_Club_Search .form-horizontal, .Special_Condolence_CondolenceBook .form-horizontal, .Special_Condolence .form-horizontal, .Special_Calendar .form-horizontal {
  margin-top: 30px;
}
.variant-01 .form-horizontal label, .module-style__company-history .form-horizontal label, .module-style__teaser-contact .form-horizontal label, .pagination .form-horizontal label, .Special_ChangingContents .form-horizontal label, .Special_ContactPerson .form-horizontal label, .Newsletter_Subscribe .form-horizontal label, .Newsletter_Unsubscribe .form-horizontal label, .Form_Contact .form-horizontal label, .Form_FormGenerator .form-horizontal label, .Form_Reservation .form-horizontal label, .Login_System_Registration .form-horizontal label, .Login_System_Deregistration .form-horizontal label, .Login_System_Login .form-horizontal label, .Lucene_Search .form-horizontal label, .Lucene_SearchSmall .form-horizontal label, .Addresses_Search .form-horizontal label, .Addresses_SearchMaps .form-horizontal label, .Community_Guestbook .form-horizontal label, .Special_Club_Search .form-horizontal label, .Special_Condolence_CondolenceBook .form-horizontal label, .Special_Condolence .form-horizontal label, .Special_Calendar .form-horizontal label, .variant-01 .form-horizontal .control-label, .module-style__company-history .form-horizontal .control-label, .module-style__teaser-contact .form-horizontal .control-label, .pagination .form-horizontal .control-label, .Special_ChangingContents .form-horizontal .control-label, .Special_ContactPerson .form-horizontal .control-label, .Newsletter_Subscribe .form-horizontal .control-label, .Newsletter_Unsubscribe .form-horizontal .control-label, .Form_Contact .form-horizontal .control-label, .Form_FormGenerator .form-horizontal .control-label, .Form_Reservation .form-horizontal .control-label, .Login_System_Registration .form-horizontal .control-label, .Login_System_Deregistration .form-horizontal .control-label, .Login_System_Login .form-horizontal .control-label, .Lucene_Search .form-horizontal .control-label, .Lucene_SearchSmall .form-horizontal .control-label, .Addresses_Search .form-horizontal .control-label, .Addresses_SearchMaps .form-horizontal .control-label, .Community_Guestbook .form-horizontal .control-label, .Special_Club_Search .form-horizontal .control-label, .Special_Condolence_CondolenceBook .form-horizontal .control-label, .Special_Condolence .form-horizontal .control-label, .Special_Calendar .form-horizontal .control-label {
  font-weight: 600;
}
.variant-01 .form-group .checkbox label, .module-style__company-history .form-group .checkbox label, .module-style__teaser-contact .form-group .checkbox label, .pagination .form-group .checkbox label, .Special_ChangingContents .form-group .checkbox label, .Special_ContactPerson .form-group .checkbox label, .Newsletter_Subscribe .form-group .checkbox label, .Newsletter_Unsubscribe .form-group .checkbox label, .Form_Contact .form-group .checkbox label, .Form_FormGenerator .form-group .checkbox label, .Form_Reservation .form-group .checkbox label, .Login_System_Registration .form-group .checkbox label, .Login_System_Deregistration .form-group .checkbox label, .Login_System_Login .form-group .checkbox label, .Lucene_Search .form-group .checkbox label, .Lucene_SearchSmall .form-group .checkbox label, .Addresses_Search .form-group .checkbox label, .Addresses_SearchMaps .form-group .checkbox label, .Community_Guestbook .form-group .checkbox label, .Special_Club_Search .form-group .checkbox label, .Special_Condolence_CondolenceBook .form-group .checkbox label, .Special_Condolence .form-group .checkbox label, .Special_Calendar .form-group .checkbox label {
  padding-left: 1.563rem;
}
.variant-01 .form-group input[type=checkbox], .module-style__company-history .form-group input[type=checkbox], .module-style__teaser-contact .form-group input[type=checkbox], .pagination .form-group input[type=checkbox], .Special_ChangingContents .form-group input[type=checkbox], .Special_ContactPerson .form-group input[type=checkbox], .Newsletter_Subscribe .form-group input[type=checkbox], .Newsletter_Unsubscribe .form-group input[type=checkbox], .Form_Contact .form-group input[type=checkbox], .Form_FormGenerator .form-group input[type=checkbox], .Form_Reservation .form-group input[type=checkbox], .Login_System_Registration .form-group input[type=checkbox], .Login_System_Deregistration .form-group input[type=checkbox], .Login_System_Login .form-group input[type=checkbox], .Lucene_Search .form-group input[type=checkbox], .Lucene_SearchSmall .form-group input[type=checkbox], .Addresses_Search .form-group input[type=checkbox], .Addresses_SearchMaps .form-group input[type=checkbox], .Community_Guestbook .form-group input[type=checkbox], .Special_Club_Search .form-group input[type=checkbox], .Special_Condolence_CondolenceBook .form-group input[type=checkbox], .Special_Condolence .form-group input[type=checkbox], .Special_Calendar .form-group input[type=checkbox] {
  width: 0.938rem;
  height: 0.938rem;
  display: grid;
  place-content: center;
  background: #f8f9f9;
  margin-top: 0.375rem;
  margin-left: -1.563rem;
  border: 1px solid #d3d3d3;
  border-radius: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
}
.variant-01 .form-group input[type=checkbox]::before, .module-style__company-history .form-group input[type=checkbox]::before, .module-style__teaser-contact .form-group input[type=checkbox]::before, .pagination .form-group input[type=checkbox]::before, .Special_ChangingContents .form-group input[type=checkbox]::before, .Special_ContactPerson .form-group input[type=checkbox]::before, .Newsletter_Subscribe .form-group input[type=checkbox]::before, .Newsletter_Unsubscribe .form-group input[type=checkbox]::before, .Form_Contact .form-group input[type=checkbox]::before, .Form_FormGenerator .form-group input[type=checkbox]::before, .Form_Reservation .form-group input[type=checkbox]::before, .Login_System_Registration .form-group input[type=checkbox]::before, .Login_System_Deregistration .form-group input[type=checkbox]::before, .Login_System_Login .form-group input[type=checkbox]::before, .Lucene_Search .form-group input[type=checkbox]::before, .Lucene_SearchSmall .form-group input[type=checkbox]::before, .Addresses_Search .form-group input[type=checkbox]::before, .Addresses_SearchMaps .form-group input[type=checkbox]::before, .Community_Guestbook .form-group input[type=checkbox]::before, .Special_Club_Search .form-group input[type=checkbox]::before, .Special_Condolence_CondolenceBook .form-group input[type=checkbox]::before, .Special_Condolence .form-group input[type=checkbox]::before, .Special_Calendar .form-group input[type=checkbox]::before {
  content: "";
  width: 0.563rem;
  height: 0.563rem;
  background-color: #444;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
          clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.variant-01 .form-group input[type=checkbox]:checked::before, .module-style__company-history .form-group input[type=checkbox]:checked::before, .module-style__teaser-contact .form-group input[type=checkbox]:checked::before, .pagination .form-group input[type=checkbox]:checked::before, .Special_ChangingContents .form-group input[type=checkbox]:checked::before, .Special_ContactPerson .form-group input[type=checkbox]:checked::before, .Newsletter_Subscribe .form-group input[type=checkbox]:checked::before, .Newsletter_Unsubscribe .form-group input[type=checkbox]:checked::before, .Form_Contact .form-group input[type=checkbox]:checked::before, .Form_FormGenerator .form-group input[type=checkbox]:checked::before, .Form_Reservation .form-group input[type=checkbox]:checked::before, .Login_System_Registration .form-group input[type=checkbox]:checked::before, .Login_System_Deregistration .form-group input[type=checkbox]:checked::before, .Login_System_Login .form-group input[type=checkbox]:checked::before, .Lucene_Search .form-group input[type=checkbox]:checked::before, .Lucene_SearchSmall .form-group input[type=checkbox]:checked::before, .Addresses_Search .form-group input[type=checkbox]:checked::before, .Addresses_SearchMaps .form-group input[type=checkbox]:checked::before, .Community_Guestbook .form-group input[type=checkbox]:checked::before, .Special_Club_Search .form-group input[type=checkbox]:checked::before, .Special_Condolence_CondolenceBook .form-group input[type=checkbox]:checked::before, .Special_Condolence .form-group input[type=checkbox]:checked::before, .Special_Calendar .form-group input[type=checkbox]:checked::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.variant-01 .form-group input[type=checkbox]:focus, .module-style__company-history .form-group input[type=checkbox]:focus, .module-style__teaser-contact .form-group input[type=checkbox]:focus, .pagination .form-group input[type=checkbox]:focus, .Special_ChangingContents .form-group input[type=checkbox]:focus, .Special_ContactPerson .form-group input[type=checkbox]:focus, .Newsletter_Subscribe .form-group input[type=checkbox]:focus, .Newsletter_Unsubscribe .form-group input[type=checkbox]:focus, .Form_Contact .form-group input[type=checkbox]:focus, .Form_FormGenerator .form-group input[type=checkbox]:focus, .Form_Reservation .form-group input[type=checkbox]:focus, .Login_System_Registration .form-group input[type=checkbox]:focus, .Login_System_Deregistration .form-group input[type=checkbox]:focus, .Login_System_Login .form-group input[type=checkbox]:focus, .Lucene_Search .form-group input[type=checkbox]:focus, .Lucene_SearchSmall .form-group input[type=checkbox]:focus, .Addresses_Search .form-group input[type=checkbox]:focus, .Addresses_SearchMaps .form-group input[type=checkbox]:focus, .Community_Guestbook .form-group input[type=checkbox]:focus, .Special_Club_Search .form-group input[type=checkbox]:focus, .Special_Condolence_CondolenceBook .form-group input[type=checkbox]:focus, .Special_Condolence .form-group input[type=checkbox]:focus, .Special_Calendar .form-group input[type=checkbox]:focus {
  outline: none;
}
.variant-01 .form-group input[type=radio], .module-style__company-history .form-group input[type=radio], .module-style__teaser-contact .form-group input[type=radio], .pagination .form-group input[type=radio], .Special_ChangingContents .form-group input[type=radio], .Special_ContactPerson .form-group input[type=radio], .Newsletter_Subscribe .form-group input[type=radio], .Newsletter_Unsubscribe .form-group input[type=radio], .Form_Contact .form-group input[type=radio], .Form_FormGenerator .form-group input[type=radio], .Form_Reservation .form-group input[type=radio], .Login_System_Registration .form-group input[type=radio], .Login_System_Deregistration .form-group input[type=radio], .Login_System_Login .form-group input[type=radio], .Lucene_Search .form-group input[type=radio], .Lucene_SearchSmall .form-group input[type=radio], .Addresses_Search .form-group input[type=radio], .Addresses_SearchMaps .form-group input[type=radio], .Community_Guestbook .form-group input[type=radio], .Special_Club_Search .form-group input[type=radio], .Special_Condolence_CondolenceBook .form-group input[type=radio], .Special_Condolence .form-group input[type=radio], .Special_Calendar .form-group input[type=radio] {
  width: 0.938rem;
  height: 0.938rem;
  display: grid;
  place-content: center;
  background: #f8f9f9;
  margin-left: -1.563rem;
  margin-top: 0.438rem;
  border: 1px solid #d3d3d3;
  border-radius: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
}
.variant-01 .form-group input[type=radio]::before, .module-style__company-history .form-group input[type=radio]::before, .module-style__teaser-contact .form-group input[type=radio]::before, .pagination .form-group input[type=radio]::before, .Special_ChangingContents .form-group input[type=radio]::before, .Special_ContactPerson .form-group input[type=radio]::before, .Newsletter_Subscribe .form-group input[type=radio]::before, .Newsletter_Unsubscribe .form-group input[type=radio]::before, .Form_Contact .form-group input[type=radio]::before, .Form_FormGenerator .form-group input[type=radio]::before, .Form_Reservation .form-group input[type=radio]::before, .Login_System_Registration .form-group input[type=radio]::before, .Login_System_Deregistration .form-group input[type=radio]::before, .Login_System_Login .form-group input[type=radio]::before, .Lucene_Search .form-group input[type=radio]::before, .Lucene_SearchSmall .form-group input[type=radio]::before, .Addresses_Search .form-group input[type=radio]::before, .Addresses_SearchMaps .form-group input[type=radio]::before, .Community_Guestbook .form-group input[type=radio]::before, .Special_Club_Search .form-group input[type=radio]::before, .Special_Condolence_CondolenceBook .form-group input[type=radio]::before, .Special_Condolence .form-group input[type=radio]::before, .Special_Calendar .form-group input[type=radio]::before {
  content: "";
  width: 0.563rem;
  height: 0.563rem;
  background-color: #444;
  border-radius: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.variant-01 .form-group input[type=radio]:checked::before, .module-style__company-history .form-group input[type=radio]:checked::before, .module-style__teaser-contact .form-group input[type=radio]:checked::before, .pagination .form-group input[type=radio]:checked::before, .Special_ChangingContents .form-group input[type=radio]:checked::before, .Special_ContactPerson .form-group input[type=radio]:checked::before, .Newsletter_Subscribe .form-group input[type=radio]:checked::before, .Newsletter_Unsubscribe .form-group input[type=radio]:checked::before, .Form_Contact .form-group input[type=radio]:checked::before, .Form_FormGenerator .form-group input[type=radio]:checked::before, .Form_Reservation .form-group input[type=radio]:checked::before, .Login_System_Registration .form-group input[type=radio]:checked::before, .Login_System_Deregistration .form-group input[type=radio]:checked::before, .Login_System_Login .form-group input[type=radio]:checked::before, .Lucene_Search .form-group input[type=radio]:checked::before, .Lucene_SearchSmall .form-group input[type=radio]:checked::before, .Addresses_Search .form-group input[type=radio]:checked::before, .Addresses_SearchMaps .form-group input[type=radio]:checked::before, .Community_Guestbook .form-group input[type=radio]:checked::before, .Special_Club_Search .form-group input[type=radio]:checked::before, .Special_Condolence_CondolenceBook .form-group input[type=radio]:checked::before, .Special_Condolence .form-group input[type=radio]:checked::before, .Special_Calendar .form-group input[type=radio]:checked::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.variant-01 .form-group input[type=radio]:focus, .module-style__company-history .form-group input[type=radio]:focus, .module-style__teaser-contact .form-group input[type=radio]:focus, .pagination .form-group input[type=radio]:focus, .Special_ChangingContents .form-group input[type=radio]:focus, .Special_ContactPerson .form-group input[type=radio]:focus, .Newsletter_Subscribe .form-group input[type=radio]:focus, .Newsletter_Unsubscribe .form-group input[type=radio]:focus, .Form_Contact .form-group input[type=radio]:focus, .Form_FormGenerator .form-group input[type=radio]:focus, .Form_Reservation .form-group input[type=radio]:focus, .Login_System_Registration .form-group input[type=radio]:focus, .Login_System_Deregistration .form-group input[type=radio]:focus, .Login_System_Login .form-group input[type=radio]:focus, .Lucene_Search .form-group input[type=radio]:focus, .Lucene_SearchSmall .form-group input[type=radio]:focus, .Addresses_Search .form-group input[type=radio]:focus, .Addresses_SearchMaps .form-group input[type=radio]:focus, .Community_Guestbook .form-group input[type=radio]:focus, .Special_Club_Search .form-group input[type=radio]:focus, .Special_Condolence_CondolenceBook .form-group input[type=radio]:focus, .Special_Condolence .form-group input[type=radio]:focus, .Special_Calendar .form-group input[type=radio]:focus {
  outline: none;
}
.variant-01 .form-group .control-label:not(.form-group > .control-label), .module-style__company-history .form-group .control-label:not(.form-group > .control-label), .module-style__teaser-contact .form-group .control-label:not(.form-group > .control-label), .pagination .form-group .control-label:not(.form-group > .control-label), .Special_ChangingContents .form-group .control-label:not(.form-group > .control-label), .Special_ContactPerson .form-group .control-label:not(.form-group > .control-label), .Newsletter_Subscribe .form-group .control-label:not(.form-group > .control-label), .Newsletter_Unsubscribe .form-group .control-label:not(.form-group > .control-label), .Form_Contact .form-group .control-label:not(.form-group > .control-label), .Form_FormGenerator .form-group .control-label:not(.form-group > .control-label), .Form_Reservation .form-group .control-label:not(.form-group > .control-label), .Login_System_Registration .form-group .control-label:not(.form-group > .control-label), .Login_System_Deregistration .form-group .control-label:not(.form-group > .control-label), .Login_System_Login .form-group .control-label:not(.form-group > .control-label), .Lucene_Search .form-group .control-label:not(.form-group > .control-label), .Lucene_SearchSmall .form-group .control-label:not(.form-group > .control-label), .Addresses_Search .form-group .control-label:not(.form-group > .control-label), .Addresses_SearchMaps .form-group .control-label:not(.form-group > .control-label), .Community_Guestbook .form-group .control-label:not(.form-group > .control-label), .Special_Club_Search .form-group .control-label:not(.form-group > .control-label), .Special_Condolence_CondolenceBook .form-group .control-label:not(.form-group > .control-label), .Special_Condolence .form-group .control-label:not(.form-group > .control-label), .Special_Calendar .form-group .control-label:not(.form-group > .control-label) {
  color: #444;
  font-weight: 600;
  padding-left: 1.563rem;
}
.variant-01 .form-group textarea.form-control, .module-style__company-history .form-group textarea.form-control, .module-style__teaser-contact .form-group textarea.form-control, .pagination .form-group textarea.form-control, .Special_ChangingContents .form-group textarea.form-control, .Special_ContactPerson .form-group textarea.form-control, .Newsletter_Subscribe .form-group textarea.form-control, .Newsletter_Unsubscribe .form-group textarea.form-control, .Form_Contact .form-group textarea.form-control, .Form_FormGenerator .form-group textarea.form-control, .Form_Reservation .form-group textarea.form-control, .Login_System_Registration .form-group textarea.form-control, .Login_System_Deregistration .form-group textarea.form-control, .Login_System_Login .form-group textarea.form-control, .Lucene_Search .form-group textarea.form-control, .Lucene_SearchSmall .form-group textarea.form-control, .Addresses_Search .form-group textarea.form-control, .Addresses_SearchMaps .form-group textarea.form-control, .Community_Guestbook .form-group textarea.form-control, .Special_Club_Search .form-group textarea.form-control, .Special_Condolence_CondolenceBook .form-group textarea.form-control, .Special_Condolence .form-group textarea.form-control, .Special_Calendar .form-group textarea.form-control {
  padding: 12px 15px 12px 15px;
  line-height: 1.5;
}
.variant-01 .form-group .form-control, .module-style__company-history .form-group .form-control, .module-style__teaser-contact .form-group .form-control, .pagination .form-group .form-control, .Special_ChangingContents .form-group .form-control, .Special_ContactPerson .form-group .form-control, .Newsletter_Subscribe .form-group .form-control, .Newsletter_Unsubscribe .form-group .form-control, .Form_Contact .form-group .form-control, .Form_FormGenerator .form-group .form-control, .Form_Reservation .form-group .form-control, .Login_System_Registration .form-group .form-control, .Login_System_Deregistration .form-group .form-control, .Login_System_Login .form-group .form-control, .Lucene_Search .form-group .form-control, .Lucene_SearchSmall .form-group .form-control, .Addresses_Search .form-group .form-control, .Addresses_SearchMaps .form-group .form-control, .Community_Guestbook .form-group .form-control, .Special_Club_Search .form-group .form-control, .Special_Condolence_CondolenceBook .form-group .form-control, .Special_Condolence .form-group .form-control, .Special_Calendar .form-group .form-control {
  font-family: "Roboto", sans-serif;
  color: #444;
  background: #f8f9f9;
  font-size: 1.125rem;
  font-weight: 400;
  border: 1px solid #d3d3d3;
  height: 45px;
  line-height: 45px;
  padding: 5px 10px 5px 10px;
  border-radius: 5px;
}
.variant-01 .form-group .form-control::-webkit-input-placeholder, .module-style__company-history .form-group .form-control::-webkit-input-placeholder, .module-style__teaser-contact .form-group .form-control::-webkit-input-placeholder, .pagination .form-group .form-control::-webkit-input-placeholder, .Special_ChangingContents .form-group .form-control::-webkit-input-placeholder, .Special_ContactPerson .form-group .form-control::-webkit-input-placeholder, .Newsletter_Subscribe .form-group .form-control::-webkit-input-placeholder, .Newsletter_Unsubscribe .form-group .form-control::-webkit-input-placeholder, .Form_Contact .form-group .form-control::-webkit-input-placeholder, .Form_FormGenerator .form-group .form-control::-webkit-input-placeholder, .Form_Reservation .form-group .form-control::-webkit-input-placeholder, .Login_System_Registration .form-group .form-control::-webkit-input-placeholder, .Login_System_Deregistration .form-group .form-control::-webkit-input-placeholder, .Login_System_Login .form-group .form-control::-webkit-input-placeholder, .Lucene_Search .form-group .form-control::-webkit-input-placeholder, .Lucene_SearchSmall .form-group .form-control::-webkit-input-placeholder, .Addresses_Search .form-group .form-control::-webkit-input-placeholder, .Addresses_SearchMaps .form-group .form-control::-webkit-input-placeholder, .Community_Guestbook .form-group .form-control::-webkit-input-placeholder, .Special_Club_Search .form-group .form-control::-webkit-input-placeholder, .Special_Condolence_CondolenceBook .form-group .form-control::-webkit-input-placeholder, .Special_Condolence .form-group .form-control::-webkit-input-placeholder, .Special_Calendar .form-group .form-control::-webkit-input-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: "Roboto", sans-serif;
  color: #444;
  opacity: 0.5; /* Firefox */
}
.variant-01 .form-group .form-control::-moz-placeholder, .module-style__company-history .form-group .form-control::-moz-placeholder, .module-style__teaser-contact .form-group .form-control::-moz-placeholder, .pagination .form-group .form-control::-moz-placeholder, .Special_ChangingContents .form-group .form-control::-moz-placeholder, .Special_ContactPerson .form-group .form-control::-moz-placeholder, .Newsletter_Subscribe .form-group .form-control::-moz-placeholder, .Newsletter_Unsubscribe .form-group .form-control::-moz-placeholder, .Form_Contact .form-group .form-control::-moz-placeholder, .Form_FormGenerator .form-group .form-control::-moz-placeholder, .Form_Reservation .form-group .form-control::-moz-placeholder, .Login_System_Registration .form-group .form-control::-moz-placeholder, .Login_System_Deregistration .form-group .form-control::-moz-placeholder, .Login_System_Login .form-group .form-control::-moz-placeholder, .Lucene_Search .form-group .form-control::-moz-placeholder, .Lucene_SearchSmall .form-group .form-control::-moz-placeholder, .Addresses_Search .form-group .form-control::-moz-placeholder, .Addresses_SearchMaps .form-group .form-control::-moz-placeholder, .Community_Guestbook .form-group .form-control::-moz-placeholder, .Special_Club_Search .form-group .form-control::-moz-placeholder, .Special_Condolence_CondolenceBook .form-group .form-control::-moz-placeholder, .Special_Condolence .form-group .form-control::-moz-placeholder, .Special_Calendar .form-group .form-control::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: "Roboto", sans-serif;
  color: #444;
  opacity: 0.5; /* Firefox */
}
.variant-01 .form-group .form-control:-ms-input-placeholder, .module-style__company-history .form-group .form-control:-ms-input-placeholder, .module-style__teaser-contact .form-group .form-control:-ms-input-placeholder, .pagination .form-group .form-control:-ms-input-placeholder, .Special_ChangingContents .form-group .form-control:-ms-input-placeholder, .Special_ContactPerson .form-group .form-control:-ms-input-placeholder, .Newsletter_Subscribe .form-group .form-control:-ms-input-placeholder, .Newsletter_Unsubscribe .form-group .form-control:-ms-input-placeholder, .Form_Contact .form-group .form-control:-ms-input-placeholder, .Form_FormGenerator .form-group .form-control:-ms-input-placeholder, .Form_Reservation .form-group .form-control:-ms-input-placeholder, .Login_System_Registration .form-group .form-control:-ms-input-placeholder, .Login_System_Deregistration .form-group .form-control:-ms-input-placeholder, .Login_System_Login .form-group .form-control:-ms-input-placeholder, .Lucene_Search .form-group .form-control:-ms-input-placeholder, .Lucene_SearchSmall .form-group .form-control:-ms-input-placeholder, .Addresses_Search .form-group .form-control:-ms-input-placeholder, .Addresses_SearchMaps .form-group .form-control:-ms-input-placeholder, .Community_Guestbook .form-group .form-control:-ms-input-placeholder, .Special_Club_Search .form-group .form-control:-ms-input-placeholder, .Special_Condolence_CondolenceBook .form-group .form-control:-ms-input-placeholder, .Special_Condolence .form-group .form-control:-ms-input-placeholder, .Special_Calendar .form-group .form-control:-ms-input-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: "Roboto", sans-serif;
  color: #444;
  opacity: 0.5; /* Firefox */
}
.variant-01 .form-group .form-control::-ms-input-placeholder, .module-style__company-history .form-group .form-control::-ms-input-placeholder, .module-style__teaser-contact .form-group .form-control::-ms-input-placeholder, .pagination .form-group .form-control::-ms-input-placeholder, .Special_ChangingContents .form-group .form-control::-ms-input-placeholder, .Special_ContactPerson .form-group .form-control::-ms-input-placeholder, .Newsletter_Subscribe .form-group .form-control::-ms-input-placeholder, .Newsletter_Unsubscribe .form-group .form-control::-ms-input-placeholder, .Form_Contact .form-group .form-control::-ms-input-placeholder, .Form_FormGenerator .form-group .form-control::-ms-input-placeholder, .Form_Reservation .form-group .form-control::-ms-input-placeholder, .Login_System_Registration .form-group .form-control::-ms-input-placeholder, .Login_System_Deregistration .form-group .form-control::-ms-input-placeholder, .Login_System_Login .form-group .form-control::-ms-input-placeholder, .Lucene_Search .form-group .form-control::-ms-input-placeholder, .Lucene_SearchSmall .form-group .form-control::-ms-input-placeholder, .Addresses_Search .form-group .form-control::-ms-input-placeholder, .Addresses_SearchMaps .form-group .form-control::-ms-input-placeholder, .Community_Guestbook .form-group .form-control::-ms-input-placeholder, .Special_Club_Search .form-group .form-control::-ms-input-placeholder, .Special_Condolence_CondolenceBook .form-group .form-control::-ms-input-placeholder, .Special_Condolence .form-group .form-control::-ms-input-placeholder, .Special_Calendar .form-group .form-control::-ms-input-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: "Roboto", sans-serif;
  color: #444;
  opacity: 0.5; /* Firefox */
}
.variant-01 .form-group .form-control::placeholder, .module-style__company-history .form-group .form-control::placeholder, .module-style__teaser-contact .form-group .form-control::placeholder, .pagination .form-group .form-control::placeholder, .Special_ChangingContents .form-group .form-control::placeholder, .Special_ContactPerson .form-group .form-control::placeholder, .Newsletter_Subscribe .form-group .form-control::placeholder, .Newsletter_Unsubscribe .form-group .form-control::placeholder, .Form_Contact .form-group .form-control::placeholder, .Form_FormGenerator .form-group .form-control::placeholder, .Form_Reservation .form-group .form-control::placeholder, .Login_System_Registration .form-group .form-control::placeholder, .Login_System_Deregistration .form-group .form-control::placeholder, .Login_System_Login .form-group .form-control::placeholder, .Lucene_Search .form-group .form-control::placeholder, .Lucene_SearchSmall .form-group .form-control::placeholder, .Addresses_Search .form-group .form-control::placeholder, .Addresses_SearchMaps .form-group .form-control::placeholder, .Community_Guestbook .form-group .form-control::placeholder, .Special_Club_Search .form-group .form-control::placeholder, .Special_Condolence_CondolenceBook .form-group .form-control::placeholder, .Special_Condolence .form-group .form-control::placeholder, .Special_Calendar .form-group .form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: "Roboto", sans-serif;
  color: #444;
  opacity: 0.5; /* Firefox */
}
.variant-01 .form-group .form-control:-ms-input-placeholder, .module-style__company-history .form-group .form-control:-ms-input-placeholder, .module-style__teaser-contact .form-group .form-control:-ms-input-placeholder, .pagination .form-group .form-control:-ms-input-placeholder, .Special_ChangingContents .form-group .form-control:-ms-input-placeholder, .Special_ContactPerson .form-group .form-control:-ms-input-placeholder, .Newsletter_Subscribe .form-group .form-control:-ms-input-placeholder, .Newsletter_Unsubscribe .form-group .form-control:-ms-input-placeholder, .Form_Contact .form-group .form-control:-ms-input-placeholder, .Form_FormGenerator .form-group .form-control:-ms-input-placeholder, .Form_Reservation .form-group .form-control:-ms-input-placeholder, .Login_System_Registration .form-group .form-control:-ms-input-placeholder, .Login_System_Deregistration .form-group .form-control:-ms-input-placeholder, .Login_System_Login .form-group .form-control:-ms-input-placeholder, .Lucene_Search .form-group .form-control:-ms-input-placeholder, .Lucene_SearchSmall .form-group .form-control:-ms-input-placeholder, .Addresses_Search .form-group .form-control:-ms-input-placeholder, .Addresses_SearchMaps .form-group .form-control:-ms-input-placeholder, .Community_Guestbook .form-group .form-control:-ms-input-placeholder, .Special_Club_Search .form-group .form-control:-ms-input-placeholder, .Special_Condolence_CondolenceBook .form-group .form-control:-ms-input-placeholder, .Special_Condolence .form-group .form-control:-ms-input-placeholder, .Special_Calendar .form-group .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #444;
}
.variant-01 .form-group .form-control::-ms-input-placeholder, .module-style__company-history .form-group .form-control::-ms-input-placeholder, .module-style__teaser-contact .form-group .form-control::-ms-input-placeholder, .pagination .form-group .form-control::-ms-input-placeholder, .Special_ChangingContents .form-group .form-control::-ms-input-placeholder, .Special_ContactPerson .form-group .form-control::-ms-input-placeholder, .Newsletter_Subscribe .form-group .form-control::-ms-input-placeholder, .Newsletter_Unsubscribe .form-group .form-control::-ms-input-placeholder, .Form_Contact .form-group .form-control::-ms-input-placeholder, .Form_FormGenerator .form-group .form-control::-ms-input-placeholder, .Form_Reservation .form-group .form-control::-ms-input-placeholder, .Login_System_Registration .form-group .form-control::-ms-input-placeholder, .Login_System_Deregistration .form-group .form-control::-ms-input-placeholder, .Login_System_Login .form-group .form-control::-ms-input-placeholder, .Lucene_Search .form-group .form-control::-ms-input-placeholder, .Lucene_SearchSmall .form-group .form-control::-ms-input-placeholder, .Addresses_Search .form-group .form-control::-ms-input-placeholder, .Addresses_SearchMaps .form-group .form-control::-ms-input-placeholder, .Community_Guestbook .form-group .form-control::-ms-input-placeholder, .Special_Club_Search .form-group .form-control::-ms-input-placeholder, .Special_Condolence_CondolenceBook .form-group .form-control::-ms-input-placeholder, .Special_Condolence .form-group .form-control::-ms-input-placeholder, .Special_Calendar .form-group .form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #444;
}
.variant-01 .form-group .form-control:focus, .module-style__company-history .form-group .form-control:focus, .module-style__teaser-contact .form-group .form-control:focus, .pagination .form-group .form-control:focus, .Special_ChangingContents .form-group .form-control:focus, .Special_ContactPerson .form-group .form-control:focus, .Newsletter_Subscribe .form-group .form-control:focus, .Newsletter_Unsubscribe .form-group .form-control:focus, .Form_Contact .form-group .form-control:focus, .Form_FormGenerator .form-group .form-control:focus, .Form_Reservation .form-group .form-control:focus, .Login_System_Registration .form-group .form-control:focus, .Login_System_Deregistration .form-group .form-control:focus, .Login_System_Login .form-group .form-control:focus, .Lucene_Search .form-group .form-control:focus, .Lucene_SearchSmall .form-group .form-control:focus, .Addresses_Search .form-group .form-control:focus, .Addresses_SearchMaps .form-group .form-control:focus, .Community_Guestbook .form-group .form-control:focus, .Special_Club_Search .form-group .form-control:focus, .Special_Condolence_CondolenceBook .form-group .form-control:focus, .Special_Condolence .form-group .form-control:focus, .Special_Calendar .form-group .form-control:focus {
  -webkit-box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.025), 0 1.6px 3.2px rgba(0, 0, 0, 0.025), 0 3px 6px rgba(0, 0, 0, 0.03);
          box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.025), 0 1.6px 3.2px rgba(0, 0, 0, 0.025), 0 3px 6px rgba(0, 0, 0, 0.03);
}
.variant-01 .form-group .form-control.btn, .module-style__company-history .form-group .form-control.btn, .module-style__teaser-contact .form-group .form-control.btn, .pagination .form-group .form-control.btn, .Special_ChangingContents .form-group .form-control.btn, .Special_ContactPerson .form-group .form-control.btn, .Newsletter_Subscribe .form-group .form-control.btn, .Newsletter_Unsubscribe .form-group .form-control.btn, .Form_Contact .form-group .form-control.btn, .Form_FormGenerator .form-group .form-control.btn, .Form_Reservation .form-group .form-control.btn, .Login_System_Registration .form-group .form-control.btn, .Login_System_Deregistration .form-group .form-control.btn, .Login_System_Login .form-group .form-control.btn, .Lucene_Search .form-group .form-control.btn, .Lucene_SearchSmall .form-group .form-control.btn, .Addresses_Search .form-group .form-control.btn, .Addresses_SearchMaps .form-group .form-control.btn, .Community_Guestbook .form-group .form-control.btn, .Special_Club_Search .form-group .form-control.btn, .Special_Condolence_CondolenceBook .form-group .form-control.btn, .Special_Condolence .form-group .form-control.btn, .Special_Calendar .form-group .form-control.btn {
  padding: 5px 10px 5px 10px;
  background: #3fbfe5;
  border-color: #3fbfe5;
  color: #fff;
}
.variant-01 .form-group .form-control.btn:hover, .module-style__company-history .form-group .form-control.btn:hover, .module-style__teaser-contact .form-group .form-control.btn:hover, .pagination .form-group .form-control.btn:hover, .Special_ChangingContents .form-group .form-control.btn:hover, .Special_ContactPerson .form-group .form-control.btn:hover, .Newsletter_Subscribe .form-group .form-control.btn:hover, .Newsletter_Unsubscribe .form-group .form-control.btn:hover, .Form_Contact .form-group .form-control.btn:hover, .Form_FormGenerator .form-group .form-control.btn:hover, .Form_Reservation .form-group .form-control.btn:hover, .Login_System_Registration .form-group .form-control.btn:hover, .Login_System_Deregistration .form-group .form-control.btn:hover, .Login_System_Login .form-group .form-control.btn:hover, .Lucene_Search .form-group .form-control.btn:hover, .Lucene_SearchSmall .form-group .form-control.btn:hover, .Addresses_Search .form-group .form-control.btn:hover, .Addresses_SearchMaps .form-group .form-control.btn:hover, .Community_Guestbook .form-group .form-control.btn:hover, .Special_Club_Search .form-group .form-control.btn:hover, .Special_Condolence_CondolenceBook .form-group .form-control.btn:hover, .Special_Condolence .form-group .form-control.btn:hover, .Special_Calendar .form-group .form-control.btn:hover {
  background: #1daad4;
  border-color: #1daad4;
}
.variant-01 .form-group .form-control[name=captcha], .module-style__company-history .form-group .form-control[name=captcha], .module-style__teaser-contact .form-group .form-control[name=captcha], .pagination .form-group .form-control[name=captcha], .Special_ChangingContents .form-group .form-control[name=captcha], .Special_ContactPerson .form-group .form-control[name=captcha], .Newsletter_Subscribe .form-group .form-control[name=captcha], .Newsletter_Unsubscribe .form-group .form-control[name=captcha], .Form_Contact .form-group .form-control[name=captcha], .Form_FormGenerator .form-group .form-control[name=captcha], .Form_Reservation .form-group .form-control[name=captcha], .Login_System_Registration .form-group .form-control[name=captcha], .Login_System_Deregistration .form-group .form-control[name=captcha], .Login_System_Login .form-group .form-control[name=captcha], .Lucene_Search .form-group .form-control[name=captcha], .Lucene_SearchSmall .form-group .form-control[name=captcha], .Addresses_Search .form-group .form-control[name=captcha], .Addresses_SearchMaps .form-group .form-control[name=captcha], .Community_Guestbook .form-group .form-control[name=captcha], .Special_Club_Search .form-group .form-control[name=captcha], .Special_Condolence_CondolenceBook .form-group .form-control[name=captcha], .Special_Condolence .form-group .form-control[name=captcha], .Special_Calendar .form-group .form-control[name=captcha] {
  padding-right: 0;
}
.variant-01 .form-group select.form-control, .module-style__company-history .form-group select.form-control, .module-style__teaser-contact .form-group select.form-control, .pagination .form-group select.form-control, .Special_ChangingContents .form-group select.form-control, .Special_ContactPerson .form-group select.form-control, .Newsletter_Subscribe .form-group select.form-control, .Newsletter_Unsubscribe .form-group select.form-control, .Form_Contact .form-group select.form-control, .Form_FormGenerator .form-group select.form-control, .Form_Reservation .form-group select.form-control, .Login_System_Registration .form-group select.form-control, .Login_System_Deregistration .form-group select.form-control, .Login_System_Login .form-group select.form-control, .Lucene_Search .form-group select.form-control, .Lucene_SearchSmall .form-group select.form-control, .Addresses_Search .form-group select.form-control, .Addresses_SearchMaps .form-group select.form-control, .Community_Guestbook .form-group select.form-control, .Special_Club_Search .form-group select.form-control, .Special_Condolence_CondolenceBook .form-group select.form-control, .Special_Condolence .form-group select.form-control, .Special_Calendar .form-group select.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJjdXJyZW50Q29sb3IiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48cGF0aCBkPSJNNiA5bDYgNiA2LTYiLz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  line-height: inherit;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .variant-01 .form-group [type=date].form-control, .module-style__company-history .form-group [type=date].form-control, .module-style__teaser-contact .form-group [type=date].form-control, .pagination .form-group [type=date].form-control, .Special_ChangingContents .form-group [type=date].form-control, .Special_ContactPerson .form-group [type=date].form-control, .Newsletter_Subscribe .form-group [type=date].form-control, .Newsletter_Unsubscribe .form-group [type=date].form-control, .Form_Contact .form-group [type=date].form-control, .Form_FormGenerator .form-group [type=date].form-control, .Form_Reservation .form-group [type=date].form-control, .Login_System_Registration .form-group [type=date].form-control, .Login_System_Deregistration .form-group [type=date].form-control, .Login_System_Login .form-group [type=date].form-control, .Lucene_Search .form-group [type=date].form-control, .Lucene_SearchSmall .form-group [type=date].form-control, .Addresses_Search .form-group [type=date].form-control, .Addresses_SearchMaps .form-group [type=date].form-control, .Community_Guestbook .form-group [type=date].form-control, .Special_Club_Search .form-group [type=date].form-control, .Special_Condolence_CondolenceBook .form-group [type=date].form-control, .Special_Condolence .form-group [type=date].form-control, .Special_Calendar .form-group [type=date].form-control {
    padding: 0 10px;
    -webkit-min-logical-width: calc(100% - 16px);
  }
  .variant-01 .form-group [type=date].form-control::-webkit-datetime-edit, .module-style__company-history .form-group [type=date].form-control::-webkit-datetime-edit, .module-style__teaser-contact .form-group [type=date].form-control::-webkit-datetime-edit, .pagination .form-group [type=date].form-control::-webkit-datetime-edit, .Special_ChangingContents .form-group [type=date].form-control::-webkit-datetime-edit, .Special_ContactPerson .form-group [type=date].form-control::-webkit-datetime-edit, .Newsletter_Subscribe .form-group [type=date].form-control::-webkit-datetime-edit, .Newsletter_Unsubscribe .form-group [type=date].form-control::-webkit-datetime-edit, .Form_Contact .form-group [type=date].form-control::-webkit-datetime-edit, .Form_FormGenerator .form-group [type=date].form-control::-webkit-datetime-edit, .Form_Reservation .form-group [type=date].form-control::-webkit-datetime-edit, .Login_System_Registration .form-group [type=date].form-control::-webkit-datetime-edit, .Login_System_Deregistration .form-group [type=date].form-control::-webkit-datetime-edit, .Login_System_Login .form-group [type=date].form-control::-webkit-datetime-edit, .Lucene_Search .form-group [type=date].form-control::-webkit-datetime-edit, .Lucene_SearchSmall .form-group [type=date].form-control::-webkit-datetime-edit, .Addresses_Search .form-group [type=date].form-control::-webkit-datetime-edit, .Addresses_SearchMaps .form-group [type=date].form-control::-webkit-datetime-edit, .Community_Guestbook .form-group [type=date].form-control::-webkit-datetime-edit, .Special_Club_Search .form-group [type=date].form-control::-webkit-datetime-edit, .Special_Condolence_CondolenceBook .form-group [type=date].form-control::-webkit-datetime-edit, .Special_Condolence .form-group [type=date].form-control::-webkit-datetime-edit, .Special_Calendar .form-group [type=date].form-control::-webkit-datetime-edit {
    position: relative;
    top: -2px;
  }
  .variant-01 .form-group [type=date].form-control::-webkit-date-and-time-value, .module-style__company-history .form-group [type=date].form-control::-webkit-date-and-time-value, .module-style__teaser-contact .form-group [type=date].form-control::-webkit-date-and-time-value, .pagination .form-group [type=date].form-control::-webkit-date-and-time-value, .Special_ChangingContents .form-group [type=date].form-control::-webkit-date-and-time-value, .Special_ContactPerson .form-group [type=date].form-control::-webkit-date-and-time-value, .Newsletter_Subscribe .form-group [type=date].form-control::-webkit-date-and-time-value, .Newsletter_Unsubscribe .form-group [type=date].form-control::-webkit-date-and-time-value, .Form_Contact .form-group [type=date].form-control::-webkit-date-and-time-value, .Form_FormGenerator .form-group [type=date].form-control::-webkit-date-and-time-value, .Form_Reservation .form-group [type=date].form-control::-webkit-date-and-time-value, .Login_System_Registration .form-group [type=date].form-control::-webkit-date-and-time-value, .Login_System_Deregistration .form-group [type=date].form-control::-webkit-date-and-time-value, .Login_System_Login .form-group [type=date].form-control::-webkit-date-and-time-value, .Lucene_Search .form-group [type=date].form-control::-webkit-date-and-time-value, .Lucene_SearchSmall .form-group [type=date].form-control::-webkit-date-and-time-value, .Addresses_Search .form-group [type=date].form-control::-webkit-date-and-time-value, .Addresses_SearchMaps .form-group [type=date].form-control::-webkit-date-and-time-value, .Community_Guestbook .form-group [type=date].form-control::-webkit-date-and-time-value, .Special_Club_Search .form-group [type=date].form-control::-webkit-date-and-time-value, .Special_Condolence_CondolenceBook .form-group [type=date].form-control::-webkit-date-and-time-value, .Special_Condolence .form-group [type=date].form-control::-webkit-date-and-time-value, .Special_Calendar .form-group [type=date].form-control::-webkit-date-and-time-value {
    text-align: left;
  }
}
.variant-01 .form-group .checkbox .control-label > p, .module-style__company-history .form-group .checkbox .control-label > p, .module-style__teaser-contact .form-group .checkbox .control-label > p, .pagination .form-group .checkbox .control-label > p, .Special_ChangingContents .form-group .checkbox .control-label > p, .Special_ContactPerson .form-group .checkbox .control-label > p, .Newsletter_Subscribe .form-group .checkbox .control-label > p, .Newsletter_Unsubscribe .form-group .checkbox .control-label > p, .Form_Contact .form-group .checkbox .control-label > p, .Form_FormGenerator .form-group .checkbox .control-label > p, .Form_Reservation .form-group .checkbox .control-label > p, .Login_System_Registration .form-group .checkbox .control-label > p, .Login_System_Deregistration .form-group .checkbox .control-label > p, .Login_System_Login .form-group .checkbox .control-label > p, .Lucene_Search .form-group .checkbox .control-label > p, .Lucene_SearchSmall .form-group .checkbox .control-label > p, .Addresses_Search .form-group .checkbox .control-label > p, .Addresses_SearchMaps .form-group .checkbox .control-label > p, .Community_Guestbook .form-group .checkbox .control-label > p, .Special_Club_Search .form-group .checkbox .control-label > p, .Special_Condolence_CondolenceBook .form-group .checkbox .control-label > p, .Special_Condolence .form-group .checkbox .control-label > p, .Special_Calendar .form-group .checkbox .control-label > p {
  font-weight: 400;
}
.variant-01 .form-group .grouped-elements label, .module-style__company-history .form-group .grouped-elements label, .module-style__teaser-contact .form-group .grouped-elements label, .pagination .form-group .grouped-elements label, .Special_ChangingContents .form-group .grouped-elements label, .Special_ContactPerson .form-group .grouped-elements label, .Newsletter_Subscribe .form-group .grouped-elements label, .Newsletter_Unsubscribe .form-group .grouped-elements label, .Form_Contact .form-group .grouped-elements label, .Form_FormGenerator .form-group .grouped-elements label, .Form_Reservation .form-group .grouped-elements label, .Login_System_Registration .form-group .grouped-elements label, .Login_System_Deregistration .form-group .grouped-elements label, .Login_System_Login .form-group .grouped-elements label, .Lucene_Search .form-group .grouped-elements label, .Lucene_SearchSmall .form-group .grouped-elements label, .Addresses_Search .form-group .grouped-elements label, .Addresses_SearchMaps .form-group .grouped-elements label, .Community_Guestbook .form-group .grouped-elements label, .Special_Club_Search .form-group .grouped-elements label, .Special_Condolence_CondolenceBook .form-group .grouped-elements label, .Special_Condolence .form-group .grouped-elements label, .Special_Calendar .form-group .grouped-elements label, .variant-01 .form-group .grouped-elements .control-label, .module-style__company-history .form-group .grouped-elements .control-label, .module-style__teaser-contact .form-group .grouped-elements .control-label, .pagination .form-group .grouped-elements .control-label, .Special_ChangingContents .form-group .grouped-elements .control-label, .Special_ContactPerson .form-group .grouped-elements .control-label, .Newsletter_Subscribe .form-group .grouped-elements .control-label, .Newsletter_Unsubscribe .form-group .grouped-elements .control-label, .Form_Contact .form-group .grouped-elements .control-label, .Form_FormGenerator .form-group .grouped-elements .control-label, .Form_Reservation .form-group .grouped-elements .control-label, .Login_System_Registration .form-group .grouped-elements .control-label, .Login_System_Deregistration .form-group .grouped-elements .control-label, .Login_System_Login .form-group .grouped-elements .control-label, .Lucene_Search .form-group .grouped-elements .control-label, .Lucene_SearchSmall .form-group .grouped-elements .control-label, .Addresses_Search .form-group .grouped-elements .control-label, .Addresses_SearchMaps .form-group .grouped-elements .control-label, .Community_Guestbook .form-group .grouped-elements .control-label, .Special_Club_Search .form-group .grouped-elements .control-label, .Special_Condolence_CondolenceBook .form-group .grouped-elements .control-label, .Special_Condolence .form-group .grouped-elements .control-label, .Special_Calendar .form-group .grouped-elements .control-label, .variant-01 .form-group .radio label, .module-style__company-history .form-group .radio label, .module-style__teaser-contact .form-group .radio label, .pagination .form-group .radio label, .Special_ChangingContents .form-group .radio label, .Special_ContactPerson .form-group .radio label, .Newsletter_Subscribe .form-group .radio label, .Newsletter_Unsubscribe .form-group .radio label, .Form_Contact .form-group .radio label, .Form_FormGenerator .form-group .radio label, .Form_Reservation .form-group .radio label, .Login_System_Registration .form-group .radio label, .Login_System_Deregistration .form-group .radio label, .Login_System_Login .form-group .radio label, .Lucene_Search .form-group .radio label, .Lucene_SearchSmall .form-group .radio label, .Addresses_Search .form-group .radio label, .Addresses_SearchMaps .form-group .radio label, .Community_Guestbook .form-group .radio label, .Special_Club_Search .form-group .radio label, .Special_Condolence_CondolenceBook .form-group .radio label, .Special_Condolence .form-group .radio label, .Special_Calendar .form-group .radio label, .variant-01 .form-group .radio .control-label, .module-style__company-history .form-group .radio .control-label, .module-style__teaser-contact .form-group .radio .control-label, .pagination .form-group .radio .control-label, .Special_ChangingContents .form-group .radio .control-label, .Special_ContactPerson .form-group .radio .control-label, .Newsletter_Subscribe .form-group .radio .control-label, .Newsletter_Unsubscribe .form-group .radio .control-label, .Form_Contact .form-group .radio .control-label, .Form_FormGenerator .form-group .radio .control-label, .Form_Reservation .form-group .radio .control-label, .Login_System_Registration .form-group .radio .control-label, .Login_System_Deregistration .form-group .radio .control-label, .Login_System_Login .form-group .radio .control-label, .Lucene_Search .form-group .radio .control-label, .Lucene_SearchSmall .form-group .radio .control-label, .Addresses_Search .form-group .radio .control-label, .Addresses_SearchMaps .form-group .radio .control-label, .Community_Guestbook .form-group .radio .control-label, .Special_Club_Search .form-group .radio .control-label, .Special_Condolence_CondolenceBook .form-group .radio .control-label, .Special_Condolence .form-group .radio .control-label, .Special_Calendar .form-group .radio .control-label, .variant-01 .form-group .checkbox label, .module-style__company-history .form-group .checkbox label, .module-style__teaser-contact .form-group .checkbox label, .pagination .form-group .checkbox label, .Special_ChangingContents .form-group .checkbox label, .Special_ContactPerson .form-group .checkbox label, .Newsletter_Subscribe .form-group .checkbox label, .Newsletter_Unsubscribe .form-group .checkbox label, .Form_Contact .form-group .checkbox label, .Form_FormGenerator .form-group .checkbox label, .Form_Reservation .form-group .checkbox label, .Login_System_Registration .form-group .checkbox label, .Login_System_Deregistration .form-group .checkbox label, .Login_System_Login .form-group .checkbox label, .Lucene_Search .form-group .checkbox label, .Lucene_SearchSmall .form-group .checkbox label, .Addresses_Search .form-group .checkbox label, .Addresses_SearchMaps .form-group .checkbox label, .Community_Guestbook .form-group .checkbox label, .Special_Club_Search .form-group .checkbox label, .Special_Condolence_CondolenceBook .form-group .checkbox label, .Special_Condolence .form-group .checkbox label, .Special_Calendar .form-group .checkbox label, .variant-01 .form-group .checkbox .control-label, .module-style__company-history .form-group .checkbox .control-label, .module-style__teaser-contact .form-group .checkbox .control-label, .pagination .form-group .checkbox .control-label, .Special_ChangingContents .form-group .checkbox .control-label, .Special_ContactPerson .form-group .checkbox .control-label, .Newsletter_Subscribe .form-group .checkbox .control-label, .Newsletter_Unsubscribe .form-group .checkbox .control-label, .Form_Contact .form-group .checkbox .control-label, .Form_FormGenerator .form-group .checkbox .control-label, .Form_Reservation .form-group .checkbox .control-label, .Login_System_Registration .form-group .checkbox .control-label, .Login_System_Deregistration .form-group .checkbox .control-label, .Login_System_Login .form-group .checkbox .control-label, .Lucene_Search .form-group .checkbox .control-label, .Lucene_SearchSmall .form-group .checkbox .control-label, .Addresses_Search .form-group .checkbox .control-label, .Addresses_SearchMaps .form-group .checkbox .control-label, .Community_Guestbook .form-group .checkbox .control-label, .Special_Club_Search .form-group .checkbox .control-label, .Special_Condolence_CondolenceBook .form-group .checkbox .control-label, .Special_Condolence .form-group .checkbox .control-label, .Special_Calendar .form-group .checkbox .control-label {
  font-weight: 400;
}
.variant-01 .form-group.captcha-element .g-recaptcha > div, .module-style__company-history .form-group.captcha-element .g-recaptcha > div, .module-style__teaser-contact .form-group.captcha-element .g-recaptcha > div, .pagination .form-group.captcha-element .g-recaptcha > div, .Special_ChangingContents .form-group.captcha-element .g-recaptcha > div, .Special_ContactPerson .form-group.captcha-element .g-recaptcha > div, .Newsletter_Subscribe .form-group.captcha-element .g-recaptcha > div, .Newsletter_Unsubscribe .form-group.captcha-element .g-recaptcha > div, .Form_Contact .form-group.captcha-element .g-recaptcha > div, .Form_FormGenerator .form-group.captcha-element .g-recaptcha > div, .Form_Reservation .form-group.captcha-element .g-recaptcha > div, .Login_System_Registration .form-group.captcha-element .g-recaptcha > div, .Login_System_Deregistration .form-group.captcha-element .g-recaptcha > div, .Login_System_Login .form-group.captcha-element .g-recaptcha > div, .Lucene_Search .form-group.captcha-element .g-recaptcha > div, .Lucene_SearchSmall .form-group.captcha-element .g-recaptcha > div, .Addresses_Search .form-group.captcha-element .g-recaptcha > div, .Addresses_SearchMaps .form-group.captcha-element .g-recaptcha > div, .Community_Guestbook .form-group.captcha-element .g-recaptcha > div, .Special_Club_Search .form-group.captcha-element .g-recaptcha > div, .Special_Condolence_CondolenceBook .form-group.captcha-element .g-recaptcha > div, .Special_Condolence .form-group.captcha-element .g-recaptcha > div, .Special_Calendar .form-group.captcha-element .g-recaptcha > div {
  margin: 0;
}
.variant-01 .form-group.submit-element a.btn-default, .module-style__company-history .form-group.submit-element a.btn-default, .module-style__teaser-contact .form-group.submit-element a.btn-default, .pagination .form-group.submit-element a.btn-default, .Special_ChangingContents .form-group.submit-element a.btn-default, .Special_ContactPerson .form-group.submit-element a.btn-default, .Newsletter_Subscribe .form-group.submit-element a.btn-default, .Newsletter_Unsubscribe .form-group.submit-element a.btn-default, .Form_Contact .form-group.submit-element a.btn-default, .Form_FormGenerator .form-group.submit-element a.btn-default, .Form_Reservation .form-group.submit-element a.btn-default, .Login_System_Registration .form-group.submit-element a.btn-default, .Login_System_Deregistration .form-group.submit-element a.btn-default, .Login_System_Login .form-group.submit-element a.btn-default, .Lucene_Search .form-group.submit-element a.btn-default, .Lucene_SearchSmall .form-group.submit-element a.btn-default, .Addresses_Search .form-group.submit-element a.btn-default, .Addresses_SearchMaps .form-group.submit-element a.btn-default, .Community_Guestbook .form-group.submit-element a.btn-default, .Special_Club_Search .form-group.submit-element a.btn-default, .Special_Condolence_CondolenceBook .form-group.submit-element a.btn-default, .Special_Condolence .form-group.submit-element a.btn-default, .Special_Calendar .form-group.submit-element a.btn-default, .variant-01 .form-group.submit-element .btn-default, .module-style__company-history .form-group.submit-element .btn-default, .module-style__teaser-contact .form-group.submit-element .btn-default, .pagination .form-group.submit-element .btn-default, .Special_ChangingContents .form-group.submit-element .btn-default, .Special_ContactPerson .form-group.submit-element .btn-default, .Newsletter_Subscribe .form-group.submit-element .btn-default, .Newsletter_Unsubscribe .form-group.submit-element .btn-default, .Form_Contact .form-group.submit-element .btn-default, .Form_FormGenerator .form-group.submit-element .btn-default, .Form_Reservation .form-group.submit-element .btn-default, .Login_System_Registration .form-group.submit-element .btn-default, .Login_System_Deregistration .form-group.submit-element .btn-default, .Login_System_Login .form-group.submit-element .btn-default, .Lucene_Search .form-group.submit-element .btn-default, .Lucene_SearchSmall .form-group.submit-element .btn-default, .Addresses_Search .form-group.submit-element .btn-default, .Addresses_SearchMaps .form-group.submit-element .btn-default, .Community_Guestbook .form-group.submit-element .btn-default, .Special_Club_Search .form-group.submit-element .btn-default, .Special_Condolence_CondolenceBook .form-group.submit-element .btn-default, .Special_Condolence .form-group.submit-element .btn-default, .Special_Calendar .form-group.submit-element .btn-default, .variant-01 .form-group.submit-element a.btn-primary, .module-style__company-history .form-group.submit-element a.btn-primary, .module-style__teaser-contact .form-group.submit-element a.btn-primary, .pagination .form-group.submit-element a.btn-primary, .Special_ChangingContents .form-group.submit-element a.btn-primary, .Special_ContactPerson .form-group.submit-element a.btn-primary, .Newsletter_Subscribe .form-group.submit-element a.btn-primary, .Newsletter_Unsubscribe .form-group.submit-element a.btn-primary, .Form_Contact .form-group.submit-element a.btn-primary, .Form_FormGenerator .form-group.submit-element a.btn-primary, .Form_Reservation .form-group.submit-element a.btn-primary, .Login_System_Registration .form-group.submit-element a.btn-primary, .Login_System_Deregistration .form-group.submit-element a.btn-primary, .Login_System_Login .form-group.submit-element a.btn-primary, .Lucene_Search .form-group.submit-element a.btn-primary, .Lucene_SearchSmall .form-group.submit-element a.btn-primary, .Addresses_Search .form-group.submit-element a.btn-primary, .Addresses_SearchMaps .form-group.submit-element a.btn-primary, .Community_Guestbook .form-group.submit-element a.btn-primary, .Special_Club_Search .form-group.submit-element a.btn-primary, .Special_Condolence_CondolenceBook .form-group.submit-element a.btn-primary, .Special_Condolence .form-group.submit-element a.btn-primary, .Special_Calendar .form-group.submit-element a.btn-primary, .variant-01 .form-group.submit-element .btn-primary, .module-style__company-history .form-group.submit-element .btn-primary, .module-style__teaser-contact .form-group.submit-element .btn-primary, .pagination .form-group.submit-element .btn-primary, .Special_ChangingContents .form-group.submit-element .btn-primary, .Special_ContactPerson .form-group.submit-element .btn-primary, .Newsletter_Subscribe .form-group.submit-element .btn-primary, .Newsletter_Unsubscribe .form-group.submit-element .btn-primary, .Form_Contact .form-group.submit-element .btn-primary, .Form_FormGenerator .form-group.submit-element .btn-primary, .Form_Reservation .form-group.submit-element .btn-primary, .Login_System_Registration .form-group.submit-element .btn-primary, .Login_System_Deregistration .form-group.submit-element .btn-primary, .Login_System_Login .form-group.submit-element .btn-primary, .Lucene_Search .form-group.submit-element .btn-primary, .Lucene_SearchSmall .form-group.submit-element .btn-primary, .Addresses_Search .form-group.submit-element .btn-primary, .Addresses_SearchMaps .form-group.submit-element .btn-primary, .Community_Guestbook .form-group.submit-element .btn-primary, .Special_Club_Search .form-group.submit-element .btn-primary, .Special_Condolence_CondolenceBook .form-group.submit-element .btn-primary, .Special_Condolence .form-group.submit-element .btn-primary, .Special_Calendar .form-group.submit-element .btn-primary, .variant-01 .form-group.submit-element a.btn-custom, .module-style__company-history .form-group.submit-element a.btn-custom, .module-style__teaser-contact .form-group.submit-element a.btn-custom, .pagination .form-group.submit-element a.btn-custom, .Special_ChangingContents .form-group.submit-element a.btn-custom, .Special_ContactPerson .form-group.submit-element a.btn-custom, .Newsletter_Subscribe .form-group.submit-element a.btn-custom, .Newsletter_Unsubscribe .form-group.submit-element a.btn-custom, .Form_Contact .form-group.submit-element a.btn-custom, .Form_FormGenerator .form-group.submit-element a.btn-custom, .Form_Reservation .form-group.submit-element a.btn-custom, .Login_System_Registration .form-group.submit-element a.btn-custom, .Login_System_Deregistration .form-group.submit-element a.btn-custom, .Login_System_Login .form-group.submit-element a.btn-custom, .Lucene_Search .form-group.submit-element a.btn-custom, .Lucene_SearchSmall .form-group.submit-element a.btn-custom, .Addresses_Search .form-group.submit-element a.btn-custom, .Addresses_SearchMaps .form-group.submit-element a.btn-custom, .Community_Guestbook .form-group.submit-element a.btn-custom, .Special_Club_Search .form-group.submit-element a.btn-custom, .Special_Condolence_CondolenceBook .form-group.submit-element a.btn-custom, .Special_Condolence .form-group.submit-element a.btn-custom, .Special_Calendar .form-group.submit-element a.btn-custom, .variant-01 .form-group.submit-element .btn-custom, .module-style__company-history .form-group.submit-element .btn-custom, .module-style__teaser-contact .form-group.submit-element .btn-custom, .pagination .form-group.submit-element .btn-custom, .Special_ChangingContents .form-group.submit-element .btn-custom, .Special_ContactPerson .form-group.submit-element .btn-custom, .Newsletter_Subscribe .form-group.submit-element .btn-custom, .Newsletter_Unsubscribe .form-group.submit-element .btn-custom, .Form_Contact .form-group.submit-element .btn-custom, .Form_FormGenerator .form-group.submit-element .btn-custom, .Form_Reservation .form-group.submit-element .btn-custom, .Login_System_Registration .form-group.submit-element .btn-custom, .Login_System_Deregistration .form-group.submit-element .btn-custom, .Login_System_Login .form-group.submit-element .btn-custom, .Lucene_Search .form-group.submit-element .btn-custom, .Lucene_SearchSmall .form-group.submit-element .btn-custom, .Addresses_Search .form-group.submit-element .btn-custom, .Addresses_SearchMaps .form-group.submit-element .btn-custom, .Community_Guestbook .form-group.submit-element .btn-custom, .Special_Club_Search .form-group.submit-element .btn-custom, .Special_Condolence_CondolenceBook .form-group.submit-element .btn-custom, .Special_Condolence .form-group.submit-element .btn-custom, .Special_Calendar .form-group.submit-element .btn-custom {
  background: #3fbfe5;
  border-color: #3fbfe5;
  color: #fff;
}
.variant-01 .form-group.submit-element a.btn-default:hover, .module-style__company-history .form-group.submit-element a.btn-default:hover, .module-style__teaser-contact .form-group.submit-element a.btn-default:hover, .pagination .form-group.submit-element a.btn-default:hover, .Special_ChangingContents .form-group.submit-element a.btn-default:hover, .Special_ContactPerson .form-group.submit-element a.btn-default:hover, .Newsletter_Subscribe .form-group.submit-element a.btn-default:hover, .Newsletter_Unsubscribe .form-group.submit-element a.btn-default:hover, .Form_Contact .form-group.submit-element a.btn-default:hover, .Form_FormGenerator .form-group.submit-element a.btn-default:hover, .Form_Reservation .form-group.submit-element a.btn-default:hover, .Login_System_Registration .form-group.submit-element a.btn-default:hover, .Login_System_Deregistration .form-group.submit-element a.btn-default:hover, .Login_System_Login .form-group.submit-element a.btn-default:hover, .Lucene_Search .form-group.submit-element a.btn-default:hover, .Lucene_SearchSmall .form-group.submit-element a.btn-default:hover, .Addresses_Search .form-group.submit-element a.btn-default:hover, .Addresses_SearchMaps .form-group.submit-element a.btn-default:hover, .Community_Guestbook .form-group.submit-element a.btn-default:hover, .Special_Club_Search .form-group.submit-element a.btn-default:hover, .Special_Condolence_CondolenceBook .form-group.submit-element a.btn-default:hover, .Special_Condolence .form-group.submit-element a.btn-default:hover, .Special_Calendar .form-group.submit-element a.btn-default:hover, .variant-01 .form-group.submit-element .btn-default:hover, .module-style__company-history .form-group.submit-element .btn-default:hover, .module-style__teaser-contact .form-group.submit-element .btn-default:hover, .pagination .form-group.submit-element .btn-default:hover, .Special_ChangingContents .form-group.submit-element .btn-default:hover, .Special_ContactPerson .form-group.submit-element .btn-default:hover, .Newsletter_Subscribe .form-group.submit-element .btn-default:hover, .Newsletter_Unsubscribe .form-group.submit-element .btn-default:hover, .Form_Contact .form-group.submit-element .btn-default:hover, .Form_FormGenerator .form-group.submit-element .btn-default:hover, .Form_Reservation .form-group.submit-element .btn-default:hover, .Login_System_Registration .form-group.submit-element .btn-default:hover, .Login_System_Deregistration .form-group.submit-element .btn-default:hover, .Login_System_Login .form-group.submit-element .btn-default:hover, .Lucene_Search .form-group.submit-element .btn-default:hover, .Lucene_SearchSmall .form-group.submit-element .btn-default:hover, .Addresses_Search .form-group.submit-element .btn-default:hover, .Addresses_SearchMaps .form-group.submit-element .btn-default:hover, .Community_Guestbook .form-group.submit-element .btn-default:hover, .Special_Club_Search .form-group.submit-element .btn-default:hover, .Special_Condolence_CondolenceBook .form-group.submit-element .btn-default:hover, .Special_Condolence .form-group.submit-element .btn-default:hover, .Special_Calendar .form-group.submit-element .btn-default:hover, .variant-01 .form-group.submit-element a.btn-primary:hover, .module-style__company-history .form-group.submit-element a.btn-primary:hover, .module-style__teaser-contact .form-group.submit-element a.btn-primary:hover, .pagination .form-group.submit-element a.btn-primary:hover, .Special_ChangingContents .form-group.submit-element a.btn-primary:hover, .Special_ContactPerson .form-group.submit-element a.btn-primary:hover, .Newsletter_Subscribe .form-group.submit-element a.btn-primary:hover, .Newsletter_Unsubscribe .form-group.submit-element a.btn-primary:hover, .Form_Contact .form-group.submit-element a.btn-primary:hover, .Form_FormGenerator .form-group.submit-element a.btn-primary:hover, .Form_Reservation .form-group.submit-element a.btn-primary:hover, .Login_System_Registration .form-group.submit-element a.btn-primary:hover, .Login_System_Deregistration .form-group.submit-element a.btn-primary:hover, .Login_System_Login .form-group.submit-element a.btn-primary:hover, .Lucene_Search .form-group.submit-element a.btn-primary:hover, .Lucene_SearchSmall .form-group.submit-element a.btn-primary:hover, .Addresses_Search .form-group.submit-element a.btn-primary:hover, .Addresses_SearchMaps .form-group.submit-element a.btn-primary:hover, .Community_Guestbook .form-group.submit-element a.btn-primary:hover, .Special_Club_Search .form-group.submit-element a.btn-primary:hover, .Special_Condolence_CondolenceBook .form-group.submit-element a.btn-primary:hover, .Special_Condolence .form-group.submit-element a.btn-primary:hover, .Special_Calendar .form-group.submit-element a.btn-primary:hover, .variant-01 .form-group.submit-element .btn-primary:hover, .module-style__company-history .form-group.submit-element .btn-primary:hover, .module-style__teaser-contact .form-group.submit-element .btn-primary:hover, .pagination .form-group.submit-element .btn-primary:hover, .Special_ChangingContents .form-group.submit-element .btn-primary:hover, .Special_ContactPerson .form-group.submit-element .btn-primary:hover, .Newsletter_Subscribe .form-group.submit-element .btn-primary:hover, .Newsletter_Unsubscribe .form-group.submit-element .btn-primary:hover, .Form_Contact .form-group.submit-element .btn-primary:hover, .Form_FormGenerator .form-group.submit-element .btn-primary:hover, .Form_Reservation .form-group.submit-element .btn-primary:hover, .Login_System_Registration .form-group.submit-element .btn-primary:hover, .Login_System_Deregistration .form-group.submit-element .btn-primary:hover, .Login_System_Login .form-group.submit-element .btn-primary:hover, .Lucene_Search .form-group.submit-element .btn-primary:hover, .Lucene_SearchSmall .form-group.submit-element .btn-primary:hover, .Addresses_Search .form-group.submit-element .btn-primary:hover, .Addresses_SearchMaps .form-group.submit-element .btn-primary:hover, .Community_Guestbook .form-group.submit-element .btn-primary:hover, .Special_Club_Search .form-group.submit-element .btn-primary:hover, .Special_Condolence_CondolenceBook .form-group.submit-element .btn-primary:hover, .Special_Condolence .form-group.submit-element .btn-primary:hover, .Special_Calendar .form-group.submit-element .btn-primary:hover, .variant-01 .form-group.submit-element a.btn-custom:hover, .module-style__company-history .form-group.submit-element a.btn-custom:hover, .module-style__teaser-contact .form-group.submit-element a.btn-custom:hover, .pagination .form-group.submit-element a.btn-custom:hover, .Special_ChangingContents .form-group.submit-element a.btn-custom:hover, .Special_ContactPerson .form-group.submit-element a.btn-custom:hover, .Newsletter_Subscribe .form-group.submit-element a.btn-custom:hover, .Newsletter_Unsubscribe .form-group.submit-element a.btn-custom:hover, .Form_Contact .form-group.submit-element a.btn-custom:hover, .Form_FormGenerator .form-group.submit-element a.btn-custom:hover, .Form_Reservation .form-group.submit-element a.btn-custom:hover, .Login_System_Registration .form-group.submit-element a.btn-custom:hover, .Login_System_Deregistration .form-group.submit-element a.btn-custom:hover, .Login_System_Login .form-group.submit-element a.btn-custom:hover, .Lucene_Search .form-group.submit-element a.btn-custom:hover, .Lucene_SearchSmall .form-group.submit-element a.btn-custom:hover, .Addresses_Search .form-group.submit-element a.btn-custom:hover, .Addresses_SearchMaps .form-group.submit-element a.btn-custom:hover, .Community_Guestbook .form-group.submit-element a.btn-custom:hover, .Special_Club_Search .form-group.submit-element a.btn-custom:hover, .Special_Condolence_CondolenceBook .form-group.submit-element a.btn-custom:hover, .Special_Condolence .form-group.submit-element a.btn-custom:hover, .Special_Calendar .form-group.submit-element a.btn-custom:hover, .variant-01 .form-group.submit-element .btn-custom:hover, .module-style__company-history .form-group.submit-element .btn-custom:hover, .module-style__teaser-contact .form-group.submit-element .btn-custom:hover, .pagination .form-group.submit-element .btn-custom:hover, .Special_ChangingContents .form-group.submit-element .btn-custom:hover, .Special_ContactPerson .form-group.submit-element .btn-custom:hover, .Newsletter_Subscribe .form-group.submit-element .btn-custom:hover, .Newsletter_Unsubscribe .form-group.submit-element .btn-custom:hover, .Form_Contact .form-group.submit-element .btn-custom:hover, .Form_FormGenerator .form-group.submit-element .btn-custom:hover, .Form_Reservation .form-group.submit-element .btn-custom:hover, .Login_System_Registration .form-group.submit-element .btn-custom:hover, .Login_System_Deregistration .form-group.submit-element .btn-custom:hover, .Login_System_Login .form-group.submit-element .btn-custom:hover, .Lucene_Search .form-group.submit-element .btn-custom:hover, .Lucene_SearchSmall .form-group.submit-element .btn-custom:hover, .Addresses_Search .form-group.submit-element .btn-custom:hover, .Addresses_SearchMaps .form-group.submit-element .btn-custom:hover, .Community_Guestbook .form-group.submit-element .btn-custom:hover, .Special_Club_Search .form-group.submit-element .btn-custom:hover, .Special_Condolence_CondolenceBook .form-group.submit-element .btn-custom:hover, .Special_Condolence .form-group.submit-element .btn-custom:hover, .Special_Calendar .form-group.submit-element .btn-custom:hover {
  background: #1daad4;
  border-color: #1daad4;
}
.variant-01 .form-group.has-error .form-control[aria-invalid=true], .module-style__company-history .form-group.has-error .form-control[aria-invalid=true], .module-style__teaser-contact .form-group.has-error .form-control[aria-invalid=true], .pagination .form-group.has-error .form-control[aria-invalid=true], .Special_ChangingContents .form-group.has-error .form-control[aria-invalid=true], .Special_ContactPerson .form-group.has-error .form-control[aria-invalid=true], .Newsletter_Subscribe .form-group.has-error .form-control[aria-invalid=true], .Newsletter_Unsubscribe .form-group.has-error .form-control[aria-invalid=true], .Form_Contact .form-group.has-error .form-control[aria-invalid=true], .Form_FormGenerator .form-group.has-error .form-control[aria-invalid=true], .Form_Reservation .form-group.has-error .form-control[aria-invalid=true], .Login_System_Registration .form-group.has-error .form-control[aria-invalid=true], .Login_System_Deregistration .form-group.has-error .form-control[aria-invalid=true], .Login_System_Login .form-group.has-error .form-control[aria-invalid=true], .Lucene_Search .form-group.has-error .form-control[aria-invalid=true], .Lucene_SearchSmall .form-group.has-error .form-control[aria-invalid=true], .Addresses_Search .form-group.has-error .form-control[aria-invalid=true], .Addresses_SearchMaps .form-group.has-error .form-control[aria-invalid=true], .Community_Guestbook .form-group.has-error .form-control[aria-invalid=true], .Special_Club_Search .form-group.has-error .form-control[aria-invalid=true], .Special_Condolence_CondolenceBook .form-group.has-error .form-control[aria-invalid=true], .Special_Condolence .form-group.has-error .form-control[aria-invalid=true], .Special_Calendar .form-group.has-error .form-control[aria-invalid=true] {
  border: 1px solid #9a1010;
}
.variant-01 ul.form-errors, .module-style__company-history ul.form-errors, .module-style__teaser-contact ul.form-errors, .pagination ul.form-errors, .Special_ChangingContents ul.form-errors, .Special_ContactPerson ul.form-errors, .Newsletter_Subscribe ul.form-errors, .Newsletter_Unsubscribe ul.form-errors, .Form_Contact ul.form-errors, .Form_FormGenerator ul.form-errors, .Form_Reservation ul.form-errors, .Login_System_Registration ul.form-errors, .Login_System_Deregistration ul.form-errors, .Login_System_Login ul.form-errors, .Lucene_Search ul.form-errors, .Lucene_SearchSmall ul.form-errors, .Addresses_Search ul.form-errors, .Addresses_SearchMaps ul.form-errors, .Community_Guestbook ul.form-errors, .Special_Club_Search ul.form-errors, .Special_Condolence_CondolenceBook ul.form-errors, .Special_Condolence ul.form-errors, .Special_Calendar ul.form-errors {
  text-align: left;
  list-style-type: decimal;
}
.variant-01.Form_Reservation .reservation-general-description div.checkbox, .Form_Reservation .reservation-general-description div.checkbox {
  padding: 0 15px;
  background: transparent;
  border: none;
}

.module-style__headline-center .headline1, .module-style__headline-center .headline2, .module-style__headline-center .headline3, .module-style__headline-center .headline4 {
  text-align: center;
}

.module-style__list-icon .text-wrapper ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.module-style__list-icon .text-wrapper ul li:before {
  content: "\f105";
  font: normal normal normal 14px/1 FontAwesome;
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  margin-right: 10px;
}
.module-style__list-icon .text-wrapper ul li:after {
  content: none;
}

.pagination > li {
  display: inline-block;
  float: left;
  margin-right: 2px;
}
.pagination > li > span {
  padding: 5px 10px;
  font-size: 0.9rem;
  display: block;
}
.pagination > li > a {
  display: block;
  font-size: 0.9rem;
  padding: 5px 10px;
  border: 0;
  min-width: 35px;
  text-align: center;
  background-color: #3fbfe5;
  color: #fff;
  border-radius: 5px;
  -webkit-transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.pagination > li > a:hover, .pagination > li > a:focus {
  background-color: #1daad4;
  color: #fff;
  -webkit-transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.pagination > li.disabled > span {
  background-color: #95c11f;
  border: 0;
  min-width: 35px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  opacity: 0.1;
}
.pagination > li.disabled > span:hover, .pagination > li.disabled > span:focus {
  background-color: #95c11f;
  border: 0;
  color: #fff;
  opacity: 0.1;
}
.pagination > li.active > span {
  background-color: #95c11f;
  border: 0;
  min-width: 35px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  -webkit-transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.pagination > li.active > span:hover, .pagination > li.active > span:focus {
  background-color: #739518;
  color: #fff;
  -webkit-transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.pagination > li > a[rel~=first], .pagination > li > a[rel~=prev], .pagination > li > a[rel~=last], .pagination > li > a[rel~=next] {
  background-color: #444;
  color: #fff;
  border-radius: 5px;
  border: 0;
  min-width: 35px;
  text-align: center;
  opacity: 0.3;
}
.pagination > li > a[rel~=first]:hover, .pagination > li > a[rel~=first]:focus, .pagination > li > a[rel~=prev]:hover, .pagination > li > a[rel~=prev]:focus, .pagination > li > a[rel~=last]:hover, .pagination > li > a[rel~=last]:focus, .pagination > li > a[rel~=next]:hover, .pagination > li > a[rel~=next]:focus {
  opacity: 1;
  -webkit-transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.pagination > li:last-child {
  margin-right: 0;
}
.pagination .amphiicon {
  font-size: 0.9rem;
}

.pagination > li {
  display: inline-block;
  float: left;
  margin-right: 2px;
}
.pagination > li > span {
  padding: 5px 10px;
  font-size: 0.9rem;
  display: block;
}
.pagination > li > a {
  display: block;
  font-size: 0.9rem;
  padding: 5px 10px;
  border: 0;
  min-width: 35px;
  text-align: center;
  background-color: #3fbfe5;
  color: #fff;
  border-radius: 5px;
  -webkit-transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.pagination > li > a:hover, .pagination > li > a:focus {
  background-color: #1daad4;
  color: #fff;
  -webkit-transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.pagination > li.disabled > span {
  background-color: #95c11f;
  border: 0;
  min-width: 35px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  opacity: 0.1;
}
.pagination > li.disabled > span:hover, .pagination > li.disabled > span:focus {
  background-color: #95c11f;
  border: 0;
  color: #fff;
  opacity: 0.1;
}
.pagination > li.active > span {
  background-color: #95c11f;
  border: 0;
  min-width: 35px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  -webkit-transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.pagination > li.active > span:hover, .pagination > li.active > span:focus {
  background-color: #739518;
  color: #fff;
  -webkit-transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.pagination > li > a[rel~=first], .pagination > li > a[rel~=prev], .pagination > li > a[rel~=last], .pagination > li > a[rel~=next] {
  background-color: #444;
  color: #fff;
  border-radius: 5px;
  border: 0;
  min-width: 35px;
  text-align: center;
  opacity: 0.3;
}
.pagination > li > a[rel~=first]:hover, .pagination > li > a[rel~=first]:focus, .pagination > li > a[rel~=prev]:hover, .pagination > li > a[rel~=prev]:focus, .pagination > li > a[rel~=last]:hover, .pagination > li > a[rel~=last]:focus, .pagination > li > a[rel~=next]:hover, .pagination > li > a[rel~=next]:focus {
  opacity: 1;
  -webkit-transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.pagination > li:last-child {
  margin-right: 0;
}
.pagination .amphiicon {
  font-size: 0.9rem;
}

.module-style__remove-image-margin .module-content-block {
  padding: 25px;
}
.module-style__remove-image-margin .module-content-block .thumbnail {
  margin: -25px -25px 25px -25px;
}
.module-style__remove-image-margin.Special_ChangingContents .category-elements .module-content-block {
  padding: 25px;
}
.module-style__remove-image-margin.Special_ChangingContents .category-elements .module-content-block .headline-wrapper + .thumbnail {
  margin: 25px -25px 25px -25px;
}
.module-style__remove-image-margin.template-headline-on-image .module-content-block > div:last-child {
  padding: 0;
}
.module-style__remove-image-margin.template-headline-on-image .module-content-block .headline-wrapper {
  left: -25px;
  right: -25px;
}

.module-style__rounded-images .module-content-block .thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 100%;
  overflow: hidden;
}
.module-style__rounded-images .module-content-block .thumbnail img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.module-style__rounded-images.Gallery_Album .thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 100%;
  overflow: hidden;
}
.module-style__rounded-images.Gallery_Album .thumbnail img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.module-style__rounded-images.module-style__remove-image-margin .module-content-block .thumbnail {
  width: calc(100% + 50px);
  padding-bottom: calc(100% + 50px);
}

.module-style__smaller-module-wrapper {
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.module-style__teaser-contact.variant-01 .module-content-block .thumbnail, .module-style__teaser-contact .module-content-block .thumbnail {
  margin: 0;
}
.module-style__teaser-contact.variant-01 .module-content-block .thumbnail img, .module-style__teaser-contact .module-content-block .thumbnail img {
  width: 100%;
  max-width: 300px;
  border-radius: 100%;
}
.module-style__teaser-contact.variant-01 .module-content-block .thumbnail .caption, .module-style__teaser-contact .module-content-block .thumbnail .caption {
  text-align: center;
}
.module-style__teaser-contact.variant-01 .module-content-block .text-wrapper .amphiicon, .module-style__teaser-contact .module-content-block .text-wrapper .amphiicon {
  position: relative;
  top: 5px;
  background: #3fbfe5;
  border-radius: 100%;
  text-align: center;
  width: 35px;
  height: 35px;
  font-size: 1rem;
}
.module-style__teaser-contact.variant-01 .module-content-block .text-wrapper .amphiicon:before, .module-style__teaser-contact .module-content-block .text-wrapper .amphiicon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
}
.module-style__teaser-contact.variant-01 .module-content-block > .row.hidden-xs, .module-style__teaser-contact .module-content-block > .row.hidden-xs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.module-style__teaser-contact.variant-01 .module-content-block > .row.visible-xs > [class*=col-], .module-style__teaser-contact .module-content-block > .row.visible-xs > [class*=col-] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft .module-content-block [class*=col-] > .text-wrapper > p {
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft .module-content-block [class*=col-] > .text-wrapper > p > .amphiicon {
  position: absolute;
  top: -3px;
  left: 0;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block [class*=col-] > p, .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block [class*=col-] > p, .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block [class*=col-] > p, .module-style__teaser-contact.Text_TextImageLeft .module-content-block [class*=col-] > p {
  margin: 0;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-], .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-], .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-], .module-style__teaser-contact.Text_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-]:first-child, .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-]:first-child, .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-]:first-child, .module-style__teaser-contact.Text_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-]:first-child {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-right: 30px;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-]:last-child, .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-]:last-child, .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-]:last-child, .module-style__teaser-contact.Text_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-]:last-child {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 30px;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight .module-content-block [class*=col-] > .text-wrapper > p {
  position: relative;
  padding-right: 45px;
  margin-bottom: 15px;
  text-align: right;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight .module-content-block [class*=col-] > .text-wrapper > p > .amphiicon {
  position: absolute;
  top: -3px;
  right: 0;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block [class*=col-] > p, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block [class*=col-] > p, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block [class*=col-] > p, .module-style__teaser-contact.Text_TextImageRight .module-content-block [class*=col-] > p {
  margin: 0;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block > .row.hidden-xs [class*=col-], .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block > .row.hidden-xs [class*=col-], .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block > .row.hidden-xs [class*=col-], .module-style__teaser-contact.Text_TextImageRight .module-content-block > .row.hidden-xs [class*=col-] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block > .row.hidden-xs [class*=col-]:first-child, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block > .row.hidden-xs [class*=col-]:first-child, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block > .row.hidden-xs [class*=col-]:first-child, .module-style__teaser-contact.Text_TextImageRight .module-content-block > .row.hidden-xs [class*=col-]:first-child {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-right: 30px;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block > .row.hidden-xs [class*=col-]:last-child, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block > .row.hidden-xs [class*=col-]:last-child, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block > .row.hidden-xs [class*=col-]:last-child, .module-style__teaser-contact.Text_TextImageRight .module-content-block > .row.hidden-xs [class*=col-]:last-child {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 30px;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p {
  padding-left: 45px;
  padding-right: 0;
  text-align: left;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon {
  left: 0;
  right: auto;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageCenter .module-content-block [class*=col-], .module-style__teaser-contact.Text_Link_TextImageCenter .module-content-block [class*=col-] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageCenter .module-content-block [class*=col-] .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter .module-content-block [class*=col-] .thumbnail {
  margin-bottom: 21px;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageCenter .module-content-block [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter .module-content-block [class*=col-] > .text-wrapper > p {
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageCenter .module-content-block [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter .module-content-block [class*=col-] > .text-wrapper > p > .amphiicon {
  position: absolute;
  top: -3px;
  left: 0;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageCenter .module-content-block [class*=col-] > p, .module-style__teaser-contact.Text_Link_TextImageCenter .module-content-block [class*=col-] > p {
  margin: 0;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.module-style__company-history .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ChangingContents .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ContactPerson .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Subscribe .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Unsubscribe .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Contact .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_FormGenerator .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Reservation .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Registration .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Deregistration .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Login .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_Search .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_SearchSmall .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_Search .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_SearchMaps .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.Community_Guestbook .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Club_Search .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Calendar .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo.pagination .module-content-block, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.module-style__company-history .module-content-block, .module-style__teaser-contact.Text_TextImageTwo .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.Special_ChangingContents .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.Special_ContactPerson .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Subscribe .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Unsubscribe .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.Form_Contact .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.Form_FormGenerator .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.Form_Reservation .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Registration .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Deregistration .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Login .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.Lucene_Search .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.Lucene_SearchSmall .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.Addresses_Search .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.Addresses_SearchMaps .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.Community_Guestbook .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.Special_Club_Search .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.Special_Calendar .module-content-block, .module-style__teaser-contact.Text_TextImageTwo.pagination .module-content-block, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.module-style__company-history .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ChangingContents .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ContactPerson .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Subscribe .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Unsubscribe .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Contact .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.Form_FormGenerator .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Reservation .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Registration .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Deregistration .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Login .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_Search .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_SearchSmall .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_Search .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_SearchMaps .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.Community_Guestbook .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Club_Search .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence_CondolenceBook .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Calendar .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree.pagination .module-content-block, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block, .module-style__teaser-contact.Text_TextImageThree.module-style__company-history .module-content-block, .module-style__teaser-contact.Text_TextImageThree .module-content-block, .module-style__teaser-contact.Text_TextImageThree.Special_ChangingContents .module-content-block, .module-style__teaser-contact.Text_TextImageThree.Special_ContactPerson .module-content-block, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Subscribe .module-content-block, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Unsubscribe .module-content-block, .module-style__teaser-contact.Text_TextImageThree.Form_Contact .module-content-block, .module-style__teaser-contact.Text_TextImageThree.Form_FormGenerator .module-content-block, .module-style__teaser-contact.Text_TextImageThree.Form_Reservation .module-content-block, .module-style__teaser-contact.Text_TextImageThree.Login_System_Registration .module-content-block, .module-style__teaser-contact.Text_TextImageThree.Login_System_Deregistration .module-content-block, .module-style__teaser-contact.Text_TextImageThree.Login_System_Login .module-content-block, .module-style__teaser-contact.Text_TextImageThree.Lucene_Search .module-content-block, .module-style__teaser-contact.Text_TextImageThree.Lucene_SearchSmall .module-content-block, .module-style__teaser-contact.Text_TextImageThree.Addresses_Search .module-content-block, .module-style__teaser-contact.Text_TextImageThree.Addresses_SearchMaps .module-content-block, .module-style__teaser-contact.Text_TextImageThree.Community_Guestbook .module-content-block, .module-style__teaser-contact.Text_TextImageThree.Special_Club_Search .module-content-block, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence_CondolenceBook .module-content-block, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence .module-content-block, .module-style__teaser-contact.Text_TextImageThree.Special_Calendar .module-content-block, .module-style__teaser-contact.Text_TextImageThree.pagination .module-content-block, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.module-style__company-history .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ChangingContents .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ContactPerson .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Subscribe .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Unsubscribe .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Contact .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.Form_FormGenerator .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Reservation .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Registration .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Deregistration .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Login .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_Search .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_SearchSmall .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_Search .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_SearchMaps .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.Community_Guestbook .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Club_Search .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence_CondolenceBook .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Calendar .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour.pagination .module-content-block, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block, .module-style__teaser-contact.Text_TextImageFour.module-style__company-history .module-content-block, .module-style__teaser-contact.Text_TextImageFour .module-content-block, .module-style__teaser-contact.Text_TextImageFour.Special_ChangingContents .module-content-block, .module-style__teaser-contact.Text_TextImageFour.Special_ContactPerson .module-content-block, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Subscribe .module-content-block, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Unsubscribe .module-content-block, .module-style__teaser-contact.Text_TextImageFour.Form_Contact .module-content-block, .module-style__teaser-contact.Text_TextImageFour.Form_FormGenerator .module-content-block, .module-style__teaser-contact.Text_TextImageFour.Form_Reservation .module-content-block, .module-style__teaser-contact.Text_TextImageFour.Login_System_Registration .module-content-block, .module-style__teaser-contact.Text_TextImageFour.Login_System_Deregistration .module-content-block, .module-style__teaser-contact.Text_TextImageFour.Login_System_Login .module-content-block, .module-style__teaser-contact.Text_TextImageFour.Lucene_Search .module-content-block, .module-style__teaser-contact.Text_TextImageFour.Lucene_SearchSmall .module-content-block, .module-style__teaser-contact.Text_TextImageFour.Addresses_Search .module-content-block, .module-style__teaser-contact.Text_TextImageFour.Addresses_SearchMaps .module-content-block, .module-style__teaser-contact.Text_TextImageFour.Community_Guestbook .module-content-block, .module-style__teaser-contact.Text_TextImageFour.Special_Club_Search .module-content-block, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence_CondolenceBook .module-content-block, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence .module-content-block, .module-style__teaser-contact.Text_TextImageFour.Special_Calendar .module-content-block, .module-style__teaser-contact.Text_TextImageFour.pagination .module-content-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.module-style__company-history .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ChangingContents .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ContactPerson .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Subscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Unsubscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Contact .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_FormGenerator .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Reservation .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Registration .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Deregistration .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Login .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_SearchSmall .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_SearchMaps .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Community_Guestbook .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Club_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Calendar .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.pagination .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.module-style__company-history .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Special_ChangingContents .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Special_ContactPerson .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Subscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Unsubscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Form_Contact .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Form_FormGenerator .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Form_Reservation .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Registration .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Deregistration .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Login .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Lucene_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Lucene_SearchSmall .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Addresses_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Addresses_SearchMaps .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Community_Guestbook .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Special_Club_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Special_Calendar .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.pagination .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.module-style__company-history .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ChangingContents .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ContactPerson .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Subscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Unsubscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Contact .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Form_FormGenerator .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Reservation .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Registration .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Deregistration .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Login .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_SearchSmall .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_SearchMaps .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Community_Guestbook .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Club_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence_CondolenceBook .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Calendar .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.pagination .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.module-style__company-history .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Special_ChangingContents .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Special_ContactPerson .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Subscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Unsubscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Form_Contact .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Form_FormGenerator .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Form_Reservation .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Login_System_Registration .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Login_System_Deregistration .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Login_System_Login .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Lucene_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Lucene_SearchSmall .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Addresses_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Addresses_SearchMaps .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Community_Guestbook .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Special_Club_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence_CondolenceBook .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Special_Calendar .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.pagination .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.module-style__company-history .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ChangingContents .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ContactPerson .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Subscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Unsubscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Contact .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Form_FormGenerator .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Reservation .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Registration .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Deregistration .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Login .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_SearchSmall .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_SearchMaps .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Community_Guestbook .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Club_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence_CondolenceBook .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Calendar .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.pagination .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.module-style__company-history .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Special_ChangingContents .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Special_ContactPerson .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Subscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Unsubscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Form_Contact .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Form_FormGenerator .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Form_Reservation .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Login_System_Registration .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Login_System_Deregistration .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Login_System_Login .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Lucene_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Lucene_SearchSmall .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Addresses_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Addresses_SearchMaps .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Community_Guestbook .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Special_Club_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence_CondolenceBook .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Special_Calendar .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.pagination .module-content-block .thumbnail {
  margin-bottom: 21px;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.module-style__company-history .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ChangingContents .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ContactPerson .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Subscribe .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Unsubscribe .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Contact .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_FormGenerator .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Reservation .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Registration .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Deregistration .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Login .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_Search .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_SearchSmall .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_Search .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_SearchMaps .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.Community_Guestbook .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Club_Search .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Calendar .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo.pagination .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.module-style__company-history .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.Special_ChangingContents .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.Special_ContactPerson .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Subscribe .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Unsubscribe .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.Form_Contact .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.Form_FormGenerator .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.Form_Reservation .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Registration .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Deregistration .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Login .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.Lucene_Search .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.Lucene_SearchSmall .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.Addresses_Search .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.Addresses_SearchMaps .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.Community_Guestbook .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.Special_Club_Search .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.Special_Calendar .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo.pagination .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.module-style__company-history .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ChangingContents .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ContactPerson .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Subscribe .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Unsubscribe .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Contact .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.Form_FormGenerator .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Reservation .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Registration .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Deregistration .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Login .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_Search .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_SearchSmall .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_Search .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_SearchMaps .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.Community_Guestbook .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Club_Search .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence_CondolenceBook .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Calendar .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree.pagination .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.module-style__company-history .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.Special_ChangingContents .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.Special_ContactPerson .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Subscribe .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Unsubscribe .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.Form_Contact .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.Form_FormGenerator .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.Form_Reservation .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.Login_System_Registration .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.Login_System_Deregistration .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.Login_System_Login .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.Lucene_Search .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.Lucene_SearchSmall .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.Addresses_Search .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.Addresses_SearchMaps .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.Community_Guestbook .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.Special_Club_Search .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence_CondolenceBook .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.Special_Calendar .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree.pagination .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.module-style__company-history .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ChangingContents .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ContactPerson .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Subscribe .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Unsubscribe .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Contact .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.Form_FormGenerator .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Reservation .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Registration .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Deregistration .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Login .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_Search .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_SearchSmall .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_Search .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_SearchMaps .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.Community_Guestbook .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Club_Search .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence_CondolenceBook .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Calendar .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour.pagination .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.module-style__company-history .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.Special_ChangingContents .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.Special_ContactPerson .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Subscribe .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Unsubscribe .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.Form_Contact .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.Form_FormGenerator .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.Form_Reservation .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.Login_System_Registration .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.Login_System_Deregistration .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.Login_System_Login .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.Lucene_Search .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.Lucene_SearchSmall .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.Addresses_Search .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.Addresses_SearchMaps .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.Community_Guestbook .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.Special_Club_Search .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence_CondolenceBook .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.Special_Calendar .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour.pagination .module-content-block > .headline-wrapper .headline3 {
  margin-bottom: 21px;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.module-style__company-history .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ChangingContents .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ContactPerson .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Subscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Contact .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_FormGenerator .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Reservation .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Registration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Deregistration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Login .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_SearchSmall .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_SearchMaps .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Community_Guestbook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Club_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Calendar .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.pagination .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.module-style__company-history .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Special_ChangingContents .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Special_ContactPerson .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Subscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Form_Contact .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Form_FormGenerator .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Form_Reservation .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Registration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Deregistration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Login .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Lucene_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Lucene_SearchSmall .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Addresses_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Addresses_SearchMaps .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Community_Guestbook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Special_Club_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Special_Calendar .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.pagination .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.module-style__company-history .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ChangingContents .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ContactPerson .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Subscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Contact .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Form_FormGenerator .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Reservation .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Registration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Deregistration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Login .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_SearchSmall .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_SearchMaps .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Community_Guestbook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Club_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Calendar .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.pagination .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.module-style__company-history .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Special_ChangingContents .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Special_ContactPerson .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Subscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Form_Contact .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Form_FormGenerator .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Form_Reservation .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Login_System_Registration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Login_System_Deregistration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Login_System_Login .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Lucene_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Lucene_SearchSmall .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Addresses_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Addresses_SearchMaps .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Community_Guestbook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Special_Club_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Special_Calendar .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.pagination .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.module-style__company-history .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ChangingContents .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ContactPerson .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Subscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Contact .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Form_FormGenerator .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Reservation .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Registration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Deregistration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Login .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_SearchSmall .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_SearchMaps .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Community_Guestbook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Club_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Calendar .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.pagination .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.module-style__company-history .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Special_ChangingContents .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Special_ContactPerson .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Subscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Form_Contact .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Form_FormGenerator .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Form_Reservation .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Login_System_Registration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Login_System_Deregistration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Login_System_Login .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Lucene_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Lucene_SearchSmall .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Addresses_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Addresses_SearchMaps .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Community_Guestbook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Special_Club_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Special_Calendar .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.pagination .module-content-block > .text-wrapper > p {
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.module-style__company-history .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ChangingContents .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ContactPerson .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Subscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Contact .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_FormGenerator .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Reservation .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Registration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Deregistration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Login .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_SearchSmall .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_SearchMaps .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Community_Guestbook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Club_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Calendar .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.pagination .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.module-style__company-history .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Special_ChangingContents .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Special_ContactPerson .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Subscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Form_Contact .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Form_FormGenerator .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Form_Reservation .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Registration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Deregistration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Login .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Lucene_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Lucene_SearchSmall .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Addresses_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Addresses_SearchMaps .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Community_Guestbook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Special_Club_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Special_Calendar .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.pagination .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.module-style__company-history .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ChangingContents .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ContactPerson .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Subscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Contact .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Form_FormGenerator .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Reservation .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Registration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Deregistration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Login .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_SearchSmall .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_SearchMaps .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Community_Guestbook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Club_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Calendar .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.pagination .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.module-style__company-history .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Special_ChangingContents .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Special_ContactPerson .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Subscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Form_Contact .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Form_FormGenerator .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Form_Reservation .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Login_System_Registration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Login_System_Deregistration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Login_System_Login .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Lucene_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Lucene_SearchSmall .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Addresses_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Addresses_SearchMaps .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Community_Guestbook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Special_Club_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Special_Calendar .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.pagination .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.module-style__company-history .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ChangingContents .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ContactPerson .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Subscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Contact .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Form_FormGenerator .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Reservation .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Registration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Deregistration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Login .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_SearchSmall .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_SearchMaps .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Community_Guestbook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Club_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Calendar .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.pagination .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.module-style__company-history .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Special_ChangingContents .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Special_ContactPerson .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Subscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Form_Contact .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Form_FormGenerator .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Form_Reservation .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Login_System_Registration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Login_System_Deregistration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Login_System_Login .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Lucene_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Lucene_SearchSmall .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Addresses_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Addresses_SearchMaps .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Community_Guestbook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Special_Club_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Special_Calendar .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.pagination .module-content-block > .text-wrapper > p > .amphiicon {
  position: absolute;
  top: -3px;
  left: 0;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.module-style__company-history .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ChangingContents .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ContactPerson .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Subscribe .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Unsubscribe .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Contact .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_FormGenerator .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Reservation .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Registration .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Deregistration .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Login .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_Search .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_SearchSmall .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_Search .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_SearchMaps .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Community_Guestbook .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Club_Search .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Calendar .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo.pagination .module-content-block > p, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.module-style__company-history .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.Special_ChangingContents .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.Special_ContactPerson .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Subscribe .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Unsubscribe .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.Form_Contact .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.Form_FormGenerator .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.Form_Reservation .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Registration .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Deregistration .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Login .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.Lucene_Search .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.Lucene_SearchSmall .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.Addresses_Search .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.Addresses_SearchMaps .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.Community_Guestbook .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.Special_Club_Search .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.Special_Calendar .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo.pagination .module-content-block > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.module-style__company-history .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ChangingContents .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ContactPerson .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Subscribe .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Unsubscribe .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Contact .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.Form_FormGenerator .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Reservation .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Registration .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Deregistration .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Login .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_Search .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_SearchSmall .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_Search .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_SearchMaps .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.Community_Guestbook .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Club_Search .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence_CondolenceBook .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Calendar .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree.pagination .module-content-block > p, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.module-style__company-history .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.Special_ChangingContents .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.Special_ContactPerson .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Subscribe .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Unsubscribe .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.Form_Contact .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.Form_FormGenerator .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.Form_Reservation .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.Login_System_Registration .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.Login_System_Deregistration .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.Login_System_Login .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.Lucene_Search .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.Lucene_SearchSmall .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.Addresses_Search .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.Addresses_SearchMaps .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.Community_Guestbook .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.Special_Club_Search .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence_CondolenceBook .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.Special_Calendar .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree.pagination .module-content-block > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.module-style__company-history .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ChangingContents .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ContactPerson .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Subscribe .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Unsubscribe .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Contact .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.Form_FormGenerator .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Reservation .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Registration .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Deregistration .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Login .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_Search .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_SearchSmall .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_Search .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_SearchMaps .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.Community_Guestbook .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Club_Search .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence_CondolenceBook .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Calendar .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour.pagination .module-content-block > p, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.module-style__company-history .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.Special_ChangingContents .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.Special_ContactPerson .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Subscribe .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Unsubscribe .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.Form_Contact .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.Form_FormGenerator .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.Form_Reservation .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.Login_System_Registration .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.Login_System_Deregistration .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.Login_System_Login .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.Lucene_Search .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.Lucene_SearchSmall .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.Addresses_Search .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.Addresses_SearchMaps .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.Community_Guestbook .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.Special_Club_Search .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence_CondolenceBook .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.Special_Calendar .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour.pagination .module-content-block > p {
  margin: 0;
}

@media (max-width: 767px) {
  .module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.module-style__company-history .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_ChangingContents .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_ContactPerson .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.Newsletter_Subscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.Newsletter_Unsubscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.Form_Contact .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.Form_FormGenerator .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.Form_Reservation .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.Login_System_Registration .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.Login_System_Deregistration .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.Login_System_Login .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.Lucene_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.Lucene_SearchSmall .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.Addresses_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.Addresses_SearchMaps .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.Community_Guestbook .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_Club_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_Condolence_CondolenceBook .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_Condolence .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_Calendar .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft.pagination .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.module-style__company-history .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.Special_ChangingContents .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.Special_ContactPerson .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.Newsletter_Subscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.Newsletter_Unsubscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.Form_Contact .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.Form_FormGenerator .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.Form_Reservation .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.Login_System_Registration .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.Login_System_Deregistration .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.Login_System_Login .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.Lucene_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.Lucene_SearchSmall .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.Addresses_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.Addresses_SearchMaps .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.Community_Guestbook .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.Special_Club_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.Special_Condolence_CondolenceBook .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.Special_Condolence .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.Special_Calendar .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft.pagination .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.module-style__company-history .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.Special_ChangingContents .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.Special_ContactPerson .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.Newsletter_Subscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.Newsletter_Unsubscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.Form_Contact .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.Form_FormGenerator .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.Form_Reservation .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.Login_System_Registration .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.Login_System_Deregistration .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.Login_System_Login .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.Lucene_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.Lucene_SearchSmall .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.Addresses_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.Addresses_SearchMaps .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.Community_Guestbook .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.Special_Club_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.Special_Condolence_CondolenceBook .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.Special_Condolence .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.Special_Calendar .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight.pagination .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.module-style__company-history .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.Special_ChangingContents .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.Special_ContactPerson .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.Newsletter_Subscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.Newsletter_Unsubscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.Form_Contact .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.Form_FormGenerator .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.Form_Reservation .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.Login_System_Registration .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.Login_System_Deregistration .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.Login_System_Login .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.Lucene_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.Lucene_SearchSmall .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.Addresses_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.Addresses_SearchMaps .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.Community_Guestbook .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.Special_Club_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.Special_Condolence_CondolenceBook .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.Special_Condolence .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.Special_Calendar .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight.pagination .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.module-style__company-history .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ChangingContents .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ContactPerson .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Subscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Unsubscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Contact .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_FormGenerator .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Reservation .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Registration .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Deregistration .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Login .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_SearchSmall .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_SearchMaps .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Community_Guestbook .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Club_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Calendar .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo.pagination .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.module-style__company-history .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Special_ChangingContents .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Special_ContactPerson .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Subscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Unsubscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Form_Contact .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Form_FormGenerator .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Form_Reservation .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Registration .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Deregistration .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Login .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Lucene_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Lucene_SearchSmall .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Addresses_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Addresses_SearchMaps .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Community_Guestbook .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Special_Club_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.Special_Calendar .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo.pagination .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.module-style__company-history .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ChangingContents .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ContactPerson .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Subscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Unsubscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Contact .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Form_FormGenerator .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Reservation .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Registration .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Deregistration .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Login .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_SearchSmall .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_SearchMaps .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Community_Guestbook .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Club_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence_CondolenceBook .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Calendar .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree.pagination .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.module-style__company-history .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Special_ChangingContents .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Special_ContactPerson .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Subscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Unsubscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Form_Contact .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Form_FormGenerator .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Form_Reservation .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Login_System_Registration .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Login_System_Deregistration .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Login_System_Login .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Lucene_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Lucene_SearchSmall .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Addresses_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Addresses_SearchMaps .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Community_Guestbook .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Special_Club_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence_CondolenceBook .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.Special_Calendar .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree.pagination .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.module-style__company-history .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ChangingContents .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ContactPerson .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Subscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Unsubscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Contact .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Form_FormGenerator .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Reservation .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Registration .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Deregistration .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Login .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_SearchSmall .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_SearchMaps .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Community_Guestbook .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Club_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence_CondolenceBook .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Calendar .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour.pagination .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.module-style__company-history .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Special_ChangingContents .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Special_ContactPerson .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Subscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Unsubscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Form_Contact .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Form_FormGenerator .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Form_Reservation .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Login_System_Registration .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Login_System_Deregistration .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Login_System_Login .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Lucene_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Lucene_SearchSmall .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Addresses_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Addresses_SearchMaps .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Community_Guestbook .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Special_Club_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence_CondolenceBook .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.Special_Calendar .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour.pagination .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_Link_TextImageCenter .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.module-style__company-history .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_ChangingContents .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_ContactPerson .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.Newsletter_Subscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.Newsletter_Unsubscribe .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.Form_Contact .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.Form_FormGenerator .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.Form_Reservation .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.Login_System_Registration .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.Login_System_Deregistration .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.Login_System_Login .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.Lucene_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.Lucene_SearchSmall .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.Addresses_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.Addresses_SearchMaps .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.Community_Guestbook .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_Club_Search .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_Condolence_CondolenceBook .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_Condolence .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_Calendar .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter.pagination .module-content-block .thumbnail {
    margin-bottom: 21px;
  }
  .module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageCenter .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p {
    padding-left: 40px;
  }
  .module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageCenter .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.module-style__company-history .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_ChangingContents .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_ContactPerson .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Newsletter_Subscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Newsletter_Unsubscribe .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Form_Contact .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Form_FormGenerator .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Form_Reservation .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Login_System_Registration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Login_System_Deregistration .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Login_System_Login .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Lucene_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Lucene_SearchSmall .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Addresses_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Addresses_SearchMaps .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Community_Guestbook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_Club_Search .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_Condolence_CondolenceBook .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_Condolence .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_Calendar .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.pagination .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon {
    width: 30px;
    height: 30px;
  }
  .module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.module-style__company-history .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_ChangingContents .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_ContactPerson .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Newsletter_Subscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Form_Contact .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Form_FormGenerator .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Form_Reservation .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Login_System_Registration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Login_System_Deregistration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Login_System_Login .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Lucene_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Lucene_SearchSmall .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Addresses_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Addresses_SearchMaps .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Community_Guestbook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_Club_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_Condolence .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_Calendar .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft.pagination .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.module-style__company-history .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Special_ChangingContents .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Special_ContactPerson .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Newsletter_Subscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Form_Contact .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Form_FormGenerator .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Form_Reservation .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Login_System_Registration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Login_System_Deregistration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Login_System_Login .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Lucene_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Lucene_SearchSmall .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Addresses_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Addresses_SearchMaps .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Community_Guestbook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Special_Club_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Special_Condolence .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.Special_Calendar .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft.pagination .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.module-style__company-history .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Special_ChangingContents .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Special_ContactPerson .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Newsletter_Subscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Form_Contact .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Form_FormGenerator .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Form_Reservation .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Login_System_Registration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Login_System_Deregistration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Login_System_Login .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Lucene_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Lucene_SearchSmall .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Addresses_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Addresses_SearchMaps .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Community_Guestbook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Special_Club_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Special_Condolence .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.Special_Calendar .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight.pagination .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.module-style__company-history .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Special_ChangingContents .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Special_ContactPerson .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Newsletter_Subscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Form_Contact .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Form_FormGenerator .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Form_Reservation .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Login_System_Registration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Login_System_Deregistration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Login_System_Login .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Lucene_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Lucene_SearchSmall .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Addresses_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Addresses_SearchMaps .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Community_Guestbook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Special_Club_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Special_Condolence .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.Special_Calendar .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight.pagination .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.module-style__company-history .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ChangingContents .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ContactPerson .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Subscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Contact .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_FormGenerator .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Reservation .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Registration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Deregistration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Login .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_SearchSmall .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_SearchMaps .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Community_Guestbook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Club_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Calendar .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo.pagination .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.module-style__company-history .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Special_ChangingContents .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Special_ContactPerson .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Subscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Form_Contact .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Form_FormGenerator .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Form_Reservation .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Registration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Deregistration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Login .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Lucene_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Lucene_SearchSmall .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Addresses_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Addresses_SearchMaps .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Community_Guestbook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Special_Club_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.Special_Calendar .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo.pagination .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.module-style__company-history .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ChangingContents .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ContactPerson .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Subscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Contact .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Form_FormGenerator .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Reservation .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Registration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Deregistration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Login .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_SearchSmall .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_SearchMaps .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Community_Guestbook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Club_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Calendar .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree.pagination .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.module-style__company-history .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Special_ChangingContents .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Special_ContactPerson .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Subscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Form_Contact .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Form_FormGenerator .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Form_Reservation .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Login_System_Registration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Login_System_Deregistration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Login_System_Login .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Lucene_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Lucene_SearchSmall .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Addresses_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Addresses_SearchMaps .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Community_Guestbook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Special_Club_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.Special_Calendar .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree.pagination .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.module-style__company-history .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ChangingContents .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ContactPerson .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Subscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Contact .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Form_FormGenerator .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Reservation .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Registration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Deregistration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Login .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_SearchSmall .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_SearchMaps .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Community_Guestbook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Club_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Calendar .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour.pagination .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.module-style__company-history .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Special_ChangingContents .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Special_ContactPerson .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Subscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Form_Contact .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Form_FormGenerator .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Form_Reservation .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Login_System_Registration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Login_System_Deregistration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Login_System_Login .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Lucene_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Lucene_SearchSmall .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Addresses_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Addresses_SearchMaps .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Community_Guestbook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Special_Club_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.Special_Calendar .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour.pagination .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageCenter .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.module-style__company-history .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_ChangingContents .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_ContactPerson .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Newsletter_Subscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Form_Contact .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Form_FormGenerator .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Form_Reservation .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Login_System_Registration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Login_System_Deregistration .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Login_System_Login .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Lucene_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Lucene_SearchSmall .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Addresses_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Addresses_SearchMaps .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Community_Guestbook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_Club_Search .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_Condolence .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_Calendar .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter.pagination .module-content-block > .text-wrapper > p {
    padding-left: 40px;
  }
  .module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.module-style__company-history .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_ChangingContents .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_ContactPerson .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Newsletter_Subscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Form_Contact .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Form_FormGenerator .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Form_Reservation .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Login_System_Registration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Login_System_Deregistration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Login_System_Login .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Lucene_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Lucene_SearchSmall .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Addresses_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Addresses_SearchMaps .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Community_Guestbook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_Club_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_Condolence .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.Special_Calendar .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft.pagination .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.module-style__company-history .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Special_ChangingContents .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Special_ContactPerson .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Newsletter_Subscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Form_Contact .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Form_FormGenerator .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Form_Reservation .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Login_System_Registration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Login_System_Deregistration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Login_System_Login .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Lucene_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Lucene_SearchSmall .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Addresses_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Addresses_SearchMaps .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Community_Guestbook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Special_Club_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Special_Condolence .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.Special_Calendar .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft.pagination .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.module-style__company-history .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Special_ChangingContents .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Special_ContactPerson .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Newsletter_Subscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Form_Contact .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Form_FormGenerator .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Form_Reservation .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Login_System_Registration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Login_System_Deregistration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Login_System_Login .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Lucene_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Lucene_SearchSmall .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Addresses_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Addresses_SearchMaps .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Community_Guestbook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Special_Club_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Special_Condolence .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.Special_Calendar .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight.pagination .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.module-style__company-history .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Special_ChangingContents .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Special_ContactPerson .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Newsletter_Subscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Form_Contact .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Form_FormGenerator .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Form_Reservation .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Login_System_Registration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Login_System_Deregistration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Login_System_Login .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Lucene_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Lucene_SearchSmall .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Addresses_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Addresses_SearchMaps .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Community_Guestbook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Special_Club_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Special_Condolence .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.Special_Calendar .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight.pagination .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.module-style__company-history .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ChangingContents .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_ContactPerson .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Subscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Contact .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_FormGenerator .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Form_Reservation .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Registration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Deregistration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Login_System_Login .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Lucene_SearchSmall .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Addresses_SearchMaps .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Community_Guestbook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Club_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Condolence .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.Special_Calendar .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo.pagination .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.module-style__company-history .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Special_ChangingContents .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Special_ContactPerson .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Subscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Form_Contact .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Form_FormGenerator .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Form_Reservation .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Registration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Deregistration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Login_System_Login .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Lucene_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Lucene_SearchSmall .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Addresses_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Addresses_SearchMaps .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Community_Guestbook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Special_Club_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Special_Condolence .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.Special_Calendar .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo.pagination .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.module-style__company-history .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ChangingContents .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Special_ContactPerson .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Subscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Contact .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Form_FormGenerator .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Form_Reservation .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Registration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Deregistration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Login_System_Login .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Lucene_SearchSmall .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Addresses_SearchMaps .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Community_Guestbook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Club_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Condolence .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.Special_Calendar .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree.pagination .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.module-style__company-history .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Special_ChangingContents .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Special_ContactPerson .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Subscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Form_Contact .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Form_FormGenerator .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Form_Reservation .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Login_System_Registration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Login_System_Deregistration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Login_System_Login .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Lucene_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Lucene_SearchSmall .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Addresses_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Addresses_SearchMaps .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Community_Guestbook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Special_Club_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Special_Condolence .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.Special_Calendar .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree.pagination .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.module-style__company-history .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ChangingContents .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Special_ContactPerson .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Subscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Contact .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Form_FormGenerator .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Form_Reservation .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Registration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Deregistration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Login_System_Login .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Lucene_SearchSmall .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Addresses_SearchMaps .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Community_Guestbook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Club_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Condolence .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.Special_Calendar .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour.pagination .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.module-style__company-history .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Special_ChangingContents .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Special_ContactPerson .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Subscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Form_Contact .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Form_FormGenerator .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Form_Reservation .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Login_System_Registration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Login_System_Deregistration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Login_System_Login .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Lucene_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Lucene_SearchSmall .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Addresses_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Addresses_SearchMaps .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Community_Guestbook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Special_Club_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Special_Condolence .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.Special_Calendar .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour.pagination .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageCenter .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.module-style__company-history .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_ChangingContents .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_ContactPerson .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Newsletter_Subscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Newsletter_Unsubscribe .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Form_Contact .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Form_FormGenerator .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Form_Reservation .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Login_System_Registration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Login_System_Deregistration .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Login_System_Login .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Lucene_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Lucene_SearchSmall .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Addresses_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Addresses_SearchMaps .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Community_Guestbook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_Club_Search .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_Condolence_CondolenceBook .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_Condolence .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.Special_Calendar .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter.pagination .module-content-block > .text-wrapper > p > .amphiicon {
    width: 30px;
    height: 30px;
  }
}
.module-style__company-history.variant-01 .module-content-block > .row, .module-style__company-history .module-content-block > .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.module-style__company-history.variant-01 .module-content-block > .row > div, .module-style__company-history .module-content-block > .row > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.module-style__company-history.variant-01 .module-content-block > .row > div:first-child, .module-style__company-history .module-content-block > .row > div:first-child {
  padding-right: 30px;
}
.module-style__company-history.variant-01 .module-content-block > .row > div:last-child:after, .module-style__company-history .module-content-block > .row > div:last-child:after {
  content: "";
  position: absolute;
  left: -2px;
  bottom: -30px;
  width: 2px;
  height: 30px;
  border-radius: 40px;
  background: #3fbfe5;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #FFF), color-stop(0%, rgba(255, 255, 255, 0)));
  background-image: linear-gradient(#FFF 50%, rgba(255, 255, 255, 0) 0%);
  background-position: right;
  background-size: 2px 6px;
  background-repeat: repeat-y;
}
.module-style__company-history.variant-01 .module-content-block > .row > div .thumbnail, .module-style__company-history .module-content-block > .row > div .thumbnail {
  margin: 0;
}
.module-style__company-history.variant-01 .module-content-block > .row > div .headline-wrapper .headline1, .module-style__company-history .module-content-block > .row > div .headline-wrapper .headline1 {
  position: relative;
}
.module-style__company-history.variant-01 .module-content-block > .row > div .headline-wrapper .headline1:before, .module-style__company-history .module-content-block > .row > div .headline-wrapper .headline1:before {
  content: "";
  width: 22px;
  height: 22px;
  border: 2px solid #3fbfe5;
  background: #3fbfe5;
  position: absolute;
  border-radius: 40px;
  left: -42px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
  z-index: 400;
}
.module-style__company-history.variant-01 .module-content-block > .row > div .headline-wrapper .headline2, .module-style__company-history .module-content-block > .row > div .headline-wrapper .headline2 {
  position: relative;
}
.module-style__company-history.variant-01 .module-content-block > .row > div .headline-wrapper .headline2:before, .module-style__company-history .module-content-block > .row > div .headline-wrapper .headline2:before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #3fbfe5;
  background: #3fbfe5;
  position: absolute;
  border-radius: 40px;
  left: -40px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
  z-index: 400;
}
.module-style__company-history.variant-01 .module-content-block > .row > div .headline-wrapper + .headline-wrapper .headline2:before, .module-style__company-history .module-content-block > .row > div .headline-wrapper + .headline-wrapper .headline2:before, .module-style__company-history.variant-01 .module-content-block > .row > div .headline-wrapper + .headline-wrapper .headline2:after, .module-style__company-history .module-content-block > .row > div .headline-wrapper + .headline-wrapper .headline2:after {
  display: none;
}
.module-style__company-history.variant-01 .module-content-block > .row > div:first-child, .module-style__company-history .module-content-block > .row > div:first-child {
  padding-right: 30px;
}
.module-style__company-history.variant-01 .module-content-block > .row > div:last-child, .module-style__company-history .module-content-block > .row > div:last-child {
  border-left: 2px solid #3fbfe5;
  padding-left: 30px;
  padding-top: 30px;
}
.module-style__company-history.variant-01 .module-content-block > .row > div:last-child > *, .module-style__company-history .module-content-block > .row > div:last-child > * {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.module-style__company-history.variant-01:last-child, .module-style__company-history:last-child {
  margin-bottom: 60px;
}
.module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div .text-wrapper, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div .text-wrapper, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div .text-wrapper, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div .text-wrapper {
  text-align: right;
}
.module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div .headline-wrapper, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div .headline-wrapper {
  text-align: right;
}
.module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper .headline1:before, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper .headline1:before, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div .headline-wrapper .headline1:before, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div .headline-wrapper .headline1:before {
  right: -42px;
  left: auto;
}
.module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper .headline2:before, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper .headline2:before, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div .headline-wrapper .headline2:before, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div .headline-wrapper .headline2:before {
  right: -40px;
  left: auto;
}
.module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div:first-child, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div:first-child, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div:first-child, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div:first-child {
  padding-top: 30px;
}
.module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div:last-child, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div:last-child, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div:last-child, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div:last-child {
  padding-top: 0;
}
.module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div:last-child > *, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div:last-child > *, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div:last-child > *, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div:last-child > * {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(63, 191, 229, 0.3);
            box-shadow: 0 0 0 0 rgba(63, 191, 229, 0.3);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(63, 191, 229, 0);
            box-shadow: 0 0 0 10px rgba(63, 191, 229, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(63, 191, 229, 0);
            box-shadow: 0 0 0 0 rgba(63, 191, 229, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(63, 191, 229, 0.3);
            box-shadow: 0 0 0 0 rgba(63, 191, 229, 0.3);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(63, 191, 229, 0);
            box-shadow: 0 0 0 10px rgba(63, 191, 229, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(63, 191, 229, 0);
            box-shadow: 0 0 0 0 rgba(63, 191, 229, 0);
  }
}
@media (max-width: 767px) {
  .module-style__company-history.variant-01, .module-style__company-history {
    margin-bottom: 0;
  }
  .module-style__company-history.variant-01 .module-content-block > .row > div .thumbnail, .module-style__company-history .module-content-block > .row > div .thumbnail {
    margin-bottom: 10px;
  }
  .module-style__company-history.variant-01 .module-content-block > .row > div:last-child, .module-style__company-history .module-content-block > .row > div:last-child {
    width: calc(100% - 25px);
    margin-left: 25px;
    padding-left: 25px;
    padding-right: 15px;
  }
  .module-style__company-history.variant-01 .module-content-block > .row > div .headline-wrapper .headline1:before, .module-style__company-history .module-content-block > .row > div .headline-wrapper .headline1:before {
    right: auto;
    left: -37px;
  }
  .module-style__company-history.variant-01 .module-content-block > .row > div .headline-wrapper .headline2:before, .module-style__company-history .module-content-block > .row > div .headline-wrapper .headline2:before {
    left: -35px;
  }
  .module-style__company-history.variant-01:last-child, .module-style__company-history:last-child {
    margin-bottom: 30px;
  }
  .module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div .text-wrapper, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div .text-wrapper, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div .text-wrapper, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div .text-wrapper {
    text-align: left;
  }
  .module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div .headline-wrapper, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div .headline-wrapper {
    text-align: left;
  }
  .module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper .headline1:before, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper .headline1:before, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div .headline-wrapper .headline1:before, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div .headline-wrapper .headline1:before {
    right: auto;
    left: -37px;
  }
  .module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper .headline2:before, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper .headline2:before, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div .headline-wrapper .headline2:before, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div .headline-wrapper .headline2:before {
    right: auto;
    left: -35px;
  }
  .module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div:first-child, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div:first-child, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div:first-child, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div:first-child {
    padding-top: 0;
  }
  .module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div:last-child, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div:last-child, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div:last-child, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div:last-child {
    padding-top: 30px;
  }
  .module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div:last-child > *, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div:last-child > *, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div:last-child > *, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div:last-child > * {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
.module-style__team.variant-03 .module-content-block .headline-wrapper .headline3, .module-style__team .module-content-block .headline-wrapper .headline3 {
  font-size: 1.4625rem;
  font-weight: 500;
  color: inherit;
  margin-bottom: 0;
}
.module-style__team.variant-03 .module-content-block .text-wrapper > p:first-child, .module-style__team .module-content-block .text-wrapper > p:first-child {
  font-size: 1.75rem;
  font-weight: 400;
  color: #3fbfe5;
  margin-bottom: 10px;
}
.module-style__team.variant-03 .module-content-block .text-wrapper p, .module-style__team .module-content-block .text-wrapper p {
  margin: 0;
}
.module-style__team.variant-03 .module-content-block .text-wrapper p a:not(.btn) .amphiicon, .module-style__team .module-content-block .text-wrapper p a:not(.btn) .amphiicon {
  margin-top: 10px;
  position: relative;
  background: #FFF;
  border-radius: 5px;
  text-align: center;
  width: 45px;
  height: 45px;
  border: 1px solid #ddd;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-style__team.variant-03 .module-content-block .text-wrapper p a:not(.btn) .amphiicon:before, .module-style__team .module-content-block .text-wrapper p a:not(.btn) .amphiicon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #95c11f;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-style__team.variant-03 .module-content-block .text-wrapper p a:not(.btn):hover .amphiicon, .module-style__team .module-content-block .text-wrapper p a:not(.btn):hover .amphiicon {
  background: #95c11f;
  -webkit-transform: translate(0, -10px);
          transform: translate(0, -10px);
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-style__team.variant-03 .module-content-block .text-wrapper p a:not(.btn):hover .amphiicon:before, .module-style__team .module-content-block .text-wrapper p a:not(.btn):hover .amphiicon:before {
  color: #fff;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}

.module-style__team.variant-03 .module-content-block .headline-wrapper .headline3, .module-style__team .module-content-block .headline-wrapper .headline3 {
  font-size: 1.4625rem;
  font-weight: 500;
  color: inherit;
  margin-bottom: 0;
}
.module-style__team.variant-03 .module-content-block .text-wrapper > p:first-child, .module-style__team .module-content-block .text-wrapper > p:first-child {
  font-size: 1.75rem;
  font-weight: 400;
  color: #3fbfe5;
  margin-bottom: 10px;
}
.module-style__team.variant-03 .module-content-block .text-wrapper p, .module-style__team .module-content-block .text-wrapper p {
  margin: 0;
}
.module-style__team.variant-03 .module-content-block .text-wrapper p a:not(.btn) .amphiicon, .module-style__team .module-content-block .text-wrapper p a:not(.btn) .amphiicon {
  margin-top: 10px;
  position: relative;
  background: #FFF;
  border-radius: 5px;
  text-align: center;
  width: 45px;
  height: 45px;
  border: 1px solid #ddd;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-style__team.variant-03 .module-content-block .text-wrapper p a:not(.btn) .amphiicon:before, .module-style__team .module-content-block .text-wrapper p a:not(.btn) .amphiicon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #95c11f;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-style__team.variant-03 .module-content-block .text-wrapper p a:not(.btn):hover .amphiicon, .module-style__team .module-content-block .text-wrapper p a:not(.btn):hover .amphiicon {
  background: #95c11f;
  -webkit-transform: translate(0, -10px);
          transform: translate(0, -10px);
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-style__team.variant-03 .module-content-block .text-wrapper p a:not(.btn):hover .amphiicon:before, .module-style__team .module-content-block .text-wrapper p a:not(.btn):hover .amphiicon:before {
  color: #fff;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}

.module-style__text-white {
  color: #fff;
}
.module-style__text-white .headline1, .module-style__text-white .headline2, .module-style__text-white .headline3, .module-style__text-white .headline4, .module-style__text-white .text-wrapper, .module-style__text-white .thumbnail .caption p {
  color: #fff;
}
.module-style__text-white a:not(.btn) {
  color: #fff;
}
.module-style__text-white a:not(.btn):visited, .module-style__text-white a:not(.btn):focus, .module-style__text-white a:not(.btn):active, .module-style__text-white a:not(.btn):hover {
  opacity: 0.8;
  color: #fff;
}
.module-style__text-white .reservation-general-description div.checkbox {
  background: rgba(0, 0, 0, 0.2);
  border: 0;
}
.module-style__text-white .module-content-block .headline1, .module-style__text-white .module-content-block .headline2, .module-style__text-white .module-content-block .headline3, .module-style__text-white .module-content-block .headline4, .module-style__text-white .module-content-block .text-wrapper, .module-style__text-white .gallery-carousel-caption .headline1, .module-style__text-white .gallery-carousel-caption .headline2, .module-style__text-white .gallery-carousel-caption .headline3, .module-style__text-white .gallery-carousel-caption .headline4, .module-style__text-white .gallery-carousel-caption .text-wrapper, .module-style__text-white * .headline1, .module-style__text-white * .headline2, .module-style__text-white * .headline3, .module-style__text-white * .headline4, .module-style__text-white * .text-wrapper {
  color: #fff;
}
.module-style__text-white .module-content-block .headline1 a:not(.btn), .module-style__text-white .module-content-block .headline2 a:not(.btn), .module-style__text-white .module-content-block .headline3 a:not(.btn), .module-style__text-white .module-content-block .headline4 a:not(.btn), .module-style__text-white .module-content-block .text-wrapper a:not(.btn), .module-style__text-white .gallery-carousel-caption .headline1 a:not(.btn), .module-style__text-white .gallery-carousel-caption .headline2 a:not(.btn), .module-style__text-white .gallery-carousel-caption .headline3 a:not(.btn), .module-style__text-white .gallery-carousel-caption .headline4 a:not(.btn), .module-style__text-white .gallery-carousel-caption .text-wrapper a:not(.btn), .module-style__text-white * .headline1 a:not(.btn), .module-style__text-white * .headline2 a:not(.btn), .module-style__text-white * .headline3 a:not(.btn), .module-style__text-white * .headline4 a:not(.btn), .module-style__text-white * .text-wrapper a:not(.btn) {
  color: #fff;
}
.module-style__text-white .module-content-block .headline1 a:not(.btn):visited, .module-style__text-white .module-content-block .headline1 a:not(.btn):focus, .module-style__text-white .module-content-block .headline1 a:not(.btn):active, .module-style__text-white .module-content-block .headline1 a:not(.btn):hover, .module-style__text-white .module-content-block .headline2 a:not(.btn):visited, .module-style__text-white .module-content-block .headline2 a:not(.btn):focus, .module-style__text-white .module-content-block .headline2 a:not(.btn):active, .module-style__text-white .module-content-block .headline2 a:not(.btn):hover, .module-style__text-white .module-content-block .headline3 a:not(.btn):visited, .module-style__text-white .module-content-block .headline3 a:not(.btn):focus, .module-style__text-white .module-content-block .headline3 a:not(.btn):active, .module-style__text-white .module-content-block .headline3 a:not(.btn):hover, .module-style__text-white .module-content-block .headline4 a:not(.btn):visited, .module-style__text-white .module-content-block .headline4 a:not(.btn):focus, .module-style__text-white .module-content-block .headline4 a:not(.btn):active, .module-style__text-white .module-content-block .headline4 a:not(.btn):hover, .module-style__text-white .module-content-block .text-wrapper a:not(.btn):visited, .module-style__text-white .module-content-block .text-wrapper a:not(.btn):focus, .module-style__text-white .module-content-block .text-wrapper a:not(.btn):active, .module-style__text-white .module-content-block .text-wrapper a:not(.btn):hover, .module-style__text-white .gallery-carousel-caption .headline1 a:not(.btn):visited, .module-style__text-white .gallery-carousel-caption .headline1 a:not(.btn):focus, .module-style__text-white .gallery-carousel-caption .headline1 a:not(.btn):active, .module-style__text-white .gallery-carousel-caption .headline1 a:not(.btn):hover, .module-style__text-white .gallery-carousel-caption .headline2 a:not(.btn):visited, .module-style__text-white .gallery-carousel-caption .headline2 a:not(.btn):focus, .module-style__text-white .gallery-carousel-caption .headline2 a:not(.btn):active, .module-style__text-white .gallery-carousel-caption .headline2 a:not(.btn):hover, .module-style__text-white .gallery-carousel-caption .headline3 a:not(.btn):visited, .module-style__text-white .gallery-carousel-caption .headline3 a:not(.btn):focus, .module-style__text-white .gallery-carousel-caption .headline3 a:not(.btn):active, .module-style__text-white .gallery-carousel-caption .headline3 a:not(.btn):hover, .module-style__text-white .gallery-carousel-caption .headline4 a:not(.btn):visited, .module-style__text-white .gallery-carousel-caption .headline4 a:not(.btn):focus, .module-style__text-white .gallery-carousel-caption .headline4 a:not(.btn):active, .module-style__text-white .gallery-carousel-caption .headline4 a:not(.btn):hover, .module-style__text-white .gallery-carousel-caption .text-wrapper a:not(.btn):visited, .module-style__text-white .gallery-carousel-caption .text-wrapper a:not(.btn):focus, .module-style__text-white .gallery-carousel-caption .text-wrapper a:not(.btn):active, .module-style__text-white .gallery-carousel-caption .text-wrapper a:not(.btn):hover, .module-style__text-white * .headline1 a:not(.btn):visited, .module-style__text-white * .headline1 a:not(.btn):focus, .module-style__text-white * .headline1 a:not(.btn):active, .module-style__text-white * .headline1 a:not(.btn):hover, .module-style__text-white * .headline2 a:not(.btn):visited, .module-style__text-white * .headline2 a:not(.btn):focus, .module-style__text-white * .headline2 a:not(.btn):active, .module-style__text-white * .headline2 a:not(.btn):hover, .module-style__text-white * .headline3 a:not(.btn):visited, .module-style__text-white * .headline3 a:not(.btn):focus, .module-style__text-white * .headline3 a:not(.btn):active, .module-style__text-white * .headline3 a:not(.btn):hover, .module-style__text-white * .headline4 a:not(.btn):visited, .module-style__text-white * .headline4 a:not(.btn):focus, .module-style__text-white * .headline4 a:not(.btn):active, .module-style__text-white * .headline4 a:not(.btn):hover, .module-style__text-white * .text-wrapper a:not(.btn):visited, .module-style__text-white * .text-wrapper a:not(.btn):focus, .module-style__text-white * .text-wrapper a:not(.btn):active, .module-style__text-white * .text-wrapper a:not(.btn):hover {
  opacity: 0.8;
}
.module-style__text-white hr, .module-style__text-white .table > thead > tr > th, .module-style__text-white .table > thead > tr > td, .module-style__text-white .table > tbody > tr > th, .module-style__text-white .table > tbody > tr > td, .module-style__text-white .table > tfoot > tr > th, .module-style__text-white .table > tfoot > tr > td,
.module-style__text-white .Form_Reservation .reservation-formular, .module-style__text-white .faq-question-inner, .module-style__text-white .faq-content, .module-style__text-white .date-list dt, .module-style__text-white .date-list,
.module-style__text-white .module-content-block, .module-style__text-white .reservation-object, .module-style__text-white .reservation-formular, .module-style__text-white .reservation-captcha, .module-style__text-white .form-horizontal .module-content-block {
  border-color: rgba(255, 255, 255, 0.3);
}
.module-style__text-white .table-hover > tbody > tr:hover, .module-style__text-white .table > thead:first-child > tr:first-child > th, .module-style__text-white .table > thead > tr > td.info, .module-style__text-white .table > thead > tr > th.info, .module-style__text-white .table > thead > tr.info > td, .module-style__text-white .table > thead > tr.info > th, .module-style__text-white .table > tbody > tr > td.info, .module-style__text-white .table > tbody > tr > th.info, .module-style__text-white .table > tbody > tr.info > td, .module-style__text-white .table > tbody > tr.info > th, .module-style__text-white .table > tfoot > tr > td.info, .module-style__text-white .table > tfoot > tr > th.info, .module-style__text-white .table > tfoot > tr.info > td, .module-style__text-white .table > tfoot > tr.info > th {
  background: rgba(0, 0, 0, 0.2);
}
.module-style__text-white .faq-question.active a, .module-style__text-white .faq-question.active a:hover, .module-style__text-white .faq-question a:hover, .module-style__text-white .date-list dt.active, .module-style__text-white .date-list dt.active:hover, .module-style__text-white .date-list dt:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}

.footer .module-style__text-white a:not(.btn) {
  color: #fff;
}
.footer .module-style__text-white a:not(.btn):visited, .footer .module-style__text-white a:not(.btn):focus, .footer .module-style__text-white a:not(.btn):active, .footer .module-style__text-white a:not(.btn):hover {
  opacity: 0.8;
  color: #fff;
}

.module-style__fadeinleft .module-content-block, .module-style__fadeinright .module-content-block, .module-style__fadeinup .module-content-block, .module-style__fadeindown .module-content-block, .module-style__fadein .module-content-block {
  opacity: 0;
}

.module-style__truncate-content span.readmore, .module-style__truncate-content span.readless {
  display: block;
}
.module-style__truncate-content.module-style__no-readmore .text-wrapper > *:last-child:after {
  content: "...";
}
.module-style__truncate-content.module-style__no-readmore span.readmore {
  display: none;
}

.module-style__vertical-center .module-content-block > .row.hidden-xs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.module-style__vertical-center .module-content-block > .row.hidden-xs .thumbnail {
  margin: 0;
}
.module-style__vertical-center .module-content-block > .row.hidden-xs .row-top-collage .thumbnail {
  margin-bottom: 21px;
}
.module-style__vertical-center.template-floating-text .module-content-block > .row.hidden-xs .thumbnail {
  margin-bottom: 21px;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.navbar-toggle {
  background: transparent;
}

.hamburger {
  padding: 0 15px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.hamburger_animation.is-active .hamburger-inner, .hamburger.hamburger_animation.is-active .hamburger-inner::before, .hamburger.hamburger_animation.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 40px;
  height: 21px;
  display: block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: 2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 3px;
  background-color: #444;
  border-radius: 0px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -9px;
}
.hamburger-inner::after {
  bottom: -9px;
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner, .hamburger_animation .hamburger-inner {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after, .hamburger_animation .hamburger-inner::before, .hamburger_animation .hamburger-inner::after {
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger_animation .hamburger-inner::before {
  -webkit-transition-property: top, opacity;
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after, .hamburger_animation .hamburger-inner::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}
.hamburger--vortex-r.is-active .hamburger-inner, .hamburger_animation.is-active .hamburger-inner {
  -webkit-transform: rotate(-765deg);
          transform: rotate(-765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after, .hamburger_animation.is-active .hamburger-inner::before, .hamburger_animation.is-active .hamburger-inner::after {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger_animation.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after, .hamburger_animation.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.navigation-responsive-wrapper-top {
  background-color: transparent;
  max-width: 100%;
  height: auto;
  text-align: center;
  margin: 0 auto;
  display: block;
  padding: 25px 60px;
}
.navigation-responsive-wrapper-top a {
  display: inline-block;
}
.navigation-responsive-wrapper-top svg {
  width: 100%;
  max-width: 100%;
}

.navigation-responsive-wrapper-bottom {
  padding: 25px 15px;
}
.navigation-responsive-wrapper-bottom .amphiicon {
  position: inherit;
  top: auto;
  text-align: center;
  padding: 8px 0;
  background: transparent;
  color: #fff;
  width: 27px;
  height: 27px;
  margin: 0 10px 5px 0;
  font-size: 12px;
  border-radius: 40px;
}
.navigation-responsive-wrapper-bottom .amphiicon:before {
  position: relative;
  left: 2px;
}

header {
  display: contents;
}

.header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 800;
}

_:-ms-fullscreen, :root header {
  display: block;
}

html {
  scroll-padding-top: auto;
}

.content {
  position: relative;
}
.content:nth-child(even) {
  background-color: whitesmoke;
}
.content .content_content-background-inner {
  padding: 60px 0 30px 0;
}
.content .amphi-slideshow .owl-nav div span {
  color: #3fbfe5;
  text-shadow: none;
}
.content .amphi-slideshow .owl-dots {
  bottom: 0;
}
.content .amphi-slideshow .owl-dots .owl-dot span {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 2px solid #3fbfe5;
}
.content .amphi-slideshow .owl-dots .owl-dot.active span {
  background-color: #3fbfe5;
  border: 2px solid #3fbfe5;
}
.content .content_sidebar_nav {
  margin-bottom: 25px;
}
.content .content_sidebar_nav .navigation > li span > a {
  font-size: 1rem;
  font-weight: 600;
  color: #444;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  letter-spacing: 0.2px;
  line-height: 1.5;
}
.content .content_sidebar_nav .navigation > li span > a:before {
  content: "\f105";
  font: normal normal normal 14px/1 FontAwesome;
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  margin-right: 10px;
}
.content .content_sidebar_nav .navigation > li span > a:after {
  content: none;
}
.content .content_sidebar_nav .navigation > li.active > span > a {
  color: #3fbfe5;
}
.content .content_sidebar_nav .navigation > li:hover > span > a, .content .content_sidebar_nav .navigation > li.hover > span > a {
  color: #3fbfe5;
}
.content .content_sidebar_nav .navigation > li:hover.active > span > a, .content .content_sidebar_nav .navigation > li.hover.active > span > a {
  color: #3fbfe5;
}
.content .content_sidebar_nav .navigation > li:last-child > span > a {
  border-bottom: none;
}
.content .content_sidebar_nav .navigation > li ul li span > a {
  font-weight: 400;
  padding-left: 30px;
}
.content .content_sidebar_nav .navigation > li ul li.active > span > a {
  color: #3fbfe5;
}
.content .content_sidebar_nav .navigation > li ul li:hover > span > a, .content .content_sidebar_nav .navigation > li ul li.hover > span > a {
  color: #3fbfe5;
}
.content .content_sidebar_nav .navigation > li ul li:hover.active > span > a, .content .content_sidebar_nav .navigation > li ul li.hover.active > span > a {
  color: #3fbfe5;
}
.content .content_sidebar_nav .navigation > li ul li ul li span > a {
  padding-left: 45px;
}
.content .content_sidebar_nav .navigation > li ul li ul li.active > span > a {
  color: #3fbfe5;
}
.content .content_sidebar_nav .navigation > li ul li ul li:hover > span > a, .content .content_sidebar_nav .navigation > li ul li ul li.hover > span > a {
  color: #3fbfe5;
}
.content .content_sidebar_nav .navigation > li ul li ul li:hover.active > span > a, .content .content_sidebar_nav .navigation > li ul li ul li.hover.active > span > a {
  color: #3fbfe5;
}
.content .content_sidebar_nav .navigation > li ul li ul li ul li span > a {
  padding-left: 60px;
}
.content .content_sidebar_nav .navigation > li ul li ul li ul li.active > span > a {
  color: #3fbfe5;
}
.content .content_sidebar_nav .navigation > li ul li ul li ul li:hover > span > a, .content .content_sidebar_nav .navigation > li ul li ul li ul li.hover > span > a {
  color: #3fbfe5;
}
.content .content_sidebar_nav .navigation > li ul li ul li ul li:hover.active > span > a, .content .content_sidebar_nav .navigation > li ul li ul li ul li.hover.active > span > a {
  color: #3fbfe5;
}

#editMode .content .navigation.level-2 li a.editButton {
  top: 16px;
  left: -2px;
}
#editMode .content .navigation.level-2 li .level-3 li a.editButton {
  top: 16px;
  left: 15px;
}
#editMode .content .navigation.level-2 li .level-3 li .level-4 li a.editButton {
  top: 16px;
  left: 25px;
}

@media (max-width: 767px) {
  .content .content_content-background-inner {
    padding: 40px 0 10px 0;
  }
}
/* FOOTER ADDON TOP */
.footer-addon-top {
  padding: 0;
}
.footer-addon-top .footer-addon-top_background-inner {
  padding: 60px 0 30px 0;
}

.footer-addon-top__breadcrumb {
  background-color: #ededed;
  font-size: 0.9rem;
  padding: 20px 0;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_icon {
  display: inline-block;
  margin-right: 5px;
  color: #444;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_icon a {
  color: #444;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_icon a:hover {
  color: #444;
  opacity: 0.7;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_icon:empty {
  display: none;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_text {
  margin-right: 5px;
  color: #444;
  display: inline-block;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_text:empty {
  display: none;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumbs {
  display: inline-block;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb {
  background: none;
  margin: 0;
  padding: 0;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li a {
  color: #444;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li a:hover {
  color: #444;
  opacity: 0.7;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li + li:before {
  color: #444;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li.active a {
  font-weight: 700;
}

.footer-addon-top_six-col-single-content-areas .footer-addon-top_inner {
  margin-bottom: 30px;
}

/* FOOTER ADDON BOTTOM */
.footer-addon-bottom {
  background: #fff;
  color: #444;
  font-size: 0.984375rem;
  padding: 30px 0;
}
.footer-addon-bottom .footer-addon-bottom_inner {
  padding: 30px 0;
}
.footer-addon-bottom .footer-addon-bottom_inner .text-wrapper p {
  padding: 0;
  margin: 0;
}
.footer-addon-bottom .footer-addon-bottom_inner .text-wrapper a {
  color: #3fbfe5;
}
.footer-addon-bottom .footer-addon-bottom_inner .text-wrapper a:hover, .footer-addon-bottom .footer-addon-bottom_inner .text-wrapper a:focus, .footer-addon-bottom .footer-addon-bottom_inner .text-wrapper a:active {
  color: #95c11f;
}

@media (max-width: 767px) {
  .footer-addon-bottom .footer-addon-bottom_inner {
    padding: 15px 0;
  }
}
/* FOOTER */
.footer {
  padding: 0;
}
.footer .footer_background-inner {
  padding: 60px 0 30px 0;
}
.footer a {
  text-decoration: underline;
}
.footer a:hover {
  color: #95c11f;
  opacity: 1;
  text-decoration: none;
}
.footer a.btn-default, .footer .btn-default,
.footer a.btn-primary, .footer .btn-primary,
.footer a.btn-custom, .footer .btn-custom {
  color: #FFF;
  background-color: #95c11f;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  background: #3fbfe5;
  border-radius: 50px;
  padding: 6px 20px 5px 20px;
  text-transform: uppercase;
}
.footer a.btn-default:after, .footer .btn-default:after,
.footer a.btn-primary:after, .footer .btn-primary:after,
.footer a.btn-custom:after, .footer .btn-custom:after {
  content: none;
}
.footer a.btn-default:before, .footer .btn-default:before,
.footer a.btn-primary:before, .footer .btn-primary:before,
.footer a.btn-custom:before, .footer .btn-custom:before {
  content: none;
}
.footer a.btn-default:hover, .footer a.btn-default:focus, .footer a.btn-default:active, .footer a.btn-default.active, .footer .btn-default:hover, .footer .btn-default:focus, .footer .btn-default:active, .footer .btn-default.active,
.footer a.btn-primary:hover,
.footer a.btn-primary:focus,
.footer a.btn-primary:active,
.footer a.btn-primary.active, .footer .btn-primary:hover, .footer .btn-primary:focus, .footer .btn-primary:active, .footer .btn-primary.active,
.footer a.btn-custom:hover,
.footer a.btn-custom:focus,
.footer a.btn-custom:active,
.footer a.btn-custom.active, .footer .btn-custom:hover, .footer .btn-custom:focus, .footer .btn-custom:active, .footer .btn-custom.active {
  color: #FFF;
  background-color: #739518;
  border: none;
  font-size: 1rem;
  background: #95c11f;
  border-radius: 50px;
  text-transform: uppercase;
}
.footer a.btn-default:hover:after, .footer a.btn-default:focus:after, .footer a.btn-default:active:after, .footer a.btn-default.active:after, .footer .btn-default:hover:after, .footer .btn-default:focus:after, .footer .btn-default:active:after, .footer .btn-default.active:after,
.footer a.btn-primary:hover:after,
.footer a.btn-primary:focus:after,
.footer a.btn-primary:active:after,
.footer a.btn-primary.active:after, .footer .btn-primary:hover:after, .footer .btn-primary:focus:after, .footer .btn-primary:active:after, .footer .btn-primary.active:after,
.footer a.btn-custom:hover:after,
.footer a.btn-custom:focus:after,
.footer a.btn-custom:active:after,
.footer a.btn-custom.active:after, .footer .btn-custom:hover:after, .footer .btn-custom:focus:after, .footer .btn-custom:active:after, .footer .btn-custom.active:after {
  content: none;
}
.footer a.btn-default:hover:before, .footer a.btn-default:focus:before, .footer a.btn-default:active:before, .footer a.btn-default.active:before, .footer .btn-default:hover:before, .footer .btn-default:focus:before, .footer .btn-default:active:before, .footer .btn-default.active:before,
.footer a.btn-primary:hover:before,
.footer a.btn-primary:focus:before,
.footer a.btn-primary:active:before,
.footer a.btn-primary.active:before, .footer .btn-primary:hover:before, .footer .btn-primary:focus:before, .footer .btn-primary:active:before, .footer .btn-primary.active:before,
.footer a.btn-custom:hover:before,
.footer a.btn-custom:focus:before,
.footer a.btn-custom:active:before,
.footer a.btn-custom.active:before, .footer .btn-custom:hover:before, .footer .btn-custom:focus:before, .footer .btn-custom:active:before, .footer .btn-custom.active:before {
  content: none;
}
@media (max-width: 767px) {
  .footer .footer_background-inner {
    padding: 40px 0 10px 0;
  }
}
.footer__six-col-single-content-areas .footer_inner {
  margin-bottom: 30px;
}

/*HEADER ADDON TOP */
.header-addon-top {
  background-color: #3fbfe5;
  font-size: 14px;
  color: #fff;
  padding: 10px 0;
}
.header-addon-top .text-wrapper p {
  padding: 0;
  margin: 0;
}
.header-addon-top a {
  color: #fff;
}
.header-addon-top a:hover {
  color: #fff;
  opacity: 0.7;
}
.header-addon-top .amphiicon {
  position: inherit;
  top: auto;
  text-align: center;
  padding: 8px 0;
  background-color: #fff;
  color: #444;
  width: 27px;
  height: 27px;
  margin: 0 6px;
  font-size: 12px;
  border-radius: 40px;
}

/* HEADER ADDON BOTTOM */
.header-addon-bottom {
  padding: 0;
}
.header-addon-bottom .header-addon-bottom_inner {
  padding: 10px 0;
}
.header-addon-bottom .header-addon-bottom_inner .text-wrapper p {
  padding: 0;
  margin: 0;
}

.header-addon-bottom__breadcrumb {
  background-color: #ededed;
  font-size: 0.9rem;
}
.header-addon-bottom__breadcrumb .breadcrumb_inner {
  padding: 10px 0;
}
.header-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon {
  display: inline-block;
  margin-right: 5px;
}
.header-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon:empty {
  display: none;
}
.header-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_text {
  margin-right: 5px;
  display: inline-block;
}
.header-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_text:empty {
  display: none;
}
.header-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs {
  display: inline-block;
}
.header-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb {
  background: none;
  margin: 0;
  padding: 0;
}
.header-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li + li:before {
  color: #444;
}

/* HEADER */
.header {
  background: #fff;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
}
.header .header_content {
  -webkit-transition: font-size 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: font-size 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.header .header_content .amphiicon {
  color: #3fbfe5;
  margin: 0 5px 0 0;
}
.header .logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .logo a {
  display: inline-block;
}
.header .logo img, .header .logo svg {
  width: 100%;
  max-width: 100%;
  -webkit-transition: max-width 0.5s cubic-bezier(0.55, 0, 0.1, 1), width 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: max-width 0.5s cubic-bezier(0.55, 0, 0.1, 1), width 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.header.fixed .logo img, .header.fixed .logo svg {
  max-width: 75%;
  -webkit-transition: max-width 0.5s cubic-bezier(0.55, 0, 0.1, 1), width 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: max-width 0.5s cubic-bezier(0.55, 0, 0.1, 1), width 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.header .top-nav .navbar {
  min-height: auto;
  padding: 15px 0;
}
.header .top-nav .navigation > li {
  display: inline-block;
}
.header .top-nav .navigation > li span > a {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #858479;
  text-transform: none;
  padding: 20px 15px;
  line-height: 1.5;
}
.header .top-nav .navigation > li.active > span > a {
  color: #3fbfe5;
}
.header .top-nav .navigation > li:hover > span > a, .header .top-nav .navigation > li.hover > span > a {
  color: #3fbfe5;
}
.header .top-nav .navigation > li:hover.active > span > a, .header .top-nav .navigation > li.hover.active > span > a {
  color: #3fbfe5;
}
.header .top-nav .navigation > li:hover > ul, .header .top-nav .navigation > li.hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.header .top-nav .navigation > li.nav-inactive, .header .top-nav .navigation > li.navInactive {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=100)";
  filter: alpha(opacity=100);
}
.header .top-nav .navigation > li.nav-inactive a, .header .top-nav .navigation > li.navInactive a {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=50)";
  filter: alpha(opacity=50);
  zoom: 1;
}
.header .top-nav .navigation > li > ul {
  border-top: 3px solid #3fbfe5;
}
.header .top-nav .navigation > li ul {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  top: 100%;
  z-index: 800;
  min-width: 250px;
  text-align: left;
  padding: 10px;
  -webkit-transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  left: 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
  max-height: 70vh;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.header .top-nav .navigation > li ul::-webkit-scrollbar {
  display: none;
}
.header .top-nav .navigation > li ul.position-right {
  right: 0;
  left: auto;
}
.header .top-nav .navigation > li ul li {
  display: block;
}
.header .top-nav .navigation > li ul li span > a {
  font-size: 1rem;
  font-weight: 500;
  color: #858479;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  letter-spacing: 0.2px;
  line-height: 1.5;
  white-space: nowrap;
  text-transform: none;
}
.header .top-nav .navigation > li ul li span > a:before {
  content: "\f105";
  font: normal normal normal 14px/1 FontAwesome;
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  margin-right: 10px;
}
.header .top-nav .navigation > li ul li span > a:after {
  content: none;
}
.header .top-nav .navigation > li ul li.active > span > a {
  color: #3fbfe5;
}
.header .top-nav .navigation > li ul li:hover > span > a, .header .top-nav .navigation > li ul li.hover > span > a {
  color: #3fbfe5;
}
.header .top-nav .navigation > li ul li:hover.active > span > a, .header .top-nav .navigation > li ul li.hover.active > span > a {
  color: #3fbfe5;
}
.header .top-nav .navigation > li ul li:hover > ul, .header .top-nav .navigation > li ul li.hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.header .top-nav .navigation > li ul li:last-child > span > a {
  border-bottom: none;
}
.header .top-nav .navigation > li ul li > ul {
  z-index: 400;
  min-width: 220px;
  left: 100%;
  top: 0;
}

/* EDIT MODE */
#editMode header .header .logo > .singleContentAreaEdit {
  position: absolute;
  margin: 0;
  top: -2px;
}
#editMode header .header .logo > .singleContentAreaEdit img {
  max-width: 100%;
}
#editMode header .header .top-nav .navigation.level-1 li > span {
  position: static;
}
#editMode header .header .top-nav .navigation.level-1 li > span > a.editButton {
  top: 16px;
  left: -5px;
}
#editMode header .header .top-nav .navigation.level-1 li > span > a.editButton:before, #editMode header .header .top-nav .navigation.level-1 li > span > a.editButton:after {
  content: none;
}
#editMode header .header .top-nav .navigation.level-1 li .level-2 li > span > a.editButton {
  top: 14px;
  left: -3px;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1269px) {
  .header .top-nav .navigation > li > span > a {
    padding: 10px;
  }
}
@media screen and (max-width: 1199px) {
  .header .top-nav .navigation > li > span > a {
    font-size: 16px;
    padding: 10px 8px;
  }
}
@media screen and (max-width: 1061px) {
  .header .top-nav .navigation > li > span > a {
    font-size: 15px;
  }
}
.header__logo-center-nav-bottom-center {
  text-align: center;
}
.header__logo-center-nav-bottom-center .logo-wrapper {
  padding: 25px 0;
  background-color: #fff;
}
.header__logo-center-nav-bottom-center .logo-wrapper .logo {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__logo-center-nav-bottom-center .logo-wrapper .logo a img {
  margin: 0 auto;
}
.header__logo-center-nav-bottom-center .top-nav {
  background-color: #fff;
}
.header__logo-center-nav-bottom-center .top-nav .navbar .navbar-toggle {
  float: none;
}
.header__logo-center-nav-bottom-center .top-nav .navbar .navbar-toggle .hamburger {
  padding: 0;
}
.header__logo-center-nav-bottom-center .top-nav .navigation {
  text-align: center;
}

/* EDIT MODE */
#editMode .header__logo-center-nav-bottom-center .logo > .singleContentAreaEdit {
  left: -25px;
}
#editMode .header__logo-center-nav-bottom-center .top-nav .navigation > li > span > a.editButton {
  left: auto;
}

.header__logo-left-nav-bottom-left {
  text-align: left;
  display: block;
}
.header__logo-left-nav-bottom-left .logo-wrapper {
  padding: 25px 0;
  background-color: #fff;
}
.header__logo-left-nav-bottom-left .logo-wrapper .logo a img {
  float: left;
}
.header__logo-left-nav-bottom-left .logo-wrapper .header_content {
  font-size: 1rem;
}
.header__logo-left-nav-bottom-left .logo-wrapper .header_content p {
  margin: 0;
}
.header__logo-left-nav-bottom-left .top-nav {
  background-color: #fff;
}
.header__logo-left-nav-bottom-left .top-nav .navigation {
  text-align: left;
}

/* EDIT MODE */
#editMode .header__logo-left-nav-bottom-left .logo > .singleContentAreaEdit {
  left: -25px;
}

.header__logo-left-nav-right {
  padding: 25px 0;
}
.header__logo-left-nav-right .logo-wrapper .logo a img {
  float: left;
}

/* EDIT MODE */
#editMode .header__logo-left-nav-right .logo > .singleContentAreaEdit {
  left: -25px;
}

.header__logo-right-nav-bottom-right {
  display: block;
}
.header__logo-right-nav-bottom-right .logo-wrapper {
  padding: 25px 0;
  background-color: #fff;
}
.header__logo-right-nav-bottom-right .logo-wrapper .logo a img {
  float: right;
}
.header__logo-right-nav-bottom-right .logo-wrapper .header_content {
  font-size: 1rem;
}
.header__logo-right-nav-bottom-right .logo-wrapper .header_content p {
  margin: 0;
}
.header__logo-right-nav-bottom-right .top-nav {
  background-color: #fff;
}
.header__logo-right-nav-bottom-right .top-nav .navigation {
  text-align: right;
}

/* EDIT MODE */
#editMode .header__logo-right-nav-bottom-right .logo > .singleContentAreaEdit {
  right: -25px;
}
#editMode .header__logo-right-nav-bottom-right .top-nav .navigation > li > span > a.editButton {
  left: auto;
}

/* MEDIA QUERIES */
@media (max-width: 991px) {
  .header__logo-right-nav-bottom-right .logo-wrapper .logo {
    float: left;
  }
}
.header__logo-right-nav-left {
  padding: 25px 0;
}
.header__logo-right-nav-left .logo-wrapper .logo a img {
  float: right;
}
.header__logo-right-nav-left .top-nav {
  float: left;
}

/* EDIT MODE */
#editMode .header__logo-right-nav-left .logo > .singleContentAreaEdit {
  right: 0;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1199px) {
  .header__logo-right-nav-left .top-nav {
    float: left;
  }
}
@media screen and (max-width: 991px) {
  .header__logo-right-nav-left .logo-wrapper .logo {
    float: right;
  }
}
.quicklinks-mobile__icons {
  position: relative;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.quicklinks-mobile__icons ul {
  margin: 0;
  padding: 0;
  top: -14px;
  position: absolute;
  z-index: 400;
}
.quicklinks-mobile__icons ul li {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.quicklinks-mobile__icons ul li:empty {
  display: none;
}
.quicklinks-mobile__icons ul li a .amphiicon {
  position: inherit;
  top: auto;
  text-align: center;
  padding: 8px 0;
  background-color: #95c11f;
  color: #fff;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  width: 30px;
  height: 30px;
  margin: 0 6px;
  font-size: 14px;
  border-radius: 40px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
}
.quicklinks-mobile__icons ul li a:hover .amphiicon {
  background-color: #3fbfe5;
}

.quicklinks {
  position: fixed;
  top: 45%;
  z-index: 900;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  pointer-events: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.quicklinks.show {
  -webkit-transform: translate(0, -45%);
          transform: translate(0, -45%);
}
.quicklinks .quicklinks_item {
  pointer-events: auto;
  position: relative;
  display: table;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
  border-radius: 5px;
  clear: both;
  margin-bottom: 4px;
}
.quicklinks .quicklinks_item:hover, .quicklinks .quicklinks_item.hover {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.quicklinks .quicklinks_item.quicklinks_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45px;
  max-height: 60vh;
  overflow: hidden;
  padding: 15px 9px;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  border-radius: 5px;
  background: #95c11f;
  color: #fff;
  white-space: nowrap;
}
.quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_label div {
  text-align: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_label a {
  color: #fff;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_label .amphiicon {
  margin-bottom: 5px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_label img, .quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_label svg {
  display: inline-block;
  max-width: 18px;
  max-height: 30px;
  fill: #fff;
  margin-bottom: 5px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: fill 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: fill 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_content {
  padding: 20px;
  color: #fff;
  background: #95c11f;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  position: relative;
  max-width: 95vw;
  max-height: 60vh;
  overflow-y: auto;
}
.quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_content .quicklinks_box_headline {
  color: #fff;
}
.quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_content .text-wrapper a {
  color: #3fbfe5;
}
.quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_content .text-wrapper a:hover, .quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_content .text-wrapper a:focus, .quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_content .text-wrapper a:active {
  color: #1a98be;
}
.quicklinks .quicklinks_item.quicklinks_icons {
  height: 52px;
}
.quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_label {
  width: 45px;
  text-align: center;
  color: #fff;
  background: #95c11f;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  border-radius: 5px;
}
.quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_label .amphiicon {
  white-space: nowrap;
}
.quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_label img, .quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_label svg {
  display: inline-block;
  max-width: 18px;
  max-height: 30px;
  fill: #fff;
  -webkit-transition: fill 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: fill 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_content {
  padding: 0 20px;
  color: #fff;
  background: #95c11f;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  max-width: 95vw;
  overflow-x: auto;
}
.quicklinks .quicklinks_item.quicklinks_icons p {
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.quicklinks .quicklinks_item.quicklinks_icons p > a {
  white-space: nowrap;
  color: #fff;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.quicklinks .quicklinks_item.quicklinks_icons a {
  display: inline-block;
  margin: 0;
  padding: 0;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  white-space: nowrap;
}
.quicklinks .quicklinks_item.quicklinks_icons a:after, .quicklinks .quicklinks_item.quicklinks_icons a:before {
  display: none;
}
.quicklinks .quicklinks_item.quicklinks_icons a .amphiicon {
  color: #fff;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_label, .quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_content {
  display: table-cell;
  vertical-align: middle;
}
.quicklinks .quicklinks_item:hover, .quicklinks .quicklinks_item.hover, .quicklinks .quicklinks_item:focus, .quicklinks .quicklinks_item:active, .quicklinks .quicklinks_item.active {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.quicklinks .quicklinks_item:hover.quicklinks_box .quicklinks_box_label, .quicklinks .quicklinks_item.hover.quicklinks_box .quicklinks_box_label, .quicklinks .quicklinks_item:focus.quicklinks_box .quicklinks_box_label, .quicklinks .quicklinks_item:active.quicklinks_box .quicklinks_box_label, .quicklinks .quicklinks_item.active.quicklinks_box .quicklinks_box_label {
  color: #fff;
  background: #40530d;
}
.quicklinks .quicklinks_item:hover.quicklinks_box .quicklinks_box_label a, .quicklinks .quicklinks_item.hover.quicklinks_box .quicklinks_box_label a, .quicklinks .quicklinks_item:focus.quicklinks_box .quicklinks_box_label a, .quicklinks .quicklinks_item:active.quicklinks_box .quicklinks_box_label a, .quicklinks .quicklinks_item.active.quicklinks_box .quicklinks_box_label a {
  color: #fff;
}
.quicklinks .quicklinks_item:hover.quicklinks_box .quicklinks_box_label img, .quicklinks .quicklinks_item:hover.quicklinks_box .quicklinks_box_label svg, .quicklinks .quicklinks_item.hover.quicklinks_box .quicklinks_box_label img, .quicklinks .quicklinks_item.hover.quicklinks_box .quicklinks_box_label svg, .quicklinks .quicklinks_item:focus.quicklinks_box .quicklinks_box_label img, .quicklinks .quicklinks_item:focus.quicklinks_box .quicklinks_box_label svg, .quicklinks .quicklinks_item:active.quicklinks_box .quicklinks_box_label img, .quicklinks .quicklinks_item:active.quicklinks_box .quicklinks_box_label svg, .quicklinks .quicklinks_item.active.quicklinks_box .quicklinks_box_label img, .quicklinks .quicklinks_item.active.quicklinks_box .quicklinks_box_label svg {
  fill: #fff;
  -webkit-transition: fill 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: fill 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.quicklinks .quicklinks_item:hover.quicklinks_box .quicklinks_box_content, .quicklinks .quicklinks_item.hover.quicklinks_box .quicklinks_box_content, .quicklinks .quicklinks_item:focus.quicklinks_box .quicklinks_box_content, .quicklinks .quicklinks_item:active.quicklinks_box .quicklinks_box_content, .quicklinks .quicklinks_item.active.quicklinks_box .quicklinks_box_content {
  color: #fff;
  background: #627f14;
}
.quicklinks .quicklinks_item:hover.quicklinks_icons a, .quicklinks .quicklinks_item.hover.quicklinks_icons a, .quicklinks .quicklinks_item:focus.quicklinks_icons a, .quicklinks .quicklinks_item:active.quicklinks_icons a, .quicklinks .quicklinks_item.active.quicklinks_icons a {
  color: #fff;
}
.quicklinks .quicklinks_item:hover.quicklinks_icons a .amphiicon, .quicklinks .quicklinks_item.hover.quicklinks_icons a .amphiicon, .quicklinks .quicklinks_item:focus.quicklinks_icons a .amphiicon, .quicklinks .quicklinks_item:active.quicklinks_icons a .amphiicon, .quicklinks .quicklinks_item.active.quicklinks_icons a .amphiicon {
  color: #fff;
}
.quicklinks .quicklinks_item:hover.quicklinks_icons .quicklinks_icons_label, .quicklinks .quicklinks_item.hover.quicklinks_icons .quicklinks_icons_label, .quicklinks .quicklinks_item:focus.quicklinks_icons .quicklinks_icons_label, .quicklinks .quicklinks_item:active.quicklinks_icons .quicklinks_icons_label, .quicklinks .quicklinks_item.active.quicklinks_icons .quicklinks_icons_label {
  color: #fff;
  background: #40530d;
}
.quicklinks .quicklinks_item:hover.quicklinks_icons .quicklinks_icons_label img, .quicklinks .quicklinks_item:hover.quicklinks_icons .quicklinks_icons_label svg, .quicklinks .quicklinks_item.hover.quicklinks_icons .quicklinks_icons_label img, .quicklinks .quicklinks_item.hover.quicklinks_icons .quicklinks_icons_label svg, .quicklinks .quicklinks_item:focus.quicklinks_icons .quicklinks_icons_label img, .quicklinks .quicklinks_item:focus.quicklinks_icons .quicklinks_icons_label svg, .quicklinks .quicklinks_item:active.quicklinks_icons .quicklinks_icons_label img, .quicklinks .quicklinks_item:active.quicklinks_icons .quicklinks_icons_label svg, .quicklinks .quicklinks_item.active.quicklinks_icons .quicklinks_icons_label img, .quicklinks .quicklinks_item.active.quicklinks_icons .quicklinks_icons_label svg {
  fill: #fff;
  -webkit-transition: fill 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: fill 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.quicklinks .quicklinks_item:hover.quicklinks_icons .quicklinks_icons_content, .quicklinks .quicklinks_item.hover.quicklinks_icons .quicklinks_icons_content, .quicklinks .quicklinks_item:focus.quicklinks_icons .quicklinks_icons_content, .quicklinks .quicklinks_item:active.quicklinks_icons .quicklinks_icons_content, .quicklinks .quicklinks_item.active.quicklinks_icons .quicklinks_icons_content {
  color: #fff;
  background: #627f14;
}

#editMode .quicklinks .quicklinks_item .singleContentAreaEdit {
  margin-right: 5px;
}
#editMode .quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_label .singleContentAreaEdit img {
  margin-bottom: 5px;
}
#editMode .quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_label .singleContentAreaEditText {
  display: none;
}
#editMode .quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_label .singleContentAreaEdit img {
  position: relative;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  left: -5px;
  margin-bottom: 5px;
}

.quicklinks__icons-left {
  -webkit-transform: translate(-100%, -45%);
          transform: translate(-100%, -45%);
  left: 0;
}
.quicklinks__icons-left .quicklinks_item {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  left: 45px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: left 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: left 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.quicklinks__icons-left .quicklinks_item:hover, .quicklinks__icons-left .quicklinks_item.hover {
  left: 0;
}
.quicklinks__icons-left .quicklinks_item.quicklinks_box .quicklinks_box_label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.quicklinks__icons-left .quicklinks_item.quicklinks_icons .quicklinks_icons_label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

#editMode .headerEditLink {
  left: 35px;
}
@media screen and (max-width: 767px) {
  #editMode .headerEditLink {
    left: -35px;
  }
}
#editMode .quicklinks__icons-left .quicklinks_item.quicklinks_icons .quicklinks_icons_label .singleContentAreaEdit {
  float: right;
}
#editMode .quicklinks__icons-left .quicklinks_item.quicklinks_icons .quicklinks_icons_label .singleContentAreaEdit img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.quicklinks__icons-right {
  -webkit-transform: translate(200%, -45%);
          transform: translate(200%, -45%);
  right: 0;
}
.quicklinks__icons-right .quicklinks_item {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  float: right;
  right: 45px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: right 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: right 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.quicklinks__icons-right .quicklinks_item:hover, .quicklinks__icons-right .quicklinks_item.hover {
  right: 0;
}
.quicklinks__icons-right .quicklinks_item.quicklinks_box .quicklinks_box_label {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.quicklinks__icons-right .quicklinks_item.quicklinks_icons .quicklinks_icons_label {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.seo-navigation__top-right {
  position: fixed;
  top: 0;
  right: 80px;
  display: none;
  z-index: 900;
}
#editMode .seo-navigation__top-right {
  display: block;
}
.seo-navigation__top-right .seo-navigation_label {
  background: #29b8e2;
  color: #fff;
  padding: 5px 15px;
  font-size: 0.8rem;
  cursor: pointer;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
}
.seo-navigation__top-right .seo-navigation_wrapper {
  position: fixed;
  top: 40px;
  background: #fff;
  padding: 15px 30px;
  right: -600px;
  visibility: hidden;
  opacity: 0;
  -webkit-box-shadow: 0 0 0 4000px rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 4000px rgba(0, 0, 0, 0);
  max-width: 1000px;
  border-radius: 5px;
  z-index: 900;
  -webkit-transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  margin-left: 80px;
}
.seo-navigation__top-right .seo-navigation_wrapper .seoNavigation-nav > li {
  display: inline-block;
}
.seo-navigation__top-right .seo-navigation_wrapper .seoNavigation-nav > li > span {
  position: relative;
}
.seo-navigation__top-right .seo-navigation_wrapper .seoNavigation-nav > li > span > a {
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #444;
  text-transform: uppercase;
  padding: 10px 15px;
  line-height: 1.5;
}
.seo-navigation__top-right .seo-navigation_wrapper .seoNavigation-nav > li > span > a:hover {
  color: #2b2b2b;
}
.seo-navigation__top-right .seo-navigation_wrapper .seoNavigation-nav > li > span > a.editButton {
  top: 8px;
  left: auto;
}
.seo-navigation__top-right .seo-navigation_wrapper.open {
  right: 80px;
  opacity: 1;
  visibility: visible;
  -webkit-box-shadow: 0 0 0 4000px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 0 4000px rgba(0, 0, 0, 0.6);
  -webkit-transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.seo-navigation__top-right .seo-navigation_close-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: -12px;
  right: -12px;
  background: #fff;
  text-align: center;
  color: #444;
  border-radius: 40px;
  padding-top: 2px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
  border: 1px solid #999;
  cursor: pointer;
  z-index: 900;
}
.seo-navigation__top-right .seo-navigation_close-icon:hover {
  color: #5e5e5e;
}

/* SLIDER ADDON BOTTOM */
.slider-addon-bottom {
  background-color: #ededed;
  font-size: 0.9rem;
  padding: 20px 0;
}
.slider-addon-bottom .text-wrapper p {
  padding: 0;
  margin: 0;
}

.slider-addon-bottom__breadcrumb {
  background-color: #ededed;
  font-size: 0.9rem;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon {
  display: inline-block;
  margin-right: 5px;
  color: #444;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon a {
  color: #444;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon a:hover {
  color: #3fbfe5;
  opacity: 1;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon:empty {
  display: none;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_text {
  margin-right: 5px;
  color: #444;
  display: inline-block;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_text:empty {
  display: none;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs {
  display: inline-block;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb {
  background: none;
  margin: 0;
  padding: 0;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li a {
  color: #444;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li a:hover {
  color: #3fbfe5;
  opacity: 1;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li + li:before {
  color: #444;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li.active a {
  font-weight: 700;
}

/* SLIDER */
.slider {
  position: relative;
  background-color: #FFF;
  /* Pagespeed Block */
}
.slider.slider_big {
  min-height: 50vh;
}
.slider.slider_big .single-header, .slider.slider_big .amphi-slideshow, .slider.slider_big .amphi-no-slideshow {
  min-height: 50vh;
}
.slider.slider_big .single-header .header-img, .slider.slider_big .amphi-slideshow .header-img, .slider.slider_big .amphi-no-slideshow .header-img {
  min-height: 50vh;
}
.slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline1 {
  font-size: 1.75rem;
}
.slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .headline2, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline2, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline2 {
  font-size: 1.75rem;
}
.slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .text-wrapper, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .text-wrapper, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .text-wrapper {
  font-size: 1.125rem;
}
.slider.slider_big .single-header .header-img.video-img, .slider.slider_big .amphi-slideshow .header-img.video-img, .slider.slider_big .amphi-no-slideshow .header-img.video-img {
  overflow: hidden;
}
.slider.slider_big .single-header .header-img.video-img .video-wrapper video, .slider.slider_big .amphi-slideshow .header-img.video-img .video-wrapper video, .slider.slider_big .amphi-no-slideshow .header-img.video-img .video-wrapper video {
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.slider.slider_small {
  min-height: 35vh;
}
.slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
  min-height: 35vh;
}
.slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
  min-height: 35vh;
}
.slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline1 {
  font-size: 1.75rem;
}
.slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .headline2, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline2, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline2 {
  font-size: 1.75rem;
}
.slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .text-wrapper, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .text-wrapper, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .text-wrapper {
  font-size: 1.125rem;
}
.slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
  overflow: hidden;
}
.slider.slider_small .single-header .header-img .video-wrapper video, .slider.slider_small .amphi-slideshow .header-img .video-wrapper video, .slider.slider_small .amphi-no-slideshow .header-img .video-wrapper video {
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.slider .header-img {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.slider .header-img .caption-wrapper {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 15px;
  position: relative;
  z-index: 100;
}
.slider .header-img .caption-wrapper .carousel-caption {
  -webkit-transition: none;
  transition: none;
  background: transparent;
  margin: 60px 0;
  padding: 0;
  display: inline-block;
  max-width: 100%;
  word-break: break-word;
  left: unset;
  right: unset;
  top: unset;
  bottom: unset;
  position: static;
}
.slider .header-img .caption-wrapper .carousel-caption .headline1 {
  color: #fff;
}
.slider .header-img .caption-wrapper .carousel-caption .headline1 a {
  color: #fff;
}
.slider .header-img .caption-wrapper .carousel-caption .headline1 a:hover {
  color: #fff;
}
.slider .header-img .caption-wrapper .carousel-caption .headline2 {
  color: #fff;
}
.slider .header-img .caption-wrapper .carousel-caption .headline2 a {
  color: #fff;
}
.slider .header-img .caption-wrapper .carousel-caption .headline2 a:hover {
  color: #fff;
}
.slider .header-img .caption-wrapper .carousel-caption .text-wrapper {
  color: #fff;
}
.slider .header-img .caption-wrapper .carousel-caption .text-wrapper p {
  margin-bottom: 0;
}
.slider .header-img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.15)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 100%);
}
.slider .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slider .owl-stage:after {
  content: "";
}
.slider .owl-nav div {
  left: 60px;
}
.slider .owl-nav div.owl-next {
  right: 60px;
}
.slider .amphi-slider .single-header .header-img {
  position: relative;
}
.slider .amphi-slider .header-img {
  position: absolute;
}
.slider .amphi-slider .owl-loaded .header-img {
  position: relative;
}
.slider .amphi-slider .owl-carousel {
  display: block;
}

#editMode .slider .amphi-no-slideshow .headerEditLink {
  margin-left: 0;
  position: absolute;
  left: 15px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: 50% 50% 0;
          transform-origin: 50% 50% 0;
}

@media (min-width: 768px) {
  .slider .header-img .caption-wrapper {
    width: 720px;
    margin: 0;
  }
  .slider .header-img .caption-wrapper .carousel-caption {
    padding: 0;
    max-width: 100%;
  }
  .slider.slider_big {
    min-height: 50vh;
  }
  .slider.slider_big .single-header, .slider.slider_big .amphi-slideshow, .slider.slider_big .amphi-no-slideshow {
    min-height: 50vh;
  }
  .slider.slider_big .single-header .header-img, .slider.slider_big .amphi-slideshow .header-img, .slider.slider_big .amphi-no-slideshow .header-img {
    min-height: 50vh;
  }
  .slider.slider_small {
    min-height: 35vh;
  }
  .slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
    min-height: 35vh;
  }
  .slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
    min-height: 35vh;
  }
}
@media (min-width: 992px) {
  .slider .header-img .caption-wrapper {
    width: 870px;
  }
  .slider .header-img .caption-wrapper .carousel-caption {
    max-width: 100%;
  }
  .slider .header-img .owl-dots {
    display: block;
  }
  .slider.slider_big {
    min-height: 70vh;
  }
  .slider.slider_big .single-header, .slider.slider_big .amphi-slideshow, .slider.slider_big .amphi-no-slideshow {
    min-height: 70vh;
  }
  .slider.slider_big .single-header .header-img, .slider.slider_big .amphi-slideshow .header-img, .slider.slider_big .amphi-no-slideshow .header-img {
    min-height: 70vh;
  }
  .slider.slider_small {
    min-height: 35vh;
  }
  .slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
    min-height: 35vh;
  }
  .slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
    min-height: 35vh;
  }
}
@media (min-width: 1050px) {
  .slider .owl-nav {
    display: block;
  }
}
@media (min-width: 1062px) {
  .slider .header-img .caption-wrapper {
    width: 940px;
  }
  .slider .owl-nav {
    display: none;
  }
}
@media (min-width: 1120px) {
  .slider .owl-nav {
    display: block;
  }
}
@media (min-width: 1200px) {
  .slider .header-img .caption-wrapper {
    width: 1070px;
  }
  .slider .owl-nav {
    display: none;
  }
  .slider.slider_big {
    min-height: 75vh;
  }
  .slider.slider_big .single-header, .slider.slider_big .amphi-slideshow, .slider.slider_big .amphi-no-slideshow {
    min-height: 75vh;
  }
  .slider.slider_big .single-header .header-img, .slider.slider_big .amphi-slideshow .header-img, .slider.slider_big .amphi-no-slideshow .header-img {
    min-height: 75vh;
  }
  .slider.slider_small {
    min-height: 35vh;
  }
  .slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
    min-height: 35vh;
  }
  .slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
    min-height: 35vh;
  }
}
@media (min-width: 1250px) {
  .slider .owl-nav {
    display: block;
  }
}
@media (min-width: 1270px) {
  .slider .header-img .caption-wrapper {
    width: 1140px;
  }
  .slider .owl-nav {
    display: none;
  }
}
@media (min-width: 1320px) {
  .slider .owl-nav {
    display: block;
  }
}
.slider__big-caption-center .header-img .caption-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slider__big-caption-center .header-img .caption-wrapper .carousel-caption {
  text-align: center;
}

.slider__big-caption-left .header-img .caption-wrapper {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.slider__big-caption-left .header-img .caption-wrapper .carousel-caption {
  text-align: left;
}

.slider__big-caption-right .header-img .caption-wrapper {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.slider__big-caption-right .header-img .caption-wrapper .carousel-caption {
  text-align: right;
}

.slider__small-caption-center .header-img .caption-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slider__small-caption-center .header-img .caption-wrapper .carousel-caption {
  text-align: center;
}

.slider__small-caption-left .header-img .caption-wrapper {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.slider__small-caption-left .header-img .caption-wrapper .carousel-caption {
  text-align: left;
}

.slider__small-caption-right .header-img .caption-wrapper {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.slider__small-caption-right .header-img .caption-wrapper .carousel-caption {
  text-align: right;
}

/* ==================================================================================== BREAKPOINT SM INCLUDE ======= */
/* ============================================================================= BREAKPOINT MD-Custom INCLUDE ======= */
/* ==================================================================================== BREAKPOINT MD INCLUDE ======= */
/* ================================================================================== BREAKPOINT LG INCLUDE ======= */
/* ================================================================================== BREAKPOINT XL INCLUDE ======= */
/* ================================================================================== BREAKPOINT XXL INCLUDE ======= */
/* ================================================================================== BREAKPOINT XXXL INCLUDE ======= */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
  .offcanvas-header > .offcanvas-header-inner, .offcanvas-body > .offcanvas-body-inner {
    max-width: 750px;
  }
  .slider .header-img .caption-wrapper {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 900px;
  }
  .offcanvas-header > .offcanvas-header-inner, .offcanvas-body > .offcanvas-body-inner {
    max-width: 900px;
  }
  .slider .header-img .caption-wrapper {
    width: 870px;
  }
}
@media (min-width: 1062px) {
  .container {
    width: 970px;
  }
  .offcanvas-header > .offcanvas-header-inner, .offcanvas-body > .offcanvas-body-inner {
    max-width: 970px;
  }
  .slider .header-img .caption-wrapper {
    width: 940px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1100px;
  }
  .offcanvas-header > .offcanvas-header-inner, .offcanvas-body > .offcanvas-body-inner {
    max-width: 1100px;
  }
  .slider .header-img .caption-wrapper {
    width: 1070px;
  }
}
@media (min-width: 1270px) {
  .container {
    width: 1170px;
  }
  .offcanvas-header > .offcanvas-header-inner, .offcanvas-body > .offcanvas-body-inner {
    max-width: 1170px;
  }
  .slider .header-img .caption-wrapper {
    width: 1140px;
  }
}
@media (min-width: 1370px) {
  .container {
    width: 1270px;
  }
  .offcanvas-header > .offcanvas-header-inner, .offcanvas-body > .offcanvas-body-inner {
    max-width: 1270px;
  }
  .slider .header-img .caption-wrapper {
    width: 1240px;
  }
}
@media (min-width: 1470px) {
  .container {
    width: 1370px;
  }
  .offcanvas-header > .offcanvas-header-inner, .offcanvas-body > .offcanvas-body-inner {
    max-width: 1370px;
  }
  .slider .header-img .caption-wrapper {
    width: 1340px;
  }
}
/* ================================================================================= BREAKPOINT XXXXL INCLUDE ======= */
/* ================================================================================ BREAKPOINT XXXXXL INCLUDE ======= */
/* BUTTONS */
a.btn-default, .btn-default,
a.btn-primary, .btn-primary,
a.btn-custom, .btn-custom {
  color: #FFF;
  background-color: #3fbfe5;
  border: none;
  border-radius: 50px;
  margin-top: 18px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
  display: inline-block;
  font-family: "Roboto Condensed", sans-serif;
  padding: 6px 20px 5px 20px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  background: #3fbfe5;
  text-transform: uppercase;
}
a.btn-default:after, .btn-default:after,
a.btn-primary:after, .btn-primary:after,
a.btn-custom:after, .btn-custom:after {
  content: none;
}
a.btn-default:before, .btn-default:before,
a.btn-primary:before, .btn-primary:before,
a.btn-custom:before, .btn-custom:before {
  content: none;
}
a.btn-default:hover, a.btn-default:focus, a.btn-default:active, a.btn-default.active, .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active,
a.btn-primary:hover,
a.btn-primary:focus,
a.btn-primary:active,
a.btn-primary.active, .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active,
a.btn-custom:hover,
a.btn-custom:focus,
a.btn-custom:active,
a.btn-custom.active, .btn-custom:hover, .btn-custom:focus, .btn-custom:active, .btn-custom.active {
  color: #FFF;
  background-color: #1daad4;
  border: none;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  font-size: 1rem;
  background: #95c11f;
  border-radius: 50px;
  text-transform: uppercase;
}
a.btn-default:hover:after, a.btn-default:focus:after, a.btn-default:active:after, a.btn-default.active:after, .btn-default:hover:after, .btn-default:focus:after, .btn-default:active:after, .btn-default.active:after,
a.btn-primary:hover:after,
a.btn-primary:focus:after,
a.btn-primary:active:after,
a.btn-primary.active:after, .btn-primary:hover:after, .btn-primary:focus:after, .btn-primary:active:after, .btn-primary.active:after,
a.btn-custom:hover:after,
a.btn-custom:focus:after,
a.btn-custom:active:after,
a.btn-custom.active:after, .btn-custom:hover:after, .btn-custom:focus:after, .btn-custom:active:after, .btn-custom.active:after {
  content: none;
}
a.btn-default:hover:before, a.btn-default:focus:before, a.btn-default:active:before, a.btn-default.active:before, .btn-default:hover:before, .btn-default:focus:before, .btn-default:active:before, .btn-default.active:before,
a.btn-primary:hover:before,
a.btn-primary:focus:before,
a.btn-primary:active:before,
a.btn-primary.active:before, .btn-primary:hover:before, .btn-primary:focus:before, .btn-primary:active:before, .btn-primary.active:before,
a.btn-custom:hover:before,
a.btn-custom:focus:before,
a.btn-custom:active:before,
a.btn-custom.active:before, .btn-custom:hover:before, .btn-custom:focus:before, .btn-custom:active:before, .btn-custom.active:before {
  content: none;
}
/* GLOSSAR BUTTONS */
.Special_Glossary .list-inline li a.btn:before, .Special_Glossary .list-inline li a.btn:after {
  display: none;
}

/* ZURÜCK BUTTONS */
a.btn-back:before, .btn-back:before {
  content: "\f104";
  font: normal normal normal 14px/1 FontAwesome;
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  margin-right: 10px;
}
a.btn-back:after, .btn-back:after {
  content: none;
}
/* SUCHE BUTTONS */
/* ICON BUTTONS */
a.btn-icon:before, a.btn-icon:after, .btn-icon:before, .btn-icon:after {
  display: none;
}

/* HEADLINE */
.headline1 {
  font-size: 1.75rem;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.1;
  margin: 0 0 10px 0;
  font-weight: 600;
  color: #666666;
}

.headline2 {
  font-size: 1.75rem;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.1;
  margin-bottom: 10px;
  font-weight: 400;
  color: #3fbfe5;
}

.headline3 {
  font-size: 1.4rem;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.1;
  margin-bottom: 10px;
  font-weight: 600;
  color: #666666;
}

.headline4 {
  font-size: 1.4625rem;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 500;
  color: inherit;
}

.headline5 {
  font-size: 1.40625rem;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 500;
  color: inherit;
}

.headline6 {
  font-size: 1.125rem;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 500;
  color: inherit;
}

/* LINKS */
a {
  color: #3fbfe5;
  text-decoration: none;
}
a, a:visited, a:focus, a:active, a:hover {
  outline: 0 none !important;
  -webkit-transition: color 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
a:hover, a:focus {
  color: #95c11f;
  text-decoration: none;
}

/* MOBILE NAVIGATION */
.mobile-nav,
.mobile-nav.type-collapse {
  background: #fff;
}
.mobile-nav .level-1,
.mobile-nav.type-collapse .level-1 {
  background: #fff;
}
.mobile-nav .level-1 > li a,
.mobile-nav.type-collapse .level-1 > li a {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #444;
  text-transform: none;
  padding: 10px 50px 10px 15px;
  line-height: 1.5;
}
.mobile-nav .level-1 > li.active > a,
.mobile-nav.type-collapse .level-1 > li.active > a {
  color: #3fbfe5;
}
.mobile-nav .level-1 > li span.dropdown-toggle,
.mobile-nav.type-collapse .level-1 > li span.dropdown-toggle {
  background-color: #fff;
  border-left-color: #d9d9d9;
  color: #444;
  width: 50px;
  height: 100%;
  padding: 10px 15px;
  line-height: 1.5;
}
.mobile-nav .level-1 > li.dropdown-entry.opened,
.mobile-nav.type-collapse .level-1 > li.dropdown-entry.opened {
  background-color: #fff;
}
.mobile-nav .level-1 > li.dropdown-entry.opened span.dropdown-toggle,
.mobile-nav.type-collapse .level-1 > li.dropdown-entry.opened span.dropdown-toggle {
  background-color: #fff;
  border-left-color: #d9d9d9;
  color: #444;
  width: 50px;
  height: 100%;
  padding: 10px 15px;
  line-height: 1.5;
}
.mobile-nav .level-1 > li ul li.dropdown-entry.opened,
.mobile-nav.type-collapse .level-1 > li ul li.dropdown-entry.opened {
  background-color: #fff;
}
.mobile-nav .level-1 > li ul li a,
.mobile-nav.type-collapse .level-1 > li ul li a {
  font-size: 1.125rem;
  font-weight: 500;
  color: #444;
  padding: 10px 50px 10px 15px;
  border-bottom: none;
  letter-spacing: 0.2px;
  line-height: 1.5;
  text-transform: none;
}
.mobile-nav .level-1 > li ul li a:before,
.mobile-nav.type-collapse .level-1 > li ul li a:before {
  content: "\f105";
  font: normal normal normal 14px/1 FontAwesome;
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  margin-right: 10px;
}
.mobile-nav .level-1 > li ul li a:after,
.mobile-nav.type-collapse .level-1 > li ul li a:after {
  content: none;
}
.mobile-nav .level-1 > li ul li.active > a,
.mobile-nav.type-collapse .level-1 > li ul li.active > a {
  color: #3fbfe5;
}
.mobile-nav .level-1 > li ul li ul li a,
.mobile-nav.type-collapse .level-1 > li ul li ul li a {
  font-weight: 400;
  padding-left: 30px;
  padding: 10px 50px 10px 30px;
}
.mobile-nav .level-1 > li ul li ul li.active > a,
.mobile-nav.type-collapse .level-1 > li ul li ul li.active > a {
  color: #3fbfe5;
}
.mobile-nav .level-1 > li ul li ul li ul li a,
.mobile-nav.type-collapse .level-1 > li ul li ul li ul li a {
  padding-left: 45px;
  padding: 10px 50px 10px 45px;
}
.mobile-nav .level-1 > li ul li ul li ul li.active > a,
.mobile-nav.type-collapse .level-1 > li ul li ul li ul li.active > a {
  color: #3fbfe5;
}
.mobile-nav .level-1 > li ul li ul li ul li ul li a,
.mobile-nav.type-collapse .level-1 > li ul li ul li ul li ul li a {
  padding-left: 60px;
  padding: 10px 50px 10px 60px;
}
.mobile-nav .level-1 > li ul li ul li ul li ul li.active > a,
.mobile-nav.type-collapse .level-1 > li ul li ul li ul li ul li.active > a {
  color: #3fbfe5;
}

/* SELECT COLOR */
::-moz-selection {
  background-color: #3fbfe5;
  color: #fff;
}
::selection {
  background-color: #3fbfe5;
  color: #fff;
}

::-moz-selection {
  background-color: #3fbfe5;
  color: #fff;
}

/* BASIC HTML/BODY */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  color: #444;
  background-color: #fff;
}

/* THUMBNAILS */
.thumbnail {
  padding: 0;
  border: 0;
  background-color: transparent;
}
.thumbnail > a {
  opacity: 1;
  -webkit-transition: opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
.thumbnail > a:hover {
  opacity: 0.7;
}

/* SVG ICONS */
.svg-amphiicon:before {
  padding-top: 28%;
}
.svg-amphiicon svg.amphiicon {
  width: 100%;
  fill: #444;
}
.svg-amphiicon svg.amphiicon .fa-primary {
  fill: #444;
}
.svg-amphiicon svg.amphiicon .fa-secondary {
  fill: #444;
  opacity: 0.4;
}

/* ==================================================================================================== BASIC ======= */
/* =================================================================================================== HEADER ======= */
.header .logo-wrapper .hamburger {
  -webkit-transition: padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  padding: 0 15px;
}
.header .logo-wrapper .hamburger .hamburger-box {
  height: auto;
}
.header.fixed .header_content {
  font-size: 0.85rem;
}
.header.fixed .logo img {
  max-width: 75%;
}

/* =================================================================================================== SLIDER ======= */
/* ================================================================================================== CONTENT ======= */
/* =================================================================================================== FOOTER ======= */
/* ================================================================================================= EDITMODE ======= */
body#editMode .adminModuleHeaderBar div b {
  top: -7px;
}
body#editMode .editButton {
  z-index: 400;
}
body#editMode .headerEditLink {
  z-index: 750;
}

/* ============================================================================================ MEDIA QUERIES ======= */
@media (max-width: 1199px) {
  html {
    font-size: calc(100% - 5%);
  }
}
@media (max-width: 991px) {
  html {
    font-size: calc(100% - 10%);
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100% - 20%);
  }
}
/* ==================================================================================================== BASIC ======= */
body {
  background: #f2fbff;
}

@media (min-width: 992px) and (max-width: 1061px) {
  .container {
    width: 970px;
  }
}

.headline-wrapper + .text-wrapper {
  margin-top: 10px;
}

a.btn-back:hover:before, a.btn-back:focus:before, .btn-back:hover:before, .btn-back:focus:before {
  content: "\f104" !important;
}

/* =================================================================================================== HEADER ======= */
header .header.header__logo-left-nav-right {
  padding: 0;
}
header .header.header__logo-left-nav-right .logo-wrapper {
  position: absolute;
  left: 15px;
  top: 0;
}
header .header.header__logo-left-nav-right .logo-wrapper .logo {
  padding: 25px;
  background: #FFF;
  -webkit-box-shadow: 0 4px 4px -4px #cecece;
          box-shadow: 0 4px 4px -4px #cecece;
}
header .header.header__logo-left-nav-right .logo-wrapper .logo img, header .header.header__logo-left-nav-right .logo-wrapper .logo svg {
  max-width: 350px;
}
@media (max-width: 1199px) {
  header .header.header__logo-left-nav-right .logo-wrapper .logo img, header .header.header__logo-left-nav-right .logo-wrapper .logo svg {
    max-width: 300px;
  }
}
@media (max-width: 991px) {
  header .header.header__logo-left-nav-right .logo-wrapper .logo img, header .header.header__logo-left-nav-right .logo-wrapper .logo svg {
    max-width: 250px;
  }
}
@media (max-width: 767px) {
  header .header.header__logo-left-nav-right .logo-wrapper .logo img, header .header.header__logo-left-nav-right .logo-wrapper .logo svg {
    max-width: 150px;
  }
}
header .header.header__logo-left-nav-right .top-nav {
  padding-left: 250px;
}
@media (max-width: 1199px) {
  header .header.header__logo-left-nav-right .top-nav {
    padding-left: 200px;
  }
}
@media (max-width: 1269px) {
  header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li > span > a {
    padding: 20px 10px;
  }
}
@media (max-width: 1199px) {
  header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li > span > a {
    font-size: 1.125rem;
  }
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li:hover .level-3, header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li:focus .level-3 {
  opacity: 1;
  visibility: visible;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-2 > li.has-children > span > a {
  padding-bottom: 5px;
  border: none;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-3 {
  position: relative;
  left: 0;
  opacity: 0;
  visibility: hidden;
  padding: 0 0 5px 35px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: none;
          box-shadow: none;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-3 > li > span > a {
  font-size: 0.9rem;
  font-weight: 400;
  padding: 3px 0;
  border: none;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-3 > li > span > a:before {
  display: none;
}
header .header.header__logo-left-nav-right.fixed .logo-wrapper .logo img, header .header.header__logo-left-nav-right.fixed .logo-wrapper .logo svg {
  max-width: 250px;
}
@media (max-width: 767px) {
  header .header.header__logo-left-nav-right.fixed .logo-wrapper .logo img, header .header.header__logo-left-nav-right.fixed .logo-wrapper .logo svg {
    max-width: 150px;
  }
}

/* =================================================================================================== SLIDER ======= */
.slider-section {
  position: relative;
}
.slider-section .icon-teaser-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 150;
}
@media (max-width: 991px) {
  .slider-section .icon-teaser-wrapper {
    position: relative;
    background-color: #fff;
  }
}
.slider-section .icon-teaser-wrapper .row {
  margin: 0;
}
@media (max-width: 991px) {
  .slider-section .icon-teaser-wrapper .row {
    margin: 0 -15px;
  }
}
.slider-section .icon-teaser-wrapper .row > [class*=col-] {
  padding: 0;
}
@media (max-width: 991px) {
  .slider-section .icon-teaser-wrapper .row > [class*=col-] {
    padding: 0 15px;
  }
}
.slider-section .icon-teaser-wrapper .row > [class*=col-]:last-child .icon-teaser-inner {
  border-right: 1px solid #000;
}
@media (max-width: 991px) {
  .slider-section .icon-teaser-wrapper .row > [class*=col-]:last-child .icon-teaser-inner {
    border-right: none;
  }
}
.slider-section .icon-teaser-wrapper .icon-teaser-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0;
  border-left: 1px solid #000;
}
@media (max-width: 991px) {
  .slider-section .icon-teaser-wrapper .icon-teaser-inner {
    border-left: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 991px) {
  .slider-section .icon-teaser-wrapper .icon-teaser-inner.icon-sp, .slider-section .icon-teaser-wrapper .icon-teaser-inner.icon-ad {
    border-bottom: 1px solid #000;
  }
}
@media (max-width: 767px) {
  .slider-section .icon-teaser-wrapper .icon-teaser-inner.icon-wikp {
    border-bottom: 1px solid #000;
  }
}
.slider-section .icon-teaser-wrapper .icon-teaser-inner .icon-teaser-icon {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .slider-section .icon-teaser-wrapper .icon-teaser-inner .icon-teaser-icon {
    margin-bottom: 0;
    margin-right: 30px;
  }
}
.slider-section .icon-teaser-wrapper .icon-teaser-inner .icon-teaser-icon img {
  max-width: 125px;
}
@media (max-width: 991px) {
  .slider-section .icon-teaser-wrapper .icon-teaser-inner .icon-teaser-icon img {
    max-width: 100px;
  }
}
.slider-section .icon-teaser-wrapper .icon-teaser-inner .icon-teaser-text {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.75rem;
  line-height: 1.1;
  text-align: center;
}
@media (max-width: 991px) {
  .slider-section .icon-teaser-wrapper .icon-teaser-inner .icon-teaser-text {
    text-align: left;
  }
}
.slider-section .icon-teaser-wrapper .icon-teaser-inner .icon-teaser-text p {
  margin: 0;
}

@media (min-width: 992px) and (max-width: 1061px) {
  .slider.slider_big .single-header .header-img .caption-wrapper, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper {
    width: 940px;
  }
}
@media (max-width: 768px) {
  .slider.slider_big .single-header .header-img .caption-wrapper, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper {
    width: 100%;
  }
}
.slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption {
  text-shadow: none;
  margin: 180px 0 60px 0;
}
@media (max-width: 991px) {
  .slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption {
    margin: 150px 0 120px 0;
  }
}
.slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline1 {
  display: inline;
  font-size: 3.75rem;
  font-weight: 400;
  line-height: calc(3.75rem + 30px);
  background: #3fbfe5;
  color: #FFF;
  padding: 5px 15px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media (max-width: 1199px) {
  .slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline1 {
    font-size: 3rem;
    line-height: calc(3rem + 25px);
  }
}
@media (max-width: 991px) {
  .slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline1 {
    font-size: 2.5rem;
    line-height: calc(2.5rem + 20px);
  }
}
@media (max-width: 767px) {
  .slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline1 {
    font-size: 2rem;
    line-height: calc(2rem + 20px);
  }
}
.slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .slider_content-wrapper, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .slider_content-wrapper, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .slider_content-wrapper {
  max-width: 585px;
  background: #FFF;
  margin-top: 14px;
  padding: 15px;
}
@media (max-width: 1199px) {
  .slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .slider_content-wrapper, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .slider_content-wrapper, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .slider_content-wrapper {
    max-width: 500px;
  }
}
.slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .headline2, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .headline2, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .headline2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #95c11f;
}
@media (max-width: 1199px) {
  .slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .headline2, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .headline2, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .headline2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 991px) {
  .slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .headline2, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .headline2, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .headline2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 767px) {
  .slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .headline2, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .headline2, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .headline2 {
    font-size: 1.75rem;
  }
}
.slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .headline2 a, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .headline2 a, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .headline2 a {
  color: #95c11f;
}
.slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .headline2 + .btn, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .headline2 + .btn, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .headline2 + .btn {
  margin-top: 8px;
}
.slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .text-wrapper, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .text-wrapper, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .slider_content-wrapper .text-wrapper {
  color: #444;
}
@media (min-width: 992px) and (max-width: 1061px) {
  .slider.slider_small .single-header .header-img .caption-wrapper, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper {
    width: 940px;
  }
}
@media (max-width: 768px) {
  .slider.slider_small .single-header .header-img .caption-wrapper, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper {
    width: 100%;
  }
}
.slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption {
  margin: 120px 0 60px 0;
}
.slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline1 {
  display: inline;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: calc(2.75rem + 30px);
  background: #3fbfe5;
  color: #FFF;
  padding: 5px 15px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media (max-width: 1199px) {
  .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline1 {
    font-size: 2rem;
    line-height: calc(2rem + 25px);
  }
}
@media (max-width: 991px) {
  .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline1 {
    font-size: 1.5rem;
    line-height: calc(1.5rem + 20px);
  }
}
@media (max-width: 767px) {
  .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline1 {
    font-size: 1.5rem;
    line-height: calc(1.5rem + 20px);
  }
}
.slider.slider_big .header-img:after, .slider.slider_small .header-img:after {
  display: none !important;
}
.slider.slider_big .slider-disturber, .slider.slider_small .slider-disturber {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 10;
}
@media (max-width: 767px) {
  .slider.slider_big .slider-disturber, .slider.slider_small .slider-disturber {
    top: 10px;
    right: 10px;
  }
}
.slider.slider_big .slider-disturber img, .slider.slider_small .slider-disturber img {
  max-width: 200px;
}
@media (max-width: 991px) {
  .slider.slider_big .slider-disturber img, .slider.slider_small .slider-disturber img {
    max-width: 150px;
  }
}
@media (max-width: 767px) {
  .slider.slider_big .slider-disturber img, .slider.slider_small .slider-disturber img {
    max-width: 100px;
  }
}

.slider-addon-bottom__breadcrumb {
  background: transparent;
  padding: 0;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner {
  padding: 15px 0;
  border-bottom: 1px solid #e6e6e6;
}
@media (max-width: 767px) {
  .slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon, .slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_text {
    display: none;
  }
}

/* ================================================================================================== CONTENT ======= */
.content:nth-child(even) {
  background-color: transparent;
}

/* =================================================================================================== FOOTER ======= */
.footer {
  font-size: 1rem;
}
.footer .footer_background-inner {
  padding: 60px 0 30px 0;
}

.footer-addon-bottom {
  font-size: 1rem;
  background: #eeeeee;
}
.footer-addon-bottom .footer-addon-bottom_inner {
  padding: 0;
}

/* ==================================================================================== RESPONSIVE NAVIGATION ======= */
.navigation-responsive-wrapper-top {
  padding: 20px 60px 0 60px;
}
.navigation-responsive-wrapper-top img, .navigation-responsive-wrapper-top svg {
  max-width: 250px;
}
@media (max-width: 1199px) {
  .navigation-responsive-wrapper-top img, .navigation-responsive-wrapper-top svg {
    max-width: 200px;
  }
}
@media (max-width: 991px) {
  .navigation-responsive-wrapper-top img, .navigation-responsive-wrapper-top svg {
    max-width: 180px;
  }
}
@media (max-width: 767px) {
  .navigation-responsive-wrapper-top img, .navigation-responsive-wrapper-top svg {
    max-width: 150px;
  }
}

/* ==================================================================================== BAUSTEINEINSTELLUNGEN ======= */
.News_News.template-image-left-text-right span.date {
  display: inline-block;
  background: #95c11f;
  color: #fff;
  margin-bottom: 20px;
  padding: 9px 10px 5px 10px;
  border-radius: 50px;
}
.News_News.template-image-left-text-right .module-content-block {
  margin-top: 45px;
  padding-bottom: 30px;
}
.News_News.template-image-left-text-right .module-content-block:first-child {
  margin-top: 0;
}

.Gallery_Album .amphi-slideshow .owl-carousel .owl-stage-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.Gallery_Album .amphi-slideshow .owl-carousel .owl-stage-outer .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.Gallery_Album .amphi-slideshow .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.Gallery_Album .amphi-slideshow .owl-carousel .owl-stage-outer .owl-stage .owl-item .module-content-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.Gallery_Album .amphi-slideshow .owl-carousel .owl-stage-outer .owl-stage .owl-item .module-content-block img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.template-no-slider .slider-addon-bottom .breadcrumb_inner {
  padding-top: 170px;
}
@media (max-width: 1199px) {
  .template-no-slider .slider-addon-bottom .breadcrumb_inner {
    padding-top: 150px;
  }
}
@media (max-width: 991px) {
  .template-no-slider .slider-addon-bottom .breadcrumb_inner {
    padding-top: 140px;
  }
}
@media (max-width: 767px) {
  .template-no-slider .slider-addon-bottom .breadcrumb_inner {
    padding-top: 100px;
  }
}

.module-style__bigger-headline1 .headline1 {
  font-size: 3rem;
}

.template-3-news-per-row-image-top-text-bottom-wall.module-style__box-white .module-content-block {
  margin-bottom: 30px;
}

/* ====================================================================================================== FAQ ======= */
.Special_Faqs .faq-question:first-child .faq-question-inner {
  border-top: none;
  padding: 0;
}
.Special_Faqs .faq-question:first-child .faq-question-inner a {
  padding-top: 0;
}
.Special_Faqs .faq-question:first-child .faq-question-inner a span.amphiicon {
  top: -3px;
  left: 5px;
}
@media (max-width: 1199px) {
  .Special_Faqs .faq-question:first-child .faq-question-inner a span.amphiicon {
    top: -3px;
    left: 5px;
  }
}
@media (max-width: 991px) {
  .Special_Faqs .faq-question:first-child .faq-question-inner a span.amphiicon {
    top: -4px;
    left: 5px;
  }
}
@media (max-width: 767px) {
  .Special_Faqs .faq-question:first-child .faq-question-inner a span.amphiicon {
    top: -6px;
    left: 5px;
  }
}
.Special_Faqs .faq-question:first-child.active .faq-question-inner a span.amphiicon {
  top: -4px;
  left: 10px;
  -webkit-transition: top 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: top 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
@media (max-width: 1199px) {
  .Special_Faqs .faq-question:first-child.active .faq-question-inner a span.amphiicon {
    top: -6px;
    left: 10px;
  }
}
@media (max-width: 991px) {
  .Special_Faqs .faq-question:first-child.active .faq-question-inner a span.amphiicon {
    top: -6px;
    left: 10px;
  }
}
@media (max-width: 767px) {
  .Special_Faqs .faq-question:first-child.active .faq-question-inner a span.amphiicon {
    top: -9px;
    left: 10px;
  }
}
.Special_Faqs .faq-question.active .faq-question-inner a {
  background: transparent;
  color: #3fbfe5;
}
.Special_Faqs .faq-question.active .faq-question-inner a:focus {
  background: transparent;
  color: #3fbfe5;
}
.Special_Faqs .faq-question.active .faq-question-inner a span.amphiicon {
  top: 15px;
  left: 10px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: top 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: top 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
@media (max-width: 1199px) {
  .Special_Faqs .faq-question.active .faq-question-inner a span.amphiicon {
    top: 14px;
    left: 10px;
  }
}
@media (max-width: 991px) {
  .Special_Faqs .faq-question.active .faq-question-inner a span.amphiicon {
    top: 14px;
    left: 10px;
  }
}
@media (max-width: 767px) {
  .Special_Faqs .faq-question.active .faq-question-inner a span.amphiicon {
    top: 11px;
    left: 10px;
  }
}
.Special_Faqs .faq-answer {
  padding-bottom: 30px;
}
.Special_Faqs .faq-answer p {
  padding: 0;
}
.Special_Faqs .faq-question-inner {
  font-size: 1.125rem;
  line-height: 1.563rem;
  font-weight: 700;
  padding: 30px 0 10px 0;
  border-top: 1px solid #3fbfe5;
}
.Special_Faqs .faq-question-inner a {
  display: block;
  font-size: 1.125rem;
  line-height: 1.563rem;
  font-weight: 700;
  color: #444;
  padding: 20px 10px 20px 40px;
}
.Special_Faqs .faq-question-inner a:hover {
  background: transparent;
  color: #3fbfe5;
}
.Special_Faqs .faq-question-inner a:focus {
  color: #3fbfe5;
}
.Special_Faqs .faq-question-inner a span.amphiicon {
  position: absolute;
  top: 17px;
  left: 5px;
  width: 19px;
  height: 30px;
  font-size: 1.875rem;
  color: #3fbfe5;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: top 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: top 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
@media (max-width: 1199px) {
  .Special_Faqs .faq-question-inner a span.amphiicon {
    top: 16px;
    left: 5px;
  }
}
@media (max-width: 991px) {
  .Special_Faqs .faq-question-inner a span.amphiicon {
    top: 16px;
    left: 5px;
  }
}
@media (max-width: 767px) {
  .Special_Faqs .faq-question-inner a span.amphiicon {
    top: 14px;
    left: 5px;
  }
}
.Special_Faqs .faq-content {
  border: none;
}
.Special_Faqs .faq-content.folded-answers .faq-answer p {
  padding: 0 10px 0 40px;
}

/* ================================================================================================= EDITMODE ======= */
/* ============================================================================================ MEDIA QUERIES ======= */
/*# sourceMappingURL=maps/custom.css.map */
