:root {
  --textColor: #000;
  --linkColor: #000;
  --altTextColor: #FF416C;
  --buttonBackground: transparent;
  --buttonColor: #000;
  --buttonBorder: #000;
  --buttonBackgroundHover: #000;
  --buttonColorHover: #fff;
  --buttonBorderHover: #000;
  --secondaryButtonColor: #000;
  --secondaryButtonDotColor: #FED63F;
  --stoererBackground: #22E3FB;
  --stoererColor: #fff;
  --stoererDotColor: #FF416C;
  --foldingToggleColor: #000;
  --foldingToggleActiveColor: #FF416C;
  --headerBackground: #FF416C;
  --navigationActiveColor: #FED63F;
  --headerOffset: 174px;
  --designelementSignatureS: url(/images/designelement-signature-s-blue.svg);
  --arrowRight: url(/images/arrow-right.svg);
  --arrowLeft: url(/images/arrow-left.svg);
  --arrowBottom: url(/images/arrow-bottom.svg);
}
@media (max-width: 1023px) {
  :root {
    --headerOffset: 120px;
  }
}
@media (max-width: 767px) {
  :root {
    --headerOffset: 90px;
  }
}
:root {
  --deskWidth: 1420px;
  --deskSpace: 40px;
  --deskMaxWidth: calc(100vw - (2 * var(--deskSpace)));
}
:root {
  --spacePart: 10px;
}
@media (max-width: 1023px) {
  :root {
    --spacePart: 10px;
  }
}
@media (max-width: 767px) {
  :root {
    --spacePart: 10px;
  }
}
:root {
  --spaceUnit: 65px;
}
@media (max-width: 1023px) {
  :root {
    --spaceUnit: 30px;
  }
}
@media (max-width: 767px) {
  :root {
    --spaceUnit: 15px;
  }
}
:root {
  --spaceTotal: 75px;
}
@media (max-width: 1023px) {
  :root {
    --spaceTotal: 40px;
  }
}
@media (max-width: 767px) {
  :root {
    --spaceTotal: 25px;
  }
}
:root {
  --js-breakpoint: breakpointLarge;
}
@media (max-width: 1023px) {
  :root {
    --js-breakpoint: breakpointMedium;
  }
}
@media (max-width: 767px) {
  :root {
    --js-breakpoint: breakpointSmall;
  }
}
.title1 {
  font-size: clamp(3.75rem, 3.6101083vw + 2.86552347rem, 6.25rem);
  line-height: clamp(3.75rem, 3.6101083vw + 2.86552347rem, 6.25rem);
  font-weight: bold;
  color: var(--textColor);
}
.title2 {
  font-size: clamp(2.5rem, 1.80505415vw + 2.05776173rem, 3.75rem);
  line-height: clamp(3.125rem, 1.80505415vw + 2.68276173rem, 4.375rem);
  font-weight: bold;
  color: var(--textColor);
}
.title3 {
  font-size: clamp(2.1875rem, 1.35379061vw + 1.8558213rem, 3.125rem);
  line-height: clamp(2.5rem, 1.80505415vw + 2.05776173rem, 3.75rem);
  font-weight: bold;
  color: var(--textColor);
}
.title4 {
  font-size: clamp(1.5625rem, 0.90252708vw + 1.34138087rem, 2.1875rem);
  line-height: clamp(1.875rem, 1.35379061vw + 1.5433213rem, 2.8125rem);
  font-weight: bold;
  color: var(--textColor);
  font-weight: 400;
}
.title5 {
  font-size: clamp(0.875rem, 0.36101083vw + 0.78655235rem, 1.125rem);
  line-height: clamp(1.125rem, 0vw + 1.125rem, 1.125rem);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--textColor);
}
.lead {
  font-size: clamp(1.125rem, 0.54151625vw + 0.99232852rem, 1.5rem);
  line-height: clamp(1.5rem, 1.08303249vw + 1.23465704rem, 2.25rem);
  color: var(--textColor);
}
.buttonBasics {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
}
.button {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  background-color: var(--buttonBackground);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--buttonColor);
  padding: 13px 19px;
  border-radius: 10000px;
  border: 1px solid var(--buttonBorder);
  transition: all 0.5s ease-out;
}
.button:hover,
.button:focus {
  background-color: var(--buttonBackgroundHover);
  color: var(--buttonColorHover);
  border-color: var(--buttonBorderHover);
}
.button-arrow {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--secondaryButtonColor);
  padding-left: 52px;
  padding-right: 13px;
  position: relative;
  transition: all 0.5s ease-out;
}
.button-arrow:before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: var(--secondaryButtonDotColor);
  transition: all 0.5s ease-out;
}
.button-arrow:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 30px;
  height: 30px;
  mask-size: 42px 100%;
  mask-position: 100% 50%;
  mask-repeat: no-repeat;
  mask-image: var(--arrowRight);
  background-color: var(--secondaryButtonColor);
  transition: all 0.5s ease-out;
}
.button-arrow:hover,
.button-arrow:focus {
  padding-left: 65px;
  padding-right: 0;
}
.button-arrow:hover:before,
.button-arrow:focus:before {
  left: 25px;
}
.button-arrow:hover:after,
.button-arrow:focus:after {
  width: 42px;
}
.button-stoerer {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--stoererBackground);
  width: 258px;
  aspect-ratio: 1;
  font-size: clamp(0.8125rem, 1.08303249vw + 0.54715704rem, 1.5625rem);
  line-height: clamp(1rem, 1.26353791vw + 0.69043321rem, 1.875rem);
  text-align: center;
  font-weight: 700;
  color: var(--stoererColor);
  padding: 75px 10px 75px 10px;
  border-radius: 10000px;
  position: relative;
}
@supports not (aspect-ratio: 1 /  1) {
  .button-stoerer:before {
    float: left;
    padding-top: 100%;
    content: '';
  }
  .button-stoerer:after {
    display: block;
    content: '';
    clear: both;
  }
}
.button-stoerer:before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 36px;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: var(--stoererDotColor);
  transition: all 0.5s ease-out;
}
.button-stoerer:after {
  content: '';
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 30px;
  mask-size: 42px 100%;
  mask-position: -12px 50%;
  mask-repeat: no-repeat;
  mask-image: var(--arrowRight);
  background-color: #fff;
  transition: all 0.5s ease-out;
}
@media (min-width: 1024px) {
  .button-stoerer:hover:before,
  .button-stoerer:focus:before {
    left: calc(50% + 12px);
  }
  .button-stoerer:hover:after,
  .button-stoerer:focus:after {
    mask-position: 0 50%;
  }
}
@media (max-width: 1023px) {
  .button-stoerer {
    width: 160px;
    padding: 40px 10px 40px;
    --arrowRight: url(/images/arrow-right-mobile.svg);
  }
  .button-stoerer:before {
    width: 16px;
    height: 16px;
    bottom: 20px;
  }
  .button-stoerer:after {
    width: 30px;
    height: 16px;
    bottom: 20px;
    mask-size: 16px 100%;
    mask-position: 0 50%;
  }
}
@media (max-width: 767px) {
  .button-stoerer {
    width: 136px;
    height: 136px;
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
/* outfit-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  src: url('/extras/fonts/outfit-v11-latin-300.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('/extras/fonts/outfit-v11-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  src: url('/extras/fonts/outfit-v11-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 800;
  src: url('/extras/fonts/outfit-v11-latin-800.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-900 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 900;
  src: url('/extras/fonts/outfit-v11-latin-900.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
* {
  margin: 0;
  padding: 0;
  outline: 0;
  border: none;
  background: none;
}
*::selection {
  background: #FF416C;
  color: #fff;
}
.hidden,
.cb-invisible {
  display: none !important;
}
li {
  list-style-position: inside;
}
img,
audio,
video,
iframe {
  float: left;
  width: 100%;
}
strong {
  font-weight: bold;
}
sup,
sub {
  position: relative;
  vertical-align: baseline;
  top: -0.8em;
  font-size: 70%;
}
sub {
  top: 0.4em;
}
address {
  font-style: normal;
}
input,
textarea {
  border-radius: 0;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.125rem, 0vw + 1.125rem, 1.125rem);
  line-height: clamp(1.5rem, 0vw + 1.5rem, 1.5rem);
}
.unit caption {
  display: none;
}
.flag {
  background: #FF416C;
  color: #fff;
}
img.cb-loading {
  background-size: 30px 30px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-loader.svg);
}
.cbdModule {
  float: left;
  width: 100%;
}
#view .cbdModule.is-empty {
  display: none;
}
.cbDynamicContent__element {
  float: left;
  width: 100%;
}
.area {
  float: left;
  width: 100%;
}
#view .area:empty {
  display: none;
}
.unit {
  float: left;
  width: 100%;
  position: relative;
}
.area .unit {
  margin-top: var(--spaceUnit);
  margin-bottom: var(--spaceUnit);
}
.unit__background {
  float: left;
  width: 100%;
}
.unit__content {
  float: left;
  width: 100%;
}
.unit__head,
.unit__body,
.unit__foot {
  float: left;
  width: 100%;
}
.unit--fold div.less,
.unit--fold div.more {
  float: left;
  width: 100%;
}
.unit--fold .ctrl {
  float: left;
  width: 100%;
}
.part {
  float: left;
  width: 100%;
  position: relative;
}
.unit .part {
  margin-top: var(--spacePart);
  margin-bottom: var(--spacePart);
}
.part__content {
  float: left;
  width: 100%;
}
.pict a {
  float: left;
  width: 100%;
}
.pict img {
  width: 100%;
}
.pict img:not(.svg) {
  width: auto;
  max-width: 100% !important;
}
#root#root#root img.zoom {
  display: none !important;
}
.lazyimage {
  visibility: hidden;
}
.lazyimage.lazyloaded {
  visibility: initial;
}
#edit .part video {
  pointer-events: none;
}
.cb-image-figure {
  float: left;
  width: 100%;
}
.cb-image-container {
  float: left;
  width: 100%;
  position: relative;
}
.cb-image-caption {
  float: left;
  width: 100%;
  margin-top: 6px;
}
#disp.zoom .cb-image-figure {
  height: 100%;
}
#disp.zoom .cb-image-container {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#disp.zoom .cb-image-caption {
  display: none;
}
.cb-album .cb-image-figure {
  opacity: 1 !important;
  display: block !important;
}
.cb-album .cb-image-container {
  position: static;
}
.cb-album .cb-image-caption {
  display: none;
}
div.load {
  background: none !important;
}
div.load .load {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  background-color: var(--buttonBackground);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--buttonColor);
  padding: 13px 19px;
  border-radius: 10000px;
  border: 1px solid var(--buttonBorder);
  transition: all 0.5s ease-out;
}
div.load .load:hover,
div.load .load:focus {
  background-color: var(--buttonBackgroundHover);
  color: var(--buttonColorHover);
  border-color: var(--buttonBorderHover);
}
.show a {
  float: left;
  width: 100%;
  display: block;
}
#edit .line {
  padding-top: 5px;
  padding-bottom: 5px;
}
.line hr {
  float: left;
  width: 100%;
  border-bottom: 1px solid var(--textColor);
}
.line hr.bold {
  border-bottom-width: 2px;
}
.line hr.dash {
  border-bottom-style: dashed;
}
.line hr.spot {
  border-bottom-style: dotted;
}
#edit div.code {
  position: relative;
  min-height: 30px;
}
#edit div.code:after {
  content: 'Code';
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: #aaa;
  opacity: 0.6;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 0 20px;
}
.cb-code-executable {
  float: left;
  width: 100%;
}
.part.cb-youtube iframe,
.part.cb-vimeo iframe {
  height: 100%;
  background-color: #fff;
}
.part.cb-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.part.cb-share .cb-service {
  float: left;
  margin-left: 16px;
}
.part.cb-share .cb-service:first-child {
  margin-left: 0;
}
.part.cb-share .cb-service * {
  float: left;
}
.part.cb-share .cb-service a {
  float: left;
  width: 50px;
  height: 50px;
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  box-sizing: border-box;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 10000px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.part.cb-share .cb-service a:hover {
  filter: invert(1);
}
.part.cb-share .cb-service.cb-service-facebook-share a {
  background-size: auto 24px;
  background-image: url(/images/cb-default/socialShare-facebook-black.svg);
}
.part.cb-share .cb-service.cb-service-twitter a {
  background-size: auto 18px;
  background-image: url(/images/cb-default/socialShare-twitter-black.svg);
}
.text-section {
  float: left;
  width: 100%;
}
.list {
  float: left;
  width: 100%;
}
.list--bullet {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.list--bullet li {
  list-style: none;
  padding-left: 27px;
  position: relative;
}
.list--bullet li:before {
  content: '•';
  position: absolute;
  left: 12px;
  top: 0;
  color: var(--textColor);
}
.list--numbered {
  counter-reset: numberedList;
}
.list--numbered li {
  list-style: none;
  padding-left: 24px;
  position: relative;
}
.list--numbered li:before {
  content: counter(numberedList) ".";
  counter-increment: numberedList;
  position: absolute;
  left: 0;
  top: 0;
}
#expo {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
}
#slides {
  float: left;
  width: 100%;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  position: relative;
  overflow: hidden;
}
#slides .slide {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
}
#slides a {
  display: block;
  width: 100%;
  height: 100%;
}
#slides a.null {
  cursor: default;
}
.cb-slides .cb-image-figure {
  height: 100%;
}
.cb-slides .cb-image-container {
  height: 100% !important;
}
#slides img {
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
}
#slides img.lazyimage {
  visibility: initial;
  filter: blur(10px);
  transform: scale(1.05);
  transition: all 0.12s;
}
#slides img.lazyimage.lazyloaded {
  filter: blur(0);
  transform: scale(1);
}
#expo div.link {
  display: none;
  float: left;
  width: 100%;
  height: 0;
}
#expo a.link {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 30px;
  height: 50px;
  transform: translateY(-50%);
  background: #FF416C;
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
}
#expo a.link.prev {
  left: 20px;
}
#expo a.link.next {
  right: 20px;
}
table.link,
table.link tbody {
  float: left;
  display: block;
  width: 100%;
  height: 0;
}
.cb-index-all {
  display: block;
  position: absolute;
  left: 0;
  bottom: 20px;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cb-index-all td {
  float: left;
  display: block;
  margin: 0 10px;
}
.cb-index-all td.init {
  margin-left: 0;
}
.cb-index-all td.exit {
  margin-right: 0;
}
.cb-index-all a {
  display: block;
  width: 16px;
  height: 16px;
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  background: #fff;
  border-radius: 16px;
  transition: all 0.4s;
}
.cb-index-all td.this a {
  background: #FF416C;
}
.cb-index-some {
  display: block;
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}
.cb-index-some td {
  float: left;
  display: block;
  color: #fff;
}
.cb-index-some td:first-child:after {
  display: inline-block;
  content: '/';
  margin: 0 5px;
}
.cb-index-some a {
  color: #fff;
}
.cb-index-some a:hover,
.cb-index-some a:focus {
  color: #fff;
}
#over {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  width: 100%;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.8);
}
#disp {
  position: absolute;
  z-index: 5001;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%);
  width: 1000px !important;
  max-width: 90%;
  min-height: 100vh;
  display: flex !important;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  margin: 0 !important;
  box-sizing: border-box;
  padding: 80px 0 !important;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  line-height: 1.42857143;
  color: var(--textColor);
}
@media (max-width: 767px) {
  #disp {
    padding: 20px 0 !important;
  }
}
.disp-wrapper {
  float: left;
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
  padding: 40px;
}
@media (max-width: 767px) {
  .disp-wrapper {
    padding: 15px;
  }
}
#disp form {
  float: left;
}
.disp-wrapper > form {
  width: 100%;
}
@media (max-width: 767px) {
  #disp form {
    width: 100%;
  }
}
#disp .fail {
  color: #ae2121;
}
#disp .part {
  margin-top: 4px;
  margin-bottom: 4px;
}
#disp a.mail {
  float: left;
  min-height: 26px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}
#disp .head,
#disp .body,
#disp .foot {
  float: left;
  width: 100%;
  position: relative;
}
#disp .body {
  margin: 20px 0;
}
#disp .foot form + form {
  float: right;
}
#disp h2 {
  font-size: 14px;
  line-height: 1.71428571;
  font-weight: normal;
  text-transform: uppercase;
  color: #FF416C;
  width: 100%;
  box-sizing: border-box;
  padding-right: 30px;
}
#disp h3 {
  color: #FF416C;
  font-size: 16px;
  font-weight: bold;
  padding: 20px 0;
  width: 100%;
}
#disp .head .ctrl {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
#disp .head .ctrl > div {
  float: left;
}
#disp .head .ctrl a {
  float: left;
  display: block;
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  width: 16px;
  height: 24px;
  background-size: 16px 16px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-cross-black.svg);
}
#disp .foot input,
#disp .foot a {
  float: left;
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  background-color: var(--buttonBackground);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--buttonColor);
  padding: 13px 19px;
  border-radius: 10000px;
  border: 1px solid var(--buttonBorder);
  transition: all 0.5s ease-out;
  line-height: 1.42857143;
}
#disp .foot input:hover,
#disp .foot a:hover,
#disp .foot input:focus,
#disp .foot a:focus {
  background-color: var(--buttonBackgroundHover);
  color: var(--buttonColorHover);
  border-color: var(--buttonBorderHover);
}
#disp .foot input.next,
#disp .foot a.next {
  float: right;
}
#disp.mail .foot input {
  float: right;
}
@media (max-width: 767px) {
  #disp .foot input,
  #disp .foot a {
    width: 100%;
    margin: 5px 0;
  }
  #disp .foot input:first-child,
  #disp .foot a:first-child {
    margin-top: 0;
  }
  #disp .foot input:last-child,
  #disp .foot a:last-child {
    margin-bottom: 0;
  }
}
#disp fieldset {
  float: left;
  width: 100%;
  position: relative;
  margin: 4px 0;
}
#disp fieldset.tiny {
  width: 48%;
}
#disp .head fieldset,
#disp .foot fieldset {
  margin: 0;
}
@media (max-width: 767px) {
  #disp fieldset.tiny {
    width: 100%;
  }
}
#disp label.name {
  float: left;
  width: 30%;
  margin-right: 4%;
  min-height: 26px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  #disp label.name {
    width: 100%;
    margin-right: 0;
  }
}
#disp input.text,
#disp textarea {
  float: right;
  width: 66%;
  background-color: #F0F0F0;
  min-height: 26px;
  box-sizing: border-box;
  padding: 2px 10px;
}
#disp input.text.fail,
#disp textarea.fail {
  border: 2px solid #ae2121;
}
#disp textarea {
  min-height: 100px;
  padding: 6px 10px;
}
@media (max-width: 767px) {
  #disp input.text,
  #disp textarea {
    width: 100%;
  }
}
#disp select {
  float: right;
  width: 66%;
  background-color: #F0F0F0;
  height: 26px;
}
@media (max-width: 767px) {
  #disp select {
    width: 100%;
  }
}
#disp input + label,
#disp input + label {
  display: block;
  padding-left: 30px;
}
#disp input[type*="radio"],
#disp input[type*="checkbox"] {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  height: 20px;
  width: 20px;
}
.cb-sitemap-target {
  float: left;
  margin-bottom: 20px;
  color: #fff;
  padding: 5px 10px;
  background-color: #ae2121;
}
.cb-sitemap-contents {
  float: left;
  width: 100%;
}
.cb-sitemap-contents li {
  list-style: none;
  padding-left: 20px;
  position: relative;
}
.cb-sitemap-contents li:before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
}
.cb-zoom-indicator {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 15px;
  width: 36px;
  height: 36px;
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  background-size: 18px 18px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-zoom-white.svg);
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.05, 0.8, 0.5, 1);
}
a.zoom .cb-zoom-indicator {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 1023px) {
  .cb-zoom-indicator {
    right: 10px;
    bottom: 10px;
    width: 24px;
    height: 24px;
    background-size: 12px 12px;
    opacity: 1;
    transform: scale(1);
  }
}
#disp.zoom {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  max-width: 100%;
  height: 100%;
  background: none;
  padding: 0 !important;
  display: block !important;
  transform: none;
}
#disp.zoom .disp-wrapper {
  padding: 0;
  background: none;
  height: 100%;
}
#disp.zoom div.head h2 {
  display: none;
}
#disp.zoom div.head div.ctrl {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 2;
}
@media (max-width: 767px) {
  #disp.zoom div.head div.ctrl {
    top: 20px;
    right: 20px;
  }
}
#disp.zoom div.head div.ctrl > div {
  float: left;
  margin: 0 10px;
}
#disp.zoom div.head div.ctrl > div:first-child {
  margin-left: 0;
}
#disp.zoom div.head div.ctrl > div:last-child {
  margin-right: 0;
}
#disp.zoom div.head div.ctrl a {
  float: left;
  display: block;
  width: 20px;
  height: 20px;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-arrow-left-white.svg);
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
}
#disp.zoom div.head div.ctrl .next a {
  background-image: url(/images/cb-default/cb-arrow-right-white.svg);
}
#disp.zoom div.head div.ctrl .quit a {
  background-image: url(/images/cb-default/cb-cross-white.svg);
  background-size: 16px 16px;
}
#disp.zoom div.head div.ctrl a:hover {
  transform: scale(1.1);
}
#disp.zoom div.head div.ctrl a:active {
  transform: scale(1);
}
#disp.zoom div.body {
  float: left;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 80px 30px;
  margin: 0;
}
@media (max-width: 767px) {
  #disp.zoom div.body {
    padding: 60px 20px;
  }
}
#disp.zoom div.body > div {
  float: left;
  width: 100% !important;
  height: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#disp.zoom div.body a {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#disp.zoom div.body img {
  float: left;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#disp.zoom div.foot {
  display: none;
}
.ie11 #disp.zoom {
  position: absolute;
}
.ie11 #disp.zoom div.body,
.ie11 #disp.zoom div.body > div,
.ie11 #disp.zoom div.body a {
  height: auto;
  display: block;
}
.ie11 #disp.zoom div.body img {
  float: none;
  position: relative;
  height: auto;
  display: block;
  margin: 0 auto;
}
#disp.srch {
  display: block !important;
}
#disp.srch h2 {
  display: none;
}
#disp.srch .disp-wrapper {
  background: none;
  padding: 0;
}
#disp.srch .head .ctrl a {
  background-image: url(/images/cb-default/cb-cross-white.svg);
}
#disp.srch div.body {
  margin: 0;
}
#disp.srch fieldset {
  margin: 0;
}
#disp.srch label.name {
  display: none;
}
#disp.srch input.text {
  font-family: 'Outfit', sans-serif;
  background-color: transparent;
  margin-top: 40px;
  width: 100%;
  color: #fff;
  font-size: 50px;
  line-height: 1;
  border-bottom: 1px solid #fff;
  padding: 20px 0;
  -webkit-font-smoothing: antialiased;
  appearance: none;
}
@media (max-width: 767px) {
  #disp.srch input.text {
    font-size: 18px;
  }
}
.cb-result {
  float: left;
  width: 100%;
  color: #fff;
  font-size: 18px;
  text-align: left;
  -webkit-font-smoothing: antialiased;
}
.cb-result p {
  margin-top: 40px;
}
.cb-result a {
  color: #fff;
  text-decoration: none;
}
.cb-result a:hover {
  color: #fff;
  text-decoration: underline;
}
.cb-result table {
  float: left;
  width: 100%;
  border-collapse: collapse;
}
.cb-result tbody {
  width: 100%;
}
.cb-result th {
  padding-top: 20px;
  font-size: 24px;
  line-height: 1;
  text-align: left;
}
.cb-result th:first-child {
  padding-right: 40px;
  width: 80px;
}
.cb-result td {
  padding-top: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.cb-result th,
.cb-result td {
  vertical-align: middle;
}
@media (max-width: 767px) {
  .cb-result {
    font-size: 14px;
  }
  .cb-result th {
    padding-top: 10px;
    font-size: 18px;
  }
  .cb-result th:first-child {
    padding-right: 10px;
    width: 54px;
  }
  .cb-result td {
    padding-bottom: 10px;
    padding-top: 5px;
  }
}
.unit.form form {
  float: left;
  width: 100%;
}
.cb-form-required {
  float: left;
  width: 100%;
}
.unit.form fieldset {
  float: left;
  width: 100%;
  position: relative;
}
.unit.form div.ctrl {
  float: left;
  width: 100%;
}
.unit.form div.ctrl.fail {
  box-sizing: border-box;
  padding: 5px;
  background-color: #e7bcbc;
}
@media (min-width: 768px) {
  .unit.form .tile div.ctrl {
    float: right;
    width: 66%;
  }
}
.recaptcha-info {
  text-align: left !important;
}
.unit.form .name {
  float: left;
  width: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 5px;
}
#view .unit.form .name {
  display: none;
}
@media (min-width: 768px) {
  .unit.form .tile .name {
    padding-bottom: 0;
    width: 30%;
    min-height: 40px;
  }
}
.unit.form input.text,
.unit.form textarea {
  float: left;
  width: 100%;
  box-sizing: border-box;
  min-height: 40px;
  padding: 15px 30px;
  appearance: none;
  border: 1px solid var(--textColor);
  border-radius: 40px;
}
.unit.form input.text::placeholder,
.unit.form textarea::placeholder {
  color: var(--textColor);
  opacity: 0.5;
}
.unit.form input.text.fail,
.unit.form textarea.fail {
  background-color: #e7bcbc;
}
@media (min-width: 768px) {
  .unit.form .tile input.text,
  .unit.form .tile textarea {
    float: right;
    width: 66%;
  }
}
.unit.form div.tick div.ctrl > div {
  float: left;
  width: 100%;
  position: relative;
  display: flex;
}
@media (min-width: 768px) {
  .unit.form div.tick.tile div.ctrl > div {
    min-height: 40px;
    align-items: center;
  }
}
.unit.form div.tick label {
  float: left;
  width: 100%;
  box-sizing: border-box;
}
.unit.form div.tick input {
  float: left;
  margin-right: 10px;
  flex-shrink: 0;
  width: 20px;
}
@media (min-width: 768px) {
  .unit.form div.tick.tile input {
    align-self: stretch;
  }
}
.unit.form select {
  float: left;
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.125rem, 0vw + 1.125rem, 1.125rem);
  line-height: clamp(1.5rem, 0vw + 1.5rem, 1.5rem);
  background: #F0F0F0;
  height: 40px;
  border: 1px solid var(--textColor);
  padding: 5px;
}
.unit.form .ship fieldset > div {
  float: left;
  width: 100%;
}
.unit.form .ship fieldset > div.fail {
  box-sizing: border-box;
  padding: 5px;
  background-color: #e7bcbc;
}
.unit.form .ship div.chop {
  float: left;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.unit.form .ship div.chop input {
  float: left;
  width: 100%;
  display: block;
  font-size: 12px;
}
.unit.form .ship div.chop span {
  float: left;
}
.unit.form .ship div.chop span::file-selector-button {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  background-color: var(--buttonBackground);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--buttonColor);
  padding: 13px 19px;
  border-radius: 10000px;
  border: 1px solid var(--buttonBorder);
  transition: all 0.5s ease-out;
  margin-right: 16px;
}
.unit.form .ship div.chop span::file-selector-button:hover,
.unit.form .ship div.chop span::file-selector-button:focus {
  background-color: var(--buttonBackgroundHover);
  color: var(--buttonColorHover);
  border-color: var(--buttonBorderHover);
}
.unit.form .ship div.chop a {
  float: left;
  display: block;
  margin-left: 10px;
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  width: 12px;
  height: 12px;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-cross-black.svg);
}
@media (min-width: 768px) {
  .unit.form .ship.tile fieldset > div {
    float: right;
    width: 66%;
    min-height: 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }
}
.unit.form .submit {
  float: left;
  margin-top: var(--spacePart);
  margin-bottom: var(--spacePart);
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  background-color: var(--buttonBackground);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--buttonColor);
  padding: 13px 19px;
  border-radius: 10000px;
  border: 1px solid var(--buttonBorder);
  transition: all 0.5s ease-out;
}
.unit.form .submit:hover,
.unit.form .submit:focus {
  background-color: var(--buttonBackgroundHover);
  color: var(--buttonColorHover);
  border-color: var(--buttonBorderHover);
}
.calendar {
  position: absolute !important;
  z-index: 2;
  left: 34% !important;
  top: 100% !important;
  right: unset !important;
  background: #fff;
  width: 200px;
  margin: 10px 0 0 0 !important;
  box-shadow: 0 0 6px rgba(160, 160, 160, 0.4);
  font-size: 14px;
  line-height: 1.14285714;
  padding: 20px;
}
.calendar table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.calendar th,
.calendar td {
  text-align: center;
  padding: 2px;
}
.calendar tr.month th {
  padding-bottom: 10px;
}
.calendar tr.month th:first-child a,
.calendar tr.month th:last-child a {
  float: left;
  display: block;
  width: 16px;
  height: 16px;
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-arrow-left-black.svg);
}
.calendar tr.month th:last-child a {
  float: right;
  background-image: url(/images/cb-default/cb-arrow-right-black.svg);
}
.calendar td.today a {
  color: var(--textColor);
  text-decoration: underline;
}
.unit.form .recaptcha-info {
  color: #aaa;
}
.unit.form .recaptcha-info a {
  color: #aaa;
}
.unit.form .recaptcha-info a:hover,
.unit.form .recaptcha-info a:focus {
  text-decoration: underline;
}
.unit.form .part.fail {
  font-size: 16px;
  line-height: 1.25;
  border-left: 4px solid #ae2121;
  box-sizing: border-box;
  padding: 20px;
  background-color: #e7bcbc;
  color: #ae2121;
}
.unit.form div.cb-form-sent {
  float: left;
  width: 100%;
  margin-top: var(--spacePart);
  margin-bottom: var(--spacePart);
}
.unit.form div.cb-form-sent a {
  float: right;
  color: #5abb55;
}
#disp.two-step-verification div.body {
  overflow: hidden;
}
#disp.two-step-verification p {
  float: left;
  width: 100%;
}
.two-step-verification-container {
  float: left;
  width: 100%;
  min-width: 300px;
  margin-top: 10px;
  height: 350px;
  position: relative;
}
.two-step-verification-container a {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  background-color: var(--buttonBackground);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--buttonColor);
  padding: 13px 19px;
  border-radius: 10000px;
  border: 1px solid var(--buttonBorder);
  transition: all 0.5s ease-out;
}
.two-step-verification-container a:hover,
.two-step-verification-container a:focus {
  background-color: var(--buttonBackgroundHover);
  color: var(--buttonColorHover);
  border-color: var(--buttonBorderHover);
}
.two-step-verification__div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #fff;
  background-size: 100px 100px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-loader-black.svg);
}
.two-step-verification-container.loaded .two-step-verification__div {
  background-image: none;
}
.table {
  float: left;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
.table-layout-fixed .table {
  table-layout: fixed;
}
.table tr {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.table-head tr {
  border-top: none;
}
.table th {
  font-weight: normal;
  padding: 5px 10px;
  vertical-align: top;
}
.table th.init {
  padding-left: 0;
}
.table th.exit {
  padding-right: 0;
}
.table th.align-left {
  text-align: left;
}
.table th.align-center {
  text-align: center;
}
.table th.align-right {
  text-align: right;
}
.table--headline th {
  font-weight: bold;
}
.table td {
  padding: 5px 10px;
  vertical-align: top;
}
.table td.init {
  padding-left: 0;
}
.table td.exit {
  padding-right: 0;
}
.table td.align-left {
  text-align: left;
}
.table td.align-center {
  text-align: center;
}
.table td.align-right {
  text-align: right;
}
#edit .table td {
  border-left: 1px dashed #e0e0e0;
  border-right: 1px dashed #e0e0e0;
}
.table--footer .table-foot td {
  font-weight: bold;
}
@media (max-width: 767px) {
  .part--table .table {
    font-size: 2.60756193vw;
  }
}
html,
body {
  float: left;
  width: 100%;
  min-height: 100vh;
}
main {
  float: left;
  width: 100%;
  flex: 1 0;
}
#head {
  float: left;
  width: 100%;
}
.layout1 #head,
.layout2 #head {
  background-color: var(--headerBackground);
}
.layout3 #head,
.layout4 #head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--spacePart);
}
.layout3 #head h1,
.layout4 #head h1 {
  float: left;
  width: 100%;
  max-width: 940px;
}
.layout3 #head {
  margin-top: var(--spaceTotal);
}
.layout4 #head {
  margin-top: calc(var(--spaceTotal) + var(--headerOffset));
}
.wrapper {
  float: left;
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.125rem, 0vw + 1.125rem, 1.125rem);
  line-height: clamp(1.5rem, 0vw + 1.5rem, 1.5rem);
  color: var(--textColor);
  accent-color: #FF416C;
  overflow: hidden;
  hyphens: none;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}
.desk {
  *zoom: 1;
  margin: 0 auto;
  max-width: var(--deskMaxWidth);
  width: var(--deskWidth);
  position: relative;
}
.desk:before,
.desk:after {
  display: table;
  content: '';
}
.desk:after {
  clear: both;
}
.container {
  float: left;
  width: 100%;
  position: relative;
}
.section {
  float: left;
  width: 100%;
  position: relative;
}
.pageColor--pink .section--header,
.pageColor--pink .mobile-navigation {
  --buttonColorHover: #FF416C;
}
.pageColor--lightblue {
  --headerBackground: #22E3FB;
  --navigationActiveColor: #FF416C;
}
.pageColor--lightblue .section--header,
.pageColor--lightblue .mobile-navigation {
  --buttonColorHover: #FF416C;
}
.pageColor--yellow {
  --headerBackground: #FED63F;
  --navigationActiveColor: #22E3FB;
}
.pageColor--yellow .section--header,
.pageColor--yellow .mobile-navigation {
  --buttonColorHover: #22E3FB;
}
.section--header {
  background-color: var(--headerBackground);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  transition: all 0.5s ease-out;
}
.section--header.navi--hidden {
  transform: translateY(-100%);
}
body:not(.layout4) .section--header {
  --linkColor: #fff;
  --linkColorHover: #fff;
  --buttonColor: #fff;
  --buttonBorder: #fff;
  --buttonBackgroundHover: #fff;
  --buttonBorderHover: #fff;
}
body.layout3 .section--header {
  --buttonColorHover: #FF416C;
}
body.layout4 .section--header {
  --headerBackground: #fff;
}
.container--head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 var(--deskSpace);
}
.logo {
  float: left;
  height: 50px;
}
.logo__image {
  width: auto;
  height: 100%;
}
.cbdModule--supportLink {
  width: auto;
}
.cbdModule--supportLink .supportLink {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  background-color: var(--buttonBackground);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--buttonColor);
  padding: 13px 19px;
  border-radius: 10000px;
  border: 1px solid var(--buttonBorder);
  transition: all 0.5s ease-out;
}
.cbdModule--supportLink .supportLink:hover,
.cbdModule--supportLink .supportLink:focus {
  background-color: var(--buttonBackgroundHover);
  color: var(--buttonColorHover);
  border-color: var(--buttonBorderHover);
}
.section--multimood {
  background-color: var(--headerBackground);
  --textColor: #fff;
  --linkColor: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  isolation: isolate;
}
.section--multimood:before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: 1546px;
  height: 100%;
  background-repeat: no-repeat;
  background-image: url(/images/designelement-signature-short.svg);
  z-index: -1;
  pointer-events: none;
}
.pageColor--lightblue .section--multimood {
  --stoererBackground: #FF416C;
  --stoererDotColor: #FED63F;
}
.container--mood {
  width: var(--deskWidth);
  max-width: var(--deskMaxWidth);
  box-sizing: border-box;
  margin-top: var(--headerOffset);
  display: flex;
}
.container--mood .mood {
  float: left;
  aspect-ratio: 0.75714286;
}
@supports not (aspect-ratio: 530 /  700) {
  .container--mood .mood:before {
    float: left;
    padding-top: 132.0754717%;
    content: '';
  }
  .container--mood .mood:after {
    display: block;
    content: '';
    clear: both;
  }
}
.container--mood .mood * {
  height: 100%;
}
.container--mood .mood img {
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.container--mood .mood .placeholder {
  padding-bottom: 0;
}
.container--mood .content {
  float: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  box-sizing: border-box;
}
.cbdModule--stoerer {
  width: auto;
  display: flex;
  position: absolute;
  flex-direction: column;
  align-items: flex-end;
  box-sizing: border-box;
}
.cbdModule--stoerer .stoerer {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--stoererBackground);
  width: 258px;
  aspect-ratio: 1;
  font-size: clamp(0.8125rem, 1.08303249vw + 0.54715704rem, 1.5625rem);
  line-height: clamp(1rem, 1.26353791vw + 0.69043321rem, 1.875rem);
  text-align: center;
  font-weight: 700;
  color: var(--stoererColor);
  padding: 75px 10px 75px 10px;
  border-radius: 10000px;
  position: relative;
}
@supports not (aspect-ratio: 1 /  1) {
  .cbdModule--stoerer .stoerer:before {
    float: left;
    padding-top: 100%;
    content: '';
  }
  .cbdModule--stoerer .stoerer:after {
    display: block;
    content: '';
    clear: both;
  }
}
.cbdModule--stoerer .stoerer:before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 36px;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: var(--stoererDotColor);
  transition: all 0.5s ease-out;
}
.cbdModule--stoerer .stoerer:after {
  content: '';
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 30px;
  mask-size: 42px 100%;
  mask-position: -12px 50%;
  mask-repeat: no-repeat;
  mask-image: var(--arrowRight);
  background-color: #fff;
  transition: all 0.5s ease-out;
}
@media (min-width: 1024px) {
  .cbdModule--stoerer .stoerer:hover:before,
  .cbdModule--stoerer .stoerer:focus:before {
    left: calc(50% + 12px);
  }
  .cbdModule--stoerer .stoerer:hover:after,
  .cbdModule--stoerer .stoerer:focus:after {
    mask-position: 0 50%;
  }
}
@media (max-width: 1023px) {
  .cbdModule--stoerer .stoerer {
    width: 160px;
    padding: 40px 10px 40px;
    --arrowRight: url(/images/arrow-right-mobile.svg);
  }
  .cbdModule--stoerer .stoerer:before {
    width: 16px;
    height: 16px;
    bottom: 20px;
  }
  .cbdModule--stoerer .stoerer:after {
    width: 30px;
    height: 16px;
    bottom: 20px;
    mask-size: 16px 100%;
    mask-position: 0 50%;
  }
}
@media (max-width: 767px) {
  .cbdModule--stoerer .stoerer {
    width: 136px;
    height: 136px;
  }
}
.no-link.cbdModule--stoerer .stoerer:before,
.no-link.cbdModule--stoerer .stoerer:after {
  display: none;
}
.downlink {
  float: left;
  cursor: pointer;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 54px;
}
.downlink:before {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: var(--navigationActiveColor);
  transition: all 0.5s ease-out;
}
.downlink:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 31px;
  mask-size: 8px 42px;
  mask-position: 50% 100%;
  mask-repeat: no-repeat;
  mask-image: var(--arrowBottom);
  background-color: #fff;
  transition: all 0.5s ease-out;
}
.downlink:hover:before,
.downlink:focus:before {
  bottom: 0;
}
.downlink:hover:after,
.downlink:focus:after {
  height: 42px;
}
.moodText {
  font-size: clamp(1.5625rem, 0.90252708vw + 1.34138087rem, 2.1875rem);
  line-height: clamp(1.875rem, 1.35379061vw + 1.5433213rem, 2.8125rem);
  font-weight: bold;
  color: var(--textColor);
  font-weight: 400;
}
.section--intro {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container--intro {
  width: var(--deskWidth);
  max-width: var(--deskMaxWidth);
  box-sizing: border-box;
  margin-top: var(--headerOffset);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cbdModule--introQuote .introQuote {
  font-size: clamp(2.8125rem, 4.96389892vw + 1.59634477rem, 6.25rem);
  line-height: clamp(2.8125rem, 4.96389892vw + 1.59634477rem, 6.25rem);
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  color: var(--altTextColor);
}
#view .section--slogan:has(.slogan.is-empty) {
  display: none;
}
.container--slogan {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cbdModule--slogan .slogan {
  font-size: clamp(2.8125rem, 11.28158845vw + 0.04851083rem, 10.625rem);
  line-height: clamp(2.8125rem, 11.28158845vw + 0.04851083rem, 10.625rem);
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  color: var(--altTextColor);
}
.designelement--signature-s {
  float: left;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: var(--designelementSignatureS);
}
.bgcolor--pink {
  background-color: #FF416C;
  --textColor: #fff;
  --linkColor: #fff;
  --altTextColor: #FED63F;
  --buttonColor: #fff;
  --buttonBorder: #fff;
  --buttonBackgroundHover: #fff;
  --buttonColorHover: #FF416C;
  --buttonBorderHover: #fff;
  --foldingToggleColor: #fff;
  --foldingToggleActiveColor: #FED63F;
}
.bgcolor--lightblue {
  background-color: #22E3FB;
  --altTextColor: #fff;
  --designelementSignatureS: url(/images/designelement-signature-s-yellow.svg);
}
.bgcolor--yellow {
  background-color: #FED63F;
}
.bgcolor--black {
  background-color: #000;
  --textColor: #fff;
  --linkColor: #fff;
  --buttonColor: #fff;
  --buttonBorder: #fff;
  --buttonBackgroundHover: #fff;
  --buttonColorHover: #000;
  --buttonBorderHover: #fff;
  --foldingToggleColor: #fff;
}
.section--footer {
  --buttonColor: #fff;
  --buttonBorder: #fff;
  --buttonBackgroundHover: #fff;
  --buttonColorHover: #FF416C;
  --buttonBorderHover: #fff;
}
.footarea {
  float: left;
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.footarea--two {
  justify-content: space-between;
}
.footpart {
  float: left;
  position: relative;
}
.vcard {
  font-size: 24px;
  line-height: 1.5;
  color: var(--textColor);
}
.vcard a:hover,
.vcard a:focus {
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-thickness: 1px;
}
.contactLink {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  background-color: var(--buttonBackground);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--buttonColor);
  padding: 13px 19px;
  border-radius: 10000px;
  border: 1px solid var(--buttonBorder);
  transition: all 0.5s ease-out;
}
.contactLink:hover,
.contactLink:focus {
  background-color: var(--buttonBackgroundHover);
  color: var(--buttonColorHover);
  border-color: var(--buttonBorderHover);
}
.footTitle {
  color: var(--textColor);
}
.part--supporterLinks .iconLinks__content {
  float: left;
  width: 100%;
  display: flex;
  gap: 24px;
}
.part--supporterLinks .iconLinks__icon {
  float: left;
  height: 45px;
  mask-size: contain;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  background-color: #fff;
  transition: all 0.5s ease-out;
}
.part--supporterLinks .iconLinks__icon--fdp {
  width: 55px;
  mask-image: url(/images/logo-fdp-grenchen-black.svg);
}
.part--supporterLinks .iconLinks__icon--diemitte {
  width: 82px;
  mask-image: url(/images/logo-diemitte-grenchen-black.svg);
}
.part--supporterLinks .iconLinks__icon--svp {
  width: 60px;
  mask-image: url(/images/logo-svp-grenchen-black.svg);
}
.part--supporterLinks .iconLinks__icon:hover,
.part--supporterLinks .iconLinks__icon:focus {
  background-color: #000;
}
.part--socialLinks .iconLinks__content {
  float: left;
  width: 100%;
  display: flex;
  gap: 18px;
}
.part--socialLinks .iconLinks__item {
  float: left;
  width: 50px;
  height: 50px;
  background-color: #FF416C;
  border-radius: 10000px;
  transition: all 0.5s ease-out;
}
.part--socialLinks .iconLinks__item .iconLinks__icon {
  float: left;
  width: 100%;
  height: 100%;
  mask-size: 100% 100%;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  background-color: #fff;
  transition: all 0.5s ease-out;
}
.part--socialLinks .iconLinks__item .iconLinks__icon--linkedin {
  mask-image: url(/images/icon-linkedin.svg);
}
.part--socialLinks .iconLinks__item .iconLinks__icon--instagram {
  mask-image: url(/images/icon-instagram.svg);
}
.part--socialLinks .iconLinks__item .iconLinks__icon--facebook {
  mask-image: url(/images/icon-facebook.svg);
}
.part--socialLinks .iconLinks__item:hover,
.part--socialLinks .iconLinks__item:focus {
  background-color: #fff;
}
.part--socialLinks .iconLinks__item:hover .iconLinks__icon,
.part--socialLinks .iconLinks__item:focus .iconLinks__icon {
  background-color: #000;
}
.copyright {
  color: var(--textColor);
  font-size: clamp(0.875rem, 0.36101083vw + 0.78655235rem, 1.125rem);
  line-height: clamp(1.5rem, 0vw + 1.5rem, 1.5rem);
}
.legalLink {
  font-size: clamp(0.875rem, 0.36101083vw + 0.78655235rem, 1.125rem);
  line-height: clamp(1.5rem, 0vw + 1.5rem, 1.5rem);
}
.legalLink:hover,
.legalLink:focus {
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-thickness: 1px;
}
a {
  color: var(--linkColor);
  text-decoration: none;
}
a:hover,
a:focus {
  color: var(--linkColor);
}
.layout1 h1,
.layout2 h1 {
  font-size: clamp(3.75rem, 3.6101083vw + 2.86552347rem, 6.25rem);
  line-height: clamp(3.75rem, 3.6101083vw + 2.86552347rem, 6.25rem);
  font-weight: bold;
  color: var(--textColor);
}
.layout3 h1,
.layout4 h1 {
  font-size: clamp(2.5rem, 1.80505415vw + 2.05776173rem, 3.75rem);
  line-height: clamp(3.125rem, 1.80505415vw + 2.68276173rem, 4.375rem);
  font-weight: bold;
  color: var(--textColor);
}
h2 {
  font-size: clamp(2.5rem, 1.80505415vw + 2.05776173rem, 3.75rem);
  line-height: clamp(3.125rem, 1.80505415vw + 2.68276173rem, 4.375rem);
  font-weight: bold;
  color: var(--textColor);
}
h3 {
  font-size: clamp(2.1875rem, 1.35379061vw + 1.8558213rem, 3.125rem);
  line-height: clamp(2.5rem, 1.80505415vw + 2.05776173rem, 3.75rem);
  font-weight: bold;
  color: var(--textColor);
}
h4 {
  font-size: clamp(1.5625rem, 0.90252708vw + 1.34138087rem, 2.1875rem);
  line-height: clamp(1.875rem, 1.35379061vw + 1.5433213rem, 2.8125rem);
  font-weight: bold;
  color: var(--textColor);
  font-weight: 400;
}
h5 {
  font-size: clamp(0.875rem, 0.36101083vw + 0.78655235rem, 1.125rem);
  line-height: clamp(1.125rem, 0vw + 1.125rem, 1.125rem);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--textColor);
}
.loud {
  font-size: clamp(1.125rem, 0.54151625vw + 0.99232852rem, 1.5rem);
  line-height: clamp(1.5rem, 1.08303249vw + 1.23465704rem, 2.25rem);
  color: var(--textColor);
}
.norm {
  color: var(--textColor);
}
.pale {
  font-size: 16px;
  line-height: 1.5;
  color: var(--textColor);
}
.area--one {
  display: flex;
  flex-wrap: wrap;
}
.area--one .unitOne {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.area--one .unitOne--1-1 .unit__content {
  max-width: 940px;
}
.area--one .unitOne--1-1indent .unit__content {
  max-width: 700px;
}
.area--one .unitTwo {
  max-width: 1096px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.area--one .unitTwo .unit__background {
  margin-top: var(--spacePart);
  margin-bottom: var(--spacePart);
  aspect-ratio: 0.75714286;
}
@supports not (aspect-ratio: 530 /  700) {
  .area--one .unitTwo .unit__background:before {
    float: left;
    padding-top: 132.0754717%;
    content: '';
  }
  .area--one .unitTwo .unit__background:after {
    display: block;
    content: '';
    clear: both;
  }
}
.area--one .unitTwo .unit__background * {
  height: 100%;
}
.area--one .unitTwo .unit__background img {
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.area--one .unitTwo .unit__background .placeholder {
  padding-bottom: 0;
}
.area--one .unitThree {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  isolation: isolate;
  margin-top: var(--spaceTotal);
  margin-bottom: var(--spaceTotal);
}
.area--one .unitThree--pink:before {
  background-color: #FF416C;
}
.area--one .unitThree--lightblue {
  --stoererBackground: #FF416C;
  --stoererDotColor: #FED63F;
}
.area--one .unitThree--lightblue:before {
  background-color: #22E3FB;
}
.area--one .unitThree:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  margin-left: -50vw;
  background-size: 50% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/designelement-signature.svg);
  z-index: -1;
  pointer-events: none;
}
.area--one .unitThree .unit__content {
  max-width: 562px;
  box-sizing: border-box;
  margin-right: var(--fluidSize);
  --fluidSize: clamp(0rem, 60.7966457vw + -38.87185535rem, 18.125rem);
}
.area--one .unitThree .part.link:first-child {
  position: absolute;
  width: auto;
  margin: 0;
}
.area--one .unitThree .part.link:first-child .open {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--stoererBackground);
  width: 258px;
  aspect-ratio: 1;
  font-size: clamp(0.8125rem, 1.08303249vw + 0.54715704rem, 1.5625rem);
  line-height: clamp(1rem, 1.26353791vw + 0.69043321rem, 1.875rem);
  text-align: center;
  font-weight: 700;
  color: var(--stoererColor);
  padding: 75px 10px 75px 10px;
  border-radius: 10000px;
  position: relative;
}
@supports not (aspect-ratio: 1 /  1) {
  .area--one .unitThree .part.link:first-child .open:before {
    float: left;
    padding-top: 100%;
    content: '';
  }
  .area--one .unitThree .part.link:first-child .open:after {
    display: block;
    content: '';
    clear: both;
  }
}
.area--one .unitThree .part.link:first-child .open:before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 36px;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: var(--stoererDotColor);
  transition: all 0.5s ease-out;
}
.area--one .unitThree .part.link:first-child .open:after {
  content: '';
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 30px;
  mask-size: 42px 100%;
  mask-position: -12px 50%;
  mask-repeat: no-repeat;
  mask-image: var(--arrowRight);
  background-color: #fff;
  transition: all 0.5s ease-out;
}
@media (min-width: 1024px) {
  .area--one .unitThree .part.link:first-child .open:hover:before,
  .area--one .unitThree .part.link:first-child .open:focus:before {
    left: calc(50% + 12px);
  }
  .area--one .unitThree .part.link:first-child .open:hover:after,
  .area--one .unitThree .part.link:first-child .open:focus:after {
    mask-position: 0 50%;
  }
}
@media (max-width: 1023px) {
  .area--one .unitThree .part.link:first-child .open {
    width: 160px;
    padding: 40px 10px 40px;
    --arrowRight: url(/images/arrow-right-mobile.svg);
  }
  .area--one .unitThree .part.link:first-child .open:before {
    width: 16px;
    height: 16px;
    bottom: 20px;
  }
  .area--one .unitThree .part.link:first-child .open:after {
    width: 30px;
    height: 16px;
    bottom: 20px;
    mask-size: 16px 100%;
    mask-position: 0 50%;
  }
}
@media (max-width: 767px) {
  .area--one .unitThree .part.link:first-child .open {
    width: 136px;
    height: 136px;
  }
}
.area--one .unitThree .part.link:first-child.no-link .open:before,
.area--one .unitThree .part.link:first-child.no-link .open:after {
  display: none;
}
.area--one .unitThree .part.link:not(:first-child).link--primary .open {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  background-color: var(--buttonBackground);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--buttonColor);
  padding: 13px 19px;
  border-radius: 10000px;
  border: 1px solid var(--buttonBorder);
  transition: all 0.5s ease-out;
}
.area--one .unitThree .part.link:not(:first-child).link--primary .open:hover,
.area--one .unitThree .part.link:not(:first-child).link--primary .open:focus {
  background-color: var(--buttonBackgroundHover);
  color: var(--buttonColorHover);
  border-color: var(--buttonBorderHover);
}
.area--one .unitThree .part.link:not(:first-child).link--secondary .open {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--secondaryButtonColor);
  padding-left: 52px;
  padding-right: 13px;
  position: relative;
  transition: all 0.5s ease-out;
}
.area--one .unitThree .part.link:not(:first-child).link--secondary .open:before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: var(--secondaryButtonDotColor);
  transition: all 0.5s ease-out;
}
.area--one .unitThree .part.link:not(:first-child).link--secondary .open:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 30px;
  height: 30px;
  mask-size: 42px 100%;
  mask-position: 100% 50%;
  mask-repeat: no-repeat;
  mask-image: var(--arrowRight);
  background-color: var(--secondaryButtonColor);
  transition: all 0.5s ease-out;
}
.area--one .unitThree .part.link:not(:first-child).link--secondary .open:hover,
.area--one .unitThree .part.link:not(:first-child).link--secondary .open:focus {
  padding-left: 65px;
  padding-right: 0;
}
.area--one .unitThree .part.link:not(:first-child).link--secondary .open:hover:before,
.area--one .unitThree .part.link:not(:first-child).link--secondary .open:focus:before {
  left: 25px;
}
.area--one .unitThree .part.link:not(:first-child).link--secondary .open:hover:after,
.area--one .unitThree .part.link:not(:first-child).link--secondary .open:focus:after {
  width: 42px;
}
.area--one .unitFour {
  margin-top: var(--spaceTotal);
  margin-bottom: var(--spaceTotal);
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.area--one .unitFour:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
.area--one .unitFour--pink {
  --textColor: #fff;
  --linkColor: #fff;
  --buttonColor: #fff;
  --buttonBorder: #fff;
  --buttonBackgroundHover: #fff;
  --buttonColorHover: #FF416C;
  --buttonBorderHover: #fff;
}
.area--one .unitFour--pink:before {
  background-color: #FF416C;
}
.area--one .unitFour--lightblue:before {
  background-color: #22E3FB;
}
.area--one .unitFour--yellow:before {
  background-color: #FED63F;
}
.area--one .unitFour .unit__content {
  max-width: 1030px;
}
.area--one .unitFolding {
  margin-top: var(--spaceTotal);
  margin-bottom: var(--spaceTotal);
  isolation: isolate;
  box-sizing: border-box;
  padding-top: calc(var(--spacePart) * 4);
  padding-bottom: calc(var(--spacePart) * 4);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.area--one .unitFolding:before {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -50vw;
  top: 0;
  width: 100vw;
  height: 100%;
  border-top: 1px solid var(--textColor);
  border-bottom: 1px solid var(--textColor);
  isolation: isolate;
  z-index: -1;
  pointer-events: none;
}
.area--one .unitFolding .unit__content {
  max-width: 1140px;
}
.area--one .unitFolding div.more {
  display: block !important;
  box-sizing: border-box;
}
#view .area--one .unitFolding div.more {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-30px);
  height: 0;
  transition: all 0.5s ease-out;
}
.area--one .unitFolding div.less {
  box-sizing: border-box;
}
.area--one .unitFolding .fold-toggle {
  float: left;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-size: clamp(1.5625rem, 0.90252708vw + 1.34138087rem, 2.1875rem);
  line-height: clamp(1.875rem, 1.35379061vw + 1.5433213rem, 2.8125rem);
  font-weight: bold;
  color: var(--textColor);
  font-weight: 400;
}
.area--one .unitFolding .fold-toggle:after {
  content: '';
  position: absolute;
  right: 0;
  top: var(--fluidSize);
  --fluidSize: clamp(0.5625rem, 0.18050542vw + 0.51827617rem, 0.6875rem);
  border-radius: 10000px;
  background-color: var(--foldingToggleColor);
  transition: all 0.5s ease-out;
}
#view .area--one .unitFolding.unit--foldOpen div.more {
  height: var(--js-elementHeight);
  opacity: 1;
  transform: translateY(0);
}
.area--one .unitFolding.unit--foldOpen .fold-toggle:after {
  transform: scale(2);
  background-color: var(--foldingToggleActiveColor);
}
.area--one .unitFolding .unit__foot {
  display: none;
}
.area--one .unitFolding + .unitFolding {
  margin-top: calc(var(--spaceTotal) * -1 + 1px);
}
.area--one .unitGallery {
  margin-top: var(--spaceTotal);
  margin-bottom: var(--spaceTotal);
  --spacePart: 0;
}
.area--one .unitGallery .unit__body {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.area--one .unitGallery .part * {
  height: 100%;
}
.area--one .unitGallery .part img {
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.area--one .unitGallery .part .placeholder {
  padding-bottom: 0;
}
.area--one .unitSupporter {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.area--one .unitSupporter .unit__content {
  max-width: 1300px;
}
.area--one .unitSupporter .part--supporterLogos .iconLinks__content {
  float: left;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.area--one .unitSupporter .part--supporterLogos .iconLinks__icon {
  float: left;
  height: 120px;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.area--one .unitSupporter .part--supporterLogos .iconLinks__icon--fdp {
  width: 106px;
  background-image: url(/images/logo-fdp-grenchen-rgb.svg);
}
.area--one .unitSupporter .part--supporterLogos .iconLinks__icon--diemitte {
  width: 180px;
  background-image: url(/images/logo-diemitte-grenchen-rgb.png);
}
.area--one .unitSupporter .part--supporterLogos .iconLinks__icon--svp {
  width: 140px;
  background-image: url(/images/logo-svp-dt-rgb.jpg);
}
.area--one .unitTestimonialSlider {
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-top: var(--spaceTotal);
  margin-bottom: var(--spaceTotal);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.area--one .unit--form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.area--one .unit--form .unit__content {
  max-width: 940px;
}
.area--one .unit--noSpaceTop {
  margin-top: 0;
}
.area--one .unit--spaceTopDouble {
  margin-top: calc(var(--spaceUnit) * 2);
}
.area--one .unit--spaceTopDouble.unitThree,
.area--one .unit--spaceTopDouble.unitFour,
.area--one .unit--spaceTopDouble.unitGallery,
.area--one .unit--spaceTopDouble.unitSlider {
  margin-top: calc(var(--spaceTotal) * 2);
}
.area--one .unit--noSpaceBottom {
  margin-bottom: 0;
}
.area--one .unit--spaceBottomDouble {
  margin-bottom: calc(var(--spaceUnit) * 2);
}
.area--one .unit--spaceBottomDouble.unitThree,
.area--one .unit--spaceBottomDouble.unitFour,
.area--one .unit--spaceBottomDouble.unitGallery,
.area--one .unit--spaceBottomDouble.unitSlider {
  margin-bottom: calc(var(--spaceTotal) * 2);
}
.part.text .open:not(.fold-toggle) {
  text-decoration: underline;
  text-underline-position: under;
}
.part.text .open:not(.fold-toggle):hover,
.part.text .open:not(.fold-toggle):focus {
  text-decoration: none;
}
.area--one .unit:not(.unitThree) .part.link--primary .open {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  background-color: var(--buttonBackground);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--buttonColor);
  padding: 13px 19px;
  border-radius: 10000px;
  border: 1px solid var(--buttonBorder);
  transition: all 0.5s ease-out;
}
.area--one .unit:not(.unitThree) .part.link--primary .open:hover,
.area--one .unit:not(.unitThree) .part.link--primary .open:focus {
  background-color: var(--buttonBackgroundHover);
  color: var(--buttonColorHover);
  border-color: var(--buttonBorderHover);
}
.area--one .unit:not(.unitThree) .part.link--secondary .open {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--secondaryButtonColor);
  padding-left: 52px;
  padding-right: 13px;
  position: relative;
  transition: all 0.5s ease-out;
}
.area--one .unit:not(.unitThree) .part.link--secondary .open:before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: var(--secondaryButtonDotColor);
  transition: all 0.5s ease-out;
}
.area--one .unit:not(.unitThree) .part.link--secondary .open:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 30px;
  height: 30px;
  mask-size: 42px 100%;
  mask-position: 100% 50%;
  mask-repeat: no-repeat;
  mask-image: var(--arrowRight);
  background-color: var(--secondaryButtonColor);
  transition: all 0.5s ease-out;
}
.area--one .unit:not(.unitThree) .part.link--secondary .open:hover,
.area--one .unit:not(.unitThree) .part.link--secondary .open:focus {
  padding-left: 65px;
  padding-right: 0;
}
.area--one .unit:not(.unitThree) .part.link--secondary .open:hover:before,
.area--one .unit:not(.unitThree) .part.link--secondary .open:focus:before {
  left: 25px;
}
.area--one .unit:not(.unitThree) .part.link--secondary .open:hover:after,
.area--one .unit:not(.unitThree) .part.link--secondary .open:focus:after {
  width: 42px;
}
@media (max-width: 1023px) {
  body.cb-toggle-target-active {
    overflow: hidden;
  }
  .navigation {
    display: none;
  }
}
.togglenavigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 2001;
  width: 30px;
  height: 10px;
  cursor: pointer;
}
.tline {
  position: absolute;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: #fff;
  border-radius: 1px;
  transition: top 0.4s 0.4s ease-out, transform 0.4s ease-out;
}
.tline--1 {
  top: 0;
}
.tline--2 {
  top: 100%;
}
body.cb-toggle-target-active .tline {
  transition: top 0.4s ease-out, transform 0.4s 0.4s ease-out;
}
body.cb-toggle-target-active .tline--1 {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
body.cb-toggle-target-active .tline--2 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.mobile-navigation {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1999;
  width: 100%;
  height: 100%;
  background-color: var(--headerBackground);
  overflow-y: scroll;
  transform: translateY(-100%);
  transition: all 0.6s ease-out;
}
body.cb-toggle-target-active .mobile-navigation {
  transform: translateY(0);
}
body:not(.layout4) .mobile-navigation {
  --linkColor: #fff;
  --linkColorHover: #fff;
  --buttonColor: #fff;
  --buttonBorder: #fff;
  --buttonBackgroundHover: #fff;
  --buttonBorderHover: #fff;
}
body.layout3 .mobile-navigation {
  --buttonColorHover: #FF416C;
}
body.layout4 .mobile-navigation {
  --navigationBackground: #fff;
}
.mobile-navi-animation {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: var(--headerOffset);
  opacity: 0;
  transform: translateY(-100vh);
  transition: all 0s 0.6s ease-out;
}
body.cb-toggle-target-active .mobile-navi-animation {
  transition: all 1s ease-out;
  transform: translateY(0);
  opacity: 1;
}
.mobile-navigation div.navi {
  float: left;
  width: 100%;
  display: block;
  position: relative;
}
.mobile-navigation div.navi > .cb-toggle {
  display: none;
}
.mobile-navigation div.navi > .item {
  float: left;
  width: 100%;
  position: relative;
}
.mobile-navigation div.navi > .item.item-empty > .cb-toggle {
  display: none;
}
.mobile-navigation div.navi > .item > .menu {
  display: block;
  color: var(--linkColor);
}
.mobile-navigation div.sub1 {
  display: flex;
  flex-direction: column;
  gap: 25px;
  box-sizing: border-box;
  padding: 0 var(--deskSpace);
  margin: 37px 0 40px;
}
.mobile-navigation div.sub1 > .item > .menu {
  font-size: 40px;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 800;
  text-align: center;
  position: relative;
  isolation: isolate;
}
.mobile-navigation div.sub1 > .item > .menu:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 100%;
  transform: translateX(-50%) translateY(-50%);
  width: 0;
  height: 0;
  background-color: var(--navigationActiveColor);
  z-index: -1;
  transition: all 0.5s ease-out;
}
.mobile-navigation div.sub1 > .item > .menu.path:before {
  width: 44px;
  height: 44px;
}
.mobile-navigation div.sub2 {
  overflow: hidden;
  max-height: 0;
}
.mobile-navigation div.sub2 > .item {
  opacity: 0;
  transform: scale(0.8);
}
.mobile-navigation div.navi > .item.cb-toggle-target-active > div.navi {
  transition: none;
  max-height: 1000px;
  transition: max-height 2s;
}
.mobile-navigation div.navi > .item.cb-toggle-target-active > div.navi > .item {
  transform: scale(1);
  opacity: 1;
  transition: all 0.3s;
}
.mobile-navigation .cb-toggle {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  cursor: pointer;
  width: 30px;
  height: 24px;
  background-size: 14px 14px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-arrow-down-black.svg);
  transition: all 0.3s ease-out;
}
.mobile-navigation .cb-toggle.cb-toggle-active {
  transform: rotate(-180deg);
}
.container--head {
  margin: 30px 0;
}
.logo {
  height: 30px;
}
.section--multimood:before {
  background-size: 200% auto;
  background-position: calc(100% + 20px) calc(100% + 20px);
}
.container--mood {
  flex-direction: column-reverse;
  padding-bottom: 77px;
  gap: 55px;
}
.container--mood .mood {
  width: 100%;
}
.container--mood .content {
  width: 100%;
  padding-top: 20px;
  padding-left: 20px;
}
.downlink {
  bottom: 12px;
}
.cbdModule--stoerer {
  top: calc(100% + 10px);
  right: -20px;
}
.container--intro {
  gap: 25px;
  padding-bottom: 30px;
}
.container--slogan {
  gap: 25px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.designelement--signature-s {
  width: 40px;
  height: 33px;
}
.container--footerTop {
  padding: 42px 0 67px;
}
.container--footerBottom {
  padding: 16px 0 18px;
}
.footarea--one {
  gap: 40px ;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cbdModule--footTitleOne,
.cbdModule--footTitleTwo {
  margin-bottom: 20px;
}
.part--supporterLinks .iconLinks__content {
  justify-content: center;
}
.part--socialLinks .iconLinks__content {
  justify-content: center;
}
.area--one .unitTwo {
  flex-direction: column-reverse;
}
.area--one .unitThree {
  padding-top: 175px;
  padding-bottom: 75px;
}
.area--one .unitThree:before {
  background-size: 85% 100%;
}
.area--one .unitThree .part.link:first-child {
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .area--one .unitThree .part.link:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.area--one .unitFour {
  padding-top: 50px;
  padding-bottom: 50px;
}
.area--one .unitFolding .fold-toggle {
  padding-right: 15px;
}
.area--one .unitFolding .fold-toggle:after {
  right: -11px;
  width: 11px;
  height: 11px;
}
.area--one .unitFolding .link.more,
.area--one .unitFolding .link.less {
  right: -11px;
  width: 11px;
  height: 11px;
}
.area--one .unitGallery .part--wide {
  width: 100vw;
  margin-left: calc(var(--deskSpace) * -1);
  flex-shrink: 0;
  aspect-ratio: 1.39716312;
}
@supports not (aspect-ratio: 394 /  282) {
  .area--one .unitGallery .part--wide:before {
    float: left;
    padding-top: 71.57360406%;
    content: '';
  }
  .area--one .unitGallery .part--wide:after {
    display: block;
    content: '';
    clear: both;
  }
}
.area--one .unitGallery .part--slim {
  aspect-ratio: 0.97204969;
}
@supports not (aspect-ratio: 313 /  322) {
  .area--one .unitGallery .part--slim:before {
    float: left;
    padding-top: 102.87539936%;
    content: '';
  }
  .area--one .unitGallery .part--slim:after {
    display: block;
    content: '';
    clear: both;
  }
}
.area--one .unitSupporter .part--supporterLogos .iconLinks__content {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.ns-slider {
  float: left;
  width: 100%;
  max-width: 1920px;
  position: relative;
}
.ns-slider__content {
  float: left;
  width: 100%;
}
.ns-slider__stage {
  float: left;
  width: 100%;
  overflow: hidden;
}
.ns-slider__area {
  float: left;
  width: 100%;
  display: flex;
}
.ns-slide {
  float: left;
  width: calc(100% / 3);
  min-height: 920px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease-out;
}
.ns-slide--pink {
  background-color: #FF416C;
  --textColor: #fff;
  --altTextColor: #FED63F;
}
.ns-slide--lightblue {
  background-color: #22E3FB;
}
.ns-slide--yellow {
  background-color: #FED63F;
  --altTextColor: #fff;
}
@media (max-width: 1023px) {
  .ns-slide {
    width: 50%;
    min-height: 620px;
  }
}
@media (max-width: 767px) {
  .ns-slide {
    width: 100%;
  }
}
.ns-slide__image {
  float: left;
  width: 100%;
}
.ns-slide__content {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: calc(var(--spacePart) * 2);
  box-sizing: border-box;
  padding: 50px 60px 52px;
}
@media (max-width: 1023px) {
  .ns-slide__content {
    padding: 26px 40px 36px;
  }
}
.ns-slider__part {
  float: left;
  width: 100%;
}
.ns-slider__part--image {
  height: 460px;
}
.ns-slider__part--image * {
  height: 100%;
}
.ns-slider__part--image img {
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.ns-slider__part--image .placeholder {
  padding-bottom: 0;
}
@media (max-width: 1023px) {
  .ns-slider__part--image {
    height: 314px;
  }
}
.ns-slider__part--quote p {
  font-size: clamp(1.125rem, 1.08303249vw + 0.85965704rem, 1.875rem);
  line-height: clamp(1.5rem, 1.44404332vw + 1.14620939rem, 2.5rem);
  font-weight: 400;
  color: var(--textColor);
}
.ns-slider__part--quote p strong {
  color: var(--altTextColor);
}
.ns-slider__part--author {
  margin-top: auto;
}
.ns-slider__part--author p {
  font-size: clamp(1rem, 0.18050542vw + 0.95577617rem, 1.125rem);
  line-height: clamp(1rem, 0.72202166vw + 0.82310469rem, 1.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
}
.ns-sliderControl {
  float: left;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 230px;
  mask-size: 100% 100%;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  background-color: #fff;
  z-index: 1000;
  cursor: pointer;
}
.ns-sliderControl.is-disabled {
  display: none;
}
@media (max-width: 1023px) {
  .ns-sliderControl {
    width: 20px;
    height: 20px;
    top: 157px;
  }
}
.ns-sliderControl--prev {
  left: 40px;
  mask-image: var(--arrowLeft);
}
@media (max-width: 1023px) {
  .ns-sliderControl--prev {
    left: 20px;
    --arrowLeft: url(/images/arrow-left-mobile.svg);
  }
}
.ns-sliderControl--next {
  right: 40px;
  mask-image: var(--arrowRight);
}
@media (max-width: 1023px) {
  .ns-sliderControl--next {
    right: 20px;
    --arrowRight: url(/images/arrow-right-mobile.svg);
  }
}
/*# sourceMappingURL=./screen-small.css.map */