@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
  *
 */
/**
 * @license
 *
 * Font Family: General Sans
 * Designed by: Frode Helland
 * URL: https://www.fontshare.com/fonts/general-sans
 * © 2022 Indian Type Foundry
 *
 * Font Styles:
 * General Sans Variable(Variable font)
 * General Sans Variable Italic(Variable font)
 * General Sans Extralight
 * General Sans Extralight Italic
 * General Sans Light
 * General Sans Light Italic
 * General Sans Regular
 * General Sans Italic
 * General Sans Medium
 * General Sans Medium Italic
 * General Sans Semibold
 * General Sans Semibold Italic
 * General Sans Bold
 * General Sans Bold Italic
 *
*/
/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 700.0;
*
* available axes:

* 'wght' (range from 200.0 to 700.0)

*/
@font-face {
  font-family: "GeneralSans-Variable";
  src: url("../fonts/GeneralSans-Variable.woff2") format("woff2"), url("../fonts/GeneralSans-Variable.woff") format("woff"), url("../fonts/GeneralSans-Variable.ttf") format("truetype");
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}
/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 700.0;
*
* available axes:

* 'wght' (range from 200.0 to 700.0)

*/
@font-face {
  font-family: "GeneralSans-VariableItalic";
  src: url("../fonts/GeneralSans-VariableItalic.woff2") format("woff2"), url("../fonts/GeneralSans-VariableItalic.woff") format("woff"), url("../fonts/GeneralSans-VariableItalic.ttf") format("truetype");
  font-weight: 200 700;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "GeneralSans-Extralight";
  src: url("../fonts/GeneralSans-Extralight.woff2") format("woff2"), url("../fonts/GeneralSans-Extralight.woff") format("woff"), url("../fonts/GeneralSans-Extralight.ttf") format("truetype");
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "GeneralSans-ExtralightItalic";
  src: url("../fonts/GeneralSans-ExtralightItalic.woff2") format("woff2"), url("../fonts/GeneralSans-ExtralightItalic.woff") format("woff"), url("../fonts/GeneralSans-ExtralightItalic.ttf") format("truetype");
  font-weight: 200;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "GeneralSans-Light";
  src: url("../fonts/GeneralSans-Light.woff2") format("woff2"), url("../fonts/GeneralSans-Light.woff") format("woff"), url("../fonts/GeneralSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "GeneralSans-LightItalic";
  src: url("../fonts/GeneralSans-LightItalic.woff2") format("woff2"), url("../fonts/GeneralSans-LightItalic.woff") format("woff"), url("../fonts/GeneralSans-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "GeneralSans-Regular";
  src: url("../fonts/GeneralSans-Regular.woff2") format("woff2"), url("../fonts/GeneralSans-Regular.woff") format("woff"), url("../fonts/GeneralSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "GeneralSans-Italic";
  src: url("../fonts/GeneralSans-Italic.woff2") format("woff2"), url("../fonts/GeneralSans-Italic.woff") format("woff"), url("../fonts/GeneralSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "GeneralSans-Medium";
  src: url("../fonts/GeneralSans-Medium.woff2") format("woff2"), url("../fonts/GeneralSans-Medium.woff") format("woff"), url("../fonts/GeneralSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "GeneralSans-MediumItalic";
  src: url("../fonts/GeneralSans-MediumItalic.woff2") format("woff2"), url("../fonts/GeneralSans-MediumItalic.woff") format("woff"), url("../fonts/GeneralSans-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "GeneralSans-Semibold";
  src: url("../fonts/GeneralSans-Semibold.woff2") format("woff2"), url("../fonts/GeneralSans-Semibold.woff") format("woff"), url("../fonts/GeneralSans-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "GeneralSans-SemiboldItalic";
  src: url("../fonts/GeneralSans-SemiboldItalic.woff2") format("woff2"), url("../fonts/GeneralSans-SemiboldItalic.woff") format("woff"), url("../fonts/GeneralSans-SemiboldItalic.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "GeneralSans-Bold";
  src: url("../fonts/GeneralSans-Bold.woff2") format("woff2"), url("../fonts/GeneralSans-Bold.woff") format("woff"), url("../fonts/GeneralSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "GeneralSans-BoldItalic";
  src: url("../fonts/GeneralSans-BoldItalic.woff2") format("woff2"), url("../fonts/GeneralSans-BoldItalic.woff") format("woff"), url("../fonts/GeneralSans-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}
/**
 * @license
 *
 * Font Family: Satoshi
 * Designed by: Deni Anggara
 * URL: https://www.fontshare.com/fonts/satoshi
 * © 2022 Indian Type Foundry
 *
 * Font Styles:
 * Satoshi Variable(Variable font)
 * Satoshi Variable Italic(Variable font)
 * Satoshi Light
 * Satoshi Light Italic
 * Satoshi Regular
 * Satoshi Italic
 * Satoshi Medium
 * Satoshi Medium Italic
 * Satoshi Bold
 * Satoshi Bold Italic
 * Satoshi Black
 * Satoshi Black Italic
 *
*/
/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 900.0;
*
* available axes:

* 'wght' (range from 300.0 to 900.0)

*/
@font-face {
  font-family: "Satoshi-Variable";
  src: url("../fonts/Satoshi-Variable.woff2") format("woff2"), url("../fonts/Satoshi-Variable.woff") format("woff"), url("../fonts/Satoshi-Variable.ttf") format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}
/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 900.0;
*
* available axes:

* 'wght' (range from 300.0 to 900.0)

*/
@font-face {
  font-family: "Satoshi-VariableItalic";
  src: url("../fonts/Satoshi-VariableItalic.woff2") format("woff2"), url("../fonts/Satoshi-VariableItalic.woff") format("woff"), url("../fonts/Satoshi-VariableItalic.ttf") format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Light";
  src: url("../fonts/Satoshi-Light.woff2") format("woff2"), url("../fonts/Satoshi-Light.woff") format("woff"), url("../fonts/Satoshi-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-LightItalic";
  src: url("../fonts/Satoshi-LightItalic.woff2") format("woff2"), url("../fonts/Satoshi-LightItalic.woff") format("woff"), url("../fonts/Satoshi-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Regular";
  src: url("../fonts/Satoshi-Regular.woff2") format("woff2"), url("../fonts/Satoshi-Regular.woff") format("woff"), url("../fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-Italic";
  src: url("../fonts/Satoshi-Italic.woff2") format("woff2"), url("../fonts/Satoshi-Italic.woff") format("woff"), url("../fonts/Satoshi-Italic.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Medium";
  src: url("../fonts/Satoshi-Medium.woff2") format("woff2"), url("../fonts/Satoshi-Medium.woff") format("woff"), url("../fonts/Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-MediumItalic";
  src: url("../fonts/Satoshi-MediumItalic.woff2") format("woff2"), url("../fonts/Satoshi-MediumItalic.woff") format("woff"), url("../fonts/Satoshi-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Bold";
  src: url("../fonts/Satoshi-Bold.woff2") format("woff2"), url("../fonts/Satoshi-Bold.woff") format("woff"), url("../fonts/Satoshi-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-BoldItalic";
  src: url("../fonts/Satoshi-BoldItalic.woff2") format("woff2"), url("../fonts/Satoshi-BoldItalic.woff") format("woff"), url("../fonts/Satoshi-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Black";
  src: url("../fonts/Satoshi-Black.woff2") format("woff2"), url("../fonts/Satoshi-Black.woff") format("woff"), url("../fonts/Satoshi-Black.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-BlackItalic";
  src: url("../fonts/Satoshi-BlackItalic.woff2") format("woff2"), url("../fonts/Satoshi-BlackItalic.woff") format("woff"), url("../fonts/Satoshi-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: italic;
}
/* ==================================================================================================== BASIC ======= */
/* ================================================================================================== BUTTONS ======= */
/* ============================================================================================ SUCHEN BUTTON ======= */
/* ================================================================================================ HEADLINES ======= */
/* =================================================================================================== HEADER ======= */
/* ======================================================================================= CONTENT NAVIGATION ======= */
/* =================================================================================================== SLIDER ======= */
/* =================================================================================================== FOOTER ======= */
/* =============================================================================================== QUICKLINKS ======= */
/* =============================================================================================== BREADCRUMB ======= */
/* ===================================================================================================== TEAM ======= */
/* ==================================================================================== 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;
  }
}
/* SPORTSUCHE VARIABLEN */
.module-style__match-height-content-gallery.Content_Gallery .slider-text-below-image.amphi-slideshow .owl-carousel .owl-stage-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.module-style__match-height-content-gallery.Content_Gallery .slider-text-below-image.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;
}
.module-style__match-height-content-gallery.Content_Gallery .slider-text-below-image.amphi-slideshow .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.module-style__match-height-content-gallery.Content_Gallery .slider-text-below-image.amphi-slideshow .owl-carousel .owl-stage-outer .owl-stage .owl-item .header-img {
  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%;
}

.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: "Fira Sans";
  font-style: italic;
  font-weight: 300;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans-italic-300.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans";
  font-style: italic;
  font-weight: 400;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans-italic-400.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans";
  font-style: italic;
  font-weight: 500;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans-italic-500.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans";
  font-style: italic;
  font-weight: 600;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans-italic-600.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans";
  font-style: italic;
  font-weight: 700;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans-italic-700.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans";
  font-style: italic;
  font-weight: 800;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans-italic-800.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 300;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans-normal-300.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans-normal-400.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 500;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans-normal-500.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 600;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans-normal-600.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans-normal-700.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 800;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans-normal-800.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans Condensed";
  font-style: italic;
  font-weight: 300;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans_Condensed-italic-300.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans Condensed";
  font-style: italic;
  font-weight: 400;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans_Condensed-italic-400.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans Condensed";
  font-style: italic;
  font-weight: 500;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans_Condensed-italic-500.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans Condensed";
  font-style: italic;
  font-weight: 600;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans_Condensed-italic-600.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans Condensed";
  font-style: italic;
  font-weight: 700;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans_Condensed-italic-700.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans Condensed";
  font-style: normal;
  font-weight: 300;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans_Condensed-normal-300.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans Condensed";
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans_Condensed-normal-400.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans Condensed";
  font-style: normal;
  font-weight: 500;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans_Condensed-normal-500.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans_Condensed-normal-600.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Fira Sans Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  font-stretch: normal;
  src: url(../fonts/Fira_Sans_Condensed-normal-700.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
.accessibility-toggle-fixed .accessibility-toggle-button {
  position: fixed;
  right: 30px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  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;
  font-size: 25px;
  background: #153f95;
  color: #fff;
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: none;
  -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);
}
.accessibility-toggle-fixed .accessibility-toggle-button:hover, .accessibility-toggle-fixed .accessibility-toggle-button:focus {
  background: #0f2c68;
  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);
}

.accessibility__widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100%;
  max-width: 400px;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 0;
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9999;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
@media (max-width: 767px) {
  .accessibility__widget {
    bottom: 25px;
    right: 15px;
    left: 15px;
    width: calc(100% - 30px);
    max-width: 100%;
  }
}
.accessibility__widget.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}

.accessibility-popup-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.accessibility-popup-header .headline3 {
  font-size: 20px;
  font-weight: bold;
  color: #444;
  margin-bottom: 0;
}
.accessibility-popup-header .accessibility-close-button {
  font-size: 25px;
  background: #f5f5f5;
  color: #444;
  padding: 0;
  border: none;
  line-height: 1;
  opacity: 1;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.accessibility-popup-header .accessibility-close-button:hover, .accessibility-popup-header .accessibility-close-button:focus {
  color: #444;
  opacity: 0.7;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}

.accessibility-tile-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
  margin-bottom: 10px;
}

.accessibility-tile {
  position: relative;
  background: #FFF;
  padding: 10px;
  border-radius: 0;
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
  border: none;
  text-align: center;
  -webkit-transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.accessibility-tile i {
  display: block;
  font-size: 20px !important;
  color: #444;
  line-height: 30px !important;
  margin-bottom: 5px;
}
.accessibility-tile .tile-text {
  display: block;
  font-size: 14px !important;
  color: #444;
  line-height: 21px !important;
}
.accessibility-tile .level-indicator {
  margin-top: 5px;
}
.accessibility-tile .indicator-bar {
  display: inline-block;
  width: 10px;
  height: 5px;
  margin: 0;
  border-radius: 0;
  background: #8F8F8F;
}
.accessibility-tile .indicator-bar.active {
  background: #153f95;
}
.accessibility-tile:hover, .accessibility-tile:focus-visible {
  background: #153f95;
  -webkit-transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.accessibility-tile:hover i, .accessibility-tile:focus-visible i {
  color: #fff;
}
.accessibility-tile:hover .tile-text, .accessibility-tile:focus-visible .tile-text {
  color: #fff;
}
.accessibility-tile:hover .indicator-bar, .accessibility-tile:focus-visible .indicator-bar {
  background: #fff;
}
.accessibility-tile:hover .indicator-bar.active, .accessibility-tile:focus-visible .indicator-bar.active {
  background: #0f2c68;
}
.accessibility-tile.is-active {
  outline: 1px solid #000;
  -webkit-transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}

#reset-accessibility-settings {
  margin-top: 10px;
}
#reset-accessibility-settings:before {
  display: none;
}
#reset-accessibility-settings:after {
  content: "\f2ea";
  font-family: "Font Awesome 6 Pro";
}

.accessibility__contrast-mode ::-moz-selection {
  background-color: #000 !important;
  color: #FFF !important;
}

.accessibility__contrast-mode ::selection {
  background-color: #000 !important;
  color: #FFF !important;
}
.accessibility__contrast-mode ::-moz-selection {
  background-color: #000 !important;
  color: #FFF !important;
}
.accessibility__contrast-mode .variant-01 .form-group .form-control, .accessibility__contrast-mode .module-style__company-history .form-group .form-control, .accessibility__contrast-mode .pagination .form-group .form-control, .accessibility__contrast-mode .Special_Html .form-group .form-control, .accessibility__contrast-mode .App_Undertaker_Request .form-group .form-control, .accessibility__contrast-mode .App_Undertaker_Search .form-group .form-control, .accessibility__contrast-mode .Special_ChangingContents .form-group .form-control, .accessibility__contrast-mode .Special_ContactPerson .form-group .form-control, .accessibility__contrast-mode .Newsletter_Subscribe .form-group .form-control, .accessibility__contrast-mode .Newsletter_Unsubscribe .form-group .form-control, .accessibility__contrast-mode .Form_Contact .form-group .form-control, .accessibility__contrast-mode .Form_FormGenerator .form-group .form-control, .accessibility__contrast-mode .Form_Reservation .form-group .form-control, .accessibility__contrast-mode .Login_System_Registration .form-group .form-control, .accessibility__contrast-mode .Login_System_Deregistration .form-group .form-control, .accessibility__contrast-mode .Login_System_Login .form-group .form-control, .accessibility__contrast-mode .Lucene_Search .form-group .form-control, .accessibility__contrast-mode .Lucene_SearchSmall .form-group .form-control, .accessibility__contrast-mode .Addresses_Search .form-group .form-control, .accessibility__contrast-mode .Addresses_SearchMaps .form-group .form-control, .accessibility__contrast-mode .Community_Guestbook .form-group .form-control, .accessibility__contrast-mode .Special_Club_Search .form-group .form-control, .accessibility__contrast-mode .Special_Condolence_CondolenceBook .form-group .form-control, .accessibility__contrast-mode .Special_Condolence .form-group .form-control, .accessibility__contrast-mode .Special_Calendar .form-group .form-control {
  background: #FFF !important;
  color: #000 !important;
  border: 1px solid #000 !important;
}
.accessibility__contrast-mode .variant-01 .form-group .form-control:focus, .accessibility__contrast-mode .module-style__company-history .form-group .form-control:focus, .accessibility__contrast-mode .pagination .form-group .form-control:focus, .accessibility__contrast-mode .Special_Html .form-group .form-control:focus, .accessibility__contrast-mode .App_Undertaker_Request .form-group .form-control:focus, .accessibility__contrast-mode .App_Undertaker_Search .form-group .form-control:focus, .accessibility__contrast-mode .Special_ChangingContents .form-group .form-control:focus, .accessibility__contrast-mode .Special_ContactPerson .form-group .form-control:focus, .accessibility__contrast-mode .Newsletter_Subscribe .form-group .form-control:focus, .accessibility__contrast-mode .Newsletter_Unsubscribe .form-group .form-control:focus, .accessibility__contrast-mode .Form_Contact .form-group .form-control:focus, .accessibility__contrast-mode .Form_FormGenerator .form-group .form-control:focus, .accessibility__contrast-mode .Form_Reservation .form-group .form-control:focus, .accessibility__contrast-mode .Login_System_Registration .form-group .form-control:focus, .accessibility__contrast-mode .Login_System_Deregistration .form-group .form-control:focus, .accessibility__contrast-mode .Login_System_Login .form-group .form-control:focus, .accessibility__contrast-mode .Lucene_Search .form-group .form-control:focus, .accessibility__contrast-mode .Lucene_SearchSmall .form-group .form-control:focus, .accessibility__contrast-mode .Addresses_Search .form-group .form-control:focus, .accessibility__contrast-mode .Addresses_SearchMaps .form-group .form-control:focus, .accessibility__contrast-mode .Community_Guestbook .form-group .form-control:focus, .accessibility__contrast-mode .Special_Club_Search .form-group .form-control:focus, .accessibility__contrast-mode .Special_Condolence_CondolenceBook .form-group .form-control:focus, .accessibility__contrast-mode .Special_Condolence .form-group .form-control:focus, .accessibility__contrast-mode .Special_Calendar .form-group .form-control:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.accessibility__contrast-mode body {
  color: #000 !important;
}
.accessibility__contrast-mode body .headline1, .accessibility__contrast-mode body .headline2, .accessibility__contrast-mode body .headline3 {
  color: #000 !important;
}
.accessibility__contrast-mode body a.btn-default, .accessibility__contrast-mode body .btn-default, .accessibility__contrast-mode body a.btn-primary, .accessibility__contrast-mode body .btn-primary, .accessibility__contrast-mode body a.btn-custom, .accessibility__contrast-mode body .btn-custom {
  background: #000 !important;
  color: #FFF !important;
  border: 2px solid #000 !important;
}
.accessibility__contrast-mode body a.btn-default:hover, .accessibility__contrast-mode body a.btn-default:focus, .accessibility__contrast-mode body .btn-default:hover, .accessibility__contrast-mode body .btn-default:focus, .accessibility__contrast-mode body a.btn-primary:hover, .accessibility__contrast-mode body a.btn-primary:focus, .accessibility__contrast-mode body .btn-primary:hover, .accessibility__contrast-mode body .btn-primary:focus, .accessibility__contrast-mode body a.btn-custom:hover, .accessibility__contrast-mode body a.btn-custom:focus, .accessibility__contrast-mode body .btn-custom:hover, .accessibility__contrast-mode body .btn-custom:focus {
  background: #FFF !important;
  color: #000 !important;
  border: 2px solid #000 !important;
}
.accessibility__contrast-mode body .svg-amphiicon svg.amphiicon {
  fill: #000 !important;
}
.accessibility__contrast-mode body .svg-amphiicon svg.amphiicon .fa-primary, .accessibility__contrast-mode body .svg-amphiicon svg.amphiicon .fa-secondary {
  fill: #000 !important;
}
.accessibility__contrast-mode body a:not(.btn, .contrast-mode-button, .label-list a, .label) {
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
}
.accessibility__contrast-mode body a:not(.btn, .contrast-mode-button, .label-list a, .label):hover, .accessibility__contrast-mode body a:not(.btn, .contrast-mode-button, .label-list a, .label):focus {
  -webkit-text-decoration-style: dotted !important;
          text-decoration-style: dotted !important;
  text-decoration-thickness: 1px !important;
}
.accessibility__contrast-mode body hr {
  border-top: 2px solid #000 !important;
}
.accessibility__contrast-mode body .advancedModuleFeaturesListWrapper a:not(.btn, .contrast-mode-button) {
  text-decoration: none !important;
}
.accessibility__contrast-mode body .thumbnail .caption p {
  color: #000 !important;
}
.accessibility__contrast-mode body .lightboxOverlay {
  background: #FFF !important;
  opacity: 0.95 !important;
}
.accessibility__contrast-mode body .lb-data {
  color: #000 !important;
}
.accessibility__contrast-mode body .lb-data .lb-number {
  color: #000 !important;
}
.accessibility__contrast-mode body .lb-data .lb-close {
  -webkit-filter: brightness(0) invert(0) !important;
          filter: brightness(0) invert(0) !important;
  opacity: 1 !important;
}
.accessibility__contrast-mode body .module-content-block a:not(.btn) {
  color: #000 !important;
  -webkit-transition: border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .module-content-block a:not(.btn):hover, .accessibility__contrast-mode body .module-content-block a:not(.btn):focus {
  color: #000 !important;
  opacity: 1 !important;
  -webkit-transition: border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .module-wrapper.template-headline-on-image .module-content-block .headline-wrapper {
  background: #FFF !important;
}
.accessibility__contrast-mode body header .header-addon-top {
  background: #FFF !important;
  color: #000 !important;
  border-bottom: 1px solid #000 !important;
}
.accessibility__contrast-mode body header .header-addon-top a:not(.btn) {
  color: #000 !important;
}
.accessibility__contrast-mode body header .header-addon-top .amphiicon {
  fill: #000 !important;
}
.accessibility__contrast-mode body header .header-addon-top .toolbar-btn-primary > a:not(.edit-mode-element), .accessibility__contrast-mode body header .header-addon-top .toolbar-btn-primary > .amphiicon, .accessibility__contrast-mode body header .header-addon-top .toolbar-btn-primary button, .accessibility__contrast-mode body header .header-addon-top .toolbar-btn-secondary > a:not(.edit-mode-element), .accessibility__contrast-mode body header .header-addon-top .toolbar-btn-secondary > .amphiicon, .accessibility__contrast-mode body header .header-addon-top .toolbar-btn-secondary button {
  background: #000 !important;
  color: #FFF !important;
  border: 2px solid #000 !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body header .header-addon-top .toolbar-btn-primary > a:not(.edit-mode-element):hover, .accessibility__contrast-mode body header .header-addon-top .toolbar-btn-primary > a:not(.edit-mode-element):focus, .accessibility__contrast-mode body header .header-addon-top .toolbar-btn-primary > .amphiicon:hover, .accessibility__contrast-mode body header .header-addon-top .toolbar-btn-primary > .amphiicon:focus, .accessibility__contrast-mode body header .header-addon-top .toolbar-btn-primary button:hover, .accessibility__contrast-mode body header .header-addon-top .toolbar-btn-primary button:focus, .accessibility__contrast-mode body header .header-addon-top .toolbar-btn-secondary > a:not(.edit-mode-element):hover, .accessibility__contrast-mode body header .header-addon-top .toolbar-btn-secondary > a:not(.edit-mode-element):focus, .accessibility__contrast-mode body header .header-addon-top .toolbar-btn-secondary > .amphiicon:hover, .accessibility__contrast-mode body header .header-addon-top .toolbar-btn-secondary > .amphiicon:focus, .accessibility__contrast-mode body header .header-addon-top .toolbar-btn-secondary button:hover, .accessibility__contrast-mode body header .header-addon-top .toolbar-btn-secondary button:focus {
  background: #FFF !important;
  color: #000 !important;
  border: 2px solid #000 !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body header .header-addon-top .toolbar-btn-primary .amphiicon, .accessibility__contrast-mode body header .header-addon-top .toolbar-btn-secondary .amphiicon {
  fill: #FFF !important;
}
.accessibility__contrast-mode body header .header {
  background: #FFF !important;
}
.accessibility__contrast-mode body header .header .top-nav .navigation > li > span > a {
  color: #000 !important;
}
.accessibility__contrast-mode body header .header .top-nav .navigation > li:hover > span > a, .accessibility__contrast-mode body header .header .top-nav .navigation > li.hover > span > a {
  color: #000 !important;
}
.accessibility__contrast-mode body header .header .top-nav .navigation.level-2 {
  border-top: 3px solid #000 !important;
}
.accessibility__contrast-mode body header .header .top-nav .megamenue-wrapper {
  border-top: 3px solid #000 !important;
}
.accessibility__contrast-mode body header .header .top-nav .megamenue-wrapper .navigation.level-2 {
  border-top: none !important;
}
.accessibility__contrast-mode body header .header .top-nav .megamenue-wrapper.special-megamenu-list .level-2 > li > span > a {
  background: #FFF !important;
}
.accessibility__contrast-mode body header .header-addon-bottom {
  background: #FFF !important;
}
.accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption .headline1, .accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption .headline2, .accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption .text-wrapper {
  background: #FFF !important;
  color: #000 !important;
  padding: 15px !important;
}
.accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption .headline1 a, .accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption .headline2 a, .accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption .text-wrapper a {
  color: #000 !important;
}
.accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption a.btn-default, .accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption .btn-default, .accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption a.btn-primary, .accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption .btn-primary, .accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption a.btn-custom, .accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption .btn-custom {
  background: #000 !important;
  color: #FFF !important;
  border: 2px solid #FFF !important;
}
.accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption a.btn-default:hover, .accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption a.btn-default:focus, .accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption .btn-default:hover, .accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption .btn-default:focus, .accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption a.btn-primary:hover, .accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption a.btn-primary:focus, .accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption .btn-primary:hover, .accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption .btn-primary:focus, .accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption a.btn-custom:hover, .accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption a.btn-custom:focus, .accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption .btn-custom:hover, .accessibility__contrast-mode body .slider .header-img .caption-wrapper .carousel-caption .btn-custom:focus {
  background: #FFF !important;
  color: #000 !important;
  border: 2px solid #000 !important;
}
.accessibility__contrast-mode body .slider .owl-dots .owl-dot {
  background: #000 !important;
  color: #FFF !important;
  border: 2px solid #FFF !important;
}
.accessibility__contrast-mode body .slider .owl-dots .owl-dot.active {
  background: #FFF !important;
  color: #000 !important;
  border: 2px solid #FFF !important;
}
.accessibility__contrast-mode body .slider .owl-dots .owl-dot:hover, .accessibility__contrast-mode body .slider .owl-dots .owl-dot:focus {
  background: #FFF !important;
  color: #000 !important;
  border: 2px solid #FFF !important;
}
.accessibility__contrast-mode body .slider .owl-item.active:before {
  -webkit-animation: none !important;
          animation: none !important;
}
.accessibility__contrast-mode body .slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon a {
  color: #000 !important;
}
.accessibility__contrast-mode body .slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon a:hover, .accessibility__contrast-mode body .slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon a:focus {
  color: #000 !important;
}
.accessibility__contrast-mode body .slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li.active a {
  color: #000 !important;
}
.accessibility__contrast-mode body .slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li a {
  color: #000 !important;
}
.accessibility__contrast-mode body .slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li a:hover, .accessibility__contrast-mode body .slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li a:focus {
  color: #000 !important;
}
.accessibility__contrast-mode body main .content {
  background: #FFF !important;
}
.accessibility__contrast-mode body main .content > div {
  background: #FFF !important;
}
.accessibility__contrast-mode body main .content .content_sidebar_nav_headline a {
  color: #000 !important;
}
.accessibility__contrast-mode body main .content .content_sidebar_nav .navigation > li span > a {
  color: #000 !important;
}
.accessibility__contrast-mode body footer .footer-addon-top {
  background: #FFF !important;
}
.accessibility__contrast-mode body footer .footer-addon-top > div {
  background: #FFF !important;
}
.accessibility__contrast-mode body footer .footer {
  background: #FFF !important;
}
.accessibility__contrast-mode body footer .footer > div {
  background: #FFF !important;
}
.accessibility__contrast-mode body footer .footer-addon-bottom {
  background: #FFF !important;
}
.accessibility__contrast-mode body .quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_label {
  background: #000 !important;
  color: #FFF !important;
}
.accessibility__contrast-mode body .quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_content {
  background: #FFF !important;
}
.accessibility__contrast-mode body .quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_label {
  background: #000 !important;
  color: #FFF !important;
}
.accessibility__contrast-mode body .quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_content {
  background: #FFF !important;
}
.accessibility__contrast-mode body .quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_content p > a {
  color: #000 !important;
}
.accessibility__contrast-mode body .quicklinks-mobile__icons ul li {
  background: #000 !important;
}
.accessibility__contrast-mode body .quicklinks-mobile__icons ul li a {
  text-decoration: none !important;
  border: 2px solid #000 !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .quicklinks-mobile__icons ul li a .amphiicon {
  color: #FFF !important;
}
.accessibility__contrast-mode body .quicklinks-mobile__icons ul li a:hover, .accessibility__contrast-mode body .quicklinks-mobile__icons ul li a:focus {
  background: #FFF !important;
  border: 2px solid #000 !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .quicklinks-mobile__icons ul li a:hover .amphiicon, .accessibility__contrast-mode body .quicklinks-mobile__icons ul li a:focus .amphiicon {
  color: #000 !important;
}
.accessibility__contrast-mode body .searchbox-wrapper:before {
  background: #FFF !important;
}
.accessibility__contrast-mode body .searchbox-wrapper .searchbox-closeIcon {
  color: #000 !important;
}
.accessibility__contrast-mode body .searchbox-wrapper .form-group fieldset > .row {
  border-bottom: 5px solid #000 !important;
}
.accessibility__contrast-mode body .searchbox-wrapper .form-group .search-input input {
  color: #000 !important;
}
.accessibility__contrast-mode body .searchbox-wrapper .form-group .search-input input::-webkit-input-placeholder {
  color: #000 !important;
}
.accessibility__contrast-mode body .searchbox-wrapper .form-group .search-input input::-moz-placeholder {
  color: #000 !important;
}
.accessibility__contrast-mode body .searchbox-wrapper .form-group .search-input input:-ms-input-placeholder {
  color: #000 !important;
}
.accessibility__contrast-mode body .searchbox-wrapper .form-group .search-input input::-ms-input-placeholder {
  color: #000 !important;
}
.accessibility__contrast-mode body .searchbox-wrapper .form-group .search-input input::placeholder {
  color: #000 !important;
}
.accessibility__contrast-mode body .searchbox-wrapper .form-group .search-btn .btn {
  margin-bottom: 10px !important;
  -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) !important;
  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) !important;
}
.accessibility__contrast-mode body .Special_Club_Search .box-headline {
  background: #000 !important;
  color: #FFF !important;
}
.accessibility__contrast-mode body .News_Newsroom .amphi-slideshow .owl-carousel .owl-nav > div > span, .accessibility__contrast-mode body .News_Newsroom_Teaser .amphi-slideshow .owl-carousel .owl-nav > div > span, .accessibility__contrast-mode body .News_News .amphi-slideshow .owl-carousel .owl-nav > div > span, .accessibility__contrast-mode body .Special_Sponsor .amphi-slideshow .owl-carousel .owl-nav > div > span, .accessibility__contrast-mode body .Content_Gallery .amphi-slideshow .owl-carousel .owl-nav > div > span, .accessibility__contrast-mode body .Gallery_Album .amphi-slideshow .owl-carousel .owl-nav > div > span {
  background: #FFF !important;
  color: #000 !important;
  outline: 2px solid #FFF !important;
  outline-offset: 2px !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), outline 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), outline 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .News_Newsroom .amphi-slideshow .owl-carousel .owl-nav > div > span:hover, .accessibility__contrast-mode body .News_Newsroom .amphi-slideshow .owl-carousel .owl-nav > div > span:focus, .accessibility__contrast-mode body .News_Newsroom_Teaser .amphi-slideshow .owl-carousel .owl-nav > div > span:hover, .accessibility__contrast-mode body .News_Newsroom_Teaser .amphi-slideshow .owl-carousel .owl-nav > div > span:focus, .accessibility__contrast-mode body .News_News .amphi-slideshow .owl-carousel .owl-nav > div > span:hover, .accessibility__contrast-mode body .News_News .amphi-slideshow .owl-carousel .owl-nav > div > span:focus, .accessibility__contrast-mode body .Special_Sponsor .amphi-slideshow .owl-carousel .owl-nav > div > span:hover, .accessibility__contrast-mode body .Special_Sponsor .amphi-slideshow .owl-carousel .owl-nav > div > span:focus, .accessibility__contrast-mode body .Content_Gallery .amphi-slideshow .owl-carousel .owl-nav > div > span:hover, .accessibility__contrast-mode body .Content_Gallery .amphi-slideshow .owl-carousel .owl-nav > div > span:focus, .accessibility__contrast-mode body .Gallery_Album .amphi-slideshow .owl-carousel .owl-nav > div > span:hover, .accessibility__contrast-mode body .Gallery_Album .amphi-slideshow .owl-carousel .owl-nav > div > span:focus {
  background: #FFF !important;
  color: #000 !important;
  outline: 2px solid #000 !important;
  outline-offset: 2px !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), outline 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), outline 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .News_Newsroom .amphi-slideshow .owl-carousel .owl-dots .owl-dot span, .accessibility__contrast-mode body .News_Newsroom_Teaser .amphi-slideshow .owl-carousel .owl-dots .owl-dot span, .accessibility__contrast-mode body .News_News .amphi-slideshow .owl-carousel .owl-dots .owl-dot span, .accessibility__contrast-mode body .Special_Sponsor .amphi-slideshow .owl-carousel .owl-dots .owl-dot span, .accessibility__contrast-mode body .Content_Gallery .amphi-slideshow .owl-carousel .owl-dots .owl-dot span, .accessibility__contrast-mode body .Gallery_Album .amphi-slideshow .owl-carousel .owl-dots .owl-dot span {
  background: #000 !important;
  outline: 2px solid #FFF !important;
  outline-offset: 2px;
  margin: 0 10px;
  -webkit-transition: outline 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: outline 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .News_Newsroom .amphi-slideshow .owl-carousel .owl-dots .owl-dot.active span, .accessibility__contrast-mode body .News_Newsroom_Teaser .amphi-slideshow .owl-carousel .owl-dots .owl-dot.active span, .accessibility__contrast-mode body .News_News .amphi-slideshow .owl-carousel .owl-dots .owl-dot.active span, .accessibility__contrast-mode body .Special_Sponsor .amphi-slideshow .owl-carousel .owl-dots .owl-dot.active span, .accessibility__contrast-mode body .Content_Gallery .amphi-slideshow .owl-carousel .owl-dots .owl-dot.active span, .accessibility__contrast-mode body .Gallery_Album .amphi-slideshow .owl-carousel .owl-dots .owl-dot.active span {
  background: #000 !important;
  outline: 2px solid #000 !important;
  outline-offset: 2px !important;
  -webkit-transition: outline 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: outline 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .News_Newsroom .amphi-slideshow .owl-carousel .owl-dots .owl-dot:hover span, .accessibility__contrast-mode body .News_Newsroom .amphi-slideshow .owl-carousel .owl-dots .owl-dot:focus span, .accessibility__contrast-mode body .News_Newsroom_Teaser .amphi-slideshow .owl-carousel .owl-dots .owl-dot:hover span, .accessibility__contrast-mode body .News_Newsroom_Teaser .amphi-slideshow .owl-carousel .owl-dots .owl-dot:focus span, .accessibility__contrast-mode body .News_News .amphi-slideshow .owl-carousel .owl-dots .owl-dot:hover span, .accessibility__contrast-mode body .News_News .amphi-slideshow .owl-carousel .owl-dots .owl-dot:focus span, .accessibility__contrast-mode body .Special_Sponsor .amphi-slideshow .owl-carousel .owl-dots .owl-dot:hover span, .accessibility__contrast-mode body .Special_Sponsor .amphi-slideshow .owl-carousel .owl-dots .owl-dot:focus span, .accessibility__contrast-mode body .Content_Gallery .amphi-slideshow .owl-carousel .owl-dots .owl-dot:hover span, .accessibility__contrast-mode body .Content_Gallery .amphi-slideshow .owl-carousel .owl-dots .owl-dot:focus span, .accessibility__contrast-mode body .Gallery_Album .amphi-slideshow .owl-carousel .owl-dots .owl-dot:hover span, .accessibility__contrast-mode body .Gallery_Album .amphi-slideshow .owl-carousel .owl-dots .owl-dot:focus span {
  background: #000 !important;
  outline: 2px solid #000 !important;
  outline-offset: 2px !important;
  -webkit-transition: outline 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: outline 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .News_Newsroom a .module-content-block, .accessibility__contrast-mode body .News_Newsroom a .news-slideshow-content-block, .accessibility__contrast-mode body .News_Newsroom_Teaser a .module-content-block, .accessibility__contrast-mode body .News_Newsroom_Teaser a .news-slideshow-content-block {
  color: #000 !important;
}
.accessibility__contrast-mode body .News_Newsroom a .module-content-block .thumbnail .caption p, .accessibility__contrast-mode body .News_Newsroom a .news-slideshow-content-block .thumbnail .caption p, .accessibility__contrast-mode body .News_Newsroom_Teaser a .module-content-block .thumbnail .caption p, .accessibility__contrast-mode body .News_Newsroom_Teaser a .news-slideshow-content-block .thumbnail .caption p {
  color: #000 !important;
}
.accessibility__contrast-mode body .News_Newsroom a .module-content-block .headline3, .accessibility__contrast-mode body .News_Newsroom a .news-slideshow-content-block .headline3, .accessibility__contrast-mode body .News_Newsroom_Teaser a .module-content-block .headline3, .accessibility__contrast-mode body .News_Newsroom_Teaser a .news-slideshow-content-block .headline3 {
  color: #000 !important;
  -webkit-text-decoration-color: #000 !important;
          text-decoration-color: #000 !important;
}
.accessibility__contrast-mode body .News_Newsroom a:hover .module-content-block, .accessibility__contrast-mode body .News_Newsroom a:hover .news-slideshow-content-block, .accessibility__contrast-mode body .News_Newsroom a:focus .module-content-block, .accessibility__contrast-mode body .News_Newsroom a:focus .news-slideshow-content-block, .accessibility__contrast-mode body .News_Newsroom_Teaser a:hover .module-content-block, .accessibility__contrast-mode body .News_Newsroom_Teaser a:hover .news-slideshow-content-block, .accessibility__contrast-mode body .News_Newsroom_Teaser a:focus .module-content-block, .accessibility__contrast-mode body .News_Newsroom_Teaser a:focus .news-slideshow-content-block {
  color: #000 !important;
}
.accessibility__contrast-mode body .News_Newsroom a:hover .module-content-block .headline3, .accessibility__contrast-mode body .News_Newsroom a:hover .news-slideshow-content-block .headline3, .accessibility__contrast-mode body .News_Newsroom a:focus .module-content-block .headline3, .accessibility__contrast-mode body .News_Newsroom a:focus .news-slideshow-content-block .headline3, .accessibility__contrast-mode body .News_Newsroom_Teaser a:hover .module-content-block .headline3, .accessibility__contrast-mode body .News_Newsroom_Teaser a:hover .news-slideshow-content-block .headline3, .accessibility__contrast-mode body .News_Newsroom_Teaser a:focus .module-content-block .headline3, .accessibility__contrast-mode body .News_Newsroom_Teaser a:focus .news-slideshow-content-block .headline3 {
  color: #000 !important;
  -webkit-text-decoration-color: #000 !important;
          text-decoration-color: #000 !important;
  -webkit-text-decoration-style: dotted !important;
          text-decoration-style: dotted !important;
}
.accessibility__contrast-mode body .News_Newsroom .newsroom-tag, .accessibility__contrast-mode body .News_Newsroom_Teaser .newsroom-tag {
  background: #000 !important;
  color: #FFF !important;
  text-decoration: none !important;
}
.accessibility__contrast-mode body .News_Newsroom .news-content-wrapper .news-slideshow-wrapper .amphi-slideshow .owl-nav div {
  background: #FFF !important;
  color: #000 !important;
  border: 2px solid #000 !important;
}
.accessibility__contrast-mode body .News_Newsroom .news-content-wrapper .news-slideshow-wrapper .amphi-slideshow .owl-nav div > span {
  background: transparent !important;
  color: #000 !important;
  outline: none !important;
  outline-offset: 0 !important;
}
.accessibility__contrast-mode body .News_Newsroom .news-content-wrapper .news-slideshow-wrapper .amphi-slideshow .owl-nav div.owl-prev {
  left: 10px !important;
}
.accessibility__contrast-mode body .News_Newsroom .news-content-wrapper .news-slideshow-wrapper .amphi-slideshow .owl-nav div.owl-next {
  right: 10px !important;
}
.accessibility__contrast-mode body .News_Newsroom .news-content-wrapper .news-slideshow-wrapper .amphi-slideshow .owl-nav div:hover, .accessibility__contrast-mode body .News_Newsroom .news-content-wrapper .news-slideshow-wrapper .amphi-slideshow .owl-nav div:focus {
  background: #000 !important;
  color: #FFF !important;
}
.accessibility__contrast-mode body .News_Newsroom .news-content-wrapper .news-slideshow-wrapper .amphi-slideshow .owl-nav div:hover > span, .accessibility__contrast-mode body .News_Newsroom .news-content-wrapper .news-slideshow-wrapper .amphi-slideshow .owl-nav div:focus > span {
  background: transparent !important;
  color: #FFF !important;
  outline: none !important;
  outline-offset: 0 !important;
}
.accessibility__contrast-mode body .News_Newsroom .news-moreNews-wrapper > a .news-sidebar-shortnews {
  color: #000 !important;
}
.accessibility__contrast-mode body .News_Newsroom .news-moreNews-wrapper > a .news-sidebar-shortnews .headline4 {
  color: #000 !important;
  -webkit-text-decoration-color: #000 !important;
          text-decoration-color: #000 !important;
}
.accessibility__contrast-mode body .News_Newsroom .news-moreNews-wrapper > a:hover .news-sidebar-shortnews, .accessibility__contrast-mode body .News_Newsroom .news-moreNews-wrapper > a:focus .news-sidebar-shortnews {
  color: #000 !important;
}
.accessibility__contrast-mode body .News_Newsroom .news-moreNews-wrapper > a:hover .news-sidebar-shortnews .headline4, .accessibility__contrast-mode body .News_Newsroom .news-moreNews-wrapper > a:focus .news-sidebar-shortnews .headline4 {
  color: #000 !important;
  -webkit-text-decoration-color: #000 !important;
          text-decoration-color: #000 !important;
  -webkit-text-decoration-style: dotted !important;
          text-decoration-style: dotted !important;
}
.accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption .headline1, .accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption .headline2, .accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption .text-wrapper {
  background: #FFF !important;
  color: #000 !important;
  padding: 15px !important;
}
.accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption .headline1 a, .accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption .headline2 a, .accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption .text-wrapper a {
  color: #000 !important;
}
.accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption a.btn-default, .accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption .btn-default, .accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption a.btn-primary, .accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption .btn-primary, .accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption a.btn-custom, .accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption .btn-custom {
  background: #000 !important;
  color: #FFF !important;
  border: 2px solid #FFF !important;
}
.accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption a.btn-default:hover, .accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption a.btn-default:focus, .accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption .btn-default:hover, .accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption .btn-default:focus, .accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption a.btn-primary:hover, .accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption a.btn-primary:focus, .accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption .btn-primary:hover, .accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption .btn-primary:focus, .accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption a.btn-custom:hover, .accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption a.btn-custom:focus, .accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption .btn-custom:hover, .accessibility__contrast-mode body .Content_Gallery .slider-text-on-image .header-img .gallery-carousel-caption .btn-custom:focus {
  background: #FFF !important;
  color: #000 !important;
  border: 2px solid #000 !important;
}
.accessibility__contrast-mode body .Special_Faqs .faq-content.folded-answers .faq-question-inner a {
  background: #FFF !important;
  color: #000 !important;
  border: 2px solid #000 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 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) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 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) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 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) !important;
}
.accessibility__contrast-mode body .Special_Faqs .faq-content.folded-answers .faq-question-inner a .amphiicon:before {
  color: #000 !important;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .Special_Faqs .faq-content.folded-answers .faq-question-inner a:hover, .accessibility__contrast-mode body .Special_Faqs .faq-content.folded-answers .faq-question-inner a:focus {
  background: #000 !important;
  color: #FFF !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 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) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 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) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 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) !important;
}
.accessibility__contrast-mode body .Special_Faqs .faq-content.folded-answers .faq-question-inner a:hover .amphiicon:before, .accessibility__contrast-mode body .Special_Faqs .faq-content.folded-answers .faq-question-inner a:focus .amphiicon:before {
  color: #FFF !important;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .Special_Faqs .faq-content.folded-answers .faq-question.active .faq-question-inner a {
  background: #000 !important;
  color: #FFF !important;
  border: 2px solid #000 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 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) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 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) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 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) !important;
}
.accessibility__contrast-mode body .Special_Faqs .faq-content.folded-answers .faq-question.active .faq-question-inner a .amphiicon:before {
  color: #FFF !important;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .Special_Faqs .faq-content.folded-answers .faq-question.active .faq-question-inner a:hover, .accessibility__contrast-mode body .Special_Faqs .faq-content.folded-answers .faq-question.active .faq-question-inner a:focus {
  background: #FFF !important;
  color: #000 !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 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) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 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) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 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) !important;
}
.accessibility__contrast-mode body .Special_Faqs .faq-content.folded-answers .faq-question.active .faq-question-inner a:hover .amphiicon:before, .accessibility__contrast-mode body .Special_Faqs .faq-content.folded-answers .faq-question.active .faq-question-inner a:focus .amphiicon:before {
  color: #000 !important;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .Special_Calendar .fc-day-today .fc-daygrid-day-number {
  background: #000 !important;
}
.accessibility__contrast-mode body .pagination > li > a {
  background-color: #000 !important;
  color: #FFF !important;
  border: 2px solid #000 !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .pagination > li > a:hover, .accessibility__contrast-mode body .pagination > li > a:focus {
  background-color: #FFF !important;
  color: #000 !important;
  border: 2px solid #000 !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .pagination > li.disabled > span {
  background-color: #000 !important;
  color: #FFF !important;
  border: 2px solid #000 !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .pagination > li.disabled > span:hover, .accessibility__contrast-mode body .pagination > li.disabled > span:focus {
  background-color: #FFF !important;
  color: #000 !important;
  border: 2px solid #000 !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .pagination > li.active > span {
  background-color: #000 !important;
  color: #FFF !important;
  border: 2px solid #000 !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .pagination > li.active > span:hover, .accessibility__contrast-mode body .pagination > li.active > span:focus {
  background-color: #FFF !important;
  color: #000 !important;
  border: 2px solid #000 !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .pagination > li > a[rel~=first], .accessibility__contrast-mode body .pagination > li > a[rel~=prev], .accessibility__contrast-mode body .pagination > li > a[rel~=last], .accessibility__contrast-mode body .pagination > li > a[rel~=next] {
  background-color: #000 !important;
  color: #FFF !important;
  border: 2px solid #000 !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .module-style__box-shadow .module-content-block {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 2px solid #000 !important;
}
.accessibility__contrast-mode body .module-style__box-shadow.Special_Sponsor .owl-item .header-img {
  margin-bottom: 21px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 2px solid #000 !important;
}
.accessibility__contrast-mode body .module-style__box-shadow.Special_Sponsor .owl-item .header-img .thumbnail {
  margin-bottom: 0 !important;
}
.accessibility__contrast-mode body .module-style__teaser-manager-info-teaser.Special_ChangingContents .category-elements .module-content-block {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 2px solid #000 !important;
}
.accessibility__contrast-mode body .module-style__news-layout .module-content-block .newsDate .group-name {
  background: #000 !important;
  color: #FFF !important;
}
.accessibility__contrast-mode body .module-style__box-color-1 .module-content-block, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block {
  background: #000 !important;
  color: #FFF !important;
}
.accessibility__contrast-mode body .module-style__box-color-1 .module-content-block .headline1, .accessibility__contrast-mode body .module-style__box-color-1 .module-content-block .headline2, .accessibility__contrast-mode body .module-style__box-color-1 .module-content-block .headline3, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block .headline1, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block .headline2, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block .headline3, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block .headline1, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block .headline2, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block .headline3 {
  color: #FFF !important;
}
.accessibility__contrast-mode body .module-style__box-color-1 .module-content-block a.btn-default, .accessibility__contrast-mode body .module-style__box-color-1 .module-content-block .btn-default, .accessibility__contrast-mode body .module-style__box-color-1 .module-content-block a.btn-primary, .accessibility__contrast-mode body .module-style__box-color-1 .module-content-block .btn-primary, .accessibility__contrast-mode body .module-style__box-color-1 .module-content-block a.btn-custom, .accessibility__contrast-mode body .module-style__box-color-1 .module-content-block .btn-custom, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block a.btn-default, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block .btn-default, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block a.btn-primary, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block .btn-primary, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block a.btn-custom, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block .btn-custom, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block a.btn-default, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block .btn-default, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block a.btn-primary, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block .btn-primary, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block a.btn-custom, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block .btn-custom {
  background: #FFF !important;
  color: #000 !important;
  border: 2px solid #FFF !important;
}
.accessibility__contrast-mode body .module-style__box-color-1 .module-content-block a.btn-default:hover, .accessibility__contrast-mode body .module-style__box-color-1 .module-content-block a.btn-default:focus, .accessibility__contrast-mode body .module-style__box-color-1 .module-content-block .btn-default:hover, .accessibility__contrast-mode body .module-style__box-color-1 .module-content-block .btn-default:focus, .accessibility__contrast-mode body .module-style__box-color-1 .module-content-block a.btn-primary:hover, .accessibility__contrast-mode body .module-style__box-color-1 .module-content-block a.btn-primary:focus, .accessibility__contrast-mode body .module-style__box-color-1 .module-content-block .btn-primary:hover, .accessibility__contrast-mode body .module-style__box-color-1 .module-content-block .btn-primary:focus, .accessibility__contrast-mode body .module-style__box-color-1 .module-content-block a.btn-custom:hover, .accessibility__contrast-mode body .module-style__box-color-1 .module-content-block a.btn-custom:focus, .accessibility__contrast-mode body .module-style__box-color-1 .module-content-block .btn-custom:hover, .accessibility__contrast-mode body .module-style__box-color-1 .module-content-block .btn-custom:focus, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block a.btn-default:hover, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block a.btn-default:focus, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block .btn-default:hover, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block .btn-default:focus, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block a.btn-primary:hover, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block a.btn-primary:focus, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block .btn-primary:hover, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block .btn-primary:focus, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block a.btn-custom:hover, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block a.btn-custom:focus, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block .btn-custom:hover, .accessibility__contrast-mode body .module-style__box-color-2 .module-content-block .btn-custom:focus, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block a.btn-default:hover, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block a.btn-default:focus, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block .btn-default:hover, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block .btn-default:focus, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block a.btn-primary:hover, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block a.btn-primary:focus, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block .btn-primary:hover, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block .btn-primary:focus, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block a.btn-custom:hover, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block a.btn-custom:focus, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block .btn-custom:hover, .accessibility__contrast-mode body .module-style__box-color-3 .module-content-block .btn-custom:focus {
  background: #000 !important;
  color: #FFF !important;
  border: 2px solid #FFF !important;
}
.accessibility__contrast-mode body .module-style__text-white {
  color: #000 !important;
}
.accessibility__contrast-mode body .module-style__text-white .headline1, .accessibility__contrast-mode body .module-style__text-white .headline2, .accessibility__contrast-mode body .module-style__text-white .headline3, .accessibility__contrast-mode body .module-style__text-white .headline4, .accessibility__contrast-mode body .module-style__text-white .text-wrapper, .accessibility__contrast-mode body .module-style__text-white .thumbnail .caption p {
  color: #000 !important;
}
.accessibility__contrast-mode body .module-style__text-white a:not(.btn) {
  color: #000 !important;
}
.accessibility__contrast-mode body .module-style__text-white a:not(.btn):visited, .accessibility__contrast-mode body .module-style__text-white a:not(.btn):focus, .accessibility__contrast-mode body .module-style__text-white a:not(.btn):active, .accessibility__contrast-mode body .module-style__text-white a:not(.btn):hover {
  color: #000 !important;
}
.accessibility__contrast-mode body .module-style__text-white .reservation-general-description div.checkbox {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 0 !important;
}
.accessibility__contrast-mode body .module-style__text-white .module-content-block .headline1, .accessibility__contrast-mode body .module-style__text-white .module-content-block .headline2, .accessibility__contrast-mode body .module-style__text-white .module-content-block .headline3, .accessibility__contrast-mode body .module-style__text-white .module-content-block .headline4, .accessibility__contrast-mode body .module-style__text-white .module-content-block .text-wrapper, .accessibility__contrast-mode body .module-style__text-white .gallery-carousel-caption .headline1, .accessibility__contrast-mode body .module-style__text-white .gallery-carousel-caption .headline2, .accessibility__contrast-mode body .module-style__text-white .gallery-carousel-caption .headline3, .accessibility__contrast-mode body .module-style__text-white .gallery-carousel-caption .headline4, .accessibility__contrast-mode body .module-style__text-white .gallery-carousel-caption .text-wrapper, .accessibility__contrast-mode body .module-style__text-white * .headline1, .accessibility__contrast-mode body .module-style__text-white * .headline2, .accessibility__contrast-mode body .module-style__text-white * .headline3, .accessibility__contrast-mode body .module-style__text-white * .headline4, .accessibility__contrast-mode body .module-style__text-white * .text-wrapper {
  color: #000 !important;
}
.accessibility__contrast-mode body .module-style__text-white .module-content-block .headline1 a:not(.btn), .accessibility__contrast-mode body .module-style__text-white .module-content-block .headline2 a:not(.btn), .accessibility__contrast-mode body .module-style__text-white .module-content-block .headline3 a:not(.btn), .accessibility__contrast-mode body .module-style__text-white .module-content-block .headline4 a:not(.btn), .accessibility__contrast-mode body .module-style__text-white .module-content-block .text-wrapper a:not(.btn), .accessibility__contrast-mode body .module-style__text-white .gallery-carousel-caption .headline1 a:not(.btn), .accessibility__contrast-mode body .module-style__text-white .gallery-carousel-caption .headline2 a:not(.btn), .accessibility__contrast-mode body .module-style__text-white .gallery-carousel-caption .headline3 a:not(.btn), .accessibility__contrast-mode body .module-style__text-white .gallery-carousel-caption .headline4 a:not(.btn), .accessibility__contrast-mode body .module-style__text-white .gallery-carousel-caption .text-wrapper a:not(.btn), .accessibility__contrast-mode body .module-style__text-white * .headline1 a:not(.btn), .accessibility__contrast-mode body .module-style__text-white * .headline2 a:not(.btn), .accessibility__contrast-mode body .module-style__text-white * .headline3 a:not(.btn), .accessibility__contrast-mode body .module-style__text-white * .headline4 a:not(.btn), .accessibility__contrast-mode body .module-style__text-white * .text-wrapper a:not(.btn) {
  color: #000 !important;
}
.accessibility__contrast-mode body .module-style__text-white hr, .accessibility__contrast-mode body .module-style__text-white .table > thead > tr > th, .accessibility__contrast-mode body .module-style__text-white .table > thead > tr > td, .accessibility__contrast-mode body .module-style__text-white .table > tbody > tr > th, .accessibility__contrast-mode body .module-style__text-white .table > tbody > tr > td, .accessibility__contrast-mode body .module-style__text-white .table > tfoot > tr > th, .accessibility__contrast-mode body .module-style__text-white .table > tfoot > tr > td,
.accessibility__contrast-mode body .module-style__text-white .Form_Reservation .reservation-formular, .accessibility__contrast-mode body .module-style__text-white .faq-question-inner, .accessibility__contrast-mode body .module-style__text-white .faq-content, .accessibility__contrast-mode body .module-style__text-white .date-list dt, .accessibility__contrast-mode body .module-style__text-white .date-list,
.accessibility__contrast-mode body .module-style__text-white .module-content-block, .accessibility__contrast-mode body .module-style__text-white .reservation-object, .accessibility__contrast-mode body .module-style__text-white .reservation-formular, .accessibility__contrast-mode body .module-style__text-white .reservation-captcha, .accessibility__contrast-mode body .module-style__text-white .form-horizontal .module-content-block {
  border-color: rgba(255, 255, 255, 0.3) !important;
}
.accessibility__contrast-mode body .module-style__text-white .table-hover > tbody > tr:hover, .accessibility__contrast-mode body .module-style__text-white .table > thead:first-child > tr:first-child > th, .accessibility__contrast-mode body .module-style__text-white .table > thead > tr > td.info, .accessibility__contrast-mode body .module-style__text-white .table > thead > tr > th.info, .accessibility__contrast-mode body .module-style__text-white .table > thead > tr.info > td, .accessibility__contrast-mode body .module-style__text-white .table > thead > tr.info > th, .accessibility__contrast-mode body .module-style__text-white .table > tbody > tr > td.info, .accessibility__contrast-mode body .module-style__text-white .table > tbody > tr > th.info, .accessibility__contrast-mode body .module-style__text-white .table > tbody > tr.info > td, .accessibility__contrast-mode body .module-style__text-white .table > tbody > tr.info > th, .accessibility__contrast-mode body .module-style__text-white .table > tfoot > tr > td.info, .accessibility__contrast-mode body .module-style__text-white .table > tfoot > tr > th.info, .accessibility__contrast-mode body .module-style__text-white .table > tfoot > tr.info > td, .accessibility__contrast-mode body .module-style__text-white .table > tfoot > tr.info > th {
  background: rgba(0, 0, 0, 0.2) !important;
}
.accessibility__contrast-mode body .module-style__text-white .faq-question.active a, .accessibility__contrast-mode body .module-style__text-white .faq-question.active a:hover, .accessibility__contrast-mode body .module-style__text-white .faq-question a:hover, .accessibility__contrast-mode body .module-style__text-white .date-list dt.active, .accessibility__contrast-mode body .module-style__text-white .date-list dt.active:hover, .accessibility__contrast-mode body .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))) !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%) !important;
}
.accessibility__contrast-mode body .footer .module-style__text-white a:not(.btn) {
  color: #000 !important;
}
.accessibility__contrast-mode body .footer .module-style__text-white a:not(.btn):visited, .accessibility__contrast-mode body .footer .module-style__text-white a:not(.btn):focus, .accessibility__contrast-mode body .footer .module-style__text-white a:not(.btn):active, .accessibility__contrast-mode body .footer .module-style__text-white a:not(.btn):hover {
  opacity: 1;
  color: #000 !important;
}
.accessibility__contrast-mode body .module-style__news-layout.module-style__truncate-content .module-content-block .readmore:before, .accessibility__contrast-mode body .module-style__news-layout.module-style__truncate-content .module-content-block .readless:before {
  color: #000 !important;
}
.accessibility__contrast-mode body .editor-style__social-media-icon a {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  border: none !important;
  text-decoration: none !important;
}
.accessibility__contrast-mode body .editor-style__social-media-icon a .amphiicon {
  background: #000 !important;
  color: #FFF !important;
  border: 2px solid #000 !important;
}
.accessibility__contrast-mode body .editor-style__social-media-icon a:hover .amphiicon, .accessibility__contrast-mode body .editor-style__social-media-icon a:focus .amphiicon {
  background: #FFF !important;
  color: #000 !important;
  border: 2px solid #000 !important;
}
.accessibility__contrast-mode body .shariff li a {
  background: #000 !important;
  color: #FFF !important;
  border: 2px solid #000 !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 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), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.accessibility__contrast-mode body .shariff li a:hover, .accessibility__contrast-mode body .shariff li a:focus {
  background: #FFF !important;
  color: #000 !important;
  border: 2px solid #000 !important;
}
.accessibility__contrast-mode body .Special_Club_Search .special-club-search-toggle-wrapper .special-club-search-toggle .toggle-details {
  background: #000 !important;
  color: #FFF !important;
}
.accessibility__contrast-mode body .Special_Undertaker_PreventionForm fieldset .headline-wrapper .headline2 {
  background: #000 !important;
  color: #FFF !important;
}
.accessibility__contrast-mode body #scroll-to-top {
  background: #000 !important;
  color: #FFF !important;
  border: 2px solid #000 !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 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), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.accessibility__contrast-mode body #scroll-to-top:hover, .accessibility__contrast-mode body #scroll-to-top:focus {
  background: #FFF !important;
  color: #000 !important;
  border: 2px solid #000 !important;
}
.accessibility__contrast-mode body .accessibility-toggle-fixed .accessibility-toggle-button {
  background: #000 !important;
  color: #FFF !important;
  border: 2px solid #000 !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 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), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.accessibility__contrast-mode body .accessibility-toggle-fixed .accessibility-toggle-button:hover, .accessibility__contrast-mode body .accessibility-toggle-fixed .accessibility-toggle-button:focus {
  background: #FFF !important;
  color: #000 !important;
  border: 2px solid #000 !important;
}
.accessibility__contrast-mode body .accessibility-tile {
  background: #FFF !important;
}
.accessibility__contrast-mode body .accessibility-tile i {
  color: #000 !important;
}
.accessibility__contrast-mode body .accessibility-tile .tile-text {
  color: #000 !important;
}
.accessibility__contrast-mode body .accessibility-tile .indicator-bar {
  background: #FFF !important;
  border: 1px solid #000 !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .accessibility-tile .indicator-bar.active {
  background: #000 !important;
  border: 1px solid #000 !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode body .accessibility-tile:hover, .accessibility__contrast-mode body .accessibility-tile:focus-visible {
  background: #000 !important;
}
.accessibility__contrast-mode body .accessibility-tile:hover i, .accessibility__contrast-mode body .accessibility-tile:focus-visible i {
  color: #FFF !important;
}
.accessibility__contrast-mode body .accessibility-tile:hover .tile-text, .accessibility__contrast-mode body .accessibility-tile:focus-visible .tile-text {
  color: #FFF !important;
}
.accessibility__contrast-mode body .accessibility-tile:hover .indicator-bar, .accessibility__contrast-mode body .accessibility-tile:focus-visible .indicator-bar {
  background: #000 !important;
  border: 1px solid #FFF !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.accessibility__contrast-mode body .accessibility-tile:hover .indicator-bar.active, .accessibility__contrast-mode body .accessibility-tile:focus-visible .indicator-bar.active {
  background: #FFF !important;
  border: 1px solid #FFF !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.accessibility__contrast-mode.template-leichte-sprache body header .header .top-nav .navigation.level-2 {
  border-top: none !important;
}
.accessibility__contrast-mode.template-leichte-sprache body header .header .top-nav .navigation.level-3 {
  border-top: 3px solid #000 !important;
}

.accessibility__font-size-changer-size-0 {
  font-size: 100%;
}
@media (max-width: 1199px) {
  .accessibility__font-size-changer-size-0 {
    font-size: calc(100% - 5%);
  }
}
@media (max-width: 991px) {
  .accessibility__font-size-changer-size-0 {
    font-size: calc(100% - 10%);
  }
}
@media (max-width: 767px) {
  .accessibility__font-size-changer-size-0 {
    font-size: calc(100% - 20%);
  }
}
.accessibility__font-size-changer-size-0 .owl-height {
  height: auto !important;
}

.accessibility__font-size-changer-size-1 {
  font-size: calc(100% + 10%);
}
@media (max-width: 1199px) {
  .accessibility__font-size-changer-size-1 {
    font-size: calc(calc(100% + 10%) - 5%);
  }
}
@media (max-width: 991px) {
  .accessibility__font-size-changer-size-1 {
    font-size: calc(calc(100% + 10%) - 10%);
  }
}
@media (max-width: 767px) {
  .accessibility__font-size-changer-size-1 {
    font-size: calc(calc(100% + 10%) - 20%);
  }
}
.accessibility__font-size-changer-size-1 .owl-height {
  height: auto !important;
}

.accessibility__font-size-changer-size-2 {
  font-size: calc(100% + 20%);
}
@media (max-width: 1199px) {
  .accessibility__font-size-changer-size-2 {
    font-size: calc(calc(100% + 20%) - 5%);
  }
}
@media (max-width: 991px) {
  .accessibility__font-size-changer-size-2 {
    font-size: calc(calc(100% + 20%) - 10%);
  }
}
@media (max-width: 767px) {
  .accessibility__font-size-changer-size-2 {
    font-size: calc(calc(100% + 20%) - 20%);
  }
}
.accessibility__font-size-changer-size-2 .owl-height {
  height: auto !important;
}

.accessibility__font-size-changer-size-3 {
  font-size: calc(100% + 30%);
}
@media (max-width: 1199px) {
  .accessibility__font-size-changer-size-3 {
    font-size: calc(calc(100% + 30%) - 5%);
  }
}
@media (max-width: 991px) {
  .accessibility__font-size-changer-size-3 {
    font-size: calc(calc(100% + 30%) - 10%);
  }
}
@media (max-width: 767px) {
  .accessibility__font-size-changer-size-3 {
    font-size: calc(calc(100% + 30%) - 20%);
  }
}
.accessibility__font-size-changer-size-3 .owl-height {
  height: auto !important;
}

.accessibility__font-size-changer-size-4 {
  font-size: calc(100% + 40%);
}
@media (max-width: 1199px) {
  .accessibility__font-size-changer-size-4 {
    font-size: calc(calc(100% + 40%) - 5%);
  }
}
@media (max-width: 991px) {
  .accessibility__font-size-changer-size-4 {
    font-size: calc(calc(100% + 40%) - 10%);
  }
}
@media (max-width: 767px) {
  .accessibility__font-size-changer-size-4 {
    font-size: calc(calc(100% + 40%) - 20%);
  }
}
.accessibility__font-size-changer-size-4 .owl-height {
  height: auto !important;
}

.accessibility__line-height-level-1 p, .accessibility__line-height-level-1 li, .accessibility__line-height-level-1 div:not(.accessibility-tile, .accessibility-popup *), .accessibility__line-height-level-1 blockquote, .accessibility__line-height-level-1 td, .accessibility__line-height-level-1 th {
  line-height: 1.75 !important;
}
.accessibility__line-height-level-1 .owl-height {
  height: auto !important;
}

.accessibility__line-height-level-2 p, .accessibility__line-height-level-2 li, .accessibility__line-height-level-2 div:not(.accessibility-tile, .accessibility-popup *), .accessibility__line-height-level-2 blockquote, .accessibility__line-height-level-2 td, .accessibility__line-height-level-2 th {
  line-height: 2 !important;
}
.accessibility__line-height-level-2 .owl-height {
  height: auto !important;
}

.accessibility__line-height-level-3 p, .accessibility__line-height-level-3 li, .accessibility__line-height-level-3 div:not(.accessibility-tile, .accessibility-popup *), .accessibility__line-height-level-3 blockquote, .accessibility__line-height-level-3 td, .accessibility__line-height-level-3 th {
  line-height: 2.25 !important;
}
.accessibility__line-height-level-3 .owl-height {
  height: auto !important;
}

.accessibility__large-cursor,
.accessibility__large-cursor * {
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDkuMS1jMDAzIDc5Ljk2OTBhODdmYywgMjAyNS8wMy8wNi0yMDo1MDoxNiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI2LjYgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MjdBRDNFNEMzM0UzMTFGMEJENjlERkFFODNBNjExMzciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MjdBRDNFNEQzM0UzMTFGMEJENjlERkFFODNBNjExMzciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoyN0FEM0U0QTMzRTMxMUYwQkQ2OURGQUU4M0E2MTEzNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoyN0FEM0U0QjMzRTMxMUYwQkQ2OURGQUU4M0E2MTEzNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk90lL8AABDiSURBVHja7F15kBTVGX/dPfe9szszCx4lJN6wKmBU1kAiwSMFQqRSxgAKmDKkooJymIoRORQxEYwu5h+PSimJpGI8SjRaApoClTUxIMZolAQFXJc9Znd27p2Z7nxveb379dueZWfd2Z3rq/qqd3qme3u+X3/X771+IyiKQoZLBBD1T7TFf6v/DG97/laG80KKWAx5OCc1vMhtMTAqCDLeUiwroAwjIMw7VBCoStxWZB+VkWbwtgLK8HuICogBKxjaKIqiIQPCvIJu00gFti9T7qAY8gCGxM5rBDXb7Ta/11u1B/52gJ0/DYW6fhoOR47B6xTTJApnhHmKXK6giHnwEBUQM6jVYjGfT8FgYe0st9v1R6fTMRFeutl+O6gF1MSO6wlvApMKIMPjISZmZJssK24u14wBUJ4EUKbASw+oMxsoXOVWAWSICV1SwxUFBCKPTefzVQBKg8vlrB8AFKkcQcl7yAJArFlAtAEomzwe9wwGiouBYmXHYlDKJnwNd1LHVRb1EgsAYh7gGBOErjWiKNiDwc5XuX4FS4aBWPIVWD48BFdaJh6Q0047vRN16lQku92+qrra+0PkKQ7kKUZ2PqEcPEXMg4fwXmLEH5o/f764bNnyMGsIe4+12aw/9/mqF+mELxM7h6Ecwlc+PEST4CHASPgD4DHiihUrXWvXrktwoBCLxXKT3+/7OQPFXY45RczDOTlQlH6A0O2SJTfbHn74kW6wawa/bzab5gUC/tXwpxf1Knz4KllQxFH4n71GnDdvnuWpp36fEQQxpcn0JuNVtbWBe0VR9CFQbOUAijhSxkceotk3Y8YM0/PPvyCA8bvxfqPRUB8I+O4zGKRaHU8xlWpOEUfSI7LJ5MmTDW+8sVMyGo0JTU1uMEyCnLIJ9p/KQHFynqLmlZIBZcRDFu8hqpx55lnS3r1vm6xWaxzvlyTpPJ+v5iHILeM4UCwofJUMKPkGJKcmbsyYseK+fe9ZXC53VAuKOK6mpnqz1Wo5SwcUDdVS7KCIhXZBVVVVQmPje3a/368BBXLMWGgeN9tstvMRKHbkKSXBFI94Uh+MQOdO3n230T5u3LgIx3/VeL2ezQ6HfdIAnlLUTLFYqBcGiZzs3v2WY8KECTwoLo/H/WvEFLuIlinGZXHRgSIW8sVBQievvPJXx9Sp9TwoVrfbtQGAuSIL1VK0Xb1Y6BdIbbl9+58cs2dfG+XeokzxPV5v1awsntJbEhcTKGKx3DmPPfY7+4IFN0ZJP6bYthKS/fWkRJjiogGEysaNG+23374szoFCmeKf+XzVi3VAKTqmuKgAobJy5SrbvfeupTNVeKb4Rujqb6WVMyni0ceiA4TKzTf/xNLQsDWlwxRfV1vrXw37i5YpLkpAqMyZM9f89NPbZJ4phnL5ykDAX7RMcdECQmX69OnGl156KQtT7OeZYhWUgmaKixoQKhdeeJEBGkgdpliiTPGDiCnmPaUgmeKiB4TK+PHjszHF5/r9g2KKC4aULAlAqKhMsdvt5knJwTDFYqGAUjKAUKFMMYBiDwQCekzxlmJgiksKECqUKX7nnX32cePG8/xXtdfr2eJ0OiaTvumrBccUlxwgrPQlu3e/6Zg4sY4Hxel2ux4sZKa4JAFhCZ3s2PGKo77+cj2meL3H4/4eKUCmuGQBYcYnzz673XHttXMi3FuUKb7b662aTQqMKS5pQFTZuvUxx6JFi/WY4hWQ7H9ECogpLgtAqKxfv8F+xx13Jkh/pnipz1e9hPSRkqPKFJcNIFQAEOuGDffpMcULOaYYe8qI5pSyAoTKTTctskAI02OKf1Bb67+LlscDhK+8g1J2gFCBJG9+5pk/6DHFMwGUNaPJFJclIFSmTZtmfPnll/sxxQZDD1N8/2gxxWULCJW6ugt6mGKTycQzxRdBTvnNaDDFZQ0IFcoU79mz12S12nim+Gy/v2bzSDPFZQ8IlRNMcaPF4/HwpOQZNTXVD48kU1wBhAlliun01UAgEOFAqYXm8WFoIieQ/s/UDztTXAEECWOKHePHf4Pnv7xVVZ7NI7H6RAUQTihTvGvXbkdd3YV6TPEDoJdnAWVYmOIKIDpygine4Zg27Tv9mGKXy7kun0xxBZABZNu2bY45c+ZmY4qvJXlgiiuAnEQaGrY6Fi1aoscU31lT08sUZ8spFQ/Jh6xfv96+YsXKfkyx1UqZ4polpP8sySF7SQWQQcqyZcut9923UYcpNi8MBHy3sdDFd/M5e0kFkBxkwYIFlnvuWdPNeQoxmUzzxowJ/IJox1GkoQBiqJj5hMiyTJqamsiBAweUTz75RDl8+H/KsWPHlJaWFiUU6hTi8biQyWRElif6G9Jg+D4k+z+Ew5EDXF9SAURPjhw5Qvbv30+NTT7//LBy9OhR0tbWSrq6uggztt7iz7klZFH0oPwhEf1FpMsbkM7ODjJ16lQlEgnzq2wPtyRAmjjPECoewsnGjRtVML62KIqSgdAWz2TkCGxDoEHQ4+BdRwCMA93dKXVxtiGvelfygPh8vkEbGwydkOVMArYxeBFnGk2n0xHQMOynFD1N6nQbA6ULsYWoI4IG2Xtp0rdyd87glDwgUK4KW7c2KHiNlWQyGYvHE+1gbDB0pguMTe/2KDOoalSqGU7T7P0kA4UeQzv5LraNs/dS7PNKxUN4nsNkIvX1l8t79+6R+pKvJEA19AW7wyPsbqeaQAZNcUDg5dExKCowUXYODEjOXlJUgBw+fJjYbDYSCARyOm7TpgfF+vrLiNowG40GaLItEnhJBws5GJgEM3iK8w4ZgaICpgKTYKp6SJoDpLQaQ7qG/9VXX6VMn/5tMmXKJLJ58+acjj/99NOFM84Yr5lhAj3DaSzUUFDaQVtBj4M2g36FtBkpfb+FfbaN5Y1OLmR163hI6QCSSqXI9OnTlH//+6Oe25ve5Y8++tue/bnImjX3aNZ+NJvNpxjBVZghQwyYIDM01lbudTsCAoOBvSuNw1Uuaw2LhQ4GhBrlyJEvBK4igjD0QE533syZV4pOpxNP+RHcbudEFmJiKDl3MUN3MO1EGmLahYCIolDFhzo55+ayUMGIRqM0PMnNzc26PcQzzzyd8zkXL15CtMSg5QLorkXS97MZuHKKsNwSRjkmgpK3mtATCAxcmQ3pp5wKEpBgMEguvniK3NHRIQ7QFgvbtm3L6csuX36HCeyf7nURQbB4PK6LuYSNEzU2egIZH3sDLpHp7570/PaJKkXvIU1NX9IwJUN3rbk26IKT8Xg8hvdt2fJQTiHBYDDQ0JXSeol1Gqs28W9k4RJXrajSYF9VM0y/NgAFDQgl/CCByxCuODC6oy0trYdCoXAT3t/W1iY1NjbmZIT7799owbFdksRal8t5EdEOv2JikAyXsYsKkEOHDikUDOiiNdcErztaWto+AHsEIckfh9ed+P277/5lJpf/4/f7hXPOOVczdRR6m6vIicElPNt9VFZ7KIhVSSktPnPmDCWdTonaPJE83tra/i6A0aLW/dBhH8Kf+fTT/0gQ5nK6e9etW2fCr6H6nQCN4jgGiN5kBVIqgJxU9u7do8ydO0dhgz84aR9ra2t/E8BoZs1YDyjQXf+Xck+4fF21amVOXnLZZVMNXq8Xz+UVoFH8PumbJjpqC9WM6qqku3fvlufP/zHEaFlzHZC8/wee8ToD4zjXIbdHItGPtKDuFeGYnC5s6dKfiRznVQ9Jv5polzPXTH4rSQ+BG60nvLz66quZxYtvEviVrqPR2CdtbcHXGQDHkaodMwXkA1mWYyjpimvX3pvO5TpuueWnZgCgG12X2e12zSRZFmgmpfyM4fbtz6aWLr1F5MEAQ/8rGOzYhXilFqS9/BFN8LFY/EN87HPP/Vmg4+KD/uLQD86aNTujLYHNM8Dmdp1cMqQ5VoUGiKCX2F977XV59epVBv4LQrLe39HR+RYzfAu3VTmkXiqjqyv8d9oTIJpFeuKJx3PKJevWrbewnkMFyQcl8KWclwx5BkmhAaI7DvDhhx/Y+C8Gxn2vszO0BwHQyhF5HRyf1AVFQCtUYR/j8zQ0PJpTtUUfQZg4sS6pLYGtV+sk9xErgcU8AYEAEQaKI0oo1PUO6LsIiFaOUVXJvDCvAOQ+DHooFDLs3Lkzp+59w4YNZq6bPwdAOTNLLik6D1GN0/tr0HA/ZQsjMnjF36h36HhFJwJBJfSiHPEXgQ7+y2Sy+7A2DK3NKWxNmjRZ8vn8mhINlcAj3iiK+QQD8UDaDypKBvLF65A3/pEFjBDRjjFg1TCyII343F988bnxs88+yyl0LVu2XNI2isZLQX1ZGkWx2DxE/dF6lTlNcGCkOzpCf4GKigcDj77pjTHwLGzPGAZUW4egUTyO/8ddd63OqQReuHAhtCEmXAIb3W7nVaPRKOYDEBmxpMlUKn0UgZEAz3giGo2+j6qoNpS4eTBSHOvazXlJ9ISX9IDbK++//w8D5JNceiNy3XXzuJUdzFfAfke25J630nQ4SEx2t6i/Ek3dnNby9JkJOk3fTZ/NgzvwbNpnJJPJIDNunPSN0oVQrsDDoOpAj0D6fl/Xzs5Lu2o/6BjQU8eOHXOrJIlO9ZrmzJmbbmjYOuhJHIAqOf/8cymlLqFSfCvkuVfYzaPeMDF2fZl8MMDD4iHswlRVc4c6NBqGL/b39vbgcwDGZ1lyRngAMHAYxOdWwxY9LhyLxfbja9qx42UBQtmgv4PD4SBTplyc0CmB8QoOhnz3JMMdsrDREqqxmNHbSf/JAnzOwGDIpG+CAA+IGrrUsfAIaxR78wD0KdIjjzySUy5hjWKvSJL0TYfDfiYCQ8x3yBLzkD/4u1id1cFPHAjpeAaePtM7Ho1A0Zs92AOKLMsd8XjiX/iCnnzy8UFdOJ0Bf/vtt3XPnj2rXwgCL7kMecWQJ1GPFiC80fBd3EX6z9jQmzqjAeMkgCdQ2IqClzQSNBoIecHwwgvPZ20Uv/qqidxww/WZCRPOU1588QVTJpPul3MyGbkdUUECyXNzmI+QpamyuFiPp1wmuEqq59iTDJfqldS9fUkqlWpOJJKaAaxNmzZl+tM3HyrXXHN15pJLvqW8/fbbuh04Lc/hXG9CVbiLaCdP88XMsEo+ppLKOolY4MhG/AVlLl9kLRzY9x8ouUeggGi0WMxnIS8wHjx4UK6rqxN37dqlrFnzK/no0aPquLne/6GTKT4IhcI7oSj4nJ1/yDMRR6Xs5e4YQcfFBZ3QpuG8BlNCovOrJbCNlcD090J8rAQeW1vr/wl02qeox9XW1nZ3d6eEYLDdmO3c9FEDqNQ+grD3T8hHzUQ7czGISvPe+buUcShoD0F3MaZShAFoFpIlXwzVS3pyFfQ7+6qqPPPU45qbm03Zzkmf+4DPf0wVTt/BFR+hLBWgki9PGfaQlSUZ54NR1iseaNVmB+MedLmc34Wy1ZvtBOAx7ZD0P45GY/9FDHJIRzVegQuPogAk38K8hE/uSZRHaAVnicXi7zidjln88dCcNnV1RT5KJBJHEUkZzqKRkzSsFUB0SuA01/P0dNahUNdbVqv1AoNBoo8dyADAp5CoD0IyaUdNq4bO56j+GKriurlqMG+JXRihCXnDf+GCICL+zMI4LhdL8lVM3XRZJfiOJlbiK4hFiCFAYihXxDmmmX/E7aQVYTl6SLZGMYa6afpeEuwWZqAJCBBcCMQ4EDDlzz9akPeyt9ifMeSTu4j2q4yyuhiMoNNUDjSjPcP1HnIuFWHZAZKlBMaeo4YmI2oCFaIdW+G9Ic1VUr0eMVKTrf8vwACeLpJY3XkVkAAAAABJRU5ErkJggg==) 25 5, auto !important;
}

.accessibility__large-cursor a,
.accessibility__large-cursor a *,
.accessibility__large-cursor button,
.accessibility__large-cursor button * {
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDkuMS1jMDAzIDc5Ljk2OTBhODdmYywgMjAyNS8wMy8wNi0yMDo1MDoxNiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI2LjYgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MjdBRDNFNTAzM0UzMTFGMEJENjlERkFFODNBNjExMzciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MjdBRDNFNTEzM0UzMTFGMEJENjlERkFFODNBNjExMzciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoyN0FEM0U0RTMzRTMxMUYwQkQ2OURGQUU4M0E2MTEzNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoyN0FEM0U0RjMzRTMxMUYwQkQ2OURGQUU4M0E2MTEzNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnhL1F8AABJ9SURBVHja7F0JcBzVmX59zKmZ0YxGR3zFJaAIENYyAadYdhES2IuT2I4BJ9i161wEBPImi12hyoGkjHeTIgRvVTYxVGWrUglgNqQ2riKxLRHbkjGJSQFba9mxnIVI8hGsC80tTc/RM73/k7tH/zz1jDQjzSXUVa/m6u7p7q+///v///3vNUfKZ+FmeK8w6ysZ3lf0IpYJCNwMDV90+ppUX5WFBoxYBmDw6ntebQJ65Ri2JFFLMJ+VhQCKWEIwOASEoB4LfTWg9xgURQWBNhm1BGrJSgdFLDEYAgKBNiNqBo7jaJsERVGUBDQNhBjT4gyLKhaUUjJEY4UGhBmaBQCwuN2ufzCZTNt5nr8ZmywAZEiW5aOBQPAlSYoMw1cSMnHcQgCFKxE7MBiTQECrMhqNdbW1Nc8IgvC32XYCwIQkSXra4/F1wccJaGFoEWhRlS0JRlcqZhFKAAiPzJQGhh3YUFNfX7cfwLhtxp1wnMlgMKwVRfECMOUK8rxY72sRkBkWLOAmjRnQHHV1tY8YDOK9eGWn0+ldu3ZdqKnplrAsxyc8Ho9J3cfkvmD92yOR6NFEIhFBrKhYdhRbQzgdhtALbIU7vcFoNGzFK7e1Pep/6qnv1ODvLl26JN9777pgOBx2qExxOJ2OL46Ojv0UiXtcFX6uEgHhS/SfWD+sDof9Lri4Zm2FNWvWeAEMJ7vhypUrxc7O31lh3YT2HZiuZpVlFtU5EDPEMIuAZNEQUb14GkNuxCvt3ftvjkw7aGxsFJcuXRZKnQDPf5zuQwXXqAItlOhmq1hAsI6YeZ6rxy7rzTffnNWUgt7gO58HQN3qvgyMG7zIkBw1RDVbnAl5UDOKMbi97HGbEDtEnbhkEZDcQFFyOg5FmXbcWDv4RUByN1k8kzaZ63EIqPGLJis/hvAZ0h6z4QiXIb6paDBKoSEsMJzOMXB5ngdXyUCUMg7JBMx8MC/T50VAcgCGKxDYhCxqSN5LTnknk8k8E+sWTdZclmRSieayvsWSDoggCFZG0FlNqRgTJlYaO9TAkLm4ihb5iyjgpE0m09PxZd33LlYSEFkW3OtIm9ZRlVSZkST6BRFlB4xIFsACkftkklJtEZUZGhgimV4QgcHhygmUSgWE1QPKiioEhoLAkFS2sP0lKQkrJ1AWBENoR5XLVd1iMpk+zvOCnQIDOjOaSCT+JxQKHZKkyKhqxnC/exwxpmyK7koNiDKzYM/MkLo69320n51Z5wZRFJpNJveOaDT2nx9+OPYS7HtCZUwUMUYm2fvji+oE8OUAQq7BHGgGxzDElDVsMRm/0dBQ/zS8p/0mtCeSdoDZVDOn9TZSs6eXxi9qbqxCTZY+ixwOx/itt66JGo2GZE9PDzcyMlybcsMM4udqa91DY2OeV8nV0qGI2mJEvxJSzwkouDkrl2LrXL0qdjtl9+5vR9vbd9jUO39yee2118a/+c1/1noSidls2g5gvRuLxYdIei0XFny9lgmYRYboMWTTps/HAIxp+ZTNmzfb3n33Hf/LL7/k1Eyb3W7fEAyGuqur7asNBsO1HMcDgEogmVQG4/H4H71e3x9AayTkBPAkvVSVkAJWRi4IL6ut7VFjpt/27HnaeeDAyzJcZFFlSavFYl6Hq1yupl8mzdo2+O1KOCw9B8CcRFpCwRFm8MzmRfz5CsUgjSGimPm+MhqNpL6+PpUr43nexoLBOAjLqqqsP6qvr30YPrqgVSMHwIqyAUaUopm33kqefASW2to63fOEmCVaXe302Wx2H671Ul2zdpfL+Vl4W4OAod6ZHYFjUT0ztuKFz1cjFwogWU8cWMEzLJD37v1X6cKFi6Y//emc6/z5P7t6es5yq1atGsPrAVN2wKYfo5giYJwIHBtymzWXeU7uskg+Ekt6VcuOHd9IfPWrX7Pg71wuF3/o0JHaO+643X/lyhXNCXDb7baWQCD4R/DOeKvV+jFB4EVwADyRSLRfkqRh1UPTPDU8XkXTmpxc5Y8EIGwd11e+8mVTBv0gzzzzrPVLX/qnqSSZ2dRssdT/PXhkaWNVbLYqkkwm/xyNxl7xeLxH4D/CahZAY0WMpI+HXNSQTIvZbMn4W0tLixEX64FT8EkA42/0TA+YsxvBK/vekiUNL8B6S1QTZiHpJa05ma1CAZKtp64UPXe5/mdOrisdYFRb6/4RAOlSNcVMpldRcsUARK/OKlNjha6i+r4bG68N7tv37xPHj3fLBw78l9TS0jqKNQK0ZTWA8mWGJbgSv6CijitGeAYYvfHluH9CmG9gli1bVlBGbdr0eWn//udTFfnXX3+92NzcbDl48NfjO3c+XqWtbzIZvwAvv2TEPU7SRxLPO0PYEbTa0AItYLIiP92K/HUz8tdZYMpYb8zyT36yX1d0Hnhgi62pabUXOQUu0JVqFDji85x3DdEzT7gv26rS1a62aiaYspHM4zjKFhSHwzHpfWVaNmzYYEr31FIaUhSThcHQKjy0gMh01SkxOGw2WxMI3VKazEskEpdCofGeWCwWRP/JsEXJCZBAIFBgNzntAma9aV2uGoHZFoORs6iLebCDZcbkSFqIalc6HPbHRFG8R/0utVitlkg8Lv9mbMzzM1mWY+r2FgRKxRa36fRwzsks83mwA2sGpWd1bW3Nlpoa10EA43MsGJopNhjEBxsa6n4KwteomjK7asJM5RwP6fS9pC0+n0/vJs/beeFzYAdH0kfPUjDsdXXuf7RYLHvU78gMOaVGcA1/CEJ5AwYFTrqow7N5fv4IGY/HpoUlc3Hx+RxMFvaoJseX2+22Jri4/8IESdLGjZvGfvWr/46cPPmm/OyzzwVdLpcXgUJna9gNIN5EplLbRQXEZrMXFO+5uPXiXMwViHcbvph1dXW+o0ePV7vdbstUQHWNY8uWLWTdurXegYH+GtU9tLndroe9Xu5IOBwGzis5ORdLly7jzp07hzTKWk5Wjp0DLGc0c4k7DIghNlEUPpVCVjSEf//7U04AY9o+DQYD6erqrrnuuusCyGc31tQ4N9lsVTeCyTLkctD79u3jlixZqsB+lba2x5RsHVQlStfk/X+5eFmahzXp4oLpsePtN2zYGLNmuVXBlJFjx7qq1669O9Tf329XQRFcLuft4BrHcjlop9NF3n77ndn79qKBVMqSC0PwDAwmCIDSotfbbrvNOIskHDl+vNt+zTXXhvH+4XtTIU9y585dqfdr1ny6rOdAyZUhqaCQNTNer3e2mVFqvqz33NMaGRgYMBfjJFtbW7n33+8jHo+H5r24SmeIbuqEDYjeeKN71vVKV0E5YQbBjxXrRMEbnHUSEqdKsvWdlBqQtGMGQJKwaOkQcvr0abMkSSQXULq7TxhvuumTcrndpRs3blS0e/CJJ54oW0BwHdJkBV80GjuDUgjizp2P5zQ0jYLS2fm6uGrVqhS7qqqqSm7j9+9/njt9+gzp6+unxXZcuQGSBgJBs4KGQqG3CCqt7Og4Yujt7c2p1JKah8OHO/jHH9+lfOYzn1VAX8rCxoP7PlnTVa6irjBgTA6AAYaMSFLktMVivlUDeNu2rfEzZ87y2VLWesuuXbsqevRssU2WBkgKDHK17lXy+fzdoCUpN9bv9xmefPLb8uKlLazJwuxIgQFtAoI6TzAY6sIbvPLKAeHcuXPK4uUtDkO0wjDKCjrOAqRk/Ew0Gu3H0rB16xcBq8TiFS4wIAnVZGkMGaeAQAt6vf5jYLoi2gbBYFBsb2//qJoupZCAKDqAaAyhgNBYJCjL8nAgEDyBN+zoOCycPHkyuXjfFy4OSTCiPqEyhGZx/ePjE2cjkchfkEvLff3rDynhcHjxShfIZGks0QDRWBLQQPF6fccTieSEtmE0GhEeeOD++EK9gCMjI4x5UnIusJ5L6gR7W1FGRyggPgBjxO/3H8MH09t7zvDCC88vSIW/fPly2kVXlLlNc55P6gTHI1GGJX7awmHp/yYmwj144x/84Bmuv79/wbnCQ0ND6RdJUZJzEfh8kousC8xqCS3D8EHAeDIej4/i/7r//s0J8MQWFCCjoyM8AgPPQZ/XzEN8HmDoeVzTTBccnNfj8XXCayrFDiiJjz326IJyhQOBQKpfCMy1D4GRFyj5MoQ1XZrAh5Dp8gFDPgBX+E28cWdnhwhtQdBkcHCQ9kEIU4DIoyR9mo5krnoylwK12ZguL0TxpyUp8j7ecMeOdgWEv+IBOXz4cBrb43F5kEx/JlZRRlDNZLqCmClXXeFEqjMLgkhh8+ZNFW+6OjqOpHmO0WjsEpmakkNvQpuCMyRbBJ8CBGj9IYDyO+yBDAwMiN/97ncqGpTz53sFJOhxSZIuk6kZhuRiMkQvx6Vnuvya6YpEon0Qyb+DN/7FL34unDhxoiL1pK+vT4lEIoYpcxW/oHpZevOjFIUh2dIqkp4r7PcHTkWj0Us4tfLQQ1+rSD3Zt++5tOwD3HDvkanh0TJjuoo6Cnc2yUd6xWmdkM/j8b4OejI+pSdxYePGDRVnurq7u3APpwKB8HkyNd1TrJSAzBTFhzAoNLUCevI6fVCktvGlSxfF3bt3Vwwohw79NoHNVSwWuwiOilc95yjSkZxN1nxWnXMZ0gXsYB9elhMxsFY8nSNRW+ns2TPcLbd8SmlsbCz7vvXt27fL4+Oh1LULBkPHY7F4v2oFAqplCJP06WqLqiEsSzSmRJGeBLHIQ8D4NtjdAVZPfD5vWYNx6tQfksPDg0YUnQfBWekl0x9uqTFEISWcyWEm0xVAoFA9OZoen8SF9evX07mtyhYQCGrTYo9wOPwOYoTECHvOM9AVYigZy5KYTmplkiUQn4x4PJN6ktKPoaFB8ZFHHilLPfnxj/9D9nq9KHeVCFKmE/3Hv+bFkEKNXOKyfJ9WIwwnFacCbzabG7WV+vv7eJerJrF69eqyGXt44cIFpa3t4bRBOKHQ+HFw42layKPeZEEVHIlhCSk1IDMBlVZND15KyGAQ7QaDoUFb8Y03TnB33PF3ZPny5SUXeVo909p6VwIicQF5Vpeptwhvx1Qx96sWIC8xL6TJyqYnbLevTz0Zj9fr74aTHEKpCG7btgeTYMJKLij33bc5TrsOcJoEjrdTPYcQ0pAIwwylnADR05M4yZAVhpP0jI15j6QHjbLQ3Hxn8uLFiyUDZevWB+WentNpY2FAN47F4/Er6vEHVUAkMg+PDy+WjdaAYStWsCvsATAGwQx0YJEHGy3cfXeLcurUqaKCAjcDWb/+Xvmtt06l1T9DRP6/tEtBPeYAMlMRJkLP63iFElsDjtUVCBqjAIwEIn8NDR7pD+CNcQcP/pr4/YFka2trwW8i2vff0nJX4oMP/poGhiRF3gNXvVPVDY8OKJgheRU6lBIQJYPYc2AOQtR0YVDo92A6+BdffDHR1LSaW7FixbyLPe3vf+qpJxPf+tYujpYvpScPI30AxmEEhibkmmcVYczVvLqnhWTEtOepk6uTB9CJJ+k4djphfh20WgDkE263az3P89NG9zY2Nsp79uwFc3b3nM+Bjvz6/ve/l3j11V9S72naTQpm6gyY0i4VjA/V5kGAYJOVt36UChBNu0QGFG1Kpxq10alZ3XRWIQBlnclkWq63Q5vNlrjzzmbS3r6Db2pqmvX59Pb2KgcOvJzs6uoiw8NDuhPE0AINMJNvjo9PnFHByMaOOXlXpQJEL9lo1AHFiYChjHHBhV9VXW3/NLAl4yhM+C3pdLqSK1YsJ253LWloaODoGPVgMEArXpTh4WEyOjrK+f2+GWfoAWfir+DangRxv6K55uqrLwsYibmAUSpAWFA0puDZ6BwqKC7UnKAnNdXVjlurqqw3wMUvyNh2MFkj1IsKh6W/4LwbAkITcT0wkmSOc7+XMgpmpwrUmGJRQbGrwGiMSc1QB8BU0yk5rFbrtUajoXau5wEsCEWjsUHQiveAGVfUu19zyTUQcMwRLgQYpQZkWgoFaYrelIEO1LTnhFgFgXdYLJaVZrNpiSiK1dAoYBnHTtIoGwCYiMdlH7BhDLynD+C9l0x1E6TGvKAWQq5tmMnoZnqGVUUCogcKnnHIgsyYjWl4Qny9CTZFDo08Va7m9PHTc3AmOoIA0UDBTUsYZsvmzkvgWi5P+tR7IBfuo2eHP7BgsIBMznWozjbB6ewTD16NIkAkxAKtYSBwAUNyvsEoF0BwkJjMkgOLIlAmGCCMJH2mU3Z6PYIuIGYIBiWK2BJBIOBHIuk9+kiZb3NRTsu0/hKS/oxbI2om5jOe61Bv8kndyQ8QKHotTqYXLCTnmxXlDAibRuHJ9Emb2QcQi2T6LKB8BkCw2Uow5ktmAJCZ9ZRCmCh2+X8BBgC2XLQQH5GJHAAAAABJRU5ErkJggg==) 42 6, auto !important;
}

.accessibility__hide-images img,
.accessibility__hide-images picture,
.accessibility__hide-images svg:not(.amphiicon),
.accessibility__hide-images figure {
  visibility: hidden !important;
  width: auto;
  height: 0;
  min-width: 0;
  display: inline-block !important;
  position: relative;
}
.accessibility__hide-images .slider [style*=background-image] {
  background: none !important;
}
.accessibility__hide-images .amphiicon {
  visibility: visible !important;
}

.accessibility__stop-animations * {
  -webkit-animation: none !important;
          animation: none !important;
  -webkit-transition: none !important;
  transition: none !important;
}
.accessibility__stop-animations *:before, .accessibility__stop-animations *:after {
  -webkit-animation: none !important;
          animation: none !important;
  -webkit-transition: none !important;
  transition: none !important;
}

.accessibility__text-align-justify p, .accessibility__text-align-justify li, .accessibility__text-align-justify blockquote {
  text-align: justify !important;
}

.accessibility__text-spacing-level-1,
.accessibility__text-spacing-level-1 *:not(.accessibility-tile, .accessibility-tile *) {
  letter-spacing: 0.05em !important;
  word-spacing: 0.15em !important;
}

.accessibility__text-spacing-level-2,
.accessibility__text-spacing-level-2 *:not(.accessibility-tile, .accessibility-tile *) {
  letter-spacing: 0.15em !important;
  word-spacing: 0.25em !important;
}

.accessibility__text-spacing-level-3,
.accessibility__text-spacing-level-3 *:not(.accessibility-tile, .accessibility-tile *) {
  letter-spacing: 0.2em !important;
  word-spacing: 0.3em !important;
}

.accessibility__text-spacing-level-1 .owl-height, .accessibility__text-spacing-level-2 .owl-height, .accessibility__text-spacing-level-3 .owl-height {
  height: auto !important;
}

.accessibility__highlight-links a {
  background-color: #FFFF00 !important;
  background: #FFFF00 !important;
  color: #000000 !important;
  outline: 2px dashed #000000 !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), 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 0.5s cubic-bezier(0.55, 0, 0.1, 1), 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);
}
.accessibility__highlight-links a .amphiicon {
  background-color: #FFFF00 !important;
  color: #000000 !important;
  fill: #000000 !important;
}
.accessibility__highlight-links a:hover, .accessibility__highlight-links a:focus {
  background-color: #FFFFE0 !important;
  background: #FFFFE0 !important;
  outline: 2px dashed #000000 !important;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), 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 0.5s cubic-bezier(0.55, 0, 0.1, 1), 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);
}
.accessibility__highlight-links a:hover .amphiicon, .accessibility__highlight-links a:focus .amphiicon {
  background-color: lightyellow !important;
  color: #000000 !important;
  fill: #000000 !important;
}

.editor-style__counterup {
  font-size: 1.90625rem;
  font-weight: 600;
  color: #153f95;
}

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

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

.module-style__box-shadow .module-content-block {
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
  -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: 0 8px 25px rgba(25, 56, 119, 0.2);
          box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
}
.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: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
  -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: 0 8px 25px rgba(25, 56, 119, 0.2);
          box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
}

.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);
}

.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: "Fira Sans", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #153f95;
  line-height: 1;
  margin-bottom: 10px;
}
.ccm-cookie-declaration h3 {
  font-family: "Fira Sans", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: #0085b0;
  line-height: 1.2;
  margin-bottom: 10px;
}
.ccm-cookie-declaration h4 {
  font-family: "Fira Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #606060;
  line-height: 1.2;
  margin-bottom: 10px;
}
.ccm-cookie-declaration a {
  color: #153f95;
}
.ccm-cookie-declaration a:hover, .ccm-cookie-declaration a:focus {
  color: #0f2c68;
}
.ccm-cookie-declaration .ccm-cookie-declaration--change-consent a {
  color: #fff;
  background-color: #153f95;
  border: none;
  border-radius: 0;
  margin-top: 0;
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
  display: inline-block;
  font-family: "Fira Sans", sans-serif;
  padding: 15px 25px;
  font-weight: 700;
  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);
  position: relative;
  background: #eb7523;
  z-index: 5;
}
.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: #0f2c68;
  border: none;
  -webkit-box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
          box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
  -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: #c95d12;
  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.56rem;
  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: #153f95;
  border: none;
  border-radius: 0;
  margin-top: 0;
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
  display: inline-block;
  font-family: "Fira Sans", sans-serif;
  padding: 15px 25px;
  font-weight: 700;
  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);
  position: relative;
  background: #eb7523;
  z-index: 5;
}
.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: #0f2c68;
  border: none;
  -webkit-box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
          box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
  -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: #c95d12;
  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, .pagination .form-horizontal, .Special_Html .form-horizontal, .App_Undertaker_Request .form-horizontal, .App_Undertaker_Search .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, .pagination .form-horizontal label, .Special_Html .form-horizontal label, .App_Undertaker_Request .form-horizontal label, .App_Undertaker_Search .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, .pagination .form-horizontal .control-label, .Special_Html .form-horizontal .control-label, .App_Undertaker_Request .form-horizontal .control-label, .App_Undertaker_Search .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, .pagination .form-group .checkbox label, .Special_Html .form-group .checkbox label, .App_Undertaker_Request .form-group .checkbox label, .App_Undertaker_Search .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], .pagination .form-group input[type=checkbox], .Special_Html .form-group input[type=checkbox], .App_Undertaker_Request .form-group input[type=checkbox], .App_Undertaker_Search .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, .pagination .form-group input[type=checkbox]::before, .Special_Html .form-group input[type=checkbox]::before, .App_Undertaker_Request .form-group input[type=checkbox]::before, .App_Undertaker_Search .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, .pagination .form-group input[type=checkbox]:checked::before, .Special_Html .form-group input[type=checkbox]:checked::before, .App_Undertaker_Request .form-group input[type=checkbox]:checked::before, .App_Undertaker_Search .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, .pagination .form-group input[type=checkbox]:focus, .Special_Html .form-group input[type=checkbox]:focus, .App_Undertaker_Request .form-group input[type=checkbox]:focus, .App_Undertaker_Search .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], .pagination .form-group input[type=radio], .Special_Html .form-group input[type=radio], .App_Undertaker_Request .form-group input[type=radio], .App_Undertaker_Search .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, .pagination .form-group input[type=radio]::before, .Special_Html .form-group input[type=radio]::before, .App_Undertaker_Request .form-group input[type=radio]::before, .App_Undertaker_Search .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, .pagination .form-group input[type=radio]:checked::before, .Special_Html .form-group input[type=radio]:checked::before, .App_Undertaker_Request .form-group input[type=radio]:checked::before, .App_Undertaker_Search .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, .pagination .form-group input[type=radio]:focus, .Special_Html .form-group input[type=radio]:focus, .App_Undertaker_Request .form-group input[type=radio]:focus, .App_Undertaker_Search .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), .pagination .form-group .control-label:not(.form-group > .control-label), .Special_Html .form-group .control-label:not(.form-group > .control-label), .App_Undertaker_Request .form-group .control-label:not(.form-group > .control-label), .App_Undertaker_Search .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, .pagination .form-group textarea.form-control, .Special_Html .form-group textarea.form-control, .App_Undertaker_Request .form-group textarea.form-control, .App_Undertaker_Search .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, .pagination .form-group .form-control, .Special_Html .form-group .form-control, .App_Undertaker_Request .form-group .form-control, .App_Undertaker_Search .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: "Open Sans", sans-serif;
  color: #444;
  background: #f8f9f9;
  font-size: 1.2rem;
  font-weight: 400;
  border: 1px solid #d3d3d3;
  height: 45px;
  line-height: 45px;
  padding: 5px 10px 5px 10px;
  border-radius: 0;
}
.variant-01 .form-group .form-control::-webkit-input-placeholder, .module-style__company-history .form-group .form-control::-webkit-input-placeholder, .pagination .form-group .form-control::-webkit-input-placeholder, .Special_Html .form-group .form-control::-webkit-input-placeholder, .App_Undertaker_Request .form-group .form-control::-webkit-input-placeholder, .App_Undertaker_Search .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: "Open Sans", 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, .pagination .form-group .form-control::-moz-placeholder, .Special_Html .form-group .form-control::-moz-placeholder, .App_Undertaker_Request .form-group .form-control::-moz-placeholder, .App_Undertaker_Search .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: "Open Sans", 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, .pagination .form-group .form-control:-ms-input-placeholder, .Special_Html .form-group .form-control:-ms-input-placeholder, .App_Undertaker_Request .form-group .form-control:-ms-input-placeholder, .App_Undertaker_Search .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: "Open Sans", 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, .pagination .form-group .form-control::-ms-input-placeholder, .Special_Html .form-group .form-control::-ms-input-placeholder, .App_Undertaker_Request .form-group .form-control::-ms-input-placeholder, .App_Undertaker_Search .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: "Open Sans", sans-serif;
  color: #444;
  opacity: 0.5; /* Firefox */
}
.variant-01 .form-group .form-control::placeholder, .module-style__company-history .form-group .form-control::placeholder, .pagination .form-group .form-control::placeholder, .Special_Html .form-group .form-control::placeholder, .App_Undertaker_Request .form-group .form-control::placeholder, .App_Undertaker_Search .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: "Open Sans", 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, .pagination .form-group .form-control:-ms-input-placeholder, .Special_Html .form-group .form-control:-ms-input-placeholder, .App_Undertaker_Request .form-group .form-control:-ms-input-placeholder, .App_Undertaker_Search .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, .pagination .form-group .form-control::-ms-input-placeholder, .Special_Html .form-group .form-control::-ms-input-placeholder, .App_Undertaker_Request .form-group .form-control::-ms-input-placeholder, .App_Undertaker_Search .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, .pagination .form-group .form-control:focus, .Special_Html .form-group .form-control:focus, .App_Undertaker_Request .form-group .form-control:focus, .App_Undertaker_Search .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, .pagination .form-group .form-control.btn, .Special_Html .form-group .form-control.btn, .App_Undertaker_Request .form-group .form-control.btn, .App_Undertaker_Search .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: 8px 18px;
  background: #153f95;
  border-color: #153f95;
  color: #fff;
}
.variant-01 .form-group .form-control.btn:hover, .module-style__company-history .form-group .form-control.btn:hover, .pagination .form-group .form-control.btn:hover, .Special_Html .form-group .form-control.btn:hover, .App_Undertaker_Request .form-group .form-control.btn:hover, .App_Undertaker_Search .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: #0f2c68;
  border-color: #0f2c68;
}
.variant-01 .form-group .form-control[name=captcha], .module-style__company-history .form-group .form-control[name=captcha], .pagination .form-group .form-control[name=captcha], .Special_Html .form-group .form-control[name=captcha], .App_Undertaker_Request .form-group .form-control[name=captcha], .App_Undertaker_Search .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, .pagination .form-group select.form-control, .Special_Html .form-group select.form-control, .App_Undertaker_Request .form-group select.form-control, .App_Undertaker_Search .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, .pagination .form-group [type=date].form-control, .Special_Html .form-group [type=date].form-control, .App_Undertaker_Request .form-group [type=date].form-control, .App_Undertaker_Search .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, .pagination .form-group [type=date].form-control::-webkit-datetime-edit, .Special_Html .form-group [type=date].form-control::-webkit-datetime-edit, .App_Undertaker_Request .form-group [type=date].form-control::-webkit-datetime-edit, .App_Undertaker_Search .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, .pagination .form-group [type=date].form-control::-webkit-date-and-time-value, .Special_Html .form-group [type=date].form-control::-webkit-date-and-time-value, .App_Undertaker_Request .form-group [type=date].form-control::-webkit-date-and-time-value, .App_Undertaker_Search .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, .pagination .form-group .checkbox .control-label > p, .Special_Html .form-group .checkbox .control-label > p, .App_Undertaker_Request .form-group .checkbox .control-label > p, .App_Undertaker_Search .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, .pagination .form-group .grouped-elements label, .Special_Html .form-group .grouped-elements label, .App_Undertaker_Request .form-group .grouped-elements label, .App_Undertaker_Search .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, .pagination .form-group .grouped-elements .control-label, .Special_Html .form-group .grouped-elements .control-label, .App_Undertaker_Request .form-group .grouped-elements .control-label, .App_Undertaker_Search .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, .pagination .form-group .radio label, .Special_Html .form-group .radio label, .App_Undertaker_Request .form-group .radio label, .App_Undertaker_Search .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, .pagination .form-group .radio .control-label, .Special_Html .form-group .radio .control-label, .App_Undertaker_Request .form-group .radio .control-label, .App_Undertaker_Search .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, .pagination .form-group .checkbox label, .Special_Html .form-group .checkbox label, .App_Undertaker_Request .form-group .checkbox label, .App_Undertaker_Search .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, .pagination .form-group .checkbox .control-label, .Special_Html .form-group .checkbox .control-label, .App_Undertaker_Request .form-group .checkbox .control-label, .App_Undertaker_Search .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, .pagination .form-group.captcha-element .g-recaptcha > div, .Special_Html .form-group.captcha-element .g-recaptcha > div, .App_Undertaker_Request .form-group.captcha-element .g-recaptcha > div, .App_Undertaker_Search .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, .pagination .form-group.submit-element a.btn-default, .Special_Html .form-group.submit-element a.btn-default, .App_Undertaker_Request .form-group.submit-element a.btn-default, .App_Undertaker_Search .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, .pagination .form-group.submit-element .btn-default, .Special_Html .form-group.submit-element .btn-default, .App_Undertaker_Request .form-group.submit-element .btn-default, .App_Undertaker_Search .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, .pagination .form-group.submit-element a.btn-primary, .Special_Html .form-group.submit-element a.btn-primary, .App_Undertaker_Request .form-group.submit-element a.btn-primary, .App_Undertaker_Search .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, .pagination .form-group.submit-element .btn-primary, .Special_Html .form-group.submit-element .btn-primary, .App_Undertaker_Request .form-group.submit-element .btn-primary, .App_Undertaker_Search .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, .pagination .form-group.submit-element a.btn-custom, .Special_Html .form-group.submit-element a.btn-custom, .App_Undertaker_Request .form-group.submit-element a.btn-custom, .App_Undertaker_Search .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, .pagination .form-group.submit-element .btn-custom, .Special_Html .form-group.submit-element .btn-custom, .App_Undertaker_Request .form-group.submit-element .btn-custom, .App_Undertaker_Search .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: #153f95;
  border-color: #153f95;
  color: #fff;
}
.variant-01 .form-group.submit-element a.btn-default:hover, .module-style__company-history .form-group.submit-element a.btn-default:hover, .pagination .form-group.submit-element a.btn-default:hover, .Special_Html .form-group.submit-element a.btn-default:hover, .App_Undertaker_Request .form-group.submit-element a.btn-default:hover, .App_Undertaker_Search .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, .pagination .form-group.submit-element .btn-default:hover, .Special_Html .form-group.submit-element .btn-default:hover, .App_Undertaker_Request .form-group.submit-element .btn-default:hover, .App_Undertaker_Search .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, .pagination .form-group.submit-element a.btn-primary:hover, .Special_Html .form-group.submit-element a.btn-primary:hover, .App_Undertaker_Request .form-group.submit-element a.btn-primary:hover, .App_Undertaker_Search .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, .pagination .form-group.submit-element .btn-primary:hover, .Special_Html .form-group.submit-element .btn-primary:hover, .App_Undertaker_Request .form-group.submit-element .btn-primary:hover, .App_Undertaker_Search .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, .pagination .form-group.submit-element a.btn-custom:hover, .Special_Html .form-group.submit-element a.btn-custom:hover, .App_Undertaker_Request .form-group.submit-element a.btn-custom:hover, .App_Undertaker_Search .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, .pagination .form-group.submit-element .btn-custom:hover, .Special_Html .form-group.submit-element .btn-custom:hover, .App_Undertaker_Request .form-group.submit-element .btn-custom:hover, .App_Undertaker_Search .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: #0f2c68;
  border-color: #0f2c68;
}
.variant-01 .form-group.has-error .form-control[aria-invalid=true], .module-style__company-history .form-group.has-error .form-control[aria-invalid=true], .pagination .form-group.has-error .form-control[aria-invalid=true], .Special_Html .form-group.has-error .form-control[aria-invalid=true], .App_Undertaker_Request .form-group.has-error .form-control[aria-invalid=true], .App_Undertaker_Search .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, .pagination ul.form-errors, .Special_Html ul.form-errors, .App_Undertaker_Request ul.form-errors, .App_Undertaker_Search 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: none;
}
.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, .pagination .form-horizontal, .Special_Html .form-horizontal, .App_Undertaker_Request .form-horizontal, .App_Undertaker_Search .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, .pagination .form-horizontal label, .Special_Html .form-horizontal label, .App_Undertaker_Request .form-horizontal label, .App_Undertaker_Search .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, .pagination .form-horizontal .control-label, .Special_Html .form-horizontal .control-label, .App_Undertaker_Request .form-horizontal .control-label, .App_Undertaker_Search .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, .pagination .form-group .checkbox label, .Special_Html .form-group .checkbox label, .App_Undertaker_Request .form-group .checkbox label, .App_Undertaker_Search .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], .pagination .form-group input[type=checkbox], .Special_Html .form-group input[type=checkbox], .App_Undertaker_Request .form-group input[type=checkbox], .App_Undertaker_Search .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, .pagination .form-group input[type=checkbox]::before, .Special_Html .form-group input[type=checkbox]::before, .App_Undertaker_Request .form-group input[type=checkbox]::before, .App_Undertaker_Search .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, .pagination .form-group input[type=checkbox]:checked::before, .Special_Html .form-group input[type=checkbox]:checked::before, .App_Undertaker_Request .form-group input[type=checkbox]:checked::before, .App_Undertaker_Search .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, .pagination .form-group input[type=checkbox]:focus, .Special_Html .form-group input[type=checkbox]:focus, .App_Undertaker_Request .form-group input[type=checkbox]:focus, .App_Undertaker_Search .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], .pagination .form-group input[type=radio], .Special_Html .form-group input[type=radio], .App_Undertaker_Request .form-group input[type=radio], .App_Undertaker_Search .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, .pagination .form-group input[type=radio]::before, .Special_Html .form-group input[type=radio]::before, .App_Undertaker_Request .form-group input[type=radio]::before, .App_Undertaker_Search .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, .pagination .form-group input[type=radio]:checked::before, .Special_Html .form-group input[type=radio]:checked::before, .App_Undertaker_Request .form-group input[type=radio]:checked::before, .App_Undertaker_Search .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, .pagination .form-group input[type=radio]:focus, .Special_Html .form-group input[type=radio]:focus, .App_Undertaker_Request .form-group input[type=radio]:focus, .App_Undertaker_Search .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), .pagination .form-group .control-label:not(.form-group > .control-label), .Special_Html .form-group .control-label:not(.form-group > .control-label), .App_Undertaker_Request .form-group .control-label:not(.form-group > .control-label), .App_Undertaker_Search .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, .pagination .form-group textarea.form-control, .Special_Html .form-group textarea.form-control, .App_Undertaker_Request .form-group textarea.form-control, .App_Undertaker_Search .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, .pagination .form-group .form-control, .Special_Html .form-group .form-control, .App_Undertaker_Request .form-group .form-control, .App_Undertaker_Search .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: "Open Sans", sans-serif;
  color: #444;
  background: #f8f9f9;
  font-size: 1.2rem;
  font-weight: 400;
  border: 1px solid #d3d3d3;
  height: 45px;
  line-height: 45px;
  padding: 5px 10px 5px 10px;
  border-radius: 0;
}
.variant-01 .form-group .form-control::-webkit-input-placeholder, .module-style__company-history .form-group .form-control::-webkit-input-placeholder, .pagination .form-group .form-control::-webkit-input-placeholder, .Special_Html .form-group .form-control::-webkit-input-placeholder, .App_Undertaker_Request .form-group .form-control::-webkit-input-placeholder, .App_Undertaker_Search .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: "Open Sans", 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, .pagination .form-group .form-control::-moz-placeholder, .Special_Html .form-group .form-control::-moz-placeholder, .App_Undertaker_Request .form-group .form-control::-moz-placeholder, .App_Undertaker_Search .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: "Open Sans", 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, .pagination .form-group .form-control:-ms-input-placeholder, .Special_Html .form-group .form-control:-ms-input-placeholder, .App_Undertaker_Request .form-group .form-control:-ms-input-placeholder, .App_Undertaker_Search .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: "Open Sans", 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, .pagination .form-group .form-control::-ms-input-placeholder, .Special_Html .form-group .form-control::-ms-input-placeholder, .App_Undertaker_Request .form-group .form-control::-ms-input-placeholder, .App_Undertaker_Search .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: "Open Sans", sans-serif;
  color: #444;
  opacity: 0.5; /* Firefox */
}
.variant-01 .form-group .form-control::placeholder, .module-style__company-history .form-group .form-control::placeholder, .pagination .form-group .form-control::placeholder, .Special_Html .form-group .form-control::placeholder, .App_Undertaker_Request .form-group .form-control::placeholder, .App_Undertaker_Search .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: "Open Sans", 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, .pagination .form-group .form-control:-ms-input-placeholder, .Special_Html .form-group .form-control:-ms-input-placeholder, .App_Undertaker_Request .form-group .form-control:-ms-input-placeholder, .App_Undertaker_Search .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, .pagination .form-group .form-control::-ms-input-placeholder, .Special_Html .form-group .form-control::-ms-input-placeholder, .App_Undertaker_Request .form-group .form-control::-ms-input-placeholder, .App_Undertaker_Search .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, .pagination .form-group .form-control:focus, .Special_Html .form-group .form-control:focus, .App_Undertaker_Request .form-group .form-control:focus, .App_Undertaker_Search .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, .pagination .form-group .form-control.btn, .Special_Html .form-group .form-control.btn, .App_Undertaker_Request .form-group .form-control.btn, .App_Undertaker_Search .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: 8px 18px;
  background: #153f95;
  border-color: #153f95;
  color: #fff;
}
.variant-01 .form-group .form-control.btn:hover, .module-style__company-history .form-group .form-control.btn:hover, .pagination .form-group .form-control.btn:hover, .Special_Html .form-group .form-control.btn:hover, .App_Undertaker_Request .form-group .form-control.btn:hover, .App_Undertaker_Search .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: #0f2c68;
  border-color: #0f2c68;
}
.variant-01 .form-group .form-control[name=captcha], .module-style__company-history .form-group .form-control[name=captcha], .pagination .form-group .form-control[name=captcha], .Special_Html .form-group .form-control[name=captcha], .App_Undertaker_Request .form-group .form-control[name=captcha], .App_Undertaker_Search .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, .pagination .form-group select.form-control, .Special_Html .form-group select.form-control, .App_Undertaker_Request .form-group select.form-control, .App_Undertaker_Search .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, .pagination .form-group [type=date].form-control, .Special_Html .form-group [type=date].form-control, .App_Undertaker_Request .form-group [type=date].form-control, .App_Undertaker_Search .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, .pagination .form-group [type=date].form-control::-webkit-datetime-edit, .Special_Html .form-group [type=date].form-control::-webkit-datetime-edit, .App_Undertaker_Request .form-group [type=date].form-control::-webkit-datetime-edit, .App_Undertaker_Search .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, .pagination .form-group [type=date].form-control::-webkit-date-and-time-value, .Special_Html .form-group [type=date].form-control::-webkit-date-and-time-value, .App_Undertaker_Request .form-group [type=date].form-control::-webkit-date-and-time-value, .App_Undertaker_Search .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, .pagination .form-group .checkbox .control-label > p, .Special_Html .form-group .checkbox .control-label > p, .App_Undertaker_Request .form-group .checkbox .control-label > p, .App_Undertaker_Search .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, .pagination .form-group .grouped-elements label, .Special_Html .form-group .grouped-elements label, .App_Undertaker_Request .form-group .grouped-elements label, .App_Undertaker_Search .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, .pagination .form-group .grouped-elements .control-label, .Special_Html .form-group .grouped-elements .control-label, .App_Undertaker_Request .form-group .grouped-elements .control-label, .App_Undertaker_Search .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, .pagination .form-group .radio label, .Special_Html .form-group .radio label, .App_Undertaker_Request .form-group .radio label, .App_Undertaker_Search .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, .pagination .form-group .radio .control-label, .Special_Html .form-group .radio .control-label, .App_Undertaker_Request .form-group .radio .control-label, .App_Undertaker_Search .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, .pagination .form-group .checkbox label, .Special_Html .form-group .checkbox label, .App_Undertaker_Request .form-group .checkbox label, .App_Undertaker_Search .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, .pagination .form-group .checkbox .control-label, .Special_Html .form-group .checkbox .control-label, .App_Undertaker_Request .form-group .checkbox .control-label, .App_Undertaker_Search .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, .pagination .form-group.captcha-element .g-recaptcha > div, .Special_Html .form-group.captcha-element .g-recaptcha > div, .App_Undertaker_Request .form-group.captcha-element .g-recaptcha > div, .App_Undertaker_Search .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, .pagination .form-group.submit-element a.btn-default, .Special_Html .form-group.submit-element a.btn-default, .App_Undertaker_Request .form-group.submit-element a.btn-default, .App_Undertaker_Search .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, .pagination .form-group.submit-element .btn-default, .Special_Html .form-group.submit-element .btn-default, .App_Undertaker_Request .form-group.submit-element .btn-default, .App_Undertaker_Search .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, .pagination .form-group.submit-element a.btn-primary, .Special_Html .form-group.submit-element a.btn-primary, .App_Undertaker_Request .form-group.submit-element a.btn-primary, .App_Undertaker_Search .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, .pagination .form-group.submit-element .btn-primary, .Special_Html .form-group.submit-element .btn-primary, .App_Undertaker_Request .form-group.submit-element .btn-primary, .App_Undertaker_Search .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, .pagination .form-group.submit-element a.btn-custom, .Special_Html .form-group.submit-element a.btn-custom, .App_Undertaker_Request .form-group.submit-element a.btn-custom, .App_Undertaker_Search .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, .pagination .form-group.submit-element .btn-custom, .Special_Html .form-group.submit-element .btn-custom, .App_Undertaker_Request .form-group.submit-element .btn-custom, .App_Undertaker_Search .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: #153f95;
  border-color: #153f95;
  color: #fff;
}
.variant-01 .form-group.submit-element a.btn-default:hover, .module-style__company-history .form-group.submit-element a.btn-default:hover, .pagination .form-group.submit-element a.btn-default:hover, .Special_Html .form-group.submit-element a.btn-default:hover, .App_Undertaker_Request .form-group.submit-element a.btn-default:hover, .App_Undertaker_Search .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, .pagination .form-group.submit-element .btn-default:hover, .Special_Html .form-group.submit-element .btn-default:hover, .App_Undertaker_Request .form-group.submit-element .btn-default:hover, .App_Undertaker_Search .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, .pagination .form-group.submit-element a.btn-primary:hover, .Special_Html .form-group.submit-element a.btn-primary:hover, .App_Undertaker_Request .form-group.submit-element a.btn-primary:hover, .App_Undertaker_Search .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, .pagination .form-group.submit-element .btn-primary:hover, .Special_Html .form-group.submit-element .btn-primary:hover, .App_Undertaker_Request .form-group.submit-element .btn-primary:hover, .App_Undertaker_Search .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, .pagination .form-group.submit-element a.btn-custom:hover, .Special_Html .form-group.submit-element a.btn-custom:hover, .App_Undertaker_Request .form-group.submit-element a.btn-custom:hover, .App_Undertaker_Search .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, .pagination .form-group.submit-element .btn-custom:hover, .Special_Html .form-group.submit-element .btn-custom:hover, .App_Undertaker_Request .form-group.submit-element .btn-custom:hover, .App_Undertaker_Search .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: #0f2c68;
  border-color: #0f2c68;
}
.variant-01 .form-group.has-error .form-control[aria-invalid=true], .module-style__company-history .form-group.has-error .form-control[aria-invalid=true], .pagination .form-group.has-error .form-control[aria-invalid=true], .Special_Html .form-group.has-error .form-control[aria-invalid=true], .App_Undertaker_Request .form-group.has-error .form-control[aria-invalid=true], .App_Undertaker_Search .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, .pagination ul.form-errors, .Special_Html ul.form-errors, .App_Undertaker_Request ul.form-errors, .App_Undertaker_Search 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: none;
}
.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: #153f95;
  color: #fff;
  border-radius: 0;
  -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: #0f2c68;
  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: #0f2c68;
  border: 0;
  min-width: 35px;
  text-align: center;
  color: #fff;
  border-radius: 0;
  opacity: 0.1;
}
.pagination > li.disabled > span:hover, .pagination > li.disabled > span:focus {
  background-color: #0f2c68;
  border: 0;
  color: #fff;
  opacity: 0.1;
}
.pagination > li.active > span {
  background-color: #0f2c68;
  border: 0;
  min-width: 35px;
  text-align: center;
  color: #fff;
  border-radius: 0;
  -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: #08193c;
  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: 0;
  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: #153f95;
  color: #fff;
  border-radius: 0;
  -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: #0f2c68;
  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: #0f2c68;
  border: 0;
  min-width: 35px;
  text-align: center;
  color: #fff;
  border-radius: 0;
  opacity: 0.1;
}
.pagination > li.disabled > span:hover, .pagination > li.disabled > span:focus {
  background-color: #0f2c68;
  border: 0;
  color: #fff;
  opacity: 0.1;
}
.pagination > li.active > span {
  background-color: #0f2c68;
  border: 0;
  min-width: 35px;
  text-align: center;
  color: #fff;
  border-radius: 0;
  -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: #08193c;
  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: 0;
  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;
}

/* SPORTSUCHE STYLING */
.Special_Club_Search .box-headline {
  background: #153f95;
  color: #fff;
  border-radius: 0;
}
.Special_Club_Search .special-club-search-toggle-wrapper .special-club-search-toggle .toggle-details {
  background: #153f95;
  color: #fff;
}
.Special_Club_Search .special-club-search-toggle-wrapper .special-club-search-toggle .toggle-details:hover {
  background: #0f2c68;
  color: #fff;
}
.Special_Club_Search .toggle-info .toggle-details .amphiicon.amphiicon-info-circle.amphiicon-solid {
  color: #153f95;
}
.Special_Club_Search .box-content .amphiicon.amphiicon-info-circle.amphiicon-solid {
  color: #153f95;
}
.Special_Club_Search .box-content-highlight span {
  border-radius: 0;
}

.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: #153f95;
  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 #153f95;
  background: #153f95;
  position: absolute;
  border-radius: 0;
  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 #153f95;
  background: #153f95;
  position: absolute;
  border-radius: 0;
  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 #153f95;
  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(21, 63, 149, 0.3);
            box-shadow: 0 0 0 0 rgba(21, 63, 149, 0.3);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(21, 63, 149, 0);
            box-shadow: 0 0 0 10px rgba(21, 63, 149, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(21, 63, 149, 0);
            box-shadow: 0 0 0 0 rgba(21, 63, 149, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(21, 63, 149, 0.3);
            box-shadow: 0 0 0 0 rgba(21, 63, 149, 0.3);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(21, 63, 149, 0);
            box-shadow: 0 0 0 10px rgba(21, 63, 149, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(21, 63, 149, 0);
            box-shadow: 0 0 0 0 rgba(21, 63, 149, 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__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 .svg-amphiicon svg.amphiicon {
  fill: #fff;
}
.module-style__text-white .svg-amphiicon svg.amphiicon .fa-primary {
  fill: #fff;
}
.module-style__text-white .svg-amphiicon svg.amphiicon .fa-secondary {
  fill: #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;
  text-align: center;
}
.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: #606060;
}

.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: #153f95;
  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);
}

.header .top-nav .main-nav > li.megamenue-trigger {
  position: static;
}
.header .top-nav .main-nav > li.megamenue-trigger .megamenue-wrapper {
  background: #fff;
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
  border-top: 0;
  -webkit-transition: none;
  transition: none;
  z-index: 800;
  max-height: 70vh;
  overflow: auto;
}
.header .top-nav .main-nav > li.megamenue-trigger .megamenue-wrapper > div > .row {
  margin: 0;
}
.header .top-nav .main-nav > li.megamenue-trigger .megamenue-wrapper > div > .row ul li a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.header .top-nav .main-nav > li.megamenue-trigger .megamenue-wrapper > div > .row:last-child ul li a {
  border-bottom: none;
}
.header .top-nav .main-nav > li.megamenue-trigger .megamenue-wrapper ul {
  position: static;
  padding: 0;
  border-top: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  min-width: 100%;
}
.header .top-nav .main-nav > li.megamenue-trigger .megamenue-wrapper ul li ul {
  padding: 0;
}
.header .top-nav .main-nav > li.megamenue-trigger .megamenue-wrapper ul li ul li > span > a {
  font-weight: 400;
  text-transform: none;
  padding-left: 30px;
}
.header .top-nav .main-nav > li.megamenue-trigger:hover .megamenue-wrapper, .header .top-nav .main-nav > li.megamenue-trigger.hover .megamenue-wrapper, .header .top-nav .main-nav > li.megamenue-trigger:focus-within .megamenue-wrapper {
  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 .main-nav > li.megamenue-trigger:hover .megamenue-wrapper ul, .header .top-nav .main-nav > li.megamenue-trigger.hover .megamenue-wrapper ul, .header .top-nav .main-nav > li.megamenue-trigger:focus-within .megamenue-wrapper ul {
  opacity: 1;
  visibility: visible;
}

#editMode .header .top-nav .navigation.level-1 > li.megamenue-trigger > span {
  position: relative;
}
#editMode .header .top-nav .navigation.level-1 > li.megamenue-trigger > span > a.editButton {
  position: absolute;
}
#editMode .header .top-nav .navigation.level-1 > li.megamenue-trigger .megamenue-wrapper ul {
  overflow: visible;
}

.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: 50px;
}
.navigation-responsive-wrapper-bottom .amphiicon:before {
  position: relative;
  left: 2px;
}

header {
  display: contents;
}

.header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 800;
}
@media (max-width: 991px) and (orientation: landscape) {
  .header {
    position: relative;
  }
}

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

html {
  scroll-padding-top: auto;
}

.slider {
  overflow: hidden;
}

/*
 * In den dots vom Slider (wahlweise big und small) werden Zahlen ausgegeben.
 */
.slider.slider_small .owl-dots, .slider.slider_big .owl-dots {
  counter-reset: dots;
}
.slider.slider_small .owl-dots .owl-dot, .slider.slider_big .owl-dots .owl-dot {
  background: #FFF;
  color: #606060;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  margin: 0 5px;
  font-size: 1rem;
}
.slider.slider_small .owl-dots .owl-dot.active, .slider.slider_big .owl-dots .owl-dot.active, .slider.slider_small .owl-dots .owl-dot:hover, .slider.slider_big .owl-dots .owl-dot:hover {
  background: #153f95;
  color: #fff;
}
.slider.slider_small .owl-dots .owl-dot:before, .slider.slider_big .owl-dots .owl-dot:before {
  counter-increment: dots;
  content: counter(dots);
}
.slider.slider_small .owl-dots .owl-dot span, .slider.slider_big .owl-dots .owl-dot span {
  display: none;
}

/** Placeholder in Klassen verwenden **/
/** Dynamischer Klassenname **/
/** Dynamischer Klassenname **/
.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: #153f95;
  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 #153f95;
}
.content .amphi-slideshow .owl-dots .owl-dot.active span {
  background-color: #153f95;
  border: 2px solid #153f95;
}
.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 10px 35px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  letter-spacing: 0.2px;
  line-height: 1.5;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  text-decoration: none;
}
.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);
  position: absolute;
  left: 15px;
  top: 17px;
  font-size: 0.8em;
  margin-right: 10px;
}
.content .content_sidebar_nav .navigation > li span > a:after {
  content: none;
}
.content .content_sidebar_nav .navigation > li.active > span > a {
  color: #153f95;
  padding: 10px 10px 10px 40px;
  text-decoration: underline;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.content .content_sidebar_nav .navigation > li:hover > span > a, .content .content_sidebar_nav .navigation > li.hover > span > a {
  color: #153f95;
  padding: 10px 10px 10px 40px;
  text-decoration: underline;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.content .content_sidebar_nav .navigation > li:hover.active > span > a, .content .content_sidebar_nav .navigation > li.hover.active > span > a {
  color: #153f95;
  padding: 10px 10px 10px 40px;
  text-decoration: underline;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.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;
  color: #444;
  padding: 10px 15px 10px 50px;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.content .content_sidebar_nav .navigation > li ul li.active > span > a {
  color: #153f95;
  padding: 10px 10px 10px 55px;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.content .content_sidebar_nav .navigation > li ul li:hover > span > a, .content .content_sidebar_nav .navigation > li ul li.hover > span > a {
  color: #153f95;
  padding: 10px 10px 10px 55px;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.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: #153f95;
  padding: 10px 10px 10px 55px;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.content .content_sidebar_nav .navigation > li ul li ul li span > a {
  padding-left: 45px;
  color: #444;
  padding: 10px 15px 10px 70px;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.content .content_sidebar_nav .navigation > li ul li ul li.active > span > a {
  color: #153f95;
  padding: 10px 10px 10px 75px;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.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: #153f95;
  padding: 10px 10px 10px 75px;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.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: #153f95;
  padding: 10px 10px 10px 75px;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.content .content_sidebar_nav .navigation > li ul li ul li ul li span > a {
  padding-left: 60px;
  color: #444;
  padding: 10px 15px 10px 90px;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.content .content_sidebar_nav .navigation > li ul li ul li ul li.active > span > a {
  color: #153f95;
  padding: 10px 10px 10px 95px;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.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: #153f95;
  padding: 10px 10px 10px 95px;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.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: #153f95;
  padding: 10px 10px 10px 95px;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}

#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: #606060;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_icon a {
  color: #606060;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_icon a:hover {
  color: #606060;
  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: #606060;
  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: #606060;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li a:hover {
  color: #606060;
  opacity: 0.7;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li + li:before {
  color: #606060;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li.active a {
  font-weight: 600;
}

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

/* FOOTER ADDON BOTTOM */
.footer-addon-bottom {
  background: #fff;
  color: #606060;
  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: #153f95;
}
.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: #0f2c68;
}

@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: #0f2c68;
  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: #0f2c68;
  border: none;
  position: relative;
  background: #153f95;
  z-index: 5;
}
.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: #08193c;
  border: none;
  background: #0f2c68;
}
.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: #fff;
  font-size: 14px;
  color: #606060;
  padding: 10px 0;
}
.header-addon-top .text-wrapper p {
  padding: 0;
  margin: 0;
}
.header-addon-top a {
  color: #606060;
}
.header-addon-top a:hover {
  color: #606060;
  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: 50px;
}

/* 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: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
}
.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: #153f95;
  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: "Fira Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #606060;
  text-transform: none;
  padding: 10px 15px;
  line-height: 1.5;
  text-decoration: none;
}
.header .top-nav .navigation > li.active > span > a {
  color: #153f95;
  text-decoration: none;
}
.header .top-nav .navigation > li:hover > span > a, .header .top-nav .navigation > li.hover > span > a, .header .top-nav .navigation > li:focus-within > span > a {
  color: #153f95;
  text-decoration: none;
}
.header .top-nav .navigation > li:hover.active > span > a, .header .top-nav .navigation > li.hover.active > span > a, .header .top-nav .navigation > li:focus-within.active > span > a {
  color: #153f95;
  text-decoration: none;
}
.header .top-nav .navigation > li:hover > ul, .header .top-nav .navigation > li.hover > ul, .header .top-nav .navigation > li:focus-within > 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: 0;
}
.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: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
  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: 1.1rem;
  font-weight: 400;
  color: #606060;
  padding: 10px 15px 10px 10px;
  border-bottom: 1px solid rgba(29, 29, 27, 0.2);
  letter-spacing: 0.2px;
  line-height: 1.5;
  white-space: nowrap;
  text-transform: none;
  font-family: "Fira Sans", sans-serif;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.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: 600;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  font-size: 0.8em;
  position: relative;
  top: 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: #153f95;
  padding: 10px 10px 10px 15px;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.header .top-nav .navigation > li ul li:hover > span > a, .header .top-nav .navigation > li ul li.hover > span > a, .header .top-nav .navigation > li ul li:focus-within > span > a {
  color: #153f95;
  padding: 10px 10px 10px 15px;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.header .top-nav .navigation > li ul li:hover.active > span > a, .header .top-nav .navigation > li ul li.hover.active > span > a, .header .top-nav .navigation > li ul li:focus-within.active > span > a {
  color: #153f95;
  padding: 10px 10px 10px 15px;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.header .top-nav .navigation > li ul li:hover > ul, .header .top-nav .navigation > li ul li.hover > ul, .header .top-nav .navigation > li ul li:focus-within > 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;
  }
}
html.offcanvas:before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  opacity: 0;
  z-index: 904;
  visibility: hidden;
  pointer-events: none;
  -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);
}
html.offcanvas.offcanvas-active {
  overflow: inherit;
}
html.offcanvas.offcanvas-active:before {
  visibility: visible;
  pointer-events: none;
  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);
}

.offcanvas-sidebar.offcanvas-visible {
  opacity: 1;
}

.offcanvas-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 450px;
  max-width: 100%;
  font-size: 100%;
  background-color: #fff;
  color: #606060;
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
  -webkit-transform: translateX(calc(450px + 25px));
          transform: translateX(calc(450px + 25px));
  opacity: 0;
  z-index: 905;
  overflow: auto;
  -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);
}
.offcanvas-sidebar.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(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);
}
.offcanvas-sidebar .offcanvas-header {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 25px 15px;
  z-index: 10;
}
.offcanvas-sidebar .offcanvas-header .offcanvas-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.offcanvas-sidebar .offcanvas-header .offcanvas-closebutton {
  font-size: 2.5rem;
  background: transparent;
  color: #606060;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.offcanvas-sidebar .offcanvas-body {
  padding: 0 15px 25px 15px;
}
.offcanvas-sidebar .offcanvas-body .offcanvas-body-inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* ============================================================================================ MEDIA QUERIES ======= */
@media (max-width: 767px) {
  html.offcanvas-active {
    overflow: hidden;
  }
  html .offcanvas-sidebar {
    width: 100%;
  }
  html .offcanvas-sidebar.is-active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .offcanvas-sidebar .offcanvas-header .offcanvas-header-inner {
    padding-left: 0;
    padding-right: 0;
  }
  .offcanvas-sidebar .offcanvas-body .offcanvas-body-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.offcanvas-sidebar__right {
  right: 0;
}

@media (max-width: 767px) {
  .offcanvas-sidebar__right {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.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: #153f95;
  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: 50px;
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
}
.quicklinks-mobile__icons ul li a:hover .amphiicon {
  background-color: #0f2c68;
}

.quicklinks {
  position: fixed;
  top: 50%;
  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: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
  border-radius: 0;
  clear: both;
  margin-bottom: 4px;
}
.quicklinks .quicklinks_item:hover, .quicklinks .quicklinks_item.hover, .quicklinks .quicklinks_item:focus-within {
  -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: 0;
  background: #153f95;
  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: #444;
  background: #e9f4f8;
  -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: #606060;
}
.quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_content .text-wrapper a {
  color: #0f2c68;
}
.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: #051025;
}
.quicklinks .quicklinks_item.quicklinks_icons {
  height: 52px;
}
.quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_label {
  width: 45px;
  text-align: center;
  color: #fff;
  background: #153f95;
  -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: 0;
}
.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: #444;
  background: #e9f4f8;
  -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: #444;
  -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, .quicklinks .quicklinks_item:focus-within {
  -webkit-box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
          box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
}
.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, .quicklinks .quicklinks_item:focus-within.quicklinks_box .quicklinks_box_label {
  color: #fff;
  background: #153f95;
}
.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, .quicklinks .quicklinks_item:focus-within.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, .quicklinks .quicklinks_item:focus-within.quicklinks_box .quicklinks_box_label img, .quicklinks .quicklinks_item:focus-within.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, .quicklinks .quicklinks_item:focus-within.quicklinks_box .quicklinks_box_content {
  color: #606060;
  background: #e9f4f8;
}
.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, .quicklinks .quicklinks_item:focus-within.quicklinks_icons a {
  color: #153f95;
}
.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, .quicklinks .quicklinks_item:focus-within.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, .quicklinks .quicklinks_item:focus-within.quicklinks_icons .quicklinks_icons_label {
  color: #fff;
  background: #153f95;
}
.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, .quicklinks .quicklinks_item:focus-within.quicklinks_icons .quicklinks_icons_label img, .quicklinks .quicklinks_item:focus-within.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, .quicklinks .quicklinks_item:focus-within.quicklinks_icons .quicklinks_icons_content {
  color: #153f95;
  background: #e9f4f8;
}

#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:focus-within {
  left: 0 !important;
}
.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:focus-within {
  right: 0 !important;
}
.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: #12367f;
  color: #fff;
  padding: 5px 15px;
  font-size: 0.8rem;
  cursor: pointer;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
}
.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: 0;
  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: "Open Sans", sans-serif;
  font-size: 1.2rem;
  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: 50px;
  padding-top: 2px;
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
  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: #FFF;
  font-size: 0.9rem;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon {
  display: inline-block;
  margin-right: 5px;
  color: #606060;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon a {
  color: #153f95;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon a:hover {
  color: #0f2c68;
  opacity: 0.7;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon:empty {
  display: none;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_text {
  margin-right: 5px;
  color: #606060;
  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: #153f95;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li a:hover {
  color: #0f2c68;
  opacity: 0.7;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li + li:before {
  color: #606060;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li.active a {
  font-weight: 700;
}

/* SLIDER */
.slider {
  position: relative;
  background-color: #e9f4f8;
  /* Pagespeed Block */
}
.slider.slider_big {
  min-height: auto;
}
.slider.slider_big .single-header, .slider.slider_big .amphi-slideshow, .slider.slider_big .amphi-no-slideshow {
  min-height: auto;
}
.slider.slider_big .single-header .header-img, .slider.slider_big .amphi-slideshow .header-img, .slider.slider_big .amphi-no-slideshow .header-img {
  min-height: auto;
}
.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;
}
.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.7rem;
}
.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.2rem;
}
.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: auto;
}
.slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
  min-height: auto;
}
.slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
  min-height: auto;
}
.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: 3rem;
}
.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.7rem;
}
.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.2rem;
}
.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 .caption-wrapper .carousel-caption .btn {
  background: #153f95;
  color: #fff;
}
.slider .header-img .caption-wrapper .carousel-caption .btn:hover, .slider .header-img .caption-wrapper .carousel-caption .btn:focus, .slider .header-img .caption-wrapper .carousel-caption .btn:active, .slider .header-img .caption-wrapper .carousel-caption .btn.active {
  background: #0f2c68;
  color: #fff;
}
.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: auto;
  }
  .slider.slider_big .single-header, .slider.slider_big .amphi-slideshow, .slider.slider_big .amphi-no-slideshow {
    min-height: auto;
  }
  .slider.slider_big .single-header .header-img, .slider.slider_big .amphi-slideshow .header-img, .slider.slider_big .amphi-no-slideshow .header-img {
    min-height: auto;
  }
  .slider.slider_small {
    min-height: auto;
  }
  .slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
    min-height: auto;
  }
  .slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
    min-height: auto;
  }
}
@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: auto;
  }
  .slider.slider_big .single-header, .slider.slider_big .amphi-slideshow, .slider.slider_big .amphi-no-slideshow {
    min-height: auto;
  }
  .slider.slider_big .single-header .header-img, .slider.slider_big .amphi-slideshow .header-img, .slider.slider_big .amphi-no-slideshow .header-img {
    min-height: auto;
  }
  .slider.slider_small {
    min-height: auto;
  }
  .slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
    min-height: auto;
  }
  .slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
    min-height: auto;
  }
}
@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: auto;
  }
  .slider.slider_big .single-header, .slider.slider_big .amphi-slideshow, .slider.slider_big .amphi-no-slideshow {
    min-height: auto;
  }
  .slider.slider_big .single-header .header-img, .slider.slider_big .amphi-slideshow .header-img, .slider.slider_big .amphi-no-slideshow .header-img {
    min-height: auto;
  }
  .slider.slider_small {
    min-height: auto;
  }
  .slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
    min-height: auto;
  }
  .slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
    min-height: auto;
  }
}
@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 ======= */
/* ================================================================================= BREAKPOINT XXXXL 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;
  }
}
@media (min-width: 1570px) {
  .container {
    width: 1470px;
  }
  .offcanvas-header > .offcanvas-header-inner, .offcanvas-body > .offcanvas-body-inner {
    max-width: 1470px;
  }
  .slider .header-img .caption-wrapper {
    width: 1440px;
  }
}
/* ================================================================================ BREAKPOINT XXXXXL INCLUDE ======= */
/* BUTTONS */
a.btn-default, .btn-default,
a.btn-primary, .btn-primary,
a.btn-custom, .btn-custom {
  color: #fff;
  background-color: #153f95;
  border: none;
  border-radius: 0;
  margin-top: 18px;
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
  display: inline-block;
  font-family: "Fira Sans", sans-serif;
  padding: 15px 25px;
  font-weight: 700;
  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);
  position: relative;
  background: #eb7523;
  z-index: 5;
}
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: #0f2c68;
  border: none;
  -webkit-box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
          box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
  -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: #c95d12;
}
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, .btn-back {
  position: relative;
  border: none;
}
a.btn-back:before, .btn-back:before {
  content: "\f177";
  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);
  position: relative;
  left: 0;
  -webkit-transition: left 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: left 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  margin-right: 10px;
}
a.btn-back:after, .btn-back:after {
  content: none;
}
a.btn-back:hover, a.btn-back:focus, a.btn-back:active, a.btn-back.active, .btn-back:hover, .btn-back:focus, .btn-back:active, .btn-back.active {
  position: relative;
  border: none;
}
a.btn-back:hover:before, a.btn-back:focus:before, a.btn-back:active:before, a.btn-back.active:before, .btn-back:hover:before, .btn-back:focus:before, .btn-back:active:before, .btn-back.active:before {
  content: "\f177";
  left: -5px;
  -webkit-transition: left 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: left 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  margin-right: 10px;
}
a.btn-back:hover:after, a.btn-back:focus:after, a.btn-back:active:after, a.btn-back.active:after, .btn-back:hover:after, .btn-back:focus:after, .btn-back:active:after, .btn-back.active: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: 3rem;
  font-family: "Fira Sans", sans-serif;
  line-height: 1;
  margin: 0 0 10px 0;
  font-weight: 600;
  color: #153f95;
}

.headline2 {
  font-size: 1.7rem;
  font-family: "Fira Sans", sans-serif;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 400;
  color: #0085b0;
}

.headline3 {
  font-size: 1.5rem;
  font-family: "Fira Sans", sans-serif;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 600;
  color: #606060;
}

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

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

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

/* LINKS */
a {
  color: #153f95;
  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: #0f2c68;
  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: "Fira Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  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: #153f95;
}
.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: #606060;
  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: #606060;
  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: 400;
  color: #444;
  padding: 10px 15px 10px 15px;
  border-bottom: none;
  letter-spacing: 0.2px;
  line-height: 1.5;
  font-family: "Fira Sans", sans-serif;
  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: 600;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  font-size: 0.8em;
  position: relative;
  top: -1px;
  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: #153f95;
}
.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: #153f95;
}
.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: #153f95;
}
.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: #153f95;
}

/* SELECT COLOR */
::-moz-selection {
  background-color: #153f95;
  color: #fff;
}
::selection {
  background-color: #153f95;
  color: #fff;
}

::-moz-selection {
  background-color: #153f95;
  color: #fff;
}

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

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

button, input, select, textarea {
  font: "Open Sans", sans-serif;
}

/* 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: #153f95;
}
.svg-amphiicon svg.amphiicon .fa-primary {
  fill: #153f95;
}
.svg-amphiicon svg.amphiicon .fa-secondary {
  fill: #153f95;
  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%);
  }
}
/* ================================================================================================== CONTENT ======= */
main {
  overflow-x: hidden;
}
main .accessibility__font-size-changer {
  display: none;
}

.content.fullsize-teaser-section .content_content-background-inner {
  padding: 0 !important;
}
.content.fullsize-teaser-section-first .content_content-background-inner {
  padding-top: 0 !important;
}
.content:nth-child(even) {
  background: transparent;
}
.content .content_content-background-inner {
  padding: 100px 0 70px 0;
}
@media (max-width: 991px) {
  .content .content_content-background-inner {
    padding: 40px 0 10px 0;
  }
}
.content .content_content-background-inner .content_content-inner a:not(.btn, .external-content-button) {
  text-decoration: underline;
}
.content .content_content-background-inner .content_content-inner .pagination a {
  text-decoration: none;
}
.content .content_content-background-inner .index-big.content_content-inner .module-wrapper:first-child.Special_ChangingContents {
  margin-top: -15px;
}
.content .content_content-background-inner .index-small {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .content .content_content-background-inner .index-small {
    margin-left: 0;
  }
}
.content .content_content-background-inner .index-small .Special_Sponsor.module-style__box-white .owl-item .header-img {
  margin: 1px;
}
.content .content_content-background-inner .index-small .Special_Sponsor .amphi-slideshow .owl-carousel:has(.owl-dots.disabled) {
  padding-bottom: 0;
}
.content .content_content-background-inner .index-small .Special_Sponsor .amphi-slideshow .owl-carousel:has(.owl-nav.disabled) .owl-stage-outer {
  padding-top: 0;
}
.content .content_content-background-inner .index-small .Special_Sponsor .thumbnail {
  aspect-ratio: 3/1.2;
}
.content .content_content-background-inner .index-small .thumbnail {
  margin-bottom: 0;
}
.content .content_content-background-inner .index-small .thumbnail a:before, .content .content_content-background-inner .index-small .thumbnail a:after {
  display: none !important;
}
.content .content_content-background-inner .index-small .headline3 {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

.content_sidebar .content_sidebar_nav .content_sidebar_nav_headline a {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0 10px 10px 10px;
  text-decoration: none;
}
.content_sidebar .content_sidebar_nav .content_sidebar_nav_headline a:after {
  content: "\f149";
  font: normal normal normal 14px/1 FontAwesome;
  margin-left: 10px;
}
.content_sidebar .content_sidebar_nav .content_sidebar_nav_headline a:hover {
  text-decoration: underline;
}
.content_sidebar .content_sidebar_nav .navigation > li img {
  display: none;
}
.content_sidebar .content_sidebar_nav .navigation > li:last-child > span > a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.content_sidebar .content_sidebar_nav .navigation > li.open > span > a:before {
  content: "\f107";
  position: absolute;
  left: 12px;
  top: 15px;
}
.content_sidebar .content_sidebar_nav .navigation > li.active > span > a {
  padding: 10px 15px 10px 35px;
}
.content_sidebar .content_sidebar_nav .navigation > li.active:hover > span > a {
  padding: 10px 10px 10px 40px;
}
.content_sidebar .content_sidebar_nav .navigation.level-3 > li > span > a:before {
  left: 30px;
}
.content_sidebar .content_sidebar_nav .navigation.level-3 > li.open > span > a:before {
  left: 30px;
}
.content_sidebar .content_sidebar_nav .navigation.level-3 > li.active > span > a {
  padding: 10px 15px 10px 55px;
}
.content_sidebar .content_sidebar_nav .navigation.level-3 > li.active:hover > span > a {
  padding: 10px 10px 10px 60px;
}
.content_sidebar .content_sidebar_nav .navigation.level-4 > li > span > a:before {
  left: 50px;
}
.content_sidebar .content_sidebar_nav .navigation.level-4 > li.open > span > a:before {
  left: 50px;
}
.content_sidebar .content_sidebar_nav .navigation.level-4 > li.active > span > a {
  padding: 10px 15px 10px 70px;
}
.content_sidebar .content_sidebar_nav .navigation.level-4 > li.active:hover > span > a {
  padding: 10px 10px 10px 75px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li > span > a {
  padding: 10px 15px 10px 35px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li > span > a:before {
  left: 15px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li:hover > span > a {
  padding: 10px 10px 10px 40px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li.open > span > a:before {
  left: 12px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li.active > span > a {
  padding: 10px 15px 10px 35px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li.active:hover > span > a {
  padding: 10px 10px 10px 40px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li .level-5 > li > span > a {
  padding: 10px 15px 10px 55px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li .level-5 > li > span > a:before {
  left: 30px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li .level-5 > li:hover > span > a {
  padding: 10px 10px 10px 60px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li .level-5 > li.open > span > a:before {
  left: 30px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li .level-5 > li.active > span > a {
  padding: 10px 15px 10px 55px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li .level-5 > li.active:hover > span > a {
  padding: 10px 10px 10px 60px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li .level-5 > li .level-6 > li > span > a {
  padding: 10px 15px 10px 70px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li .level-5 > li .level-6 > li > span > a:before {
  left: 50px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li .level-5 > li .level-6 > li:hover > span > a {
  padding: 10px 10px 10px 75px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li .level-5 > li .level-6 > li.open > span > a:before {
  left: 50px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li .level-5 > li .level-6 > li.active > span > a {
  padding: 10px 15px 10px 70px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li .level-5 > li .level-6 > li.active:hover > span > a {
  padding: 10px 10px 10px 75px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li .level-5 > li .level-6 > li .level-7 > li > span > a {
  padding: 10px 15px 10px 85px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li .level-5 > li .level-6 > li .level-7 > li > span > a:before {
  left: 65px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li .level-5 > li .level-6 > li .level-7 > li:hover > span > a {
  padding: 10px 10px 10px 90px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li .level-5 > li .level-6 > li .level-7 > li.open > span > a:before {
  left: 65px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li .level-5 > li .level-6 > li .level-7 > li.active > span > a {
  padding: 10px 15px 10px 85px;
}
.content_sidebar .content_sidebar_nav.nav-fourth-level-start > .level-4 > li .level-5 > li .level-6 > li .level-7 > li.active:hover > span > a {
  padding: 10px 10px 10px 90px;
}

/* ==================================================================================== TEMPLATES OHNE SLIDER ======= */
.template-no-slider .content:first-child .content_content-background-inner {
  padding-top: 50px;
}

.template-unterseite .content:last-child .content_content-background-inner {
  padding: 100px 0 140px 0;
}
@media (max-width: 991px) {
  .template-unterseite .content:last-child .content_content-background-inner {
    padding: 40px 0 70px 0;
  }
}

.accessibility__contrast-mode .stylish-tabs li.blue-tab-toggle a:not(.edit-mode-element) {
  background-color: #000 !important;
  color: #fff !important;
}
.accessibility__contrast-mode body .stylish-tabs li.active a:not(.edit-mode-element) .text-wrapper {
  color: #fff !important;
}
.accessibility__contrast-mode .stylish-tab-content .tab-pane.blue-tab {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.accessibility__contrast-mode .stylish-tabs li:first-child a:not(.edit-mode-element) .text-wrapper {
  color: #000 !important;
}
.accessibility__contrast-mode body .stylish-tabs li.active:first-child a:not(.edit-mode-element) .text-wrapper {
  color: #000 !important;
}
.accessibility__contrast-mode .App_Undertaker_Request .form-section .headline3, .accessibility__contrast-mode .App_Undertaker_Search .form-section .headline3,
.accessibility__contrast-mode .App_Undertaker_Request .undertaker-search-wrapper, .accessibility__contrast-mode .App_Undertaker_Search .undertaker-search-wrapper,
.accessibility__contrast-mode .App_Undertaker_Request .info-text, .accessibility__contrast-mode .App_Undertaker_Search .info-text {
  background: #fff !important;
}
.accessibility__contrast-mode .App_Undertaker_Request .package-option.selected-package, .accessibility__contrast-mode .App_Undertaker_Search .package-option.selected-package {
  background: #000 !important;
}
.accessibility__contrast-mode .App_Undertaker_Request .package-option.selected-package:after, .accessibility__contrast-mode .App_Undertaker_Search .package-option.selected-package:after {
  border-top: 20px solid #000 !important;
}
.accessibility__contrast-mode .App_Undertaker_Request .package-option h4, .accessibility__contrast-mode .App_Undertaker_Request .addon-option h4, .accessibility__contrast-mode .App_Undertaker_Search .package-option h4, .accessibility__contrast-mode .App_Undertaker_Search .addon-option h4,
.accessibility__contrast-mode .App_Undertaker_Request .package-option h5, .accessibility__contrast-mode .App_Undertaker_Request .addon-option h5, .accessibility__contrast-mode .App_Undertaker_Search .package-option h5, .accessibility__contrast-mode .App_Undertaker_Search .addon-option h5,
.accessibility__contrast-mode .App_Undertaker_Request .package-price, .accessibility__contrast-mode .App_Undertaker_Request .addon-price, .accessibility__contrast-mode .App_Undertaker_Search .package-price, .accessibility__contrast-mode .App_Undertaker_Search .addon-price {
  color: #000 !important;
}
.accessibility__contrast-mode .stylish-tab-content .tab-pane.blue-tab .tab-icon,
.accessibility__contrast-mode .stylish-tab-content .tab-pane .tab-icon {
  color: #000 !important;
}
.accessibility__contrast-mode header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li.has-children > span > a:after {
  color: #000 !important;
}
.accessibility__contrast-mode .slider.slider_big .owl-nav > div, .accessibility__contrast-mode .slider.slider_small .owl-nav > div {
  background: #000 !important;
  border-color: #000 !important;
}
.accessibility__contrast-mode body header .header-addon-top .toolbar-btn-primary .amphiicon,
.accessibility__contrast-mode header .header-addon-top .toolbar-btn-secondary .amphiicon {
  fill: #FFF !important;
  color: #fff;
}
.accessibility__contrast-mode header .header-addon-top.header-addon-top__toolbar .header-addon-top_inner .header-addon-top-right {
  background: #000 !important;
}
.accessibility__contrast-mode header .header-addon-top.header-addon-top__toolbar .header-addon-top_inner .header-addon-top-right .amphiicon {
  color: #fff !important;
}
.accessibility__contrast-mode header .header-addon-top.header-addon-top__toolbar .header-addon-top_inner .header-addon-top-right button {
  background: #000 !important;
}
.accessibility__contrast-mode .progress-wrap svg.progress-circle path {
  stroke: #000000 !important;
}
.accessibility__contrast-mode .progress-wrap::after {
  color: #000 !important;
}
.accessibility__contrast-mode .App_Undertaker_Request .package-option.selected-package h4, .accessibility__contrast-mode .App_Undertaker_Request .package-option.selected-package h5, .accessibility__contrast-mode .App_Undertaker_Request .package-option.selected-package .package-price, .accessibility__contrast-mode .App_Undertaker_Request .package-option.selected-package .addon-price, .accessibility__contrast-mode .App_Undertaker_Search .package-option.selected-package h4, .accessibility__contrast-mode .App_Undertaker_Search .package-option.selected-package h5, .accessibility__contrast-mode .App_Undertaker_Search .package-option.selected-package .package-price, .accessibility__contrast-mode .App_Undertaker_Search .package-option.selected-package .addon-price {
  color: #fff !important;
}
.accessibility__contrast-mode .App_Undertaker_Request .details-toggle, .accessibility__contrast-mode .App_Undertaker_Search .details-toggle {
  color: #000 !important;
}
.accessibility__contrast-mode a:not(.btn) {
  color: #000 !important;
}
.accessibility__contrast-mode .App_Undertaker_Request .radio label.is-checked::before, .accessibility__contrast-mode .App_Undertaker_Request .checkbox label.is-checked::before, .accessibility__contrast-mode .App_Undertaker_Search .radio label.is-checked::before, .accessibility__contrast-mode .App_Undertaker_Search .checkbox label.is-checked::before {
  background-color: #000 !important;
  border-color: #000 !important;
}
.accessibility__contrast-mode .App_Undertaker_Request .details-content, .accessibility__contrast-mode .App_Undertaker_Search .details-content {
  background-color: #fff !important;
  border: 1px solid #000 !important;
}

.slider {
  position: relative;
}
.slider .dot-mark {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 100;
}
@media (max-width: 991px) {
  .slider .dot-mark {
    display: none !important;
  }
}
.slider .dot-mark.dot-mark-01 {
  top: 10%;
  left: 20%;
  background: url(../layout/bildmarke-01.svg);
  background-size: cover;
  width: 70px;
  height: 70px;
}
.slider .dot-mark.dot-mark-02 {
  top: 70%;
  left: 35%;
  background: url(../layout/bildmarke-02.svg);
  background-size: cover;
  width: 70px;
  height: 70px;
}
.slider .dot-mark.dot-mark-03 {
  top: 25%;
  right: 20%;
  background: url(../layout/bildmarke-03.svg);
  background-size: cover;
  width: 80px;
  height: 100px;
}
.slider .dot-mark.dot-mark-04 {
  top: 80%;
  right: 0;
  background: url(../layout/bildmarke-04.svg);
  background-size: cover;
}

/* ============================================================================================= GROSSE ICONS ======= */
.editor-style__social-media-icon .amphiicon {
  width: 45px;
  height: 45px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  background: #153f95;
  color: #fff;
  margin: 5px;
  border-radius: 50px;
  -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);
}
@media (max-width: 991px) {
  .editor-style__social-media-icon .amphiicon {
    width: 30px;
    height: 30px;
    font-size: 1.125rem;
  }
}
.editor-style__social-media-icon a {
  text-decoration: none !important;
  opacity: 1 !important;
}
.editor-style__social-media-icon a .amphiicon {
  background: #153f95;
  color: #fff;
  -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);
}
.editor-style__social-media-icon a:hover .amphiicon, .editor-style__social-media-icon a:focus .amphiicon {
  background: #0f2c68;
  color: #fff;
  -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);
}

.offcanvas-body .editor-style__social-media-icon .amphiicon {
  background: #eb7523;
  color: #fff;
}
.offcanvas-body .editor-style__social-media-icon a .amphiicon {
  background: #eb7523;
  color: #fff;
}
.offcanvas-body .editor-style__social-media-icon a:hover .amphiicon, .offcanvas-body .editor-style__social-media-icon a:focus .amphiicon {
  background: #c95d12;
  color: #fff;
}

/* =================================================================================================== FOOTER ======= */
.footer-addon-top .footer-addon-top_background-inner {
  padding: 100px 0 140px 0;
}
@media (max-width: 991px) {
  .footer-addon-top .footer-addon-top_background-inner {
    padding: 40px 0 70px 0;
  }
}

.logo-footer {
  max-width: 200px;
}
@media (max-width: 767px) {
  .logo-footer {
    float: left !important;
    margin-bottom: 20px;
  }
}

.footer {
  position: relative;
}
.footer .footer_background-inner .footer_inner > div .row > div:last-child .module-content-block {
  background: #c95d12;
  padding: 40px 30px;
  border-radius: 0;
}
.footer .footer_background-inner a {
  text-decoration: none;
}
.footer .footer_background-inner a:not(.btn):hover {
  text-decoration: underline;
}
.footer .footer_background-inner .module-style__text-white .module-content-block a.btn-default, .footer .footer_background-inner .module-style__text-white .module-content-block .btn-default, .footer .footer_background-inner .module-style__text-white .module-content-block a.btn-primary, .footer .footer_background-inner .module-style__text-white .module-content-block .btn-primary, .footer .footer_background-inner .module-style__text-white .module-content-block a.btn-custom, .footer .footer_background-inner .module-style__text-white .module-content-block .btn-custom {
  color: #fff;
  background: #153f95;
}
.footer .footer_background-inner .module-style__text-white .module-content-block a.btn-default:hover, .footer .footer_background-inner .module-style__text-white .module-content-block a.btn-default:focus, .footer .footer_background-inner .module-style__text-white .module-content-block a.btn-default.hover, .footer .footer_background-inner .module-style__text-white .module-content-block .btn-default:hover, .footer .footer_background-inner .module-style__text-white .module-content-block .btn-default:focus, .footer .footer_background-inner .module-style__text-white .module-content-block .btn-default.hover, .footer .footer_background-inner .module-style__text-white .module-content-block a.btn-primary:hover, .footer .footer_background-inner .module-style__text-white .module-content-block a.btn-primary:focus, .footer .footer_background-inner .module-style__text-white .module-content-block a.btn-primary.hover, .footer .footer_background-inner .module-style__text-white .module-content-block .btn-primary:hover, .footer .footer_background-inner .module-style__text-white .module-content-block .btn-primary:focus, .footer .footer_background-inner .module-style__text-white .module-content-block .btn-primary.hover, .footer .footer_background-inner .module-style__text-white .module-content-block a.btn-custom:hover, .footer .footer_background-inner .module-style__text-white .module-content-block a.btn-custom:focus, .footer .footer_background-inner .module-style__text-white .module-content-block a.btn-custom.hover, .footer .footer_background-inner .module-style__text-white .module-content-block .btn-custom:hover, .footer .footer_background-inner .module-style__text-white .module-content-block .btn-custom:focus, .footer .footer_background-inner .module-style__text-white .module-content-block .btn-custom.hover {
  color: #153f95;
  background: #fff;
}
.footer hr {
  opacity: 0.25;
}

.footer-addon-bottom {
  padding: 30px 0;
}
@media (max-width: 767px) {
  .footer-addon-bottom {
    font-size: 0.9rem;
  }
}
.footer-addon-bottom .footer-addon-bottom_inner-wrapper > .container > .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .footer-addon-bottom .footer-addon-bottom_inner-wrapper > .container > .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.footer-addon-bottom .footer-addon-bottom_inner {
  padding: 0;
}
.footer-addon-bottom .footer-addon-bottom_inner .footer-addon-bottom_copyright-text .text-wrapper {
  color: #606060;
}
.footer-addon-bottom .footer-addon-bottom_inner .footer-addon-bottom_dosb-branding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 767px) {
  .footer-addon-bottom .footer-addon-bottom_inner .footer-addon-bottom_dosb-branding {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer-addon-bottom .footer-addon-bottom_inner .footer-addon-bottom_dosb-branding img {
  max-width: 250px;
  max-height: 80px;
}
@media (max-width: 767px) {
  .footer-addon-bottom .footer-addon-bottom_inner .footer-addon-bottom_dosb-branding img {
    max-width: 200px;
    max-height: 60px;
    margin-bottom: 20px;
  }
}
.footer-addon-bottom .footer-addon-bottom_inner .footer-addon-bottom_branding-text {
  margin-top: 15px;
  font-size: 0.8rem;
}
.footer-addon-bottom .footer-addon-bottom_inner .text-wrapper a {
  color: #606060;
  -webkit-transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.footer-addon-bottom .footer-addon-bottom_inner .text-wrapper a .amphiicon {
  font-size: 1.5rem;
  margin-left: 15px;
}
.footer-addon-bottom .footer-addon-bottom_inner .text-wrapper a:hover {
  color: #606060;
  opacity: 0.7;
  -webkit-transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
@media (max-width: 767px) {
  .footer-addon-bottom .footer-addon-bottom_inner .text-wrapper > p {
    text-align: left !important;
  }
}

/* ========================================================================================= HEADER ADDON TOP ======= */
header .header-addon-top.header-addon-top__toolbar {
  font-size: 1rem;
  padding: 0;
  border-bottom: 0;
}
header .header-addon-top.header-addon-top__toolbar .header-addon-top_inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #f1f1f1;
}
header .header-addon-top.header-addon-top__toolbar .header-addon-top_inner a:hover {
  opacity: 1;
}
header .header-addon-top.header-addon-top__toolbar .header-addon-top_inner > div {
  position: relative;
  z-index: 10;
  margin-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  header .header-addon-top.header-addon-top__toolbar .header-addon-top_inner > div {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  header .header-addon-top.header-addon-top__toolbar .header-addon-top_inner > div {
    margin-left: 15px;
  }
}
header .header-addon-top.header-addon-top__toolbar .header-addon-top_inner .header-addon-top-right {
  border-left: 1px solid #f1f1f1;
  padding-left: 15px;
  margin-left: 10px;
}
header .header-addon-top.header-addon-top__toolbar .header-addon-top_inner .header-contact {
  color: #000;
  -ms-flex-line-pack: center;
      align-content: center;
  margin-right: 20px;
}
@media (max-width: 1199px) {
  header .header-addon-top.header-addon-top__toolbar .header-addon-top_inner .header-contact {
    margin-right: 15px;
  }
}
@media (max-width: 991px) {
  header .header-addon-top.header-addon-top__toolbar .header-addon-top_inner .header-contact {
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  header .header-addon-top.header-addon-top__toolbar .header-addon-top_inner .header-contact:first-child {
    display: none;
  }
}
header .header-addon-top.header-addon-top__toolbar .header-addon-top_inner .header-contact a:not(.btn) {
  color: #eb7523;
  margin: 0 5px;
}
header .header-addon-top.header-addon-top__toolbar .header-addon-top_inner .header-contact a:not(.btn) .amphiicon {
  position: relative;
  top: 3px;
  font-size: 25px;
  color: #eb7523;
  -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);
}
@media (max-width: 767px) {
  header .header-addon-top.header-addon-top__toolbar .header-addon-top_inner .header-contact a:not(.btn) .amphiicon {
    font-size: 20px;
  }
}
header .header-addon-top.header-addon-top__toolbar .header-addon-top_inner .header-contact a:not(.btn) .amphiicon:hover, header .header-addon-top.header-addon-top__toolbar .header-addon-top_inner .header-contact a:not(.btn) .amphiicon:focus {
  color: #153f95;
  -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);
}
header .header-addon-top.header-addon-top__toolbar .header-addon-top_inner .header-contact .btn + .btn {
  margin-left: 5px;
}
header .header-addon-top.header-addon-top__toolbar .btn {
  background: #153f95;
  border-color: #153f95;
  margin-top: 0;
  padding: 10px 20px;
}
header .header-addon-top.header-addon-top__toolbar .btn:hover, header .header-addon-top.header-addon-top__toolbar .btn:focus {
  background: #0f2c68;
  border-color: #0f2c68;
}
header .header-addon-top.header-addon-top__toolbar .amphiicon {
  position: relative;
  top: auto;
  text-align: center;
  padding: 0;
  background-color: transparent;
  color: inherit;
  width: auto;
  height: auto;
  margin: 0;
  font-size: inherit;
  border-radius: 100%;
}

/* =================================================================================================== HEADER ======= */
header {
  position: sticky;
  display: block;
  top: 0;
  z-index: 850;
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
}
header .header.header__logo-left-nav-right {
  position: relative;
  padding: 20px 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 0;
}
header .header.header__logo-left-nav-right .logo-wrapper .logo {
  max-width: 280px;
  max-height: 220px;
  -webkit-transition: height 0.5s cubic-bezier(0.55, 0, 0.1, 1), max-width 0.5s cubic-bezier(0.55, 0, 0.1, 1), max-height 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: height 0.5s cubic-bezier(0.55, 0, 0.1, 1), max-width 0.5s cubic-bezier(0.55, 0, 0.1, 1), max-height 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
@media (max-width: 991px) {
  header .header.header__logo-left-nav-right .logo-wrapper .logo {
    max-width: 200px;
    max-height: 220px;
  }
}
header .header.header__logo-left-nav-right .logo-wrapper .logo img, header .header.header__logo-left-nav-right .logo-wrapper .logo svg {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: height 0.5s cubic-bezier(0.55, 0, 0.1, 1), max-width 0.5s cubic-bezier(0.55, 0, 0.1, 1), max-height 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: height 0.5s cubic-bezier(0.55, 0, 0.1, 1), max-width 0.5s cubic-bezier(0.55, 0, 0.1, 1), max-height 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
@media (max-width: 991px) {
  header .header.header__logo-left-nav-right .top-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
header .header.header__logo-left-nav-right .top-nav .search-info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  header .header.header__logo-left-nav-right .top-nav .search-info-wrapper {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (max-width: 991px) {
  header .header.header__logo-left-nav-right .top-nav .navbar {
    margin-left: 10px;
    padding: 20px 0 20px 10px;
    -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);
  }
}
header .header.header__logo-left-nav-right .top-nav .hamburger {
  padding: 0 0 0 15px;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 {
  position: relative;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li img {
  display: none;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li > span > a {
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
@media (max-width: 1369px) {
  header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li ul > li > span > a {
    font-size: 1rem;
  }
}
@media (max-width: 1269px) {
  header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li ul > li > span > a {
    font-size: 0.95rem;
    padding: 10px 15px 10px 10px;
  }
}
@media (max-width: 1061px) {
  header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li ul > li > span > a {
    font-size: 0.9rem;
  }
}
@media (max-width: 1061px) {
  header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li ul > li > span > a:before {
    top: 0;
  }
}
@media (max-width: 1269px) {
  header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li ul > li:hover span > a {
    padding: 10px 10px 10px 15px;
  }
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li.has-children > span > a:after {
  content: "\f107";
  position: relative;
  top: 0;
  display: inline-block;
  font-family: FontAwesome;
  font-size: 0.8em;
  color: #153f95;
  margin-left: 8px;
  text-shadow: none;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 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) {
  header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li.has-children > span > a:after {
    top: 1px;
    margin-left: 5px;
  }
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li.megamenue-trigger > span > a:after {
  content: "\f107";
  position: relative;
  top: 0;
  display: inline-block;
  font-family: FontAwesome;
  font-size: 0.8em;
  color: #153f95;
  margin-left: 8px;
  text-shadow: none;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 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) {
  header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li.megamenue-trigger > span > a:after {
    top: 1px;
    margin-left: 5px;
  }
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li:hover.has-children > span > a:after {
  top: -2px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 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: 1369px) {
  header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li:hover.has-children > span > a:after {
    top: -1px;
  }
}
@media (max-width: 1199px) {
  header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li:hover.has-children > span > a:after {
    top: 0;
  }
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li:hover.megamenue-trigger > span > a:after {
  top: -2px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), top 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: 1369px) {
  header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li:hover.megamenue-trigger > span > a:after {
    top: -1px;
  }
}
@media (max-width: 1199px) {
  header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li:hover.megamenue-trigger > span > a:after {
    top: 0;
  }
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li:last-child > span a {
  padding-right: 0 !important;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li ul > li.active > span > a {
  padding: 10px;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .special-megamenu-list {
  width: 100%;
  padding: 20px 0;
  overflow: auto;
  max-height: 70vh;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .special-megamenu-list > div > .row {
  position: relative;
  margin-bottom: 20px;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .special-megamenu-list > div > .row:only-of-type {
  margin-bottom: 0;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .special-megamenu-list > div > .row:last-child {
  margin-bottom: 0;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .special-megamenu-list > div > .row:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(100% - 2px);
  right: 0;
  bottom: 0;
  display: block;
  background: #fff;
  z-index: 1;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .special-megamenu-list > div > .row > div .level-2 {
  padding: 0;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .special-megamenu-list > div > .row > div .level-2 > li > span > a {
  background: #e9f4f8;
  color: #444;
  font-weight: 600;
  border-radius: 0;
  padding: 10px 15px 10px 10px;
  border: none;
  text-decoration: none;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .special-megamenu-list > div > .row > div .level-2 > li > span > a:before {
  display: none;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .special-megamenu-list > div > .row > div .level-2 > li:hover > span > a {
  color: #153f95;
  padding: 10px 15px 10px 10px;
  text-decoration: underline;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .special-megamenu-list > div > .row > div .level-3 > li > span > a {
  font-weight: 500;
  padding: 10px 10px 10px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  white-space: normal;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .special-megamenu-list > div > .row > div .level-3 > li > span > a:before {
  position: absolute;
  left: 12px;
  top: 17px;
  -webkit-transition: left 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: left 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
@media (max-width: 1369px) {
  header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .special-megamenu-list > div > .row > div .level-3 > li > span > a:before {
    top: 15px;
  }
}
@media (max-width: 1061px) {
  header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .special-megamenu-list > div > .row > div .level-3 > li > span > a:before {
    top: 14px;
  }
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .special-megamenu-list > div > .row > div .level-3 > li:hover > span > a {
  padding: 10px 5px 10px 35px;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .special-megamenu-list > div > .row > div .level-3 > li:hover > span > a:before {
  left: 17px;
  -webkit-transition: left 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: left 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .special-megamenu-list > div > .row > div:first-child {
  width: 33.33333%;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .special-megamenu-list > div > .row > div:first-child .level-3 > li:last-child > span > a {
  border-bottom: none;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .special-megamenu-list > div > .row > div:last-child {
  width: 66.66667%;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .special-megamenu-list > div > .row > div:last-child .level-3 {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .special-megamenu-list > div > .row > div:only-of-type {
  width: 100%;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 .three-columns-navigation-navigation-navigation .level-2 img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
header .header.header__logo-left-nav-right.fixed .logo-wrapper .logo {
  max-width: 280px;
  max-height: 220px;
  -webkit-transition: height 0.5s cubic-bezier(0.55, 0, 0.1, 1), max-width 0.5s cubic-bezier(0.55, 0, 0.1, 1), max-height 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: height 0.5s cubic-bezier(0.55, 0, 0.1, 1), max-width 0.5s cubic-bezier(0.55, 0, 0.1, 1), max-height 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
@media (max-width: 991px) {
  header .header.header__logo-left-nav-right.fixed .logo-wrapper .logo {
    max-width: 200px;
    max-height: 220px;
  }
}
header .header.header__logo-left-nav-right.fixed .logo-wrapper .logo img, header .header.header__logo-left-nav-right.fixed .logo-wrapper .logo svg {
  -webkit-transition: height 0.5s cubic-bezier(0.55, 0, 0.1, 1), max-width 0.5s cubic-bezier(0.55, 0, 0.1, 1), max-height 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: height 0.5s cubic-bezier(0.55, 0, 0.1, 1), max-width 0.5s cubic-bezier(0.55, 0, 0.1, 1), max-height 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}

@media (max-width: 991px) {
  header .header.header__logo-left-nav-right .top-nav .navbar {
    margin-left: 0;
    padding: 0;
  }
}
/* ==================================================================================================== BASIC ======= */
body {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  hyphenate-limit-chars: 10 5 5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container-fluid.small-slider-container {
  max-width: 1670px;
  padding: 0;
}

@media (max-width: 1199px) {
  .headline1 {
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .headline1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .headline1 {
    font-size: 1.7rem;
  }
}

.headline2 {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .headline2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 991px) {
  .headline3 {
    font-size: 1.3rem;
  }
}

.text-wrapper {
  letter-spacing: 0.025rem;
}

@media (max-width: 767px) {
  .Text_Text .module-content-block, .Text_Headline .module-content-block {
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  a.btn-default, .btn-default, a.btn-primary, .btn-primary, a.btn-custom, .btn-custom {
    padding: 8px 15px;
  }
}

a:not(.btn, .external-content-button, .greyscale-filter-button) {
  text-decoration: underline;
  text-underline-position: from-font;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 2px;
}
a:not(.btn, .external-content-button, .greyscale-filter-button):hover, a:not(.btn, .external-content-button, .greyscale-filter-button):focus {
  text-decoration: underline;
  -webkit-text-decoration-style: dotted !important;
          text-decoration-style: dotted !important;
  text-decoration-thickness: 1px !important;
}

abbr[title], abbr[data-original-title], span[lang] {
  text-underline-position: from-font;
  text-underline-offset: 2px;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none !important;
}

.accessibility-toggle-button {
  background: none;
  border: none;
  color: #153f95;
}
.accessibility-toggle-button:hover, .accessibility-toggle-button:focus {
  color: #0f2c68;
}

/* ================================================================================================== SHARIFF ======= */
.shariff li {
  height: 35px;
}
.shariff li a {
  height: 35px;
  text-align: center;
  -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);
}
.shariff li .amphiicon {
  width: auto;
  line-height: 35px;
  margin-right: 5px;
}
.shariff .shariff-button a {
  text-decoration: none;
}

/* =============================================================================================== THUMBNAILS ======= */
.thumbnail .caption {
  padding: 10px 0;
  color: #444;
}
.thumbnail > a:hover {
  opacity: 1;
}

.content .module-content-block .thumbnail {
  position: relative;
  overflow: hidden;
}
.content .module-content-block .thumbnail a {
  overflow: hidden;
}
.content .module-content-block .thumbnail a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100px;
  z-index: 10;
  pointer-events: none;
  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);
}
.content .module-content-block .thumbnail a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #153f95), to(#153f95));
  background: linear-gradient(90deg, #153f95 20%, #153f95 100%);
  z-index: 5;
  pointer-events: none;
  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);
}
.content .module-content-block .thumbnail a img {
  -webkit-transform: scale(1) translate3d(0, 0, 1px);
          transform: scale(1) translate3d(0, 0, 1px);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.8s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
}
.content .module-content-block:hover .thumbnail a:before {
  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);
}
.content .module-content-block:hover .thumbnail a:after {
  opacity: 0.25;
  -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);
}
.content .module-content-block:hover .thumbnail a img {
  -webkit-transform: scale(1.1) translate3d(0, 0, 1px);
          transform: scale(1.1) translate3d(0, 0, 1px);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.8s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
}

.Special_Sponsor .owl-item .header-img .thumbnail {
  padding: 5px;
  overflow: hidden;
}
.Special_Sponsor .owl-item .header-img .thumbnail a {
  overflow: hidden;
}
.Special_Sponsor .owl-item .header-img .thumbnail a img {
  -webkit-transform: scale(1) translate3d(0, 0, 1px);
          transform: scale(1) translate3d(0, 0, 1px);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.8s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
}
.Special_Sponsor .owl-item .header-img:hover .thumbnail a img {
  -webkit-transform: scale(1.1) translate3d(0, 0, 1px);
          transform: scale(1.1) translate3d(0, 0, 1px);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.8s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
}
.Special_Sponsor .module-content-block .thumbnail a:before, .Special_Sponsor .module-content-block .thumbnail a:after {
  display: none;
}

/* =================================================================================================== PAGEER ======= */
.pagination > li {
  margin-bottom: 3px;
  white-space: nowrap;
}
.pagination > li a {
  border: none;
}
.pagination > li a[rel~=first], .pagination > li a[rel~=prev], .pagination > li a[rel~=last], .pagination > li a[rel~=next] {
  background-color: #eb7523;
  color: #fff;
  opacity: 1;
}
.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 {
  background-color: #c95d12;
  color: #fff;
}
.pagination > li > span {
  border: none;
}
.pagination > li > span:hover, .pagination > li > span:focus {
  border: none;
}
.pagination > li > span, .pagination > li a {
  width: 30px;
  margin-left: 1px;
  text-align: center;
  padding: 5px 0;
}
.pagination > li.active > span, .pagination > li.disabled > span {
  background-color: #eb7523;
  color: #fff;
  border: none;
}
.pagination > li.active > span:hover, .pagination > li.active > span:focus, .pagination > li.disabled > span:hover, .pagination > li.disabled > span:focus {
  background-color: #eb7523;
  color: #fff;
  border: none;
}
.pagination > li.disabled {
  display: none;
}
.pagination > li.disabled > span {
  background-color: #eb7523;
  color: #fff;
}
.pagination > li.disabled > span:hover, .pagination > li.disabled > span:focus {
  background-color: #c95d12;
  color: #fff;
}

/* ============================================================================================= OWL-CAROUSEL ======= */
.slider .owl-item .carousel-caption, .slider .owl-item .gallery-carousel-caption, .slider .single-header .carousel-caption, .slider .single-header .gallery-carousel-caption, main .content .owl-item .carousel-caption, main .content .owl-item .gallery-carousel-caption, main .content .single-header .carousel-caption, main .content .single-header .gallery-carousel-caption, footer .owl-item .carousel-caption, footer .owl-item .gallery-carousel-caption, footer .single-header .carousel-caption, footer .single-header .gallery-carousel-caption {
  opacity: 1;
}
.slider .owl-item .carousel-caption .headline1 a, .slider .owl-item .carousel-caption .headline2 a, .slider .owl-item .gallery-carousel-caption .headline1 a, .slider .owl-item .gallery-carousel-caption .headline2 a, .slider .single-header .carousel-caption .headline1 a, .slider .single-header .carousel-caption .headline2 a, .slider .single-header .gallery-carousel-caption .headline1 a, .slider .single-header .gallery-carousel-caption .headline2 a, main .content .owl-item .carousel-caption .headline1 a, main .content .owl-item .carousel-caption .headline2 a, main .content .owl-item .gallery-carousel-caption .headline1 a, main .content .owl-item .gallery-carousel-caption .headline2 a, main .content .single-header .carousel-caption .headline1 a, main .content .single-header .carousel-caption .headline2 a, main .content .single-header .gallery-carousel-caption .headline1 a, main .content .single-header .gallery-carousel-caption .headline2 a, footer .owl-item .carousel-caption .headline1 a, footer .owl-item .carousel-caption .headline2 a, footer .owl-item .gallery-carousel-caption .headline1 a, footer .owl-item .gallery-carousel-caption .headline2 a, footer .single-header .carousel-caption .headline1 a, footer .single-header .carousel-caption .headline2 a, footer .single-header .gallery-carousel-caption .headline1 a, footer .single-header .gallery-carousel-caption .headline2 a {
  text-decoration: none;
}
.slider .owl-item .carousel-caption .headline1 a:hover, .slider .owl-item .carousel-caption .headline1 a:focus, .slider .owl-item .carousel-caption .headline2 a:hover, .slider .owl-item .carousel-caption .headline2 a:focus, .slider .owl-item .gallery-carousel-caption .headline1 a:hover, .slider .owl-item .gallery-carousel-caption .headline1 a:focus, .slider .owl-item .gallery-carousel-caption .headline2 a:hover, .slider .owl-item .gallery-carousel-caption .headline2 a:focus, .slider .single-header .carousel-caption .headline1 a:hover, .slider .single-header .carousel-caption .headline1 a:focus, .slider .single-header .carousel-caption .headline2 a:hover, .slider .single-header .carousel-caption .headline2 a:focus, .slider .single-header .gallery-carousel-caption .headline1 a:hover, .slider .single-header .gallery-carousel-caption .headline1 a:focus, .slider .single-header .gallery-carousel-caption .headline2 a:hover, .slider .single-header .gallery-carousel-caption .headline2 a:focus, main .content .owl-item .carousel-caption .headline1 a:hover, main .content .owl-item .carousel-caption .headline1 a:focus, main .content .owl-item .carousel-caption .headline2 a:hover, main .content .owl-item .carousel-caption .headline2 a:focus, main .content .owl-item .gallery-carousel-caption .headline1 a:hover, main .content .owl-item .gallery-carousel-caption .headline1 a:focus, main .content .owl-item .gallery-carousel-caption .headline2 a:hover, main .content .owl-item .gallery-carousel-caption .headline2 a:focus, main .content .single-header .carousel-caption .headline1 a:hover, main .content .single-header .carousel-caption .headline1 a:focus, main .content .single-header .carousel-caption .headline2 a:hover, main .content .single-header .carousel-caption .headline2 a:focus, main .content .single-header .gallery-carousel-caption .headline1 a:hover, main .content .single-header .gallery-carousel-caption .headline1 a:focus, main .content .single-header .gallery-carousel-caption .headline2 a:hover, main .content .single-header .gallery-carousel-caption .headline2 a:focus, footer .owl-item .carousel-caption .headline1 a:hover, footer .owl-item .carousel-caption .headline1 a:focus, footer .owl-item .carousel-caption .headline2 a:hover, footer .owl-item .carousel-caption .headline2 a:focus, footer .owl-item .gallery-carousel-caption .headline1 a:hover, footer .owl-item .gallery-carousel-caption .headline1 a:focus, footer .owl-item .gallery-carousel-caption .headline2 a:hover, footer .owl-item .gallery-carousel-caption .headline2 a:focus, footer .single-header .carousel-caption .headline1 a:hover, footer .single-header .carousel-caption .headline1 a:focus, footer .single-header .carousel-caption .headline2 a:hover, footer .single-header .carousel-caption .headline2 a:focus, footer .single-header .gallery-carousel-caption .headline1 a:hover, footer .single-header .gallery-carousel-caption .headline1 a:focus, footer .single-header .gallery-carousel-caption .headline2 a:hover, footer .single-header .gallery-carousel-caption .headline2 a:focus {
  text-decoration: none;
}

@media (max-width: 991px) {
  .Content_Gallery, .Gallery_Album, .Special_Sponsor {
    overflow: hidden;
  }
}
.Content_Gallery .amphi-slideshow .owl-carousel, .Gallery_Album .amphi-slideshow .owl-carousel, .Special_Sponsor .amphi-slideshow .owl-carousel {
  overflow: visible;
  padding-bottom: 40px;
}
.Content_Gallery .amphi-slideshow .owl-carousel .owl-nav, .Gallery_Album .amphi-slideshow .owl-carousel .owl-nav, .Special_Sponsor .amphi-slideshow .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
}
@media (max-width: 991px) {
  .Content_Gallery .amphi-slideshow .owl-carousel .owl-nav, .Gallery_Album .amphi-slideshow .owl-carousel .owl-nav, .Special_Sponsor .amphi-slideshow .owl-carousel .owl-nav {
    display: none !important;
  }
}
.Content_Gallery .amphi-slideshow .owl-carousel .owl-nav > div, .Gallery_Album .amphi-slideshow .owl-carousel .owl-nav > div, .Special_Sponsor .amphi-slideshow .owl-carousel .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;
  background: none;
  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);
}
.Content_Gallery .amphi-slideshow .owl-carousel .owl-nav > div > span, .Gallery_Album .amphi-slideshow .owl-carousel .owl-nav > div > span, .Special_Sponsor .amphi-slideshow .owl-carousel .owl-nav > div > span {
  font-size: 50px;
  color: #153f95;
  text-shadow: none;
  -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);
}
.Content_Gallery .amphi-slideshow .owl-carousel .owl-nav > div > span:hover, .Gallery_Album .amphi-slideshow .owl-carousel .owl-nav > div > span:hover, .Special_Sponsor .amphi-slideshow .owl-carousel .owl-nav > div > span:hover {
  color: #0f2c68;
  -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);
}
.Content_Gallery .amphi-slideshow .owl-carousel .owl-nav > div > span:before, .Gallery_Album .amphi-slideshow .owl-carousel .owl-nav > div > span:before, .Special_Sponsor .amphi-slideshow .owl-carousel .owl-nav > div > span:before {
  position: relative;
  top: -1px;
}
.Content_Gallery .amphi-slideshow .owl-carousel .owl-nav > div.disabled, .Gallery_Album .amphi-slideshow .owl-carousel .owl-nav > div.disabled, .Special_Sponsor .amphi-slideshow .owl-carousel .owl-nav > div.disabled {
  opacity: 0;
  pointer-events: none;
  -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);
}
.Content_Gallery .amphi-slideshow .owl-carousel .owl-nav .owl-prev, .Gallery_Album .amphi-slideshow .owl-carousel .owl-nav .owl-prev, .Special_Sponsor .amphi-slideshow .owl-carousel .owl-nav .owl-prev {
  left: -60px;
}
.Content_Gallery .amphi-slideshow .owl-carousel .owl-nav .owl-next, .Gallery_Album .amphi-slideshow .owl-carousel .owl-nav .owl-next, .Special_Sponsor .amphi-slideshow .owl-carousel .owl-nav .owl-next {
  right: -60px;
}
.Content_Gallery .amphi-slideshow .owl-carousel .owl-dots .owl-dot span, .Gallery_Album .amphi-slideshow .owl-carousel .owl-dots .owl-dot span, .Special_Sponsor .amphi-slideshow .owl-carousel .owl-dots .owl-dot span {
  background: #153f95;
  border: none;
  width: 15px;
  height: 10px;
  margin: 0 4px;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: 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);
}
.Content_Gallery .amphi-slideshow .owl-carousel .owl-dots .owl-dot span:hover, .Gallery_Album .amphi-slideshow .owl-carousel .owl-dots .owl-dot span:hover, .Special_Sponsor .amphi-slideshow .owl-carousel .owl-dots .owl-dot span:hover {
  background: #0f2c68;
  -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);
}
.Content_Gallery .amphi-slideshow .owl-carousel .owl-dots .owl-dot.active span, .Gallery_Album .amphi-slideshow .owl-carousel .owl-dots .owl-dot.active span, .Special_Sponsor .amphi-slideshow .owl-carousel .owl-dots .owl-dot.active span {
  background: #eb7523;
  -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);
}
.Content_Gallery .amphi-slideshow .owl-carousel .owl-dots .owl-dot.active span:hover, .Gallery_Album .amphi-slideshow .owl-carousel .owl-dots .owl-dot.active span:hover, .Special_Sponsor .amphi-slideshow .owl-carousel .owl-dots .owl-dot.active span:hover {
  background: #0f2c68;
  -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);
}
.Content_Gallery .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-stage-outer .owl-stage, .Gallery_Album .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-stage-outer .owl-stage, .Special_Sponsor .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-stage-outer .owl-stage {
  padding-top: 50px;
}
.Content_Gallery .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav, .Gallery_Album .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav, .Special_Sponsor .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav {
  top: 0;
  left: auto;
  height: 50px;
  margin-top: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.Content_Gallery .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav > div, .Gallery_Album .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav > div, .Special_Sponsor .amphi-slideshow .owl-carousel.navigation-offsite-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;
  background: none;
  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);
}
.Content_Gallery .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav > div > span, .Gallery_Album .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav > div > span, .Special_Sponsor .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav > div > span {
  font-size: 50px;
  color: #153f95;
  text-shadow: none;
  -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);
}
.Content_Gallery .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav > div > span:hover, .Gallery_Album .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav > div > span:hover, .Special_Sponsor .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav > div > span:hover {
  color: #0f2c68;
  -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);
}
.Content_Gallery .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav > div.disabled, .Gallery_Album .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav > div.disabled, .Special_Sponsor .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav > div.disabled {
  opacity: 0;
  pointer-events: none;
  -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);
}
.Content_Gallery .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav .owl-prev, .Gallery_Album .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav .owl-prev, .Special_Sponsor .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav .owl-prev {
  left: auto;
  right: 60px;
}
.Content_Gallery .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav .owl-next, .Gallery_Album .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav .owl-next, .Special_Sponsor .amphi-slideshow .owl-carousel.navigation-offsite-slideshow .owl-nav .owl-next {
  right: 0;
}

/* ===================================================================================================== NEWS ======= */
.News_News .newsDate .group-name {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}
.News_News .newsDate .date, .News_News .newsDate .date-time {
  display: inline-block;
  margin-bottom: 10px;
  line-height: 1;
}
.News_News .amphi-slideshow .owl-carousel {
  overflow: visible;
  padding-bottom: 40px;
}
.News_News .amphi-slideshow .owl-carousel .owl-stage {
  padding: 0;
}
.News_News .amphi-slideshow .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .News_News .amphi-slideshow .owl-carousel .owl-nav {
    display: none !important;
  }
}
.News_News .amphi-slideshow .owl-carousel .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;
  background: none;
  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);
}
.News_News .amphi-slideshow .owl-carousel .owl-nav > div > span {
  font-size: 50px;
  color: #153f95;
  text-shadow: none;
  -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);
}
.News_News .amphi-slideshow .owl-carousel .owl-nav > div > span:hover {
  color: #0f2c68;
  -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);
}
.News_News .amphi-slideshow .owl-carousel .owl-nav > div > span:before {
  position: relative;
  top: -1px;
}
.News_News .amphi-slideshow .owl-carousel .owl-nav > div.disabled {
  opacity: 0;
  pointer-events: none;
  -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);
}
.News_News .amphi-slideshow .owl-carousel .owl-nav .owl-prev {
  left: -60px;
}
.News_News .amphi-slideshow .owl-carousel .owl-nav .owl-next {
  right: -60px;
}
.News_News .amphi-slideshow .owl-carousel .owl-dots .owl-dot span {
  background: #153f95;
  border: none;
  width: 15px;
  height: 10px;
  margin: 0 4px;
  border-radius: 0;
  -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);
}
.News_News .amphi-slideshow .owl-carousel .owl-dots .owl-dot span:hover {
  background: #0f2c68;
  -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);
}
.News_News .amphi-slideshow .owl-carousel .owl-dots .owl-dot.active span {
  background: #eb7523;
  -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);
}
.News_News .amphi-slideshow .owl-carousel .owl-dots .owl-dot.active span:hover {
  background: #0f2c68;
  -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);
}

/* ============================================================================================= SOCIAL MEDIA ======= */
.Community_SocialMedia_Feed .feed-entry .username, .Community_SocialMedia_Feed .feed-entry .datetime {
  color: #444;
}
.Community_SocialMedia_Feed .feed-entry.rss-feed {
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-top: 3px solid #153f95;
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
  -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);
}
.Community_SocialMedia_Feed .feed-entry.rss-feed .feed-icon {
  color: #eb7523;
}
.Community_SocialMedia_Feed .feed-entry.rss-feed:hover {
  -webkit-box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
          box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
  -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);
}

/* =========================================================================================== BILDERGALLERIE ======= */
.Gallery_Album .amphi-slideshow .owl-stage-outer .owl-stage .owl-item .module-content-block {
  margin-bottom: 21px;
}
.Gallery_Album .thumbnail {
  overflow: hidden;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .Gallery_Album .thumbnail {
    margin-bottom: 30px;
  }
}
.Gallery_Album .thumbnail img {
  max-width: none;
  width: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.8s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
}
.Gallery_Album .thumbnail a > img {
  max-width: none;
  width: 100%;
}
.Gallery_Album .thumbnail:hover img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.8s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
}

/* =========================================================================================== INHALTSGALERIE ======= */
.Content_Gallery.module-style__box-white .slider-text-below-image .owl-carousel .owl-stage-outer {
  width: calc(100% + 40px);
  left: -20px;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 21px;
  padding-left: 20px;
}
@media (max-width: 991px) {
  .Content_Gallery.module-style__box-white .slider-text-below-image .owl-carousel .owl-stage-outer {
    width: calc(100% + 30px);
    left: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.Content_Gallery.module-style__box-white .slider-text-below-image .owl-carousel .owl-stage-outer .owl-item .header-img {
  background: #FFF;
}
.Content_Gallery.module-style__box-white .slider-text-below-image .owl-carousel .owl-stage-outer .owl-item .header-img .gallery-carousel-caption {
  padding-left: 25px;
  padding-right: 25px;
}
.Content_Gallery.module-style__box-shadow .slider-text-below-image .owl-carousel .owl-stage-outer .owl-item .header-img {
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
  -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);
}
.Content_Gallery.module-style__box-shadow .slider-text-below-image .owl-carousel .owl-stage-outer .owl-item .header-img:hover {
  -webkit-box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
          box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
  -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);
}
.Content_Gallery.module-style__border-radius .owl-carousel .owl-stage-outer .owl-item .header-img {
  border-radius: 0;
  overflow: hidden;
}
.Content_Gallery.module-style__border-radius .slider-text-on-image .header-img .gallery-carousel-caption:before {
  border-radius: 0;
}

/* =========================================================================================== TEASER MANAGER ======= */
.Special_ChangingContents .filter-elements {
  margin-bottom: 25px;
}
.Special_ChangingContents .filter-elements fieldset > .form-group {
  margin: 0;
}
.Special_ChangingContents .filter-elements fieldset > .form-group select {
  height: 45px;
  width: 100%;
  min-width: 200px;
  background: #f8f9f9;
  color: #444;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 0 50px 0 10px;
  line-height: 45px;
  border: 1px solid #d3d3d3;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  -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);
}
.Special_ChangingContents .filter-elements fieldset > .form-group select::-ms-expand {
  display: none;
}
.Special_ChangingContents .filter-elements fieldset > .form-group select:hover {
  -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);
}
.Special_ChangingContents .filter-elements fieldset > .form-group > label + [class*=col-] {
  position: relative;
}
.Special_ChangingContents .filter-elements fieldset > .form-group > label + [class*=col-]:after {
  content: "\f107";
  font-family: "FontAwesome";
  width: 50px;
  height: 43px;
  position: absolute;
  right: 14px;
  bottom: 1px;
  pointer-events: none;
  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;
  color: #444;
  font-size: 28px;
}
.Special_ChangingContents .filter-elements fieldset > .form-group .btn-group .btn:after {
  display: none;
}
.Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image:before {
  background: none;
}
.Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block {
  background: rgba(21, 63, 149, 0.85);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .headline1, .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .headline2, .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .headline3, .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .text-wrapper {
  color: #fff;
}
.Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .headline1 a:not(.btn), .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .headline2 a:not(.btn), .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .headline3 a:not(.btn), .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .text-wrapper a:not(.btn) {
  color: #fff;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .headline1 a:not(.btn):hover, .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .headline1 a:not(.btn):focus, .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .headline2 a:not(.btn):hover, .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .headline2 a:not(.btn):focus, .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .headline3 a:not(.btn):hover, .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .headline3 a:not(.btn):focus, .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .text-wrapper a:not(.btn):hover, .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .text-wrapper a:not(.btn):focus {
  color: #fff;
  opacity: 0.7;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block a.btn-default, .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .btn-default, .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block a.btn-primary, .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .btn-primary, .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block a.btn-custom, .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .btn-custom {
  background: #eb7523;
  color: #fff;
  border-color: #eb7523;
}
.Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block a.btn-default:hover, .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .btn-default:hover, .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block a.btn-primary:hover, .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .btn-primary:hover, .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block a.btn-custom:hover, .Special_ChangingContents .category-elements .content-on-image .category-element-inner .category-image .module-content-block .btn-custom:hover {
  background: #c95d12;
  color: #fff;
  border-color: #c95d12;
}
.Special_ChangingContents .category-elements .content-on-image .category-element-inner:hover .category-image:before {
  background: none;
}
.Special_ChangingContents .category-elements .content-on-image .category-element-inner:hover .module-content-block .headline1, .Special_ChangingContents .category-elements .content-on-image .category-element-inner:hover .module-content-block .headline2, .Special_ChangingContents .category-elements .content-on-image .category-element-inner:hover .module-content-block .headline3, .Special_ChangingContents .category-elements .content-on-image .category-element-inner:hover .module-content-block .text-wrapper {
  color: #fff;
}
.Special_ChangingContents .category-elements .content-on-image .category-element-inner:hover .module-content-block .headline1 a:not(.btn), .Special_ChangingContents .category-elements .content-on-image .category-element-inner:hover .module-content-block .headline2 a:not(.btn), .Special_ChangingContents .category-elements .content-on-image .category-element-inner:hover .module-content-block .headline3 a:not(.btn), .Special_ChangingContents .category-elements .content-on-image .category-element-inner:hover .module-content-block .text-wrapper a:not(.btn) {
  color: #fff;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}

/* =========================================================================================== TERMINKALENDER ======= */
.Special_Calendar .calendar a {
  text-decoration: none !important;
}

/* ==================================================================================== RESPONSIVE NAVIGATION ======= */
.navigation-responsive-wrapper-top {
  padding: 25px 15px;
}
.navigation-responsive-wrapper-top img, .navigation-responsive-wrapper-top svg {
  width: 100%;
  height: 100%;
  max-width: 250px;
  max-height: 100px;
}
@media (max-width: 767px) {
  .navigation-responsive-wrapper-top img, .navigation-responsive-wrapper-top svg {
    max-width: 180px;
    max-height: 80px;
  }
}
.navigation-responsive-wrapper-top img {
  width: auto;
}

@media (max-width: 991px) {
  .navigation-responsive-wrapper-bottom {
    padding: 50px 15px;
  }
}
@media (max-width: 991px) {
  .navigation-responsive-wrapper-bottom .headline1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .navigation-responsive-wrapper-bottom .headline1 {
    font-size: 1.5rem;
  }
}
@media (max-width: 991px) {
  .navigation-responsive-wrapper-bottom .headline2 {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .navigation-responsive-wrapper-bottom .headline2 {
    font-size: 1.15rem;
  }
}
.navigation-responsive-wrapper-bottom .amphiicon {
  text-align: unset;
  padding: 0;
  color: inherit;
  width: auto;
  height: auto;
  margin: 0;
  font-size: inherit;
  border-radius: 0;
}
.navigation-responsive-wrapper-bottom .editor-style__social-media-icon .amphiicon {
  font-size: 1.8rem;
  margin: 15px 15px 0 0;
}

.mobile-nav div.mobile-nav-search {
  background: #153f95;
  border-top: none;
  padding: 5px 15px;
  margin-bottom: 50px;
}
.mobile-nav div.mobile-nav-search .form-group {
  margin-bottom: 0;
}
.mobile-nav div.mobile-nav-search .form-group fieldset > .row {
  margin: 0;
}
.mobile-nav div.mobile-nav-search .form-group .search-input {
  width: calc(100% - 50px);
  padding: 0;
}
.mobile-nav div.mobile-nav-search .form-group .search-input input {
  height: 50px;
  font-size: 1.7rem;
  color: #FFF;
  background: transparent;
  border: none;
  margin: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  padding-left: 0;
}
.mobile-nav div.mobile-nav-search .form-group .search-input input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.mobile-nav div.mobile-nav-search .form-group .search-input input::-webkit-input-placeholder {
  color: #FFF;
}
.mobile-nav div.mobile-nav-search .form-group .search-input input::-moz-placeholder {
  color: #FFF;
}
.mobile-nav div.mobile-nav-search .form-group .search-input input:-ms-input-placeholder {
  color: #FFF;
}
.mobile-nav div.mobile-nav-search .form-group .search-input input::-ms-input-placeholder {
  color: #FFF;
}
.mobile-nav div.mobile-nav-search .form-group .search-input input::placeholder {
  color: #FFF;
}
.mobile-nav div.mobile-nav-search .form-group .search-btn {
  width: 50px;
  padding: 0;
}
.mobile-nav div.mobile-nav-search .form-group .search-btn .btn {
  height: 50px;
  color: #FFF;
  font-size: 1.7rem;
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-right: 0;
}
.mobile-nav div.mobile-nav-search .form-group .search-btn .btn .amphiicon {
  font-size: 1.25rem;
  text-align: right;
}

/* ======================================================================================== MOBILE NAVIGATION ======= */
.mobile-nav {
  top: 118px !important;
  right: 0 !important;
  bottom: 50px !important;
  left: 0 !important;
  width: 100vw !important;
  height: calc(100% - 118px) !important;
  padding-bottom: 80px;
  visibility: visible !important;
  opacity: 0;
  pointer-events: none;
  z-index: 799 !important;
  -webkit-transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
@media (max-width: 767px) {
  .mobile-nav {
    top: 117px !important;
    height: calc(100% - 117px) !important;
  }
}
.mobile-nav * {
  border-color: #dedede;
}
.mobile-nav.is-active {
  visibility: visible !important;
  opacity: 1;
  pointer-events: visible;
  -webkit-transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
  transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1) !important;
}
.mobile-nav > .mobile-nav-main, .mobile-nav > .level-2 {
  max-width: 750px;
  margin: 30px auto;
  padding: 0 15px;
}
.mobile-nav .navigation-responsive-wrapper-top {
  display: none;
}
.mobile-nav img {
  display: none;
}

#nav-overlay {
  display: none !important;
}

/* =================================================================== RESPONSIVE NAVIGATION AB ZWEITER EBENE ======= */
.mobile-nav,
.mobile-nav.type-collapse {
  background: #fff;
}
.mobile-nav > .level-2,
.mobile-nav.type-collapse > .level-2 {
  background: #fff;
}
.mobile-nav > .level-2 > li a,
.mobile-nav.type-collapse > .level-2 > li a {
  font-family: "Fira Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #444;
  text-transform: none;
  padding: 10px 50px 10px 15px;
  line-height: 1.5;
}
.mobile-nav > .level-2 > li.active > a,
.mobile-nav.type-collapse > .level-2 > li.active > a {
  color: #153f95;
}
.mobile-nav > .level-2 > li span.dropdown-toggle,
.mobile-nav.type-collapse > .level-2 > li span.dropdown-toggle {
  background-color: #fff;
  border-left-color: #d9d9d9;
  color: #606060;
  width: 50px;
  height: 100%;
  padding: 10px 15px;
  line-height: 1.5;
}
.mobile-nav > .level-2 > li.dropdown-entry.opened,
.mobile-nav.type-collapse > .level-2 > li.dropdown-entry.opened {
  background-color: #fff;
}
.mobile-nav > .level-2 > li.dropdown-entry.opened span.dropdown-toggle,
.mobile-nav.type-collapse > .level-2 > li.dropdown-entry.opened span.dropdown-toggle {
  background-color: #fff;
  border-left-color: #d9d9d9;
  color: #606060;
  width: 50px;
  height: 100%;
  padding: 10px 15px;
  line-height: 1.5;
}
.mobile-nav > .level-2 > li ul li.dropdown-entry.opened,
.mobile-nav.type-collapse > .level-2 > li ul li.dropdown-entry.opened {
  background-color: #fff;
}
.mobile-nav > .level-2 > li ul li a,
.mobile-nav.type-collapse > .level-2 > li ul li a {
  font-size: 1.125rem;
  font-weight: 400;
  color: #444;
  padding: 10px 15px 10px 15px;
  border-bottom: none;
  letter-spacing: 0.2px;
  line-height: 1.5;
  font-family: "Fira Sans", sans-serif;
  text-transform: none;
}
.mobile-nav > .level-2 > li ul li a:before,
.mobile-nav.type-collapse > .level-2 > li ul li a:before {
  content: "\f105";
  font: normal normal normal 14px/1 FontAwesome;
  display: inline-block;
  font-style: normal;
  font-weight: 600;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  font-size: 0.8em;
  position: relative;
  top: -1px;
  margin-right: 10px;
}
.mobile-nav > .level-2 > li ul li a:after,
.mobile-nav.type-collapse > .level-2 > li ul li a:after {
  content: none;
}
.mobile-nav > .level-2 > li ul li.active > a,
.mobile-nav.type-collapse > .level-2 > li ul li.active > a {
  color: #153f95;
}
.mobile-nav > .level-2 > li ul li ul li a,
.mobile-nav.type-collapse > .level-2 > li ul li ul li a {
  font-weight: 400;
  padding-left: 30px;
  padding: 10px 50px 10px 30px;
}
.mobile-nav > .level-2 > li ul li ul li.active > a,
.mobile-nav.type-collapse > .level-2 > li ul li ul li.active > a {
  color: #153f95;
}
.mobile-nav > .level-2 > li ul li ul li ul li a,
.mobile-nav.type-collapse > .level-2 > li ul li ul li ul li a {
  padding-left: 45px;
  padding: 10px 50px 10px 45px;
}
.mobile-nav > .level-2 > li ul li ul li ul li.active > a,
.mobile-nav.type-collapse > .level-2 > li ul li ul li ul li.active > a {
  color: #153f95;
}
.mobile-nav > .level-2 > li ul li ul li ul li ul li a,
.mobile-nav.type-collapse > .level-2 > li ul li ul li ul li ul li a {
  padding-left: 60px;
  padding: 10px 50px 10px 60px;
}
.mobile-nav > .level-2 > li ul li ul li ul li ul li.active > a,
.mobile-nav.type-collapse > .level-2 > li ul li ul li ul li ul li.active > a {
  color: #153f95;
}
.mobile-nav .level-6 > li a,
.mobile-nav.type-collapse .level-6 > li a {
  padding-left: 75px !important;
}

/* ============================================================================================ CONTENT SUCHE ======= */
.moduleTextSearch [class*=col-] > form, .Lucene_Search [class*=col-] > form {
  margin: 25px 0 50px 0;
}
.moduleTextSearch .module-content-block, .Lucene_Search .module-content-block {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e6e6e6;
}
.moduleTextSearch .search-input .form-control, .Lucene_Search .search-input .form-control {
  font-family: "Open Sans", sans-serif;
  color: #153f95;
  background-color: #e9f4f8;
  font-size: 1.2rem;
  font-weight: 500;
  border: 1px solid #d3d3d3;
  height: 45px;
  line-height: 45px;
  padding: 5px 35px 5px 10px;
  border-radius: 0;
}
.moduleTextSearch .search-input .form-control::-webkit-input-placeholder, .Lucene_Search .search-input .form-control::-webkit-input-placeholder {
  font-family: "Open Sans", sans-serif;
  color: #153f95;
  opacity: 0.5;
}
.moduleTextSearch .search-input .form-control::-moz-placeholder, .Lucene_Search .search-input .form-control::-moz-placeholder {
  font-family: "Open Sans", sans-serif;
  color: #153f95;
  opacity: 0.5;
}
.moduleTextSearch .search-input .form-control:-ms-input-placeholder, .Lucene_Search .search-input .form-control:-ms-input-placeholder {
  font-family: "Open Sans", sans-serif;
  color: #153f95;
  opacity: 0.5;
}
.moduleTextSearch .search-input .form-control::-ms-input-placeholder, .Lucene_Search .search-input .form-control::-ms-input-placeholder {
  font-family: "Open Sans", sans-serif;
  color: #153f95;
  opacity: 0.5;
}
.moduleTextSearch .search-input .form-control::placeholder, .Lucene_Search .search-input .form-control::placeholder {
  font-family: "Open Sans", sans-serif;
  color: #153f95;
  opacity: 0.5;
}
.moduleTextSearch .search-input .form-control:-ms-input-placeholder, .Lucene_Search .search-input .form-control:-ms-input-placeholder {
  color: #153f95;
}
.moduleTextSearch .search-input .form-control::-ms-input-placeholder, .Lucene_Search .search-input .form-control::-ms-input-placeholder {
  color: #153f95;
}
.moduleTextSearch .search-input .form-control:focus, .Lucene_Search .search-input .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);
}
.moduleTextSearch .search-btn .btn, .Lucene_Search .search-btn .btn {
  height: 45px;
}

/* ========================================================================== SPONSOREN + ANSPRECHPARTNER FIX ======= */
.Special_Sponsor.template-sponsor-slideshow-static .thumbnail > img {
  width: auto;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.Special_Sponsor .thumbnail > img {
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.Special_ContactPerson .category-elements .module-content-block {
  height: 100%;
}

/* ====================================================================================================== FAQ ======= */
.Special_Faqs .faq-content {
  border-bottom: none;
}
.Special_Faqs .faq-content.folded-answers .faq-question-inner {
  background: #e9f4f8;
  border: none;
  margin-bottom: 10px;
  border-radius: 0;
  -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);
}
.Special_Faqs .faq-content.folded-answers .faq-question-inner a {
  font-weight: 600;
  padding: 15px 10px 15px 40px;
  background: #e9f4f8;
  color: #606060;
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
  border-radius: 0;
  text-decoration: none;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 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), -webkit-box-shadow 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), box-shadow 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), 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);
}
.Special_Faqs .faq-content.folded-answers .faq-question-inner a .amphiicon {
  top: 17px;
  left: 15px;
}
.Special_Faqs .faq-content.folded-answers .faq-question-inner a .amphiicon:before {
  content: "\f067";
  position: relative;
  top: 4px;
  color: #153f95;
}
.Special_Faqs .faq-content.folded-answers .faq-question-inner a:hover {
  -webkit-box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
          box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 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), -webkit-box-shadow 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), box-shadow 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), 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);
}
.Special_Faqs .faq-content .faq-question.active .faq-question-inner a {
  -webkit-box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
          box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 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), -webkit-box-shadow 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), box-shadow 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), 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);
}
.Special_Faqs .faq-content .faq-question.active .faq-question-inner a .amphiicon:before {
  content: "\f068";
}
.Special_Faqs .faq-content .faq-question a {
  background: #e9f4f8;
}
.Special_Faqs .faq-content .faq-question a:hover {
  background: #e9f4f8;
  color: #606060;
  -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);
}
.Special_Faqs .faq-content .faq-answer {
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 40px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .Special_Faqs .faq-content .faq-answer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.Special_Faqs .faq-content .faq-answer > [class*=col-]:first-child {
  border-left: 1px solid #153f95;
}
@media (max-width: 767px) {
  .Special_Faqs .faq-content .faq-answer > [class*=col-] {
    border-left: 1px solid #153f95;
  }
}
.Special_Faqs .faq-content .faq-answer > [class*=col-] > .table-responsive:last-child .table {
  margin-bottom: 0;
}
.Special_Faqs .faq-content .faq-answer .thumbnail {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .Special_Faqs .faq-content .faq-answer .thumbnail {
    margin-bottom: 21px;
  }
}
.Special_Faqs .faq-content .faq-answer p {
  padding: 0;
  margin: 0;
}
.Special_Faqs .faq-content .faq-answer p:not(:first-child) {
  margin-top: 10px;
}

/* ================================================================================================ DOWNLOADS ======= */
.Files_Files .module-content-block .filetypeicon, .Text_File_Text .module-content-block .filetypeicon {
  width: 25px;
}
.Files_Files .module-content-block .filetypeicon .bg-filetype-icon, .Text_File_Text .module-content-block .filetypeicon .bg-filetype-icon {
  fill: #FFF;
}
.Files_Files .module-content-block .filetypeicon .filetype, .Files_Files .module-content-block .filetypeicon .filetype-fallback, .Text_File_Text .module-content-block .filetypeicon .filetype, .Text_File_Text .module-content-block .filetypeicon .filetype-fallback {
  width: 25px;
}
.Files_Files .module-content-block .filetypeicon .filetype-icon, .Files_Files .module-content-block .filetypeicon .filetype-text, .Text_File_Text .module-content-block .filetypeicon .filetype-icon, .Text_File_Text .module-content-block .filetypeicon .filetype-text {
  fill: #444;
}

.Files_Files:not(.template-compressed) .module-content-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 40px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .Files_Files:not(.template-compressed) .module-content-block {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 991px) {
  .Files_Files:not(.template-compressed) .module-content-block {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 30px;
  }
}
@media (max-width: 767px) {
  .Files_Files:not(.template-compressed) .module-content-block {
    grid-template-columns: repeat(1, 1fr);
  }
}
.Files_Files:not(.template-compressed) .module-content-block .download-list-row {
  padding: 20px 0;
  margin: 40px 0 0 0;
  background: #e9f4f8;
  border-radius: 0;
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
  -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);
}
.Files_Files:not(.template-compressed) .module-content-block .download-list-row + .download-list-row:before {
  display: none;
}
.Files_Files:not(.template-compressed) .module-content-block .download-list-row:nth-child(1) {
  margin-top: 0;
}
.Files_Files:not(.template-compressed) .module-content-block .download-list-row:nth-child(2) {
  margin-top: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .Files_Files:not(.template-compressed) .module-content-block .download-list-row:nth-child(2) {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .Files_Files:not(.template-compressed) .module-content-block .download-list-row:nth-child(2) {
    margin-top: 40px;
  }
}
.Files_Files:not(.template-compressed) .module-content-block .download-list-row .file-content {
  margin: 0;
}
.Files_Files:not(.template-compressed) .module-content-block .download-list-row:hover {
  -webkit-box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
          box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
  -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);
}

.Text_File_Text .module-content-block {
  padding: 20px;
  background: #e9f4f8;
  border-radius: 0;
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
  -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);
}
.Text_File_Text .module-content-block .file-content {
  margin: 0;
}
.Text_File_Text .module-content-block:hover {
  -webkit-box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
          box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
  -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);
}

/* ========================================================================================== ANSPRECHPARTNER ======= */
.Special_ContactPerson .grouped-elements-wrapper {
  margin-bottom: 30px;
}

/* =============================================================================================== QUICKLINKS ======= */
.quicklinks.quicklinks__icons-right .quicklinks_item {
  right: 44px;
}
.quicklinks.quicklinks__icons-right .quicklinks_item:hover {
  right: 0;
}
.quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_content .quicklinks_box_headline {
  font-weight: 500;
}
.quicklinks .quicklinks_item.quicklinks_icons p > a {
  font-weight: 600;
}

/* ======================================================================================== QUICKLINKS MOBILE ======= */
.quicklinks-mobile__icons {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 950;
}
.quicklinks-mobile__icons ul {
  top: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}
.quicklinks-mobile__icons ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #153f95;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  -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);
}
.quicklinks-mobile__icons ul li:first-child {
  border-left: 0;
}
.quicklinks-mobile__icons ul li a {
  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: 100%;
  padding: 0;
  height: 40px;
  text-decoration: none !important;
}
.quicklinks-mobile__icons ul li a .amphiicon {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 16px;
  background-color: transparent;
  margin: 0;
  padding: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.quicklinks-mobile__icons ul li a:hover {
  background: #0f2c68;
  -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);
}
.quicklinks-mobile__icons ul li a:hover .amphiicon {
  background-color: transparent;
}

/* ========================================================================================== KONTRASTVERSION ======= */
html.greyscale-filter body > * {
  -webkit-filter: grayscale(100%) !important;
          filter: grayscale(100%) !important;
}
html.greyscale-filter a:not(.btn, .greyscale-filter-button) {
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
}
html.greyscale-filter a:not(.btn, .greyscale-filter-button):hover, html.greyscale-filter a:not(.btn, .greyscale-filter-button):focus {
  -webkit-text-decoration-style: dotted !important;
          text-decoration-style: dotted !important;
  text-decoration-thickness: 1px !important;
}
html.greyscale-filter .adjust-icon a {
  text-decoration: none;
}
html.greyscale-filter header .header.header__logo-left-nav-right .top-nav .navigation > li ul li span > a {
  border: none !important;
}
html.greyscale-filter header .header.header__logo-left-nav-right .header-nav-search-wrapper .top-nav .navigation.level-1 > li.megamenue-trigger .megamenue-wrapper > div > .row:not(:first-child) .level-2 {
  border-top: none;
}
html.greyscale-filter header .header.header__logo-left-nav-right .header-nav-search-wrapper .top-nav .navigation.level-3 > li:last-child {
  border-bottom: none;
}
html.greyscale-filter .slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li.active a {
  text-decoration: none !important;
}
html.greyscale-filter .content .content_sidebar_nav .navigation > li span > a {
  border: none !important;
}
html.greyscale-filter .content .content_sidebar_nav .navigation > li:last-child > span > a {
  border: none !important;
}
html.greyscale-filter .footer .footer_background-inner a:not(.btn) {
  text-decoration: underline;
  text-decoration-thickness: 1px !important;
}
html.greyscale-filter .footer a.btn-default, html.greyscale-filter .footer .btn-default, html.greyscale-filter .footer a.btn-primary, html.greyscale-filter .footer .btn-primary, html.greyscale-filter .footer a.btn-custom, html.greyscale-filter .footer .btn-custom, html.greyscale-filter .searchbox-wrapper a.btn-default, html.greyscale-filter .searchbox-wrapper .btn-default, html.greyscale-filter .searchbox-wrapper a.btn-primary, html.greyscale-filter .searchbox-wrapper .btn-primary, html.greyscale-filter .searchbox-wrapper a.btn-custom, html.greyscale-filter .searchbox-wrapper .btn-custom {
  -webkit-filter: invert(1);
          filter: invert(1);
}
html.greyscale-filter .module-style__news-layout .module-content-block .row > [class*=col-] > a {
  text-decoration: none !important;
}
html.greyscale-filter .module-style__news-layout .module-content-block .row > [class*=col-] > a[href^="/"], html.greyscale-filter .module-style__news-layout .module-content-block .row > [class*=col-] > a[href^=h] {
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
}
html.greyscale-filter .module-style__news-layout .module-content-block .row > [class*=col-] > a[href^="/"]:hover, html.greyscale-filter .module-style__news-layout .module-content-block .row > [class*=col-] > a[href^="/"]:focus, html.greyscale-filter .module-style__news-layout .module-content-block .row > [class*=col-] > a[href^=h]:hover, html.greyscale-filter .module-style__news-layout .module-content-block .row > [class*=col-] > a[href^=h]:focus {
  -webkit-text-decoration-style: dotted !important;
          text-decoration-style: dotted !important;
  text-decoration-thickness: 1px !important;
}
html.greyscale-filter .owl-item .carousel-caption .headline1 a, html.greyscale-filter .owl-item .carousel-caption .headline2 a, html.greyscale-filter .owl-item .gallery-carousel-caption .headline1 a, html.greyscale-filter .owl-item .gallery-carousel-caption .headline2 a {
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
}
html.greyscale-filter .owl-item .carousel-caption .headline1 a:hover, html.greyscale-filter .owl-item .carousel-caption .headline1 a:focus, html.greyscale-filter .owl-item .carousel-caption .headline2 a:hover, html.greyscale-filter .owl-item .carousel-caption .headline2 a:focus, html.greyscale-filter .owl-item .gallery-carousel-caption .headline1 a:hover, html.greyscale-filter .owl-item .gallery-carousel-caption .headline1 a:focus, html.greyscale-filter .owl-item .gallery-carousel-caption .headline2 a:hover, html.greyscale-filter .owl-item .gallery-carousel-caption .headline2 a:focus {
  -webkit-text-decoration-style: dotted !important;
          text-decoration-style: dotted !important;
  text-decoration-thickness: 1px !important;
}
html.greyscale-filter .editor-style__social-media-icon a {
  text-decoration: none;
}

/* ================================================================================================== GAMEBOX ======= */
.content.content__content-individual .content_content-background-inner {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .content.content__content-individual .content_content-background-inner {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .content.content__content-individual .content_content-background-inner .content_content-inner > .vertical-center {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .content.content__content-individual .content_content-background-inner .content_content-inner > .vertical-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.game-box-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media (max-width: 1269px) {
  .game-box-wrapper {
    min-height: auto;
  }
}
@media (max-width: 991px) {
  .game-box-wrapper {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .game-box-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
}
.game-box-wrapper .game-box-headline .headline1, .game-box-wrapper .game-box-score .headline1 {
  font-size: 2.5rem;
  color: #FFF;
}
@media (max-width: 1269px) {
  .game-box-wrapper .game-box-headline .headline1, .game-box-wrapper .game-box-score .headline1 {
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .game-box-wrapper .game-box-headline .headline1, .game-box-wrapper .game-box-score .headline1 {
    font-size: 1.75rem;
  }
}
@media (max-width: 767px) {
  .game-box-wrapper .game-box-headline .headline1, .game-box-wrapper .game-box-score .headline1 {
    margin-bottom: 0;
  }
}
.game-box-wrapper .game-box-logo img {
  max-height: 100px;
  margin: 15px auto;
}
@media (max-width: 767px) {
  .game-box-wrapper .game-box-logo img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
  }
}
.game-box-wrapper .game-box-details .col-xs-6 {
  padding: 0;
}
@media (max-width: 1269px) {
  .game-box-wrapper .game-box-details .col-xs-3 {
    padding: 0 5px;
  }
}
@media (max-width: 1199px) {
  .game-box-wrapper .game-box-details .col-xs-3 {
    padding: 0 3px;
  }
}
.game-box-wrapper .game-box-date .text-wrapper {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFF;
}
@media (max-width: 1269px) {
  .game-box-wrapper .game-box-date .text-wrapper {
    font-size: 1rem;
  }
}
.game-box-wrapper .game-box-date .text-wrapper > p {
  margin: 0;
}
.game-box-wrapper:has(.game-box-sponsor) {
  background: #FFF;
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
  -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);
  width: 100%;
}
@media (max-width: 991px) {
  .game-box-wrapper:has(.game-box-sponsor) {
    min-height: auto;
  }
}
@media (max-width: 767px) {
  .game-box-wrapper:has(.game-box-sponsor) {
    max-width: 160px;
    margin: 0 auto;
  }
}
.game-box-wrapper:has(.game-box-sponsor) .game-box-sponsor img {
  -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);
}
.game-box-wrapper:has(.game-box-sponsor):hover, .game-box-wrapper:has(.game-box-sponsor):focus {
  -webkit-box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
          box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
  -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);
}
.game-box-wrapper:has(.game-box-sponsor):hover .game-box-sponsor img, .game-box-wrapper:has(.game-box-sponsor):focus .game-box-sponsor img {
  -webkit-transform: scale(1.1);
          transform: scale(1.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);
}
.game-box-wrapper .game-box-sponsor > a {
  display: block;
  padding: 25px;
}

/* ================================================================================================= EDITMODE ======= */
#editMode header {
  position: relative;
}
#editMode .slider .headerEditLink {
  z-index: 800;
}
#editMode .top-nav .navigation.level-1 > li > span > a.editButton .amphiicon {
  top: 4px;
}
#editMode .top-nav .navigation.level-2 > li > span > a.editButton .amphiicon {
  top: 0;
}
@-moz-document url-prefix() {
  #editMode .top-nav .navigation .megamenue-trigger > span > a.edit-mode-element {
    top: 35px !important;
  }
}
#editMode .top-nav .navigation .megamenue-trigger .megamenue-wrapper .navigation.level-2 > li > span > a:not(.editButton) {
  padding-left: 20px;
}
#editMode .top-nav .navigation .megamenue-trigger .megamenue-wrapper .navigation.level-2 > li > span > a:before {
  left: 20px;
}
#editMode .top-nav .navigation .megamenue-trigger .megamenue-wrapper .navigation.level-3 > li > span > a:not(.editButton) {
  padding-left: 30px;
}
#editMode .top-nav .navigation .megamenue-trigger .megamenue-wrapper .navigation.level-3 > li > span > a:before {
  left: 20px;
}
#editMode .content_sidebar .content_sidebar_nav .navigation .editButton .amphiicon {
  top: 13px;
}
#editMode .content_sidebar .content_sidebar_nav .navigation.level-2 li a:not(.editButton) {
  padding-left: 35px;
}
#editMode .content_sidebar .content_sidebar_nav .navigation.level-2 li a.editButton {
  top: auto;
  left: auto;
}
#editMode .content_sidebar .content_sidebar_nav .navigation.level-2 li a:before {
  left: 19px;
}
#editMode .content_sidebar .content_sidebar_nav .navigation.level-2 li .level-3 li a:not(.editButton) {
  padding-left: 50px;
}
#editMode .content_sidebar .content_sidebar_nav .navigation.level-2 li .level-3 li a.editButton {
  top: auto;
  left: 17px;
}
#editMode .content_sidebar .content_sidebar_nav .navigation.level-2 li .level-3 li a:before {
  left: 35px;
}
#editMode .content_sidebar .content_sidebar_nav .navigation.level-2 li .level-3 li .level-4 li a:not(.editButton) {
  padding-left: 63px;
}
#editMode .content_sidebar .content_sidebar_nav .navigation.level-2 li .level-3 li .level-4 li a.editButton {
  top: auto;
  left: 31px;
}
#editMode .content_sidebar .content_sidebar_nav .navigation.level-2 li .level-3 li .level-4 li a:before {
  left: 50px;
}
#editMode .content_sidebar .content_sidebar_nav .navigation.level-2 li .level-3 li .level-4 li .level-5 li a:not(.editButton) {
  padding-left: 75px;
}
#editMode .content_sidebar .content_sidebar_nav .navigation.level-2 li .level-3 li .level-4 li .level-5 li a.editButton {
  top: auto;
  left: 44px;
}
#editMode .content_sidebar .content_sidebar_nav .navigation.level-2 li .level-3 li .level-4 li .level-5 li a:before {
  left: 63px;
}
#editMode .content_sidebar .content_sidebar_nav .navigation.level-2 li .level-3 li .level-4 li .level-5 li .level-6 li a:not(.editButton) {
  padding-left: 87px;
}
#editMode .content_sidebar .content_sidebar_nav .navigation.level-2 li .level-3 li .level-4 li .level-5 li .level-6 li a.editButton {
  top: auto;
  left: 56px;
}
#editMode .content_sidebar .content_sidebar_nav .navigation.level-2 li .level-3 li .level-4 li .level-5 li .level-6 li a:before {
  left: 75px;
}
#editMode .content_sidebar .content_sidebar_nav.nav-fourth-level-start .navigation.level-4 li a:not(.editButton) {
  padding-left: 35px;
}
#editMode .content_sidebar .content_sidebar_nav.nav-fourth-level-start .navigation.level-4 li a.editButton {
  top: auto;
  left: auto;
}
#editMode .content_sidebar .content_sidebar_nav.nav-fourth-level-start .navigation.level-4 li a:before {
  left: 19px;
}
#editMode .content_sidebar .content_sidebar_nav.nav-fourth-level-start .navigation.level-4 li .level-5 li a:not(.editButton) {
  padding-left: 50px;
}
#editMode .content_sidebar .content_sidebar_nav.nav-fourth-level-start .navigation.level-4 li .level-5 li a.editButton {
  top: auto;
  left: 17px;
}
#editMode .content_sidebar .content_sidebar_nav.nav-fourth-level-start .navigation.level-4 li .level-5 li a:before {
  left: 35px;
}
#editMode .content_sidebar .content_sidebar_nav.nav-fourth-level-start .navigation.level-4 li .level-5 li .level-6 li a:not(.editButton) {
  padding-left: 63px;
}
#editMode .content_sidebar .content_sidebar_nav.nav-fourth-level-start .navigation.level-4 li .level-5 li .level-6 li a.editButton {
  top: auto;
  left: 31px;
}
#editMode .content_sidebar .content_sidebar_nav.nav-fourth-level-start .navigation.level-4 li .level-5 li .level-6 li a:before {
  left: 50px;
}
#editMode .module-style__fullsize-teaser + .edit-mode-element-module-add-button {
  margin-top: 30px;
}
#editMode .content.content__content-three-full .edit-mode-element-module-add-button .addNavModuleAdvancedModuleFeaturesListWrapper {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================================================ MEDIA QUERIES ======= */
@media (min-width: 768px) {
  .content.content__content-three-full .module-wrapper {
    width: 750px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .content.content__content-three-full .module-wrapper {
    width: 900px;
  }
}
@media (min-width: 1062px) {
  .content.content__content-three-full .module-wrapper {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .content.content__content-three-full .module-wrapper {
    width: 1100px;
  }
}
@media (min-width: 1270px) {
  .content.content__content-three-full .module-wrapper {
    width: 1170px;
  }
}
@media (min-width: 1370px) {
  .content.content__content-three-full .module-wrapper {
    width: 1270px;
  }
}
@media (min-width: 1470px) {
  .content.content__content-three-full .module-wrapper {
    width: 1370px;
  }
}
@media (min-width: 1570px) {
  .content.content__content-three-full .module-wrapper {
    width: 1470px;
  }
}
.module-style__text-white .module-content-block a.btn-default, .module-style__text-white .module-content-block .btn-default, .module-style__text-white .module-content-block a.btn-primary, .module-style__text-white .module-content-block .btn-primary, .module-style__text-white .module-content-block a.btn-custom, .module-style__text-white .module-content-block .btn-custom {
  color: #153f95;
  background: #fff;
}
.module-style__text-white .module-content-block a.btn-default:hover, .module-style__text-white .module-content-block a.btn-default:focus, .module-style__text-white .module-content-block a.btn-default.hover, .module-style__text-white .module-content-block .btn-default:hover, .module-style__text-white .module-content-block .btn-default:focus, .module-style__text-white .module-content-block .btn-default.hover, .module-style__text-white .module-content-block a.btn-primary:hover, .module-style__text-white .module-content-block a.btn-primary:focus, .module-style__text-white .module-content-block a.btn-primary.hover, .module-style__text-white .module-content-block .btn-primary:hover, .module-style__text-white .module-content-block .btn-primary:focus, .module-style__text-white .module-content-block .btn-primary.hover, .module-style__text-white .module-content-block a.btn-custom:hover, .module-style__text-white .module-content-block a.btn-custom:focus, .module-style__text-white .module-content-block a.btn-custom.hover, .module-style__text-white .module-content-block .btn-custom:hover, .module-style__text-white .module-content-block .btn-custom:focus, .module-style__text-white .module-content-block .btn-custom.hover {
  color: #fff;
  background: #eb7523;
}

/* ========================================================================================= NEWS DARSTELLUNG ======= */
.module-wrapper.News_News.module-style__match-height .owl-carousel .owl-stage-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.module-wrapper.News_News.module-style__match-height .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;
}
.module-wrapper.News_News.module-style__match-height .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
  padding: 1px;
}
.module-wrapper.News_News.module-style__match-height .owl-carousel .owl-stage-outer .owl-stage .owl-item .module-content-block {
  height: 100%;
}
.module-wrapper.News_News.module-style__border-radius .module-content-block {
  overflow: hidden;
}
.module-wrapper.News_News.module-style__remove-image-margin .module-content-block .thumbnail {
  margin: 0 0 21px 0;
}
.module-wrapper.News_News.template-2-news-per-row-image-left-text-right.module-style__truncate-content .module-content-block .text-wrapper > p:last-child:after, .module-wrapper.News_News.template-2-news-per-row-image-left-text-right-wall.module-style__truncate-content .module-content-block .text-wrapper > p:last-child:after {
  content: "...";
}
.module-wrapper.News_News.template-2-news-per-row-image-left-text-right.module-style__truncate-content .module-content-block .caption .text-wrapper > p:last-child:after, .module-wrapper.News_News.template-2-news-per-row-image-left-text-right-wall.module-style__truncate-content .module-content-block .caption .text-wrapper > p:last-child:after {
  content: none;
}
.module-wrapper.News_News.template-2-news-per-row-image-left-text-right > [class*=col-] > .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .module-wrapper.News_News.template-2-news-per-row-image-left-text-right > [class*=col-] > .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.module-wrapper.News_News.template-2-news-per-row-image-left-text-right > [class*=col-] > .row:not(:last-child) {
  margin-bottom: 40px;
}
.module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block {
  height: 100%;
  margin: 0;
}
.module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1269px) {
  .module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .row > .col-sm-4, .module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .row .col-sm-8 {
  position: static;
  width: 50%;
}
@media (max-width: 1269px) {
  .module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .row > .col-sm-4, .module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .row .col-sm-8 {
    width: 100%;
  }
}
.module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .row > .col-sm-8 {
  padding-left: 0;
}
@media (max-width: 1269px) {
  .module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .row > .col-sm-8 {
    padding-left: 20px;
  }
}
.module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .row > .col-sm-8 > p:not(.ddd-keep) {
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .row > .col-sm-8 > p:not(.ddd-keep) .btn {
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .row > [class*=col-] > div:first-child.newsDate .date {
  margin: 0 0 10px 0;
}
.module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .thumbnail {
  overflow: hidden;
  position: relative;
}
.module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .thumbnail img {
  border-radius: 0;
}
.module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .thumbnail .caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 100%;
  background: #eb7523;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(rgba(235, 117, 35, 0.8)));
  background: linear-gradient(180deg, transparent 50%, rgba(235, 117, 35, 0.8));
  padding: 10px;
  border-radius: 0;
  pointer-events: none;
}
.module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .thumbnail .caption .text-wrapper {
  max-width: 80%;
}
.module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .thumbnail .caption p {
  font-size: 13px;
  font-weight: 800;
  color: #FFF;
}
.module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .headline-wrapper .headline2 {
  font-size: 1.25rem;
  -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-wrapper.News_News.template-2-news-per-row-image-top-text-bottom .module-content-block .row > .col-xs-12 > p:not(.ddd-keep) {
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.module-wrapper.News_News.template-2-news-per-row-image-top-text-bottom .module-content-block .row > .col-xs-12 > p:not(.ddd-keep) .btn {
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.module-wrapper.News_News.template-2-news-per-row-image-top-text-bottom .module-content-block .thumbnail {
  overflow: hidden;
  position: relative;
}
.module-wrapper.News_News.template-2-news-per-row-image-top-text-bottom .module-content-block .thumbnail img {
  border-radius: 0;
}
.module-wrapper.News_News.template-2-news-per-row-image-top-text-bottom .module-content-block .thumbnail .caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 100%;
  background: #eb7523;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(rgba(235, 117, 35, 0.8)));
  background: linear-gradient(180deg, transparent 50%, rgba(235, 117, 35, 0.8));
  padding: 10px;
  border-radius: 0;
  pointer-events: none;
}
.module-wrapper.News_News.template-2-news-per-row-image-top-text-bottom .module-content-block .thumbnail .caption .text-wrapper {
  max-width: 80%;
}
.module-wrapper.News_News.template-2-news-per-row-image-top-text-bottom .module-content-block .thumbnail .caption p {
  font-size: 13px;
  font-weight: 800;
  color: #FFF;
}
.module-wrapper.News_News.template-2-news-per-row-image-top-text-bottom .module-content-block .headline-wrapper .headline2 {
  font-size: 1.25rem;
  -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-wrapper.News_News.template-2-news-per-row-image-top-text-bottom-wall .module-content-block .thumbnail, .module-wrapper.News_News.template-3-news-per-row-image-top-text-bottom-wall .module-content-block .thumbnail, .module-wrapper.News_News.template-4-news-per-row-image-top-text-bottom .module-content-block .thumbnail, .module-wrapper.News_News.template-4-news-per-row-image-top-text-bottom-wall .module-content-block .thumbnail {
  position: relative;
}
.module-wrapper.News_News.template-2-news-per-row-image-top-text-bottom-wall .module-content-block .thumbnail .caption, .module-wrapper.News_News.template-3-news-per-row-image-top-text-bottom-wall .module-content-block .thumbnail .caption, .module-wrapper.News_News.template-4-news-per-row-image-top-text-bottom .module-content-block .thumbnail .caption, .module-wrapper.News_News.template-4-news-per-row-image-top-text-bottom-wall .module-content-block .thumbnail .caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 100%;
  background: #eb7523;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(rgba(235, 117, 35, 0.8)));
  background: linear-gradient(180deg, transparent 50%, rgba(235, 117, 35, 0.8));
  padding: 10px;
  border-radius: 0;
  pointer-events: none;
}
.module-wrapper.News_News.template-2-news-per-row-image-top-text-bottom-wall .module-content-block .thumbnail .caption .text-wrapper, .module-wrapper.News_News.template-3-news-per-row-image-top-text-bottom-wall .module-content-block .thumbnail .caption .text-wrapper, .module-wrapper.News_News.template-4-news-per-row-image-top-text-bottom .module-content-block .thumbnail .caption .text-wrapper, .module-wrapper.News_News.template-4-news-per-row-image-top-text-bottom-wall .module-content-block .thumbnail .caption .text-wrapper {
  max-width: 80%;
}
.module-wrapper.News_News.template-2-news-per-row-image-top-text-bottom-wall .module-content-block .thumbnail .caption p, .module-wrapper.News_News.template-3-news-per-row-image-top-text-bottom-wall .module-content-block .thumbnail .caption p, .module-wrapper.News_News.template-4-news-per-row-image-top-text-bottom .module-content-block .thumbnail .caption p, .module-wrapper.News_News.template-4-news-per-row-image-top-text-bottom-wall .module-content-block .thumbnail .caption p {
  font-size: 13px;
  font-weight: 800;
  color: #FFF;
}
.module-wrapper.News_News.template-3-news-per-row-image-top-text-bottom .module-content-block .row > .col-xs-12 > p:not(.ddd-keep) {
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.module-wrapper.News_News.template-3-news-per-row-image-top-text-bottom .module-content-block .row > .col-xs-12 > p:not(.ddd-keep) .btn {
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.module-wrapper.News_News.template-3-news-per-row-image-top-text-bottom .module-content-block .thumbnail {
  overflow: hidden;
  position: relative;
}
.module-wrapper.News_News.template-3-news-per-row-image-top-text-bottom .module-content-block .thumbnail img {
  border-radius: 0;
}
.module-wrapper.News_News.template-3-news-per-row-image-top-text-bottom .module-content-block .thumbnail .caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 100%;
  background: #eb7523;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(rgba(235, 117, 35, 0.8)));
  background: linear-gradient(180deg, transparent 50%, rgba(235, 117, 35, 0.8));
  padding: 10px;
  border-radius: 0;
  pointer-events: none;
}
.module-wrapper.News_News.template-3-news-per-row-image-top-text-bottom .module-content-block .thumbnail .caption .text-wrapper {
  max-width: 80%;
}
.module-wrapper.News_News.template-3-news-per-row-image-top-text-bottom .module-content-block .thumbnail .caption p {
  font-size: 13px;
  font-weight: 800;
  color: #FFF;
}
.module-wrapper.News_News.template-3-news-per-row-image-top-text-bottom .module-content-block .headline-wrapper .headline2 {
  font-size: 1.25rem;
  -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-wrapper.News_News.module-style__truncate-content .module-content-block .readmore {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: #FFF;
  font-size: 30px;
  z-index: 10;
  cursor: pointer;
  text-align: center;
}
.module-wrapper.News_News.module-style__truncate-content .module-content-block .readmore:before {
  content: "";
  position: absolute;
  top: -100px;
  width: 100%;
  height: 100px;
  z-index: 5;
  display: block;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(12%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 12%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
.module-wrapper.News_News.module-style__truncate-content .module-content-block .readmore a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  background: #eb7523;
  color: #FFF;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none !important;
  -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.News_News.module-style__truncate-content .module-content-block .readmore a .amphiicon {
  font-size: 25px;
  margin-right: 10px;
}
.module-wrapper.News_News.module-style__truncate-content .module-content-block .readmore a:hover, .module-wrapper.News_News.module-style__truncate-content .module-content-block .readmore a:focus {
  background: #153f95;
  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.News_News.module-style__truncate-content .module-content-block .readless {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: #FFF;
  font-size: 30px;
  z-index: 10;
  cursor: pointer;
  text-align: center;
}
.module-wrapper.News_News.module-style__truncate-content .module-content-block .readless a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  background: #eb7523;
  color: #FFF;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none !important;
  -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.News_News.module-style__truncate-content .module-content-block .readless a .amphiicon {
  font-size: 25px;
  margin-right: 10px;
}
.module-wrapper.News_News.module-style__truncate-content .module-content-block .readless a:hover, .module-wrapper.News_News.module-style__truncate-content .module-content-block .readless a:focus {
  background: #153f95;
  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.News_News.template-default.module-style__remove-image-margin .module-content-block .thumbnail {
  margin-right: 30px;
}
@media (max-width: 767px) {
  .module-wrapper.News_News.template-default.module-style__remove-image-margin .module-content-block .thumbnail {
    margin-right: 0;
  }
}
.module-wrapper.News_News.template-default .module-content-block .thumbnail {
  position: relative;
}
.module-wrapper.News_News.template-default .module-content-block .thumbnail .caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 100%;
  background: #eb7523;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(rgba(235, 117, 35, 0.8)));
  background: linear-gradient(180deg, transparent 50%, rgba(235, 117, 35, 0.8));
  padding: 10px !important;
  border-radius: 0;
  pointer-events: none;
}
.module-wrapper.News_News.template-default .module-content-block .thumbnail .caption .text-wrapper {
  max-width: 80%;
}
.module-wrapper.News_News.template-default .module-content-block .thumbnail .caption p {
  font-size: 13px;
  font-weight: 800;
  color: #FFF;
}
.module-wrapper.News_News.template-default .module-content-block a.btn-default, .module-wrapper.News_News.template-default .module-content-block .btn-default, .module-wrapper.News_News.template-default .module-content-block a.btn-primary, .module-wrapper.News_News.template-default .module-content-block .btn-primary, .module-wrapper.News_News.template-default .module-content-block a.btn-custom, .module-wrapper.News_News.template-default .module-content-block .btn-custom {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 18px;
  border: none;
  border-radius: 50px;
  opacity: 1;
}
.module-wrapper.News_News.template-default .module-content-block a.btn-default:hover, .module-wrapper.News_News.template-default .module-content-block a.btn-default:focus, .module-wrapper.News_News.template-default .module-content-block .btn-default:hover, .module-wrapper.News_News.template-default .module-content-block .btn-default:focus, .module-wrapper.News_News.template-default .module-content-block a.btn-primary:hover, .module-wrapper.News_News.template-default .module-content-block a.btn-primary:focus, .module-wrapper.News_News.template-default .module-content-block .btn-primary:hover, .module-wrapper.News_News.template-default .module-content-block .btn-primary:focus, .module-wrapper.News_News.template-default .module-content-block a.btn-custom:hover, .module-wrapper.News_News.template-default .module-content-block a.btn-custom:focus, .module-wrapper.News_News.template-default .module-content-block .btn-custom:hover, .module-wrapper.News_News.template-default .module-content-block .btn-custom:focus {
  background: #0f2c68;
  color: #FFF;
}
.module-wrapper.News_News.template-default .module-content-block:hover .thumbnail img, .module-wrapper.News_News.template-default .module-content-block:focus .thumbnail img {
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}
.module-wrapper.News_News.template-slideshow > .col-xs-12:before {
  content: "";
  position: absolute;
  left: calc(-100vw + 15px);
  top: 0;
  bottom: 0;
  width: 100vw;
  background: #FFF;
  z-index: 5;
}
@media (max-width: 767px) {
  .module-wrapper.News_News.template-slideshow > .col-xs-12:before {
    display: none;
  }
}
.module-wrapper.News_News.template-slideshow.module-style__match-height .owl-carousel .owl-stage {
  padding-top: 0;
  padding-bottom: 90px;
}
.module-wrapper.News_News.template-slideshow .module-content-block {
  margin: 1px 1px 20px 1px !important;
}
.module-wrapper.News_News.template-slideshow .module-content-block .thumbnail {
  overflow: hidden;
  position: relative;
}
.module-wrapper.News_News.template-slideshow .module-content-block .thumbnail:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #1d1d1d;
  mix-blend-mode: color;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  -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.News_News.template-slideshow .module-content-block .thumbnail img {
  border-radius: 0;
}
.module-wrapper.News_News.template-slideshow .module-content-block .thumbnail .caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 100%;
  background: #eb7523;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(rgba(235, 117, 35, 0.8)));
  background: linear-gradient(180deg, transparent 50%, rgba(235, 117, 35, 0.8));
  padding: 10px;
  border-radius: 0;
  pointer-events: none;
}
.module-wrapper.News_News.template-slideshow .module-content-block .thumbnail .caption .text-wrapper {
  max-width: 80%;
}
.module-wrapper.News_News.template-slideshow .module-content-block .thumbnail .caption p {
  font-size: 13px;
  font-weight: 800;
  color: #FFF;
}
.module-wrapper.News_News.template-slideshow .module-content-block .headline-wrapper .headline2 {
  font-size: 1.25rem;
  -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-wrapper.News_News.template-slideshow .module-content-block a.btn-default, .module-wrapper.News_News.template-slideshow .module-content-block .btn-default, .module-wrapper.News_News.template-slideshow .module-content-block a.btn-primary, .module-wrapper.News_News.template-slideshow .module-content-block .btn-primary, .module-wrapper.News_News.template-slideshow .module-content-block a.btn-custom, .module-wrapper.News_News.template-slideshow .module-content-block .btn-custom {
  position: absolute;
  top: -25px;
  right: -5px;
  bottom: 0;
  left: -5px;
  background: transparent;
  margin: 0;
  border: 0;
  border-radius: 0;
  opacity: 0;
}
.module-wrapper.News_News.template-slideshow .module-content-block:hover .thumbnail:before, .module-wrapper.News_News.template-slideshow .module-content-block:focus .thumbnail:before {
  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.News_News.template-slideshow .module-content-block {
  margin-bottom: 0;
  padding-bottom: 0;
}
.module-wrapper.News_News.template-slideshow .owl-carousel {
  overflow: visible;
}
.module-wrapper.News_News.template-slideshow .owl-carousel .owl-stage-outer {
  overflow: visible;
}
.module-wrapper.News_News.template-slideshow .owl-carousel .owl-stage {
  padding-bottom: 30px;
  padding-top: 0;
}
.module-wrapper.News_News.template-slideshow .owl-carousel .owl-nav {
  top: auto;
  right: auto;
  bottom: 50px;
  left: 10px;
  width: 100px;
  height: auto;
  -webkit-transform: none;
          transform: none;
}
@media (max-width: 991px) {
  .module-wrapper.News_News.template-slideshow .owl-carousel .owl-nav {
    width: 105px;
  }
}
@media (max-width: 767px) {
  .module-wrapper.News_News.template-slideshow .owl-carousel .owl-nav {
    width: 85px;
  }
}
.module-wrapper.News_News.template-slideshow .owl-carousel .owl-nav > div {
  right: 0;
  left: auto;
  width: 50px;
  height: 50px;
  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;
  background: rgba(21, 63, 149, 0);
  border: 2px solid #eb7523;
  border-radius: 50px;
  opacity: 1;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
@media (max-width: 767px) {
  .module-wrapper.News_News.template-slideshow .owl-carousel .owl-nav > div {
    width: 40px;
    height: 40px;
  }
}
.module-wrapper.News_News.template-slideshow .owl-carousel .owl-nav > div .amphiicon {
  font-size: 30px;
  color: #eb7523;
  padding: 0 !important;
  -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-wrapper.News_News.template-slideshow .owl-carousel .owl-nav > div:hover, .module-wrapper.News_News.template-slideshow .owl-carousel .owl-nav > div:focus {
  background: #153f95;
  border: 2px solid #153f95;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper.News_News.template-slideshow .owl-carousel .owl-nav > div:hover .amphiicon, .module-wrapper.News_News.template-slideshow .owl-carousel .owl-nav > div:focus .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);
}
.module-wrapper.News_News.template-slideshow .owl-carousel .owl-nav .owl-prev {
  right: 60px !important;
}
@media (max-width: 767px) {
  .module-wrapper.News_News.template-slideshow .owl-carousel .owl-nav .owl-prev {
    right: 50px !important;
  }
}
.module-wrapper.News_News.template-slideshow .owl-carousel .owl-nav .owl-prev .amphiicon {
  position: relative;
  left: -1px;
  top: -1px;
}
.module-wrapper.News_News.template-slideshow .owl-carousel .owl-nav .owl-next .amphiicon {
  position: relative;
  right: -1px;
  top: -1px;
}
.module-wrapper.News_News.template-slideshow .owl-carousel .owl-dots {
  display: none !important;
}
.module-wrapper.News_News.template-slideshow .owl-carousel .owl-dots-individual {
  position: absolute;
  left: 140px;
  bottom: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  line-height: 1;
  color: #444;
  padding: 0;
  z-index: 5;
}
@media (max-width: 767px) {
  .module-wrapper.News_News.template-slideshow .owl-carousel .owl-dots-individual {
    left: 120px;
    bottom: 10px;
  }
}
.module-wrapper.News_News.template-slideshow .owl-carousel .owl-dots-individual .owl-dots-active-number {
  font-size: 3rem;
  font-weight: 700;
}
.module-wrapper.News_News.template-slideshow .owl-carousel .owl-dots-individual .owl-dots-numbers {
  font-size: 1.5rem;
}
.module-wrapper.News_News.template-slideshow .owl-carousel .owl-dots-individual .owl-dots-numbers:before {
  content: "/";
  margin: 0 5px;
}
.module-wrapper.News_News.template-2-news-per-row-image-top-text-bottom.module-style__remove-image-margin .module-content-block .thumbnail, .module-wrapper.News_News.template-2-news-per-row-image-top-text-bottom-wall.module-style__remove-image-margin .module-content-block .thumbnail, .module-wrapper.News_News.template-3-news-per-row-image-top-text-bottom.module-style__remove-image-margin .module-content-block .thumbnail, .module-wrapper.News_News.template-3-news-per-row-image-top-text-bottom-wall.module-style__remove-image-margin .module-content-block .thumbnail, .module-wrapper.News_News.template-4-news-per-row-image-top-text-bottom.module-style__remove-image-margin .module-content-block .thumbnail, .module-wrapper.News_News.template-4-news-per-row-image-top-text-bottom-wall.module-style__remove-image-margin .module-content-block .thumbnail, .module-wrapper.News_News.template-slideshow.module-style__remove-image-margin .module-content-block .thumbnail {
  margin: -25px -25px 25px -25px;
}
.module-wrapper.News_News.template-image-left-text-right.module-style__remove-image-margin .module-content-block .thumbnail, .module-wrapper.News_News.template-2-news-per-row-image-left-text-right.module-style__remove-image-margin .module-content-block .thumbnail, .module-wrapper.News_News.template-2-news-per-row-image-left-text-right-wall.module-style__remove-image-margin .module-content-block .thumbnail {
  margin-right: 30px;
}
@media (max-width: 767px) {
  .module-wrapper.News_News.template-image-left-text-right.module-style__remove-image-margin .module-content-block .thumbnail, .module-wrapper.News_News.template-2-news-per-row-image-left-text-right.module-style__remove-image-margin .module-content-block .thumbnail, .module-wrapper.News_News.template-2-news-per-row-image-left-text-right-wall.module-style__remove-image-margin .module-content-block .thumbnail {
    margin-right: 0;
  }
}
.module-wrapper.News_News.template-image-top-text-bottom .module-content-block .thumbnail, .module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .thumbnail, .module-wrapper.News_News.template-image-left-text-right .module-content-block .thumbnail, .module-wrapper.News_News.template-2-news-per-row-image-left-text-right-wall .module-content-block .thumbnail {
  position: relative;
}
.module-wrapper.News_News.template-image-top-text-bottom .module-content-block .thumbnail .caption, .module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .thumbnail .caption, .module-wrapper.News_News.template-image-left-text-right .module-content-block .thumbnail .caption, .module-wrapper.News_News.template-2-news-per-row-image-left-text-right-wall .module-content-block .thumbnail .caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 100%;
  background: #eb7523;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(rgba(235, 117, 35, 0.8)));
  background: linear-gradient(180deg, transparent 50%, rgba(235, 117, 35, 0.8));
  padding: 10px;
  border-radius: 0;
  pointer-events: none;
}
.module-wrapper.News_News.template-image-top-text-bottom .module-content-block .thumbnail .caption .text-wrapper, .module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .thumbnail .caption .text-wrapper, .module-wrapper.News_News.template-image-left-text-right .module-content-block .thumbnail .caption .text-wrapper, .module-wrapper.News_News.template-2-news-per-row-image-left-text-right-wall .module-content-block .thumbnail .caption .text-wrapper {
  max-width: 80%;
}
.module-wrapper.News_News.template-image-top-text-bottom .module-content-block .thumbnail .caption p, .module-wrapper.News_News.template-2-news-per-row-image-left-text-right .module-content-block .thumbnail .caption p, .module-wrapper.News_News.template-image-left-text-right .module-content-block .thumbnail .caption p, .module-wrapper.News_News.template-2-news-per-row-image-left-text-right-wall .module-content-block .thumbnail .caption p {
  font-size: 13px;
  font-weight: 800;
  color: #FFF;
}
.module-wrapper.News_News .module-content-block {
  position: relative;
  margin-bottom: 40px;
}
.module-wrapper.News_News .module-content-block .row > [class*=col-] > a {
  text-decoration: none !important;
}
.module-wrapper.News_News .module-content-block .row > [class*=col-] > a:hover, .module-wrapper.News_News .module-content-block .row > [class*=col-] > a:focus {
  text-decoration: none !important;
}
.module-wrapper.News_News .module-content-block .thumbnail img {
  -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);
}
.module-wrapper.News_News .module-content-block .thumbnail .caption {
  position: relative;
  background: #FFF;
  color: #444;
  padding: 10px 25px 0 25px;
  z-index: 10;
}
.module-wrapper.News_News .module-content-block .newsDate {
  visibility: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  line-height: 0;
}
.module-wrapper.News_News .module-content-block .newsDate .group-name {
  position: relative;
  top: 0;
  display: inline-block;
  font-weight: 800;
  color: #153f95;
  margin: 0 10px 10px 0;
  padding: 0 10px 0 0;
  border-right: 1px solid #dedede;
  visibility: visible;
  line-height: 1.5;
}
.module-wrapper.News_News .module-content-block .newsDate .date {
  visibility: visible;
  display: block;
  line-height: 1.5;
  margin-bottom: 10px;
}
.module-wrapper.News_News .module-content-block .headline-wrapper .headline2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #444;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-text-decoration-color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-text-decoration-color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), text-decoration-color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), text-decoration-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-text-decoration-color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper.News_News .module-content-block .headline-wrapper .headline3 {
  font-size: 1.56rem;
  font-weight: 400;
  color: #444;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-text-decoration-color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-text-decoration-color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), text-decoration-color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), text-decoration-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-text-decoration-color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper.News_News .module-content-block .ddd-keep {
  margin: 0;
}
.module-wrapper.News_News .module-content-block:hover .thumbnail img, .module-wrapper.News_News .module-content-block:focus .thumbnail img {
  -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);
}
.module-wrapper.News_News .module-content-block:hover.linked-news .thumbnail img, .module-wrapper.News_News .module-content-block:focus.linked-news .thumbnail img {
  -webkit-transform: scale(1.1);
          transform: scale(1.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);
}
.module-wrapper.News_News .module-content-block:hover.linked-news .headline-wrapper .headline2, .module-wrapper.News_News .module-content-block:focus.linked-news .headline-wrapper .headline2 {
  color: #153f95;
  -webkit-text-decoration-color: #153f95;
          text-decoration-color: #153f95;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-text-decoration-color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-text-decoration-color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), text-decoration-color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), text-decoration-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-text-decoration-color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-wrapper.News_News .module-content-block:hover.linked-news .headline-wrapper .headline3, .module-wrapper.News_News .module-content-block:focus.linked-news .headline-wrapper .headline3 {
  color: #153f95;
  -webkit-text-decoration-color: #153f95;
          text-decoration-color: #153f95;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-text-decoration-color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-text-decoration-color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), text-decoration-color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), text-decoration-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-text-decoration-color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}

/* ========================================================================== BOX PRIMÄRE UND SEKUNDÄRE FARBE ======= */
.module-style__box-color-1 .module-content-block {
  background: #153f95;
  padding: 25px;
}
.module-style__box-color-1 .module-content-block .headline1, .module-style__box-color-1 .module-content-block .headline2, .module-style__box-color-1 .module-content-block .headline3, .module-style__box-color-1 .module-content-block .text-wrapper, .module-style__box-color-1 .module-content-block .position-wrapper, .module-style__box-color-1 .module-content-block .contact-wrapper {
  color: #fff;
}
.module-style__box-color-1 .module-content-block .headline1 a:not(.btn), .module-style__box-color-1 .module-content-block .headline2 a:not(.btn), .module-style__box-color-1 .module-content-block .headline3 a:not(.btn), .module-style__box-color-1 .module-content-block .text-wrapper a:not(.btn), .module-style__box-color-1 .module-content-block .position-wrapper a:not(.btn), .module-style__box-color-1 .module-content-block .contact-wrapper a:not(.btn) {
  color: #fff;
  -webkit-transition: color 0.3s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.3s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-style__box-color-1 .module-content-block .headline1 a:not(.btn):hover, .module-style__box-color-1 .module-content-block .headline1 a:not(.btn):focus, .module-style__box-color-1 .module-content-block .headline2 a:not(.btn):hover, .module-style__box-color-1 .module-content-block .headline2 a:not(.btn):focus, .module-style__box-color-1 .module-content-block .headline3 a:not(.btn):hover, .module-style__box-color-1 .module-content-block .headline3 a:not(.btn):focus, .module-style__box-color-1 .module-content-block .text-wrapper a:not(.btn):hover, .module-style__box-color-1 .module-content-block .text-wrapper a:not(.btn):focus, .module-style__box-color-1 .module-content-block .position-wrapper a:not(.btn):hover, .module-style__box-color-1 .module-content-block .position-wrapper a:not(.btn):focus, .module-style__box-color-1 .module-content-block .contact-wrapper a:not(.btn):hover, .module-style__box-color-1 .module-content-block .contact-wrapper a:not(.btn):focus {
  color: #fff;
  opacity: 0.7;
  -webkit-transition: color 0.3s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.3s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-style__box-color-1 .module-content-block a.btn-default, .module-style__box-color-1 .module-content-block .btn-default, .module-style__box-color-1 .module-content-block a.btn-primary, .module-style__box-color-1 .module-content-block .btn-primary, .module-style__box-color-1 .module-content-block a.btn-custom, .module-style__box-color-1 .module-content-block .btn-custom {
  background: #eb7523;
  color: #fff;
  border-color: #eb7523;
}
.module-style__box-color-1 .module-content-block a.btn-default:hover, .module-style__box-color-1 .module-content-block .btn-default:hover, .module-style__box-color-1 .module-content-block a.btn-primary:hover, .module-style__box-color-1 .module-content-block .btn-primary:hover, .module-style__box-color-1 .module-content-block a.btn-custom:hover, .module-style__box-color-1 .module-content-block .btn-custom:hover {
  background: #c95d12;
  color: #fff;
  border-color: #c95d12;
}
.module-style__box-color-1.Special_ChangingContents .category-elements .module-content-block {
  padding: 25px;
}

.module-style__box-color-2 .module-content-block {
  background: #eb7523;
  padding: 25px;
}
.module-style__box-color-2 .module-content-block .headline1, .module-style__box-color-2 .module-content-block .headline2, .module-style__box-color-2 .module-content-block .headline3, .module-style__box-color-2 .module-content-block .text-wrapper, .module-style__box-color-2 .module-content-block .position-wrapper, .module-style__box-color-2 .module-content-block .contact-wrapper {
  color: #fff;
}
.module-style__box-color-2 .module-content-block a:not(.btn) {
  color: #fff;
  -webkit-transition: color 0.3s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.3s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-style__box-color-2 .module-content-block a:not(.btn):hover, .module-style__box-color-2 .module-content-block a:not(.btn):focus {
  color: #fff;
  opacity: 0.7;
  -webkit-transition: color 0.3s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.3s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-style__box-color-2 .module-content-block a.btn-default, .module-style__box-color-2 .module-content-block .btn-default, .module-style__box-color-2 .module-content-block a.btn-primary, .module-style__box-color-2 .module-content-block .btn-primary, .module-style__box-color-2 .module-content-block a.btn-custom, .module-style__box-color-2 .module-content-block .btn-custom {
  background: #153f95;
  color: #fff;
  border-color: #153f95;
}
.module-style__box-color-2 .module-content-block a.btn-default:hover, .module-style__box-color-2 .module-content-block .btn-default:hover, .module-style__box-color-2 .module-content-block a.btn-primary:hover, .module-style__box-color-2 .module-content-block .btn-primary:hover, .module-style__box-color-2 .module-content-block a.btn-custom:hover, .module-style__box-color-2 .module-content-block .btn-custom:hover {
  background: #0f2c68;
  color: #fff;
  border-color: #0f2c68;
}
.module-style__box-color-2.Special_ChangingContents .category-elements .module-content-block {
  padding: 25px;
}

.module-style__box-color-3 .module-content-block {
  background: #e9f4f8;
  padding: 25px;
}
.module-style__box-color-3 .module-content-block .headline1, .module-style__box-color-3 .module-content-block .headline2, .module-style__box-color-3 .module-content-block .headline3, .module-style__box-color-3 .module-content-block .text-wrapper, .module-style__box-color-3 .module-content-block .position-wrapper, .module-style__box-color-3 .module-content-block .contact-wrapper {
  color: #606060;
}
.module-style__box-color-3 .module-content-block a:not(.btn) {
  color: #606060;
  -webkit-transition: color 0.3s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.3s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-style__box-color-3 .module-content-block a:not(.btn):hover, .module-style__box-color-3 .module-content-block a:not(.btn):focus {
  color: #606060;
  opacity: 0.7;
  -webkit-transition: color 0.3s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.3s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-style__box-color-3.Special_ChangingContents .category-elements .module-content-block {
  padding: 25px;
}

/* ======================================================================================== SEKUNDÄRER BUTTON ======= */
.module-style__secondary-button a.btn-default, .module-style__secondary-button .btn-default, .module-style__secondary-button a.btn-primary, .module-style__secondary-button .btn-primary, .module-style__secondary-button a.btn-custom, .module-style__secondary-button .btn-custom {
  background: #153f95;
  color: #fff;
  border-color: #153f95;
}
.module-style__secondary-button a.btn-default:hover, .module-style__secondary-button a.btn-default:focus, .module-style__secondary-button .btn-default:hover, .module-style__secondary-button .btn-default:focus, .module-style__secondary-button a.btn-primary:hover, .module-style__secondary-button a.btn-primary:focus, .module-style__secondary-button .btn-primary:hover, .module-style__secondary-button .btn-primary:focus, .module-style__secondary-button a.btn-custom:hover, .module-style__secondary-button a.btn-custom:focus, .module-style__secondary-button .btn-custom:hover, .module-style__secondary-button .btn-custom:focus {
  background: #0f2c68;
  color: #fff;
  border-color: #0f2c68;
}

/* =========================================================================================== TEASER MANAGER ======= */
.Special_ChangingContents .category-elements > .category-element {
  min-height: auto;
}

/* ======================================================================================= SPONSOREN BAUSTEIN ======= */
.Special_Sponsor.template-sponsor-slideshow-static.module-style__box-white .owl-carousel .owl-stage-outer {
  width: calc(100% + 40px);
  left: -20px;
  padding-top: 10px;
  padding-right: 20px;
  padding-left: 20px;
}
@media (max-width: 991px) {
  .Special_Sponsor.template-sponsor-slideshow-static.module-style__box-white .owl-carousel .owl-stage-outer {
    width: calc(100% + 30px);
    left: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.Special_Sponsor.template-sponsor-grouped .category-elements {
  margin-bottom: 60px;
}
.Special_Sponsor.template-sponsor-grouped .row:not(.category-elements) > [class*=col-]:last-child > .category-elements {
  margin-bottom: 0;
}
.Special_Sponsor.module-style__box-white .module-content-block {
  padding: 10px;
}

/* ================================================================================= ANSPRECHPARTNER BAUSTEIN ======= */
.module-style__special_ContactPerson-center.Special_ContactPerson .category-elements {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ============================================================================= TEASER MANAGER - INFO TEASER ======= */
.module-style__teaser-manager-info-teaser.Special_ChangingContents .category-elements .category-element {
  width: 100%;
}
.module-style__teaser-manager-info-teaser.Special_ChangingContents .category-elements .category-element .category-element-inner {
  height: 100%;
}
.module-style__teaser-manager-info-teaser.Special_ChangingContents .category-elements .module-content-block {
  min-height: 350px;
  background: #e9f4f8;
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
}
.module-style__teaser-manager-info-teaser.Special_ChangingContents .category-elements .module-content-block > .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media (max-width: 991px) {
  .module-style__teaser-manager-info-teaser.Special_ChangingContents .category-elements .module-content-block > .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.module-style__teaser-manager-info-teaser.Special_ChangingContents .category-elements .module-content-block > .row > .col-md-6:last-child {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 40px;
  padding-right: 50px;
  padding-bottom: 40px;
  padding-left: 20px;
}
@media (max-width: 1359px) {
  .module-style__teaser-manager-info-teaser.Special_ChangingContents .category-elements .module-content-block > .row > .col-md-6:last-child {
    padding-right: 40px;
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .module-style__teaser-manager-info-teaser.Special_ChangingContents .category-elements .module-content-block > .row > .col-md-6:last-child {
    padding: 15px 30px;
  }
}
.module-style__teaser-manager-info-teaser.Special_ChangingContents .category-elements .module-content-block .thumbnail {
  position: relative;
  height: 100%;
  margin-bottom: 0;
}
.module-style__teaser-manager-info-teaser.Special_ChangingContents .category-elements .module-content-block .thumbnail a {
  height: 100%;
  position: relative;
}
.module-style__teaser-manager-info-teaser.Special_ChangingContents .category-elements .module-content-block .thumbnail img {
  position: absolute;
  top: -2.5%;
  right: -2.5%;
  bottom: -2.5%;
  left: -2.5%;
  height: 105%;
  width: 105%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .module-style__teaser-manager-info-teaser.Special_ChangingContents .category-elements .module-content-block .thumbnail img {
    position: relative;
  }
}
.module-style__teaser-manager-info-teaser.Special_ChangingContents .category-elements .module-content-block .editor-style__social-media-icon .amphiicon {
  width: 30px;
  height: 30px;
  font-size: 1.25rem;
  margin: 0 10px 0 0;
}

/* =================================================================================== WEISSE SLIDER ELEMENTE ======= */
.module-style__white-slider-elements.Content_Gallery .amphi-slideshow .owl-carousel .owl-nav > div > span, .module-style__white-slider-elements.Gallery_Album .amphi-slideshow .owl-carousel .owl-nav > div > span, .module-style__white-slider-elements.Special_Sponsor .amphi-slideshow .owl-carousel .owl-nav > div > span, .module-style__white-slider-elements.News_News .amphi-slideshow .owl-carousel .owl-nav > div > span {
  color: #FFF;
}
.module-style__white-slider-elements.Content_Gallery .amphi-slideshow .owl-carousel .owl-nav > div > span:hover, .module-style__white-slider-elements.Gallery_Album .amphi-slideshow .owl-carousel .owl-nav > div > span:hover, .module-style__white-slider-elements.Special_Sponsor .amphi-slideshow .owl-carousel .owl-nav > div > span:hover, .module-style__white-slider-elements.News_News .amphi-slideshow .owl-carousel .owl-nav > div > span:hover {
  color: rgba(255, 255, 255, 0.7);
}
.module-style__white-slider-elements.Content_Gallery .amphi-slideshow .owl-carousel .owl-dots .owl-dot span, .module-style__white-slider-elements.Gallery_Album .amphi-slideshow .owl-carousel .owl-dots .owl-dot span, .module-style__white-slider-elements.Special_Sponsor .amphi-slideshow .owl-carousel .owl-dots .owl-dot span, .module-style__white-slider-elements.News_News .amphi-slideshow .owl-carousel .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.7);
}
.module-style__white-slider-elements.Content_Gallery .amphi-slideshow .owl-carousel .owl-dots .owl-dot:hover span, .module-style__white-slider-elements.Content_Gallery .amphi-slideshow .owl-carousel .owl-dots .owl-dot.active span, .module-style__white-slider-elements.Gallery_Album .amphi-slideshow .owl-carousel .owl-dots .owl-dot:hover span, .module-style__white-slider-elements.Gallery_Album .amphi-slideshow .owl-carousel .owl-dots .owl-dot.active span, .module-style__white-slider-elements.Special_Sponsor .amphi-slideshow .owl-carousel .owl-dots .owl-dot:hover span, .module-style__white-slider-elements.Special_Sponsor .amphi-slideshow .owl-carousel .owl-dots .owl-dot.active span, .module-style__white-slider-elements.News_News .amphi-slideshow .owl-carousel .owl-dots .owl-dot:hover span, .module-style__white-slider-elements.News_News .amphi-slideshow .owl-carousel .owl-dots .owl-dot.active span {
  background: #FFF;
}

/* ================================================================= BAUSTEINE SCHMALER (MITTIG / LINKBÜNDIG) ======= */
.module-style__smaller-module-wrapper-center > [class*=col-] {
  width: 70%;
  margin-left: 15%;
}
@media (max-width: 991px) {
  .module-style__smaller-module-wrapper-center > [class*=col-] {
    width: 100%;
    margin-left: 0;
  }
}

.module-style__smaller-module-wrapper-left > [class*=col-] {
  width: 83.33333%;
}
@media (max-width: 991px) {
  .module-style__smaller-module-wrapper-left > [class*=col-] {
    width: 100%;
  }
}

/* ==================================================================================== DOWNLOADS HINTERGRUND ======= */
.module-style__downloads-box-white.Text_File_Text .module-content-block {
  background: #fff;
}
.module-style__downloads-box-white.Files_Files:not(.template-compressed) .module-content-block .download-list-row {
  background: #fff;
}

/* ========================================================================================== FULLSIZE TEASER ======= */
.module-style__fullsize-teaser {
  width: calc(100% + 30px) !important;
  margin: 0 -15px !important;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .module-style__fullsize-teaser {
    width: calc(100% + 30px) !important;
    margin: 0 -15px !important;
  }
}
.module-style__fullsize-teaser > [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}
.module-style__fullsize-teaser.Text_Link_TextImageLeft {
  width: calc(100% + 30px) !important;
  margin: 0 -15px !important;
  padding: 0 !important;
}
.module-style__fullsize-teaser.Text_Link_TextImageLeft.module-spacing-size-large-bottom {
  padding-bottom: 45px !important;
}
.module-style__fullsize-teaser.Text_Link_TextImageLeft.module-spacing-size-medium-bottom {
  padding-bottom: 30px !important;
}
.module-style__fullsize-teaser.Text_Link_TextImageLeft.module-spacing-size-small-bottom {
  padding-bottom: 15px !important;
}
@media (max-width: 767px) {
  .module-style__fullsize-teaser.Text_Link_TextImageLeft {
    width: calc(100% + 30px) !important;
    margin: 0 -15px !important;
  }
}
.module-style__fullsize-teaser.Text_Link_TextImageLeft > [class*=col-] {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .module-style__fullsize-teaser.Text_Link_TextImageLeft .module-content-block {
    margin-bottom: 60px;
  }
}
.module-style__fullsize-teaser.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.module-style__fullsize-teaser.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs .col-sm-6:first-child {
  padding-left: 0;
  padding-right: 0;
}
.module-style__fullsize-teaser.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs .col-sm-6:first-child a {
  height: 100%;
}
.module-style__fullsize-teaser.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs .col-sm-6:first-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.module-style__fullsize-teaser.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs .col-sm-6:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  padding-right: 0;
}
.module-style__fullsize-teaser.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs .fullsize-teaser-content-wrapper {
  max-width: 665px;
  margin: 60px;
  padding: 0 15px;
}
@media (max-width: 991px) {
  .module-style__fullsize-teaser.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs .fullsize-teaser-content-wrapper {
    margin: 70px 30px;
  }
}
.module-style__fullsize-teaser.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs .thumbnail {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}
.module-style__fullsize-teaser.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs .thumbnail > a:hover {
  opacity: 1;
}
.module-style__fullsize-teaser.Text_Link_TextImageLeft .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;
  padding-left: 30px;
  padding-right: 30px;
}
.module-style__fullsize-teaser.Text_Link_TextImageLeft .module-content-block > .row.visible-xs > [class*=col-] .thumbnail {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-left: -30px;
  margin-right: -30px;
}
.module-style__fullsize-teaser.Text_Link_TextImageLeft .module-content-block > .row.visible-xs > [class*=col-] .headline-wrapper, .module-style__fullsize-teaser.Text_Link_TextImageLeft .module-content-block > .row.visible-xs > [class*=col-] .text-wrapper, .module-style__fullsize-teaser.Text_Link_TextImageLeft .module-content-block > .row.visible-xs > [class*=col-] > p {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.module-style__fullsize-teaser.Text_Link_TextImageRight {
  width: calc(100% + 30px) !important;
  margin: 0 -15px !important;
  padding: 0 !important;
}
.module-style__fullsize-teaser.Text_Link_TextImageRight.module-spacing-size-large-bottom {
  padding-bottom: 45px !important;
}
.module-style__fullsize-teaser.Text_Link_TextImageRight.module-spacing-size-medium-bottom {
  padding-bottom: 30px !important;
}
.module-style__fullsize-teaser.Text_Link_TextImageRight.module-spacing-size-small-bottom {
  padding-bottom: 15px !important;
}
@media (max-width: 767px) {
  .module-style__fullsize-teaser.Text_Link_TextImageRight {
    width: calc(100% + 30px) !important;
    margin: 0 -15px !important;
  }
}
.module-style__fullsize-teaser.Text_Link_TextImageRight > [class*=col-] {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .module-style__fullsize-teaser.Text_Link_TextImageRight .module-content-block {
    margin-bottom: 60px;
  }
}
.module-style__fullsize-teaser.Text_Link_TextImageRight .module-content-block > .row.hidden-xs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.module-style__fullsize-teaser.Text_Link_TextImageRight .module-content-block > .row.hidden-xs .col-sm-6:last-child {
  padding-left: 0;
  padding-right: 0;
}
.module-style__fullsize-teaser.Text_Link_TextImageRight .module-content-block > .row.hidden-xs .col-sm-6:last-child a {
  height: 100%;
}
.module-style__fullsize-teaser.Text_Link_TextImageRight .module-content-block > .row.hidden-xs .col-sm-6:last-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.module-style__fullsize-teaser.Text_Link_TextImageRight .module-content-block > .row.hidden-xs .col-sm-6:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 0;
  padding-left: 0;
}
.module-style__fullsize-teaser.Text_Link_TextImageRight .module-content-block > .row.hidden-xs .fullsize-teaser-content-wrapper {
  max-width: 665px;
  margin: 60px;
  padding: 0 15px;
}
@media (max-width: 991px) {
  .module-style__fullsize-teaser.Text_Link_TextImageRight .module-content-block > .row.hidden-xs .fullsize-teaser-content-wrapper {
    margin: 70px 30px;
  }
}
.module-style__fullsize-teaser.Text_Link_TextImageRight .module-content-block > .row.hidden-xs .thumbnail {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}
.module-style__fullsize-teaser.Text_Link_TextImageRight .module-content-block > .row.hidden-xs .thumbnail > a:hover {
  opacity: 1;
}
.module-style__fullsize-teaser.Text_Link_TextImageRight .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;
  padding-left: 30px;
  padding-right: 30px;
}
.module-style__fullsize-teaser.Text_Link_TextImageRight .module-content-block > .row.visible-xs > [class*=col-] .thumbnail {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-left: -30px;
  margin-right: -30px;
}
.module-style__fullsize-teaser.Text_Link_TextImageRight .module-content-block > .row.visible-xs > [class*=col-] .headline-wrapper, .module-style__fullsize-teaser.Text_Link_TextImageRight .module-content-block > .row.visible-xs > [class*=col-] .text-wrapper, .module-style__fullsize-teaser.Text_Link_TextImageRight .module-content-block > .row.visible-xs > [class*=col-] > p {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

/* Globale Stile & Farbvariablen */
.App_Undertaker_Request, .App_Undertaker_Search {
  /* Formularabschnitte */
  /* Styling für Formulargruppen und Pflichtfelder */
  /* Styling für Infotexte und Pakete */
  /* Footer für den Absende-Button und Hinweise */
  /* Fehlermeldungen */
  /* Custom Radio and Checkbox Styling */
  /* Spezifische Anpassungen, die nicht in Platzhaltern sind */
}
.App_Undertaker_Request ul.form-errors, .App_Undertaker_Search ul.form-errors {
  list-style-type: none !important;
}
.App_Undertaker_Request .undertaker-search-wrapper, .App_Undertaker_Search .undertaker-search-wrapper {
  background: #e9f4f8;
  padding: 30px;
  border: 1px solid #d6eaf2;
  margin-bottom: 35px;
}
.App_Undertaker_Request .form-section, .App_Undertaker_Search .form-section {
  margin-bottom: 45px;
  padding-bottom: 25px;
}
.App_Undertaker_Request .form-section:last-of-type, .App_Undertaker_Search .form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}
.App_Undertaker_Request .form-section .headline3, .App_Undertaker_Search .form-section .headline3 {
  background-color: #0085b0;
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 0 0;
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 400;
}
.App_Undertaker_Request .form-section .well, .App_Undertaker_Search .form-section .well {
  padding-left: 20px;
  padding-right: 20px;
}
.App_Undertaker_Request .form-section .undertaker-search-wrapper .well, .App_Undertaker_Search .form-section .undertaker-search-wrapper .well {
  padding-left: 20px;
  padding-right: 20px;
}
.App_Undertaker_Request .form-section .undertaker-search-wrapper .well:not(.undertaker-search-type) .form-group .grouped-elements label, .App_Undertaker_Search .form-section .undertaker-search-wrapper .well:not(.undertaker-search-type) .form-group .grouped-elements label {
  display: block;
}
.App_Undertaker_Request .has-error .form-control[aria-invalid=true], .App_Undertaker_Search .has-error .form-control[aria-invalid=true] {
  margin-bottom: 10px;
}
.App_Undertaker_Request .form-group, .App_Undertaker_Search .form-group {
  margin-bottom: 20px;
}
.App_Undertaker_Request .form-group ul.form-errors, .App_Undertaker_Search .form-group ul.form-errors {
  list-style-type: none;
  margin: 0px 0 20px 0;
  padding: 10px;
}
.App_Undertaker_Request .form-group.has-error, .App_Undertaker_Search .form-group.has-error {
  margin: 0;
}
.App_Undertaker_Request .form-group.has-error label, .App_Undertaker_Search .form-group.has-error label {
  margin-top: 10px;
}
.App_Undertaker_Request .form-group.has-error ul.form-errors, .App_Undertaker_Search .form-group.has-error ul.form-errors {
  list-style-type: none;
  margin: 0px 0 20px 0;
  padding: 10px;
}
.App_Undertaker_Request .form-group label, .App_Undertaker_Search .form-group label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 8px;
}
.App_Undertaker_Request .form-group.has-error .form-control, .App_Undertaker_Search .form-group.has-error .form-control {
  border-color: #d9534f;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(217, 83, 79, 0.25);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(217, 83, 79, 0.25);
}
.App_Undertaker_Request .form-group.has-error .checkbox label,
.App_Undertaker_Request .form-group.has-error .radio label, .App_Undertaker_Search .form-group.has-error .checkbox label,
.App_Undertaker_Search .form-group.has-error .radio label {
  color: #d9534f;
}
.App_Undertaker_Request .form-group.has-error label::before, .App_Undertaker_Search .form-group.has-error label::before {
  border-color: #d9534f !important;
}
.App_Undertaker_Request .form-control, .App_Undertaker_Search .form-control {
  border-radius: 0;
  border: 1px solid #ced4da;
  padding: 12px 15px;
  font-size: 1em;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  height: auto;
  line-height: 1.5;
}
.App_Undertaker_Request .form-control:focus, .App_Undertaker_Search .form-control:focus {
  border-color: #153f95;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(21, 63, 149, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(21, 63, 149, 0.25);
}
.App_Undertaker_Request select.form-control, .App_Undertaker_Search select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22encodecolor(#153f95)%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.4-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 0.65em auto;
  padding-right: 2.5rem;
}
.App_Undertaker_Request .required-field label:after, .App_Undertaker_Search .required-field label:after {
  content: " *";
  color: #d9534f;
  font-weight: bold;
}
.App_Undertaker_Request .info-text, .App_Undertaker_Search .info-text {
  font-size: 0.95em;
  color: #606060;
  margin-bottom: 15px;
  padding: 12px 18px;
  background-color: #e5f3f7;
  border: 1px solid #d2eaf1;
  border-radius: 0;
}
.App_Undertaker_Request .package-option,
.App_Undertaker_Request .addon-option, .App_Undertaker_Search .package-option,
.App_Undertaker_Search .addon-option {
  padding: 0 20px 0 20px;
  border: 2px solid #e9f4f8;
  border-radius: 0;
  margin-bottom: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.07);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.07);
  -webkit-transition: border-color 0.2s ease-out, -webkit-transform 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
  transition: border-color 0.2s ease-out, -webkit-transform 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out, -webkit-transform 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.App_Undertaker_Request .package-option .radio label, .App_Undertaker_Request .package-option .checkbox label,
.App_Undertaker_Request .addon-option .radio label,
.App_Undertaker_Request .addon-option .checkbox label, .App_Undertaker_Search .package-option .radio label, .App_Undertaker_Search .package-option .checkbox label,
.App_Undertaker_Search .addon-option .radio label,
.App_Undertaker_Search .addon-option .checkbox label {
  padding-left: 40px !important;
}
.App_Undertaker_Request .package-option:hover,
.App_Undertaker_Request .addon-option:hover, .App_Undertaker_Search .package-option:hover,
.App_Undertaker_Search .addon-option:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}
.App_Undertaker_Request .package-option h4,
.App_Undertaker_Request .addon-option h4, .App_Undertaker_Search .package-option h4,
.App_Undertaker_Search .addon-option h4 {
  margin: 0;
  color: #0085b0;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3;
}
.App_Undertaker_Request .package-option h5,
.App_Undertaker_Request .addon-option h5, .App_Undertaker_Search .package-option h5,
.App_Undertaker_Search .addon-option h5 {
  font-size: 1.8rem;
  line-height: 1.3;
  margin: 0;
  font-weight: 700;
  color: #153f95;
}
.App_Undertaker_Request .addon-option, .App_Undertaker_Search .addon-option {
  padding-bottom: 20px;
}
.App_Undertaker_Request .package-option, .App_Undertaker_Search .package-option {
  position: relative;
}
.App_Undertaker_Request .package-option:after, .App_Undertaker_Search .package-option:after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid transparent;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: bottom 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: bottom 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  bottom: 20px;
}
.App_Undertaker_Request .package-option.selected-package, .App_Undertaker_Search .package-option.selected-package {
  border-color: #153f95;
  background-color: #153f95;
  -webkit-box-shadow: 0 4px 10px rgba(21, 63, 149, 0.2);
          box-shadow: 0 4px 10px rgba(21, 63, 149, 0.2);
}
.App_Undertaker_Request .package-option.selected-package:after, .App_Undertaker_Search .package-option.selected-package:after {
  -webkit-transition: border 0.5s cubic-bezier(0.55, 0, 0.1, 1), bottom 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: border 0.5s cubic-bezier(0.55, 0, 0.1, 1), bottom 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  border-top: 20px solid #153f95;
  bottom: -20px;
}
.App_Undertaker_Request .package-option.selected-package h4, .App_Undertaker_Request .package-option.selected-package h5, .App_Undertaker_Request .package-option.selected-package .package-price, .App_Undertaker_Request .package-option.selected-package .addon-price, .App_Undertaker_Search .package-option.selected-package h4, .App_Undertaker_Search .package-option.selected-package h5, .App_Undertaker_Search .package-option.selected-package .package-price, .App_Undertaker_Search .package-option.selected-package .addon-price {
  color: #fff;
}
.App_Undertaker_Request .package-option.selected-package input[type=radio]:checked + label::before,
.App_Undertaker_Request .package-option.selected-package input[type=checkbox]:checked + label::before, .App_Undertaker_Search .package-option.selected-package input[type=radio]:checked + label::before,
.App_Undertaker_Search .package-option.selected-package input[type=checkbox]:checked + label::before {
  background-color: #153f95;
  border-color: #fff;
}
.App_Undertaker_Request .package-option.selected-package input[type=radio]:focus + label::before,
.App_Undertaker_Request .package-option.selected-package input[type=checkbox]:focus + label::before, .App_Undertaker_Search .package-option.selected-package input[type=radio]:focus + label::before,
.App_Undertaker_Search .package-option.selected-package input[type=checkbox]:focus + label::before {
  border-color: #fff;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(21, 63, 149, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(21, 63, 149, 0.25);
}
.App_Undertaker_Request .package-price,
.App_Undertaker_Request .addon-price, .App_Undertaker_Search .package-price,
.App_Undertaker_Search .addon-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #5cb85c;
  margin-top: 5px;
  margin-bottom: 10px;
}
.App_Undertaker_Request .package-price small,
.App_Undertaker_Request .addon-price small, .App_Undertaker_Search .package-price small,
.App_Undertaker_Search .addon-price small {
  font-size: 0.98rem;
  font-weight: 400;
}
.App_Undertaker_Request .package-details-container, .App_Undertaker_Search .package-details-container {
  margin-top: 20px;
}
.App_Undertaker_Request .details-toggle, .App_Undertaker_Search .details-toggle {
  cursor: pointer;
  color: #153f95;
  text-decoration: none;
  font-size: 0.9em;
  display: inline-block;
  margin-top: 5px;
  font-weight: 500;
}
.App_Undertaker_Request .details-toggle:hover, .App_Undertaker_Search .details-toggle:hover {
  text-decoration: underline;
  color: #0f2c68;
}
.App_Undertaker_Request .details-content, .App_Undertaker_Search .details-content {
  margin-top: 15px;
  padding: 15px;
  background-color: #e9f4f8;
  border: 1px solid #d6eaf2;
  border-radius: 0;
  font-size: 0.9em;
}
.App_Undertaker_Request .form-footer, .App_Undertaker_Search .form-footer {
  margin-top: 30px;
  padding-top: 25px;
}
.App_Undertaker_Request .help-block.text-danger, .App_Undertaker_Search .help-block.text-danger {
  color: #d9534f;
  font-size: 0.9em;
  margin-top: 6px;
}
.App_Undertaker_Request .result-item, .App_Undertaker_Search .result-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
.App_Undertaker_Request .result-item:last-child, .App_Undertaker_Search .result-item:last-child {
  border-bottom: 0;
}
.App_Undertaker_Request .well, .App_Undertaker_Search .well {
  background-color: #fff;
  border: 1px solid #d6eaf2;
  border-radius: 0;
  padding: 20px;
}
.App_Undertaker_Request .undertaker-search-wrapper .well, .App_Undertaker_Search .undertaker-search-wrapper .well {
  background-color: #fff;
  border: 1px solid #d6eaf2;
}
.App_Undertaker_Request .undertaker-search-wrapper .radio label, .App_Undertaker_Search .undertaker-search-wrapper .radio label {
  font-weight: normal;
}
.App_Undertaker_Request #formSummary.well, .App_Undertaker_Search #formSummary.well {
  background-color: #f9fcfd;
  border: 1px solid #d2eaf1;
}
.App_Undertaker_Request .App_Undertaker_Searchx .radio label, .App_Undertaker_Searchx .radio .App_Undertaker_Request label,
.App_Undertaker_Request .App_Undertaker_Searchx .checkbox label,
.App_Undertaker_Searchx .checkbox .App_Undertaker_Request label, .App_Undertaker_Request .form-group .radio label,
.App_Undertaker_Request .form-group .checkbox label,
.App_Undertaker_Request .package-option .radio label,
.App_Undertaker_Request .package-option .checkbox label,
.App_Undertaker_Request .addon-option .radio label,
.App_Undertaker_Request .addon-option .checkbox label,
.App_Undertaker_Request .undertaker-search-wrapper .radio label,
.App_Undertaker_Request .undertaker-search-wrapper .checkbox label, .App_Undertaker_Search .App_Undertaker_Searchx .radio label, .App_Undertaker_Searchx .radio .App_Undertaker_Search label,
.App_Undertaker_Search .App_Undertaker_Searchx .checkbox label,
.App_Undertaker_Searchx .checkbox .App_Undertaker_Search label, .App_Undertaker_Search .form-group .radio label,
.App_Undertaker_Search .form-group .checkbox label,
.App_Undertaker_Search .package-option .radio label,
.App_Undertaker_Search .package-option .checkbox label,
.App_Undertaker_Search .addon-option .radio label,
.App_Undertaker_Search .addon-option .checkbox label,
.App_Undertaker_Search .undertaker-search-wrapper .radio label,
.App_Undertaker_Search .undertaker-search-wrapper .checkbox label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 24px;
  margin-bottom: 0;
  font-weight: normal;
  width: 100%;
}
.App_Undertaker_Request .App_Undertaker_Searchx input[type=radio], .App_Undertaker_Searchx .App_Undertaker_Request input[type=radio],
.App_Undertaker_Request .App_Undertaker_Searchx input[type=checkbox],
.App_Undertaker_Searchx .App_Undertaker_Request input[type=checkbox], .App_Undertaker_Request .form-group input[type=radio],
.App_Undertaker_Request .form-group input[type=checkbox],
.App_Undertaker_Request .package-option input[type=radio],
.App_Undertaker_Request .package-option input[type=checkbox],
.App_Undertaker_Request .addon-option input[type=radio],
.App_Undertaker_Request .addon-option input[type=checkbox],
.App_Undertaker_Request .undertaker-search-wrapper input[type=radio],
.App_Undertaker_Request .undertaker-search-wrapper input[type=checkbox], .App_Undertaker_Search .App_Undertaker_Searchx input[type=radio], .App_Undertaker_Searchx .App_Undertaker_Search input[type=radio],
.App_Undertaker_Search .App_Undertaker_Searchx input[type=checkbox],
.App_Undertaker_Searchx .App_Undertaker_Search input[type=checkbox], .App_Undertaker_Search .form-group input[type=radio],
.App_Undertaker_Search .form-group input[type=checkbox],
.App_Undertaker_Search .package-option input[type=radio],
.App_Undertaker_Search .package-option input[type=checkbox],
.App_Undertaker_Search .addon-option input[type=radio],
.App_Undertaker_Search .addon-option input[type=checkbox],
.App_Undertaker_Search .undertaker-search-wrapper input[type=radio],
.App_Undertaker_Search .undertaker-search-wrapper input[type=checkbox] {
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  left: 0;
  top: 0;
}
.App_Undertaker_Request .App_Undertaker_Searchx .radio label::before, .App_Undertaker_Searchx .radio .App_Undertaker_Request label::before,
.App_Undertaker_Request .App_Undertaker_Searchx .checkbox label::before,
.App_Undertaker_Searchx .checkbox .App_Undertaker_Request label::before, .App_Undertaker_Request .form-group .radio label::before,
.App_Undertaker_Request .form-group .checkbox label::before,
.App_Undertaker_Request .package-option .radio label::before,
.App_Undertaker_Request .package-option .checkbox label::before,
.App_Undertaker_Request .addon-option .radio label::before,
.App_Undertaker_Request .addon-option .checkbox label::before,
.App_Undertaker_Request .undertaker-search-wrapper .radio label::before,
.App_Undertaker_Request .undertaker-search-wrapper .checkbox label::before, .App_Undertaker_Search .App_Undertaker_Searchx .radio label::before, .App_Undertaker_Searchx .radio .App_Undertaker_Search label::before,
.App_Undertaker_Search .App_Undertaker_Searchx .checkbox label::before,
.App_Undertaker_Searchx .checkbox .App_Undertaker_Search label::before, .App_Undertaker_Search .form-group .radio label::before,
.App_Undertaker_Search .form-group .checkbox label::before,
.App_Undertaker_Search .package-option .radio label::before,
.App_Undertaker_Search .package-option .checkbox label::before,
.App_Undertaker_Search .addon-option .radio label::before,
.App_Undertaker_Search .addon-option .checkbox label::before,
.App_Undertaker_Search .undertaker-search-wrapper .radio label::before,
.App_Undertaker_Search .undertaker-search-wrapper .checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #606060;
  background-color: #fff;
  -webkit-transition: border-color 0.2s, background-color 0.2s;
  transition: border-color 0.2s, background-color 0.2s;
}
.App_Undertaker_Request .bestatterAdresse, .App_Undertaker_Search .bestatterAdresse {
  margin-left: 30px;
  margin-bottom: 20px;
}
.App_Undertaker_Request .form-group input[type=radio]:checked + label::before,
.App_Undertaker_Request .form-group input[type=checkbox]:checked + label::before,
.App_Undertaker_Request .package-option input[type=radio]:checked + label::before,
.App_Undertaker_Request .package-option input[type=checkbox]:checked + label::before,
.App_Undertaker_Request .addon-option input[type=radio]:checked + label::before,
.App_Undertaker_Request .addon-option input[type=checkbox]:checked + label::before,
.App_Undertaker_Request .undertaker-search-wrapper input[type=radio]:checked + label::before,
.App_Undertaker_Request .undertaker-search-wrapper input[type=checkbox]:checked + label::before, .App_Undertaker_Search .form-group input[type=radio]:checked + label::before,
.App_Undertaker_Search .form-group input[type=checkbox]:checked + label::before,
.App_Undertaker_Search .package-option input[type=radio]:checked + label::before,
.App_Undertaker_Search .package-option input[type=checkbox]:checked + label::before,
.App_Undertaker_Search .addon-option input[type=radio]:checked + label::before,
.App_Undertaker_Search .addon-option input[type=checkbox]:checked + label::before,
.App_Undertaker_Search .undertaker-search-wrapper input[type=radio]:checked + label::before,
.App_Undertaker_Search .undertaker-search-wrapper input[type=checkbox]:checked + label::before {
  background-color: #153f95;
  border-color: #153f95;
}
.App_Undertaker_Request .form-group input[type=radio]:focus + label::before,
.App_Undertaker_Request .form-group input[type=checkbox]:focus + label::before,
.App_Undertaker_Request .package-option input[type=radio]:focus + label::before,
.App_Undertaker_Request .package-option input[type=checkbox]:focus + label::before,
.App_Undertaker_Request .addon-option input[type=radio]:focus + label::before,
.App_Undertaker_Request .addon-option input[type=checkbox]:focus + label::before,
.App_Undertaker_Request .undertaker-search-wrapper input[type=radio]:focus + label::before,
.App_Undertaker_Request .undertaker-search-wrapper input[type=checkbox]:focus + label::before, .App_Undertaker_Search .form-group input[type=radio]:focus + label::before,
.App_Undertaker_Search .form-group input[type=checkbox]:focus + label::before,
.App_Undertaker_Search .package-option input[type=radio]:focus + label::before,
.App_Undertaker_Search .package-option input[type=checkbox]:focus + label::before,
.App_Undertaker_Search .addon-option input[type=radio]:focus + label::before,
.App_Undertaker_Search .addon-option input[type=checkbox]:focus + label::before,
.App_Undertaker_Search .undertaker-search-wrapper input[type=radio]:focus + label::before,
.App_Undertaker_Search .undertaker-search-wrapper input[type=checkbox]:focus + label::before {
  border-color: #153f95;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(21, 63, 149, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(21, 63, 149, 0.25);
}
.App_Undertaker_Request .form-group .radio label::before,
.App_Undertaker_Request .package-option .radio label::before,
.App_Undertaker_Request .addon-option .radio label::before,
.App_Undertaker_Request .undertaker-search-wrapper .radio label::before, .App_Undertaker_Search .form-group .radio label::before,
.App_Undertaker_Search .package-option .radio label::before,
.App_Undertaker_Search .addon-option .radio label::before,
.App_Undertaker_Search .undertaker-search-wrapper .radio label::before {
  border-radius: 50%;
}
.App_Undertaker_Request .form-group .checkbox label::before,
.App_Undertaker_Request .package-option .checkbox label::before,
.App_Undertaker_Request .addon-option .checkbox label::before,
.App_Undertaker_Request .undertaker-search-wrapper .checkbox label::before, .App_Undertaker_Search .form-group .checkbox label::before,
.App_Undertaker_Search .package-option .checkbox label::before,
.App_Undertaker_Search .addon-option .checkbox label::before,
.App_Undertaker_Search .undertaker-search-wrapper .checkbox label::before {
  border-radius: 0;
}
.App_Undertaker_Request .form-group input[type=radio]:checked + label::after,
.App_Undertaker_Request .package-option input[type=radio]:checked + label::after,
.App_Undertaker_Request .addon-option input[type=radio]:checked + label::after,
.App_Undertaker_Request .undertaker-search-wrapper input[type=radio]:checked + label::after, .App_Undertaker_Search .form-group input[type=radio]:checked + label::after,
.App_Undertaker_Search .package-option input[type=radio]:checked + label::after,
.App_Undertaker_Search .addon-option input[type=radio]:checked + label::after,
.App_Undertaker_Search .undertaker-search-wrapper input[type=radio]:checked + label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
}
.App_Undertaker_Request .form-group input[type=checkbox]:checked + label::after,
.App_Undertaker_Request .package-option input[type=checkbox]:checked + label::after,
.App_Undertaker_Request .addon-option input[type=checkbox]:checked + label::after,
.App_Undertaker_Request .undertaker-search-wrapper input[type=checkbox]:checked + label::after, .App_Undertaker_Search .form-group input[type=checkbox]:checked + label::after,
.App_Undertaker_Search .package-option input[type=checkbox]:checked + label::after,
.App_Undertaker_Search .addon-option input[type=checkbox]:checked + label::after,
.App_Undertaker_Search .undertaker-search-wrapper input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  left: 9px;
  top: calc(50% - 6px);
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg) translate(-50%, 0);
          transform: rotate(45deg) translate(-50%, 0);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.App_Undertaker_Request .form-group .radio label:hover::before,
.App_Undertaker_Request .form-group .checkbox label:hover::before,
.App_Undertaker_Request .package-option .radio label:hover::before,
.App_Undertaker_Request .package-option .checkbox label:hover::before,
.App_Undertaker_Request .addon-option .radio label:hover::before,
.App_Undertaker_Request .addon-option .checkbox label:hover::before,
.App_Undertaker_Request .undertaker-search-wrapper .radio label:hover::before,
.App_Undertaker_Request .undertaker-search-wrapper .checkbox label:hover::before, .App_Undertaker_Search .form-group .radio label:hover::before,
.App_Undertaker_Search .form-group .checkbox label:hover::before,
.App_Undertaker_Search .package-option .radio label:hover::before,
.App_Undertaker_Search .package-option .checkbox label:hover::before,
.App_Undertaker_Search .addon-option .radio label:hover::before,
.App_Undertaker_Search .addon-option .checkbox label:hover::before,
.App_Undertaker_Search .undertaker-search-wrapper .radio label:hover::before,
.App_Undertaker_Search .undertaker-search-wrapper .checkbox label:hover::before {
  border-color: #153f95;
}
.App_Undertaker_Request .radio + .radio, .App_Undertaker_Request .checkbox + .checkbox, .App_Undertaker_Search .radio + .radio, .App_Undertaker_Search .checkbox + .checkbox {
  margin-top: 10px;
}
.App_Undertaker_Request .addon-option .checkbox label h5, .App_Undertaker_Search .addon-option .checkbox label h5 {
  font-size: 1.4rem;
}
.App_Undertaker_Request .radio label,
.App_Undertaker_Request .checkbox label, .App_Undertaker_Search .radio label,
.App_Undertaker_Search .checkbox label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 24px;
  margin-bottom: 0;
  font-weight: normal;
  width: 100%;
}
.App_Undertaker_Request .radio label::before,
.App_Undertaker_Request .checkbox label::before, .App_Undertaker_Search .radio label::before,
.App_Undertaker_Search .checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #606060;
  background-color: #fff;
  -webkit-transition: border-color 0.2s, background-color 0.2s;
  transition: border-color 0.2s, background-color 0.2s;
}
.App_Undertaker_Request .radio label::after,
.App_Undertaker_Request .checkbox label::after, .App_Undertaker_Search .radio label::after,
.App_Undertaker_Search .checkbox label::after {
  content: "";
  position: absolute;
  display: none;
}
.App_Undertaker_Request .radio label p,
.App_Undertaker_Request .checkbox label p, .App_Undertaker_Search .radio label p,
.App_Undertaker_Search .checkbox label p {
  margin-bottom: 0;
  display: inline;
}
.App_Undertaker_Request .radio label:hover::before,
.App_Undertaker_Request .checkbox label:hover::before, .App_Undertaker_Search .radio label:hover::before,
.App_Undertaker_Search .checkbox label:hover::before {
  border-color: #153f95;
}
.App_Undertaker_Request .radio label.is-checked::before,
.App_Undertaker_Request .checkbox label.is-checked::before, .App_Undertaker_Search .radio label.is-checked::before,
.App_Undertaker_Search .checkbox label.is-checked::before {
  background-color: #153f95;
  border-color: #153f95;
}
.App_Undertaker_Request .radio label.is-checked::after,
.App_Undertaker_Request .checkbox label.is-checked::after, .App_Undertaker_Search .radio label.is-checked::after,
.App_Undertaker_Search .checkbox label.is-checked::after {
  display: block;
}
.App_Undertaker_Request .radio input[type=radio],
.App_Undertaker_Request .radio input[type=checkbox],
.App_Undertaker_Request .checkbox input[type=radio],
.App_Undertaker_Request .checkbox input[type=checkbox], .App_Undertaker_Search .radio input[type=radio],
.App_Undertaker_Search .radio input[type=checkbox],
.App_Undertaker_Search .checkbox input[type=radio],
.App_Undertaker_Search .checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.App_Undertaker_Request .radio input[type=radio]:focus + label::before,
.App_Undertaker_Request .radio input[type=checkbox]:focus + label::before,
.App_Undertaker_Request .checkbox input[type=radio]:focus + label::before,
.App_Undertaker_Request .checkbox input[type=checkbox]:focus + label::before, .App_Undertaker_Search .radio input[type=radio]:focus + label::before,
.App_Undertaker_Search .radio input[type=checkbox]:focus + label::before,
.App_Undertaker_Search .checkbox input[type=radio]:focus + label::before,
.App_Undertaker_Search .checkbox input[type=checkbox]:focus + label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(21, 63, 149, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(21, 63, 149, 0.25);
}
.App_Undertaker_Request .radio label::before, .App_Undertaker_Search .radio label::before {
  border-radius: 50%;
}
.App_Undertaker_Request .radio label.is-checked::after, .App_Undertaker_Search .radio label.is-checked::after {
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
}
.App_Undertaker_Request .checkbox label::before, .App_Undertaker_Search .checkbox label::before {
  border-radius: 0;
}
.App_Undertaker_Request .checkbox label.is-checked::after, .App_Undertaker_Search .checkbox label.is-checked::after {
  left: 8px;
  top: calc(50% + 2px);
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg) translate(-8px, -50%);
          transform: rotate(45deg) translate(-8px, -50%);
}

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 40px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
}

.progress-wrap::after {
  position: absolute;
  font-family: FontAwesome;
  content: "\f077";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: #153f95;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  font-family: FontAwesome;
  content: "\f077";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #153f95;
  stroke-width: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Globale Stile & Farbvariablen (copied from original style.scss for self-containment) */
.App_Undertaker_Searchx {
  /* Form sections */
  /* Styling for form groups and required fields */
  /* Custom Radio and Checkbox Styling */
  /* Specific styling for the undertaker address within search results */
  /* Responsive adjustments */
}
.App_Undertaker_Searchx .form-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9f4f8;
}
.App_Undertaker_Searchx .form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.App_Undertaker_Searchx .form-section .well {
  background-color: #e9f4f8;
  border: 1px solid #d6eaf2;
  border-radius: 0;
  padding: 20px;
}
.App_Undertaker_Searchx .form-group {
  margin-bottom: 20px;
}
.App_Undertaker_Searchx .form-group label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 8px;
  display: block;
}
.App_Undertaker_Searchx .form-control {
  border-radius: 0;
  border: 1px solid #ced4da;
  padding: 12px 15px;
  font-size: 1em;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  height: auto;
  line-height: 1.5;
  width: 100%; /* Ensure inputs take full width */
}
.App_Undertaker_Searchx .form-control:focus {
  border-color: #153f95;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(21, 63, 149, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(21, 63, 149, 0.25);
}
.App_Undertaker_Searchx select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23153F95%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.4-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 0.65em auto;
  padding-right: 2.5rem;
}
.App_Undertaker_Searchx .radio label,
.App_Undertaker_Searchx .checkbox label, .App_Undertaker_Searchx .App_Undertaker_Request .form-group .radio label, .App_Undertaker_Request .form-group .radio .App_Undertaker_Searchx label,
.App_Undertaker_Searchx .App_Undertaker_Request .form-group .checkbox label,
.App_Undertaker_Request .form-group .checkbox .App_Undertaker_Searchx label,
.App_Undertaker_Searchx .App_Undertaker_Request .package-option .radio label,
.App_Undertaker_Request .package-option .radio .App_Undertaker_Searchx label,
.App_Undertaker_Searchx .App_Undertaker_Request .package-option .checkbox label,
.App_Undertaker_Request .package-option .checkbox .App_Undertaker_Searchx label,
.App_Undertaker_Searchx .App_Undertaker_Request .addon-option .radio label,
.App_Undertaker_Request .addon-option .radio .App_Undertaker_Searchx label,
.App_Undertaker_Searchx .App_Undertaker_Request .addon-option .checkbox label,
.App_Undertaker_Request .addon-option .checkbox .App_Undertaker_Searchx label,
.App_Undertaker_Searchx .App_Undertaker_Request .undertaker-search-wrapper .radio label,
.App_Undertaker_Request .undertaker-search-wrapper .radio .App_Undertaker_Searchx label,
.App_Undertaker_Searchx .App_Undertaker_Request .undertaker-search-wrapper .checkbox label,
.App_Undertaker_Request .undertaker-search-wrapper .checkbox .App_Undertaker_Searchx label, .App_Undertaker_Searchx .App_Undertaker_Search .form-group .radio label, .App_Undertaker_Search .form-group .radio .App_Undertaker_Searchx label,
.App_Undertaker_Searchx .App_Undertaker_Search .form-group .checkbox label,
.App_Undertaker_Search .form-group .checkbox .App_Undertaker_Searchx label,
.App_Undertaker_Searchx .App_Undertaker_Search .package-option .radio label,
.App_Undertaker_Search .package-option .radio .App_Undertaker_Searchx label,
.App_Undertaker_Searchx .App_Undertaker_Search .package-option .checkbox label,
.App_Undertaker_Search .package-option .checkbox .App_Undertaker_Searchx label,
.App_Undertaker_Searchx .App_Undertaker_Search .addon-option .radio label,
.App_Undertaker_Search .addon-option .radio .App_Undertaker_Searchx label,
.App_Undertaker_Searchx .App_Undertaker_Search .addon-option .checkbox label,
.App_Undertaker_Search .addon-option .checkbox .App_Undertaker_Searchx label,
.App_Undertaker_Searchx .App_Undertaker_Search .undertaker-search-wrapper .radio label,
.App_Undertaker_Search .undertaker-search-wrapper .radio .App_Undertaker_Searchx label,
.App_Undertaker_Searchx .App_Undertaker_Search .undertaker-search-wrapper .checkbox label,
.App_Undertaker_Search .undertaker-search-wrapper .checkbox .App_Undertaker_Searchx label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 24px;
  margin-bottom: 0;
  font-weight: normal;
  width: 100%;
}
.App_Undertaker_Searchx input[type=radio],
.App_Undertaker_Searchx input[type=checkbox], .App_Undertaker_Searchx .App_Undertaker_Request .form-group input[type=radio], .App_Undertaker_Request .form-group .App_Undertaker_Searchx input[type=radio],
.App_Undertaker_Searchx .App_Undertaker_Request .form-group input[type=checkbox],
.App_Undertaker_Request .form-group .App_Undertaker_Searchx input[type=checkbox],
.App_Undertaker_Searchx .App_Undertaker_Request .package-option input[type=radio],
.App_Undertaker_Request .package-option .App_Undertaker_Searchx input[type=radio],
.App_Undertaker_Searchx .App_Undertaker_Request .package-option input[type=checkbox],
.App_Undertaker_Request .package-option .App_Undertaker_Searchx input[type=checkbox],
.App_Undertaker_Searchx .App_Undertaker_Request .addon-option input[type=radio],
.App_Undertaker_Request .addon-option .App_Undertaker_Searchx input[type=radio],
.App_Undertaker_Searchx .App_Undertaker_Request .addon-option input[type=checkbox],
.App_Undertaker_Request .addon-option .App_Undertaker_Searchx input[type=checkbox],
.App_Undertaker_Searchx .App_Undertaker_Request .undertaker-search-wrapper input[type=radio],
.App_Undertaker_Request .undertaker-search-wrapper .App_Undertaker_Searchx input[type=radio],
.App_Undertaker_Searchx .App_Undertaker_Request .undertaker-search-wrapper input[type=checkbox],
.App_Undertaker_Request .undertaker-search-wrapper .App_Undertaker_Searchx input[type=checkbox], .App_Undertaker_Searchx .App_Undertaker_Search .form-group input[type=radio], .App_Undertaker_Search .form-group .App_Undertaker_Searchx input[type=radio],
.App_Undertaker_Searchx .App_Undertaker_Search .form-group input[type=checkbox],
.App_Undertaker_Search .form-group .App_Undertaker_Searchx input[type=checkbox],
.App_Undertaker_Searchx .App_Undertaker_Search .package-option input[type=radio],
.App_Undertaker_Search .package-option .App_Undertaker_Searchx input[type=radio],
.App_Undertaker_Searchx .App_Undertaker_Search .package-option input[type=checkbox],
.App_Undertaker_Search .package-option .App_Undertaker_Searchx input[type=checkbox],
.App_Undertaker_Searchx .App_Undertaker_Search .addon-option input[type=radio],
.App_Undertaker_Search .addon-option .App_Undertaker_Searchx input[type=radio],
.App_Undertaker_Searchx .App_Undertaker_Search .addon-option input[type=checkbox],
.App_Undertaker_Search .addon-option .App_Undertaker_Searchx input[type=checkbox],
.App_Undertaker_Searchx .App_Undertaker_Search .undertaker-search-wrapper input[type=radio],
.App_Undertaker_Search .undertaker-search-wrapper .App_Undertaker_Searchx input[type=radio],
.App_Undertaker_Searchx .App_Undertaker_Search .undertaker-search-wrapper input[type=checkbox],
.App_Undertaker_Search .undertaker-search-wrapper .App_Undertaker_Searchx input[type=checkbox] {
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  left: 0;
  top: 0;
}
.App_Undertaker_Searchx .radio label::before,
.App_Undertaker_Searchx .checkbox label::before, .App_Undertaker_Searchx .App_Undertaker_Request .form-group .radio label::before, .App_Undertaker_Request .form-group .radio .App_Undertaker_Searchx label::before,
.App_Undertaker_Searchx .App_Undertaker_Request .form-group .checkbox label::before,
.App_Undertaker_Request .form-group .checkbox .App_Undertaker_Searchx label::before,
.App_Undertaker_Searchx .App_Undertaker_Request .package-option .radio label::before,
.App_Undertaker_Request .package-option .radio .App_Undertaker_Searchx label::before,
.App_Undertaker_Searchx .App_Undertaker_Request .package-option .checkbox label::before,
.App_Undertaker_Request .package-option .checkbox .App_Undertaker_Searchx label::before,
.App_Undertaker_Searchx .App_Undertaker_Request .addon-option .radio label::before,
.App_Undertaker_Request .addon-option .radio .App_Undertaker_Searchx label::before,
.App_Undertaker_Searchx .App_Undertaker_Request .addon-option .checkbox label::before,
.App_Undertaker_Request .addon-option .checkbox .App_Undertaker_Searchx label::before,
.App_Undertaker_Searchx .App_Undertaker_Request .undertaker-search-wrapper .radio label::before,
.App_Undertaker_Request .undertaker-search-wrapper .radio .App_Undertaker_Searchx label::before,
.App_Undertaker_Searchx .App_Undertaker_Request .undertaker-search-wrapper .checkbox label::before,
.App_Undertaker_Request .undertaker-search-wrapper .checkbox .App_Undertaker_Searchx label::before, .App_Undertaker_Searchx .App_Undertaker_Search .form-group .radio label::before, .App_Undertaker_Search .form-group .radio .App_Undertaker_Searchx label::before,
.App_Undertaker_Searchx .App_Undertaker_Search .form-group .checkbox label::before,
.App_Undertaker_Search .form-group .checkbox .App_Undertaker_Searchx label::before,
.App_Undertaker_Searchx .App_Undertaker_Search .package-option .radio label::before,
.App_Undertaker_Search .package-option .radio .App_Undertaker_Searchx label::before,
.App_Undertaker_Searchx .App_Undertaker_Search .package-option .checkbox label::before,
.App_Undertaker_Search .package-option .checkbox .App_Undertaker_Searchx label::before,
.App_Undertaker_Searchx .App_Undertaker_Search .addon-option .radio label::before,
.App_Undertaker_Search .addon-option .radio .App_Undertaker_Searchx label::before,
.App_Undertaker_Searchx .App_Undertaker_Search .addon-option .checkbox label::before,
.App_Undertaker_Search .addon-option .checkbox .App_Undertaker_Searchx label::before,
.App_Undertaker_Searchx .App_Undertaker_Search .undertaker-search-wrapper .radio label::before,
.App_Undertaker_Search .undertaker-search-wrapper .radio .App_Undertaker_Searchx label::before,
.App_Undertaker_Searchx .App_Undertaker_Search .undertaker-search-wrapper .checkbox label::before,
.App_Undertaker_Search .undertaker-search-wrapper .checkbox .App_Undertaker_Searchx label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #606060;
  background-color: #fff;
  -webkit-transition: border-color 0.2s, background-color 0.2s;
  transition: border-color 0.2s, background-color 0.2s;
}
.App_Undertaker_Searchx input[type=radio]:checked + label::before,
.App_Undertaker_Searchx input[type=checkbox]:checked + label::before {
  background-color: #153f95;
  border-color: #153f95;
}
.App_Undertaker_Searchx input[type=radio]:focus + label::before,
.App_Undertaker_Searchx input[type=checkbox]:focus + label::before {
  border-color: #153f95;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(21, 63, 149, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(21, 63, 149, 0.25);
}
.App_Undertaker_Searchx .radio label::before {
  border-radius: 50%;
}
.App_Undertaker_Searchx .checkbox label::before {
  border-radius: 0;
}
.App_Undertaker_Searchx input[type=radio]:checked + label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
}
.App_Undertaker_Searchx input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  left: 9px;
  top: calc(50% - 6px);
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg) translate(-50%, 0);
          transform: rotate(45deg) translate(-50%, 0);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.App_Undertaker_Searchx .radio label:hover::before,
.App_Undertaker_Searchx .checkbox label:hover::before {
  border-color: #153f95;
}
.App_Undertaker_Searchx .radio + .radio, .App_Undertaker_Searchx .checkbox + .checkbox {
  margin-top: 10px;
}
.App_Undertaker_Searchx .bestatterAdresse {
  margin-left: 30px;
  margin-bottom: 15px;
  font-size: 0.9em;
  color: #6c757d;
  line-height: 1.4;
}
.App_Undertaker_Searchx .col-md-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.App_Undertaker_Searchx .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
@media (max-width: 768px) {
  .App_Undertaker_Searchx .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

/* =================================================================================================== SLIDER ======= */
.slider-section {
  overflow: hidden;
}

.slider.slider_big .single-header .owl-item.active .header-img .caption-wrapper .carousel-caption, .slider.slider_big .amphi-slideshow .owl-item.active .header-img .caption-wrapper .carousel-caption, .slider.slider_big .amphi-no-slideshow .owl-item.active .header-img .caption-wrapper .carousel-caption, .slider.slider_small .single-header .owl-item.active .header-img .caption-wrapper .carousel-caption, .slider.slider_small .amphi-slideshow .owl-item.active .header-img .caption-wrapper .carousel-caption, .slider.slider_small .amphi-no-slideshow .owl-item.active .header-img .caption-wrapper .carousel-caption {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.slider.slider_big .single-header .single-header .header-img .caption-wrapper .carousel-caption, .slider.slider_big .amphi-slideshow .single-header .header-img .caption-wrapper .carousel-caption, .slider.slider_big .amphi-no-slideshow .single-header .header-img .caption-wrapper .carousel-caption, .slider.slider_small .single-header .single-header .header-img .caption-wrapper .carousel-caption, .slider.slider_small .amphi-slideshow .single-header .header-img .caption-wrapper .carousel-caption, .slider.slider_small .amphi-no-slideshow .single-header .header-img .caption-wrapper .carousel-caption {
  margin-bottom: 50px;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@media (max-width: 991px) {
  .slider.slider_big .single-header .single-header .header-img .caption-wrapper .carousel-caption, .slider.slider_big .amphi-slideshow .single-header .header-img .caption-wrapper .carousel-caption, .slider.slider_big .amphi-no-slideshow .single-header .header-img .caption-wrapper .carousel-caption, .slider.slider_small .single-header .single-header .header-img .caption-wrapper .carousel-caption, .slider.slider_small .amphi-slideshow .single-header .header-img .caption-wrapper .carousel-caption, .slider.slider_small .amphi-no-slideshow .single-header .header-img .caption-wrapper .carousel-caption {
    margin-bottom: 30px;
  }
}
.slider.slider_big .single-header .header-img, .slider.slider_big .amphi-slideshow .header-img, .slider.slider_big .amphi-no-slideshow .header-img, .slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .slider.slider_big .single-header .header-img, .slider.slider_big .amphi-slideshow .header-img, .slider.slider_big .amphi-no-slideshow .header-img, .slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
    display: block;
    margin: 0;
  }
}
.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, .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 {
  padding: 0;
  position: absolute;
}
@media (max-width: 767px) {
  .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, .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%;
    position: relative;
    display: block;
    margin: 0;
  }
}
.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, .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 {
  position: relative;
  max-width: 50%;
  background: #fff;
  padding: 25px;
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
  text-shadow: none;
  -webkit-transition: top 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: top 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: 400;
}
@media (max-width: 767px) {
  .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, .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 {
    max-width: 100%;
    position: relative;
    display: block;
    margin: 0 !important;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-animation-name: none !important;
            animation-name: none !important;
    background: #e9f4f8;
    padding: 20px 15px 10px 15px;
  }
}
.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, .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: 3.2rem;
  line-height: 0.925;
  text-wrap: balance;
  color: #153f95;
}
.slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .headline1 a, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline1 a, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline1 a, .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .headline1 a, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline1 a, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline1 a {
  color: #153f95;
}
@media (max-width: 1269px) {
  .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, .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: 2.2rem;
  }
}
@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, .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.8rem;
  }
}
.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, .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: 2.4rem;
  text-wrap: balance;
  color: #153f95;
}
.slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .headline2 a, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline2 a, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline2 a, .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .headline2 a, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline2 a, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline2 a {
  color: #153f95;
}
@media (max-width: 1269px) {
  .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, .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.8rem;
  }
}
@media (max-width: 767px) {
  .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, .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.6rem;
  }
}
.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, .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 {
  text-wrap: balance;
  color: #153f95;
}
.slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .text-wrapper a:not(.btn), .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .text-wrapper a:not(.btn), .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .text-wrapper a:not(.btn), .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .text-wrapper a:not(.btn), .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .text-wrapper a:not(.btn), .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .text-wrapper a:not(.btn) {
  color: #153f95;
}
.slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .btn, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .btn, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .btn, .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .btn, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .btn, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .btn {
  font-weight: 800;
}
.slider.slider_big .single-header .header-img:after, .slider.slider_big .amphi-slideshow .header-img:after, .slider.slider_big .amphi-no-slideshow .header-img:after, .slider.slider_small .single-header .header-img:after, .slider.slider_small .amphi-slideshow .header-img:after, .slider.slider_small .amphi-no-slideshow .header-img:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(25%, transparent), to(rgba(255, 255, 255, 0.8)));
  background: linear-gradient(270deg, transparent 25%, rgba(255, 255, 255, 0.8));
}
.slider.slider_big .slider-functions, .slider.slider_small .slider-functions {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .slider.slider_big .slider-functions, .slider.slider_small .slider-functions {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .slider.slider_big .slider-functions, .slider.slider_small .slider-functions {
    width: 860px;
  }
}
@media (min-width: 1062px) {
  .slider.slider_big .slider-functions, .slider.slider_small .slider-functions {
    width: 950px;
  }
}
@media (min-width: 1200px) {
  .slider.slider_big .slider-functions, .slider.slider_small .slider-functions {
    width: 1070px;
  }
}
@media (min-width: 1270px) {
  .slider.slider_big .slider-functions, .slider.slider_small .slider-functions {
    width: 1130px;
  }
}
@media (min-width: 1370px) {
  .slider.slider_big .slider-functions, .slider.slider_small .slider-functions {
    width: 1230px;
  }
}
@media (min-width: 1470px) {
  .slider.slider_big .slider-functions, .slider.slider_small .slider-functions {
    width: 1330px;
  }
}
@media (min-width: 1570px) {
  .slider.slider_big .slider-functions, .slider.slider_small .slider-functions {
    width: 1430px;
  }
}
.slider.slider_big .owl-nav, .slider.slider_small .owl-nav {
  display: block;
  top: auto;
  right: auto;
  bottom: 30px;
  left: 0;
  width: 80px;
  height: 35px;
  -webkit-transform: none;
          transform: none;
}
@media (max-width: 767px) {
  .slider.slider_big .owl-nav, .slider.slider_small .owl-nav {
    display: none;
  }
}
.slider.slider_big .owl-nav > div, .slider.slider_small .owl-nav > div {
  right: 0;
  left: auto;
  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;
  width: 34px;
  height: 34px;
  background: #153f95;
  border: 4px solid #153f95;
  border-radius: 0;
  opacity: 1;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.slider.slider_big .owl-nav > div .amphiicon, .slider.slider_small .owl-nav > div .amphiicon {
  font-size: 20px;
  color: #fff;
  padding: 0;
  -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);
}
.slider.slider_big .owl-nav > div:hover, .slider.slider_big .owl-nav > div:focus, .slider.slider_small .owl-nav > div:hover, .slider.slider_small .owl-nav > div:focus {
  background: #0f2c68;
  border: 4px solid #0f2c68;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.slider.slider_big .owl-nav > div:hover .amphiicon, .slider.slider_big .owl-nav > div:focus .amphiicon, .slider.slider_small .owl-nav > div:hover .amphiicon, .slider.slider_small .owl-nav > div:focus .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);
}
.slider.slider_big .owl-nav .owl-prev, .slider.slider_small .owl-nav .owl-prev {
  right: 46px !important;
}
.slider.slider_big .owl-nav .owl-prev .amphiicon, .slider.slider_small .owl-nav .owl-prev .amphiicon {
  position: relative;
  left: 0;
  top: 0;
}
.slider.slider_big .owl-nav .owl-next .amphiicon, .slider.slider_small .owl-nav .owl-next .amphiicon {
  position: relative;
  right: 0;
  top: 0;
}
.slider.slider_big .owl-dots-individual, .slider.slider_small .owl-dots-individual {
  position: absolute;
  bottom: 25px;
  left: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  line-height: 1;
  color: #153f95;
  padding: 0;
  z-index: 5;
  display: none !important;
}
.slider.slider_big .owl-dots-individual .owl-dots-active-number, .slider.slider_small .owl-dots-individual .owl-dots-active-number {
  font-size: 3rem;
  font-weight: 700;
}
.slider.slider_big .owl-dots-individual .owl-dots-numbers, .slider.slider_small .owl-dots-individual .owl-dots-numbers {
  font-size: 1.5rem;
}
.slider.slider_big .owl-dots-individual .owl-dots-numbers:before, .slider.slider_small .owl-dots-individual .owl-dots-numbers:before {
  content: "/";
  position: relative;
  top: -3px;
  margin: 0 5px;
}
.slider.slider_big .owl-dots, .slider.slider_small .owl-dots {
  display: none !important;
  bottom: 30px;
  left: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .slider.slider_big .owl-dots, .slider.slider_small .owl-dots {
    top: 10px;
    right: 15px;
    bottom: auto;
    left: 15px;
    width: calc(100% - 30px);
    text-align: right;
  }
}
.slider.slider_big .owl-dots .owl-dot, .slider.slider_small .owl-dots .owl-dot {
  border-radius: 0;
  background: none;
  color: #FFF;
  border: 2px solid #FFF;
  width: 30px;
  height: 30px;
  margin: 0 5px;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 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), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
@media (max-width: 991px) {
  .slider.slider_big .owl-dots .owl-dot, .slider.slider_small .owl-dots .owl-dot {
    margin-left: 5px;
  }
}
.slider.slider_big .owl-dots .owl-dot.active, .slider.slider_small .owl-dots .owl-dot.active {
  background: #eb7523;
  color: #fff;
  border: 2px solid #eb7523;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 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), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.slider.slider_big .owl-dots .owl-dot.active:hover, .slider.slider_big .owl-dots .owl-dot.active:focus, .slider.slider_small .owl-dots .owl-dot.active:hover, .slider.slider_small .owl-dots .owl-dot.active:focus {
  background: #c95d12;
  color: #fff;
  border: 2px solid #c95d12;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 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), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.slider.slider_big .owl-dots .owl-dot:hover, .slider.slider_big .owl-dots .owl-dot:focus, .slider.slider_small .owl-dots .owl-dot:hover, .slider.slider_small .owl-dots .owl-dot:focus {
  background: #eb7523;
  color: #fff;
  border: 2px solid #eb7523;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 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), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.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: 5rem;
}
@media (max-width: 1469px) {
  .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: 4.5rem;
  }
}
@media (max-width: 1269px) {
  .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: 4rem;
  }
}
@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: 4rem;
  }
}
@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: 2rem;
  }
}
@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.8rem;
  }
}
.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: 2rem;
}
@media (max-width: 1469px) {
  .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;
  }
}
@media (max-width: 991px) {
  .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.5rem;
  }
}
@media (max-width: 767px) {
  .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.5rem;
  }
}

/* =============================================================================================== BREADCRUMB ======= */
.slider-addon-bottom__breadcrumb {
  margin-bottom: 5px;
  padding: 20px 0 15px 0;
}
@media (max-width: 991px) {
  .slider-addon-bottom__breadcrumb {
    margin-bottom: 10px;
    padding: 12px 0 5px 0;
  }
}
@media (max-width: 767px) {
  .slider-addon-bottom__breadcrumb {
    margin-bottom: 0;
    padding: 10px 0;
    border-bottom: 1px solid #eaeaea;
  }
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon a {
  -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);
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon a:hover, .slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon a:focus {
  color: #0f2c68;
  opacity: 1;
  -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);
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li.active a {
  color: #153f95;
  pointer-events: none;
  text-decoration: none !important;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li a:hover, .slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li a:focus {
  color: #153f95;
  opacity: 1;
}
@media (max-width: 767px) {
  .slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_text {
    display: none;
  }
}

.Special_Jobs .benefit-list, .Special_Jobs_DetailsInformation .benefit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.Special_Jobs .benefit-list .benefit, .Special_Jobs_DetailsInformation .benefit-list .benefit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .Special_Jobs .benefit-list .benefit, .Special_Jobs_DetailsInformation .benefit-list .benefit {
    padding-bottom: 0;
  }
}
.Special_Jobs .benefit-list .benefit .module-content-block, .Special_Jobs_DetailsInformation .benefit-list .benefit .module-content-block {
  background: #FFF;
  padding: 25px;
  -webkit-box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
          box-shadow: 0 5px 10px rgba(25, 56, 119, 0.2);
  -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);
}
.Special_Jobs .benefit-list .benefit .module-content-block .thumbnail, .Special_Jobs_DetailsInformation .benefit-list .benefit .module-content-block .thumbnail {
  margin: -25px -25px 25px -25px;
}
.Special_Jobs .benefit-list .benefit .module-content-block:hover, .Special_Jobs_DetailsInformation .benefit-list .benefit .module-content-block:hover {
  -webkit-box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
          box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
  -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);
}
.Special_Jobs .benefit-list .benefit .module-content-block .thumbnail, .Special_Jobs_DetailsInformation .benefit-list .benefit .module-content-block .thumbnail {
  margin: 0 0 25px 0;
}

.content .content_content-background-inner .content_content-inner .Special_Club_Search .toggle-details {
  text-decoration: none;
}

.tab-container-wrapper {
  max-width: 750px;
  margin: -112px auto 40px auto;
  padding-left: 35px;
  z-index: 100;
  position: relative;
}
@media (max-width: 991px) {
  .tab-container-wrapper {
    margin: -30px auto 40px auto;
    padding-left: 0;
  }
}

.stylish-tab-container {
  background-color: #ffffff;
  border-radius: 0px;
  -webkit-box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
          box-shadow: 0 8px 25px rgba(25, 56, 119, 0.2);
  overflow: hidden;
  margin-top: 20px;
}

.stylish-tabs {
  border-bottom: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fefefe;
}
.stylish-tabs li {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  margin-bottom: 0;
  position: relative;
}
.stylish-tabs li a:not(.edit-mode-element) {
  margin-right: 0;
  border: none !important;
  border-radius: 0px;
  padding: 15px 15px;
  background-color: #153f95;
  -webkit-transition: color 0.4s ease, background-color 0.4s ease;
  transition: color 0.4s ease, background-color 0.4s ease;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  color: #fff;
}
.stylish-tabs li a:not(.edit-mode-element) .tab-subtitle {
  display: block;
  margin-top: 3px;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
  color: #fff;
  font-size: 1rem;
}
.stylish-tabs li a:not(.edit-mode-element):hover, .stylish-tabs li a:not(.edit-mode-element):focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #153f95;
  color: #e9f4f8;
  border: none !important;
  outline: none;
}
.stylish-tabs li a:not(.edit-mode-element):hover .tab-subtitle, .stylish-tabs li a:not(.edit-mode-element):focus .tab-subtitle {
  color: #e9f4f8;
}
.stylish-tabs li.blue-tab-toggle a:not(.edit-mode-element) {
  background-color: #153f95 !important;
  color: #fff !important;
}
.stylish-tabs li.blue-tab-toggle .tab-subtitle {
  color: rgba(255, 255, 255, 0.8) !important;
}
.stylish-tabs li.white-tab-toggle a:not(.edit-mode-element) {
  background-color: #fff !important;
  color: #153f95 !important;
}
.stylish-tabs li.white-tab-toggle a:not(.edit-mode-element) .tab-subtitle {
  color: rgba(21, 63, 149, 0.8) !important;
}
.stylish-tabs li.active a:not(.edit-mode-element) {
  position: relative;
}
.stylish-tabs li.active a:not(.edit-mode-element) .tab-subtitle {
  color: rgba(21, 63, 149, 0.8);
}

.stylish-tab-content {
  min-height: 280px;
  position: relative;
}
.stylish-tab-content .tab-pane {
  padding: 20px;
  background-color: #ffffff;
  color: #555;
  text-align: center;
}
.stylish-tab-content .tab-pane.blue-tab {
  background-color: #153f95;
  color: #fff;
}
.stylish-tab-content .tab-pane.blue-tab .tab-icon {
  color: #fff;
}
.stylish-tab-content .tab-pane.fade {
  opacity: 0;
  -webkit-transition: opacity 0.48s ease-in-out;
  transition: opacity 0.48s ease-in-out;
}
.stylish-tab-content .tab-pane.active.in {
  opacity: 1;
  -webkit-animation-name: fadeInUpSmooth;
          animation-name: fadeInUpSmooth;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
          animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
}
.stylish-tab-content .tab-pane .tab-icon {
  font-size: 48px;
  color: #153f95;
  margin-bottom: 10px;
  display: inline-block;
  opacity: 0;
  -webkit-transform: scale(0.3) translateY(-30px);
          transform: scale(0.3) translateY(-30px);
}
.stylish-tab-content .tab-pane .tab-icon.bounceIn-active {
  -webkit-animation: bounceIn 0.6s 0.2s forwards ease-out;
          animation: bounceIn 0.6s 0.2s forwards ease-out;
}

@-webkit-keyframes fadeInUpSmooth {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpSmooth {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3) translateY(-30px);
            transform: scale(0.3) translateY(-30px);
  }
  50% {
    opacity: 0.9;
    -webkit-transform: scale(1.1) translateY(0);
            transform: scale(1.1) translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(0.89) translateY(0);
            transform: scale(0.89) translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3) translateY(-30px);
            transform: scale(0.3) translateY(-30px);
  }
  50% {
    opacity: 0.9;
    -webkit-transform: scale(1.1) translateY(0);
            transform: scale(1.1) translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(0.89) translateY(0);
            transform: scale(0.89) translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
@media (max-width: 767px) {
  .main-title {
    font-size: 22px;
  }
  .stylish-tabs li a:not(.edit-mode-element) {
    padding: 18px 15px;
    font-size: 16px;
  }
  .stylish-tabs li a:not(.edit-mode-element) .tab-subtitle {
    font-size: 11px;
  }
  .stylish-tab-content {
    padding: 25px 20px;
    min-height: auto;
  }
  .stylish-tab-content .tab-icon {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .stylish-tab-content h3 {
    font-size: 20px;
  }
  .stylish-tab-content .contact-info {
    font-size: 24px;
  }
  .stylish-tab-content .lead-text,
  .stylish-tab-content .additional-info {
    font-size: 14px;
  }
  .stylish-tab-content .btn-chat {
    padding: 10px 20px;
    font-size: 15px;
  }
}
header .header-addon-top.header-addon-top__toolbar .adjust-icon a {
  background: transparent;
  color: #153f95;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  width: 40px;
  font-size: 16px;
  border: 2px solid transparent;
  border-radius: 0;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 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), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
header .header-addon-top.header-addon-top__toolbar .adjust-icon a:hover {
  background: transparent;
  color: #0f2c68;
  border-color: transparent;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 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), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
header .header-addon-top.header-addon-top__toolbar .adjust-icon.is-active a {
  background: transparent;
  color: #0f2c68;
  border-color: transparent;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 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), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
header .header-addon-top.header-addon-top__toolbar .adjust-icon.is-active a:hover {
  background: transparent;
  color: #153f95;
  border-color: transparent;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 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), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}

header .header-addon-top.header-addon-top__toolbar .font-size-changer {
  margin-left: 10px;
}
@media (max-width: 991px) {
  header .header-addon-top.header-addon-top__toolbar .font-size-changer {
    margin-right: 0;
  }
}
header .header-addon-top.header-addon-top__toolbar .font-size-changer .feature__accessibility__font-size-changer-wrapper button {
  font-weight: 900;
  background: none;
  color: #153f95;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  width: 30px;
  font-size: 14px;
  margin-left: 5px;
  border: 0;
  border-radius: 0;
  -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);
}
header .header-addon-top.header-addon-top__toolbar .font-size-changer .feature__accessibility__font-size-changer-wrapper button:first-child {
  margin-left: 0;
}
header .header-addon-top.header-addon-top__toolbar .font-size-changer .feature__accessibility__font-size-changer-wrapper button[disabled=disabled] {
  opacity: 0.25;
}
header .header-addon-top.header-addon-top__toolbar .font-size-changer .feature__accessibility__font-size-changer-wrapper button:hover {
  background: none;
  color: #0f2c68;
  -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);
}

/* =================================================================================== LEICHTE SPRACHE AUFRUF ======= */
header .header-addon-top.header-addon-top__toolbar .header-plain-language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 5px;
  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);
}
header .header-addon-top.header-addon-top__toolbar .header-plain-language .header-plain-language-text {
  font-weight: 400;
  text-transform: none;
  font-size: 14px;
  position: relative;
  font-family: "Fira Sans", sans-serif;
  top: 0;
}
header .header-addon-top.header-addon-top__toolbar .header-plain-language .header-plain-language-text > p {
  margin: 0;
}
header .header-addon-top.header-addon-top__toolbar .header-plain-language .header-plain-language-text > p > a {
  color: #153f95;
  padding-right: 10px;
  text-decoration: none;
}
header .header-addon-top.header-addon-top__toolbar .header-plain-language img, header .header-addon-top.header-addon-top__toolbar .header-plain-language svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 767px) {
  header .header-addon-top.header-addon-top__toolbar .header-plain-language img, header .header-addon-top.header-addon-top__toolbar .header-plain-language svg {
    width: 18px;
    height: 18px;
  }
}
header .header-addon-top.header-addon-top__toolbar .header-plain-language svg {
  fill: #153f95;
  -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);
  border-radius: 0;
}
header .header-addon-top.header-addon-top__toolbar .header-plain-language:hover {
  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);
}
header .header-addon-top.header-addon-top__toolbar .header-plain-language:hover svg {
  fill: #0f2c68;
  -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);
}

/* ========================================================================= TEMPLATE STYLING LEICHTE SPRACHE ======= */
html.template-leichte-sprache .text-wrapper {
  line-height: 2;
}
html.template-leichte-sprache header .header-addon-top.header-addon-top__toolbar .header-plain-language, html.template-leichte-sprache header .header-addon-top.header-addon-top__toolbar .search-toggle, html.template-leichte-sprache header .header-addon-top.header-addon-top__toolbar .offcanvas-toggle {
  display: none;
}

/* ========================================================================================= SEARCHBOX TOGGLE ======= */
@media (max-width: 767px) {
  header .header-addon-top.header-addon-top__toolbar .search-toggle {
    display: none !important;
  }
}
header .header-addon-top.header-addon-top__toolbar .search-toggle, header .header-addon-top.header__logo-left-nav-right .search-toggle, header .header.header-addon-top__toolbar .search-toggle, header .header.header__logo-left-nav-right .search-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
header .header-addon-top.header-addon-top__toolbar .search-toggle .amphiicon, header .header-addon-top.header__logo-left-nav-right .search-toggle .amphiicon, header .header.header-addon-top__toolbar .search-toggle .amphiicon, header .header.header__logo-left-nav-right .search-toggle .amphiicon {
  background: transparent;
  color: #153f95;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 34px;
  width: 34px;
  font-size: 16px;
  border: 2px solid transparent;
  border-radius: 50px;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 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), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
@media (max-width: 991px) {
  header .header-addon-top.header-addon-top__toolbar .search-toggle .amphiicon, header .header-addon-top.header__logo-left-nav-right .search-toggle .amphiicon, header .header.header-addon-top__toolbar .search-toggle .amphiicon, header .header.header__logo-left-nav-right .search-toggle .amphiicon {
    background: transparent;
    color: #153f95;
    border: 2px solid transparent;
    margin-left: 0;
  }
}
header .header-addon-top.header-addon-top__toolbar .search-toggle .amphiicon:hover, header .header-addon-top.header-addon-top__toolbar .search-toggle .amphiicon:focus, header .header-addon-top.header__logo-left-nav-right .search-toggle .amphiicon:hover, header .header-addon-top.header__logo-left-nav-right .search-toggle .amphiicon:focus, header .header.header-addon-top__toolbar .search-toggle .amphiicon:hover, header .header.header-addon-top__toolbar .search-toggle .amphiicon:focus, header .header.header__logo-left-nav-right .search-toggle .amphiicon:hover, header .header.header__logo-left-nav-right .search-toggle .amphiicon:focus {
  background: transparent;
  color: #0f2c68;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 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), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
@media (max-width: 991px) {
  header .header-addon-top.header-addon-top__toolbar .search-toggle .amphiicon:hover, header .header-addon-top.header-addon-top__toolbar .search-toggle .amphiicon:focus, header .header-addon-top.header__logo-left-nav-right .search-toggle .amphiicon:hover, header .header-addon-top.header__logo-left-nav-right .search-toggle .amphiicon:focus, header .header.header-addon-top__toolbar .search-toggle .amphiicon:hover, header .header.header-addon-top__toolbar .search-toggle .amphiicon:focus, header .header.header__logo-left-nav-right .search-toggle .amphiicon:hover, header .header.header__logo-left-nav-right .search-toggle .amphiicon:focus {
    background: transparent;
    color: #0f2c68;
    border: 2px solid transparent;
  }
}

/* ======================================================================================== SEARCHBOX OVERLAY ======= */
.active-search-overlay {
  overflow: hidden;
}

.searchbox-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  overflow: scroll;
  -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);
}
.searchbox-wrapper:before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #153f95;
  opacity: 0.985;
}
.searchbox-wrapper.active {
  opacity: 1;
  pointer-events: 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);
}
.searchbox-wrapper .searchbox-wrapper_inner {
  position: absolute;
  top: 15%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media (max-width: 767px) {
  .searchbox-wrapper .searchbox-wrapper_inner {
    top: 50%;
    width: 90%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media (max-width: 767px) {
  .searchbox-wrapper .searchbox-wrapper_inner .searchbox-content {
    display: none;
  }
}
.searchbox-wrapper .searchbox-closeIcon {
  font-size: 3rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
  cursor: pointer;
}
.searchbox-wrapper .form-group {
  margin-bottom: 0;
}
.searchbox-wrapper .form-group fieldset > .row {
  border-bottom: 5px solid #fff;
  margin: 0 0 60px 0;
}
.searchbox-wrapper .form-group .search-input {
  width: calc(100% - 80px);
  padding: 0;
}
.searchbox-wrapper .form-group .search-input input {
  height: 65px;
  font-size: 1.7rem;
  color: #fff;
  background: transparent;
  border: none;
  margin: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  padding-left: 0;
}
.searchbox-wrapper .form-group .search-input input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.searchbox-wrapper .form-group .search-input input::-webkit-input-placeholder {
  color: #fff;
}
.searchbox-wrapper .form-group .search-input input::-moz-placeholder {
  color: #fff;
}
.searchbox-wrapper .form-group .search-input input:-ms-input-placeholder {
  color: #fff;
}
.searchbox-wrapper .form-group .search-input input::-ms-input-placeholder {
  color: #fff;
}
.searchbox-wrapper .form-group .search-input input::placeholder {
  color: #fff;
}
.searchbox-wrapper .form-group .search-btn {
  width: 80px;
  padding: 0;
}
.searchbox-wrapper .form-group .search-btn .btn {
  height: 65px;
  font-size: 1.7rem;
  background: transparent;
  color: #fff;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -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);
}
.searchbox-wrapper .form-group .search-btn .btn:hover {
  color: #fff;
  opacity: 0.7;
  -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);
}
.searchbox-wrapper .searchbox-content a {
  text-decoration: none;
}
.searchbox-wrapper .searchbox-content a:not(.btn):hover {
  text-decoration: underline;
}

/* =================================================================================== HEADER SLIDEIN TOGGLER ======= */
header .header-addon-top.header-addon-top__toolbar {
  font-size: 16px;
  padding: 0;
  border-bottom: 0;
}
header .header-addon-top.header-addon-top__toolbar button.offcanvas-toggle {
  border: 0;
  background: none;
  border-left: 1px solid #f1f1f1;
}
header .header-addon-top.header-addon-top__toolbar .offcanvas-toggle, header .header-addon-top.header__logo-left-nav-right .offcanvas-toggle, header .header.header-addon-top__toolbar .offcanvas-toggle, header .header.header__logo-left-nav-right .offcanvas-toggle {
  margin-left: 15px !important;
  cursor: pointer;
  border-left: 1px solid #f1f1f1;
  padding-left: 15px;
}
@media (max-width: 991px) {
  header .header-addon-top.header-addon-top__toolbar .offcanvas-toggle, header .header-addon-top.header__logo-left-nav-right .offcanvas-toggle, header .header.header-addon-top__toolbar .offcanvas-toggle, header .header.header__logo-left-nav-right .offcanvas-toggle {
    border: 0;
  }
}
@media (max-width: 767px) {
  header .header-addon-top.header-addon-top__toolbar .offcanvas-toggle, header .header-addon-top.header__logo-left-nav-right .offcanvas-toggle, header .header.header-addon-top__toolbar .offcanvas-toggle, header .header.header__logo-left-nav-right .offcanvas-toggle {
    border: 0;
    padding-left: 0;
  }
}
header .header-addon-top.header-addon-top__toolbar .offcanvas-toggle .amphiicon, header .header-addon-top.header__logo-left-nav-right .offcanvas-toggle .amphiicon, header .header.header-addon-top__toolbar .offcanvas-toggle .amphiicon, header .header.header__logo-left-nav-right .offcanvas-toggle .amphiicon {
  background: transparent;
  color: #153f95;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  width: 40px;
  font-size: 16px;
  border: 2px solid transparent;
  border-radius: 50px;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 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), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
header .header-addon-top.header-addon-top__toolbar .offcanvas-toggle .amphiicon:hover, header .header-addon-top.header-addon-top__toolbar .offcanvas-toggle .amphiicon:focus, header .header-addon-top.header__logo-left-nav-right .offcanvas-toggle .amphiicon:hover, header .header-addon-top.header__logo-left-nav-right .offcanvas-toggle .amphiicon:focus, header .header.header-addon-top__toolbar .offcanvas-toggle .amphiicon:hover, header .header.header-addon-top__toolbar .offcanvas-toggle .amphiicon:focus, header .header.header__logo-left-nav-right .offcanvas-toggle .amphiicon:hover, header .header.header__logo-left-nav-right .offcanvas-toggle .amphiicon:focus {
  background: transparent;
  color: #0f2c68;
  border: 2px solid transparent;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 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), border 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
header .header-addon-top.header-addon-top__toolbar .offcanvas-toggle.is-active .amphiicon, header .header-addon-top.header__logo-left-nav-right .offcanvas-toggle.is-active .amphiicon, header .header.header-addon-top__toolbar .offcanvas-toggle.is-active .amphiicon, header .header.header__logo-left-nav-right .offcanvas-toggle.is-active .amphiicon {
  background: transparent;
  color: #0f2c68;
  border: 2px solid transparent;
}
/*# sourceMappingURL=maps/custom.css.map */
