/* based on A Modern CSS Reset
https://dev.to/hankchizljaw/a-modern-css-reset-6p3 */

/* Box sizing rules */

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

/* Remove default padding */

ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */

html{
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
  max-width: 100%;
  display: block;
  height: auto;
  /* to image can be useful with svg images. I had some issues with brand logo and illustrations in content. */
}

/* Natural flow and rhythm in articles by default */

article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    /* animation: unset | revert | initial !important;
            transition: unset | revert | initial !important;
            scroll-behavior: unset | revert | initial !important; */
  }
}

/* legacy reset styles */

a,
a:hover,
a:link,
a:visited {
  color    : inherit;
}

ul {
  list-style: none
}

/* TODO maybe move to image module */

img {
  border                 : none;
  height                 : auto;
  line-height            : 100%;
  outline                : transparent solid 1px;
  vertical-align         : top;
  box-user-select        : none;
  -webkit-transform-style        : preserve-3d;
  transform-style        : preserve-3d;
  -ms-interpolation-mode : bicubic;
}

blockquote,
q {
  quotes: 'ÔÇ£''ÔÇØ'
}

q:lang(de) {
  quotes: 'ÔÇ×''ÔÇ£'
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: '';
  content: none
}

/* TODO check if this legacy resets below are needed anymore */

abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  /* margin        : 0; */
  /* padding       : 0; */
  /*  border        : none;*/
  /*  outline       : 0;*/
  background    : 0 0;
  /* font-size     : 100%;
  font-weight   : 400; */
  white-space   : normal;
  line-height   : 1.25em;
  vertical-align: top
}

button,
input,
optgroup,
option,
select,
textarea {
  margin     : 0;
  padding    : 0;
  /* font-family: inherit;
  font-size  : inherit;
  font-style : inherit;
  font-weight: inherit;
  box-shadow : none */
}

table {
  border-collapse: separate;
  border-spacing : 0
}

caption,
td,
th {
  text-align : left;
  font-weight: 400
}

/* custom media queries */

:root{
  --header-sm-height: 80px;
  --base-font-family : 'Source Sans Pro', sans-serif;
  --base-font-family-condensed: 'Playfair Display', serif;
  --base-font-family-alternative: 'Playfair Display', serif;
  --base-font-size : 18px;
  --base-line-height : 1.4em;
  /* max content container width */
  --container-max-width-tab : 850px;
  --container-max-width-large : 1150px;
  /* paddings */
  --base-padding: 30px;
  /* navigation */
  --font-size-nav-links-desktop : 2rem;
  --font-size-nav-links-mobile : 1rem;
  /* brand colors */
  --brand-color-primary : #FFF;
  --brand-color-secondary : #95866E;
  --brand-color-dark : #23282;
  --white-color : #FFFFFF;
  --neutral-color: #333333;
  --warn-color : #ff0000;
  --success-color : #34A900;
  --brand-color-accent : var(--brand-color-primary,red);
  --brand-color-gray : #999;
  /*  mixins*/
  --input-border-color : var(--brand-color-primary ,#a9a9a9);
  --input-border-color-focus : var(--brand-color-primary ,#a9a9a9);
  /* transitions */
  --transition-all: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-color: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-fx: 10px 10px 49px -10px rgba(0, 0, 0, 0.8);
  --perm-modal-shadow: 10px 10px 49px -10px rgba(0, 0, 0, 0.8);
  --shadow-fx-soft: 30px 30px 50px 0px rgba(0, 0, 0, 0.28);
  --balloon-color: var(--brand-color-primary,black);
  /* colors */
  --body-bg-color: #F2F2F2;
  --base-text-color : var(--neutral-color,gray);
  --nav-links-color : var(--white-color ,black);
  --nav-panel-bg-color: rgba(35,40,47,0.86667);
}

.is-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.test{
  color:darkviolet;
}

.nested .test{
  color:red;
}

.test .nestedin{
  color:yellow;
}

.test.nesten{
  color:yellow;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* copy paste */

@media (max-width:575.98px) {
}

@media (min-width: 768px ) and (max-width: 1023px) {
}

@media (min-width:992px) {
}

@media (max-width:575.98px) {
  body:not(.neos-backend) .__bs_visible_on_sma__false{
    display:none !important
  }
}

@media (min-width: 768px ) and (max-width: 1023px) {
  body:not(.neos-backend) .__bs_visible_on_tab__false{
    display:none !important
  }
}

@media (min-width:992px) {
  body:not(.neos-backend) .__bs_visible_on_des__false{
    display:none !important
  }
}

strong,b,p strong,p b {
  font-weight: bold;
}

html,body {
  color: #333333;
  color: var(--base-text-color);
  font-family: 'Source Sans Pro', sans-serif;
  font-family: var(--base-font-family);
  font-size: 18px;
  font-size: var(--base-font-size);
  line-height: 1.4em;
  line-height: var(--base-line-height);
  letter-spacing: 0px;
  word-spacing: 0px;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  font-variant: normal;
  font-style: normal;
  font-weight: normal;
  text-transform: none;
  text-indent: 0px;
  vertical-align: baseline;
  text-align:left;
}

span, select, option, form, fieldset, table, tr, td, textarea, input, button, label, li, p, .p1, .p1 p, .p1 p, .p1 p, .dc7__type__p1, .om3__segment__button .om3__segment__button_button,
.om3__segment__button.__s_type__a .om3__segment__button_button,
.om3__segment__button.__s_type__b .om3__segment__button_button,
.om3__segment__button.__s_type__c .om3__segment__button_button,
.om3__segment__button.__s_type__d .om3__segment__button_button,
#content .cron-formbuilder-plugin > button, #content .cron-formbuilder-plugin > button,
.om3__segment__nform button, .om3__segment__nform button, .p2, .om3__segment__text.p2 p, .p2 p, .p2 p, .dc7__type__p2, .p3, .om3__segment__text.p3 p, .p3 p, .p3 p, .dc7__type__p3, .p4, .om3__segment__text.p4 p, .p4 p, .p4 p, .dc7__type__p4, .p5, .om3__segment__text.p5 p, .p5 p, .p5 p, .dc7__type__p5, .p6, .om3__segment__text.p6 p, .p6 p, .p6 p, .dc7__type__p6, h1, .h1, .dc7__type__h1, h2, .h2, .dc7__type__h2, h3, .h3, .dc7__type__h3, h4, .om3__segment__nform label, .om3__segment__nform label,
.om3__segment__nform h3, .om3__segment__nform h3, .h4, .dc7__type__h4, h5, .h5, .dc7__type__h5, h6, .h6, .dc7__type__h6, .content_footer, .content_footer p,.content_footer td,.content_menu .navbar li{
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  -webkit-font-feature-settings: inherit;
  font-feature-settings: inherit;
  font-variant: inherit;
  font-style: inherit;
  font-weight: inherit;
  text-transform: inherit;
  text-indent: inherit;
  vertical-align: inherit;
  text-align:inherit;
}

@media (max-width:575.98px) {
  span, select, option, form, fieldset, table, tr, td, textarea, input, button, label, li, p, .p1, .p1 p, .p1 p, .p1 p, .dc7__type__p1, .om3__segment__button .om3__segment__button_button,
.om3__segment__button.__s_type__a .om3__segment__button_button,
.om3__segment__button.__s_type__b .om3__segment__button_button,
.om3__segment__button.__s_type__c .om3__segment__button_button,
.om3__segment__button.__s_type__d .om3__segment__button_button,
#content .cron-formbuilder-plugin > button, #content .cron-formbuilder-plugin > button,
.om3__segment__nform button, .om3__segment__nform button, .p2, .om3__segment__text.p2 p, .p2 p, .p2 p, .dc7__type__p2, .p3, .om3__segment__text.p3 p, .p3 p, .p3 p, .dc7__type__p3, .p4, .om3__segment__text.p4 p, .p4 p, .p4 p, .dc7__type__p4, .p5, .om3__segment__text.p5 p, .p5 p, .p5 p, .dc7__type__p5, .p6, .om3__segment__text.p6 p, .p6 p, .p6 p, .dc7__type__p6, h1, .h1, .dc7__type__h1, h2, .h2, .dc7__type__h2, h3, .h3, .dc7__type__h3, h4, .om3__segment__nform label, .om3__segment__nform label,
.om3__segment__nform h3, .om3__segment__nform h3, .h4, .dc7__type__h4, h5, .h5, .dc7__type__h5, h6, .h6, .dc7__type__h6, .content_footer, .content_footer p,.content_footer td,.content_menu .navbar li{
    font-size: 18.85714px;
    line-height: 1.13143
  }
}

@media (min-width: 768px ) and (max-width: 1023px) {
  span, select, option, form, fieldset, table, tr, td, textarea, input, button, label, li, p, .p1, .p1 p, .p1 p, .p1 p, .dc7__type__p1, .om3__segment__button .om3__segment__button_button,
.om3__segment__button.__s_type__a .om3__segment__button_button,
.om3__segment__button.__s_type__b .om3__segment__button_button,
.om3__segment__button.__s_type__c .om3__segment__button_button,
.om3__segment__button.__s_type__d .om3__segment__button_button,
#content .cron-formbuilder-plugin > button, #content .cron-formbuilder-plugin > button,
.om3__segment__nform button, .om3__segment__nform button, .p2, .om3__segment__text.p2 p, .p2 p, .p2 p, .dc7__type__p2, .p3, .om3__segment__text.p3 p, .p3 p, .p3 p, .dc7__type__p3, .p4, .om3__segment__text.p4 p, .p4 p, .p4 p, .dc7__type__p4, .p5, .om3__segment__text.p5 p, .p5 p, .p5 p, .dc7__type__p5, .p6, .om3__segment__text.p6 p, .p6 p, .p6 p, .dc7__type__p6, h1, .h1, .dc7__type__h1, h2, .h2, .dc7__type__h2, h3, .h3, .dc7__type__h3, h4, .om3__segment__nform label, .om3__segment__nform label,
.om3__segment__nform h3, .om3__segment__nform h3, .h4, .dc7__type__h4, h5, .h5, .dc7__type__h5, h6, .h6, .dc7__type__h6, .content_footer, .content_footer p,.content_footer td,.content_menu .navbar li{
    font-size: 18.85714px;
    line-height: 1.13143
  }
}

@media (min-width:992px) {
  span, select, option, form, fieldset, table, tr, td, textarea, input, button, label, li, p, .p1, .p1 p, .p1 p, .p1 p, .dc7__type__p1, .om3__segment__button .om3__segment__button_button,
.om3__segment__button.__s_type__a .om3__segment__button_button,
.om3__segment__button.__s_type__b .om3__segment__button_button,
.om3__segment__button.__s_type__c .om3__segment__button_button,
.om3__segment__button.__s_type__d .om3__segment__button_button,
#content .cron-formbuilder-plugin > button, #content .cron-formbuilder-plugin > button,
.om3__segment__nform button, .om3__segment__nform button, .p2, .om3__segment__text.p2 p, .p2 p, .p2 p, .dc7__type__p2, .p3, .om3__segment__text.p3 p, .p3 p, .p3 p, .dc7__type__p3, .p4, .om3__segment__text.p4 p, .p4 p, .p4 p, .dc7__type__p4, .p5, .om3__segment__text.p5 p, .p5 p, .p5 p, .dc7__type__p5, .p6, .om3__segment__text.p6 p, .p6 p, .p6 p, .dc7__type__p6, h1, .h1, .dc7__type__h1, h2, .h2, .dc7__type__h2, h3, .h3, .dc7__type__h3, h4, .om3__segment__nform label, .om3__segment__nform label,
.om3__segment__nform h3, .om3__segment__nform h3, .h4, .dc7__type__h4, h5, .h5, .dc7__type__h5, h6, .h6, .dc7__type__h6, .content_footer, .content_footer p,.content_footer td,.content_menu .navbar li{
    font-family: 'Source Sans Pro', sans-serif;
    font-family: var(--base-font-family);
    font-size: 18px;
    font-size: var(--base-font-size);
    line-height: 1.4em;
    line-height: var(--base-line-height)
  }
}

/* PARAGRAPHS */

.p1, .om3__segment__text.p1 p, .p1 p, html .p1 .content p, .dc7__type__p1{
  line-height: 1.2em;
}

.p2, .om3__segment__text.p2 p, .p2 p, html .p2 .content p, .dc7__type__p2{
  line-height: 1.1em;
  font-size: 18px;
}

@media (max-width:575.98px) {
  .p2, .om3__segment__text.p2 p, .p2 p, html .p2 .content p, .dc7__type__p2{
    font-size: 15.68571px;
    line-height: 1
  }
}

@media (min-width: 768px ) and (max-width: 1023px) {
  .p2, .om3__segment__text.p2 p, .p2 p, html .p2 .content p, .dc7__type__p2{
    font-size: 17.07429px;
    line-height: 1.04343
  }
}

@media (min-width:992px) {
  .p2, .om3__segment__text.p2 p, .p2 p, html .p2 .content p, .dc7__type__p2{
    line-height: 1.1em;
    font-size: 18px
  }
}

.p3, .om3__segment__text.p3 p, .p3 p, html .p3 .content p, .dc7__type__p3{
  line-height: 1.3em;
  font-size: 16px;
}

@media (max-width:575.98px) {
  .p3, .om3__segment__text.p3 p, .p3 p, html .p3 .content p, .dc7__type__p3{
    font-size: 14.17143px;
    line-height: 1.15143
  }
}

@media (min-width: 768px ) and (max-width: 1023px) {
  .p3, .om3__segment__text.p3 p, .p3 p, html .p3 .content p, .dc7__type__p3{
    font-size: 15.26857px;
    line-height: 1.24057
  }
}

@media (min-width:992px) {
  .p3, .om3__segment__text.p3 p, .p3 p, html .p3 .content p, .dc7__type__p3{
    line-height: 1.3em;
    font-size: 16px
  }
}

.p4, .om3__segment__text.p4 p, .p4 p, html .p4 .content p, .dc7__type__p4{
  line-height: 1.3em;
  font-size: 14px;
}

@media (max-width:575.98px) {
  .p4, .om3__segment__text.p4 p, .p4 p, html .p4 .content p, .dc7__type__p4{
    font-size: 12.6px;
    line-height: 1.17
  }
}

@media (min-width: 768px ) and (max-width: 1023px) {
  .p4, .om3__segment__text.p4 p, .p4 p, html .p4 .content p, .dc7__type__p4{
    font-size: 13.44px;
    line-height: 1.248
  }
}

@media (min-width:992px) {
  .p4, .om3__segment__text.p4 p, .p4 p, html .p4 .content p, .dc7__type__p4{
    line-height: 1.3em;
    font-size: 14px
  }
}

.p5, .om3__segment__text.p5 p, .p5 p, html .p5 .content p, .dc7__type__p5{
  line-height: 1.1em;
  font-size: 13px;
  font-family: 'Playfair Display', serif;
  font-family: var(--base-font-family-condensed);
}

@media (max-width:575.98px) {
  .p5, .om3__segment__text.p5 p, .p5 p, html .p5 .content p, .dc7__type__p5{
    font-size: 11.79286px;
    line-height: 1
  }
}

@media (min-width: 768px ) and (max-width: 1023px) {
  .p5, .om3__segment__text.p5 p, .p5 p, html .p5 .content p, .dc7__type__p5{
    font-size: 12.51714px;
    line-height: 1.05914
  }
}

@media (min-width:992px) {
  .p5, .om3__segment__text.p5 p, .p5 p, html .p5 .content p, .dc7__type__p5{
    line-height: 1.1em;
    font-size: 13px;
    font-family: 'Playfair Display', serif;
    font-family: var(--base-font-family-condensed)
  }
}

.p6, .om3__segment__text.p6 p, .p6 p, html .p6 .content p, .dc7__type__p6{
  line-height: 1.1em;
  font-family: 'Playfair Display', serif;
  font-family: var(--base-font-family-alternative);
  font-size: 11px;
}

@media (max-width:575.98px) {
  .p6, .om3__segment__text.p6 p, .p6 p, html .p6 .content p, .dc7__type__p6{
    font-size: 11.79286px;
    line-height: 1
  }
}

@media (min-width: 768px ) and (max-width: 1023px) {
  .p6, .om3__segment__text.p6 p, .p6 p, html .p6 .content p, .dc7__type__p6{
    font-size: 12.51714px;
    line-height: 1.05914
  }
}

@media (min-width:992px) {
  .p6, .om3__segment__text.p6 p, .p6 p, html .p6 .content p, .dc7__type__p6{
    line-height: 1.1em;
    font-family: 'Playfair Display', serif;
    font-family: var(--base-font-family-alternative,sans-serif);
    font-size: 11px
  }
}

/* HEADLINES */

h1, .h1, .dc7__type__h1, h2, .h2, .dc7__type__h2, h3, .h3, .dc7__type__h3, h4, .h4, .dc7__type__h4, h5, .h5, .dc7__type__h5, h6, .h6, .dc7__type__h6{
  font-family: 'Playfair Display', serif;
  font-family: var(--base-font-family-condensed);
  color: #FFF;
  color: var(--brand-color-primary);
  font-weight: 300;
  letter-spacing: 0px;
  font-style: normal;
  line-height: 1em;
  /* text-transform: none;  */
}

h1, .h1, .dc7__type__h1 {
  font-size: 60px;
  line-height: 0.95em;
}

@media (max-width:575.98px) {
  h1, .h1, .dc7__type__h1 {
    font-size: 29.14286px
  }
}

@media (min-width: 768px ) and (max-width: 1023px) {
  h1, .h1, .dc7__type__h1 {
    font-size: 49.71429px
  }
}

@media (min-width:992px) {
  h1, .h1, .dc7__type__h1 {
    font-size: 60px;
    line-height: 0.95em
  }
}

h2, .h2, .dc7__type__h2 {
  font-size: 50px;
}

@media (max-width:575.98px) {
  h2, .h2, .dc7__type__h2 {
    font-size: 32.14286px
  }
}

@media (min-width: 768px ) and (max-width: 1023px) {
  h2, .h2, .dc7__type__h2 {
    font-size: 42.85714px
  }
}

@media (min-width:992px) {
  h2, .h2, .dc7__type__h2 {
    font-size: 50px
  }
}

h3, .h3, .dc7__type__h3 {
  font-size: 40px;
}

@media (max-width:575.98px) {
  h3, .h3, .dc7__type__h3 {
    font-size: 25.14286px
  }
}

@media (min-width: 768px ) and (max-width: 1023px) {
  h3, .h3, .dc7__type__h3 {
    font-size: 35.42857px;
    line-height: 1
  }
}

@media (min-width:992px) {
  h3, .h3, .dc7__type__h3 {
    font-size: 40px
  }
}

h4, .h4, .dc7__type__h4,.om3__segment__nform label,.om3__segment__nform h3 {
  font-size: 30px;
  line-height: 1.15em;
}

@media (max-width:575.98px) {
  h4, .h4, .dc7__type__h4,.om3__segment__nform label,.om3__segment__nform h3 {
    font-size: 29.14286px;
    line-height: 1
  }
}

@media (min-width: 768px ) and (max-width: 1023px) {
  h4, .h4, .dc7__type__h4,.om3__segment__nform label,.om3__segment__nform h3 {
    font-size: 27.42857px;
    line-height: 1.05143
  }
}

@media (min-width:992px) {
  h4, .h4, .dc7__type__h4,.om3__segment__nform label,.om3__segment__nform h3 {
    font-size: 30px;
    line-height: 1.15em
  }
}

h5, .h5, .dc7__type__h5 {
  font-size: 20px;
  line-height: 1.1em;
}

@media (max-width:575.98px) {
  h5, .h5, .dc7__type__h5 {
    font-size: 16px
  }
}

@media (min-width: 768px ) and (max-width: 1023px) {
  h5, .h5, .dc7__type__h5 {
    font-size: 18.85714px;
    line-height: 1.03714
  }
}

@media (min-width:992px) {
  h5, .h5, .dc7__type__h5 {
    font-size: 20px;
    line-height: 1.1em
  }
}

h6, .h6, .dc7__type__h6 ,.om3__segment__menu_navigation_elements > div > a,.om3__segment__menu_mobilenavigation_elements > div > a,.content_menu .navbar li{
  font-family: 'Playfair Display', serif;
  font-family: var(--base-font-family-condensed);
  font-size: 14px;
  line-height: 0.95em;
  font-weight: 600;
  color: #FFFFFF;
  color: var(--white-color,#ffffff);
  text-transform: uppercase;
}

@media (max-width:575.98px) {
  h6, .h6, .dc7__type__h6 ,.om3__segment__menu_navigation_elements > div > a,.om3__segment__menu_mobilenavigation_elements > div > a,.content_menu .navbar li{
    font-size: 12.32px;
    line-height: 1.056
  }
}

@media (min-width: 768px ) and (max-width: 1023px) {
  h6, .h6, .dc7__type__h6 ,.om3__segment__menu_navigation_elements > div > a,.om3__segment__menu_mobilenavigation_elements > div > a,.content_menu .navbar li{
    font-size: 13.44px;
    line-height: 1.152
  }
}

@media (min-width:992px) {
  h6, .h6, .dc7__type__h6 ,.om3__segment__menu_navigation_elements > div > a,.om3__segment__menu_mobilenavigation_elements > div > a,.content_menu .navbar li{
    font-size: 2rem;
    font-size: var(--font-size-nav-links-desktop,16px);
    line-height: 1.2em;
    font-weight: 600
    /* border: 1px solid red !important; */
  }
}

/* OVERRIDE */

.content .om3__segment__text{
  text-align:left;
}

.om3__segment h1 + h3 {
  margin-top: 0.30em;
}

html,body{
  background-color:#F2F2F2;
  background-color:var(--body-bg-color,grey);
  max-width: 100vw;
  overflow-x: hidden;
}

.content_page {
  min-height: 100vh;
  /* padding: 80px 0px 0px 0px;*/
  margin: 0 auto;
}

.dc7__modal__bs_in_modal__true .content_page {
  padding:0;
}

.dc7__modal__bs_in_modal__true .content_page > .neos-contentcollection > .om3__segment__clip{
  /*TODO SHAME!*/
  padding-top: 0 !important;
  top: 0 !important;
}

@media (max-width:575.98px) {
  .content_page {
    /*  padding: 50px 0px 0px 0px;*/
  }
}

@media (min-width: 768px ) and (max-width: 1023px) {
  .content_page {
    /*  padding: 140px 0px 0px 0px;*/
  }
}

@media (min-width:992px) {
  .content_page {
    /*  padding: 80px 0px 0px 0px;*/
  }
}

/* activate hypheenation */

.content {
  hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto
}

.dc7__modal__bs_in_modal__true .content {
  top: 0 !important;
  padding-top: 0 !important
  /* top: 0px !important;*/
}

/* Z index layering  */

.dc7__layout__zindex__1-5 {
  z-index: 10;
}

.dc7__layout__zindex__2-5 {
  z-index: 20;
}

.dc7__layout__zindex__3-5 {
  z-index: 30;
}

.dc7__layout__zindex__4-5 {
  z-index: 40;
}

.dc7__layout__zindex__5-5 {
  z-index: 50;
}

.dc7__layout__position__relative {
  position: relative !important;
}

.dc7__layout__position__absolute {
  position: absolute !important;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
}

.content {
  min-height: 100vh;
  text-align: center;
}

/* TODO next line really needed ??  */

.content h1 + p, .content h2 + p, .content h3 + p, .content h4 + p, .content h5 + p, .content h6 + p {
  margin-top: .4em;
}

/* TODO search better centering of conmtent  */

.content p {
  min-height: 1em;
}

.content p a {
  position:relative;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.content p a:hover {
  border-bottom: 1px solid transparent;
}

.content_page .om3__segment:not(.om3__segment__clip) {
  position: relative;
  display: inline-block;
  background-clip: padding-box;
  padding: calc(30px / 3);
  padding: calc(var(--base-padding, 30px) / 3);
}

@media (max-width:575.98px) {
  .content_page .om3__segment:not(.om3__segment__clip) {
    padding: calc(30px / 3 * 2);
    padding: calc(var(--base-padding, 30px) / 3 * 2)
    /* was legacy in host.css line 1452*/
  }
}

@media (min-width: 768px ) and (max-width: 1023px) {
  .content_page .om3__segment:not(.om3__segment__clip) {
    padding: calc(30px / 2);
    padding: calc(var(--base-padding, 30px) / 2)
  }
}

@media (min-width:992px) {
  .content_page .om3__segment:not(.om3__segment__clip) {
    padding: calc(30px);
    padding: calc(var(--base-padding, 30px))
  }
}

.om3__segment > .neos-contentcollection, .om3__segment > a > .neos-contentcollection {
  width: 100%;
}

._self_limited {
  /*    TODO use css variables*/
  max-width: 1150px;
  max-width: var( --container-max-width-large ,100vw);
}

@media (min-width: 768px ) and (max-width: 1023px) {
  ._self_limited {
    max-width: 850px;
    max-width: var( --container-max-width-tab ,100vw)
  }
}

.required,.help-inline{
  color:#ff0000;
  color:var(--warn-color,red) ;
}

/* FOOTER! ! */

.content_footer {
  background-color: #FFF;
  background-color: var(--brand-color-primary ,cornflowerblue);
  width: 100%;
  display:block;
  overflow: hidden;
}

.dc7__modal__bs_in_modal__true .content_footer {
  display:none !important;
}

.neos-backend .content_footer {
  display:block !important;
}

.content_footer a{
  color: #FFFFFF;
  color: var(--white-color,white);
  text-decoration: underline;
}

.content_footer a:hover{
  text-decoration: none;
}

.content_footer a:before{
  /*TODO shame!*/
  content:none !important;
}

.content_footer .om3__segment__text p{
  line-height: 1.9em !important;
}

@media (max-width:575.98px) {
  .content_footer .om3__segment__text p{
    max-width: 90%;
    margin:0 auto
  }
}

.content_footer p,.content_footer td{
  color: #FFFFFF;
  color: var(--white-color,white);
}

legacy to refator

.__s_row_id__kontaktform,
.om3__segment__contact {
  margin   : 0 0 30px;
  max-width: 900px;
  /*   display  : inline-block;*/
}

label {
  font-family: 'Playfair Display', serif;
  font-family: var(--base-font-family-condensed,sans-serif);
  color:#FFF;
  color:var(--brand-color-primary,blue);
  padding            : .5em 0 .75em;
  display            : block;
  margin             : 0 0 -.1em;
  min-height         : 2em;
  z-index            : -1;
}

label:empty {
  max-height: .25em !important;
  overflow  : hidden;
  padding   : 0 0 0 0 !important
}

select{
  padding:0 5px !important;
}

input:not([type=checkbox]):not([type=radio]),textarea,select{
  padding                   : .75em .25em;
  width                     : 100%;
  margin                    : 0 0 .5em;
  border                    : 1px solid #FFF;
  border                    : 1px solid var(--input-border-color,blue);
  /*    outline                    :3px dashed red;*/
  min-height                : 2em;
  vertical-align            : top;
}

/* border-radius             : 4px !important;*/

input:not([type=checkbox]):not([type=radio]):focus, textarea:focus, select:focus {
  /* border-bottom: 2px solid var(--input-border-color-focus,blue) !important;*/
  outline: 1px solid #FFF;
  outline: 1px solid var(--input-border-color-focus,blue);
}

input:not([type=checkbox]):not([type=radio]) option, textarea option, select option {
  padding   : .75em .25em;
  min-height: calc(2em) !important
}

textarea {
  resize: vertical;
}

input[type=checkbox] {
  margin             : 0 .5em .75em 0;
  border             : 1px solid #FFF;
  border             : 1px solid var(--input-border-color,blue);
}

fieldset{
  padding: 5px 10px;
}

@media (min-width: 768px ) and (max-width: 1023px) {
  fieldset{
    padding: 5px 20px 5px 10px
  }
}

@media (min-width:992px) {
  fieldset{
    padding: 5px 30px 5px 10px
  }
}

fieldset > div:last-child {
  border-bottom: none !important;
}

.content .om3__segment__html>form>.om3__segment {
  padding: 0 !important;
  width  : 100%;
}

.cron-formbuilder-plugin>button,
.om3__segment__button_button {
  padding            : 10px 20px;
  width              : 100%;
  -webkit-user-select        : none;
  -moz-user-select        : none;
  -ms-user-select        : none;
  user-select        : none;
  pointer-events     : all;
  cursor             : pointer;
}

.om3__segment__contact center {
  text-align: inherit !important;
  margin    : 1em 0
}

.om3__segment__contact button {
  margin: .25em 0 1em
}

/* Refactor form button , TODO better way maybe */

form{
  text-align: left;
}

form ul{
  padding:0 20px;
  margin:0;
}

form button{
  background-color: #FFF;
  background-color: var(--brand-color-primary,blue);
  color: #FFFFFF !important;
  color: var(--white-color,white) !important;
  border:2px solid #FFFFFF;
  border:2px solid var(--white-color,white);
  /* TODO still needed the reset  ?  */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: var(--transition-all);
  transition: var(--transition-all);
  padding: 8px 20px 11px 20px;
  border-collapse: collapse;
}

/* TODO obsolete rule???*/

form button:hover{
  background-color: #FFFFFF;
  background-color: var(--white-color,white);
  color: #FFF !important;
  color: var(--brand-color-primary) !important;
  border-color: #FFF;
  border-color: var(--brand-color-primary);
}

/*TODO see if this is obsoletet or is used */

.success-box {
  font-size: 36px;
  padding: 1rem;
  border: 2px solid #34A900;
  border: 2px solid var(--success-color,green);
  max-width: 1150px;
  width: 100%;
  margin: 1rem auto;
  color: #34A900;
  color: var(--success-color,green);
  background-color: #FFFFFF;
  background-color: var(--white-color,#ffffff);
}

.neos-backend .content_menu {
  display: none;
}

.neos-backend .om3__admin__info {
  position           : fixed;
  bottom             : 240px;
  left               : 100%;
  z-index            : 100000;
  text-transform     : uppercase;
  -webkit-user-select        : none;
  -moz-user-select        : none;
  -ms-user-select        : none;
  user-select        : none;
  pointer-events     : none;
  cursor             : default;
}

.neos-backend .om3__admin__info_content,.neos-backend .om3__admin__type__debug {
  color      : #FFFFFF;
  color      : var(--white-color,white);
  position   : relative;
  white-space: nowrap;
  /* legacy */
  font-family   : 'Noto Sans', sans-serif;
  font-size     : 10px;
  font-weight   : 700;
  letter-spacing: .1px;
}

.neos-backend .om3__admin__info_content span, .neos-backend .om3__admin__type__debug span {
  background-color: rgba(0, 181, 255, .9);
  margin          : 0 2px 0 0;
  white-space     : nowrap;
  padding         : 2px 8px 3px;
}

.om3__admin__smalldescription {
  font-size     : 8px;
  background    : #00B5FF;
  color         : #fff;
  padding       : 1px 5px;
  position      : relative;
  top           : -2px;
}

/* obsolete ?? */

/* .neos-tooltip {
  display       : none !important;
  visibility    : hidden !important;
  user-select   : none;
  pointer-events: none
} 

.neos ul.neos-dynatree-container ul ul ul .neos-dynatree-node {
  white-space: nowrap
}


*/

.host__productdetail {
  /*    border: 1px dotted red !important;*/
  --balloon-color: var(--brand-color-primary,black);
}

.host__productdetail.__s_childalign__left.om3__segment__clip.__s_contentverticalalign__top > .neos-contentcollection{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
  -ms-flex-direction:column;
  flex-direction:column;
}

.host__productdetail.__s_childalign__left.om3__segment__clip.__s_contentverticalalign__top > .neos-contentcollection > * {
  /*border: 2px dotted cyan !important;*/
  background-color: #FFFFFF;
  background-color: var(--white-color,white);
  width:100%;
  min-width:320px;
  min-height: 200px;
  margin-top:40px;
}

/*border: 2px dotted blue !important;*/

.host__productdetail.__s_childalign__left.om3__segment__clip.__s_contentverticalalign__top > .neos-contentcollection > *:first-of-type > .neos-contentcollection .perm-text {
  width:100%;
  padding:5px 0px;
}

.host__productdetail.__s_childalign__left.om3__segment__clip.__s_contentverticalalign__top > .neos-contentcollection > *:first-of-type > .neos-contentcollection .perm-text p{
  text-align:left !important;
  padding-left: 10px;
}

.host__productdetail.__s_childalign__left.om3__segment__clip.__s_contentverticalalign__top > .neos-contentcollection > *:first-of-type > .neos-contentcollection .perm-clip.__s_contentverticalalign__top > .neos-contentcollection{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.host__productdetail.__s_childalign__left.om3__segment__clip.__s_contentverticalalign__top > .neos-contentcollection > *:first-of-type > .neos-contentcollection .perm-clip.__s_contentverticalalign__top > .neos-contentcollection > * {
  border: 1px solid black;
  margin:0 0 10px 10px !important;
  height:200px;
  width:100px;
}

/* outline: 2px dotted red !important;*/

.host__productdetail.__s_childalign__left.om3__segment__clip.__s_contentverticalalign__top > .neos-contentcollection > *:last-of-type > .neos-contentcollection{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:end;
  -ms-flex-pack:end;
  justify-content:flex-end;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
}

.host__productdetail.__s_childalign__left.om3__segment__clip.__s_contentverticalalign__top > .neos-contentcollection > *:last-of-type > .neos-contentcollection .perm-text {
  width:100%;
  padding:5px;
}

.host__productdetail.__s_childalign__left.om3__segment__clip.__s_contentverticalalign__top > .neos-contentcollection > *:last-of-type > .neos-contentcollection .perm-text p{
  /* color:white !important;*/
}

.host__productdetail.__s_childalign__left.om3__segment__clip.__s_contentverticalalign__top > .neos-contentcollection > *:last-of-type > .neos-contentcollection .perm-clip{
  /*outline: 2px dotted red !important;*/
  border: 1px solid black;
  width:80px;
  height:40px;
  margin: 5px !important;
  white-space: nowrap;
}

.host__productdetail.__s_childalign__left.om3__segment__clip.__s_contentverticalalign__top > .neos-contentcollection > *:last-of-type > .neos-contentcollection .perm-clip > .neos-contentcollection{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.host__productdetail.__s_childalign__left.om3__segment__clip.__s_contentverticalalign__top > .neos-contentcollection > *:last-of-type > .neos-contentcollection .perm-clip > .neos-contentcollection > .perm-clip{
}

@media (min-width:992px) {
  .host__productdetail {
    /*  border: 1px dotted purple !important;*/
    /* transform: translate3d(0,0,0);*/
    position:fixed !important;
    z-index:12;
    left:0;
    top:100px
    /*user-select: none;
        pointer-events: none;*/
  }

  .host__productdetail.__s_childalign__left.om3__segment__clip.__s_contentverticalalign__top > .neos-contentcollection{
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
    -ms-flex-direction:row;
    flex-direction:row;
    -webkit-box-pack:justify !important;
    -ms-flex-pack:justify !important;
    justify-content:space-between !important;
  }

  .host__productdetail.__s_childalign__left.om3__segment__clip.__s_contentverticalalign__top > .neos-contentcollection > * {
    width:20%;
    min-height: 80vh;
    padding: 20px 20px;
  }

  .host__productdetail.__s_childalign__left.om3__segment__clip.__s_contentverticalalign__top > .neos-contentcollection > *:first-of-type > .neos-contentcollection .perm-text p{
    text-align:right !important;
  }

  .host__productdetail.__s_childalign__left.om3__segment__clip.__s_contentverticalalign__top > .neos-contentcollection > *:first-of-type > .neos-contentcollection > .perm-clip.__s_contentverticalalign__top > .neos-contentcollection{
    /*   outline: 2px dotted lightseagreen !important;*/
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
}

._item__share {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.30s;
  transition-duration: 0.30s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition-delay: 0.00s;
  transition-delay: 0.00s;
  position: fixed;
  right: 30px;
  top: 65px;
  background: transparent;
  margin: 0px 0px 40px 0px;
  z-index: 510;
  text-align: right;
}

._item__share {
  right: 15px;
  top: 55px;
}

@media (min-width:992px) {
  ._item__share {
    padding: 5px 30px 5px 10px
  }
}

._item__share._active__true {
  z-index: 1510;
}

._menucompact__1 ._item__share {
  -webkit-transform-origin: 0px 0px;
  transform-origin: 0px 0px;
  -webkit-transform: skewX(0deg) skewY(0deg) scale(1.0, 1.0) rotate(0deg) translate(0px, 10px);
  transform: skewX(0deg) skewY(0deg) scale(1.0, 1.0) rotate(0deg) translate(0px, 10px);
}

._menucompact__2 ._item__share {
  -webkit-transform-origin: 0px 0px;
  transform-origin: 0px 0px;
  -webkit-transform: skewX(0deg) skewY(0deg) scale(1.0, 1.0) rotate(0deg) translate(0px, 80px);
  transform: skewX(0deg) skewY(0deg) scale(1.0, 1.0) rotate(0deg) translate(0px, 80px);
}

._item__share__content {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.20s;
  transition-duration: 0.20s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition-delay: 0.00s;
  transition-delay: 0.00s;
  position: absolute !important;
  top: -13px;
  right: 26px;
  background-color: #FFFFFF;
  background-color: var(--white-color,white);
  border-width: 8px !important;
  border-right: 20px solid white;
  border-left: 20px solid white;
  width: 315px;
  max-width: calc(100vw - 23px);
  z-index: 1025;
  text-align: left;
  opacity: 0.00;
  overflow: hidden;
  height: 67px;
}

._item__share__content {
  position: relative;
  display: inline-block;
  border: 20px solid transparent;
}

._item__share._active__true ._item__share__content {
  opacity: 1.00;
}

._item__share__content > p {
  color: #FFF;
  color: var(--brand-color-primary,blue);
  font-size: 14px !important;
}

._item__share__content__text {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

._item__share__content__copy {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: all;
  cursor: pointer;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.20s;
  transition-duration: 0.20s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition-delay: 0.00s;
  transition-delay: 0.00s;
  background-color: #FFF;
  background-color: var(--brand-color-primary,blue);
  color: #FFFFFF !important;
  color: var(--white-color,white) !important;
  display: inline-block;
  border-radius: 2px;
  padding: 1px 6px 3px 8px;
  position: relative;
  margin-left: 6px;
  opacity: 1.00% !important;
  top: 0px;
  vertical-align: text-bottom !important;
}

._item__share__content__copy:hover {
  background-color: #121e2d !important;
}

._item__share__content__uri {
  -webkit-user-select: all;
  -moz-user-select: all;
  -ms-user-select: all;
  user-select: all;
  pointer-events: all;
  margin: 3px 0px 0px 0px;
  background-color: #F2F2F2;
  background-color: var(--body-bg-color,white);
  padding: 4px 10px 4px 4px;
  display: inline-block;
  cursor: text;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

._item__share__button {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: all;
  cursor: pointer;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.40s;
  transition-duration: 0.40s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition-delay: 0.00s;
  transition-delay: 0.00s;
  z-index: 1026;
  position: relative;
  border-radius: 50.00%;
  top: 0px;
  left: 3px;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255, 255, 255, 0);
}

._item__share__button:hover {
  -webkit-animation-name: dc7__animation__kf_pop;
  animation-name: dc7__animation__kf_pop;
  -webkit-animation-duration: 0.30s;
  animation-duration: 0.30s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-delay: 0.00s;
  animation-delay: 0.00s;
}

._item__share._active__true ._item__share__button {
  top: -13px;
  border: 21px solid white;
  background-color: white;
}

._item__share__button__img {
  width: 25px;
  height: 25px;
}

.perm-branding-label{
  display: none;
  position: fixed;
  bottom: -2px;
  left: 10%;
  z-index: 600;
  border:1px solid #FFFFFF;
  border:1px solid var(--white-color,white);
}

.dc7__modal__bs_in_modal__true .perm-branding-label{
  display:none !important;
}

@media (min-width: 768px ) and (max-width: 1023px) {
  .perm-branding-label{
    display: block
  }
}

@media (min-width:992px) {
  .perm-branding-label{
    display: block
  }
}

._host_headline_color__grey h1,._host_headline_color__grey h2,._host_headline_color__grey h3,._host_headline_color__grey h4,._host_headline_color__grey h5,._host_headline_color__grey h6,._host_headline_color__grey label,._host_headline_color__grey a{
  color: #333333;
  color: var(--base-text-color,grey);
}

._host_headline_color__blue h1,._host_headline_color__blue h2,._host_headline_color__blue h3,._host_headline_color__blue h4,._host_headline_color__blue h5,._host_headline_color__blue h6,._host_headline_color__blue label,._host_headline_color__blue a{
  color: #FFF;
  color: var(--brand-color-primary,blue);
}

._host_headline_color__white h1,._host_headline_color__white h2,._host_headline_color__white h3,._host_headline_color__white h4,._host_headline_color__white h5,._host_headline_color__white h6,._host_headline_color__white label,._host_headline_color__white a{
  color: #FFFFFF;
  color: var(--white-color,white);
}

._host_copy_color__grey p,._host_copy_color__grey li,._host_copy_color__grey a{
  color: #333333;
  color: var(--base-text-color,grey);
}

._host_copy_color__blue p,._host_copy_color__blue li,._host_copy_color__blue a{
  color: #FFF;
  color: var(--brand-color-primary,blue);
}

._host_copy_color__white p,._host_copy_color__white li,._host_copy_color__white a{
  /*   color: var(--white-color,white) !important;*/
  color: #FFFFFF;
  color: var(--white-color,white);
}

/*TODO maybe refactor using @nest */

:root{
  --nav-header-height-min : 50px;
  --nav-header-height : 100px;
}

.perm-nav-header{
  left:0;
  top:0;
  z-index: 1;
  min-height: 50px;
  min-height: var(--nav-header-height-min,50px)
  /*hide header and navigation inside modals */
}

.dc7__modal__bs_in_modal__true .perm-nav-header{
  display:none !important
}

.om3__segment__menu_navigation_burger{
  display: block;
  z-index:2;
  height:40px;
  width:40px;
}

.om3__segment__menu_navigation_burger_icon{
  color:  #FFFFFF;
  color:  var(--nav-links-color,#ffffff);
}

/* TODO refactor in _navigation.scss 309 .om3__segment__menu .om3__segment__menu_navigation_burger_icon {opacity:0} */

.om3__segment__menu_navigation_burger_icon .nav-burger-icon{
  width: 100%;
  height: auto;
  color: #999;
  color: var(--brand-color-gray,gray);
  -webkit-transform:scale(1.4);
  transform:scale(1.4)
}

[data-page-id=home] .om3__segment__menu_navigation_burger_icon .nav-burger-icon{
  color: #FFFFFF;
  color: var(--white-color,white)
}

.om3__segment__menu{
  width: 100%;
  max-width: 100vw;
  position: fixed;
  z-index: 1000;
  left:0;
  top:0;
}

/* padding:0 !important;*/

.om3__segment__menu .om3__segment__menu_navigation{
  display:-webkit-inline-box;
  display:-ms-inline-flexbox;
  display:inline-flex;
  padding:0 calc(30px / 3);
  padding:0 calc(var(--base-padding,30px) / 3);
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  justify-content:space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
  height: var(--header-sm-height,50px);
  max-width: 100%;
  -webkit-transform: none;
  transform: none;
  -webkit-transform: initial;
  transform: initial;
  background-color: #FFF;
  background-color: var(--brand-color-primary,blue);
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: var(--transition-all);
  transition: var(--transition-all);
}

.om3__segment__menu .om3__segment__menu_navigation .om3__segment__menu_navigation_elements{
  display: none;
}

.om3__segment__menu .om3__segment__menu_navigation .om3__segment__menu_navigation_elements > div {
  display: inline-block;
  /*    outline:4px solid red;*/
}

.om3__segment__menu .om3__segment__menu_navigation .om3__segment__menu_navigation_elements > div a{
  color: #FFFFFF;
  color: var(--nav-links-color,white);
  padding:calc(30px / 3);
  padding:calc(var(--base-padding,30px) / 3);
  text-decoration: none;
}

/*   SHAME*/

.om3__segment__menu._topalign__true .om3__segment__menu_navigation{
  width: 100%;
  height:50px;
  height:var(--nav-header-height-min,50px);
}

@media (min-width:992px) {
  .om3__segment__menu._topalign__true .om3__segment__menu_navigation_meta_logo{
    padding:0 calc(30px / 3 * 2);
    padding:0 calc(var(--base-padding,30px) / 3 * 2)
  }
}

.om3__segment__menu._topalign__false .perm-nav-header{
  width: 100%;
  max-width: 1150px !important;
  height:100px;
  height:var(--nav-header-height,100px);
  -webkit-transform:translate3d(0,30px,0);
  transform:translate3d(0,30px,0);
}

.om3__segment__menu.menu-type-panel .om3__segment__menu_mobilenavigation_elements{
  margin-top: 3rem;
}

.om3__segment__menu.menu-type-panel .om3__segment__menu_mobilenavigation_elements > * {
  text-align: left;
  padding: 0 ;
  margin-top : calc(1rem / 2);
  margin-top : calc(var(--font-size-nav-links-mobile,16px) / 2);
}

.om3__segment__menu.menu-type-panel .om3__segment__menu_mobilenavigation_elements > * a{
  text-decoration: none;
  position: relative;
  color: #FFFFFF;
  color: var(--nav-links-color,red);
  font-family:'Playfair Display', serif;
  font-family:var(--base-font-family-condensed);
  font-size: 1rem;
  font-size: var(--font-size-nav-links-mobile,16px);
  font-weight: 300;
  letter-spacing: 0.05em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 ;
  text-transform: none;
  text-transform: initial;
}

@media (min-width:992px) {
  .om3__segment__menu.menu-type-panel .om3__segment__menu_mobilenavigation_elements > * a{
    font-size: 2rem;
    font-size: var(--font-size-nav-links-desktop,16px);
    margin-top : calc(1rem / 1.6);
    margin-top : calc(var(--font-size-nav-links-mobile,16px) / 1.6)
  }
}

.om3__segment__menu.menu-type-panel .om3__segment__menu_navigation_elements{
  display: none !important;
}

.om3__segment__menu.menu-type-panel .om3__segment__menu_navigation{
  background-color: transparent;
  --nav-header-height-min : 50px;
}

.om3__segment__menu.menu-type-panel._topalign__false .perm-nav-header{
  max-width: 100% !important;
  -webkit-transform:translate3d(0,0,0);
  transform:translate3d(0,0,0);
}

.om3__segment__menu.menu-type-panel._topalign__false .om3__segment__menu_navigation{
  height:50px;
  height:var(--nav-header-height-min,50px);
}

.om3__segment__menu.menu-type-panel._topalign__true .perm-nav-header{
}

.om3__segment__menu.menu-type-panel._topalign__true .om3__segment__menu_navigation{
  height:50px;
  height:var(--nav-header-height-min,50px);
}

.om3__segment__menu.menu-type-panel .menu-panel{
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 50px 50px;
}

@media (min-width:992px) {
  .om3__segment__menu.menu-type-panel .menu-panel{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    max-width: 26rem
  }
}

.om3__segment__menu.menu-type-panel .menu-panel._active__true {
  -webkit-transform: translate3d(0%,0,0);
  transform: translate3d(0%,0,0);
}

.om3__segment__menu.menu-type-panel .menu-panel._active__false {
  -webkit-transform: translate3d(-100%,0,0);
  transform: translate3d(-100%,0,0);
}

.om3__segment__menu.menu-type-panel .om3__segment__menu_navigation_burger{
  margin-left: 1rem;
  margin-top: 1rem;
}

@media (min-width:992px) {
  .om3__segment__menu.menu-type-panel .om3__segment__menu_navigation_burger{
    margin-left: 1rem;
    margin-top: 1rem;
    display: block
  }
}

.om3__segment__menu.menu-type-b .perm-nav-header{
  max-width:5000px !important;
  width: 100%;
  height:100px;
  height:var(--nav-header-height,100px);
  -webkit-transform:translate3d(0,0,0);
  transform:translate3d(0,0,0);
}

.om3__segment__menu.menu-type-b.is-right-pos .perm-nav-header{
  -webkit-box-orient:horizontal;
  -webkit-box-direction:reverse;
  -ms-flex-direction:row-reverse;
  flex-direction:row-reverse;
}

.om3__segment__menu.menu-type-b._topalign__true .perm-nav-header{
  -webkit-transform:translate3d(0,-100%,0);
  transform:translate3d(0,-100%,0);
}

.om3__segment__menu.menu-type-b._topalign__false .perm-nav-header{
  /* outline:2px dashed cyan; */
}

.om3__segment__menu.menu-type-c .perm-nav-header{
  max-width: 1150px !important;
  width: 100%;
  height:100px;
  height:var(--nav-header-height,100px);
  -webkit-transform:translate3d(0,30px,0);
  transform:translate3d(0,30px,0);
  /* flex-direction:row-reverse; */
}

.om3__segment__menu.menu-type-c.is-right-pos .perm-nav-header{
  -webkit-box-orient:horizontal;
  -webkit-box-direction:reverse;
  -ms-flex-direction:row-reverse;
  flex-direction:row-reverse;
}

.om3__segment__menu.menu-type-c._topalign__true .perm-nav-header{
  -webkit-transform:translate3d(0,calc(-100% * 1),0);
  transform:translate3d(0,calc(-100% * 1),0);
}

.menu-panel{
  height: 100vh;
  width: 100vw;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  /* TODO use center util class  */
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events:initial;
  background-color: rgba(35,40,47,0.86667);
  background-color: var(--nav-panel-bg-color,rgba(39, 89, 136, 0.9));
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

@media (min-width:992px) {
  .menu-panel{
    display:none
  }
}

@media (min-width:992px) {
  .om3__segment__menu_navigation_burger{
    display: none;
  }

  .om3__segment__menu .om3__segment__menu_navigation .om3__segment__menu_navigation_elements{
    display: block;
  }
}

/*animated underline*/

/*TODO use custom properties and js to set them to make it dynamic*/

:root{
  --nav-x-current : 20px;
  --nav-w-current : 40px;
  --nav-x-1 : 20px;
  --nav-w-1 : 40px;
  --nav-x-2 : 170px;
  --nav-w-2 : 160px;
  --nav-x-3 : 250px;
  --nav-w-3 : 60px;
  --nav-x-4 : 330px;
  --nav-w-4 : 72px;
  --nav-x-5 : 420px;
  --nav-w-5 : 90px;
  --nav-x-6 : 420px;
  --nav-w-6 : 90px;
  --nav-x-7 : 420px;
  --nav-w-7 : 90px;
  --nav-x-8 : 420px;
  --nav-w-8 : 90px;
}

.om3__segment__menu_navigation_elements_line#nav-underline{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height:1px;
  position: absolute;
  /*  left:var(--nav-x-current);*/
  width:40px;
  width:var(--nav-w-current);
  left:0;
  -webkit-transform:translate(20px,0);
  transform:translate(20px,0);
  -webkit-transform:translate(var(--nav-x-current,120px),0);
  transform:translate(var(--nav-x-current,120px),0);
  background: #FFFFFF;
  background: var(--nav-links-color,white);
  bottom: -4px;
  -webkit-transition: width 0.4s ease , left 0.4s ease,width 0.4s ease,-webkit-transform 0.4s ease;
  transition: width 0.4s ease , left 0.4s ease,width 0.4s ease,-webkit-transform 0.4s ease;
  transition: transform 0.4s ease,width 0.4s ease , left 0.4s ease,width 0.4s ease;
  transition: transform 0.4s ease,width 0.4s ease , left 0.4s ease,width 0.4s ease,-webkit-transform 0.4s ease;
}

.om3__segment__menu_navigation_elements{
  position: relative;
}

/* border:1px dashed red; */

.om3__segment__menu_navigation_elements a{
  /* border:1px dashed yellow; */
  color:white;
}

.om3__segment__menu_navigation_elements > div:not(:last-child){
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* border: 1px dashed red !important;*/

.om3__segment__menu_navigation_elements > div:not(:last-child):nth-of-type(1):hover ~ #nav-underline{
  -webkit-transform:translate(20px,0);
  transform:translate(20px,0);
  -webkit-transform:translate(var(--nav-x-1,120px),0);
  transform:translate(var(--nav-x-1,120px),0);
  width:40px!important;
  width:var(--nav-w-1,40px)!important;
}

.om3__segment__menu_navigation_elements > div:not(:last-child):nth-of-type(2):hover ~ #nav-underline{
  -webkit-transform:translate3d(170px,0,0);
  transform:translate3d(170px,0,0);
  -webkit-transform:translate3d(var(--nav-x-2,20px),0,0);
  transform:translate3d(var(--nav-x-2,20px),0,0);
  width:160px!important;
  width:var(--nav-w-2,40px)!important;
}

.om3__segment__menu_navigation_elements > div:not(:last-child):nth-of-type(3):hover ~ #nav-underline{
  -webkit-transform:translate3d(250px,0,0);
  transform:translate3d(250px,0,0);
  -webkit-transform:translate3d(var(--nav-x-3,20px),0,0);
  transform:translate3d(var(--nav-x-3,20px),0,0);
  width:60px!important;
  width:var(--nav-w-3,40px)!important;
}

.om3__segment__menu_navigation_elements > div:not(:last-child):nth-of-type(4):hover ~ #nav-underline{
  -webkit-transform:translate3d(330px,0,0);
  transform:translate3d(330px,0,0);
  -webkit-transform:translate3d(var(--nav-x-4,20px),0,0);
  transform:translate3d(var(--nav-x-4,20px),0,0);
  width:72px!important;
  width:var(--nav-w-4,40px)!important;
}

.om3__segment__menu_navigation_elements > div:not(:last-child):nth-of-type(5):hover ~ #nav-underline{
  -webkit-transform:translate3d(420px,0,0);
  transform:translate3d(420px,0,0);
  -webkit-transform:translate3d(var(--nav-x-5,20px),0,0);
  transform:translate3d(var(--nav-x-5,20px),0,0);
  width:90px!important;
  width:var(--nav-w-5,40px)!important;
}

.om3__segment__menu_navigation_elements > div:not(:last-child):nth-of-type(6):hover ~ #nav-underline{
  -webkit-transform:translate3d(420px,0,0);
  transform:translate3d(420px,0,0);
  -webkit-transform:translate3d(var(--nav-x-6,20px),0,0);
  transform:translate3d(var(--nav-x-6,20px),0,0);
  width:90px!important;
  width:var(--nav-w-6,40px)!important;
}

.om3__segment__menu_navigation_elements > div:not(:last-child):nth-of-type(7):hover ~ #nav-underline{
  -webkit-transform:translate3d(420px,0,0);
  transform:translate3d(420px,0,0);
  -webkit-transform:translate3d(var(--nav-x-7,20px),0,0);
  transform:translate3d(var(--nav-x-7,20px),0,0);
  width:90px!important;
  width:var(--nav-w-7,40px)!important;
}

.om3__segment__menu_navigation_elements > div:not(:last-child):nth-of-type(8):hover ~ #nav-underline{
  -webkit-transform:translate3d(420px,0,0);
  transform:translate3d(420px,0,0);
  -webkit-transform:translate3d(var(--nav-x-8,20px),0,0);
  transform:translate3d(var(--nav-x-8,20px),0,0);
  width:90px!important;
  width:var(--nav-w-8,40px)!important;
}

.om3__segment__menu_navigation_elements > div:not(:last-child):nth-of-type(9):hover ~ #nav-underline{
  -webkit-transform:translate3d(20px,0,0);
  transform:translate3d(20px,0,0);
  -webkit-transform:translate3d(var(--nav-x-9,20px),0,0);
  transform:translate3d(var(--nav-x-9,20px),0,0);
  width:40px!important;
  width:var(--nav-w-9,40px)!important;
}

.om3__segment__menu_navigation_elements > div:not(:last-child):nth-of-type(10):hover ~ #nav-underline{
  -webkit-transform:translate3d(20px,0,0);
  transform:translate3d(20px,0,0);
  -webkit-transform:translate3d(var(--nav-x-10,20px),0,0);
  transform:translate3d(var(--nav-x-10,20px),0,0);
  width:40px!important;
  width:var(--nav-w-10,40px)!important;
}

.om3__segment__menu_navigation_meta{
  z-index:3;
}

/* Logo Hover */

.om3__segment__menu_navigation_meta_logo{
  display: block;
  width: 140px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin:2rem 1rem 0 1rem;
}

[data-page-id=home] .om3__segment__menu_navigation_meta_logo{
  -webkit-filter:brightness(2);
  filter:brightness(2);
}

@media (min-width:992px) {
  .om3__segment__menu_navigation_meta_logo{
    margin:2.5rem 1rem 0 1rem;
    width: 180px
  }
}

/**************/

.menu-scroll-trigger{
  position: absolute;
  z-index:2;
  top:0;
  width: 100%;
  height: 3rem;
  background-color: red;
  pointer-events: none;
  visibility: hidden;
  padding: 80px 0px 0px 0px;
}

@media (max-width:575.98px) {
  .menu-scroll-trigger{
    display:none
  }
}

@media (min-width: 768px ) and (max-width: 1023px) {
  .menu-scroll-trigger{
    display:none
  }
}

@media (min-width:992px) {
  .menu-scroll-trigger{
    display:block
  }
}

.neos-backend .om3__segment__menu {
  display: none !important;
}

.om3__segment__menu .om3__segment__menu_mobilenavigation_elements > div {
  padding: calc(30px * 0.5);
  padding: calc(var(--base-padding,10px) * 0.5);
}

.current > a{
  text-decoration:underline;
}

.menu-panel._active__true {
  opacity: 1.00;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.menu-panel._active__false {
  opacity: 0.00;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  pointer-events: none;
}

.content_menu {
  background-color: #FFF;
  background-color: var(--brand-color-primary,blue);
}

.content_menu .navbar {
  border-bottom: 1px solid  #FFFFFF;
  border-bottom: 1px solid  var(--nav-links-color,white);
}

.content_menu .navbar li.normal,.content_menu .navbar li.current,.content_menu .navbar li:hover  {
  color: #FFFFFF;
  color: var(--nav-links-color,white);
}

.content_menu .content_menu_contacticon:hover{
  color: #FFFFFF;
  color: var(--nav-links-color,white);
}

.om3__segment__menu_mobilenavigation_elements > div.current > a {
  text-decoration: underline;
}

/* stop body scrol when menu active */

.has-scrolling-disabled{
  overflow:hidden !important;
}

/*TODO mobile hamburger menu close state and animation */

/* switch menu type and sytle based on NEOS property in admin  */

/* shows teaser boxes (cards)  in a flex grid
   to have same height grid items without JS.
   Last item in grid is centered
*/

@media (min-width:992px) {
  .teaser-grid-rf{
    display: block;
  }

  .teaser-grid-rf > .neos-contentcollection{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .teaser-grid-rf > .neos-contentcollection >div:last-of-type {
    margin:0 auto;
  }

  .teaser-grid-rf > .neos-contentcollection > div > .neos-contentcollection{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }

  .teaser-grid-rf > .neos-contentcollection > div > .neos-contentcollection >div:last-child {
    margin-top:auto;
  }
}

.teaser-card-rf > .neos-contentcollection{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.teaser-card-rf > .neos-contentcollection >div:last-child {
  margin-top:auto;
}

:root {
  --col-1-12 : calc(100% / 12);
  --col-2-12 : calc(100% / 12 * 2);
  --col-3-12 : calc(100% / 12 * 3);
  --col-4-12 : calc(100% / 12 * 4);
  --col-5-12 : calc(100% / 12 * 5);
  --col-6-12 : calc(100% / 12 * 6);
  --col-7-12 : calc(100% / 12 * 7);
  --col-8-12 : calc(100% / 12 * 8);
  --col-9-12 : calc(100% / 12 * 9);
  --col-10-12 : calc(100% / 12 * 10);
  --col-11-12 : calc(100% / 12 * 11);
  --col-12-12 : 100%;
}

@media (max-width:575.98px) {
  .dc7__grid__col__12-12__sma{
    width:100%;
  }

  .dc7__grid__col__6-12__sma{
    width:50%;
  }

  .dc7__grid__col__4-12__sma{
    width:calc(100% / 12 * 4);
    width:var(--col-4-12);
  }

  .dc7__grid__col__3-12__sma {
    width:calc(100% / 12 * 3);
    width:var(--col-3-12);
  }

  .dc7__grid__col__1-12__sma {
    width:calc(100% / 12);
    width:var(--col-1-12);
  }

  .dc7__grid__col__2-12__sma {
    width:calc(100% / 12 * 2);
    width:var(--col-2-12);
  }

  .dc7__grid__col__5-12__sma {
    width:calc(100% / 12 * 5);
    width:var(--col-5-12);
  }

  .dc7__grid__col__7-12__sma {
    width:calc(100% / 12 * 7);
    width:var(--col-7-12);
  }

  .dc7__grid__col__8-12__sma {
    width:calc(100% / 12 * 8);
    width:var(--col-8-12);
  }

  .dc7__grid__col__9-12__sma {
    width:calc(100% / 12 * 9);
    width:var(--col-9-12);
  }

  .dc7__grid__col__10-12__sma {
    width:calc(100% / 12 * 10);
    width:var(--col-10-12);
  }

  .dc7__grid__col__11-12__sma {
    width:calc(100% / 12 * 11);
    width:var(--col-11-12);
  }
}

@media (min-width: 768px ) and (max-width: 1023px) {
  /* tablet */

  .dc7__grid__col__12-12__tab {
    width:100%;
  }

  .dc7__grid__col__6-12__tab {
    width:50%;
  }

  .dc7__grid__col__4-12__tab {
    width:calc(100% / 12 * 4);
    width:var(--col-4-12);
  }

  .dc7__grid__col__3-12__tab {
    width:calc(100% / 12 * 3);
    width:var(--col-3-12);
  }

  .dc7__grid__col__1-12__tab {
    width:calc(100% / 12);
    width:var(--col-1-12);
  }

  .dc7__grid__col__2-12__tab {
    width:calc(100% / 12 * 2);
    width:var(--col-2-12);
  }

  .dc7__grid__col__5-12__tab {
    width:calc(100% / 12 * 5);
    width:var(--col-5-12);
  }

  .dc7__grid__col__7-12__tab {
    width:calc(100% / 12 * 7);
    width:var(--col-7-12);
  }

  .dc7__grid__col__8-12__tab {
    width:calc(100% / 12 * 8);
    width:var(--col-8-12);
  }

  .dc7__grid__col__9-12__tab {
    width:calc(100% / 12 * 9);
    width:var(--col-9-12);
  }

  .dc7__grid__col__10-12__tab {
    width:calc(100% / 12 * 10);
    width:var(--col-10-12);
  }

  .dc7__grid__col__11-12__tab {
    width:calc(100% / 12 * 11);
    width:var(--col-11-12);
  }
}

@media (min-width:992px) {
  .dc7__grid__col__12-12 {
    width:100%;
  }

  .dc7__grid__col__6-12 {
    width:calc(100% / 12 * 6);
    width:var(--col-6-12);
  }

  .dc7__grid__col__4-12 {
    width:calc(100% / 12 * 4);
    width:var(--col-4-12);
  }

  .dc7__grid__col__3-12 {
    width:calc(100% / 12 * 3);
    width:var(--col-3-12);
  }

  .dc7__grid__col__1-12 {
    width:calc(100% / 12);
    width:var(--col-1-12);
  }

  .dc7__grid__col__2-12 {
    width:calc(100% / 12 * 2);
    width:var(--col-2-12);
  }

  .dc7__grid__col__5-12 {
    width:calc(100% / 12 * 5);
    width:var(--col-5-12);
  }

  .dc7__grid__col__7-12 {
    width:calc(100% / 12 * 7);
    width:var(--col-7-12);
  }

  .dc7__grid__col__8-12 {
    width:calc(100% / 12 * 8);
    width:var(--col-8-12);
  }

  .dc7__grid__col__9-12 {
    width:calc(100% / 12 * 9);
    width:var(--col-9-12);
  }

  .dc7__grid__col__10-12 {
    width:calc(100% / 12 * 10);
    width:var(--col-10-12);
  }

  .dc7__grid__col__11-12 {
    width:calc(100% / 12 * 11);
    width:var(--col-11-12);
  }
}

/* LEGACY */

div[class*=dc7__grid__col__] {
  background-clip: padding-box
}

/*border: 2px dashed yellow !important;*/

/*TODO put here in a central place all conflicts and overrides of existing legacy CSS hacky solutions you plan to refactor and clean up later . */

.typekit-badge {
  visibility: hidden !important;
  border: none;
  display: none !important
}

.om3__segment__html {
  font-size: 16px;
}

.om3__segment__button_button {
  text-align: center !important;
}

.om3__segment__menu_mobilenavigation_elements {
  width: 100%;
  /* TODO should be 100% by default display block  */
}

.om3__segment__menu_navigation_burger_icon {
  opacity: 1 !important;
}

/* .om3__segment__menu_navigation_burger{
  display: block !important;
} */

.om3__segment__menu {
  position: fixed !important;
}

.om3__segment__menu .om3__segment__menu_navigation {
  max-width: 100% !important;
}

.om3__segment__menu .om3__segment__menu_navigation._topalign__false {
  border: 1px solid deepskyblue !important;
}

.om3__segment:not(.om3__segment__clip) {
  /*    position: relative;
        display: inline-block;*/
  /*    box-sizing: border-box;*/
  /*   background-clip: padding-box;*/
  padding: calc(30px * 1);
  /* TODO Andy , see whats up with images which have padding 0 important */
}

.perm-image {
  /*  padding:0;*/
  /*    padding: 0 !important;*/
}

/*TODO refactor rest from host export min in own modules */

.om3__segment__googlemap {
  padding-left: 0 !important;
  padding-right: 0 !important
}

.om3__segment__googlemap iframe {
  width: 100%;
  height: 400px;
}

.om3__segment__menu {
  padding: 0 !important;
}

@media (max-width:575.98px) {
  .om3__segment {
    margin: 0px 0px 0px 0px !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important
  }
}

/*TODO obsolete ?*/

._fx__bparallax {
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
}

.om3__segment__storefinder {
  padding: 60px 0px 0px 0px !important;
}

/* CSS only Tooltip */

/* https://github.com/kazzkiq/balloon.css */

:root {
  --balloon-border-radius: 2px;
  --balloon-color: rgba(16, 16, 16, 0.95);
  --balloon-text-color: #fff;
  --balloon-font-size: 12px;
  --balloon-move: 4px;
}

button[aria-label][data-balloon-pos] {
  overflow: visible;
}

[aria-label][data-balloon-pos] {
  position: relative;
  cursor: pointer;
}

[aria-label][data-balloon-pos]:after {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.18s ease-out 0.18s;
  transition: all 0.18s ease-out 0.18s;
  text-indent: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: normal;
  font-style: normal;
  text-shadow: none;
  font-size: 12px;
  font-size: var(--balloon-font-size);
  background: rgba(16, 16, 16, 0.95);
  background: var(--balloon-color);
  border-radius: 2px;
  color: #fff;
  color: var(--balloon-text-color);
  border-radius: 2px;
  border-radius: var(--balloon-border-radius);
  content: attr(aria-label);
  padding: .5em 1em;
  position: absolute;
  white-space: nowrap;
  z-index: 10;
}

[aria-label][data-balloon-pos]:before {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: rgba(16, 16, 16, 0.95);
  border-top-color: var(--balloon-color);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.18s ease-out 0.18s;
  transition: all 0.18s ease-out 0.18s;
  content: "";
  position: absolute;
  z-index: 10;
}

[aria-label][data-balloon-pos]:hover:before, [aria-label][data-balloon-pos]:hover:after, [aria-label][data-balloon-pos][data-balloon-visible]:before, [aria-label][data-balloon-pos][data-balloon-visible]:after, [aria-label][data-balloon-pos]:not([data-balloon-nofocus]):focus:before, [aria-label][data-balloon-pos]:not([data-balloon-nofocus]):focus:after {
  opacity: 1;
  pointer-events: none;
}

[aria-label][data-balloon-pos].font-awesome:after {
  font-family: FontAwesome, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

[aria-label][data-balloon-pos][data-balloon-break]:after {
  white-space: pre;
}

[aria-label][data-balloon-pos][data-balloon-break][data-balloon-length]:after {
  white-space: pre-line;
  word-break: break-word;
}

[aria-label][data-balloon-pos][data-balloon-blunt]:before, [aria-label][data-balloon-pos][data-balloon-blunt]:after {
  -webkit-transition: none;
  transition: none;
}

[aria-label][data-balloon-pos][data-balloon-pos="up"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="up"][data-balloon-visible]:after, [aria-label][data-balloon-pos][data-balloon-pos="down"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="down"][data-balloon-visible]:after {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="up"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="up"][data-balloon-visible]:before, [aria-label][data-balloon-pos][data-balloon-pos="down"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="down"][data-balloon-visible]:before {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos*="-left"]:after {
  left: 0;
}

[aria-label][data-balloon-pos][data-balloon-pos*="-left"]:before {
  left: 5px;
}

[aria-label][data-balloon-pos][data-balloon-pos*="-right"]:after {
  right: 0;
}

[aria-label][data-balloon-pos][data-balloon-pos*="-right"]:before {
  right: 5px;
}

[aria-label][data-balloon-pos][data-balloon-po*="-left"]:hover:after, [aria-label][data-balloon-pos][data-balloon-po*="-left"][data-balloon-visible]:after, [aria-label][data-balloon-pos][data-balloon-pos*="-right"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos*="-right"][data-balloon-visible]:after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

[aria-label][data-balloon-pos][data-balloon-po*="-left"]:hover:before, [aria-label][data-balloon-pos][data-balloon-po*="-left"][data-balloon-visible]:before, [aria-label][data-balloon-pos][data-balloon-pos*="-right"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos*="-right"][data-balloon-visible]:before {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos^="up"]:before, [aria-label][data-balloon-pos][data-balloon-pos^="up"]:after {
  bottom: 100%;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform: translate(0, 4px);
  transform: translate(0, 4px);
  -webkit-transform: translate(0, var(--balloon-move));
  transform: translate(0, var(--balloon-move));
}

[aria-label][data-balloon-pos][data-balloon-pos^="up"]:after {
  margin-bottom: 10px;
}

[aria-label][data-balloon-pos][data-balloon-pos="up"]:before, [aria-label][data-balloon-pos][data-balloon-pos="up"]:after {
  left: 50%;
  -webkit-transform: translate(-50%, 4px);
  transform: translate(-50%, 4px);
  -webkit-transform: translate(-50%, var(--balloon-move));
  transform: translate(-50%, var(--balloon-move));
}

[aria-label][data-balloon-pos][data-balloon-pos^="down"]:before, [aria-label][data-balloon-pos][data-balloon-pos^="down"]:after {
  top: 100%;
  -webkit-transform: translate(0, calc(4px * -1));
  transform: translate(0, calc(4px * -1));
  -webkit-transform: translate(0, calc(var(--balloon-move) * -1));
  transform: translate(0, calc(var(--balloon-move) * -1));
}

[aria-label][data-balloon-pos][data-balloon-pos^="down"]:after {
  margin-top: 10px;
}

[aria-label][data-balloon-pos][data-balloon-pos^="down"]:before {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-bottom-color: rgba(16, 16, 16, 0.95);
  border-bottom-color: var(--balloon-color);
}

[aria-label][data-balloon-pos][data-balloon-pos="down"]:after, [aria-label][data-balloon-pos][data-balloon-pos="down"]:before {
  left: 50%;
  -webkit-transform: translate(-50%, calc(4px * -1));
  transform: translate(-50%, calc(4px * -1));
  -webkit-transform: translate(-50%, calc(var(--balloon-move) * -1));
  transform: translate(-50%, calc(var(--balloon-move) * -1));
}

[aria-label][data-balloon-pos][data-balloon-pos="left"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="left"][data-balloon-visible]:after, [aria-label][data-balloon-pos][data-balloon-pos="right"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="right"][data-balloon-visible]:after {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

[aria-label][data-balloon-pos][data-balloon-pos="left"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="left"][data-balloon-visible]:before, [aria-label][data-balloon-pos][data-balloon-pos="right"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="right"][data-balloon-visible]:before {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

[aria-label][data-balloon-pos][data-balloon-pos="left"]:after, [aria-label][data-balloon-pos][data-balloon-pos="left"]:before {
  right: 100%;
  top: 50%;
  -webkit-transform: translate(4px, -50%);
  transform: translate(4px, -50%);
  -webkit-transform: translate(var(--balloon-move), -50%);
  transform: translate(var(--balloon-move), -50%);
}

[aria-label][data-balloon-pos][data-balloon-pos="left"]:after {
  margin-right: 10px;
}

[aria-label][data-balloon-pos][data-balloon-pos="left"]:before {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left-color: rgba(16, 16, 16, 0.95);
  border-left-color: var(--balloon-color);
}

[aria-label][data-balloon-pos][data-balloon-pos="right"]:after, [aria-label][data-balloon-pos][data-balloon-pos="right"]:before {
  left: 100%;
  top: 50%;
  -webkit-transform: translate(calc(4px * -1), -50%);
  transform: translate(calc(4px * -1), -50%);
  -webkit-transform: translate(calc(var(--balloon-move) * -1), -50%);
  transform: translate(calc(var(--balloon-move) * -1), -50%);
}

[aria-label][data-balloon-pos][data-balloon-pos="right"]:after {
  margin-left: 10px;
}

[aria-label][data-balloon-pos][data-balloon-pos="right"]:before {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-right-color: rgba(16, 16, 16, 0.95);
  border-right-color: var(--balloon-color);
}

[aria-label][data-balloon-pos][data-balloon-length]:after {
  white-space: normal;
}

[aria-label][data-balloon-pos][data-balloon-length="small"]:after {
  width: 80px;
}

[aria-label][data-balloon-pos][data-balloon-length="medium"]:after {
  width: 150px;
}

[aria-label][data-balloon-pos][data-balloon-length="large"]:after {
  width: 260px;
}

[aria-label][data-balloon-pos][data-balloon-length="xlarge"]:after {
  width: 380px;
}

@media screen and (max-width: 768px) {
  [aria-label][data-balloon-pos][data-balloon-length="xlarge"]:after {
    width: 90vw;
  }
}

[aria-label][data-balloon-pos][data-balloon-length="fit"]:after {
  width: 100%;
}

.perm-clip{
}

.om3__segment__clip{
  /* font-size: 0 */
  /* to the body element, to disable the gap when you use display: inline-block */
  background-clip: padding-box;
  background-size : cover;
  background-repeat : no-repeat;
  background-position : center;
  display : -webkit-inline-box;
  display : -ms-inline-flexbox;
  display : inline-flex;
  -webkit-box-pack : center;
  -ms-flex-pack : center;
  justify-content : center;
  -webkit-box-align : start;
  -ms-flex-align : start;
  align-items : flex-start;
  border-style: solid;
  border-color: transparent;
  border-width: 0;
  /*
    & >a>.neos-contentcollection{
       display: inline-block;
    }
*/
}

.content_page>.neos-contentcollection > .om3__segment__clip{
  padding: 40px 0;
}

@media (min-width: 768px ) and (max-width: 1023px) {
  .content_page>.neos-contentcollection > .om3__segment__clip{
    padding: 50px 0;
  }
}

@media (min-width:992px) {
  .content_page>.neos-contentcollection > .om3__segment__clip{
    padding: 90px 0;
  }

  .content_page>.neos-contentcollection > .om3__segment__clip > .neos-contentcollection{
  }
}

.content_page>.neos-contentcollection > .om3__segment__clip{
  /* &:first-child{
            padding: 0;
        }*/
}

.content_footer .om3__segment__clip{
  padding: 3.125rem 0;
}

@media (min-width:992px) {
  .om3__segment__clip > .neos-contentcollection{
    /*  outline: 1px dashed purple;*/
  }
}

.om3__segment__clip.__b_fxshadow__true > .neos-contentcollection{
  -webkit-box-shadow:30px 30px 50px 0px rgba(0, 0, 0, 0.28);
  box-shadow:30px 30px 50px 0px rgba(0, 0, 0, 0.28);
  -webkit-box-shadow:var(--shadow-fx-soft,30px 30px 50px 0px rgba(0, 0, 0, 0.28));
  box-shadow:var(--shadow-fx-soft,30px 30px 50px 0px rgba(0, 0, 0, 0.28));
}

.om3__segment__clip.content-forced-height{
  /* border: 2px dashed purple; */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  min-height: 0;
}

.om3__segment__clip.content-forced-height > .neos-contentcollection{
  position: absolute !important;
  top: auto;
  left: 0;
  right: 0;
  bottom: auto;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  height: 100% !important;
}

.om3__segment__clip.__s_contentverticalalign__top:not(.__b_childssameheight__true){
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.om3__segment__clip.__s_contentverticalalign__top:not(.__b_childssameheight__true) > .neos-contentcollection{
  top: 0;
  bottom: auto;
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.om3__segment__clip.__s_contentverticalalign__middle{
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.om3__segment__clip.__s_contentverticalalign__middle > .neos-contentcollection{
  top: 0;
  bottom: auto;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.om3__segment__clip.__s_contentverticalalign__center > .neos-contentcollection{
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.om3__segment__clip.__s_contentverticalalign__bottom{
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.om3__segment__clip.__s_contentverticalalign__bottom > .neos-contentcollection{
  top: 0;
  bottom: auto;
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.om3__segment__clip.__s_contentverticalalign__bottom > .neos-contentcollection{
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.om3__segment__clip.__b_childssameheight__true > .neos-contentcollection{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*            @media (--viewport-md) {

            }
            @media (--viewport-desktop) {

            }*/
}

.om3__segment__clip.__b_childssameheight__true > .neos-contentcollection > div > .neos-contentcollection{
  height:100%;
}

.om3__segment__clip.__b_childssameheight__true > .neos-contentcollection > div > * > *:last-child {
  margin-top:auto !important;
  margin-right:0 !important;
}

.om3__segment__clip.__s_childalign__left > .neos-contentcollection{
  text-align: left;
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.om3__segment__clip.__s_childalign__center > .neos-contentcollection{
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.om3__segment__clip.__s_childalign__right > .neos-contentcollection{
  text-align: right;
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.om3__segment__clip.__s_contentforcedheight__100-250 {
  padding-top: 250% !important;
}

.om3__segment__clip.__s_contentforcedheight__100-200 {
  padding-top: 200% !important;
}

.om3__segment__clip.__s_contentforcedheight__100-175 {
  padding-top: 175% !important;
}

.om3__segment__clip.__s_contentforcedheight__100-150 {
  padding-top: 150% !important;
}

.om3__segment__clip.__s_contentforcedheight__100-125 {
  padding-top: 125% !important;
}

.om3__segment__clip.__s_contentforcedheight__100-100 {
  padding-top: 100% !important;
}

.om3__segment__clip.__s_contentforcedheight__100-90 {
  padding-top: 90% !important;
}

.om3__segment__clip.__s_contentforcedheight__100-80 {
  padding-top: 80% !important;
}

.om3__segment__clip.__s_contentforcedheight__100-70 {
  padding-top: 70% !important;
}

.om3__segment__clip.__s_contentforcedheight__100-60 {
  padding-top: 60% !important;
}

.om3__segment__clip.__s_contentforcedheight__100-50 {
  padding-top: 50% !important;
}

.om3__segment__clip.__s_contentforcedheight__100-40 {
  padding-top: 40% !important;
}

.om3__segment__clip.__s_contentforcedheight__100-30 {
  padding-top: 30% !important;
}

.om3__segment__clip.__s_contentforcedheight__100-20 {
  padding-top: 20% !important;
}

.om3__segment__clip.__s_contentforcedheight__100-10 {
  padding-top: 10% !important;
}

.om3__segment__clip.__s_contentforcedheight__vh10 {
  min-height: 10vh
}

.om3__segment__clip.__s_contentforcedheight__vh20 {
  min-height: 20vh
}

.om3__segment__clip.__s_contentforcedheight__vh40 {
  min-height: 40vh
}

.om3__segment__clip.__s_contentforcedheight__vh60 {
  min-height: 60vh
}

.om3__segment__clip.__s_contentforcedheight__vh80 {
  min-height: 80vh
}

.om3__segment__clip.__s_contentforcedheight__vh100 {
  min-height: 100vh
}

.om3__segment__clip.__bs_contentlimit__true > .neos-contentcollection{
  max-width: 100%;
}

@media (min-width: 768px ) and (max-width: 1023px) {
  .om3__segment__clip.__bs_contentlimit__true > .neos-contentcollection{
    max-width: 850px;
    max-width: var(--container-max-width-tab,850px)
  }
}

@media (min-width:992px) {
  .om3__segment__clip.__bs_contentlimit__true > .neos-contentcollection{
    max-width: 1150px;
    max-width: var(--container-max-width-large,1150px)
  }
}

.om3__segment__clip >.om3__segment__clip_backgroundvideo,.om3__segment__clip >.clip-bg-overlay {
  position: absolute;
  z-index : 1;
  top : 0;
  right : 0;
  bottom : 0;
  left : 0;
  overflow: hidden;
  pointer-events: none;
}

.om3__segment__clip >.om3__segment__clip_backgroundoverlay {
  z-index : 2;
}

.om3__segment__clip_border {
  position : absolute;
  top : 0;
  right : 0;
  bottom : 0;
  left : 0;
  z-index: 10;
  pointer-events: none;
  border : 1px solid transparent;
}

.clip-bg-video{
  position: absolute;
  z-index: -1;
  top:0;
  left:0;
  right:0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.clip-bg-video video{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

/* combined link behaviour - if a card has 1 - 2 links inside trhe whole card schould be clicable , if possible both links should react to mouse */

._proxy{
  /*    outline: 3px dashed orange !important;*/
  position: relative;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

._proxy:hover{
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

._proxy:hover a.perm-image > img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

._proxy:focus{
  outline: 1px dashed cyan;
}

._proxy:focus a.perm-image > img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

._proxy[focus-within]{
  /*outline-color: cyan;*/
}

._proxy:focus-within{
  /*outline-color: cyan;*/
}

._proxy a {
  position: static !important;
}

._proxy button:first-child{
  /*        outline: 3px dashed red !important;*/
  position: static !important;
}

._proxy button:first-child::before{
  display: block;
  content:'';
  background: cyan;
  opacity: 0;
  position: absolute;
  z-index: 10;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

.perm-grid-container{
  border: 2px dashed orange;
}

.perm-grid-element{
  border:1px dashed blue;
  overflow:hidden;
}

.permanent-box{
}

.perm-map {
  /* border:1px dashed red; */
  height:300px;
  min-height:300px;
}

#gmap{
  height:100%;
}

/* EMBED Map styles*/

.perm-map-embed{
  width:100%;
  height:100%;
  min-height:300px;
}

.perm-image {
  /* height:300px;
    min-height:300px; */
  overflow: hidden;
  --base-padding : 0;
}

.perm-image img{
  width:100%;
}

.perm-image img.is-cover{
  height:100%;
  -o-object-fit:cover;
  object-fit:cover;
}

.perm-image.has-shadow{
  /*  box-shadow: 20px 20px 0px var(--shadow-color,white);*/
}

.perm-image figure{
}

/*Mouse over Zoom FX*/

a.perm-image img{
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

a.perm-image:hover img{
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/*figure{
    &.perm-image {
        overflow: hidden;
    }
}*/

/* LEGACY */

.om3__segment img {
  max-width: 100%
}

.om3__segment__image {
  text-align: center;
}

.om3__segment__image figure,.om3__segment__image img{
  max-width: 100%;
}

.om3__segment__image:not(.__bs_originalsize__true) figure,.om3__segment__image:not(.__bs_originalsize__true) img{
  width: 100%
}

.has-scroll-fx{
  -webkit-transform-origin: left center;
  transform-origin: left center;
  /*    border: 1px dashed red;*/
  overflow: hidden;
  position: relative;
}

.has-scroll-fx .image-content{
  /*   transform-origin: top left;*/
}

.image-deco-box{
  display: block;
  position: absolute;
  top:0;
  left:0;
  z-index: -1;
  background: #fff;
  background: var(--color-white,#fff);
  width: 100%;
  height: 100%;
}

/* transform: translate3d(3rem,3rem,0);*/

.image-deco-box.image-deco-box-2{
  background: rgb(197, 215, 237);
  background: var(--color-lightblue,rgb(197, 215, 237));
}

/* TODO Andy
legacy styles to refactor */

/*scroll reveal - image shadow FX on belsana.de*/

/*
.om3__segment__image ._shadow {
    position: absolute;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    margin-top: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    pointer-events: none;
    cursor: default; }
html.dc7__grid__s_breakpoint_id__sma .om3__segment__image ._shadow {
    display: none; }

.om3__segment__image ._shadow._position__left {
    left: -0px; }

.om3__segment__image ._shadow._position__right {
    left: calc(30px + 30px); }

.neos-backend .om3__segment__image ._shadow {
    opacity: 0.50; }

.om3__segment__image ._shadow ._shadow_box {
    width: 0px;
    left: 100%;
    background-color: #ef3e4a; }

.om3__segment__image ._image_box {
    background: transparent;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    border: 30px solid transparent;
    background-clip: content-box;
    z-index: 20; }

.om3__segment__image ._image_box ._image_box_left,
.om3__segment__image ._shadow_box ._shadow_box_left {
    width: 0px;
    height: 0px;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: white; }

html .om3__segment__image._reveal__true .permanent-image-permimage > figure {
    opacity: 0.00;
    z-index: 10;
    position: relative;
    user-select: none;
    pointer-events: none;
    cursor: default; }

html.dc7__grid__s_breakpoint_id__sma .om3__segment__image._reveal__true .permanent-image-permimage > figure {
    border: 10px solid transparent !important; }

html.dc7__grid__s_breakpoint_id__tab .om3__segment__image._reveal__true .permanent-image-permimage > figure {
    border: 10px solid transparent !important; }

.neos-backend .om3__segment__image._reveal__true .permanent-image-permimage > figure {
    opacity: 1.00 !important; }*/

.perm-text{
  color: #333333;
  color: var(--neutral-color,grey);
}

.perm-text ul{
  list-style-type: disc;
}

.om3__segment__text a,.om3__segment__html a{
  /*color: var(--neutral-color,grey);*/
  -webkit-transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: var(--transition-color);
  transition: var(--transition-color);
}

.om3__segment__magazine_element_content > p > a {
  /*    color: var(--neutral-color,grey);*/
  -webkit-transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: var(--transition-color);
  transition: var(--transition-color);
}

.om3__segment__magazine_element_content > p > a:hover {
  color: #FFF;
  color: var(--brand-color-primary,blue);
}

.content .om3__segment__text > div {
  /*TODO remove max-width of text  , should have width of parent clip */
  max-width: 98%;
  margin:0 auto;
}

.perm-button{
  /* border: 1px dashed red !important;  */
}

/* border:1px dashed red !important; */

.om3__segment__button .om3__segment__button_button{
  background-color: #FFF;
  background-color: var(--brand-color-primary,blue);
  color: #FFFFFF !important;
  color: var(--white-color,white) !important;
  border:2px solid #FFFFFF;
  border:2px solid var(--white-color,white);
  /* TODO still needed the reset  ?  */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: var(--transition-all);
  transition: var(--transition-all);
  border-collapse: collapse; /* TODO obsolete rule???*/
}

.om3__segment__button .om3__segment__button_button:hover{
}

.om3__segment__button.__b_buttonautowidth__true{
  /* border:2px dashed orange !important; */
  width: auto;
}

.om3__segment__button.__b_buttonautowidth__true .om3__segment__button_button{
  display:inline-block;
  width: auto;
}

.om3__segment__button.__b_buttonautowidth__false{
  width: 100% !important;
}

.om3__segment__button.__b_buttonautowidth__false .om3__segment__button_button{
  width: 100%;
}

/* border:1px dashed red!important; */

.om3__segment__button.__s_type__a .om3__segment__button_button{
  background-color: #FFF;
  background-color: var(--brand-color-primary,blue);
  color:#FFFFFF  !important;
  color:var(--white-color,#ffffff)  !important;
  border-color: #FFFFFF;
  border-color: var(--white-color,#ffffff) ;
}

.om3__segment__button.__s_type__a .om3__segment__button_button:hover{
  background-color: #FFFFFF;
  background-color: var(--white-color,#ffffff);
  color: #FFF !important;
  color: var(--brand-color-primary) !important;
  border-color: #FFF;
  border-color: var(--brand-color-primary);
}

.om3__segment__button.__s_type__b .om3__segment__button_button{
  background-color:#FFF;
  background-color:var(--brand-color-primary) ;
  color: #FFFFFF !important;
  color: var(--white-color,#ffffff) !important;
  border-color: #FFF;
  border-color: var(--brand-color-primary);
}

.om3__segment__button.__s_type__b .om3__segment__button_button:hover{
  background-color: #FFFFFF;
  background-color: var(--white-color,#ffffff);
  color: #FFF !important;
  color: var(--brand-color-primary) !important;
  border-color: #FFF;
  border-color: var(--brand-color-primary);
}

.om3__segment__button.__s_type__c .om3__segment__button_button{
  background-color:#FFFFFF;
  background-color:var(--white-color,#ffffff) ;
  color: #FFF !important;
  color: var(--brand-color-primary,dodgerblue) !important;
  border-color: #FFF;
  border-color: var(--brand-color-primary,dodgerblue);
}

.om3__segment__button.__s_type__c .om3__segment__button_button:hover{
  background-color:#FFF;
  background-color:var(--brand-color-primary) ;
  color: #FFFFFF  !important;
  color: var(--white-color,#ffffff)  !important;
  border-color: #FFF;
  border-color: var(--brand-color-primary);
}

.om3__segment__button.__s_type__d .om3__segment__button_button{
  background-color: transparent;
  color:#FFF   !important;
  color:var(--brand-color-primary)   !important;
  border-color: #FFFFFF;
  border-color: var(--white-color,#ffffff);
}

.om3__segment__button.__s_type__d .om3__segment__button_button:hover{
  background-color: #FFFFFF;
  background-color: var(--white-color,#ffffff) ;
  color:#FFF   !important;
  color:var(--brand-color-primary)   !important;
  border-color: #FFF;
  border-color: var(--brand-color-primary);
}

.cron-formbuilder-plugin > button{
  background-color: #FFF;
  background-color: var(--brand-color-primary,blue);
  color: #FFFFFF !important;
  color: var(--white-color,white) !important;
}

.perm-quicklink{
  text-decoration: none;
  /*   outline: 1px dotted red !important;*/
  /*border:16px solid transparent;*/
  margin-bottom: 20px !important;
  padding: 0 !important;
}

@media (min-width:992px) {
  .perm-quicklink{
    margin-bottom: 0 !important
  }
}

.perm-quicklink > .perm-quicklink-inner {
  /*       outline: 1px dotted red !important;*/
  width: 100% ;
  height: 100%;
  color: #333333;
  color: var(--neutral-color,grey);
  padding:30px;
  text-decoration: none;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  justify-content:space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: -webkit-box-shadow 0.4s ease, -webkit-transform 0.4s ease;
  transition: -webkit-box-shadow 0.4s ease, -webkit-transform 0.4s ease;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  transition: box-shadow 0.4s ease, transform 0.4s ease, -webkit-box-shadow 0.4s ease, -webkit-transform 0.4s ease;
}

@media (min-width: 768px ) and (max-width: 1023px) {
  .perm-quicklink > .perm-quicklink-inner {
    width: calc(100% - 30px)
  }
}

@media (min-width:992px) {
  .perm-quicklink > .perm-quicklink-inner {
    width: calc(100% - 30px)
  }
}

.perm-quicklink h4{
  color:#FFFFFF;
  color:var(--white-color,white) ;
  margin-bottom: 20px;
  text-align:center !important;
  text-transform: uppercase;
}

.perm-quicklink button{
  background-color: transparent;
  display:block;
  color:#FFFFFF;
  color:var(--white-color,white);
  border:2px solid #FFFFFF;
  border:2px solid var(--white-color,white);
  -webkit-transition: color 0.4s ease, background-color 0.4s ease;
  transition: color 0.4s ease, background-color 0.4s ease;
}

.perm-quicklink.bluewhite > .perm-quicklink-inner {
  color:#FFFFFF;
  color:var(--white-color,white) ;
  background-color: #FFF;
  background-color: var(--brand-color-primary,blue) ;
}

.perm-quicklink.whiteblue > .perm-quicklink-inner {
  color:#FFF;
  color:var(--brand-color-primary,blue) ;
  background-color: #FFFFFF;
  background-color: var(--white-color,white) ;
}

.perm-quicklink.whiteblue  h4{
  color:#FFF;
  color:var(--brand-color-primary,blue) ;
}

.perm-quicklink.whiteblue button{
  color:#FFF;
  color:var(--brand-color-primary,blue) ;
  border-color:#FFF;
  border-color:var(--brand-color-primary,blue) ;
}

.perm-quicklink:hover > .perm-quicklink-inner {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-box-shadow: 10px 10px 49px -10px rgba(0, 0, 0, 0.8);
  box-shadow: 10px 10px 49px -10px rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: var(--shadow-fx,10px 10px 49px -10px black);
  box-shadow: var(--shadow-fx,10px 10px 49px -10px black);
}

.perm-quicklink:hover button{
  /* outline:2px dashed red;*/
  color:#FFF !important;
  color:var(--brand-color-primary,blue) !important;
  background-color: #FFFFFF !important;
  background-color: var(--white-color,white) !important;
}

.perm-quicklink:hover.whiteblue button{
  /* outline:2px dashed red;*/
  color:#FFFFFF !important;
  color:var(--white-color,white) !important;
  background-color:#FFF !important ;
  background-color:var(--brand-color-primary,blue) !important ;
}

/*.perm-quicklink {
    margin-right:30px;
}*/

.om3__segment__storefinder {
  background-color: #FFFFFF;
  background-color: var(--white-color, white);
  text-align: center;
  margin: -20px 0px 0px 0px;
  padding: 0 0 0 0 !important;
}

.om3__segment__storefinder._results__false .om3__segment__storefinder__map {
  display: none;
}

@media (min-width: 768px ) and (max-width: 1023px) {
}

@media (min-width:992px) {
  .om3__segment__storefinder {
    padding: 60px 0 0 0 !important
  }
}

.om3__segment__storefinder__map {
  height: 0;
  width: 100%;
  max-width: 1400px;
  max-height: 450px;
  margin:0 auto;
}

@media (min-width:992px) {
  .om3__segment__storefinder__map {
    /* transform: translate3d(10%, 0, 0);*/
  }
}

.om3__segment__storefinder__content__wrapper {
  width: 100%;
  padding: 0 20px;
}

@media (min-width: 768px ) and (max-width: 1023px) {
  .om3__segment__storefinder__content__wrapper {
    padding: 40px 40px
  }
}

@media (min-width:992px) {
  .om3__segment__storefinder__content__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1400px;
    margin: auto;
    padding: 0px 100px 60px 100px
  }
}

.om3__segment__storefinder._state__intro .om3__segment__storefinder__content__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.om3__segment__storefinder__content__wrapper__loader {
  position: absolute;
  top: 85px;
  left: 0;
  right: 0;
  margin: 0 auto 0 auto;
  min-height: 65px;
  opacity: 0;
}

.om3__segment__storefinder__content__wrapper__left {
  width: 100%;
  text-align: left;
  position: relative;
  display: inline-block;
  border: 20px solid transparent;
}

@media (min-width:992px) {
  .om3__segment__storefinder__content__wrapper__left {
    width: 69.00%
  }
}

.om3__segment__storefinder._state__intro .om3__segment__storefinder__content__wrapper__left__container__date {
  display: none;
}

.om3__segment__storefinder__content__wrapper__left__container__date {
  display: none;
}

.om3__segment__storefinder._state__intro .om3__segment__storefinder__content__wrapper__left__container__response {
  position: absolute;
  bottom: -10px;
  left: 2px;
}

.om3__segment__storefinder__content__wrapper__left__container__response {
  margin: 0px 0px 0.50em 0px;
}

.om3__segment__storefinder._state__intro .om3__segment__storefinder__content__wrapper__left__container__plz {
  width: 100%;
}

dc7__grid__s_breakpoint_id__sma .om3__segment__storefinder__content__wrapper__left__container__plz {
  width: 100%;
}

dc7__grid__s_breakpoint_id__tab .om3__segment__storefinder__content__wrapper__left__container__plz {
  width: 100%;
}

.om3__segment__storefinder__content__wrapper__left__container__plz {
  border: 1px solid #FFF;
  border: 1px solid var(--brand-color-primary, blue);
  background-color: #FFFFFF;
  background-color: var(--white-color, white);
  width: 100%;
  display: inline-block;
}

@media (min-width:992px) {
  .om3__segment__storefinder__content__wrapper__left__container__plz {
    width: 65%
  }
}

.om3__segment__storefinder__content__wrapper__left__container__help {
  position: relative;
  top: -25px;
  left: 0px;
  margin: 0px 0px -16px 0px;
}

.om3__segment__storefinder._results__true .om3__segment__storefinder__content__wrapper__left__container__head {
  display: none !important;
}

.om3__segment__storefinder__content__wrapper__left__container__head {
  position: relative;
  content: pinky1;
  margin: 0px 0px 1.20em 0px;
}

.om3__segment__storefinder__content__wrapper__left__container__plz {
  position: relative;
}

.om3__segment__storefinder__content__wrapper__left__container__plz__lupe {
  width: 33px;
  height: auto;
  position: absolute;
  top: 3px;
  right: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  pointer-events: all;
  cursor: pointer;
}

.om3__segment__storefinder._state__intro .om3__segment__storefinder__content__wrapper__left__container__plz__lupe {
  right: 5px;
}

dc7__grid__s_breakpoint_id__sma .om3__segment__storefinder__content__wrapper__left__container__plz__lupe {
  width: 28px;
  right: 5px;
  top: 5px;
}

dc7__grid__s_breakpoint_id__tab .om3__segment__storefinder__content__wrapper__left__container__plz__lupe {
  right: 5px;
  top: 5px;
}

dc7__grid__s_breakpoint_id__des .om3__segment__storefinder__content__wrapper__left__container__plz__lupe {
  top: 3px !important;
}

.om3__segment__storefinder__content__wrapper__left__container__plz__input {
  margin: 0px 0px 0px 0px !important;
  width: calc(100% - 70px) !important;
  border-color: transparent !important;
  background: none !important;
}

.om3__segment__storefinder__content__wrapper__left__container__plz__input {
  padding: 10px 10px 10px 10px !important;
}

.om3__segment__storefinder._state__intro .om3__segment__storefinder__content__wrapper__left__container__radius {
  display: none;
}

.om3__segment__storefinder__content__wrapper__left__container__radius {
  width: 100%;
  margin: 20px 0px 0px 0px;
}

@media (min-width: 768px ) and (max-width: 1023px) {
  .om3__segment__storefinder__content__wrapper__left__container__radius {
    width: 100%;
    margin: 20px 0px 0px 0px
  }
}

@media (min-width:992px) {
  .om3__segment__storefinder__content__wrapper__left__container__radius {
    display: inline-block;
    width: 30%;
    margin: 0px 0px 0px 20px
  }
}

#content .om3__segment__storefinder__content__wrapper__left__container__radius__select {
  height: 48px;
  border: 1px solid #FFF;
  border: 1px solid var(--brand-color-primary, blue);
  border-color: #FFF;
  border-color: var(--brand-color-primary, blue);
  border-radius: 0;
}

.om3__segment__storefinder._state__intro .om3__segment__storefinder__content__wrapper__left__container__button {
  display: none;
}

.om3__segment__storefinder__content__wrapper__right {
  text-align: left;
  width: 100%;
  position: relative;
  display: inline-block;
  border: 20px solid transparent;
}

@media (min-width:992px) {
  .om3__segment__storefinder__content__wrapper__right {
    width: 31%
  }
}

dc7__grid__s_breakpoint_id__sma .om3__segment__storefinder__content__wrapper__right {
  width: 100%;
}

dc7__grid__s_breakpoint_id__tab .om3__segment__storefinder__content__wrapper__right {
  width: 100%;
}

.om3__segment__storefinder._state__intro .om3__segment__storefinder__content__wrapper__right {
  display: none;
}

.om3__segment__storefinder__content__wrapper__right__img {
  width: 200px;
  margin: 0px 0px 10px -15px;
}

.om3__segment__storefinder__content__wrapper__right .p1, .om3__segment__storefinder__content__wrapper__right .om3__segment__text.p1 p, .om3__segment__text.p1 .om3__segment__storefinder__content__wrapper__right p, .om3__segment__storefinder__content__wrapper__right .p1 p, .p1 .om3__segment__storefinder__content__wrapper__right p {
  color: #ff0000 !important;
  color: var(--warn-color, red) !important;
}

.om3__segment__storefinder__content__wrapper__right #p1_red {
  color: #ff0000 !important;
  color: var(--warn-color, red) !important;
  margin-bottom: 5px;
}

.om3__segment__storefinder__results {
  display: inline-block;
  width: 100%;
  background-color: #F2F2F2;
  background-color: var(--body-bg-color, #F2F2F2);
  text-align: center;
  padding: 60px 20px;
}

@media (min-width:992px) {
  .om3__segment__storefinder__results {
    padding: 60px 0px 60px 0px
  }
}

.om3__segment__storefinder._state__intro .om3__segment__storefinder__results {
  display: none;
}

.om3__segment__storefinder__results__content {
  width: 100%;
  max-width: 1150px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px;
  text-align: left;
  /* outline: 2px dashed red !important;*/
}

@media (min-width:992px) {
  .om3__segment__storefinder__results__content {
    margin: 0 auto
  }
}

.om3__segment__storefinder__results__content__result {
  width: 100.00%;
  padding: 10px;
  background: #FFFFFF;
  background: var(--white-color, white);
}

/*border: 10px solid var(--white-color) !important;*/

@media (min-width: 768px ) and (max-width: 1023px) {
  .om3__segment__storefinder__results__content__result {
    width: 50.00%
  }
}

@media (min-width:992px) {
  .om3__segment__storefinder__results__content__result {
    width: 33.33%
  }
}

.om3__segment__storefinder__results__content__result {
  padding: 10px 10px 10px 10px;
  width: 100.00%;
  background: white;
  border: 10px solid #F2F2F2 !important;
  border: 10px solid var(--body-bg-color, lightgrey) !important;
}

@media (min-width: 768px ) and (max-width: 1023px) {
  .om3__segment__storefinder__results__content__result {
    width: 50.00%
  }
}

@media (min-width:992px) {
  .om3__segment__storefinder__results__content__result {
    width: 33.33%
  }
}

.om3__segment__storefinder__results__content__element {
  width: 100.00%;
  min-height: 140px;
  min-width: 100px;
  background-clip: padding-box;
  padding: 15px 15px 15px 15px;
  text-align: left;
  display: inline-block;
  border: 1px solid #FFF;
  border: 1px solid var(--brand-color-primary, white);
  position: relative;
}

@media (min-width: 768px ) and (max-width: 1023px) {
  .om3__segment__storefinder__results__content__element {
    /*  width: 50.00%;*/
  }
}

@media (min-width:992px) {
  .om3__segment__storefinder__results__content__element {
    /* width: 33.33%;*/
  }
}

.om3__segment__storefinder__results__content__element a {
  text-align: left !important;
}

.om3__segment__storefinder__results__content__element__vfc {
  margin: 0px 0px 20px 0px;
}

.om3__segment__storefinder__results__content__element__vfc__logo {
  position: absolute;
  right: 0px;
  top: 10px;
}

.om3__segment__storefinder__results__content__element__title {
  margin: 0px 0px 5px 0px;
  max-width: 70%;
}

.om3__segment__storefinder__results__content__element__right {
  position: absolute;
  text-align: right;
  top: 10px;
  right: 10px;
}

.om3__segment__storefinder__results__content__element__right._type__vfc {
  top: 75px;
}

.om3__segment__storefinder__results__content__element__right._type__vfc p {
  color: #FFFFFF;
  color: var(--white-color, white);
}

.om3__segment__storefinder__results__content__element__right img {
  margin: 5px 0px 5px 0px;
}

.om3__segment__storefinder__results__content__element._type__normal {
  background-color: #FFFFFF;
  background-color: var(--white-color, white);
}

.om3__segment__storefinder__results__content__element._type__vfc {
  background-color: #FFF;
  background-color: var(--brand-color-primary, blue);
  border: none;
}

.om3__segment__storefinder__results__content__element._type__vfc p {
  color: #FFFFFF;
  color: var(--white-color, white);
}

.om3__segment__storefinder__content__wrapper__right {
  background-color: #FFFFFF;
  background-color: var(--white-color, white);
}

.om3__segment__storefinder__results__content__element._type__vfc a {
  color: #FFFFFF;
  color: var(--white-color, white);
}

.perm-accordion{
  /* outline:1px dashed red !important; */
}

.perm-accordion{
  /* outline:1px dashed red !important; */
}

:root{
  --per-accordion-background-color: white;
  --per-accordion-hovercolor: white;
  --perm-accordion-text-color: black;
  --perm-accordion-padding: 40px;
  --perm-accordion-border-color: #dfdfdf;
  --perm-accordion-header-font-size: 18px;
}

.perm-accordion{
  //border:1px solid blue;
  max-height:0;
  height:0;
  overflow: hidden;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transition: max-height 1700ms ease;
  transition: max-height 1700ms ease;
  color: black;
  color: var(--perm-accordion-text-color,black);
  background-color: white;
  background-color: var(--per-accordion-background-color,white);
}

.perm-accordion__header{
  //border:1px solid yellow;
  font-family: "myriad-pro", sans-serif;
  border-top: 1px solid #dfdfdf;
  border-top: 1px solid var(--perm-accordion-border-color,grey);
  padding:1rem calc(40px + 2rem);
  padding:1rem calc(var(--perm-accordion-padding,40px) + 2rem);
  min-height:1rem;
  text-transform: uppercase;
  position: relative;
  text-align: left !important;
  font-size: 18px;
  font-size: var(--perm-accordion-header-font-size,26px);
}

.perm-accordion__header::-webkit-details-marker {
  color: transparent;
  width:0;
  height:0;
  display: none;
}

.perm-accordion__header::-moz-details-marker {
  color: transparent;
  width:0;
  height:0;
  display: none;
}

.perm-accordion__header::marker {
  color: transparent;
  width:0;
  height:0;
  display: none;
}

.perm-accordion__header:before{
  content:'';
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBmaWxsPSIjMzE0MTZGIiBkPSJNMjU2IDI5NC4xTDM4MyAxNjdjOS40LTkuNCAyNC42LTkuNCAzMy45IDBzOS4zIDI0LjYgMCAzNEwyNzMgMzQ1Yy05LjEgOS4xLTIzLjcgOS4zLTMzLjEuN0w5NSAyMDEuMWMtNC43LTQuNy03LTEwLjktNy0xN3MyLjMtMTIuMyA3LTE3YzkuNC05LjQgMjQuNi05LjQgMzMuOSAwbDEyNy4xIDEyN3oiLz48L3N2Zz4=);
  width:20px;
  height:20px;
  position: absolute;
  left:40px;
  left:var(--perm-accordion-padding,2rem);
  -webkit-transition: -webkit-transform 600ms;
  transition: -webkit-transform 600ms;
  transition: transform 600ms;
  transition: transform 600ms, -webkit-transform 600ms;
}

.perm-accordion__header:hover{
  background-color: white;
  background-color: var(--per-accordion-hovercolor,#dedede);
}

.perm-accordion__body{
  padding:0rem 1rem 1rem calc(40px + 2rem);
  padding:0rem 1rem 1rem calc(var(--perm-accordion-padding,40px) + 2rem);
  -webkit-transition: opacity 600ms;
  transition: opacity 600ms;
}

.perm-accordion:not([open]) {
  min-height:2.68rem;
}

.perm-accordion:not([open]) > .perm-accordion__body {
  opacity:0;
}

.perm-accordion[open] {
  //border:2px solid red;
  height:auto;
  max-height:300rem;
  outline: none;
}

.perm-accordion[open] > .perm-accordion__body {
  opacity:1;
}

.perm-accordion[open] > .perm-accordion__header:before{
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.perm-slider{
  /* outline:1px dashed red !important; */
  width:100%;
  display: block;
  position: relative;
  padding-bottom: 40px;
  /* min-height: 100px;*/
}

/*.slider-dots-nav{
    width: auto;
    display: inline-flex;
    justify-content: space-between;
  !*  outline:1px dashed red !important;*!
    position: absolute;
    z-index: 200;
    bottom:0;
    left:50%;
    transform: translate(-50%,0);
    & .swiper-pagination-bullet{
        border-radius: 0;
        width: 40px;
        height: 6px;
        background: var(--brand-color-grey,grey);
        margin-right: 10px;
        &-active{
          background: var(--brand-color-accent,red);
        }
        &:focus{
            outline: none;
        }

    }
}*/

.slider-dots-nav{
  counter-reset: section;
  width: 6rem;
  height:16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /*  outline:1px dashed red !important;*/
  position: absolute;
  z-index: 200;
  top:50%;
  right:3rem;
  -webkit-transform: translate3d(0,-50%,0);
  transform: translate3d(0,-50%,0);
  mix-blend-mode: difference;
}

.slider-dots-nav .swiper-pagination-bullet{
  border-radius: 0;
  width: 120px;
  height: 0;
  border:0;
  opacity: 0.9;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  color: #EEEEEE;
  text-align: right;
  border-bottom:1px solid #EEEEEE;
  -webkit-transform-origin: 100% center;
  transform-origin: 100% center;
  background:transparent;
}

.slider-dots-nav .swiper-pagination-bullet:before{
  color: inherit;
  counter-increment: section;
  content: "" counter(section) " ";
  background:transparent;
  display:block;
}

.slider-dots-nav .swiper-pagination-bullet-active{
  background: #FFF;
  background: var(--brand-color-accent,red);
  color: #FFFFFF;
  color: var(--white-color,white);
  opacity: 1;
  font-weight: 600;
  -webkit-transform:scale(1.8);
  transform:scale(1.8);
  border-bottom:3px solid #FFFFFF;
  border-bottom:3px solid var(--white-color,red);
}

.slider-dots-nav .swiper-pagination-bullet:focus{
  outline: none;
  -webkit-transform:scale(1.8);
  transform:scale(1.8);
}

.slider-dots-nav .swiper-pagination-bullet:hover{
  outline: none;
  -webkit-transform:scale(1.8);
  transform:scale(1.8);
}

.arrow{
  --arrow-size : 3rem;
  width: var(--arrow-size);
  height: var(--arrow-size);
  position: absolute;
  z-index: 100;
  top:50%;
  -webkit-transform: translateY(calc(-50% - 10px));
  transform: translateY(calc(-50% - 10px));
  cursor:pointer;
  -webkit-transform-origin: center;
  transform-origin: center;
  color:#FFFFFF;
  color:var(--white-color,white);
}

[data-hide-nav="true"] .arrow{
  opacity: 0 !important;
  width: calc(var(--arrow-size) * 6);
  height: calc(var(--arrow-size) * 10);
}

.arrow-left{
  left:30px;
  left:var(--base-padding,20px);
}

.arrow-right{
  right:30px;
  right:var(--base-padding,20px);
}

.arrow:focus{
  outline: none;
}

.perm-slide keen-slider__slide{
  display:inline-block;
  width: 100%;
  margin:0;
  padding:0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.arrow-icon{
  fill: #FFF;
  fill: var(--brand-color-accent,red);
}

.menu-panel{
  -webkit-clip-path: polygon(0 0, 90% 0, 66% 100%, 0% 100%);
  clip-path: polygon(0 0, 90% 0, 66% 100%, 0% 100%);
}

.om3__segment__menu.menu-type-panel .om3__segment__menu_mobilenavigation_elements > * a{
  color: var();
}

.compact-layout-refactored > .neos-contentcollection{
  /*    outline: 3px dashed orange !important;*/
  display: grid !important;
  min-height: 2000px;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(320px,1fr));
  grid-auto-rows: 0;
}

/*    grid-auto-flow: dense;*/

.compact-layout-refactored > .neos-contentcollection > *{
  width:100%;
  all : unset;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.compact-layout-refactored > .neos-contentcollection > * > .neos-contentcollection{
  all : unset;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.compact-layout-refactored > .neos-contentcollection > * > .neos-contentcollection > *{
  display: block !important;
}

/*@import "./modules/perm-modal.css" ;*/

:root{
  /*  mixins*/
  /* --centered: {
    display: flex;
    align-items: center;
    justify-content: center;
  };

  --debug-good{
    outline: 1px dotted green !important;
  }
  --debug-bad{
    outline: 1px dotted red !important;
  }

  --refactored-good{
    outline: 1px dashed green !important;
  }
  --refactored-bad{
    outline: 1px dashed red !important;
  } */
}

.debug-good{
  outline: 1px dotted green !important;
}

.debug-bad{
  outline: 1px dotted red !important;
}

.debug{
  outline: 1px dashed lightpink !important;
}

/*
 [class^="perm-"] {
   border: 1px dotted green !important;
 }
  */

[class^="todo"] {
  outline: 1px dotted red !important;
}

.hidden{
  /*display: none !important; */
}

.perm-legacy {
  display: none !important;
}

.perm-legacy::after{
  content:'';
  position: absolute;
  z-index: 2;
  top:0;
  left:0;
  right: 0;
  bottom: 0;
  outline: 2px dashed red !important;
  background: repeating-linear-gradient(
                  45deg,
                  rgba(255, 0, 0, 0.76),
                  rgba(255, 0, 0, 0.76) 20px,
                  rgba(255,0,0,0.3) 20px,
                  rgba(255,0,0,0.3) 50px
  )!important;
}

.perm-refactored::after{
  /* content:'';*/
  position: absolute;
  z-index: 2;
  top:0;
  left:0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
  outline: 2px dashed green !important;
  background: repeating-linear-gradient(
                    -45deg,
                    rgba(71, 226, 61, 0.76),
                    rgba(71, 226, 61, 0.76) 20px,
                    rgba(71, 226, 61, 0.2) 20px,
                    rgba(71, 226, 61, 0.2) 50px
    )!important;
}

.content :not(.perm-refactored){
  /* outline: 2px dashed red !important;*/
  /*display: none !important;*/
}

/*
:not([class*="refactored"]){
 !* display: none !important;*!
  outline: 2px dashed red !important;
}
*([class*="refactored"]){
!*  display: none !important;*!
  outline: 2px dashed green !important;
}
*([class*="legacy"]){
  display: none !important;
}

.om3__segment__clip:not([class*="refactored"]){
 !* display: none !important;*!
}*/

body{
  /*  background: green  !important;*/
  overflow-x: hidden !important;
}

body.has-modal{
  overflow-y: hidden;
  margin-right: 15px;
}

/**/

.blur-fx{
  -webkit-filter:blur(4px);
  filter:blur(4px);
}

.arrow-pagescroll-up {
  z-index: 1010;
  position: fixed;
  bottom: 25px;
  right: 37px;
  width:40px;
  height:40px;
  color:#FFF;
  color:var(--brand-color-primary,white) ;
}

.arrow-pagescroll-up svg{
  width:100%;
  height:100%;
  /* TODO DRY put shadow css variable */
  -webkit-filter:drop-shadow(2px 2px 8px rgba(10,101,0,.6));
  filter:drop-shadow(2px 2px 8px rgba(10,101,0,.6));
}

.arrow-pagescroll-up svg path{
  stroke: #FFF;
  stroke: var(--brand-color-primary,blue);
}

.arrow-pagescroll-up {
  -webkit-transition : opacity 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition : opacity 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition : opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition : opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  opacity:0;
  -webkit-transform-origin:50% 0%;
  transform-origin:50% 0%;
  -webkit-transform: scale(2) translate3d(0,100%,0);
  transform: scale(2) translate3d(0,100%,0);
  mix-blend-mode:exclusion;
}

.arrow-pagescroll-up.is-visible{
  opacity:1;
  -webkit-transform: scale(1) translate3d(0,0%,0);
  transform: scale(1) translate3d(0,0%,0);
}

.menu-panel{
  -webkit-clip-path: polygon(0 0, 90% 0, 66% 100%, 0% 100%);
  clip-path: polygon(0 0, 90% 0, 66% 100%, 0% 100%);
}

.om3__segment__menu.menu-type-panel .om3__segment__menu_mobilenavigation_elements > * a{
  color: #95866E;
  color: var(--brand-color-secondary,white);
  -webkit-transition:color 0.3s ease , -webkit-transform 0.3s ease;
  transition:color 0.3s ease , -webkit-transform 0.3s ease;
  transition:color 0.3s ease , transform 0.3s ease;
  transition:color 0.3s ease , transform 0.3s ease , -webkit-transform 0.3s ease;
  @nest  {
    color:#FFFFFF;

    color:var(--white-color,white);
  }
}

.om3__segment__menu.menu-type-panel .om3__segment__menu_mobilenavigation_elements > * a:hover{
  color:#FFFFFF;
  color:var(--white-color,white);
  -webkit-transform:scale(1.3) !important;
  transform:scale(1.3) !important;
}

.current {
  -webkit-filter:brightness(2);
  filter:brightness(2);
}
