/* Document
 * ========================================================================== */

/**
 * Add border box sizing in all browsers (opinionated).
 */

*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */

html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent /* 4 */;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */

dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */

ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */

hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */

main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

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

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */

abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

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

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */

iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */

img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */

/**
 * Collapse border spacing in all browsers (opinionated).
 */

table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */

button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */

fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */

input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */

legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */

select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */

textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */

:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct display in Edge 18- and IE.
 */

details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */

dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */

template {
  display: none;
}

/* User interaction
 * ========================================================================== */

/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

[aria-hidden="false"][hidden] {
  display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
[class^="icomoon_"]::before,
[class*=" icomoon_"]::before,
[class^="icomoon-"]::before,
[class*=" icomoon-"]::before {
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icomoon-star-empty::before {
  content: "\e939";
}
.icomoon-power::before {
  content: "\e938";
}
.icomoon-breastcancer::before {
  content: "\e937";
}
.icomoon-share::before {
  content: "\e936";
}
.icomoon-social::before {
  content: "\e936";
}
.icomoon-sun::before {
  content: "\e935";
}
.icomoon-plus::before {
  content: "\e92e";
}
.icomoon-arrow-right::before {
  content: "\e928";
}
.icomoon-arrow-left::before {
  content: "\e929";
}
.icomoon-arrow-down::before {
  content: "\e92a";
}
.icomoon-arrow-up::before {
  content: "\e92b";
}
.icomoon-zoom-out::before {
  content: "\e92c";
}
.icomoon-zoom-in::before {
  content: "\e92d";
}
.icomoon-gift::before {
  content: "\e927";
}
.icomoon-hour-glass::before {
  content: "\e925";
}
.icomoon-filter::before {
  content: "\e920";
}
.icomoon-pinterest::before {
  content: "\e91d";
}
.icomoon-facebook::before {
  content: "\e91e";
}
.icomoon-spinner::before {
  content: "\e91f";
}
.icomoon-book::before {
  content: "\e91a";
}
.icomoon-phone::before {
  content: "\e900";
}
.icomoon-reply::before {
  content: "\e901";
}
.icomoon-truck::before {
  content: "\e902";
}
.icomoon-star-full::before {
  content: "\e915";
}
.icomoon-heart::before {
  content: "\e924";
}
.icomoon-warning::before {
  content: "\e917";
}
.icomoon-info::before {
  content: "\e918";
}
.icomoon-cross::before {
  content: "\e903";
}
.icomoon-enter::before {
  content: "\e904";
}
.icomoon-exit::before {
  content: "\e905";
}
.icomoon-circle-up::before {
  content: "\e908";
}
.icomoon-circle-right::before {
  content: "\e909";
}
.icomoon-circle-down::before {
  content: "\e90a";
}
.icomoon-circle-left::before {
  content: "\e90b";
}
.icomoon-circle::before {
  content: "\e934";
}
.icomoon-heart-w::before {
  content: "\e916";
}
.icomoon-heart-o::before {
  content: "\e921";
}
.icomoon-twitter::before {
  content: "\e91c";
}
.icomoon-check::before {
  content: "\e90c";
}
.icomoon-angle-double-right::before {
  content: "\e90d";
}
.icomoon-angle-double-left::before {
  content: "\e90e";
}
.icomoon-shopping-bag::before {
  content: "\e906";
}
.icomoon-keyboard_arrow_right2::before {
  content: "\e92f";
}
.icomoon-keyboard_arrow_left::before {
  content: "\e930";
}
.icomoon-keyboard_arrow_right::before {
  content: "\e932";
}
.icomoon-navigate_next::before {
  content: "\e933";
}
.icomoon-center::before {
  content: "\e931";
}
.icomoon-percent::before {
  content: "\e926";
}
.icomoon-remove_cart::before {
  content: "\e910";
}
.icomoon-add_cart::before {
  content: "\e919";
}
.icomoon-view_mobile::before {
  content: "\e913";
}
.icomoon-view_list::before {
  content: "\e90f";
}
.icomoon-view_gallery::before {
  content: "\e911";
}
.icomoon-keyboard_arrow_up::before {
  content: "\e907";
}
.icomoon-keyboard_arrow_down::before {
  content: "\e91b";
}
.icomoon-pin-outline::before {
  content: "\e922";
}
.icomoon-pin-filled::before {
  content: "\e923";
}
.icomoon-add_shopping_cart::before {
  content: "\e854";
}
.icomoon-shopping_cart::before {
  content: "\e8cc";
}
.icomoon-menu::before {
  content: "\e5d2";
}
.icomoon-person::before {
  content: "\e7fd";
}
.icomoon-search::before {
  content: "\e8b6";
}
.icomoon-discount::before {
  content: "\e914";
}
.icomoon-mail::before {
  content: "\e912";
}
@font-face {
  font-family: 'icomoon';
  src: url('https://www.aphrodite-dessous.de/share/shoporderclient/less/../css/icomoon/fonts/icomoon.eot?oqorok');
  src: url('https://www.aphrodite-dessous.de/share/shoporderclient/less/../css/icomoon/fonts/icomoon.woff2?oqorok') format('woff2'), url('https://www.aphrodite-dessous.de/share/shoporderclient/less/../css/icomoon/fonts/icomoon.woff?oqorok') format('woff'), url('https://www.aphrodite-dessous.de/share/shoporderclient/less/../css/icomoon/fonts/icomoon.ttf?oqorok') format('truetype'), url('https://www.aphrodite-dessous.de/share/shoporderclient/less/../css/icomoon/fonts/icomoon.svg?oqorok#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://www.aphrodite-dessous.de/share/shoporderclient/css/fonts/roboto/roboto-v20-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Roboto'), local('Roboto-Regular'),
       url('https://www.aphrodite-dessous.de/share/shoporderclient/css/fonts/roboto/roboto-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('https://www.aphrodite-dessous.de/share/shoporderclient/css/fonts/roboto/roboto-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('https://www.aphrodite-dessous.de/share/shoporderclient/css/fonts/roboto/roboto-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('https://www.aphrodite-dessous.de/share/shoporderclient/css/fonts/roboto/roboto-v20-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('https://www.aphrodite-dessous.de/share/shoporderclient/css/fonts/roboto/roboto-v20-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Roboto Bold'), local('Roboto-Bold'),
       url('https://www.aphrodite-dessous.de/share/shoporderclient/css/fonts/roboto/roboto-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('https://www.aphrodite-dessous.de/share/shoporderclient/css/fonts/roboto/roboto-v20-latin-700.woff') format('woff'), /* Modern Browsers */
       url('https://www.aphrodite-dessous.de/share/shoporderclient/css/fonts/roboto/roboto-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('https://www.aphrodite-dessous.de/share/shoporderclient/css/fonts/roboto/roboto-v20-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}
@font-face {
  font-family: 'Abril Fatface';
  font-style: normal;
  font-weight: 400;
  src: url('https://www.aphrodite-dessous.de/share/shoporderclient/css/fonts/abril-fatface/abril-fatface-v9-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Abril Fatface'), local('AbrilFatface-Regular'),
       url('https://www.aphrodite-dessous.de/share/shoporderclient/css/fonts/abril-fatface/abril-fatface-v9-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('https://www.aphrodite-dessous.de/share/shoporderclient/css/fonts/abril-fatface/abril-fatface-v9-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('https://www.aphrodite-dessous.de/share/shoporderclient/css/fonts/abril-fatface/abril-fatface-v9-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('https://www.aphrodite-dessous.de/share/shoporderclient/css/fonts/abril-fatface/abril-fatface-v9-latin-regular.svg#AbrilFatface') format('svg'); /* Legacy iOS */
}
@media screen and (min-width: 1024px) {
  .centerHelper {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Fading-Effekt */
@-webkit-keyframes fade-effect-2 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-effect-2 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade-effect-3 {
  0% {
    opacity: 0;
  }
  7.5% {
    opacity: 1;
  }
  25.83% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-effect-3 {
  0% {
    opacity: 0;
  }
  7.5% {
    opacity: 1;
  }
  25.83% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade-effect-4 {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-effect-4 {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* allgemeiner Button */
/* global css customs properties */
:root {
  --multiplicator: 0;
  --moduleMarginTopFactor: 1;
  --headlineFontSizeFactor: 6px;
  --headlineFontSizePlus: 0px;
  --moduleMarginFactor: 4px;
  --moduleMarginPlus: 0px;
}
@media screen and (min-width: 660px) {
  :root {
    --multiplicator: 1;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --multiplicator: 2;
  }
}
/* Abstände vergrößern */
.margin-125 {
  --moduleMarginTopFactor: 1.25;
}
.margin-150 {
  --moduleMarginTopFactor: 1.5;
}
.margin-175 {
  --moduleMarginTopFactor: 1.75;
}
.margin-200 {
  --moduleMarginTopFactor: 2;
}
.margin-225 {
  --moduleMarginTopFactor: 2.25;
}
.margin-250 {
  --moduleMarginTopFactor: 2.5;
}
.margin-275 {
  --moduleMarginTopFactor: 2.75;
}
.margin-300 {
  --moduleMarginTopFactor: 3;
}
.margin-325 {
  --moduleMarginTopFactor: 3.25;
}
.margin-350 {
  --moduleMarginTopFactor: 3.5;
}
/*
 * Platzhalter-Styles
 * - muss so getrennt geschrieben werden
 */
/*
 * Selection-Styles
 */
/*
 * invalid-Styles
 */
/*
 * (Firefox-) SelectBox-Styles überschreiben
 */
/* BASIC */
html,
body {
  min-height: 100%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
body {
  min-width: 320px;
  font-size: 16px;
  font-family: Roboto, Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #000000;
  background-color: #ffffff;
}
input[type="radio"] + label:focus,
input[type="radio"] + label:hover,
input[type="checkbox"] + label:focus,
input[type="checkbox"] + label:hover {
  cursor: pointer;
}
a {
  color: inherit;
}
p {
  padding: 0;
  margin: 0;
}
table {
  width: 100%;
}
img {
  vertical-align: middle;
}
.center {
  text-align: center;
}
.justify-center {
  text-align: justify;
  -moz-text-align-last: center;
  -ms-text-align-last: center;
  text-align-last: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.justify {
  text-align: justify;
}
.hidden {
  display: none !important;
}
.invisible {
  visibility: hidden;
}
.disabled {
  cursor: default;
  opacity: 0.4;
}
::placeholder {
  color: inherit;
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}
:focus::placeholder {
  opacity: 0.5;
}
::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}
:focus::-webkit-input-placeholder {
  opacity: 0.5;
}
::-moz-placeholder {
  color: inherit;
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}
:focus::-moz-placeholder {
  opacity: 0.5;
}
:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}
:focus:-ms-input-placeholder {
  opacity: 0.5;
}
select:focus {
  outline: none;
}
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000000;
}
select:-moz-focusring * {
  color: #000000;
  text-shadow: none;
}
/* STATE MESSAGES */
.msg-error,
.message--error {
  color: #960045;
}
.msg-success,
.message--success {
  color: #617d4b;
}
.message--waiting {
  color: #777777;
}
body {
  font-weight: 400;
  /* alles ausblenden, was nicht von uns ist (FuckAdBlock via Facebook-Javascript) */
}
body > div:not(.page):not(.popups):not(.button--toTop) {
  display: none;
}
a {
  display: inline-block;
}
b,
strong {
  font-weight: 700;
}
fieldset {
  margin: 0;
  padding: 0;
  border: none;
}
.flexcontainer {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.flex-row {
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.flex-row-reverse {
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-column {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.flex-column-reverse {
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-nowrap {
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex-valignend {
  -ms-flex-item-align: end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
}
.flex-item {
  -ms-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
}
/* Cookie-Hinweis */
input[id^="cb_"] {
  display: none;
}
input {
  background-color: #ffffff;
  padding: 0px;
}
span[data-popup-viewmode] {
  cursor: pointer;
}
noscript > div:not([class]) {
  display: block !important;
  position: absolute;
  bottom: 0;
  left: 0;
}
.noscript {
  color: #000000;
  text-align: center;
  padding: 5px 10px;
  font-size: 0.875em;
}
.cookie_licence {
  padding: 6px;
  background-color: #ffffff;
}
@media screen and (min-width: 560px) {
  .cookie_licence {
    padding: 8px;
  }
}
.cookie_licence input {
  display: none;
}
.cookie_licence--container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 767px) {
  .cookie_licence--container {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cookie_licence--text {
  font-size: 0.625em;
  line-height: 1.2;
  text-align: justify;
}
.cookie_licence--text a {
  text-decoration: underline;
}
@media screen and (min-width: 560px) {
  .cookie_licence--text {
    font-size: 0.75em;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .cookie_licence--text {
    font-size: 0.8125em;
    -ms-flex: 1 1 100%;
    -webkit-flex: 1 1 100%;
    flex: 1 1 100%;
    -ms-flex-item-align: center;
    -webkit-align-self: center;
    align-self: center;
  }
}
.cookie_licence--subcontainer {
  width: 100%;
  text-align: right;
  font-size: 0.875em;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.cookie_licence--subcontainer > * {
  display: block;
}
@media screen and (max-width: 767px) {
  .cookie_licence--subcontainer {
    margin-top: 6px;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .cookie_licence--subcontainer > * + * {
    margin-right: 6px;
  }
}
@media screen and (min-width: 768px) {
  .cookie_licence--subcontainer {
    width: 160px;
    margin-left: 16px;
    font-size: 1em;
    text-align: center;
    -ms-flex-item-align: center;
    -webkit-align-self: center;
    align-self: center;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cookie_licence--subcontainer > * + * {
    margin-top: 8px;
  }
}
.cookie_licence--submit {
  font-weight: bold;
  border: 2px solid #333333;
  padding: 4px 8px;
  background-color: #333333;
  color: #ffffff;
  line-height: 1;
}
.cookie_licence--config {
  line-height: 1;
  color: #333333;
  border: 1px solid #999999;
  padding: 5px 22px 5px 6px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cookie_licence--config span.icomoon-keyboard_arrow_down::before {
  position: absolute;
  top: 1px;
  right: 2px;
  font-size: calc(1em + 6px);
}
@media screen and (min-width: 880px) {
  .cookie_licence--config span.icomoon-keyboard_arrow_down::before {
    right: 3px;
  }
}
@media screen and (min-width: 1024px) {
  .cookie_licence--config span.icomoon-keyboard_arrow_down::before {
    right: 4px;
  }
}
.cookie_licence--setup {
  font-size: 0.75em;
  margin-top: 6px;
}
.cookie_licence--setup > div {
  margin-top: 6px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media screen and (min-width: 560px) {
  .cookie_licence--setup > div {
    margin-top: 0;
  }
}
@media screen and (min-width: 560px) {
  .cookie_licence--setup {
    margin-top: 8px;
    font-size: 0.875em;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cookie_licence #gcb_cookie_setup:not(:checked) ~ .cookie_licence--setup {
  display: none;
}
.cookie_licence #gcb_cookie_setup:not(:checked) ~ .cookie_licence--container span.icomoon-keyboard_arrow_down::before {
  content: "\e907";
}
.cookie_licence--all {
  font-size: 0.875em;
  font-weight: bold;
  border: 2px solid #333333;
  padding: 2px 6px;
  background-color: #333333;
  color: #ffffff;
}
.cookie_licence .icomoon_cookie_licence--option {
  font-size: 0.875em;
  margin: 0 4px;
  padding: 4px;
  white-space: nowrap;
  overflow: hidden;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* IE10+11-Fix: überstehender Inhalt */
  max-width: 100%;
}
.cookie_licence .icomoon_cookie_licence--option:before {
  display: block;
  content: '';
  text-align: center;
  border: 1px solid #999999;
  background-color: #ffffff;
  margin-right: 4px;
  /* Soll Größenveränderung beim Laden vermeiden */
  width: 16px;
  height: 16px;
  min-width: 16px;
  /* Android Webkit Fix*/
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cookie_licence .icomoon_cookie_licence--option.selected::before {
  content: "\e90c";
}
.cookie_licence--button {
  font-size: 0.875em;
  font-weight: bold;
  color: #333333;
  border: 2px solid #333333;
  margin: 0 10px;
  padding: 2px 6px;
}
.cookie_licence--all:hover,
.cookie_licence--config:hover,
.cookie_licence--submit:hover,
.cookie_licence--button:hover,
.cookie_licence .icomoon_cookie_licence--option:not(.disabled):hover {
  cursor: pointer;
}
input#gcb_cookie_licence {
  display: none;
}
input#gcb_cookie_licence:checked + .page .cookie_licence {
  display: none;
}
body:not(.js-enabled) input#gcb_cookie_licence:not(:checked) + .page noscript + .cookie_licence {
  border-bottom: 1px solid #000000;
}
.page {
  background-color: #ffffff;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media screen and (min-width: 1024px) {
  .page > *:not(.header):not(.footer):not([class^="banner-fullscreen"]) {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
iframe[name^="google_"] {
  position: absolute;
  top: -1000px;
}
a {
  color: inherit;
  text-decoration: none;
  outline: none;
}
.module-wrapper:not([id*="cmsallgemein_headline"]) {
  --moduleMarginTopFactor: 0.5;
  --moduleMargin: 16px + (var(--multiplicator) * var(--moduleMarginFactor) + var(--moduleMarginPlus));
  margin: calc(var(--moduleMarginTopFactor) * var(--moduleMargin)) 0;
}
.module-wrapper:not([id*="cmsallgemein_headline"]):empty {
  margin: 0;
}
.module-wrapper:not([id*="cmsallgemein_headline"]):last-of-type {
  margin-bottom: 0;
}
.module-wrapper:not([id*="cmsallgemein_headline"])[id*="cmsallgemein_spacer"] {
  --moduleMarginTopFactor: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6,
.headline-1,
.headline-2,
.headline-3 {
  --headlineFontSize: 16px + (var(--multiplicator) * var(--headlineFontSizeFactor) + var(--headlineFontSizePlus));
  --moduleMargin: 16px + (var(--multiplicator) * var(--moduleMarginFactor) + var(--moduleMarginPlus));
  font-size: calc(var(--headlineFontSize));
  margin: calc(var(--moduleMarginTopFactor) * var(--moduleMargin)) 0 calc(var(--moduleMargin));
  padding: 0 6px;
  line-height: 1.25;
  font-weight: inherit;
  text-align: center;
}
h1,
.headline-1 {
  --headlineFontSizePlus: 4px;
  --moduleMarginPlus: 2px;
}
h2,
.headline-2 {
  --headlineFontSizePlus: 2px;
  --moduleMarginPlus: 0px;
}
h3,
h4,
h5,
h6,
.headline-3 {
  --headlineFontSizePlus: 0px;
  --moduleMarginPlus: -2px;
}
.page--modulelist {
  -ms-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media screen and (min-width: 768px) {
  .page--modulelist {
    padding: 0 6px;
  }
}
@media screen and (min-width: 1024px) {
  .page--modulelist {
    padding: 0 10px;
  }
}
.page--modulelist .headline-with-separator .heading {
  font-family: 'Abril Fatface', 'Comic Sans', 'Comic Sans MS', 'Chalkboard', 'ChalkboardSE-Regular', 'Marker Felt', 'Purisa', 'URW Chancery L', cursive;
  font-size: 2.5em;
}
.page--modulelist .headline-with-separator .heading::after,
.page--modulelist .headline-with-separator .heading::before {
  content: '\2A33';
  padding: 0 25px;
}
@media screen and (max-width: 879px) {
  .page--modulelist .headline-with-separator .heading {
    font-size: 2em;
  }
}
@media screen and (max-width: 659px) {
  .page--modulelist .headline-with-separator .heading {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 559px) {
  .page--modulelist .headline-with-separator .heading {
    font-size: 20px;
  }
  .page--modulelist .headline-with-separator .heading::after,
  .page--modulelist .headline-with-separator .heading::before {
    content: '';
    padding: 0;
  }
}
.element-text {
  padding: 0 6px;
  text-align: justify;
  font-size: 14px;
}
.element-text a {
  text-decoration: underline;
}
.element-text ul {
  line-height: 1.75;
}
.element-anchor {
  height: 0px;
}
.element-spacer hr {
  margin: 0;
  padding: 0;
  border-width: 1px 0 0;
  border-color: #666666;
  border-style: solid;
}
.nodot-headline {
  font-size: 16px !important;
  line-height: 1.25 !important;
  padding: 0 6px !important;
  margin: 14px 0 !important;
  font-weight: inherit !important;
  text-align: center !important;
}
@media screen and (min-width: 660px) {
  .nodot-headline {
    font-size: 19px !important;
    margin: 18px 0 !important;
  }
}
@media screen and (min-width: 1024px) {
  .nodot-headline {
    font-size: 22px !important;
    margin: 22px 0 !important;
  }
}
.nodot-text-intro,
.nodot-text {
  padding: 0 6px;
  text-align: justify;
  font-size: 14px;
}
.nodot-text-intro ul,
.nodot-text ul {
  margin: 10px 0 0 10px;
}
.nodot-text-intro a,
.nodot-text a {
  display: inline;
  text-decoration: underline;
}
.nodot-text-intro a:hover,
.nodot-text a:hover {
  color: #de8383;
}
@media screen and (min-width: 660px) {
  .nodot-text-intro,
  .nodot-text {
    padding: 0 10px;
  }
}
@media screen and (min-width: 1280px) {
  .nodot-text-intro {
    padding: 0;
  }
}
.breadcrumbs {
  width: 100%;
  margin: 10px 0 0;
  padding: 0 5px;
  font-size: 0.75em;
  letter-spacing: 0.5px;
}
@media screen and (min-width: 560px) {
  .breadcrumbs {
    padding: 0 10px;
    font-size: 0.8125em;
  }
  .breadcrumbs::before {
    content: 'Sie sind hier:';
    display: inline-block;
    color: #999999;
    padding-right: 4px;
  }
}
@media screen and (min-width: 768px) {
  .breadcrumbs::before {
    padding-right: 8px;
  }
}
@media screen and (min-width: 1024px) {
  .breadcrumbs {
    font-size: 0.875em;
  }
  .breadcrumbs::before {
    padding-right: 10px;
  }
}
.breadcrumbs li {
  display: inline;
  color: #666666;
}
.breadcrumbs li:not(:last-of-type)::after {
  content: '>';
  padding: 0 4px;
}
@media screen and (min-width: 768px) {
  .breadcrumbs li:not(:last-of-type)::after {
    padding: 0 8px;
  }
}
@media screen and (min-width: 1024px) {
  .breadcrumbs li:not(:last-of-type)::after {
    padding: 0 12px;
  }
}
.breadcrumbs li a:hover {
  color: #000000;
  text-decoration: underline;
}
.popups {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed !important;
  left: 0;
  top: 0;
  text-align: left;
  z-index: 200;
}
.popups > div {
  height: 100%;
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.popups .popup {
  display: block;
}
.popups .popup-overlay {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  left: 0 !important;
  top: 0 !important;
  z-index: 90;
}
.popups .popup-box {
  width: calc(100% - 12px);
  z-index: 110;
  background-color: #ffffff;
  border: 2px solid #777777;
  box-shadow: #000000 0px 0px 25px;
  margin-top: 0 !important;
}
.popups .popup-box > div {
  position: relative;
}
.popups .popup-box-small {
  max-width: 400px;
}
.popups .popup-box-medium,
.popups .popup-box-productdetail,
.popups .popup-box-productbuyable {
  max-width: 600px;
}
.popups .popup-box-large,
.popups .popup-box-watchlistinfo {
  max-width: 800px;
}
.popups .popup-box-xlarge {
  max-width: 920px;
}
.popups .popup-box .popup-heading {
  padding: 10px 25px;
  border-bottom: 1px solid #777777;
  text-align: center;
  font-weight: 700;
}
.popups .popup-box .popup-content {
  padding: 0;
}
.popups .popup-box .popup-content-wrap {
  padding: 10px 5px;
}
@media screen and (min-width: 560px) {
  .popups .popup-box .popup-content-wrap {
    padding: 10px;
  }
}
.popups .popup-box .popup-content ~ a[href]:last-of-type {
  position: absolute;
  right: 10px;
  top: 11px;
  z-index: 105;
}
.popups .popup-box .popup-content .msg {
  font-size: 0.875em;
}
.popups .popup-box .popup-content form:not(.nonpopup) label {
  display: block;
  padding: 4px 0;
}
.popups .popup-box .popup-content form:not(.nonpopup) input,
.popups .popup-box .popup-content form:not(.nonpopup) select,
.popups .popup-box .popup-content form:not(.nonpopup) textarea {
  display: block;
  resize: none;
  width: 200px;
}
.popups .popup-box .popup-content .module-wrapper:first-of-type {
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .popups .popup-box .popup-content .module-wrapper:first-of-type {
    margin-top: 12px;
  }
}
.popups .popup-box .buttons-popup {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 399px) {
  .popups .popup-box .buttons-popup {
    font-size: 0.875em;
  }
}
.popups .popup-box .buttons-popup > a[href] {
  margin-top: 15px;
}
.buttons a {
  text-decoration: none;
}
.buttons .button {
  border: solid 2px #333333;
  padding: 0px 10px;
  background-color: #ffffff;
}
.buttons .button:hover {
  background-color: #333333;
  color: #ffffff;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .buttons .button {
    padding-top: 2px;
    padding-bottom: 2px;
  }
}
.notice-minimal {
  font-size: 0.75em;
  line-height: 1.125;
}
.buttons + .notice-minimal {
  margin-top: 15px;
}
[idt^='nodot_']:empty,
[data-nodot^='nodot_']:empty {
  display: block;
}
.showcmdarr {
  width: 100% !important;
  position: fixed;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  outline: none;
  color: #ffffff;
  font-size: 0.875em;
  letter-spacing: 1px;
  text-align: center;
  font-weight: inherit;
  background-color: rgba(0, 0, 0, 0.25);
  padding: 5px 10px;
  z-index: 100;
  transition: background-color linear 0.5s;
}
.showcmdarr:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.showcmdarr::-moz-selection {
  color: #000000;
  background-color: #ffffff;
}
.showcmdarr::selection {
  color: #000000;
  background-color: #ffffff;
}
.msg--success {
  text-align: center;
  color: #617d4b;
}
.msg--error {
  text-align: center;
  color: #960045;
}
.customerinfo {
  margin: 10px 0;
  padding: 0 6px;
}
@media screen and (min-width: 560px) {
  .customerinfo {
    margin: 20px 0;
  }
}
.page > .customerinfo {
  margin-top: 0;
}
.customerinfo .msg--error,
.customerinfo .msg--success {
  font-size: 1.125em;
}
@media screen and (min-width: 560px) {
  .customerinfo .msg--error,
  .customerinfo .msg--success {
    font-size: 1.5em;
  }
}
.customerinfo .bottomnav {
  margin: 10px;
}
.customerinfo .form-row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.customerinfo .form-row label {
  display: block;
  width: 190px;
  padding: 3px 0px;
  font-weight: 700;
}
@media screen and (max-width: 479px) {
  .customerinfo .form-row label {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .customerinfo .form-row.flex-column {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .customerinfo .form-row.flex-column label {
    width: 100%;
  }
}
.customerinfo .form-row.big label {
  width: 250px;
}
@media screen and (max-width: 479px) {
  .customerinfo .form-row.big label {
    width: 100%;
  }
}
.customerinfo .form-row small {
  display: inline-block;
  width: 100%;
  font-size: 0.8125em;
}
.customerinfo .form-row span:only-child {
  font-size: 0.875em;
}
@media screen and (min-width: 768px) {
  .customerinfo .form-row span:only-child {
    padding: 0 5%;
  }
}
.customerinfo .form-row span:only-child a {
  text-decoration: underline;
}
.customerinfo .form-row .formerror {
  font-size: 0.875em;
  color: #960045;
}
@media screen and (min-width: 480px) {
  .customerinfo .form-row .formerror {
    padding-left: 190px;
  }
}
@media screen and (max-width: 767px) {
  .customerinfo .form-row .formerror {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .customerinfo .form-row .formerror {
    padding-left: 10px;
    -ms-flex-item-align: center;
    -webkit-align-self: center;
    align-self: center;
  }
}
.customerinfo .form-row + .form-row {
  margin-top: 10px;
}
.customerinfo .form-row input:not([type="radio"]):not([type="checkbox"]):not(.money),
.customerinfo .form-row select {
  width: 220px;
  height: 24px;
  padding: 0 2px;
}
.customerinfo .form-row input[type="checkbox"] {
  width: 28px;
}
.customerinfo .form-row input.money {
  height: 24px;
  width: 55px;
}
.customerinfo .form-row textarea {
  width: 100%;
}
.customerinfo .form-row .flex {
  -ms-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
}
.section--overview {
  display: none;
  margin-bottom: 25px;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .section--overview {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1024px) {
  .section--overview {
    margin-bottom: 40px;
  }
}
.section--overview span {
  color: #999999;
}
.section--list {
  margin: -(16px - 6px) 0 0;
  padding: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.section--list ul {
  margin: 0;
  padding: 0;
  font-size: 0.875em;
  list-style-type: none;
}
.section--list ul li {
  padding: 5px 0;
}
.section--list > li {
  margin-top: 10px;
}
.section--list > li[id] {
  width: 33.33%;
  font-size: 2em;
  text-align: center;
}
@media screen and (min-width: 560px) {
  .section--list > li[id] {
    width: 16.66%;
  }
}
@media screen and (min-width: 768px) {
  .section--list > li[id] {
    width: 11.11%;
  }
}
@media screen and (min-width: 1024px) {
  .section--list > li[id] {
    width: 8.33%;
  }
}
.section--list > li:not([id]) {
  width: 66.66%;
}
@media screen and (min-width: 560px) {
  .section--list > li:not([id]) {
    width: 33.33%;
  }
}
@media screen and (min-width: 768px) {
  .section--list > li:not([id]) {
    width: 22.22%;
  }
}
@media screen and (min-width: 1024px) {
  .section--list > li:not([id]) {
    width: 16.66%;
  }
}
/* bh-groessen TODO */
.table-bra-sizes,
.table-cup-sizes {
  width: calc(100% - ((16px - 10px) * 2)) !important;
  margin: 16px 6px;
  font-size: 14px;
}
@media screen and (min-width: 560px) {
  .table-bra-sizes,
  .table-cup-sizes {
    max-width: 520px;
    margin: 16px auto;
  }
}
@media screen and (min-width: 660px) {
  .table-bra-sizes,
  .table-cup-sizes {
    margin: 20px auto;
  }
}
@media screen and (min-width: 1024px) {
  .table-bra-sizes,
  .table-cup-sizes {
    margin: 24px auto;
  }
}
.align-center {
  text-align: center;
}
.lineheight25 {
  line-height: 25px;
}
.display-tab {
  display: table;
  width: 100%;
  border: 1px solid #000000;
}
.display-tab-cell {
  display: table-cell;
  vertical-align: top;
}
.row {
  display: table-row;
}
.display-tab .caption1 {
  font-weight: 700;
  padding: 6px;
}
.display-tab .caption2 {
  padding: 6px;
}
.display-tab .caption3 {
  font-weight: 700;
  padding: 6px;
  border-bottom: 2px solid #000000;
}
.display-tab .background1 {
  background-color: #dddddd;
}
.display-tab .background2 {
  background-color: #eeeeee;
}
/* bh-groessen TODO */
@media screen and (min-width: 1024px) {
  .centerHelper {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Fading-Effekt */
@-webkit-keyframes fade-effect-2 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-effect-2 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade-effect-3 {
  0% {
    opacity: 0;
  }
  7.5% {
    opacity: 1;
  }
  25.83% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-effect-3 {
  0% {
    opacity: 0;
  }
  7.5% {
    opacity: 1;
  }
  25.83% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade-effect-4 {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-effect-4 {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* allgemeiner Button */
/* global css customs properties */
:root {
  --multiplicator: 0;
  --moduleMarginTopFactor: 1;
  --headlineFontSizeFactor: 6px;
  --headlineFontSizePlus: 0px;
  --moduleMarginFactor: 4px;
  --moduleMarginPlus: 0px;
}
@media screen and (min-width: 660px) {
  :root {
    --multiplicator: 1;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --multiplicator: 2;
  }
}
/* Abstände vergrößern */
.margin-125 {
  --moduleMarginTopFactor: 1.25;
}
.margin-150 {
  --moduleMarginTopFactor: 1.5;
}
.margin-175 {
  --moduleMarginTopFactor: 1.75;
}
.margin-200 {
  --moduleMarginTopFactor: 2;
}
.margin-225 {
  --moduleMarginTopFactor: 2.25;
}
.margin-250 {
  --moduleMarginTopFactor: 2.5;
}
.margin-275 {
  --moduleMarginTopFactor: 2.75;
}
.margin-300 {
  --moduleMarginTopFactor: 3;
}
.margin-325 {
  --moduleMarginTopFactor: 3.25;
}
.margin-350 {
  --moduleMarginTopFactor: 3.5;
}
/*
 * Platzhalter-Styles
 * - muss so getrennt geschrieben werden
 */
/*
 * Selection-Styles
 */
/*
 * invalid-Styles
 */
/*
 * (Firefox-) SelectBox-Styles überschreiben
 */
.slideshow {
  width: 100%;
  position: relative;
  margin: 0 auto;
  overflow-x: hidden;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.popup-content-wrap .slideshow {
  margin-top: 4px;
}
.slideshow .sitetext {
  padding: 8px 0;
  text-align: center;
}
.slideshow [class^="icomoon-"] {
  position: absolute;
  font-size: 20px;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  z-index: 2;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 480px) {
  .slideshow [class^="icomoon-"] {
    font-size: 22px;
  }
}
@media screen and (min-width: 560px) {
  .slideshow [class^="icomoon-"] {
    font-size: 24px;
  }
}
@media screen and (min-width: 660px) {
  .slideshow [class^="icomoon-"] {
    font-size: 26px;
  }
}
@media screen and (min-width: 768px) {
  .slideshow [class^="icomoon-"] {
    font-size: 28px;
  }
}
@media screen and (min-width: 880px) {
  .slideshow [class^="icomoon-"] {
    font-size: 30px;
  }
}
.slideshow [class^="icomoon-"]::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
}
.slideshow .icomoon-keyboard_arrow_left {
  left: 0;
}
.slideshow .icomoon-keyboard_arrow_right {
  right: 0;
}
.slideshow--viewport {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.slideshow--content {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style-type: none;
}
.slideshow--content > li {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.slideshow--content > li * {
  display: inline-block;
}
.slideshow--content > li img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .centerHelper {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Fading-Effekt */
@-webkit-keyframes fade-effect-2 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-effect-2 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade-effect-3 {
  0% {
    opacity: 0;
  }
  7.5% {
    opacity: 1;
  }
  25.83% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-effect-3 {
  0% {
    opacity: 0;
  }
  7.5% {
    opacity: 1;
  }
  25.83% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade-effect-4 {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-effect-4 {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* allgemeiner Button */
/* global css customs properties */
:root {
  --multiplicator: 0;
  --moduleMarginTopFactor: 1;
  --headlineFontSizeFactor: 6px;
  --headlineFontSizePlus: 0px;
  --moduleMarginFactor: 4px;
  --moduleMarginPlus: 0px;
}
@media screen and (min-width: 660px) {
  :root {
    --multiplicator: 1;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --multiplicator: 2;
  }
}
/* Abstände vergrößern */
.margin-125 {
  --moduleMarginTopFactor: 1.25;
}
.margin-150 {
  --moduleMarginTopFactor: 1.5;
}
.margin-175 {
  --moduleMarginTopFactor: 1.75;
}
.margin-200 {
  --moduleMarginTopFactor: 2;
}
.margin-225 {
  --moduleMarginTopFactor: 2.25;
}
.margin-250 {
  --moduleMarginTopFactor: 2.5;
}
.margin-275 {
  --moduleMarginTopFactor: 2.75;
}
.margin-300 {
  --moduleMarginTopFactor: 3;
}
.margin-325 {
  --moduleMarginTopFactor: 3.25;
}
.margin-350 {
  --moduleMarginTopFactor: 3.5;
}
/*
 * Platzhalter-Styles
 * - muss so getrennt geschrieben werden
 */
/*
 * Selection-Styles
 */
/*
 * invalid-Styles
 */
/*
 * (Firefox-) SelectBox-Styles überschreiben
 */
.element-responsive-image {
  --moduleMargin: 16px + (var(--multiplicator) * var(--moduleMarginFactor) + var(--moduleMarginPlus));
  margin: calc(var(--moduleMarginTopFactor) * var(--moduleMargin) + (-16px - 4px)) 0 calc(var(--moduleMargin) + (-16px - 4px)) -20px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.element-responsive-image .content--image {
  position: relative;
  width: 100%;
  margin-top: 20px;
  margin-left: 20px;
}
.element-responsive-image .content--image > .image--link:first-child {
  display: block;
  margin: auto;
  -ms-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
.element-responsive-image .content--image > .image--link:only-child {
  height: 100%;
}
@media (any-pointer: fine) and (any-hover: hover) {
  .element-responsive-image .content--image .image--belly {
    -webkit-animation: none !important;
    animation: none !important;
  }
  .element-responsive-image .content--image .image--belly:first-of-type {
    opacity: 1 !important;
  }
  .element-responsive-image .content--image:hover .image--belly:first-of-type {
    opacity: 0 !important;
  }
  .element-responsive-image .content--image:hover .image--belly:last-of-type {
    opacity: 1 !important;
  }
}
.element-responsive-image .image--link {
  position: relative;
  max-width: 100%;
  text-align: center;
  z-index: 0;
}
.element-responsive-image .image--photo {
  display: inline-block;
  height: auto;
  max-width: 100%;
}
.element-responsive-image .image--copyright {
  position: absolute;
  bottom: 0px;
  right: 0px;
  font-size: 0.75em;
  line-height: 1;
  padding: 2px 4px;
  background-color: rgba(255, 255, 255, 0.66);
}
.element-responsive-image .image--content {
  width: 100%;
  margin: auto;
  padding: 0 1em;
}
.element-responsive-image [class^="image--container"] {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.element-responsive-image .image--headline {
  display: block;
  font-size: 1.5em;
  line-height: 1.5;
  padding: 0;
  margin: 0;
}
.element-responsive-image .image--text {
  max-width: 100%;
  padding: 0 6px;
  font-size: 0.875em;
}
.element-responsive-image .image--button {
  display: inline-block;
  width: 225px;
  max-width: 100%;
  margin-bottom: 1em;
  padding: 5px 0;
  border: solid 2px #333333;
  text-align: center;
  font-size: 0.875em;
  letter-spacing: 2px;
  transition: 0.6s;
}
@media screen and (min-width: 1024px) {
  .element-responsive-image .image--button {
    padding: 10px 0;
  }
}
.element-responsive-image .image--button:hover {
  background-color: #ffffff;
  cursor: pointer;
}
.element-responsive-image .image--belly {
  width: 100%;
  height: 28px;
  font-size: 0.75em;
  line-height: 1;
  position: absolute;
  bottom: 2%;
  background: linear-gradient(90deg, transparent 1%, rgba(255, 255, 255, 0.95), transparent 99%);
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-touch-action: none;
  touch-action: none;
  pointer-events: none;
}
@-webkit-keyframes imageBelly {
  0% {
    opacity: 0;
  }
  7.5% {
    opacity: 1;
  }
  42.5% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes imageBelly {
  0% {
    opacity: 0;
  }
  7.5% {
    opacity: 1;
  }
  42.5% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.element-responsive-image .image--belly:nth-last-of-type(2):first-of-type,
.element-responsive-image .image--belly:nth-last-of-type(2):first-of-type ~ .image--belly {
  opacity: 0;
  -webkit-animation: imageBelly 8s linear 0s infinite;
  animation: imageBelly 8s linear 0s infinite;
}
.element-responsive-image .image--belly:nth-last-of-type(2):first-of-type:last-of-type,
.element-responsive-image .image--belly:nth-last-of-type(2):first-of-type ~ .image--belly:last-of-type {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.element-responsive-image .image--belly:first-of-type {
  font-size: 1em;
  text-transform: uppercase;
}
@media screen and (min-width: 560px) {
  .element-responsive-image .image--belly {
    height: 36px;
    font-size: 0.875em;
  }
  .element-responsive-image .image--belly:first-of-type {
    font-size: 1.125em;
  }
}
.element-responsive-image[class*="images-"] .content--image {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
.element-responsive-image[class*="images-"] .image--text + .image--button {
  margin-top: 1.5em;
}
.element-responsive-image[class*="images-"] [class^="image--container"] {
  margin-top: 1em;
}
.element-responsive-image[class*="images-"] .image--content {
  padding-top: 1.5em;
  padding-bottom: 1em;
  transition: 0.6s;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 10px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.element-responsive-image[class*="images-"] .image--content:hover {
  background-color: #faedf0;
  box-shadow: none;
}
@media screen and (min-width: 660px) {
  .element-responsive-image.images-2 .content--image {
    width: calc(50% - (16px + 4px));
  }
}
@media screen and (min-width: 560px) {
  .element-responsive-image.images-3 .content--image {
    width: calc(50% - (16px + 4px));
  }
}
@media screen and (min-width: 1024px) {
  .element-responsive-image.images-3 .content--image {
    width: calc(33.33% - (16px + 4px));
  }
}
@media screen and (min-width: 480px) {
  .element-responsive-image.images-4 .content--image {
    width: calc(50% - (16px + 4px));
  }
}
@media screen and (min-width: 960px) {
  .element-responsive-image.images-4 .content--image {
    width: calc(25% - (16px + 4px));
  }
}
@media screen and (min-width: 400px) {
  .element-responsive-image.images-5 .content--image {
    width: calc(50% - (16px + 4px));
  }
}
@media screen and (min-width: 660px) {
  .element-responsive-image.images-5 .content--image {
    width: calc(33.33% - (16px + 4px));
  }
}
@media screen and (min-width: 880px) {
  .element-responsive-image.images-5 .content--image {
    width: calc(20% - (16px + 4px));
  }
}
@media screen and (min-width: 880px) {
  .element-responsive-image.images-5 .image--belly:first-of-type {
    font-size: 0.875em;
  }
}
@media screen and (min-width: 1024px) {
  .element-responsive-image.images-5 .image--belly:first-of-type {
    font-size: 1em;
  }
}
@media screen and (min-width: 1280px) {
  .element-responsive-image.images-5 .image--belly:first-of-type {
    font-size: 1.125em;
  }
}
.element-responsive-image[class*="mode-l"] .image--content,
.element-responsive-image[class*="mode-r"] .image--content {
  background-color: #faedf0;
}
.element-responsive-image[class*="mode-l"] .image--headline,
.element-responsive-image[class*="mode-r"] .image--headline {
  font-family: 'Abril Fatface', 'Comic Sans', 'Comic Sans MS', 'Chalkboard', 'ChalkboardSE-Regular', 'Marker Felt', 'Purisa', 'URW Chancery L', cursive;
}
@media screen and (max-width: 479px) {
  .element-responsive-image[class*="mode-l"] .image--content,
  .element-responsive-image[class*="mode-r"] .image--content {
    padding-top: 2em;
    padding-bottom: 1.5em;
  }
  .element-responsive-image[class*="mode-l"] [class^="image--container"],
  .element-responsive-image[class*="mode-r"] [class^="image--container"] {
    margin-top: 2em;
  }
  .element-responsive-image[class*="mode-l"] .image--headline,
  .element-responsive-image[class*="mode-r"] .image--headline {
    font-size: 2em;
  }
}
@media screen and (min-width: 480px) {
  .element-responsive-image[class*="mode-l"] .image--content,
  .element-responsive-image[class*="mode-r"] .image--content {
    padding-top: 2.5em;
    padding-bottom: 2.25em;
  }
  .element-responsive-image[class*="mode-l"] [class^="image--container"],
  .element-responsive-image[class*="mode-r"] [class^="image--container"] {
    margin-top: 2.5em;
  }
  .element-responsive-image[class*="mode-l"] .image--headline,
  .element-responsive-image[class*="mode-r"] .image--headline {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 659px) {
  .element-responsive-image[class*="mode-l"] .image--text,
  .element-responsive-image[class*="mode-r"] .image--text {
    position: relative;
    bottom: 1.5em;
  }
}
@media screen and (min-width: 660px) {
  .element-responsive-image[class*="mode-l"] .image--content,
  .element-responsive-image[class*="mode-r"] .image--content {
    width: 50%;
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    max-width: none !important;
    position: absolute;
    top: 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .element-responsive-image[class*="mode-l"] .content--image,
  .element-responsive-image[class*="mode-r"] .content--image {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .element-responsive-image[class*="mode-l"] .content--image > .image--link:first-child,
  .element-responsive-image[class*="mode-r"] .content--image > .image--link:first-child {
    width: 50%;
    margin: 0;
  }
  .element-responsive-image[class*="mode-l"] .image--headline,
  .element-responsive-image[class*="mode-r"] .image--headline {
    font-size: 2em;
    -ms-flex: 1 1 0%;
    -webkit-flex: 1 1 0%;
    flex: 1 1 0%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .element-responsive-image[class*="mode-l"] .image--headline.center,
  .element-responsive-image[class*="mode-r"] .image--headline.center {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .element-responsive-image[class*="mode-l"] .image--headline.left,
  .element-responsive-image[class*="mode-r"] .image--headline.left {
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .element-responsive-image[class*="mode-l"] .image--headline.right,
  .element-responsive-image[class*="mode-r"] .image--headline.right {
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .element-responsive-image[class*="mode-l"] [class^="image--container"],
  .element-responsive-image[class*="mode-r"] [class^="image--container"] {
    min-height: 50%;
    margin-top: 0;
  }
  .element-responsive-image[class*="mode-l"] [class^="image--container"][class*="-no-headline"],
  .element-responsive-image[class*="mode-r"] [class^="image--container"][class*="-no-headline"] {
    margin-top: auto;
    margin-bottom: auto;
    min-height: auto !important;
  }
  .element-responsive-image[class*="mode-l"] [class^="image--container"][class*="-with-text"],
  .element-responsive-image[class*="mode-r"] [class^="image--container"][class*="-with-text"] {
    min-height: 65%;
  }
  .element-responsive-image[class*="mode-l"] [class^="image--container-4"] .image--button:last-child,
  .element-responsive-image[class*="mode-r"] [class^="image--container-4"] .image--button:last-child {
    margin-bottom: 2em;
  }
  .element-responsive-image[class*="mode-l"] [class^="image--container-2"],
  .element-responsive-image[class*="mode-r"] [class^="image--container-2"] {
    min-height: 60%;
  }
  .element-responsive-image[class*="mode-l"] [class^="image--container-2"][class*="-with-text"],
  .element-responsive-image[class*="mode-r"] [class^="image--container-2"][class*="-with-text"] {
    min-height: 75%;
  }
  .element-responsive-image[class*="mode-l"] [class^="image--container-2"] .image--button,
  .element-responsive-image[class*="mode-r"] [class^="image--container-2"] .image--button {
    margin-bottom: 0.75em;
  }
  .element-responsive-image[class*="mode-l"] [class^="image--container-2"] .image--button:last-child,
  .element-responsive-image[class*="mode-r"] [class^="image--container-2"] .image--button:last-child {
    margin-bottom: 1.5em;
  }
  .element-responsive-image[class*="mode-l"] .image--text,
  .element-responsive-image[class*="mode-r"] .image--text {
    margin-bottom: 2em;
  }
  .element-responsive-image[class*="mode-l"] .image--text ~ .image--button:last-child,
  .element-responsive-image[class*="mode-r"] .image--text ~ .image--button:last-child {
    margin-bottom: 2em;
  }
}
@media screen and (min-width: 768px) {
  .element-responsive-image[class*="mode-l"] .image--headline,
  .element-responsive-image[class*="mode-r"] .image--headline {
    font-size: 3em;
  }
  .element-responsive-image[class*="mode-l"] .image--container-1-with-text .image--text,
  .element-responsive-image[class*="mode-r"] .image--container-1-with-text .image--text {
    margin-bottom: 2em;
  }
  .element-responsive-image[class*="mode-l"] [class^="image--container-5"] .image--button,
  .element-responsive-image[class*="mode-r"] [class^="image--container-5"] .image--button {
    margin-bottom: 1em;
  }
  .element-responsive-image[class*="mode-l"] [class^="image--container-4"] .image--button:last-child,
  .element-responsive-image[class*="mode-r"] [class^="image--container-4"] .image--button:last-child,
  .element-responsive-image[class*="mode-l"] [class^="image--container-5"] .image--button:last-child,
  .element-responsive-image[class*="mode-r"] [class^="image--container-5"] .image--button:last-child {
    margin-bottom: 2.5em;
  }
  .element-responsive-image[class*="mode-l"] .image--text,
  .element-responsive-image[class*="mode-r"] .image--text {
    margin-bottom: 4em;
  }
  .element-responsive-image[class*="mode-l"] .image--text ~ .image--button:last-child,
  .element-responsive-image[class*="mode-r"] .image--text ~ .image--button:last-child {
    margin-bottom: 3em;
  }
}
@media screen and (min-width: 1024px) {
  .element-responsive-image[class*="mode-l"] .image--headline,
  .element-responsive-image[class*="mode-r"] .image--headline {
    font-size: 4em;
  }
  .element-responsive-image[class*="mode-l"] .image--text,
  .element-responsive-image[class*="mode-r"] .image--text {
    margin-bottom: 6em;
  }
  .element-responsive-image[class*="mode-l"] .image--text ~ .image--button:last-child,
  .element-responsive-image[class*="mode-r"] .image--text ~ .image--button:last-child {
    margin-bottom: 4em;
  }
}
@media screen and (min-width: 660px) {
  .element-responsive-image[class*="mode-r"] .content--image {
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  .element-responsive-image[class*="mode-r"] .image--content {
    right: 0;
  }
  .element-responsive-image[class*="mode-l"] .content--image {
    -ms-flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .element-responsive-image[class*="mode-l"] .image--content {
    left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .element-responsive-image.mode-l34 .image--content,
  .element-responsive-image.mode-r34 .image--content {
    width: calc((100% + (16px + 4px)) / 3);
  }
  .element-responsive-image.mode-l34 .content--image > .image--link:first-child,
  .element-responsive-image.mode-r34 .content--image > .image--link:first-child {
    width: calc((100% - 10px) / 3 * 2);
  }
  .element-responsive-image.mode-l67 .image--content,
  .element-responsive-image.mode-r67 .image--content {
    width: calc((100% + (16px + 4px)) / 3 * 2);
  }
  .element-responsive-image.mode-l67 .content--image > .image--link:first-child,
  .element-responsive-image.mode-r67 .content--image > .image--link:first-child {
    width: calc((100% - (4 * (16px - 6px))) / 3);
  }
}
@media screen and (min-width: 1024px) {
  .centerHelper {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Fading-Effekt */
@-webkit-keyframes fade-effect-2 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-effect-2 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade-effect-3 {
  0% {
    opacity: 0;
  }
  7.5% {
    opacity: 1;
  }
  25.83% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-effect-3 {
  0% {
    opacity: 0;
  }
  7.5% {
    opacity: 1;
  }
  25.83% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade-effect-4 {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-effect-4 {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* allgemeiner Button */
/* global css customs properties */
:root {
  --multiplicator: 0;
  --moduleMarginTopFactor: 1;
  --headlineFontSizeFactor: 6px;
  --headlineFontSizePlus: 0px;
  --moduleMarginFactor: 4px;
  --moduleMarginPlus: 0px;
}
@media screen and (min-width: 660px) {
  :root {
    --multiplicator: 1;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --multiplicator: 2;
  }
}
/* Abstände vergrößern */
.margin-125 {
  --moduleMarginTopFactor: 1.25;
}
.margin-150 {
  --moduleMarginTopFactor: 1.5;
}
.margin-175 {
  --moduleMarginTopFactor: 1.75;
}
.margin-200 {
  --moduleMarginTopFactor: 2;
}
.margin-225 {
  --moduleMarginTopFactor: 2.25;
}
.margin-250 {
  --moduleMarginTopFactor: 2.5;
}
.margin-275 {
  --moduleMarginTopFactor: 2.75;
}
.margin-300 {
  --moduleMarginTopFactor: 3;
}
.margin-325 {
  --moduleMarginTopFactor: 3.25;
}
.margin-350 {
  --moduleMarginTopFactor: 3.5;
}
/*
 * Platzhalter-Styles
 * - muss so getrennt geschrieben werden
 */
/*
 * Selection-Styles
 */
/*
 * invalid-Styles
 */
/*
 * (Firefox-) SelectBox-Styles überschreiben
 */
[class^="banner-fullscreen"] {
  position: relative;
  margin-top: 10px;
  background-color: #de8383;
  text-align: center;
}
@media screen and (min-width: 768px) {
  body.sticky [class^="banner-fullscreen"] {
    visibility: hidden;
  }
}
[class^="banner-fullscreen"] > [class^="banner--item"] {
  display: inline-block;
  color: #ffffff;
  padding: 3px 0;
  font-size: 0.75em;
  letter-spacing: 1px;
}
[class^="banner-fullscreen"] > [class^="banner--item"]:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  [class^="banner-fullscreen"] > [class^="banner--item"]::before {
    content: '\0000a0';
  }
  [class^="banner-fullscreen"] > [class^="banner--item"] > span {
    display: inline-block;
    width: 320px;
    position: absolute;
    top: 4px;
    left: calc((100% - 320px) / 2);
  }
  [class^="banner-fullscreen"] > [class^="banner--item"] > span:first-child::before {
    content: '';
  }
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-2 > span {
    opacity: 0;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-2 > span:nth-child(1) {
    -webkit-animation: fade-effect-2 6s linear 0s infinite;
    animation: fade-effect-2 6s linear 0s infinite;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-2 > span:nth-child(2) {
    -webkit-animation: fade-effect-2 6s linear 3s infinite;
    animation: fade-effect-2 6s linear 3s infinite;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-3 > span {
    opacity: 0;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-3 > span:nth-child(1) {
    -webkit-animation: fade-effect-3 9s linear 0s infinite;
    animation: fade-effect-3 9s linear 0s infinite;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-3 > span:nth-child(2) {
    -webkit-animation: fade-effect-3 9s linear 3s infinite;
    animation: fade-effect-3 9s linear 3s infinite;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-3 > span:nth-child(3) {
    -webkit-animation: fade-effect-3 9s linear 6s infinite;
    animation: fade-effect-3 9s linear 6s infinite;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-4 > span {
    opacity: 0;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-4 > span:nth-child(1) {
    -webkit-animation: fade-effect-4 12s linear 0s infinite;
    animation: fade-effect-4 12s linear 0s infinite;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-4 > span:nth-child(2) {
    -webkit-animation: fade-effect-4 12s linear 3s infinite;
    animation: fade-effect-4 12s linear 3s infinite;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-4 > span:nth-child(3) {
    -webkit-animation: fade-effect-4 12s linear 6s infinite;
    animation: fade-effect-4 12s linear 6s infinite;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-4 > span:nth-child(4) {
    -webkit-animation: fade-effect-4 12s linear 9s infinite;
    animation: fade-effect-4 12s linear 9s infinite;
  }
}
@media screen and (min-width: 480px) {
  [class^="banner-fullscreen"] > [class^="banner--item"] {
    padding: 4px 12px;
    font-size: 1.125em;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"] > span {
    width: 480px;
    left: calc((100% - 480px) / 2);
  }
}
@media screen and (min-width: 660px) {
  [class^="banner-fullscreen"] > [class^="banner--item"] {
    font-size: 1.5em;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"] > span {
    width: 660px;
    left: calc((100% - 660px) / 2);
  }
}
@media screen and (min-width: 768px) {
  [class^="banner-fullscreen"] > [class^="banner--item"] {
    padding: 6px 12px;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-2 {
    font-size: 0.875em;
    letter-spacing: 1.5px;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-3 {
    font-size: 1.125em;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-4 {
    font-size: 0.75em;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"] > span {
    width: auto;
    top: auto;
    left: auto;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"] > span + span::before {
    content: ' || ';
  }
}
@media screen and (min-width: 880px) {
  [class^="banner-fullscreen"] > [class^="banner--item"] {
    padding: 6px 18px;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-2 {
    font-size: 1em;
  }
}
@media screen and (min-width: 1024px) {
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-2 {
    font-size: 1.125em;
    letter-spacing: 2px;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-3 {
    font-size: 1.375em;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-4 {
    font-size: 1em;
  }
}
@media screen and (min-width: 1280px) {
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-2 {
    font-size: 1.25em;
    letter-spacing: 2.5px;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-3 {
    font-size: 1.5em;
  }
  [class^="banner-fullscreen"] > [class^="banner--item"].banner--item-4 {
    font-size: 1.375em;
  }
}
@media screen and (min-width: 1024px) {
  .banner-fullscreen-no-breadcrumbs {
    margin-top: 1.125em;
  }
}
@media screen and (min-width: 1024px) {
  .centerHelper {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Fading-Effekt */
@-webkit-keyframes fade-effect-2 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-effect-2 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade-effect-3 {
  0% {
    opacity: 0;
  }
  7.5% {
    opacity: 1;
  }
  25.83% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-effect-3 {
  0% {
    opacity: 0;
  }
  7.5% {
    opacity: 1;
  }
  25.83% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade-effect-4 {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-effect-4 {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* allgemeiner Button */
/* global css customs properties */
:root {
  --multiplicator: 0;
  --moduleMarginTopFactor: 1;
  --headlineFontSizeFactor: 6px;
  --headlineFontSizePlus: 0px;
  --moduleMarginFactor: 4px;
  --moduleMarginPlus: 0px;
}
@media screen and (min-width: 660px) {
  :root {
    --multiplicator: 1;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --multiplicator: 2;
  }
}
/* Abstände vergrößern */
.margin-125 {
  --moduleMarginTopFactor: 1.25;
}
.margin-150 {
  --moduleMarginTopFactor: 1.5;
}
.margin-175 {
  --moduleMarginTopFactor: 1.75;
}
.margin-200 {
  --moduleMarginTopFactor: 2;
}
.margin-225 {
  --moduleMarginTopFactor: 2.25;
}
.margin-250 {
  --moduleMarginTopFactor: 2.5;
}
.margin-275 {
  --moduleMarginTopFactor: 2.75;
}
.margin-300 {
  --moduleMarginTopFactor: 3;
}
.margin-325 {
  --moduleMarginTopFactor: 3.25;
}
.margin-350 {
  --moduleMarginTopFactor: 3.5;
}
/*
 * Platzhalter-Styles
 * - muss so getrennt geschrieben werden
 */
/*
 * Selection-Styles
 */
/*
 * invalid-Styles
 */
/*
 * (Firefox-) SelectBox-Styles überschreiben
 */
.header {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  body.sticky .header {
    height: 188px;
  }
}
@media screen and (min-width: 1024px) {
  body.sticky .header {
    height: 217px;
  }
}
@media screen and (min-width: 1280px) {
  body.sticky .header {
    height: 225px;
  }
}
.link-logo {
  margin: 15px;
}
@media screen and (min-width: 768px) {
  .link-logo {
    width: calc(100% - 30px);
  }
  body.sticky .link-logo {
    width: initial;
    margin: 0 0 0 10px;
    padding: 4px 0;
  }
}
body:not(.sticky) .header-logo:first-of-type {
  width: 100%;
  max-width: 400px;
  height: auto;
}
body:not(.sticky) .header-logo:last-of-type {
  display: none;
}
body.sticky .header-logo:first-of-type {
  display: none;
}
body.sticky .header-logo:last-of-type {
  display: block;
}
input[id^="cb_"] {
  display: none;
}
[class^="fm_"] {
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
[class^="fm_"] .fm--item {
  display: inline-block;
}
[class^="fm_"] .fm--item--text {
  display: inline-block;
  text-decoration: none;
}
.nav-pros {
  background-color: #000000;
  color: #ffffff;
}
.fm_pros {
  font-size: 0.75em;
  line-height: 2.5;
}
.fm_pros .fm--item {
  letter-spacing: 1px;
  text-align: center;
}
.fm_pros .fm--item--text::before {
  padding-right: 4px;
}
@media screen and (max-width: 767px) {
  .fm_pros {
    display: block;
    line-height: 1.95;
  }
  .fm_pros::before {
    content: '\0000a0';
  }
  .fm_pros .fm--item {
    position: absolute;
    width: 100%;
    opacity: 0;
  }
  .fm_pros .fm--item:nth-child(1) {
    -webkit-animation: fade-effect-3 9s linear 0s infinite;
    animation: fade-effect-3 9s linear 0s infinite;
  }
  .fm_pros .fm--item:nth-child(2) {
    -webkit-animation: fade-effect-3 9s linear 3s infinite;
    animation: fade-effect-3 9s linear 3s infinite;
  }
  .fm_pros .fm--item:nth-child(3) {
    -webkit-animation: fade-effect-3 9s linear 6s infinite;
    animation: fade-effect-3 9s linear 6s infinite;
  }
}
@media screen and (min-width: 768px) {
  .fm_pros {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .fm_pros .fm--item + .fm--item {
    margin-left: 9px;
  }
}
@media screen and (min-width: 1024px) {
  .fm_pros {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1024px) {
  .fm_pros .fm--item {
    -ms-flex: 1 1 0%;
    -webkit-flex: 1 1 0%;
    flex: 1 1 0%;
  }
  .fm_pros .fm--item + .fm--item {
    margin-left: 0;
  }
}
.nav-info {
  padding: 0 6px;
}
.fm_info {
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media screen and (min-width: 1024px) {
  .fm_info {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
.fm_info > .fm--item {
  position: relative;
  background-color: #faedf0;
  font-size: 0.875em;
}
.fm_info > .fm--item:not(:hover) .fm_sub {
  display: none;
}
@media screen and (max-width: 399px) {
  .fm_info > .fm--item {
    text-align: center;
    -ms-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
  }
}
.fm_info .fm--item--text {
  padding: 3px 0;
  white-space: nowrap;
}
@media screen and (min-width: 400px) {
  .fm_info .fm--item--text {
    padding: 6px 12px;
  }
}
@media screen and (min-width: 1024px) {
  .fm_info .fm--item--text {
    padding: 9px 24px;
  }
}
.fm_info .fm--item--text:hover {
  text-decoration: underline;
}
.fm_info .fm_sub {
  position: absolute;
  width: auto;
  top: auto;
  margin-top: auto;
  margin-bottom: 0;
  padding: 0 3px;
  border-width: 0 1px 1px;
  border-color: #dddddd;
  border-style: solid;
  background-color: #ffffff;
  text-align: left;
  z-index: 10;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.fm_info .fm_sub > .fm--item {
  background-color: transparent;
  margin-top: 0;
  padding: 0 3px !important;
  border-top: 1px solid #dddddd;
  border-left-width: 0 !important;
  border-bottom-color: #ffffff;
  transition: unset;
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media screen and (min-width: 768px) {
  .fm_info .fm_sub > .fm--item:last-child {
    border-right-width: 0;
  }
}
.fm_info .fm_sub > .fm--item .fm--item--text {
  width: 100%;
  padding: 3px 0;
  letter-spacing: 0;
  border-left: 0;
}
.group-top {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (min-width: 1024px) {
  .group-top {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .group-top {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .group-top {
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  body.sticky .group-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    margin-bottom: 0;
    background-color: #ffffff;
    z-index: 25;
  }
}
@media screen and (min-width: 1024px) {
  .group-top {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .nav-logo {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .nav-logo {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.nav-basic {
  height: 40px;
  margin: 0 5px 10px;
  color: #de8383;
  line-height: 100%;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .nav-basic {
    position: relative;
  }
  #cb_search:checked ~ .group-top > .nav-basic {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 768px) {
  body.sticky .nav-basic {
    height: 32px;
    margin: 0;
    -ms-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
  }
}
@media screen and (min-width: 1024px) {
  .nav-basic {
    -ms-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
  }
}
.fm_basic {
  height: 100%;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.fm_basic .fm--item {
  position: relative;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fm_basic .fm--item:not(.__suggestions):not(.__main) {
  max-width: 85px;
  -ms-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
}
.fm_basic .fm--item:not(.__suggestions):not(.__main):hover .menu-item-main--text {
  text-decoration: underline;
}
@media screen and (min-width: 480px) {
  .fm_basic .fm--item:not(.__suggestions):not(.__main) {
    width: 85px;
  }
}
@media screen and (min-width: 768px) {
  body.sticky .fm_basic .fm--item:not(.__suggestions):not(.__main) {
    width: 60px;
    -ms-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .fm_basic .fm--item:not(.__suggestions):not(.__main) {
    max-width: 118px;
  }
}
.fm_basic .fm--item > *:not(.suggestions) {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.fm_basic .fm--item.__main {
  padding-bottom: 2px;
  color: #000000;
  -ms-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media screen and (min-width: 480px) {
  .fm_basic .fm--item.__main {
    max-width: 40px;
  }
}
@media screen and (min-width: 768px) {
  .fm_basic .fm--item.__main {
    display: none;
  }
}
.fm_basic .fm--item.__main .fm--item--text {
  position: relative;
  width: 40px;
}
.fm_basic .fm--item.__main .fm--item--text::before {
  font-size: 36px;
}
@media screen and (min-width: 480px) {
  .fm_basic .fm--item.__search {
    display: none;
  }
}
.fm_basic .fm--item.__search .fm--item--text::before {
  font-size: 31px;
}
.fm_basic .fm--item.__percent .fm--item--text::before {
  font-size: 25px;
}
body.sticky .fm_basic .fm--item.__percent .fm--item--text::before {
  font-size: 19px;
  padding-bottom: 1px;
}
.fm_basic .fm--item.__watchlist {
  min-width: 36px;
}
.fm_basic .fm--item.__watchlist .fm--item--text::before {
  font-size: 25px;
}
body.sticky .fm_basic .fm--item.__watchlist .fm--item--text::before {
  font-size: 19px;
  padding-bottom: 1px;
}
.fm_basic .fm--item.__account {
  padding-bottom: 1px;
}
.fm_basic .fm--item.__account .fm--item--text::before {
  font-size: 37px;
}
.fm_basic .fm--item.__cart .fm--item--text::before {
  font-size: 32px;
}
body.sticky .fm_basic .fm--item.__cart .fm--item--text::before {
  font-size: 24px;
}
.fm_basic .fm--item.__gift {
  min-width: 36px;
}
.fm_basic .fm--item.__gift .fm--item--text::before {
  font-size: 28px;
}
.fm_basic .fm--item.__suggestions {
  color: #333333;
}
@media screen and (max-width: 479px) {
  .fm_basic .fm--item.__suggestions {
    position: absolute;
    top: 58px;
    left: 0px;
    height: auto;
    width: 100%;
  }
  #cb_search:not(:checked) ~ .group-top > .nav-basic .fm_basic .fm--item.__suggestions {
    display: none;
  }
}
@media screen and (min-width: 480px) {
  .fm_basic .fm--item.__suggestions {
    margin-top: 8px;
    -ms-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
  }
}
@media screen and (min-width: 768px) {
  .fm_basic .fm--item.__suggestions {
    position: absolute;
    top: 30px;
    left: 5px;
    height: auto;
    margin-top: 0;
  }
  body.sticky .fm_basic .fm--item.__suggestions {
    position: static;
    top: auto;
    left: auto;
    margin: 0;
    padding-right: 37px;
  }
}
@media screen and (min-width: 1024px) {
  .fm_basic .fm--item.__suggestions {
    position: static;
    top: auto;
    left: auto;
    margin-top: 8px;
  }
}
.fm_basic .fm--item .menu-item-main--text {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -10px;
  font-size: 0.625em;
  color: #666666;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  body.sticky .fm_basic .fm--item .menu-item-main--text {
    display: none;
  }
}
.fm_basic .fm--item--text:hover {
  color: #de8383;
}
.nav-main {
  color: #333333;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .nav-main {
    visibility: hidden;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    transition: -webkit-transform 0.4s linear, visibility 0s linear 0.4s;
    transition: -ms-transform 0.4s linear, visibility 0s linear 0.4s;
    transition: transform 0.4s linear, visibility 0s linear 0.4s;
  }
  #cb_mainmenu:checked ~ .nav-main {
    visibility: visible;
    -webkit-transform: translate(0%, 0);
    transform: translate(0%, 0);
    transition-delay: 0s;
  }
}
@media screen and (max-width: 767px) {
  .nav-main {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .nav-main {
    padding: 0 6px;
    font-size: 0.8125em;
  }
  body.sticky .nav-main {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    padding: 0;
    font-size: 0.8125em;
    border-bottom: 1px solid #000000;
    border-top: 1px solid #dddddd;
    background-color: #ffffff;
  }
}
@media screen and (min-width: 1024px) {
  .nav-main {
    padding: 0 6px;
    font-size: 1em;
  }
  body.sticky .nav-main {
    font-size: 0.875em;
  }
}
@media screen and (max-width: 767px) {
  .nav-main--div {
    width: 260px;
    height: 100%;
    overflow-y: auto;
    background-color: #ffffff;
    box-shadow: 0px 0px 6px 3px #666666;
  }
}
@media screen and (min-width: 768px) {
  .nav-main--div {
    position: relative;
    z-index: 5;
  }
}
@media screen and (min-width: 1024px) {
  .nav-main--div {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1024px) {
  .nav-main--div {
    max-width: 1260px;
  }
}
@media screen and (max-width: 479px) {
  .fm_main {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .fm_main {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .fm_main {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
body.sticky .fm_main {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.fm_main > .fm--item {
  background-color: #eeeeee;
  border-bottom: 1px solid #dddddd;
}
.fm_main > .fm--item input[id^="cb_"] + label[for^="cb_"] {
  display: inline-block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fm_main > .fm--item input[id^="cb_"] + label[for^="cb_"] {
    cursor: default;
  }
}
@media screen and (max-width: 767px) {
  .fm_main > .fm--item {
    position: relative;
  }
  .fm_main > .fm--item > label .fm--item--text {
    padding-left: 12.5px;
  }
  .fm_main > .fm--item:hover > label .fm--item--text::before {
    color: #de8383;
  }
  .fm_main > .fm--item input[id^="cb_"]:checked + label[for^="cb_"] > .fm--item--text.icomoon-keyboard_arrow_down::before {
    content: "\e907";
  }
  .fm_main > .fm--item input[id^="cb_"]:checked ~ .fm_sub .fm--item {
    margin-top: 0px;
  }
}
@media screen and (min-width: 768px) {
  .fm_main > .fm--item {
    padding: 4px;
    border: 2px solid #faedf0;
    background-color: #ffffff;
    transition: border-color 0.6s;
  }
  .fm_main > .fm--item > label .fm--item--text {
    letter-spacing: 0.9px;
  }
  .fm_main > .fm--item:hover {
    border-color: #000000;
  }
  .fm_main > .fm--item .fm_sub {
    visibility: visible;
    transition: visibility 0s linear 0.3s;
  }
  .fm_main > .fm--item:not(:hover) .fm_sub {
    visibility: hidden;
    transition-delay: 0s;
  }
  body.sticky .fm_main > .fm--item {
    padding: 4px 3px;
    border: none;
  }
  body.sticky .fm_main > .fm--item:hover label > .fm--item--text {
    text-decoration: underline;
  }
}
@media screen and (min-width: 880px) {
  .fm_main > .fm--item > label .fm--item--text {
    letter-spacing: 1.2px;
  }
}
@media screen and (min-width: 1024px) {
  .fm_main > .fm--item {
    padding: 8px 10px;
  }
  body.sticky .fm_main > .fm--item {
    padding: 4px 6px;
  }
}
@media screen and (min-width: 1280px) {
  .fm_main > .fm--item {
    padding: 12px 16px;
  }
  body.sticky .fm_main > .fm--item {
    padding: 6px;
  }
  body.sticky .fm_main > .fm--item .fm_sub {
    margin-top: 6px;
  }
}
@media screen and (max-width: 767px) {
  .fm_main > .fm--item.__menu {
    position: static;
    border-top: 2px solid #333333;
    border-bottom: 2px solid #333333;
    background-color: #dddddd;
  }
  .fm_main > .fm--item.__menu .fm--item--text {
    padding-left: 12.5px;
    padding-bottom: 5px;
    margin-bottom: 3px;
  }
  .fm_main > .fm--item.__menu .fm--item--text::after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200vw;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s linear;
  }
  #cb_mainmenu:checked ~ .nav-main .fm_main > .fm--item.__menu .fm--item--text::after {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .fm_main > .fm--item.__menu {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .fm_main > .fm--item.__intro {
    display: none;
  }
}
.fm_main .fm--item--text {
  height: 100%;
  width: 100%;
  padding: 8px 0 8px 20px;
}
.fm_main .fm--item--text.__sale {
  color: #de8383;
  white-space: nowrap;
}
.fm_main .fm--item--text.icomoon-keyboard_arrow_down::before {
  top: 5px;
}
@media screen and (min-width: 480px) {
  .fm_main .fm--item--text.icomoon-keyboard_arrow_down::before {
    top: 7px;
  }
}
@media screen and (max-width: 767px) {
  .fm_main .fm--item--text.icomoon-keyboard_arrow_down::before {
    position: absolute;
    right: 3px;
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .fm_main .fm--item--text {
    padding: 0;
  }
  .fm_main .fm--item--text.icomoon-keyboard_arrow_down::before {
    content: '';
    top: auto;
  }
  .fm_main .fm--item--text:not(:hover) + .fm_sub {
    display: none;
  }
}
.fm_sub {
  overflow: hidden;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .fm_sub {
    width: 100%;
    margin-top: 6px;
    margin-bottom: 6px;
    border-top: 4px solid transparent;
    position: absolute;
    left: 0px;
    background-color: #ffffff;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  body.sticky .fm_sub {
    margin-top: 4px;
    border-top: 0px;
  }
  .fm_sub > .fm--item {
    padding-right: 12px;
    padding-bottom: 1.5em;
    border-width: 2px 0;
    border-style: solid;
    border-color: #faedf0;
    -ms-flex: 1 1 100%;
    -webkit-flex: 1 1 100%;
    flex: 1 1 100%;
  }
  .fm_sub > .fm--item.flex-rows-2 {
    -ms-flex-preferred-size: 200%;
    -webkit-flex-basis: 200%;
    flex-basis: 200%;
  }
  .fm_sub > .fm--item.flex-rows-2 .fm_sub_sub {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  .fm_sub > .fm--item.flex-rows-2 .fm_sub_sub > .fm--item:first-child {
    width: 100%;
  }
  .fm_sub > .fm--item.flex-rows-2 .fm_sub_sub > .fm--item:not(:first-child) {
    width: 50%;
  }
  .fm_sub > .fm--item.flex-rows-3 {
    -ms-flex-preferred-size: 300%;
    -webkit-flex-basis: 300%;
    flex-basis: 300%;
  }
  .fm_sub > .fm--item.flex-rows-3 .fm_sub_sub {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  .fm_sub > .fm--item.flex-rows-3 .fm_sub_sub > .fm--item:first-child {
    width: 100%;
  }
  .fm_sub > .fm--item.flex-rows-3 .fm_sub_sub > .fm--item:not(:first-child) {
    width: 33.33%;
  }
  .fm_sub > .fm--item:first-child {
    border-left-width: 2px;
    padding-left: 6px;
  }
  .fm_sub > .fm--item:last-child {
    border-right-width: 2px;
    padding-right: 6px;
  }
}
@media screen and (min-width: 1024px) {
  .fm_sub {
    margin-top: 6px;
  }
  .fm_sub > .fm--item:first-child {
    padding-left: 15px;
  }
  .fm_sub > .fm--item:last-child {
    padding-right: 15px;
  }
}
@media screen and (min-width: 1280px) {
  .fm_sub {
    margin-top: 14px;
  }
}
.fm_sub .fm--item {
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .fm_sub .fm--item {
    margin-top: calc(-1.5 * 1em - 16px);
    border-top: 1px solid #dddddd;
    transition: margin-top 0.3s linear;
  }
}
.fm_sub .fm--item--text.__main {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .fm_sub .fm--item--text {
    border-left: 7.5px solid #dddddd;
  }
  .fm_sub .fm--item--text.__main {
    border-left-color: #999999;
    padding-left: 12.5px;
    letter-spacing: 1px;
  }
  .fm_sub .fm--item--text:hover {
    border-left-color: #de8383;
  }
}
@media screen and (min-width: 768px) {
  .fm_sub .fm--item--text {
    padding: 0.25em 0px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .fm_sub .fm--item--text.white-space-normal {
    white-space: normal;
  }
  .fm_sub .fm--item--text.white-space-normal:not(.__main) {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .fm_sub .fm--item--text.__main {
    padding: 1.5em 0 0.75em;
    text-transform: uppercase;
  }
  .fm_sub .fm--item--text:not(.__main) {
    padding-left: 1em;
    letter-spacing: 0.5px;
  }
  .fm_sub .fm--item--text:not(.__main):hover {
    text-decoration: underline;
  }
}
.fm_sub_sub {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .fm_sub_sub .fm--item:first-child {
    border-top-width: 0px;
  }
  .fm_sub_sub .fm--item--text.__main.__brands a {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .fm_sub_sub .fm--item--text.__main.__brands a {
    margin-left: 6px;
    font-weight: normal;
    text-transform: none;
    text-decoration: underline;
  }
  .fm_sub_sub .fm--item--text.__brands:not(.__main) {
    text-decoration: underline;
  }
}
@media screen and (min-width: 1024px) {
  .fm_sub_sub .fm--item--text:not(.__main) {
    display: block;
  }
}
.fm_intro {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.fm_intro .fm--item {
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}
.fm_intro .fm--item:last-child {
  border-bottom-width: 0px;
}
.fm_intro .fm--item:hover .fm--item--text::before {
  color: #de8383;
}
.fm_intro .fm--item--text {
  padding-left: 12.5px;
}
.fm_intro .fm--item--text.icomoon-info::before,
.fm_intro .fm--item--text.icomoon-book::before {
  padding-top: 4px;
}
.fm_intro .fm--item--text::before {
  padding-top: 3px;
  position: absolute;
  right: 8px;
}
.suggestions {
  position: relative;
  width: calc(100% - 10px);
  border: 1px solid #dddddd;
  max-width: 260px;
  margin: 0 auto;
  text-align: left;
}
.suggestions:hover {
  border-color: #000000;
}
@media screen and (min-width: 480px) {
  .suggestions {
    padding: 4px 0;
  }
}
@media screen and (min-width: 768px) {
  .suggestions {
    width: 100%;
    margin: 0;
    padding: 0;
    border-top-width: 0;
  }
  body.sticky .suggestions {
    border-width: 0 1px;
    margin: 0 auto;
    padding: 2px 0;
  }
  body.sticky .suggestions:hover {
    border-color: #dddddd;
  }
}
@media screen and (min-width: 1024px) {
  .suggestions {
    border-top-width: 1px;
    padding: 4px 0;
    margin: 0 auto;
  }
}
.suggestions .hide-me {
  display: none;
}
.su--form {
  padding: 4px 5px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.su--button {
  padding: 0 0 0 1px;
  width: 25px;
  font-size: 1.25em;
  color: #999999;
  background-color: transparent;
  cursor: pointer;
  border: none;
}
.su--input {
  width: calc(100% - 30px);
  padding: 0 0 1px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 1em;
  line-height: normal;
}
.su--input:focus {
  outline: none;
}
.su--input::placeholder {
  color: #999999;
  font-size: 0.825em;
}
.su--input::-webkit-input-placeholder {
  color: #999999;
  font-size: 0.825em;
}
.su--input::-moz-placeholder {
  color: #999999;
  font-size: 0.825em;
}
.su--input:-ms-input-placeholder {
  color: #999999;
  font-size: 0.825em;
}
.su--input:invalid {
  box-shadow: none;
}
.su--input:-moz-submit-invalid {
  box-shadow: none;
}
.su--input:-moz-ui-invalid {
  box-shadow: none;
}
.su--list {
  position: absolute;
  left: -1px;
  right: -1px;
  top: 25px;
  margin: 0;
  padding: 2px 4px;
  list-style-type: none;
  color: #999999;
  background-color: #ffffff;
  border-width: 0 1px 1px;
  border-color: #000000;
  border-style: solid;
  z-index: 10;
}
@media screen and (min-width: 480px) {
  .su--list {
    top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .su--list {
    top: 25px;
  }
  body.sticky .su--list {
    border-color: #dddddd;
  }
}
@media screen and (min-width: 1024px) {
  .su--list {
    top: 30px;
  }
}
.su--listitem {
  display: block;
  text-decoration: none;
  padding: 2px 0;
}
.su--listitem.active {
  text-decoration: underline;
}
.num-counter {
  position: absolute;
  right: calc(50% - 2em);
  top: 0.25em;
  background-color: #ffffff;
  color: #333333;
  border: #666666 solid 1px;
  border-radius: 0.75em;
  height: 1.5em;
  width: 1.5em;
  font-size: 0.875em;
  padding-top: 2px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
body.sticky .num-counter {
  font-size: 0.75em;
  padding-top: 1px;
}
.num-counter[data-num=""],
.num-counter[data-num="0"] {
  display: none;
}
.footer {
  position: relative;
  margin-top: 20px;
  line-height: 1.75;
  -ms-flex-order: -1;
  -webkit-order: -1;
  order: -1;
}
.footer .fm_pros > .fm--item {
  -ms-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .footer .fm_pros > .fm--item {
    opacity: 0;
  }
  .footer .fm_pros > .fm--item:nth-child(1) {
    -webkit-animation: fade-effect-4 12s linear 0s infinite;
    animation: fade-effect-4 12s linear 0s infinite;
  }
  .footer .fm_pros > .fm--item:nth-child(2) {
    -webkit-animation: fade-effect-4 12s linear 3s infinite;
    animation: fade-effect-4 12s linear 3s infinite;
  }
  .footer .fm_pros > .fm--item:nth-child(3) {
    -webkit-animation: fade-effect-4 12s linear 6s infinite;
    animation: fade-effect-4 12s linear 6s infinite;
  }
  .footer .fm_pros > .fm--item:nth-child(4) {
    -webkit-animation: fade-effect-4 12s linear 9s infinite;
    animation: fade-effect-4 12s linear 9s infinite;
  }
}
@media screen and (min-width: 768px) {
  .footer .fm_pros > .fm--item + .fm--item {
    margin-left: 15px;
  }
}
@media screen and (min-width: 480px) {
  .footer {
    margin-top: 25px;
  }
}
@media screen and (min-width: 660px) {
  .footer {
    margin-top: 30px;
  }
}
@media screen and (min-width: 880px) {
  .footer {
    margin-top: 35px;
  }
}
.nav-footer {
  padding: 0 6px 25px;
  background-color: #faedf0;
  /* verlängerte Rückgabefrist Weihnachten */
}
.nav-footer .shoprating {
  text-align: center;
  margin-top: 25px;
  font-size: 0.75em;
}
.nav-footer div#vrf {
  text-align: center;
  margin-top: 25px;
  font-size: 0.9em;
}
.fm_footer {
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media screen and (min-width: 1024px) {
  .fm_footer {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
.fm_footer .fm--item {
  width: 100%;
  margin-top: 10px;
}
.fm_footer .fm--item:not(.__signs) {
  padding: 0 10px;
}
.fm_footer .fm--item.__signs {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
@media screen and (max-width: 659px) {
  .fm_footer .fm--item.__signs {
    margin-top: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .fm_footer .fm--item.__signs {
    -ms-flex-direction: column !important;
    -webkit-flex-direction: column !important;
    flex-direction: column !important;
  }
}
.fm_footer .fm--item.__signs .fm--item--text {
  text-align: center;
}
@media screen and (max-width: 659px) {
  .fm_footer .fm--item.__signs .fm--item--text + .fm--item--text {
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) {
  .fm_footer .fm--item.__signs .fm--item--text {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .fm_footer .fm--item.__signs .fm--item--text {
    width: 100%;
  }
}
@media screen and (min-width: 660px) {
  .fm_footer .fm--item.__signs {
    width: 100%;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
@media screen and (min-width: 480px) {
  .fm_footer .fm--item {
    width: 50%;
  }
}
@media screen and (min-width: 660px) {
  .fm_footer .fm--item {
    margin-top: 25px;
  }
  .fm_footer .fm--item:not(.__signs) {
    width: 33.33%;
  }
}
@media screen and (min-width: 1024px) {
  .fm_footer .fm--item {
    width: 25% !important;
  }
}
.fm_footer .fm--item--text {
  display: block;
  font-size: 14px;
}
.fm_footer .fm--item--text.__main {
  margin-bottom: 6px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .fm_footer .fm--item--text.__main {
    margin-bottom: 12px;
    font-size: 20px;
  }
}
