.mobile_menu{position:fixed;z-index:100;display:none}.mobile_menu .inner{height:100%;background:#000;overflow-y:scroll}.mobile_menu.active.position_left{box-shadow:2px 0 5px 0 rgba(0,0,0,.5)}.mobile_menu.active.position_top{box-shadow:0 2px 5px 0 rgba(0,0,0,.5)}.mobile_menu.active.position_right{box-shadow:-2px 0 5px 0 rgba(0,0,0,.5)}.mobile_menu.active.position_bottom{box-shadow:0 -2px 5px 0 rgba(0,0,0,.5)}.mobile_menu.active.no_shadow{box-shadow:none!important}.mobile_menu_trigger{display:none}.mobile_menu_wrapper{position:relative;width:100%;overflow:hidden}.mobile_menu_overlay{position:fixed;top:0;left:0;width:100%;height:100vh;z-index:99}.mobile_menu_overlay.background{background:rgba(0,0,0,.5)}.mobile_menu li.submenu_hide>ul{display:none}.mobile_menu li.submenu_show>ul{display:block}body.ie8 .mobile_menu,body.ie8 .mobile_menu_trigger,body.ie9 .mobile_menu,body.ie9 .mobile_menu_trigger{display:none!important}
/**
 * CLICKPRESS CSS-Grid
 * @author: Stefan Schulz-Lauterbach
 *
 * thanks to Dinko Skopljak for co-working
 */
.justify-items-start {
  justify-items: start;
}

.justify-items-center {
  justify-items: center;
}

.justify-items-end {
  justify-items: end;
}

.justify-items-stretch {
  justify-items: stretch;
}

.content-start {
  align-content: start;
}

.content-center {
  align-content: center;
}

.content-end {
  align-content: end;
}

.items-start {
  align-items: start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: end;
}

.items-stretch {
  align-items: stretch;
}

.items-baseline {
  align-items: baseline;
}

[class*=grid_] {
  display: grid;
  grid-gap: 1rem;
}
[class*=grid_] > .block {
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .grid_mobile_100 {
    grid-template-columns: 1fr;
  }
  .grid_mobile_50_50 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid_mobile_33_33_33 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid_mobile_25_25_25_25 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid_mobile_75_25 {
    grid-template-columns: 3fr 1fr;
  }
  .grid_mobile_25_75 {
    grid-template-columns: 1fr 3fr;
  }
  .grid_mobile_66_33 {
    grid-template-columns: 2fr 1fr;
  }
  .grid_mobile_33_66 {
    grid-template-columns: 1fr 2fr;
  }
  .grid_mobile_60_40 {
    grid-template-columns: 3fr 2fr;
  }
  .grid_mobile_40_60 {
    grid-template-columns: 2fr 3fr;
  }
  .grid_mobile_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_mobile_25_50_25 {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .grid_mobile_25_25_50 {
    grid-template-columns: 1fr 1fr 2fr;
  }
  .grid_mobile_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_mobile_30_40_30 {
    grid-template-columns: 3fr 4fr 3fr;
  }
  .grid_mobile_30_30_40 {
    grid-template-columns: 3fr 3fr 4fr;
  }
  .gap_mobile_0 {
    grid-gap: 0;
  }
  .gap_mobile_1 {
    grid-gap: 1rem;
  }
  .gap_mobile_2 {
    grid-gap: 2rem;
  }
  .gap_mobile_3 {
    grid-gap: 3rem;
  }
  .gap_mobile_4 {
    grid-gap: 4rem;
  }
  .gap_mobile_5 {
    grid-gap: 5rem;
  }
  .gap_mobile_6 {
    grid-gap: 6rem;
  }
  .gap_mobile_7 {
    grid-gap: 7rem;
  }
  .gap_mobile_8 {
    grid-gap: 8rem;
  }
  .gap_mobile_9 {
    grid-gap: 9rem;
  }
  .gap_mobile_10 {
    grid-gap: 10rem;
  }
  .gap_mobile_11 {
    grid-gap: 11rem;
  }
  .gap_mobile_12 {
    grid-gap: 12rem;
  }
}
@media (min-width: 768px) {
  .grid_tablet_100 {
    grid-template-columns: 1fr;
  }
  .grid_tablet_50_50 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid_tablet_33_33_33 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid_tablet_25_25_25_25 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid_tablet_75_25 {
    grid-template-columns: 3fr 1fr;
  }
  .grid_tablet_25_75 {
    grid-template-columns: 1fr 3fr;
  }
  .grid_tablet_66_33 {
    grid-template-columns: 2fr 1fr;
  }
  .grid_tablet_33_66 {
    grid-template-columns: 1fr 2fr;
  }
  .grid_tablet_60_40 {
    grid-template-columns: 3fr 2fr;
  }
  .grid_tablet_40_60 {
    grid-template-columns: 2fr 3fr;
  }
  .grid_tablet_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_tablet_25_50_25 {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .grid_tablet_25_25_50 {
    grid-template-columns: 1fr 1fr 2fr;
  }
  .grid_tablet_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_tablet_30_40_30 {
    grid-template-columns: 3fr 4fr 3fr;
  }
  .grid_tablet_30_30_40 {
    grid-template-columns: 3fr 3fr 4fr;
  }
  .grid_tablet_20_40_40 {
    grid-template-columns: 1fr 2fr 2fr;
  }
  .grid_tablet_40_20_40 {
    grid-template-columns: 2fr 1fr 2fr;
  }
  .grid_tablet_40_40_20 {
    grid-template-columns: 2fr 2fr 1fr;
  }
  .gap_tablet_0 {
    grid-gap: 0;
  }
  .gap_tablet_1 {
    grid-gap: 1rem;
  }
  .gap_tablet_2 {
    grid-gap: 2rem;
  }
  .gap_tablet_3 {
    grid-gap: 3rem;
  }
  .gap_tablet_4 {
    grid-gap: 4rem;
  }
  .gap_tablet_5 {
    grid-gap: 5rem;
  }
  .gap_tablet_6 {
    grid-gap: 6rem;
  }
  .gap_tablet_7 {
    grid-gap: 7rem;
  }
  .gap_tablet_8 {
    grid-gap: 8rem;
  }
  .gap_tablet_9 {
    grid-gap: 9rem;
  }
  .gap_tablet_10 {
    grid-gap: 10rem;
  }
  .gap_tablet_11 {
    grid-gap: 11rem;
  }
  .gap_tablet_12 {
    grid-gap: 12rem;
  }
}
@media (min-width: 992px) {
  .grid_desktop_100 {
    grid-template-columns: 1fr;
  }
  .grid_desktop_50_50 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid_desktop_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_desktop_33_33_33 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid_desktop_75_25 {
    grid-template-columns: 3fr 1fr;
  }
  .grid_desktop_25_75 {
    grid-template-columns: 1fr 3fr;
  }
  .grid_desktop_66_33 {
    grid-template-columns: 2fr 1fr;
  }
  .grid_desktop_60_40 {
    grid-template-columns: 3fr 2fr;
  }
  .grid_desktop_40_60 {
    grid-template-columns: 2fr 3fr;
  }
  .grid_desktop_33_66 {
    grid-template-columns: 1fr 2fr;
  }
  .grid_desktop_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_desktop_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_desktop_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_desktop_25_50_25 {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .grid_desktop_25_25_50 {
    grid-template-columns: 1fr 1fr 2fr;
  }
  .grid_desktop_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_desktop_30_40_30 {
    grid-template-columns: 3fr 4fr 3fr;
  }
  .grid_desktop_30_30_40 {
    grid-template-columns: 3fr 3fr 4fr;
  }
  .grid_desktop_20_40_40 {
    grid-template-columns: 1fr 2fr 2fr;
  }
  .grid_desktop_40_20_40 {
    grid-template-columns: 2fr 1fr 2fr;
  }
  .grid_desktop_40_40_20 {
    grid-template-columns: 2fr 2fr 1fr;
  }
  .grid_desktop_25_25_25_25 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid_desktop_40_20_20_20 {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .grid_desktop_20_40_20_20 {
    grid-template-columns: 1fr 2fr 1fr 1fr;
  }
  .grid_desktop_20_20_40_20 {
    grid-template-columns: 1fr 1fr 2fr 1fr;
  }
  .grid_desktop_20_20_20_40 {
    grid-template-columns: 1fr 1fr 1fr 2fr;
  }
  .grid_desktop_20_20_20_20_20 {
    grid-template-columns: repeat(5, 1fr);
  }
  .gap_desktop_0 {
    grid-gap: 0;
  }
  .gap_desktop_1 {
    grid-gap: 1rem;
  }
  .gap_desktop_2 {
    grid-gap: 2rem;
  }
  .gap_desktop_3 {
    grid-gap: 3rem;
  }
  .gap_desktop_4 {
    grid-gap: 4rem;
  }
  .gap_desktop_5 {
    grid-gap: 5rem;
  }
  .gap_desktop_6 {
    grid-gap: 6rem;
  }
  .gap_desktop_7 {
    grid-gap: 7rem;
  }
  .gap_desktop_8 {
    grid-gap: 8rem;
  }
  .gap_desktop_9 {
    grid-gap: 9rem;
  }
  .gap_desktop_10 {
    grid-gap: 10rem;
  }
  .gap_desktop_11 {
    grid-gap: 11rem;
  }
  .gap_desktop_12 {
    grid-gap: 12rem;
  }
}

/*# sourceMappingURL=clickpress-grid.css.map */

@charset "UTF-8";
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/* lato-regular - latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/files/theme/fonts/lato-v16-latin-regular.eot"); /* IE9 Compat Modes */
  src: local("Lato Regular"), local("Lato-Regular"), url("/files/theme/fonts/lato-v16-latin-regular.eot?#iefix") format("embedded-opentype"), url("/files/theme/fonts/lato-v16-latin-regular.woff2") format("woff2"), url("/files/theme/fonts/lato-v16-latin-regular.woff") format("woff"), url("/files/theme/fonts/lato-v16-latin-regular.ttf") format("truetype"), url("/files/theme/fonts/lato-v16-latin-regular.svg#Lato") format("svg"); /* Legacy iOS */
}
/* lato-italic - latin */
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/files/theme/fonts/lato-v16-latin-italic.eot"); /* IE9 Compat Modes */
  src: local("Lato Italic"), local("Lato-Italic"), url("/files/theme/fonts/lato-v16-latin-italic.eot?#iefix") format("embedded-opentype"), url("/files/theme/fonts/lato-v16-latin-italic.woff2") format("woff2"), url("/files/theme/fonts/lato-v16-latin-italic.woff") format("woff"), url("/files/theme/fonts/lato-v16-latin-italic.ttf") format("truetype"), url("/files/theme/fonts/lato-v16-latin-italic.svg#Lato") format("svg"); /* Legacy iOS */
}
/* lato-700 - latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/files/theme/fonts/lato-v16-latin-700.eot"); /* IE9 Compat Modes */
  src: local("Lato Bold"), local("Lato-Bold"), url("/files/theme/fonts/lato-v16-latin-700.eot?#iefix") format("embedded-opentype"), url("/files/theme/fonts/lato-v16-latin-700.woff2") format("woff2"), url("/files/theme/fonts/lato-v16-latin-700.woff") format("woff"), url("/files/theme/fonts/lato-v16-latin-700.ttf") format("truetype"), url("/files/theme/fonts/lato-v16-latin-700.svg#Lato") format("svg"); /* Legacy iOS */
}
/* oswald-300 - latin */
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/files/theme/fonts/oswald-v31-latin-300.eot"); /* IE9 Compat Modes */
  src: local(""), url("/files/theme/fonts/oswald-v31-latin-300.eot?#iefix") format("embedded-opentype"), url("/files/theme/fonts/oswald-v31-latin-300.woff2") format("woff2"), url("/files/theme/fonts/oswald-v31-latin-300.woff") format("woff"), url("/files/theme/fonts/oswald-v31-latin-300.ttf") format("truetype"), url("/files/theme/fonts/oswald-v31-latin-300.svg#Oswald") format("svg"); /* Legacy iOS */
}
/* dosis-regular - latin */
@font-face {
  font-family: "Dosis";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/files/theme//fonts/dosis-v17-latin-regular.eot"); /* IE9 Compat Modes */
  src: local(""), url("/files/theme//fonts/dosis-v17-latin-regular.eot?#iefix") format("embedded-opentype"), url("/files/theme//fonts/dosis-v17-latin-regular.woff2") format("woff2"), url("/files/theme//fonts/dosis-v17-latin-regular.woff") format("woff"), url("/files/theme//fonts/dosis-v17-latin-regular.ttf") format("truetype"), url("/files/theme//fonts/dosis-v17-latin-regular.svg#Dosis") format("svg"); /* Legacy iOS */
}
/* dosis-600 - latin */
@font-face {
  font-family: "Dosis";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/files/theme//fonts/dosis-v17-latin-600.eot"); /* IE9 Compat Modes */
  src: local(""), url("/files/theme//fonts/dosis-v17-latin-600.eot?#iefix") format("embedded-opentype"), url("/files/theme//fonts/dosis-v17-latin-600.woff2") format("woff2"), url("/files/theme//fonts/dosis-v17-latin-600.woff") format("woff"), url("/files/theme//fonts/dosis-v17-latin-600.ttf") format("truetype"), url("/files/theme//fonts/dosis-v17-latin-600.svg#Dosis") format("svg"); /* Legacy iOS */
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.invisible, .ce_form .widget-radio .radio_container > span input, .ce_form .widget-checkbox .checkbox_container > span input {
  border: 0 none;
  clip: rect(0px, 0px, 0px, 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.invisibleAccessible,
.sr-only,
#btn-mobilemenu span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*Make Contao Elements visble at all*/
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* normalize.css v8.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 iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 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 */
}

/**
 * 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
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 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 */
}

/**
 * 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 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
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 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;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 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.35em 0.75em 0.625em;
}

/**
 * 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 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
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 in Chrome and Safari on macOS.
 */
[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 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

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

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "“" "”" "‘" "’";
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/******************************************************************
CUSTOMIZED RESET VALUES
I added these extra styles as a more personalized reset. Feel free
to remove them if you like or add your own. If you want to update
the normalize styles, make sure to edit from this point up.
******************************************************************/
b, strong, .strong {
  font-weight: bold;
}

em, .em {
  font-style: italic;
}

small {
  font-size: 75%;
}

dd {
  margin: 0;
}

html {
  font-size: 100%;
  font-family: "Lato", "Tahoma", "Verdana", sans-serif;
}
@media screen and (min-width: 48em) {
  html {
    font-size: 112.5%;
  }
}

html, body {
  font-family: "Lato", "Tahoma", "Verdana", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #565656;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

p {
  font-size: 1.1em;
  color: #565656;
  margin: 0 0 0.75em 0;
}
p:only-child {
  margin: 0;
}

::-moz-selection {
  background: #95999D;
  color: #fff;
  text-shadow: none;
}

::-moz-selection,
::selection {
  background: #95999D;
  color: #fff;
  text-shadow: none;
}

html {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.top-0 {
  margin-top: 0 !important;
}

.top-s {
  margin-top: 0.5rem !important;
}

.top-m {
  margin-top: 1rem !important;
}

.top-l {
  margin-top: 3rem !important;
}

.top-xl {
  margin-top: 5rem !important;
}

.top-xxl {
  margin-top: 8rem !important;
}

.bottom-0 {
  margin-bottom: 0 !important;
}

.bottom-s {
  margin-bottom: 0.5rem !important;
}

.bottom-m {
  margin-bottom: 1rem !important;
}

.bottom-l {
  margin-bottom: 3rem !important;
}

.bottom-xl {
  margin-bottom: 5rem !important;
}

.bottom-xxl {
  margin-bottom: 8rem !important;
}

.ptop-0 {
  padding-top: 0 !important;
}

.ptop-s {
  padding-top: 0.5rem !important;
}

.ptop-m, .mod_faqreader .info {
  padding-top: 1rem !important;
}

.ptop-l {
  padding-top: 3rem !important;
}

.ptop-xl {
  padding-top: 5rem !important;
}

.ptop-xxl {
  padding-top: 8rem !important;
}

.pbottom-0 {
  padding-bottom: 0 !important;
}

.pbottom-s {
  padding-bottom: 0.5rem !important;
}

.pbottom-m {
  padding-bottom: 1rem !important;
}

.pbottom-l {
  padding-bottom: 3rem !important;
}

.pbottom-xl {
  padding-bottom: 5rem !important;
}

.pbottom-xxl {
  padding-bottom: 8rem !important;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: none;
  color: inherit;
}

h1, .h1 {
  font-family: "Dosis", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #565656;
  margin: 0 0 0.5em 0;
  font-size: 1.75rem;
}
@media screen and (min-width: 48em) {
  h1, .h1 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 75em) {
  h1, .h1 {
    font-size: 2.4rem;
  }
}

h2, .h2 {
  font-family: "Dosis", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #565656;
  margin: 0.75em 0 0.5em 0;
  font-size: 1.5rem;
}
@media screen and (min-width: 48em) {
  h2, .h2 {
    font-size: 1.5555556rem;
  }
}
@media screen and (min-width: 75em) {
  h2, .h2 {
    font-size: 1.8rem;
  }
}

h3, .h3 {
  font-family: "Dosis", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #565656;
  margin: 0.75em 0 0.5em 0;
  font-size: 1.25rem;
}
@media screen and (min-width: 48em) {
  h3, .h3 {
    font-size: 1.3333333rem;
  }
}
@media screen and (min-width: 75em) {
  h3, .h3 {
    font-size: 1.5rem;
  }
}

h4, .h4 {
  font-family: "Dosis", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #565656;
  margin: 0.75em 0 0.5em 0;
  font-size: 1.125rem;
}
@media screen and (min-width: 48em) {
  h4, .h4 {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 75em) {
  h4, .h4 {
    font-size: 1.35rem;
  }
}

h5, .h5 {
  font-family: "Dosis", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #565656;
  margin: 0.75em 0 0.5em 0;
  font-size: 1rem;
}
@media screen and (min-width: 75em) {
  h5, .h5 {
    font-size: 1.1rem;
  }
}

h6, .h6 {
  font-family: "Dosis", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #565656;
  margin: 0.75em 0 0.5em 0;
  font-size: 1rem;
}

img, picture {
  max-width: 100%;
  height: auto;
  line-height: 0;
}

figure {
  line-height: 0;
  margin: 0;
}

figcaption {
  line-height: 1.2;
}

/*Fix für Caption auf Bildbreite beschränken*/
figure {
  display: table;
}

figure img {
  display: block;
  width: 100%;
}

figcaption {
  display: table-caption;
  caption-side: bottom;
}

/*Alle Bilder ohne Alt-Attribut kennzeichen*/
/*sollte für Production auskommentiert werden!*/
img:not([alt]) {
  border: 5px dashed #c00;
}

a {
  color: #BCCF00;
  text-decoration: underline;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
main a:hover, main a:focus {
  color: #fff;
  background-color: #BCCF00;
}

:focus {
  outline: 1px dashed #565656;
}

a[href^=tel] {
  text-decoration: none;
  color: #565656;
}

main ul li, main ol li {
  font-size: 1.1rem;
  color: #565656;
  margin-bottom: 0.5em;
}
main ul li::marker, main ol li::marker {
  color: #C7007F;
  font-weight: bold;
}

main ul {
  list-style-type: disc;
}

main ol {
  list-style-type: decimal;
}

html {
  background-color: #fff;
}

body {
  max-width: 1920px;
  margin: 0 auto;
  background-color: #fff;
}
@media screen and (min-width: 120em) {
  body {
    border-left: 1px solid #E5E5E6;
    border-right: 1px solid #E5E5E6;
  }
}

.wrap, .mod_article .wrap-article, #footer .inside, #header .inside, .wrap-article {
  max-width: 1440px;
  margin: 0 auto;
}

.wrap-mid, .mod_article .wrap-article-1200 {
  max-width: 1200px;
  margin: 0 auto;
}

.wrap-narrow, .mod_article .wrap-article-900 {
  max-width: 900px;
  margin: 0 auto;
}

.wrap-article {
  padding: 0 1rem 0 1rem;
}
@media screen and (min-width: 92em) {
  .wrap-article {
    padding: 0;
  }
}

.container {
  background-color: #fff;
  position: relative;
  margin-top: 7rem;
}

/*
.inside {

} */
#header {
  background: #fff;
  color: #565656;
  padding: 0 1rem;
  z-index: 10;
  position: fixed;
  width: 100%;
  max-width: 1920px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border-bottom: 1rem solid #C7007F;
}
#header.fixed-active {
  height: auto;
  border-bottom: 0.25rem solid #C7007F;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
#header.fixed-active .inside {
  padding: 0.25rem 0;
}
#header.fixed-active .cta-block {
  opacity: 0;
  visibility: hidden;
}
#header.fixed-active .logo {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 48em) {
  #header {
    padding: 0.5rem 1rem;
  }
}
@media screen and (min-width: 120em) {
  #header {
    border-left: 1px solid #E5E5E6;
    border-right: 1px solid #E5E5E6;
  }
}
#header .inside {
  padding: 1rem 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media screen and (min-width: 48em) {
  #header .inside {
    padding: 3rem 0 0 0;
  }
}
#header .logo {
  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;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 140px;
          flex: 0 0 140px;
  max-width: 140px;
}
@media screen and (min-width: 48em) {
  #header .logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
    max-width: 200px;
    -webkit-transform: translateY(-1.25rem);
            transform: translateY(-1.25rem);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  #header .logo svg {
    width: 200px;
    height: 53px;
  }
}
#header .logo [class^=logo__] {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#header .logo svg:hover .logo__dotaussen--pink {
  fill: #BCCF00;
}
#header .cta-block {
  display: none;
}
@media screen and (min-width: 48em) {
  #header .cta-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    right: 1rem;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
  }
}

#footer {
  background: #565656;
  color: #F2F2F3;
  padding: 1rem;
}
@media screen and (min-width: 48em) {
  #footer {
    padding: 2.5rem 1rem;
  }
}
@media screen and (min-width: 75em) {
  #footer {
    padding: 4rem 1rem;
  }
}
#footer .inside {
  padding: 0 1rem;
}
@media screen and (min-width: 90em) {
  #footer .inside {
    padding: 0;
  }
}
#footer p,
#footer .h4 {
  color: #F2F2F3;
}
#footer a {
  color: #F2F2F3;
  text-decoration: underline;
}
#footer a:hover, #footer a:focus {
  color: #BCCF00;
  text-decoration: underline;
}
#footer .mod_customnav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#footer .mod_customnav ul a {
  padding: 0.25em 0;
  display: block;
}
#footer .mod_customnav.footerbottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#footer .mod_customnav.footerbottom ul a {
  padding: 0.25em 0.5em;
  display: block;
}
#footer .footercontainer.bottom {
  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;
  padding-top: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 53.125em) {
  #footer .footercontainer.bottom {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.mod_article {
  padding: 2rem 0;
  position: relative;
}
@media screen and (min-width: 56.25em) {
  .mod_article {
    padding: 4rem 0;
  }
}
.mod_article.bg-grau-100 {
  background-color: #F2F2F3;
}
.mod_article.bg-grau-400 {
  background-color: #BDBFC2;
}
.mod_article.bg-grau {
  background-color: #565656;
}
.mod_article.bg-green {
  background-color: #BCCF00;
}
.mod_article.bg-green-100 {
  background-color: #F8FAEB;
}
.mod_article.bg-green-800 {
  background-color: #86AB0E;
  background: linear-gradient(135deg, rgb(134, 171, 14) 0%, rgb(110, 140, 12) 100%);
}
.mod_article.bg-pink {
  background-color: #C7007F;
}
.mod_article.bg-pink-100 {
  background-color: #FFE5F6;
}
.mod_article.bg-pink-800 {
  background-color: #700048;
}
.mod_article.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
@media screen and (min-width: 120em) {
  .mod_article.full-width {
    width: 1920px;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -960px;
    margin-right: -960px;
  }
}
.mod_article.full-content .wrap-article {
  max-width: initial;
  padding: 0;
}
.mod_article.narrow-width {
  max-width: 900px;
  margin: 0 auto;
}
.mod_article.mid-width {
  max-width: 1200px;
  margin: 0 auto;
}
.mod_article .wrap-article {
  padding: 0 1rem;
}
@media screen and (min-width: 91.5em) {
  .mod_article .wrap-article {
    padding: 0;
  }
}
.mod_article .wrap-article-900 {
  padding: 0 1rem;
}
@media screen and (min-width: 91.5em) {
  .mod_article .wrap-article-900 {
    padding: 0;
  }
}
.mod_article .wrap-article-1200 {
  padding: 0 1rem;
}
@media screen and (min-width: 91.5em) {
  .mod_article .wrap-article-1200 {
    padding: 0;
  }
}
.mod_article.bg-active {
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 0;
}
@media screen and (min-width: 48em) {
  .mod_article.bg-active {
    -ms-grid-columns: 1fr 0 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.mod_article.bg-active .wrap-article {
  padding: 3vw;
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.mod_article.hasbg {
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 58.75em) {
  .mod_article.hasbg {
    min-height: 400px;
    background-size: auto 100%;
  }
}
@media screen and (min-width: 75em) {
  .mod_article.hasbg {
    min-height: 500px;
    background-size: cover;
  }
}
.mod_article.wasserzeichen-rechts::after {
  content: "";
  background-image: url("/files/theme/img/neove-bildmarke-weiss.svg");
  opacity: 0.1;
  position: absolute;
  bottom: -50px;
  right: -50px;
  z-index: 1;
  width: 500px;
  height: 500px;
  -webkit-filter: blur(6px);
          filter: blur(6px);
  -webkit-animation: pulsierendes-wasserzeichen 4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
          animation: pulsierendes-wasserzeichen 4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.mod_article.wasserzeichen-links::after {
  content: "";
  background-image: url("/files/theme/img/neove-bildmarke-weiss.svg");
  opacity: 0.1;
  position: absolute;
  bottom: -50px;
  left: -50px;
  z-index: 1;
  width: 500px;
  height: 500px;
  -webkit-filter: blur(6px);
          filter: blur(6px);
  -webkit-animation: pulsierendes-wasserzeichen 4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
          animation: pulsierendes-wasserzeichen 4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.mod_article.article-search {
  padding: 3rem 0 0 0;
}
.mod_article.article-search ~ .mod_article {
  padding-top: 2rem;
}

@-webkit-keyframes pulsierendes-wasserzeichen {
  0% {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.09;
  }
  100% {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  }
}

@keyframes pulsierendes-wasserzeichen {
  0% {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.09;
  }
  100% {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  }
}
#berge {
  position: relative;
  overflow: hidden;
}
#berge .wrap-article {
  position: relative;
  z-index: 3;
}
#berge::before, #berge::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -510px;
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
}
#berge::before {
  z-index: 2;
  background-image: url("/files/theme/img/vordere-berge.svg");
  -webkit-transition: bottom 0.9s cubic-bezier(1, 0, 0.62, 1.5);
  transition: bottom 0.9s cubic-bezier(1, 0, 0.62, 1.5);
}
#berge::after {
  z-index: 1;
  background-image: url("/files/theme/img/hintere-berge.svg");
  -webkit-transition: bottom 0.75s cubic-bezier(1, 0, 0.62, 1.5);
  transition: bottom 0.75s cubic-bezier(1, 0, 0.62, 1.5);
}
#berge.berge-sichtbar::before, #berge.berge-sichtbar::after {
  bottom: -100px;
}

@media screen and (min-width: 58.75em) {
  #hero {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("/files/assets/hero/neove-digitale-eigentümerversammlung-bequem-von-zu-hause-aus_340093401_1920x600.jpg");
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), url("/files/assets/hero/neove-digitale-eigentümerversammlung-bequem-von-zu-hause-aus_340093401_1920x600.jpg");
    background-position: right center;
  }
}
@media screen and (min-width: 58.75em) and (min-width: 75em) {
  #hero {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.4))), url("/files/assets/hero/neove-digitale-eigentümerversammlung-bequem-von-zu-hause-aus_340093401_1920x600.jpg");
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%), url("/files/assets/hero/neove-digitale-eigentümerversammlung-bequem-von-zu-hause-aus_340093401_1920x600.jpg");
    background-position: right -8rem center;
  }
}
@media screen and (min-width: 58.75em) and (min-width: 92.5em) {
  #hero {
    background-image: url("/files/assets/hero/neove-digitale-eigentümerversammlung-bequem-von-zu-hause-aus_340093401_1920x600.jpg");
  }
}
@media screen and (min-width: 58.75em) {
  #botschaft-loesung {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(130, 143, 0, 0.5)), to(rgba(130, 143, 0, 0.5))), url("/files/assets/bilder/Banner-NEOVE-SaaS-gruen_333523167-1920x500.jpg");
    background-image: linear-gradient(90deg, rgba(130, 143, 0, 0.5) 0%, rgba(130, 143, 0, 0.5) 100%), url("/files/assets/bilder/Banner-NEOVE-SaaS-gruen_333523167-1920x500.jpg");
    background-position: left center;
  }
}
@media screen and (min-width: 58.75em) and (min-width: 75em) {
  #botschaft-loesung {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(130, 143, 0, 0.8)), to(rgba(130, 143, 0, 0.2))), url("/files/assets/bilder/Banner-NEOVE-SaaS-gruen_333523167-1920x500.jpg");
    background-image: linear-gradient(90deg, rgba(130, 143, 0, 0.8) 0%, rgba(130, 143, 0, 0.2) 100%), url("/files/assets/bilder/Banner-NEOVE-SaaS-gruen_333523167-1920x500.jpg");
  }
}
@media screen and (min-width: 58.75em) and (min-width: 92.5em) {
  #botschaft-loesung {
    background-image: url("/files/assets/bilder/Banner-NEOVE-SaaS-gruen_333523167-1920x500.jpg");
  }
}
@media screen and (min-width: 58.75em) {
  #botschaft-digitalisierung {
    background-image: url("/files/assets/bilder/Banner-NEOVE-Haus-kalkulation-314606651-1920x500.jpg");
    background-position: right center;
  }
  #rechtssicherheit {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("/files/assets/bilder/rechtssicherheit_342329612-1920x700.jpg");
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), url("/files/assets/bilder/rechtssicherheit_342329612-1920x700.jpg");
    background-position: left center;
    min-height: 500px;
  }
}
@media screen and (min-width: 58.75em) and (min-width: 90em) {
  #rechtssicherheit {
    background-image: url("/files/assets/bilder/rechtssicherheit_342329612-1920x700.jpg");
  }
}
@media screen and (min-width: 58.75em) {
  #casavi-partner {
    background-image: url("/files/assets/bilder/banner_casavi_web.jpg");
    background-position: right center;
  }
}
/* grid.css basiert auf euf_grid.css https://github.com/ErdmannFreunde/euf_grid */
@supports (grid-area: auto) {
  html {
    --grid__columns: 12;
    --grid__gutter: 2.5rem;
  }
  @media screen and (min-width: 34.375em) {
    .row {
      display: grid;
      grid-template-columns: repeat(var(--grid__columns), 1fr);
      grid-gap: var(--grid__gutter);
      grid-auto-columns: 1fr;
    }
  }
  .row--show {
    position: relative;
    background: #f9f9f9;
    z-index: 0;
    padding-top: 0.9375rem;
  }
  .row--show:before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    background: repeating-linear-gradient(to right, #f0f0f0 0%, #f0f0f0 calc((100% - 20.625rem) / 12), #f9f9f9 calc((100% - 20.625rem) / 12), #f9f9f9 calc((100% - 20.625rem) / 12 + 1.875rem));
  }
  .ce_columns {
    max-width: 100%;
  }
  /* ----- */
  .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    grid-column: 1/-1;
  }
  .row-span-xs-1, .row-span-xs-2, .row-span-xs-3, .row-span-xs-4, .row-span-xs-5, .row-span-xs-6, .row-span-xs-7, .row-span-xs-8, .row-span-xs-9, .row-span-xs-10, .row-span-xs-11, .row-span-xs-12, .row-span-sm-1, .row-span-sm-2, .row-span-sm-3, .row-span-sm-4, .row-span-sm-5, .row-span-sm-6, .row-span-sm-7, .row-span-sm-8, .row-span-sm-9, .row-span-sm-10, .row-span-sm-11, .row-span-sm-12, .row-span-md-1, .row-span-md-2, .row-span-md-3, .row-span-md-4, .row-span-md-5, .row-span-md-6, .row-span-md-7, .row-span-md-8, .row-span-md-9, .row-span-md-10, .row-span-md-11, .row-span-md-12, .row-span-lg-1, .row-span-lg-2, .row-span-lg-3, .row-span-lg-4, .row-span-lg-5, .row-span-lg-6, .row-span-lg-7, .row-span-lg-8, .row-span-lg-9, .row-span-lg-10, .row-span-lg-11, .row-span-lg-12, .row-span-xl-1, .row-span-xl-2, .row-span-xl-3, .row-span-xl-4, .row-span-xl-5, .row-span-xl-6, .row-span-xl-7, .row-span-xl-8, .row-span-xl-9, .row-span-xl-10, .row-span-xl-11, .row-span-xl-12 {
    grid-row: 1;
  }
  .justify-start {
    justify-self: start;
  }
  .justify-center {
    justify-self: center;
  }
  .justify-end {
    justify-self: end;
  }
  .justify-stretch {
    justify-self: stretch;
  }
  .align-start {
    -ms-flex-item-align: start;
        align-self: start;
  }
  .align-center {
    -ms-flex-item-align: center;
        align-self: center;
  }
  .align-end {
    -ms-flex-item-align: end;
        align-self: end;
  }
  .align-stretch {
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
  .col-1 {
    grid-column: span 1/span 1;
  }
  .col-2 {
    grid-column: span 2/span 2;
  }
  .col-3 {
    grid-column: span 3/span 3;
  }
  .col-4 {
    grid-column: span 4/span 4;
  }
  .col-5 {
    grid-column: span 5/span 5;
  }
  .col-6 {
    grid-column: span 6/span 6;
  }
  .col-7 {
    grid-column: span 7/span 7;
  }
  .col-8 {
    grid-column: span 8/span 8;
  }
  .col-9 {
    grid-column: span 9/span 9;
  }
  .col-10 {
    grid-column: span 10/span 10;
  }
  .col-11 {
    grid-column: span 11/span 11;
  }
  .col-12 {
    grid-column: span 12/span 12;
  }
  @media screen and (min-width: 0) {
    .col-xs-1 {
      grid-column: span 1/span 1;
    }
    .col-xs-2 {
      grid-column: span 2/span 2;
    }
    .col-xs-3 {
      grid-column: span 3/span 3;
    }
    .col-xs-4 {
      grid-column: span 4/span 4;
    }
    .col-xs-5 {
      grid-column: span 5/span 5;
    }
    .col-xs-6 {
      grid-column: span 6/span 6;
    }
    .col-xs-7 {
      grid-column: span 7/span 7;
    }
    .col-xs-8 {
      grid-column: span 8/span 8;
    }
    .col-xs-9 {
      grid-column: span 9/span 9;
    }
    .col-xs-10 {
      grid-column: span 10/span 10;
    }
    .col-xs-11 {
      grid-column: span 11/span 11;
    }
    .col-xs-12 {
      grid-column: span 12/span 12;
    }
  }
  @media screen and (min-width: 0) {
    .col-start-xs-1 {
      grid-column-start: 1;
    }
    .row-start-xs-1 {
      grid-row-start: 1;
    }
    .col-start-xs-2 {
      grid-column-start: 2;
    }
    .row-start-xs-2 {
      grid-row-start: 2;
    }
    .col-start-xs-3 {
      grid-column-start: 3;
    }
    .row-start-xs-3 {
      grid-row-start: 3;
    }
    .col-start-xs-4 {
      grid-column-start: 4;
    }
    .row-start-xs-4 {
      grid-row-start: 4;
    }
    .col-start-xs-5 {
      grid-column-start: 5;
    }
    .row-start-xs-5 {
      grid-row-start: 5;
    }
    .col-start-xs-6 {
      grid-column-start: 6;
    }
    .row-start-xs-6 {
      grid-row-start: 6;
    }
    .col-start-xs-7 {
      grid-column-start: 7;
    }
    .row-start-xs-7 {
      grid-row-start: 7;
    }
    .col-start-xs-8 {
      grid-column-start: 8;
    }
    .row-start-xs-8 {
      grid-row-start: 8;
    }
    .col-start-xs-9 {
      grid-column-start: 9;
    }
    .row-start-xs-9 {
      grid-row-start: 9;
    }
    .col-start-xs-10 {
      grid-column-start: 10;
    }
    .row-start-xs-10 {
      grid-row-start: 10;
    }
    .col-start-xs-11 {
      grid-column-start: 11;
    }
    .row-start-xs-11 {
      grid-row-start: 11;
    }
    .col-start-xs-12 {
      grid-column-start: 12;
    }
    .row-start-xs-12 {
      grid-row-start: 12;
    }
  }
  @media screen and (min-width: 0) {
    .pull-right-xs {
      grid-column-end: -1;
    }
    .pull-left-xs {
      grid-row-start: 1;
      grid-column-end: inherit;
    }
  }
  @media screen and (min-width: 0) {
    .justify-xs-start {
      justify-self: start;
    }
    .justify-xs-center {
      justify-self: center;
    }
    .justify-xs-end {
      justify-self: end;
    }
    .justify-xs-stretch {
      justify-self: stretch;
    }
    .align-xs-start {
      -ms-flex-item-align: start;
          align-self: start;
    }
    .align-xs-center {
      -ms-flex-item-align: center;
          align-self: center;
    }
    .align-xs-end {
      -ms-flex-item-align: end;
          align-self: end;
    }
    .align-xs-stretch {
      -ms-flex-item-align: stretch;
          align-self: stretch;
    }
  }
  @media screen and (min-width: 0) {
    .row-span-xs-1 {
      grid-row: span 1/span 1;
    }
    .row-span-xs-2 {
      grid-row: span 2/span 2;
    }
    .row-span-xs-3 {
      grid-row: span 3/span 3;
    }
    .row-span-xs-4 {
      grid-row: span 4/span 4;
    }
    .row-span-xs-5 {
      grid-row: span 5/span 5;
    }
    .row-span-xs-6 {
      grid-row: span 6/span 6;
    }
    .row-span-xs-7 {
      grid-row: span 7/span 7;
    }
    .row-span-xs-8 {
      grid-row: span 8/span 8;
    }
    .row-span-xs-9 {
      grid-row: span 9/span 9;
    }
    .row-span-xs-10 {
      grid-row: span 10/span 10;
    }
    .row-span-xs-11 {
      grid-row: span 11/span 11;
    }
    .row-span-xs-12 {
      grid-row: span 12/span 12;
    }
  }
  @media screen and (min-width: 34.375em) {
    .col-sm-1 {
      grid-column: span 1/span 1;
    }
    .col-sm-2 {
      grid-column: span 2/span 2;
    }
    .col-sm-3 {
      grid-column: span 3/span 3;
    }
    .col-sm-4 {
      grid-column: span 4/span 4;
    }
    .col-sm-5 {
      grid-column: span 5/span 5;
    }
    .col-sm-6 {
      grid-column: span 6/span 6;
    }
    .col-sm-7 {
      grid-column: span 7/span 7;
    }
    .col-sm-8 {
      grid-column: span 8/span 8;
    }
    .col-sm-9 {
      grid-column: span 9/span 9;
    }
    .col-sm-10 {
      grid-column: span 10/span 10;
    }
    .col-sm-11 {
      grid-column: span 11/span 11;
    }
    .col-sm-12 {
      grid-column: span 12/span 12;
    }
  }
  @media screen and (min-width: 34.375em) {
    .col-start-sm-1 {
      grid-column-start: 1;
    }
    .row-start-sm-1 {
      grid-row-start: 1;
    }
    .col-start-sm-2 {
      grid-column-start: 2;
    }
    .row-start-sm-2 {
      grid-row-start: 2;
    }
    .col-start-sm-3 {
      grid-column-start: 3;
    }
    .row-start-sm-3 {
      grid-row-start: 3;
    }
    .col-start-sm-4 {
      grid-column-start: 4;
    }
    .row-start-sm-4 {
      grid-row-start: 4;
    }
    .col-start-sm-5 {
      grid-column-start: 5;
    }
    .row-start-sm-5 {
      grid-row-start: 5;
    }
    .col-start-sm-6 {
      grid-column-start: 6;
    }
    .row-start-sm-6 {
      grid-row-start: 6;
    }
    .col-start-sm-7 {
      grid-column-start: 7;
    }
    .row-start-sm-7 {
      grid-row-start: 7;
    }
    .col-start-sm-8 {
      grid-column-start: 8;
    }
    .row-start-sm-8 {
      grid-row-start: 8;
    }
    .col-start-sm-9 {
      grid-column-start: 9;
    }
    .row-start-sm-9 {
      grid-row-start: 9;
    }
    .col-start-sm-10 {
      grid-column-start: 10;
    }
    .row-start-sm-10 {
      grid-row-start: 10;
    }
    .col-start-sm-11 {
      grid-column-start: 11;
    }
    .row-start-sm-11 {
      grid-row-start: 11;
    }
    .col-start-sm-12 {
      grid-column-start: 12;
    }
    .row-start-sm-12 {
      grid-row-start: 12;
    }
  }
  @media screen and (min-width: 34.375em) {
    .pull-right-sm {
      grid-column-end: -1;
    }
    .pull-left-sm {
      grid-row-start: 1;
      grid-column-end: inherit;
    }
  }
  @media screen and (min-width: 34.375em) {
    .justify-sm-start {
      justify-self: start;
    }
    .justify-sm-center {
      justify-self: center;
    }
    .justify-sm-end {
      justify-self: end;
    }
    .justify-sm-stretch {
      justify-self: stretch;
    }
    .align-sm-start {
      -ms-flex-item-align: start;
          align-self: start;
    }
    .align-sm-center {
      -ms-flex-item-align: center;
          align-self: center;
    }
    .align-sm-end {
      -ms-flex-item-align: end;
          align-self: end;
    }
    .align-sm-stretch {
      -ms-flex-item-align: stretch;
          align-self: stretch;
    }
  }
  @media screen and (min-width: 34.375em) {
    .row-span-sm-1 {
      grid-row: span 1/span 1;
    }
    .row-span-sm-2 {
      grid-row: span 2/span 2;
    }
    .row-span-sm-3 {
      grid-row: span 3/span 3;
    }
    .row-span-sm-4 {
      grid-row: span 4/span 4;
    }
    .row-span-sm-5 {
      grid-row: span 5/span 5;
    }
    .row-span-sm-6 {
      grid-row: span 6/span 6;
    }
    .row-span-sm-7 {
      grid-row: span 7/span 7;
    }
    .row-span-sm-8 {
      grid-row: span 8/span 8;
    }
    .row-span-sm-9 {
      grid-row: span 9/span 9;
    }
    .row-span-sm-10 {
      grid-row: span 10/span 10;
    }
    .row-span-sm-11 {
      grid-row: span 11/span 11;
    }
    .row-span-sm-12 {
      grid-row: span 12/span 12;
    }
  }
  @media screen and (min-width: 48em) {
    .col-md-1 {
      grid-column: span 1/span 1;
    }
    .col-md-2 {
      grid-column: span 2/span 2;
    }
    .col-md-3 {
      grid-column: span 3/span 3;
    }
    .col-md-4 {
      grid-column: span 4/span 4;
    }
    .col-md-5 {
      grid-column: span 5/span 5;
    }
    .col-md-6 {
      grid-column: span 6/span 6;
    }
    .col-md-7 {
      grid-column: span 7/span 7;
    }
    .col-md-8 {
      grid-column: span 8/span 8;
    }
    .col-md-9 {
      grid-column: span 9/span 9;
    }
    .col-md-10 {
      grid-column: span 10/span 10;
    }
    .col-md-11 {
      grid-column: span 11/span 11;
    }
    .col-md-12 {
      grid-column: span 12/span 12;
    }
  }
  @media screen and (min-width: 48em) {
    .col-start-md-1 {
      grid-column-start: 1;
    }
    .row-start-md-1 {
      grid-row-start: 1;
    }
    .col-start-md-2 {
      grid-column-start: 2;
    }
    .row-start-md-2 {
      grid-row-start: 2;
    }
    .col-start-md-3 {
      grid-column-start: 3;
    }
    .row-start-md-3 {
      grid-row-start: 3;
    }
    .col-start-md-4 {
      grid-column-start: 4;
    }
    .row-start-md-4 {
      grid-row-start: 4;
    }
    .col-start-md-5 {
      grid-column-start: 5;
    }
    .row-start-md-5 {
      grid-row-start: 5;
    }
    .col-start-md-6 {
      grid-column-start: 6;
    }
    .row-start-md-6 {
      grid-row-start: 6;
    }
    .col-start-md-7 {
      grid-column-start: 7;
    }
    .row-start-md-7 {
      grid-row-start: 7;
    }
    .col-start-md-8 {
      grid-column-start: 8;
    }
    .row-start-md-8 {
      grid-row-start: 8;
    }
    .col-start-md-9 {
      grid-column-start: 9;
    }
    .row-start-md-9 {
      grid-row-start: 9;
    }
    .col-start-md-10 {
      grid-column-start: 10;
    }
    .row-start-md-10 {
      grid-row-start: 10;
    }
    .col-start-md-11 {
      grid-column-start: 11;
    }
    .row-start-md-11 {
      grid-row-start: 11;
    }
    .col-start-md-12 {
      grid-column-start: 12;
    }
    .row-start-md-12 {
      grid-row-start: 12;
    }
  }
  @media screen and (min-width: 48em) {
    .pull-right-md {
      grid-column-end: -1;
    }
    .pull-left-md {
      grid-row-start: 1;
      grid-column-end: inherit;
    }
  }
  @media screen and (min-width: 48em) {
    .justify-md-start {
      justify-self: start;
    }
    .justify-md-center {
      justify-self: center;
    }
    .justify-md-end {
      justify-self: end;
    }
    .justify-md-stretch {
      justify-self: stretch;
    }
    .align-md-start {
      -ms-flex-item-align: start;
          align-self: start;
    }
    .align-md-center {
      -ms-flex-item-align: center;
          align-self: center;
    }
    .align-md-end {
      -ms-flex-item-align: end;
          align-self: end;
    }
    .align-md-stretch {
      -ms-flex-item-align: stretch;
          align-self: stretch;
    }
  }
  @media screen and (min-width: 48em) {
    .row-span-md-1 {
      grid-row: span 1/span 1;
    }
    .row-span-md-2 {
      grid-row: span 2/span 2;
    }
    .row-span-md-3 {
      grid-row: span 3/span 3;
    }
    .row-span-md-4 {
      grid-row: span 4/span 4;
    }
    .row-span-md-5 {
      grid-row: span 5/span 5;
    }
    .row-span-md-6 {
      grid-row: span 6/span 6;
    }
    .row-span-md-7 {
      grid-row: span 7/span 7;
    }
    .row-span-md-8 {
      grid-row: span 8/span 8;
    }
    .row-span-md-9 {
      grid-row: span 9/span 9;
    }
    .row-span-md-10 {
      grid-row: span 10/span 10;
    }
    .row-span-md-11 {
      grid-row: span 11/span 11;
    }
    .row-span-md-12 {
      grid-row: span 12/span 12;
    }
  }
  @media screen and (min-width: 58.75em) {
    .col-lg-1 {
      grid-column: span 1/span 1;
    }
    .col-lg-2 {
      grid-column: span 2/span 2;
    }
    .col-lg-3 {
      grid-column: span 3/span 3;
    }
    .col-lg-4 {
      grid-column: span 4/span 4;
    }
    .col-lg-5 {
      grid-column: span 5/span 5;
    }
    .col-lg-6 {
      grid-column: span 6/span 6;
    }
    .col-lg-7 {
      grid-column: span 7/span 7;
    }
    .col-lg-8 {
      grid-column: span 8/span 8;
    }
    .col-lg-9 {
      grid-column: span 9/span 9;
    }
    .col-lg-10 {
      grid-column: span 10/span 10;
    }
    .col-lg-11 {
      grid-column: span 11/span 11;
    }
    .col-lg-12 {
      grid-column: span 12/span 12;
    }
  }
  @media screen and (min-width: 58.75em) {
    .col-start-lg-1 {
      grid-column-start: 1;
    }
    .row-start-lg-1 {
      grid-row-start: 1;
    }
    .col-start-lg-2 {
      grid-column-start: 2;
    }
    .row-start-lg-2 {
      grid-row-start: 2;
    }
    .col-start-lg-3 {
      grid-column-start: 3;
    }
    .row-start-lg-3 {
      grid-row-start: 3;
    }
    .col-start-lg-4 {
      grid-column-start: 4;
    }
    .row-start-lg-4 {
      grid-row-start: 4;
    }
    .col-start-lg-5 {
      grid-column-start: 5;
    }
    .row-start-lg-5 {
      grid-row-start: 5;
    }
    .col-start-lg-6 {
      grid-column-start: 6;
    }
    .row-start-lg-6 {
      grid-row-start: 6;
    }
    .col-start-lg-7 {
      grid-column-start: 7;
    }
    .row-start-lg-7 {
      grid-row-start: 7;
    }
    .col-start-lg-8 {
      grid-column-start: 8;
    }
    .row-start-lg-8 {
      grid-row-start: 8;
    }
    .col-start-lg-9 {
      grid-column-start: 9;
    }
    .row-start-lg-9 {
      grid-row-start: 9;
    }
    .col-start-lg-10 {
      grid-column-start: 10;
    }
    .row-start-lg-10 {
      grid-row-start: 10;
    }
    .col-start-lg-11 {
      grid-column-start: 11;
    }
    .row-start-lg-11 {
      grid-row-start: 11;
    }
    .col-start-lg-12 {
      grid-column-start: 12;
    }
    .row-start-lg-12 {
      grid-row-start: 12;
    }
  }
  @media screen and (min-width: 58.75em) {
    .pull-right-lg {
      grid-column-end: -1;
    }
    .pull-left-lg {
      grid-row-start: 1;
      grid-column-end: inherit;
    }
  }
  @media screen and (min-width: 58.75em) {
    .justify-lg-start {
      justify-self: start;
    }
    .justify-lg-center {
      justify-self: center;
    }
    .justify-lg-end {
      justify-self: end;
    }
    .justify-lg-stretch {
      justify-self: stretch;
    }
    .align-lg-start {
      -ms-flex-item-align: start;
          align-self: start;
    }
    .align-lg-center {
      -ms-flex-item-align: center;
          align-self: center;
    }
    .align-lg-end {
      -ms-flex-item-align: end;
          align-self: end;
    }
    .align-lg-stretch {
      -ms-flex-item-align: stretch;
          align-self: stretch;
    }
  }
  @media screen and (min-width: 58.75em) {
    .row-span-lg-1 {
      grid-row: span 1/span 1;
    }
    .row-span-lg-2 {
      grid-row: span 2/span 2;
    }
    .row-span-lg-3 {
      grid-row: span 3/span 3;
    }
    .row-span-lg-4 {
      grid-row: span 4/span 4;
    }
    .row-span-lg-5 {
      grid-row: span 5/span 5;
    }
    .row-span-lg-6 {
      grid-row: span 6/span 6;
    }
    .row-span-lg-7 {
      grid-row: span 7/span 7;
    }
    .row-span-lg-8 {
      grid-row: span 8/span 8;
    }
    .row-span-lg-9 {
      grid-row: span 9/span 9;
    }
    .row-span-lg-10 {
      grid-row: span 10/span 10;
    }
    .row-span-lg-11 {
      grid-row: span 11/span 11;
    }
    .row-span-lg-12 {
      grid-row: span 12/span 12;
    }
  }
  @media screen and (min-width: 68.75em) {
    .col-xl-1 {
      grid-column: span 1/span 1;
    }
    .col-xl-2 {
      grid-column: span 2/span 2;
    }
    .col-xl-3 {
      grid-column: span 3/span 3;
    }
    .col-xl-4 {
      grid-column: span 4/span 4;
    }
    .col-xl-5 {
      grid-column: span 5/span 5;
    }
    .col-xl-6 {
      grid-column: span 6/span 6;
    }
    .col-xl-7 {
      grid-column: span 7/span 7;
    }
    .col-xl-8 {
      grid-column: span 8/span 8;
    }
    .col-xl-9 {
      grid-column: span 9/span 9;
    }
    .col-xl-10 {
      grid-column: span 10/span 10;
    }
    .col-xl-11 {
      grid-column: span 11/span 11;
    }
    .col-xl-12 {
      grid-column: span 12/span 12;
    }
  }
  @media screen and (min-width: 68.75em) {
    .col-start-xl-1 {
      grid-column-start: 1;
    }
    .row-start-xl-1 {
      grid-row-start: 1;
    }
    .col-start-xl-2 {
      grid-column-start: 2;
    }
    .row-start-xl-2 {
      grid-row-start: 2;
    }
    .col-start-xl-3 {
      grid-column-start: 3;
    }
    .row-start-xl-3 {
      grid-row-start: 3;
    }
    .col-start-xl-4 {
      grid-column-start: 4;
    }
    .row-start-xl-4 {
      grid-row-start: 4;
    }
    .col-start-xl-5 {
      grid-column-start: 5;
    }
    .row-start-xl-5 {
      grid-row-start: 5;
    }
    .col-start-xl-6 {
      grid-column-start: 6;
    }
    .row-start-xl-6 {
      grid-row-start: 6;
    }
    .col-start-xl-7 {
      grid-column-start: 7;
    }
    .row-start-xl-7 {
      grid-row-start: 7;
    }
    .col-start-xl-8 {
      grid-column-start: 8;
    }
    .row-start-xl-8 {
      grid-row-start: 8;
    }
    .col-start-xl-9 {
      grid-column-start: 9;
    }
    .row-start-xl-9 {
      grid-row-start: 9;
    }
    .col-start-xl-10 {
      grid-column-start: 10;
    }
    .row-start-xl-10 {
      grid-row-start: 10;
    }
    .col-start-xl-11 {
      grid-column-start: 11;
    }
    .row-start-xl-11 {
      grid-row-start: 11;
    }
    .col-start-xl-12 {
      grid-column-start: 12;
    }
    .row-start-xl-12 {
      grid-row-start: 12;
    }
  }
  @media screen and (min-width: 68.75em) {
    .pull-right-xl {
      grid-column-end: -1;
    }
    .pull-left-xl {
      grid-row-start: 1;
      grid-column-end: inherit;
    }
  }
  @media screen and (min-width: 68.75em) {
    .justify-xl-start {
      justify-self: start;
    }
    .justify-xl-center {
      justify-self: center;
    }
    .justify-xl-end {
      justify-self: end;
    }
    .justify-xl-stretch {
      justify-self: stretch;
    }
    .align-xl-start {
      -ms-flex-item-align: start;
          align-self: start;
    }
    .align-xl-center {
      -ms-flex-item-align: center;
          align-self: center;
    }
    .align-xl-end {
      -ms-flex-item-align: end;
          align-self: end;
    }
    .align-xl-stretch {
      -ms-flex-item-align: stretch;
          align-self: stretch;
    }
  }
  @media screen and (min-width: 68.75em) {
    .row-span-xl-1 {
      grid-row: span 1/span 1;
    }
    .row-span-xl-2 {
      grid-row: span 2/span 2;
    }
    .row-span-xl-3 {
      grid-row: span 3/span 3;
    }
    .row-span-xl-4 {
      grid-row: span 4/span 4;
    }
    .row-span-xl-5 {
      grid-row: span 5/span 5;
    }
    .row-span-xl-6 {
      grid-row: span 6/span 6;
    }
    .row-span-xl-7 {
      grid-row: span 7/span 7;
    }
    .row-span-xl-8 {
      grid-row: span 8/span 8;
    }
    .row-span-xl-9 {
      grid-row: span 9/span 9;
    }
    .row-span-xl-10 {
      grid-row: span 10/span 10;
    }
    .row-span-xl-11 {
      grid-row: span 11/span 11;
    }
    .row-span-xl-12 {
      grid-row: span 12/span 12;
    }
  }
  .col-start-1 {
    grid-column-start: 1;
  }
  .row-start-1 {
    grid-row-start: 1;
  }
  .col-start-2 {
    grid-column-start: 2;
  }
  .row-start-2 {
    grid-row-start: 2;
  }
  .col-start-3 {
    grid-column-start: 3;
  }
  .row-start-3 {
    grid-row-start: 3;
  }
  .col-start-4 {
    grid-column-start: 4;
  }
  .row-start-4 {
    grid-row-start: 4;
  }
  .col-start-5 {
    grid-column-start: 5;
  }
  .row-start-5 {
    grid-row-start: 5;
  }
  .col-start-6 {
    grid-column-start: 6;
  }
  .row-start-6 {
    grid-row-start: 6;
  }
  .col-start-7 {
    grid-column-start: 7;
  }
  .row-start-7 {
    grid-row-start: 7;
  }
  .col-start-8 {
    grid-column-start: 8;
  }
  .row-start-8 {
    grid-row-start: 8;
  }
  .col-start-9 {
    grid-column-start: 9;
  }
  .row-start-9 {
    grid-row-start: 9;
  }
  .col-start-10 {
    grid-column-start: 10;
  }
  .row-start-10 {
    grid-row-start: 10;
  }
  .col-start-11 {
    grid-column-start: 11;
  }
  .row-start-11 {
    grid-row-start: 11;
  }
  .col-start-12 {
    grid-column-start: 12;
  }
  .row-start-12 {
    grid-row-start: 12;
  }
  .row-span-1 {
    grid-row: span 1/span 1;
  }
  .row-span-2 {
    grid-row: span 2/span 2;
  }
  .row-span-3 {
    grid-row: span 3/span 3;
  }
  .row-span-4 {
    grid-row: span 4/span 4;
  }
  .row-span-5 {
    grid-row: span 5/span 5;
  }
  .row-span-6 {
    grid-row: span 6/span 6;
  }
  .row-span-7 {
    grid-row: span 7/span 7;
  }
  .row-span-8 {
    grid-row: span 8/span 8;
  }
  .row-span-9 {
    grid-row: span 9/span 9;
  }
  .row-span-10 {
    grid-row: span 10/span 10;
  }
  .row-span-11 {
    grid-row: span 11/span 11;
  }
  .row-span-12 {
    grid-row: span 12/span 12;
  }
}
/* grid-fallback für IE11, basiert auf euf_grid.css https://github.com/ErdmannFreunde/euf_grid */
@media screen and (-ms-high-contrast: active) and (min-width: 34.375em), screen and (-ms-high-contrast: none) and (min-width: 34.375em) {
  .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 3rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  [class^=col] {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  [class^=col] ~ [class^=col-start] {
    margin-left: 0;
  }
  .row .col-12,
  .row .col-sm-12,
  .row .col-md-12,
  .row .col-lg-12,
  .row .col-xl-12 {
    -ms-flex-preferred-size: calc(100% - 1rem);
        flex-basis: calc(100% - 1rem);
  }
  .row .col-sm-11,
  .row .col-md-11,
  .row .col-lg-11,
  .row .col-xl-11 {
    -ms-flex-preferred-size: calc(91.666667% - 1rem);
        flex-basis: calc(91.666667% - 1rem);
  }
  .row .col-sm-10,
  .row .col-md-10,
  .row .col-lg-10,
  .row .col-xl-10 {
    -ms-flex-preferred-size: calc(83.333333% - 1rem);
        flex-basis: calc(83.333333% - 1rem);
  }
  .row .col-sm-9,
  .row .col-md-9,
  .row .col-lg-9,
  .row .col-xl-9 {
    -ms-flex-preferred-size: calc(75% - 1rem);
        flex-basis: calc(75% - 1rem);
  }
  .row .col-sm-8,
  .row .col-md-8,
  .row .col-lg-8,
  .row .col-xl-8 {
    -ms-flex-preferred-size: calc(66.666667% - 1rem);
        flex-basis: calc(66.666667% - 1rem);
  }
  .row .col-sm-7,
  .row .col-md-7,
  .row .col-lg-7,
  .row .col-xl-7 {
    -ms-flex-preferred-size: calc(58.333333% - 1rem);
        flex-basis: calc(58.333333% - 1rem);
  }
  .row .col-sm-6,
  .row .col-md-6,
  .row .col-lg-6,
  .row .col-xl-6 {
    -ms-flex-preferred-size: calc(50% - 1rem);
        flex-basis: calc(50% - 1rem);
  }
  .row .col-sm-5,
  .row .col-md-5,
  .row .col-lg-5,
  .row .col-xl-5 {
    -ms-flex-preferred-size: calc(41.666667% - 1rem);
        flex-basis: calc(41.666667% - 1rem);
  }
  .row .col-sm-4,
  .row .col-md-4,
  .row .col-lg-4,
  .row .col-xl-4 {
    -ms-flex-preferred-size: calc(33.333333% - 1rem);
        flex-basis: calc(33.333333% - 1rem);
  }
  .row .col-sm-3,
  .row .col-md-3,
  .row .col-lg-3,
  .row .col-xl-3 {
    -ms-flex-preferred-size: calc(25% - 1rem);
        flex-basis: calc(25% - 1rem);
  }
  .row .col-sm-2,
  .row .col-md-2,
  .row .col-lg-2,
  .row .col-xl-2 {
    -ms-flex-preferred-size: calc(16.666667% - 1rem);
        flex-basis: calc(16.666667% - 1rem);
  }
  .row .col-sm-1,
  .row .col-md-1,
  .row .col-lg-1,
  .row .col-xl-1 {
    -ms-flex-preferred-size: calc(8.333333% - 1rem);
        flex-basis: calc(8.333333% - 1rem);
  }
  .row .col-start-sm-2,
  .row .col-start-md-2,
  .row .col-start-lg-2,
  .row .col-start-xl-2 {
    margin-left: 8.333333%;
  }
  .row .col-start-sm-3,
  .row .col-start-md-3,
  .row .col-start-lg-3,
  .row .col-start-xl-3 {
    margin-left: 16.666667%;
  }
  .row .col-start-sm-4,
  .row .col-start-md-4,
  .row .col-start-lg-4,
  .row .col-start-xl-4 {
    margin-left: 25%;
  }
  .row .col-start-sm-5,
  .row .col-start-md-5,
  .row .col-start-lg-5,
  .row .col-start-xl-5 {
    margin-left: 33.333333%;
  }
  .row .col-start-sm-6,
  .row .col-start-md-6,
  .row .col-start-lg-6,
  .row .col-start-xl-6 {
    margin-left: 41.666667%;
  }
  .row .col-start-sm-7,
  .row .col-start-md-7,
  .row .col-start-lg-7,
  .row .col-start-xl-7 {
    margin-left: 50%;
  }
}
@supports (grid-area: auto) {
  [class*=grid_] {
    --gapvalue: 2.5rem;
    grid-column-gap: var(--gapvalue);
    grid-row-gap: var(--gapvalue);
  }
  .grid-gap-null {
    --gapvalue: 0;
  }
  .grid-item-padding {
    padding: clamp(1rem, 2.712vw + 0.322rem, 2rem);
  }
}
.mainnav {
  display: none;
}
@media screen and (min-width: 48em) {
  .mainnav {
    display: block;
  }
}
.mainnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.mainnav li {
  position: relative;
}
.mainnav a:not(.invisible) {
  display: block;
  color: #565656;
  font-family: "Oswald", "Arial Black", sans-serif;
  font-weight: 300;
  position: relative;
  padding: 0.5em 1.25em 0.5em 1.25em;
  font-size: 1rem;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  line-height: 1;
}
@media screen and (min-width: 48em) and (max-width: 52.5em) {
  .mainnav a:not(.invisible) {
    padding: 0.5em 0.5em 0.5em 1.25em;
  }
}
.mainnav a:not(.invisible)::before {
  content: "";
  font-size: inherit;
  position: absolute;
  left: 0.25em;
  bottom: 0.5em;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 5 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 5a2.5 2.5 0 100-5 2.5 2.5 0 000 5z' fill='%23C7007F'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 6px 6px;
  width: 1em;
  height: 1em;
  -webkit-transition: background-size 0.1s linear;
  transition: background-size 0.1s linear;
}
.mainnav a:not(.invisible):hover, .mainnav a:not(.invisible):focus {
  color: #C7007F;
}
.mainnav a:not(.invisible).active, .mainnav a:not(.invisible).trail {
  color: #C7007F;
}
.mainnav a:not(.invisible):hover::before, .mainnav a:not(.invisible):focus::before, .mainnav a:not(.invisible).active::before {
  background-size: 12px 12px;
}
.mainnav a:not(.invisible).anmeldung {
  background-color: #BCCF00;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  margin-left: 1rem;
}
.mainnav a:not(.invisible).anmeldung:hover, .mainnav a:not(.invisible).anmeldung:focus, .mainnav a:not(.invisible).anmeldung.active, .mainnav a:not(.invisible).anmeldung.trail {
  background-color: #C7007F;
}
.mainnav ul.level_1 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.mainnav .level_1 > li {
  position: relative;
}

.mod_mobile_menu {
  display: block;
}
@media screen and (min-width: 48em) {
  .mod_mobile_menu {
    display: none;
  }
}

#btn-mobilemenu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
#btn-mobilemenu .icon-menu {
  width: 3.125rem;
  height: 3.125rem;
  color: #565656;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#btn-mobilemenu .icon-menu:hover, #btn-mobilemenu .icon-menu:focus {
  color: #BCCF00;
}

.mobile_menu .inner {
  background-color: #fff;
  padding: 1rem;
}
.mobile_menu .logo {
  border-bottom: 3px solid #C7007F;
  margin: 0 auto 1em auto;
  max-width: 10rem;
}
.mobile_menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.mobile_menu ul a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.25em 0.5em;
  font-size: 1.25rem;
  background-color: #C7007F;
  border-bottom: 1px solid #fff;
}
.mobile_menu ul a:hover, .mobile_menu ul a:focus {
  background-color: #BCCF00;
}
.mobile_menu ul a.trail, .mobile_menu ul a.active {
  font-weight: bold;
  background-color: #BCCF00;
}
.mobile_menu .help-nav a {
  color: #fff;
  background-color: #565656;
  border-bottom: 1px solid #fff;
}
.mobile_menu .help-nav a:hover, .mobile_menu .help-nav a:focus {
  background-color: #E5E5E6;
  color: #565656;
}
.mobile_menu .help-nav a.trail, .mobile_menu .help-nav a.active {
  background-color: #E5E5E6;
}
.mobile_menu .mod_search .formbody {
  margin: 0 auto;
}
.mobile_menu .mod_search .widget {
  margin-bottom: 0;
}
.mobile_menu .offcanvas-footer {
  text-align: center;
  border-top: 3px solid #C7007F;
  margin-top: 1em;
}
.mobile_menu .offcanvas-footer li {
  display: inline-block;
}
.mobile_menu .offcanvas-footer a {
  background: none;
  padding: 0 1em;
  color: #565656;
  font-size: 14px;
  font-size: 0.875rem;
}
.mobile_menu .offcanvas-footer a:hover, .mobile_menu .offcanvas-footer a:focus {
  color: #C7007F;
  background: none;
}

/*Variable Werte für Grundstyle*/
/*Klassen für @extend*/
.fieldreset, .ce_form .widget-checkbox.datenschutz fieldset {
  border: none;
  padding: 0;
}

/*Basic Styles*/
.ce_form input,
.ce_form label {
  display: block;
}
.ce_form label,
.ce_form legend {
  color: #212123;
}
.ce_form label span.mandatory,
.ce_form legend span.mandatory {
  color: red;
}
.ce_form input,
.ce_form textarea {
  width: 100%;
  border: 1px solid #A2B200;
  padding: 0.5em 1em;
  background-color: #F8FAEB;
  color: #454D00;
  border-radius: 30px;
}
.ce_form input:focus,
.ce_form textarea:focus {
  background: rgb(245.144, 247.96, 226.84);
}
.ce_form input:valid {
  color: #454D00;
}
.ce_form input:invalid {
  color: #95999D;
}
.ce_form fieldset {
  border: 1px solid #A2B200;
}
.ce_form .widget {
  margin-bottom: 2em;
}
.ce_form .widget-checkbox .checkbox_container > span {
  display: block;
  position: relative;
}
.ce_form .widget-checkbox .checkbox_container > span label {
  padding-left: 30px;
}
.ce_form .widget-checkbox .checkbox_container > span label::before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0.25rem;
  height: 20px;
  width: 20px;
  border: 1px solid #A2B200;
  border-radius: 4px;
  background: #F8FAEB;
  text-align: center;
  cursor: pointer;
}
.ce_form .widget-checkbox .checkbox_container > span input:checked ~ label::before {
  content: "✔ ";
  line-height: 1;
  font-size: 20px;
}
.ce_form .widget-checkbox.datenschutz legend {
  display: none;
}
.ce_form .widget-radio .radio_container > span {
  display: block;
  position: relative;
}
.ce_form .widget-radio .radio_container > span label {
  padding-left: 30px;
}
.ce_form .widget-radio .radio_container > span label::before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid #A2B200;
  background: #F8FAEB;
  text-align: center;
  cursor: pointer;
}
.ce_form .widget-radio .radio_container > span input:checked ~ label::before {
  content: "✔ ";
  line-height: 1;
  font-size: 20px;
}
.ce_form .widget-submit button {
  background-color: #BCCF00;
  color: #fff;
  padding: 0.5em 2em;
  border: 0;
  border-radius: 30px;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.ce_form .widget-submit button:hover, .ce_form .widget-submit button:focus {
  background-color: #C7007F;
}

[class^=icon] {
  height: 1.6rem;
  width: 1.6rem;
  display: inline-block;
  margin-right: 0.125rem;
  -webkit-transform: translateY(0.45rem);
          transform: translateY(0.45rem);
  color: #565656;
}
#footer [class^=icon] {
  color: #fff;
}
[class^=icon] + span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
}

/* Contao elements */
main [class^=ce_]:not(.ce_accordion) + [class^=ce_]:not(.ce_accordion):not(.ce_hyperlink):not(.ce_columns):not(.ce_text),
main [class^=ce_] + .grid_start {
  margin-top: 1.5rem;
}

main [class*=content-]:not(.content-accordion) + [class*=content-]:not(.content-accordion):not(.content-hyperlink):not(.content-columns):not(.content-text),
main [class*=content-] + .grid_start {
  margin-top: 1.5rem;
}

main .ce_text *,
main .ce_headline *,
main .content-text *,
main .content-headline * {
  color: inherit;
}
main .ce_text.fg-white,
main .ce_headline.fg-white,
main .content-text.fg-white,
main .content-headline.fg-white {
  color: #fff;
}
main .ce_text.fg-hellgruen,
main .ce_headline.fg-hellgruen,
main .content-text.fg-hellgruen,
main .content-headline.fg-hellgruen {
  color: #F8FAEB;
}
main .ce_text.fg-gruen,
main .ce_headline.fg-gruen,
main .content-text.fg-gruen,
main .content-headline.fg-gruen {
  color: #BCCF00;
}
main .ce_text.fg-dunkelgruen,
main .ce_headline.fg-dunkelgruen,
main .content-text.fg-dunkelgruen,
main .content-headline.fg-dunkelgruen {
  color: #667000;
}
main .ce_text.fg-hellpink,
main .ce_headline.fg-hellpink,
main .content-text.fg-hellpink,
main .content-headline.fg-hellpink {
  color: #FFE5F6;
}
main .ce_text.fg-pink,
main .ce_headline.fg-pink,
main .content-text.fg-pink,
main .content-headline.fg-pink {
  color: #C7007F;
}
main .ce_text.fg-dunkelpink,
main .ce_headline.fg-dunkelpink,
main .content-text.fg-dunkelpink,
main .content-headline.fg-dunkelpink {
  color: #700048;
}
main .ce_text.fg-hellgrau,
main .ce_headline.fg-hellgrau,
main .content-text.fg-hellgrau,
main .content-headline.fg-hellgrau {
  color: #F2F2F3;
}
main .ce_text.fg-mittelgrau,
main .ce_headline.fg-mittelgrau,
main .content-text.fg-mittelgrau,
main .content-headline.fg-mittelgrau {
  color: #BDBFC2;
}

.ce_headline.centered,
.content-headline.centered {
  text-align: center;
}

.ce_text,
.content-text {
  overflow: hidden;
}
.ce_text.highlight,
.content-text.highlight {
  font-size: 1.75rem;
  font-family: "Dosis", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 48em) {
  .ce_text.highlight,
  .content-text.highlight {
    font-size: 1.5rem;
  }
}
.ce_text.highlight-xl,
.content-text.highlight-xl {
  font-size: 1.5rem;
  font-family: "Dosis", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 48em) {
  .ce_text.highlight-xl,
  .content-text.highlight-xl {
    font-size: 2rem;
  }
}
@media screen and (min-width: 75em) {
  .ce_text.highlight-xl,
  .content-text.highlight-xl {
    font-size: 2.5rem;
  }
}

.ce_download,
.content-download {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.ce_download a,
.content-download a {
  display: block;
  padding: 0.5em 0.5em 0.5em 2.5rem;
  background-color: #F2F2F3;
  border: 1px solid #D7D9DA;
  background-repeat: no-repeat;
  background-position: left 0.5rem center;
  background-size: 1.5rem;
  text-decoration: none;
  color: #565656;
}
.ce_download a:hover, .ce_download a:focus,
.content-download a:hover,
.content-download a:focus {
  border-color: #C7007F;
  background-color: #F2F2F3;
  color: #C7007F;
}
.ce_download .download-element a,
.content-download .download-element a {
  background-size: 1.5rem 1.5rem;
}
.ce_download .download-element.ext-pdf a,
.content-download .download-element.ext-pdf a {
  background-image: url("/files/theme/img/icons/icon-pdf.svg");
}
.ce_download .download-element.ext-docx a,
.content-download .download-element.ext-docx a {
  background-image: url("/files/theme/img/icons/icon-docx.svg");
}
.ce_download .download-element.ext-doc a,
.content-download .download-element.ext-doc a {
  background-image: url("/files/theme/img/icons/icon-doc.svg");
}
.ce_download .download-element.ext-jpg a,
.content-download .download-element.ext-jpg a {
  background-image: url("/files/theme/img/icons/icon-jpg.svg");
}
.ce_download .download-element.ext-png a,
.content-download .download-element.ext-png a {
  background-image: url("/files/theme/img/icons/icon-png.svg");
}
.ce_download .download-element.ext-gif a,
.content-download .download-element.ext-gif a {
  background-image: url("/files/theme/img/icons/icon-gif.svg");
}
.ce_download .download-element.ext-tiff a,
.content-download .download-element.ext-tiff a {
  background-image: url("/files/theme/img/icons/icon-tiff.svg");
}
.ce_download .download-element.ext-mp3 a,
.content-download .download-element.ext-mp3 a {
  background-image: url("/files/theme/img/icons/icon-mp3.svg");
}
.ce_download .download-element.ext-mp4 a,
.content-download .download-element.ext-mp4 a {
  background-image: url("/files/theme/img/icons/icon-mp4.svg");
}
.ce_download .download-element.ext-ppt a,
.content-download .download-element.ext-ppt a {
  background-image: url("/files/theme/img/icons/icon-ppt.svg");
}
.ce_download .download-element.ext-zip a,
.content-download .download-element.ext-zip a {
  background-image: url("/files/theme/img/icons/icon-zip.svg");
}
.ce_download .download-element.ext-rar a,
.content-download .download-element.ext-rar a {
  background-image: url("/files/theme/img/icons/icon-rar.svg");
}
.ce_download .download-element.ext-txt a,
.content-download .download-element.ext-txt a {
  background-image: url("/files/theme/img/icons/icon-txt.svg");
}
.ce_download .download-element.ext-xls a,
.content-download .download-element.ext-xls a {
  background-image: url("/files/theme/img/icons/icon-xls.svg");
}
.ce_download .download-element.ext-xlsx a,
.content-download .download-element.ext-xlsx a {
  background-image: url("/files/theme/img/icons/icon-xlsx.svg");
}
.ce_download .download-element.ext-xml a,
.content-download .download-element.ext-xml a {
  background-image: url("/files/theme/img/icons/icon-xml.svg");
}

.ce_accordion,
.content-accordion {
  margin-bottom: 0.3em;
}
.ce_accordion .toggler,
.content-accordion .toggler {
  border: 1px solid #D7D9DA;
  position: relative;
  background-color: #F2F2F3;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  padding: 1rem 3rem 1rem 1rem;
}
.ce_accordion .toggler:hover, .ce_accordion .toggler:focus,
.content-accordion .toggler:hover,
.content-accordion .toggler:focus {
  background-color: #95999D;
  border: 1px solid #95999D;
  color: #fff;
}
.ce_accordion .toggler:hover .title, .ce_accordion .toggler:focus .title,
.content-accordion .toggler:hover .title,
.content-accordion .toggler:focus .title {
  color: #fff;
}
.ce_accordion .toggler::after,
.content-accordion .toggler::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0.5em;
  top: 0.5em;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.882 23.506l9.49-9.133a.891.891 0 0 1 1.444.284.869.869 0 0 1-.192.955L20.51 25.627a.891.891 0 0 1-1.252 0L9.143 15.612a.87.87 0 0 1 0-1.239.891.891 0 0 1 1.252 0l9.487 9.133z' fill='%231D1D1B'/%3E%3C/svg%3E");
  background-size: 40px;
  color: #565656;
  cursor: pointer;
}
.ce_accordion .toggler:hover::after, .ce_accordion .toggler:focus::after,
.content-accordion .toggler:hover::after,
.content-accordion .toggler:focus::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.882 23.506l9.49-9.133a.891.891 0 0 1 1.444.284.869.869 0 0 1-.192.955L20.51 25.627a.891.891 0 0 1-1.252 0L9.143 15.612a.87.87 0 0 1 0-1.239.891.891 0 0 1 1.252 0l9.487 9.133z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.ce_accordion .toggler.active::after,
.content-accordion .toggler.active::after {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28.626 10.236l-8.628 8.392-8.624-8.392a.806.806 0 0 0-1.138 1.139L18.856 20l-8.62 8.625a.8.8 0 0 0-.175.878.806.806 0 0 0 1.313.26l8.628-8.39 8.624 8.391a.806.806 0 0 0 1.138-1.139L21.144 20l8.62-8.625a.8.8 0 0 0 .175-.878.806.806 0 0 0-1.313-.26z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.ce_accordion .accordion,
.content-accordion .accordion {
  padding: 1rem;
}

blockquote {
  padding: 0.25rem 0 1rem 0;
  margin: 0;
  font-size: 1.5rem;
  font-style: italic;
  color: #565656;
}
blockquote p {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.ce_gallery ul,
.content-gallery ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ce_gallery ul li,
.content-gallery ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 180px;
          flex: 1 1 180px;
  min-width: 140px;
  text-align: center;
  padding: 1rem 0.5rem;
  position: relative;
}
.ce_gallery ul figcaption,
.content-gallery ul figcaption {
  margin-top: 0.5rem;
}
.ce_gallery.process ul,
.content-gallery.process ul {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (min-width: 48em) {
  .ce_gallery.process ul,
  .content-gallery.process ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.ce_gallery.process ul li,
.content-gallery.process ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 150px;
          flex: 0 1 150px;
}
@media screen and (min-width: 48em) {
  .ce_gallery.process ul li,
  .content-gallery.process ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 12rem;
            flex: 0 1 12rem;
  }
}
@media screen and (min-width: 56.25em) {
  .ce_gallery.process ul li,
  .content-gallery.process ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 14rem;
            flex: 0 1 14rem;
  }
}
@media screen and (min-width: 48em) {
  .ce_gallery.process li:not(.row_last.col_last)::after,
  .content-gallery.process li:not(.row_last.col_last)::after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30.4695 21.2436L15.8026 35.4849C15.0953 36.1717 13.9485 36.1717 13.2412 35.4849L11.5305 33.8238C10.8243 33.1382 10.823 32.0269 11.5275 31.3396L23.1513 20L11.5275 8.66039C10.823 7.9731 10.8243 6.86182 11.5305 6.17615L13.2412 4.51513C13.9485 3.82829 15.0954 3.82829 15.8026 4.51513L30.4695 18.7564C31.1768 19.4432 31.1768 20.5567 30.4695 21.2436Z' fill='%23ECBDDB'/%3E%3C/svg%3E");
    background-size: contain;
    background-position: center center;
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: 3rem;
    left: 8rem;
  }
}

@-webkit-keyframes listfadeIn {
  0% {
    opacity: 0;
    left: 10rem;
    top: 10rem;
  }
  75% {
    opacity: 0.5;
    left: 0;
    top: 0;
  }
  100% {
    opacity: 1;
  }
}
.ce_hyperlink.button, .mod_faqreader .ce_hyperlink.back,
.content-hyperlink.button,
.mod_faqreader .content-hyperlink.back,
p.button,
.mod_faqreader p.back {
  display: inline-block;
  margin: 1rem 1rem 2rem 0;
}
.ce_hyperlink.button a, .mod_faqreader .ce_hyperlink.back a,
.content-hyperlink.button a,
.mod_faqreader .content-hyperlink.back a,
p.button a,
.mod_faqreader p.back a {
  display: block;
  background-color: #BCCF00;
  border: 2px solid #BCCF00;
  color: #fff;
  text-decoration: none;
  padding: 0.5em 2em;
  border-radius: 2em;
  -webkit-transition: all 0.2s easeout;
  transition: all 0.2s easeout;
}
.ce_hyperlink.button a:hover, .mod_faqreader .ce_hyperlink.back a:hover, .ce_hyperlink.button a:focus, .mod_faqreader .ce_hyperlink.back a:focus,
.content-hyperlink.button a:hover,
.mod_faqreader .content-hyperlink.back a:hover,
.content-hyperlink.button a:focus,
.mod_faqreader .content-hyperlink.back a:focus,
p.button a:hover,
.mod_faqreader p.back a:hover,
p.button a:focus,
.mod_faqreader p.back a:focus {
  background-color: #C7007F;
  border: 2px solid #C7007F;
  color: #fff;
}
.ce_hyperlink.button-pink a,
.content-hyperlink.button-pink a,
p.button-pink a {
  background-color: #C7007F;
  border: 2px solid #C7007F;
  color: #fff;
}
.ce_hyperlink.button-pink a:hover, .ce_hyperlink.button-pink a:focus,
.content-hyperlink.button-pink a:hover,
.content-hyperlink.button-pink a:focus,
p.button-pink a:hover,
p.button-pink a:focus {
  background-color: #BCCF00;
  border: 2px solid #BCCF00;
  color: #fff;
}
.ce_hyperlink.button-whitepink a,
.content-hyperlink.button-whitepink a,
p.button-whitepink a {
  background-color: transparent;
  border: 2px solid #C7007F;
  color: #C7007F;
}
.ce_hyperlink.button-whitegreen a,
.content-hyperlink.button-whitegreen a,
p.button-whitegreen a {
  background-color: transparent;
  border: 2px solid #BCCF00;
  color: #BCCF00;
}

a.button, .mod_faqreader a.back {
  display: block;
  background-color: #BCCF00;
  border: 2px solid #BCCF00;
  color: #fff;
  text-decoration: none;
  padding: 0.5em 2em;
  border-radius: 2em;
  -webkit-transition: all 0.2s easeout;
  transition: all 0.2s easeout;
}
a.button:hover, .mod_faqreader a.back:hover, a.button:focus, .mod_faqreader a.back:focus {
  background-color: #C7007F;
  border: 2px solid #C7007F;
  color: #fff;
}

a.button-pink {
  background-color: #C7007F;
  border: 2px solid #C7007F;
  color: #fff;
}
a.button-pink:hover, a.button-pink:focus {
  background-color: #BCCF00;
  border: 2px solid #BCCF00;
  color: #fff;
}

.hero {
  position: relative;
}

.hero-image {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.hero-message {
  position: relative;
  z-index: 2;
}

/* Variables
================================== */
/* Tables
================================== */
.Rtable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 3em 0;
  padding: 0;
}
.Rtable a {
  color: #6F7907;
}

.Rtable-cell {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
      flex-grow: 1;
  width: 100%;
  padding: 0.8em 1.2em;
  overflow: hidden;
  list-style: none;
  border: solid 3px #fff;
  background: #F2F2F3;
  background: -webkit-gradient(linear, left top, left bottom, from(#F2F2F3), to(#EaEaEb));
  background: linear-gradient(180deg, #F2F2F3 0%, #EaEaEb 100%);
}

.hiddencell,
.hiddencell * {
  background: none !important;
  border: none !important;
}

@media all and (max-width: 800px) {
  .hideonsmall {
    display: none;
  }
}
.Rtable-cell > h1,
.Rtable-cell > h2,
.Rtable-cell > h3,
.Rtable-cell > h4,
.Rtable-cell > h5,
.Rtable-cell > h6 {
  margin: 0;
}

/* Table column sizing
================================== */
.Rtable--2cols > .Rtable-cell {
  width: 50%;
}

.Rtable--3cols > .Rtable-cell {
  width: 33.33%;
}

.Rtable--4cols > .Rtable-cell {
  width: 25%;
}

.Rtable--5cols > .Rtable-cell {
  width: 20%;
}

.Rtable--6cols > .Rtable-cell {
  width: 16.6%;
}

@media all and (max-width: 800px) {
  .Rtable--6cols > .Rtable-cell {
    width: 20%;
  }
  .description {
    display: none;
  }
}
/* Page styling
================================== */
/* Apply styles
================================== */
.Rtable {
  position: relative;
  top: 3px;
  left: 3px;
}
.Rtable strong {
  color: #fff;
}

.Rtable-cell {
  margin: -3px 0 0 -3px;
}

.Rtable-cell:not(.description) {
  text-align: center;
}

/* Cell styles
================================== */
.Rtable-cell--dark {
  background-color: #565656;
  border-color: #212123;
  color: #fff;
}

.Rtable-cell--dark > h1,
.Rtable-cell--dark > h2,
.Rtable-cell--dark > h3,
.Rtable-cell--dark > h4,
.Rtable-cell--dark > h5,
.Rtable-cell--dark > h6 {
  color: #fff;
}

.Rtable-cell--medium {
  background-color: #F2F2F3;
  border-color: #D7D9DA;
}

.Rtable-cell--light {
  background-color: #F2F2F3;
  border-color: #D7D9DA;
}

.Rtable-cell--highlight {
  background-color: #F2F2F3;
  border-color: #D7D9DA;
}

.Rtable-cell--alert {
  background-color: #F2F2F3;
  border-color: #D7D9DA;
}

.Rtable-cell--alert > h1,
.Rtable-cell--alert > h2,
.Rtable-cell--alert > h3,
.Rtable-cell--alert > h4,
.Rtable-cell--alert > h5,
.Rtable-cell--alert > h6 {
  color: #fff;
}

.Rtable-cell--head {
  background: #C7007F;
  border-color: #fff;
  color: #fff;
  text-align: center;
  padding-bottom: 70px;
  background: url("/files/theme/img/bg-arrow-down.png") no-repeat bottom left #C7007F;
  background-size: contain;
}

@media all and (max-width: 800px) {
  .Rtable-cell--head {
    background: url("/files/theme/img/bg-arrow-down-green.png") no-repeat bottom left #fff;
    background-size: 101% 100%;
  }
  .Rtable-cell--head small {
    display: none;
  }
}
.Rtable-cell--head > h1,
.Rtable-cell--head > h2,
.Rtable-cell--head > h3,
.Rtable-cell--head > h4,
.Rtable-cell--head > h5,
.Rtable-cell--head > h6 {
  color: #fff;
}

.Rtable-cell--foot {
  background: #C7007F;
  border-color: #fff;
}

.Rtable-cell--foot:not(.description) strong {
  color: #C7007F;
}

@media all and (max-width: 800px) {
  .Rtable-cell--foot:not(.description) strong {
    color: #fff;
  }
}
.label {
  font-size: 1.2em;
  display: block;
  line-height: 1.3;
}

.label small,
.description small {
  display: block;
  color: #3D4042;
}

.description small ul {
  margin: 0;
  padding: 0 0 0 1em;
}

@media all and (min-width: 801px) {
  .label {
    display: none;
  }
  .description .label {
    display: block;
    /*color: #000;*/
  }
}
/* Responsive
==================================== */
@media all and (max-width: 800px) {
  .Rtable--collapse {
    display: block;
  }
  .Rtable--collapse > .Rtable-cell {
    width: 100% !important;
  }
}
.no-flexbox .Rtable {
  display: block;
}

.no-flexbox .Rtable > .Rtable-cell {
  width: 100%;
}

.no-flexbox .Rtable > .Rtable-cell--foot {
  margin-bottom: 1em;
}

@media all and (max-width: 800px) {
  .hiddenSmall {
    display: none;
  }
}
/* Tab Styling
==================================== */
.Tablist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*
  Show TABS side by side
  -webkit-box-orient: horizontal;
  	-webkit-box-direction: normal;
  	flex-direction: row
  */
  margin-left: -3px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media all and (min-width: 800px) {
  .Tablist {
    display: none;
  }
}
.Tab {
  padding: 0.6em 1em;
  margin: 0 3px 3px 0;
  text-align: center;
  background-color: #C7007F;
  border: solid 3px #fff;
  border-bottom-width: 0;
  border-radius: 0.5em 0.5em 0 0;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  -webkit-transition: background-color 0.1s;
  transition: background-color 0.1s;
  cursor: pointer;
  font-size: 1.2em;
  /*Hide to show Tabs side by side*/
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.Tab small {
  display: block;
  font-size: 0.6em;
}

.Tab:hover,
.Tab:focus {
  background-color: #BCCF00;
  border-color: #BCCF00;
  outline: none;
}

.Tab[aria-selected=false]:active {
  margin-top: 0.2em;
  padding-bottom: 0.4em;
}

.Tab[aria-selected=true] {
  background: #BCCF00;
  cursor: default;
}

.extra-new {
  color: #b0d243;
  font-size: 2rem;
  line-height: 0;
}

.video_container,
.content-youtube figure {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.video_container:hover,
.content-youtube figure:hover {
  cursor: pointer;
}

.video_container iframe,
.video_container object,
.video_container embed,
.content-youtube figure iframe,
.content-youtube figure object,
.content-youtube figure embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video_container figure,
.content-youtube figure {
  opacity: 0.75;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.video_container figure:hover,
.video_container figure:focus,
.content-youtube figure:hover,
.content-youtube figure:focus {
  opacity: 1;
}
.video_container figure:hover figcaption,
.video_container figure:focus figcaption,
.content-youtube figure:hover figcaption,
.content-youtube figure:focus figcaption {
  height: auto;
  bottom: 0;
}
.video_container figure:focus,
.content-youtube figure:focus {
  outline: 4px dashed #95999D;
  outline-offset: -4px;
}
.video_container figure:focus figcaption,
.content-youtube figure:focus figcaption {
  height: auto;
  bottom: 0;
}
.video_container figcaption,
.content-youtube figcaption {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  top: auto;
  background-color: rgba(255, 255, 255, 0.9);
  color: #3D4042;
  text-align: center;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  padding: 2rem 0.5rem;
  font-weight: 700;
}

[id^=splashImage],
[data-splash-screen] {
  position: relative;
  display: block;
}
[id^=splashImage]::after,
[data-splash-screen]::after {
  content: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.752 41.492l21.62-11.185-21.62-11.279v22.464z' fill='%23fff'/%3E%3Cpath opacity='.12' d='M31.752 19.028l18.965 12.654 2.656-1.375-21.621-11.279z' fill='%23420000'/%3E%3Cpath d='M79.149 14.123s-.781-5.5-3.186-7.936C72.933 3 69.529 3 67.937 2.812 56.786 2 40.014 2 40.014 2h-.03S23.212 2 12 2.812C10.439 3 7.035 3 3.974 6.187 1.6 8.624.82 14.123.82 14.123S.008 20.62.008 27.089v6.061c0 6.468.812 12.935.812 12.935s.78 5.5 3.185 7.936c3.03 3.187 7.027 3.093 8.808 3.406 6.402.624 27.171.812 27.171.812s16.803-.031 27.984-.844c1.561-.187 4.966-.187 8.026-3.374 2.405-2.437 3.186-7.936 3.186-7.936s.812-6.467.812-12.935V27.09c-.031-6.468-.843-12.966-.843-12.966zm-47.41 26.37V18.027l21.612 11.28L31.74 40.491z' fill='url(%23paint0_linear)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='39.984' y1='2' x2='39.984' y2='58.256' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23E52D27'/%3E%3Cstop offset='1' stop-color='%23BF171D'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
  height: 30px;
  opacity: 0.7;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
@media screen and (min-width: 48em) {
  [id^=splashImage]::after,
  [data-splash-screen]::after {
    width: 80px;
    height: 60px;
  }
}
[id^=splashImage]:hover::after, [id^=splashImage]:focus::after,
[data-splash-screen]:hover::after,
[data-splash-screen]:focus::after {
  opacity: 1;
}

.mod_faqlist ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.mod_faqlist li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15%;
          flex: 0 0 15%;
  min-width: 280px;
  margin: 1em 2em 1em 0;
}
.mod_faqlist a {
  display: block;
  position: relative;
  color: #fff;
  background-color: #A2B200;
  padding: 1em;
  border-radius: 20px 30px;
  text-align: center;
  text-decoration: none;
}
.mod_faqlist a:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  border-top: 15px solid #A2B200;
  border-right: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid transparent;
  bottom: -30px;
  right: 20%;
}
.mod_faqlist a:hover, .mod_faqlist a:focus {
  background-color: #C7007F;
}
.mod_faqlist a:hover:after, .mod_faqlist a:focus:after {
  border-top: 15px solid #C7007F;
  border-right: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid transparent;
}

.mod_faqreader .info {
  font-size: 14px;
  font-size: 0.875rem;
  color: #C7007F;
}
.article-search .mod_search {
  margin: 0;
}
.article-search .mod_search .formbody {
  margin: 0 auto;
}
.article-search .ce_form .widget {
  margin: 0;
}

.mod_search {
  margin: 1rem 0;
}
.mod_search .formbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: none;
      flex-wrap: none;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  max-width: 30rem;
  margin: 0 auto 2rem auto;
}
.mod_search .formbody .widget-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.mod_search .formbody .widget-text label {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
}
.mod_search .formbody .widget-text input {
  height: 40px;
  padding: 0.5em;
  font-size: 16px;
  font-size: 1rem;
  border: 1px solid #D7D9DA;
  border-radius: 5px 0 0 5px;
  background-color: #F2F2F3;
  color: #212123;
  width: 100%;
}
.mod_search .formbody .widget-submit {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.mod_search .formbody .widget-submit button {
  height: 40px;
  width: auto;
  background: #95999D;
  border: none;
  border-radius: 0 5px 5px 0;
  color: #212123;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.mod_search .formbody .widget-submit button:hover, .mod_search .formbody .widget-submit button:focus {
  background-color: #3D4042;
  color: #F2F2F3;
}
.mod_search .header {
  margin-bottom: 2rem;
}
.mod_search > div {
  margin-bottom: 2rem;
}
.mod_search h3 {
  font-family: "Lato", "Tahoma", "Verdana", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25em;
  color: #565656;
}
.mod_search .relevance, .mod_search .url {
  font-size: 0.75rem;
  color: #74787C;
  font-weight: normal;
}
.mod_search .context {
  margin-bottom: 0.25em;
}
.mod_search .highlight {
  background-color: #E5E5E6;
  padding: 0 0.2em;
}
.mod_search .url {
  color: #74787C;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination p {
  margin: 0;
}
.pagination ul {
  margin: 0;
}
.pagination li {
  display: inline-block;
  margin-right: 0.3rem;
  margin-bottom: 0.3em;
}
.pagination a,
.pagination .active {
  display: block;
  width: 2.5em;
  height: 2.5em;
  background: #F2F2F3;
  border: 1px solid #D7D9DA;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: #565656;
  line-height: 2.5em;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-size: 0.875rem;
}
.pagination .active {
  background: #565656;
  border: 1px solid #565656;
  color: #F2F2F3;
}
.pagination a.next,
.pagination a.previous,
.pagination a.first,
.pagination a.last {
  width: auto;
  padding: 0 0.5em;
}
.pagination a:hover,
.pagination a:focus {
  background: #565656;
  border: 1px solid #565656;
  color: #fff;
}

.cta-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cta-block__button a {
  padding: 0.25em 1em;
}

.cta-block__phone + .cta-block__button {
  margin-left: 1rem;
}

.webinare {
  width: 100%;
  max-width: 40em;
  margin: 0 auto;
}
.webinare th {
  padding: 0.25em 1em;
  color: #565656;
  text-transform: uppercase;
}
.webinare td {
  padding: 0.5em 1em;
  margin-right: 0.25rem;
  font-size: 1.25rem;
}
.webinare thead tr {
  border-bottom: 2px solid #F2F2F3;
}
.webinare th.webinare__date {
  text-align: left;
}
.webinare td.webinare__seats {
  text-align: center;
}
.webinare tbody tr {
  border-bottom: 2px solid #F2F2F3;
}
.webinare .webinare__link a {
  display: block;
  background-color: #BCCF00;
  border: 2px solid #BCCF00;
  color: #fff;
  text-decoration: none;
  padding: 0.5em 1em;
  border-radius: 2em;
  -webkit-transition: all 0.2s easeout;
  transition: all 0.2s easeout;
  text-align: center;
  font-size: 1rem;
}
.webinare .webinare__link a:hover, .webinare .webinare__link a:focus {
  background-color: #C7007F;
  border: 2px solid #C7007F;
  color: #fff;
}

.subscribe_form {
  background-color: #F2F2F3;
  border-radius: 0.25rem;
  padding: 1.5rem;
  margin: 2.5rem 0;
  border-top: 4px solid #C7007F;
}
.subscribe_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.subscribe_form .widget {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48%;
          flex: 0 1 48%;
}
.subscribe_form .widget:nth-child(5) {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 75%;
          flex: 0 1 75%;
}
.subscribe_form .widget:nth-child(6) {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 21%;
          flex: 0 1 21%;
}
.subscribe_form .submit_container,
.subscribe_form .widget-checkbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
.subscribe_form .widget-checkbox fieldset {
  border: none;
  padding: 0.5rem 0;
}
.subscribe_form button {
  display: block;
  background-color: #C7007F;
  border: 2px solid #C7007F;
  color: #fff;
  text-decoration: none;
  padding: 0.5em 1em;
  border-radius: 2em;
  -webkit-transition: all 0.2s easeout;
  transition: all 0.2s easeout;
  text-align: center;
  font-size: 1rem;
}
.subscribe_form button:hover, .subscribe_form button:focus {
  background-color: #BCCF00;
  border: 2px solid #BCCF00;
  color: #fff;
}

.blog main .inside {
  max-width: 900px;
  margin: 0 auto;
}

.mod_newscategories {
  margin: 2.5rem 0;
}
.mod_newscategories ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.mod_newscategories li {
  margin-right: 0.5rem;
}
.mod_newscategories li a, .mod_newscategories li strong {
  background-color: #F2F2F3;
  border-radius: 5px;
  text-decoration: none;
  color: #565656;
  padding: 0.25em 1em;
  border: 1px solid #F2F2F3;
  white-space: nowrap;
}
.mod_newscategories li a:hover, .mod_newscategories li a:focus, .mod_newscategories li strong:hover, .mod_newscategories li strong:focus {
  background-color: #BCCF00;
  color: #fff;
  border: 1px solid #BCCF00;
}
.mod_newscategories li strong {
  border: 1px solid #E5E5E6;
}

.mod_newslist .layout_short {
  margin-bottom: 2.5rem;
  background-color: #F2F2F3;
  padding: 1rem;
  border-radius: 5px 5px 0 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.mod_newslist .layout_short:hover {
  background-color: #E5E5E6;
}
.mod_newslist .blog-title {
  padding-top: 1em;
}
.mod_newslist .blog-title a {
  color: #C7007F;
  font-size: 1.25rem;
  margin-bottom: 0;
  text-decoration: none;
}
.mod_newslist .blog-title a:hover, .mod_newslist .blog-title a:focus {
  background-color: transparent;
  text-decoration: underline;
}
.mod_newslist .meta {
  background-color: #BCCF00;
  margin: -1rem -1rem 0 -1rem;
  padding: 0.25em 1rem;
  border-radius: 5px 5px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mod_newslist .info {
  color: #fff;
  font-size: 0.875rem;
  margin: 0 1rem 0 0;
}
.mod_newslist .categories {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.mod_newslist .category {
  color: #fff;
  font-size: 0.875rem;
  margin: 0;
  display: inline;
}
.mod_newslist .category a {
  color: #fff;
  text-decoration: none;
}
.mod_newslist .category a:hover, .mod_newslist .category a:focus {
  text-decoration: underline;
  background-color: transparent;
}
.mod_newslist .category:not(:last-child)::after {
  content: " • ";
}
.mod_newslist .more {
  margin-bottom: 0;
}
.mod_newslist .more a {
  color: #565656;
}
.mod_newslist .more a:hover, .mod_newslist .more a:focus {
  background-color: transparent;
  text-decoration: underline;
  color: #C7007F;
}

.mod_newsreader h1 {
  color: #C7007F;
  font-size: 1.25rem;
  margin-bottom: 0;
}
.mod_newsreader h2[itemprop=headline] {
  font-size: 2.25rem;
  line-height: 1.35;
  margin-top: 0.5em;
}
.mod_newsreader .meta {
  border-top: 2px solid #EDF2C0;
  padding: 0.25em 0;
  margin-bottom: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mod_newsreader .info {
  font-size: 0.875rem;
}
.mod_newsreader .info {
  margin: 0 1rem 0 0;
}
.mod_newsreader .categories {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.mod_newsreader .category {
  font-size: 0.875rem;
  margin: 0;
  font-style: italic;
  display: inline;
}
.mod_newsreader .category a {
  text-decoration: none;
  color: #565656;
}
.mod_newsreader .category a:hover, .mod_newsreader .category a:focus {
  text-decoration: underline;
}
.mod_newsreader .category:not(:last-child)::after {
  content: " • ";
}
.mod_newsreader .blog-rechtshinweis {
  background-color: #F2F2F3;
  padding: 1rem;
  font-size: 0.875rem;
  margin: 2rem 0;
}
.mod_newsreader .blog-tipp {
  border-top: 2px solid #828F00;
  border-bottom: 2px solid #828F00;
  background-color: #F8FAEB;
  padding: 1rem 1rem 1rem 4rem;
  margin: 2rem 0;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 6.506a.678.678 0 00-.22-.496.778.778 0 00-.53-.205H6.5a.525.525 0 01-.278-.078.476.476 0 01-.185-.21.439.439 0 01-.028-.27.459.459 0 01.137-.24l2.411-2.251a.462.462 0 00.041-.638.524.524 0 00-.312-.178.548.548 0 00-.36.06L3.741 4.347l-2.465 1.15a.49.49 0 00-.201.173.444.444 0 00-.075.245v5.887c0 .083.023.164.068.235.044.071.107.13.184.17l2.442 1.304c.304.163.642.263.991.296l2.715.254c.14.013.28-.001.412-.042.133-.04.255-.107.359-.194a.938.938 0 00.243-.314.882.882 0 00.086-.38v-.32h-1a.518.518 0 01-.354-.136.452.452 0 01-.146-.33c0-.125.053-.243.146-.331a.518.518 0 01.354-.137h1.346c.09-.059.176-.121.26-.187.222-.174.383-.343.43-.454.05-.116.063-.366.039-.661a4.308 4.308 0 00-.01-.1H8a.518.518 0 01-.354-.136.452.452 0 01-.146-.33c0-.124.053-.243.146-.33A.518.518 0 018 9.542h2.014c.167 0 .272-.068.314-.14.082-.13.144-.272.182-.419.035-.167.04-.467.027-.762l-.004-.08H8a.518.518 0 01-.354-.137.452.452 0 01-.146-.33c0-.124.053-.243.146-.33A.518.518 0 018 7.205h6.25c.199 0 .39-.073.53-.205.141-.131.22-.31.22-.495zM11.534 8.14h2.716c.464 0 .91-.172 1.237-.478.329-.307.513-.723.513-1.156 0-.434-.184-.85-.513-1.156a1.814 1.814 0 00-1.237-.48H7.707l1.557-1.454c.26-.244.416-.57.439-.914a1.354 1.354 0 00-.319-.957 1.537 1.537 0 00-.916-.52 1.608 1.608 0 00-1.056.175L3.259 3.527.829 4.662c-.25.116-.459.295-.605.516A1.333 1.333 0 000 5.915v5.887c0 .247.07.49.203.704.133.213.323.39.553.513l2.441 1.303c.427.228.9.369 1.389.415l2.715.254c.278.026.559-.003.824-.085.266-.081.51-.214.717-.389a1.88 1.88 0 00.486-.627c.113-.24.172-.497.172-.758v-.544c.085-.058.167-.119.248-.182.229-.179.568-.476.716-.822.146-.34.132-.79.108-1.082l-.012-.123c.272-.1.5-.285.642-.523.133-.215.23-.448.288-.69.062-.29.058-.69.046-.98l-.002-.046z' fill='%23667000'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-position: top 1rem left 1rem;
  background-repeat: no-repeat;
  background-size: 2rem 2rem;
}

.mod_author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 2px solid #BCCF00;
  margin: 2rem 0 4rem;
  padding: 1rem 0;
}
.mod_author .author-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media screen and (min-width: 33.75em) {
  .mod_author .author-image {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: calc(120px + 2rem);
        flex-basis: calc(120px + 2rem);
  }
}
.mod_author .author-image figure {
  margin: 0 auto 1rem;
}
.mod_author .author-image img {
  border-radius: 50%;
}
.mod_author .author-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.mod_author .author-name {
  font-weight: 700;
}
.mod_author .author-description {
  font-size: 0.875rem;
}

.mod_newslist_relevant .articles-relevant {
  border-bottom: 2px solid #EDF2C0;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 0.25em 0;
  margin-bottom: 0.5rem;
}
.mod_newslist_relevant .layout_simple a {
  color: #C7007F;
}
.mod_newslist_relevant .layout_simple a:hover, .mod_newslist_relevant .layout_simple a:focus {
  background-color: transparent;
  text-decoration: underline;
  color: #BCCF00;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination p {
  margin: 0;
}
.pagination ul {
  margin: 0;
}
.pagination li {
  display: inline-block;
  margin-right: 0.3rem;
  margin-bottom: 0.3em;
}
.pagination a,
.pagination .active {
  display: block;
  width: 2.5em;
  height: 2.5em;
  background: #F2F2F3;
  border: 1px solid #D7D9DA;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: #565656;
  line-height: 2.5em;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-size: 0.875rem;
}
.pagination .active {
  background: #565656;
  border: 1px solid #565656;
  color: #F2F2F3;
}
.pagination a.next,
.pagination a.previous,
.pagination a.first,
.pagination a.last {
  width: auto;
  padding: 0 0.5em;
}
.pagination a:hover,
.pagination a:focus {
  background: #565656;
  border: 1px solid #565656;
  color: #fff;
}

.iframe__bookings {
  height: 2200px;
}
@media screen and (min-width: 63.8125em) {
  .iframe__bookings {
    height: 1600px;
  }
}
