:root {
  --sitecolor: #009870;
  --textcolor: #1A1A1A;
  --titlecolor: #1A1A1A;
  --linkcolor: #007370;
  --linkcolor-hov: #1A1A1A;
  --accentcolor: #007370;
  --accentcolor-hov: #009870;
  --headerHeight: 174px;
}
@media (max-width: 1023px) {
  :root {
    --headerHeight: 110px;
  }
}
:root {
  --deskWidth: 1920px;
  --deskSpace: clamp(1.563rem, 0.555rem + 4.3vw, 6.25rem);
  --deskMaxWidth: calc(100vw - (2 * var(--deskSpace)));
}
:root {
  --spacePart: 12px;
}
@media (max-width: 1023px) {
  :root {
    --spacePart: 12px;
  }
}
@media (max-width: 767px) {
  :root {
    --spacePart: 8px;
  }
}
:root {
  --spaceUnit: 18px;
}
@media (max-width: 1023px) {
  :root {
    --spaceUnit: 18px;
  }
}
@media (max-width: 767px) {
  :root {
    --spaceUnit: 12px;
  }
}
:root {
  --spaceTotal: 30px;
}
@media (max-width: 1023px) {
  :root {
    --spaceTotal: 30px;
  }
}
@media (max-width: 767px) {
  :root {
    --spaceTotal: 20px;
  }
}
:root {
  --js-breakpoint: breakpointLarge;
}
@media (max-width: 1023px) {
  :root {
    --js-breakpoint: breakpointMedium;
  }
}
@media (max-width: 767px) {
  :root {
    --js-breakpoint: breakpointSmall;
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
.button {
  background-color: var(--accentcolor);
  line-height: 1.5;
  font-family: inherit;
  cursor: pointer;
  color: #ffffff;
  display: inline-block;
  padding: 10px 15px 9px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  font-weight: 800;
  isolation: isolate;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .button:focus {
    background-color: var(--accentcolor-hov);
  }
}
.button-link {
  line-height: 1.5;
  font-family: inherit;
  cursor: pointer;
  color: var(--linkcolor);
  text-decoration: underline;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  border: none;
  display: inline-block;
}
.button-link:after {
  content: '';
  display: inline-block;
  width: clamp(0.625rem, 0.483rem + 0.61vw, 0.938rem);
  aspect-ratio: 1;
  margin-left: clamp(0.313rem, 0.17rem + 0.61vw, 0.625rem);
  background-color: var(--textcolor);
  -webkit-mask-image: url('/images/icon-link.svg');
          mask-image: url('/images/icon-link.svg');
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (hover: hover) and (pointer: fine) {
  .button-link:hover,
  .button-link:focus {
    color: var(--linkcolor-hov);
  }
}
.button-download {
  line-height: 1.5;
  font-family: inherit;
  cursor: pointer;
  color: var(--linkcolor);
  text-decoration: underline;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  border: none;
  display: inline-block;
}
.button-download:after {
  content: '';
  display: inline-block;
  width: clamp(0.625rem, 0.483rem + 0.61vw, 0.938rem);
  aspect-ratio: 1;
  margin-left: 10px;
  background-color: var(--textcolor);
  -webkit-mask-image: url('/images/icon-download.svg');
          mask-image: url('/images/icon-download.svg');
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (hover: hover) and (pointer: fine) {
  .button-download:hover,
  .button-download:focus {
    color: var(--linkcolor-hov);
  }
}
.button-fold {
  line-height: 1.5;
  font-family: inherit;
  cursor: pointer;
  color: var(--accentcolor);
  padding-right: 30px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  font-weight: 800;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
@media (max-width: 767px) {
  .button-fold {
    padding-right: 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .button-fold:hover,
  .button-fold:focus {
    color: var(--linkcolor-hov);
  }
  .button-fold:hover:after,
  .button-fold:focus:after {
    background-color: var(--linkcolor-hov);
  }
}
.button-fold:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-color: var(--accentcolor);
  -webkit-mask-image: url('/images/fold-open-black.svg');
          mask-image: url('/images/fold-open-black.svg');
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: clamp(0.625rem, 0.534rem + 0.39vw, 1rem);
  aspect-ratio: 16 / 17;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.button-fold-hover {
  color: var(--linkcolor-hov);
}
.button-fold-hover:after {
  background-color: var(--linkcolor-hov);
}
/* manrope-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: 'Manrope';
  font-style: normal;
  font-weight: 300;
  src: url('/extras/fonts/manrope-v15-latin-300.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-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: 'Manrope';
  font-style: normal;
  font-weight: 400;
  src: url('/extras/fonts/manrope-v15-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-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: 'Manrope';
  font-style: normal;
  font-weight: 700;
  src: url('/extras/fonts/manrope-v15-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-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: 'Manrope';
  font-style: normal;
  font-weight: 800;
  src: url('/extras/fonts/manrope-v15-latin-800.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: var(--sitecolor);
  color: #fff;
}
.hidden,
.cb-invisible {
  display: none !important;
}
li {
  list-style-position: inside;
}
img,
audio,
video,
iframe {
  float: left;
  width: 100%;
}
strong {
  font-weight: 800;
}
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-size: 20px;
  font-family: 'Manrope', sans-serif;
  line-height: 1.5;
}
.unit caption {
  display: none;
}
.flag {
  background: var(--sitecolor);
  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;
}
.area .unit {
  float: left;
  width: 100%;
  margin-top: var(--spaceUnit);
  margin-bottom: var(--spaceUnit);
  position: relative;
}
.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%;
}
.unit .part {
  float: left;
  width: 100%;
  margin-top: var(--spacePart);
  margin-bottom: var(--spacePart);
  position: relative;
}
.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;
  --spacePart: 5px;
}
div.load a.load {
  line-height: 1.5;
  font-family: inherit;
  cursor: pointer;
  color: var(--linkcolor);
  text-decoration: underline;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  border: none;
  display: inline-block;
  --textcolor: #007370;
  --linkcolor: #DCCA66;
  font-weight: 800;
}
div.load a.load:after {
  content: '';
  display: inline-block;
  width: clamp(0.625rem, 0.483rem + 0.61vw, 0.938rem);
  aspect-ratio: 1;
  margin-left: 10px;
  background-color: var(--textcolor);
  -webkit-mask-image: url('/images/icon-download.svg');
          mask-image: url('/images/icon-download.svg');
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (hover: hover) and (pointer: fine) {
  div.load a.load:hover,
  div.load a.load:focus {
    color: var(--linkcolor-hov);
  }
}
.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: 800;
  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 li {
  list-style: none;
  padding-left: 15px;
  position: relative;
  font-weight: 800;
  color: var(--accentcolor) !important;
}
.list--bullet li > p {
  color: var(--accentcolor) !important;
}
.list--bullet li:before {
  content: '>';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accentcolor);
}
.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%;
  position: relative;
}
#slides {
  float: left;
  width: 100%;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  position: relative;
}
#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);
  transition: all 0.12s;
}
#slides img.lazyimage.lazyloaded {
  filter: blur(0);
}
#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: var(--sitecolor);
  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: var(--sitecolor);
}
.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: 'Manrope', 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: var(--sitecolor);
  width: 100%;
  box-sizing: border-box;
  padding-right: 30px;
}
#disp h3 {
  color: var(--sitecolor);
  font-size: 16px;
  font-weight: 800;
  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;
  background-color: var(--accentcolor);
  line-height: 1.5;
  font-family: inherit;
  cursor: pointer;
  color: #ffffff;
  display: inline-block;
  padding: 10px 15px 9px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  font-weight: 800;
  isolation: isolate;
  position: relative;
  line-height: 1.42857143;
}
@media (hover: hover) and (pointer: fine) {
  #disp .foot input:hover,
  #disp .foot a:hover,
  #disp .foot input:focus,
  #disp .foot a:focus {
    background-color: var(--accentcolor-hov);
  }
}
#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: 'Manrope', 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%;
  }
}
.unit.form .name {
  float: left;
  width: 100%;
  padding-bottom: 5px;
}
@media (min-width: 768px) {
  .unit.form .tile .name {
    width: 30%;
    min-height: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }
}
.unit.form input.text,
.unit.form textarea {
  float: left;
  width: 100%;
  box-sizing: border-box;
  background: #ffffff;
  min-height: 50px;
  padding: 5px 10px;
  appearance: none;
}
.unit.form input.text.fail,
.unit.form textarea.fail {
  background-color: #e7bcbc;
}
.unit.form textarea {
  padding: 10px;
}
@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;
  padding: 4px 0;
}
@media (min-width: 768px) {
  .unit.form div.tick.tile div.ctrl > div {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.unit.form div.tick label {
  float: left;
  width: 100%;
  box-sizing: border-box;
  padding-left: 26px;
}
.unit.form div.tick input {
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  margin-right: 6px;
  height: 30px;
  vertical-align: top;
}
@media (min-width: 768px) {
  .unit.form div.tick.tile input {
    top: 10px;
  }
}
.unit.form select {
  float: left;
  width: 100%;
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  background: #ffffff;
  height: 50px;
  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 {
  background-color: var(--accentcolor);
  line-height: 1.5;
  font-family: inherit;
  cursor: pointer;
  color: #ffffff;
  display: inline-block;
  padding: 10px 15px 9px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  font-weight: 800;
  isolation: isolate;
  position: relative;
  margin-right: 16px;
}
@media (hover: hover) and (pointer: fine) {
  .unit.form .ship div.chop span::file-selector-button:hover,
  .unit.form .ship div.chop span::file-selector-button:focus {
    background-color: var(--accentcolor-hov);
  }
}
.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: 50px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }
}
.unit.form .submit {
  float: left;
  margin-top: var(--spacePart);
  margin-bottom: var(--spacePart);
  background-color: var(--accentcolor);
  line-height: 1.5;
  font-family: inherit;
  cursor: pointer;
  color: #ffffff;
  display: inline-block;
  padding: 10px 15px 9px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  font-weight: 800;
  isolation: isolate;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .unit.form .submit:hover,
  .unit.form .submit:focus {
    background-color: var(--accentcolor-hov);
  }
}
.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 {
  background-color: var(--accentcolor);
  line-height: 1.5;
  font-family: inherit;
  cursor: pointer;
  color: #ffffff;
  display: inline-block;
  padding: 10px 15px 9px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  font-weight: 800;
  isolation: isolate;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .two-step-verification-container a:hover,
  .two-step-verification-container a:focus {
    background-color: var(--accentcolor-hov);
  }
}
.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: 800;
}
.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: 800;
}
@media (max-width: 767px) {
  .part--table .table {
    font-size: 2.60756193vw;
  }
}
html,
body {
  float: left;
  width: 100%;
  min-height: 100vh;
}
#home {
  float: left;
  height: 73px;
  box-sizing: border-box;
  position: absolute;
  top: 17px;
  left: 0;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 100;
}
@media (max-width: 1023px) {
  #home {
    content: url('/images/logo-ski-scroll.svg');
  }
}
.logoLarge {
  float: left;
  position: absolute;
  height: clamp(15.625rem, 7.212rem + 9.62vw, 18.75rem);
  padding: 34px 44px;
  box-sizing: border-box;
  top: -60px;
  left: 0;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.cb-toggle-target-active .logoLarge,
.cb-scroll-triggered--active .logoLarge {
  opacity: 1;
}
@media (max-width: 1023px) {
  .logoLarge {
    display: none;
  }
}
.logo {
  width: auto;
  height: 100%;
}
#head {
  float: left;
  width: 100%;
  margin-top: calc(var(--spaceTotal) * 1);
}
.layout2 #head,
.layout3 #head {
  margin-top: calc(var(--spaceTotal) * 2);
}
.wrapper {
  float: left;
  width: 100%;
  min-height: 100vh;
  background-color: #ffffff;
  font-family: 'Manrope', sans-serif;
  color: var(--textcolor);
  accent-color: var(--sitecolor);
  overflow: hidden;
  hyphens: none;
  font-size: clamp(0.875rem, 0.784rem + 0.39vw, 1.25rem);
  line-height: 1.5;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  padding-top: var(--headerHeight);
  box-sizing: border-box;
}
.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;
}
.section--multimood .desk {
  --deskWidth: calc(100vw - (2 * var(--deskSpace)));
  --deskSpace: clamp(1.563rem, 1.136rem + 1.82vw, 2.5rem);
  --deskMaxWidth: calc(100vw - (2 * var(--deskSpace)));
}
.section {
  float: left;
  width: 100%;
  position: relative;
}
.container {
  float: left;
  width: 100%;
  position: relative;
}
.section--lightgrey {
  background-color: #F5F5F5;
}
.section--midgrey {
  background-color: #EAEAEA;
}
.section--border {
  border-top: 1px solid #007370;
}
#view .section--border:has(.area:empty) {
  border: unset;
}
.accentcolor--green {
  --accentcolor: #009870;
  --accentcolor-hov: #007370;
}
.accentcolor--petrol {
  --accentcolor: #007370;
  --accentcolor-hov: #009870;
}
.accentcolor--blue {
  --accentcolor: #005D83;
  --accentcolor-hov: #009870;
}
.accentcolor--cyan {
  --accentcolor: #6AC1C9;
  --accentcolor-hov: #009870;
}
.accentcolor--purple {
  --accentcolor: #441969;
  --accentcolor-hov: #009870;
}
.accentcolor--yellow {
  --accentcolor: #DCCA66;
  --accentcolor-hov: #009870;
}
.section--header {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 2000;
  top: 0;
  background-color: #F5F5F5;
  min-height: var(--headerHeight);
}
@media (max-width: 1023px) {
  .section--header {
    background-color: #ffffff;
  }
}
.container--head {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 41px 0 36px;
}
.headstripe {
  float: left;
  width: 100%;
  height: 60px;
  display: grid;
  grid-template-columns: 1fr clamp(25rem, 3.571rem + 33.48vw, 43.75rem);
}
@media (max-width: 1023px) {
  .headstripe {
    display: none;
  }
}
.headstripe__bg {
  background-color: #009870;
  height: 100%;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  background-image: linear-gradient(to right, #007370 0%, #007370 20%, #005D83 20%, #005D83 40%, #6AC1C9 40%, #6AC1C9 60%, #441969 60%, #441969 80%, #DCCA66 80%, #DCCA66 100%);
  background-size: clamp(25rem, 3.571rem + 33.48vw, 43.75rem);
  background-position: 100%;
  background-repeat: no-repeat;
}
.cb-toggle-target-active .headstripe__bg,
.cb-scroll-triggered--active .headstripe__bg {
  height: 17px;
}
.headstripe__links {
  background-color: #009870;
  padding: 15px 0 12px 30px;
  box-sizing: border-box;
}
#headlinks {
  --linkcolor: #ffffff;
  --linkcolor-hov: #DCCA66;
  display: flex;
  flex-direction: row;
  gap: 15px 30px;
}
.mobile-navigation #headlinks {
  float: left;
  padding-left: var(--deskSpace);
  margin-bottom: calc(var(--spaceTotal) * 1);
  flex-direction: column;
}
#headlinks .meta {
  font-size: 22px;
}
#headlinks .meta.find {
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  width: 30px;
  height: 30px;
  background-color: var(--linkcolor);
  -webkit-mask-image: url('/images/icon-search.svg');
          mask-image: url('/images/icon-search.svg');
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (hover: hover) and (pointer: fine) {
  #headlinks .meta.find:hover,
  #headlinks .meta.find:focus {
    background-color: var(--linkcolor-hov);
  }
}
main {
  float: left;
  width: 100%;
  position: relative;
  flex: 1 0 auto;
}
.container--mood {
  aspect-ratio: 16 / 9;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  isolation: isolate;
  box-sizing: border-box;
  --s-textcolor: #ffffff;
}
@media (max-width: 1023px) {
  .container--mood {
    min-height: unset;
  }
}
.container--mood .mood {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #009870;
}
.container--mood .mood .mood__video,
.container--mood .mood #expo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.container--mood .mood .mood__video {
  z-index: 2;
  object-fit: cover;
  object-position: center;
}
.container--mood .content {
  width: var(--deskWidth);
  max-width: var(--deskMaxWidth);
}
.stoerer {
  position: absolute;
  right: 200px;
  top: 120px;
}
@media (max-width: 1023px) {
  .stoerer {
    top: 30px;
    right: 30px;
  }
}
@media (max-width: 767px) {
  .stoerer {
    top: 20px;
    right: 30px;
  }
}
.part--standaloneStoerer {
  width: 250px;
  float: right;
}
@media (max-width: 1023px) {
  .part--standaloneStoerer {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .part--standaloneStoerer {
    width: 80px;
  }
}
.part--standaloneStoerer img {
  width: 100%!important;
  max-width: 100%!important;
  max-height: 100%!important;
}
.columns {
  float: left;
  width: 100%;
}
.columns__column {
  float: left;
}
@media (max-width: 1023px) {
  .columns__column--two {
    position: relative;
  }
  .columns__column--two:after {
    content: '';
    position: absolute;
    left: calc(var(--deskSpace) * -1);
    top: 0;
    height: 1px;
    width: 100vw;
    background-color: #007370;
  }
}
.donate {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: row;
  isolation: isolate;
}
.donate__icon {
  background-color: #441969;
  width: 100px;
  height: 100px;
  background-size: 52px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/icon-heart.svg);
}
.donate__text {
  position: absolute;
  right: 0;
  width: 550px;
  height: 100px;
  transform: translate(100%);
  background-color: #441969;
  color: #ffffff;
  padding: 12px 20px;
  font-size: 55px;
  line-height: 1.09090909;
  white-space: nowrap;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  text-transform: uppercase;
  box-sizing: border-box;
  font-weight: 800;
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
@media (hover: hover) and (pointer: fine) {
  .donate:hover .donate__text,
  .donate:focus .donate__text {
    transform: translate(0);
  }
}
@media (max-width: 1023px) {
  .donate {
    scale: 0.5;
    transform-origin: right;
    top: 25%;
  }
}
.newsletterFrame {
  height: 950px !important;
}
@media (max-width: 1023px) {
  .newsletterFrame {
    height: 950px !important;
  }
}
@media (max-width: 767px) {
  .newsletterFrame {
    height: 1300px !important;
  }
}
.section--footer {
  flex-shrink: 0;
  background-color: #007370;
  --textcolor: #ffffff;
  --accentcolor: #ffffff;
}
.newsletter {
  float: left;
  width: 100%;
  margin-top: calc(var(--spaceTotal) * 1);
}
.newsletter__link {
  margin-top: calc(var(--spacePart) * 1);
  --accentcolor: #DCCA66;
  --linkcolor-hov: #ffffff;
  text-align: left;
  padding-right: 25px;
  position: relative;
  font-size: 18px;
  line-height: 1.2;
  color: #DCCA66;
  display: inline-block;
  font-weight: 800;
}
.newsletter__link:after {
  content: '';
  bottom: 0;
  right: 0;
  width: 20px;
  aspect-ratio: 1;
  position: absolute;
  background-size: 15px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/arrowlong-right-white.svg);
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
@media (hover: hover) and (pointer: fine) {
  .newsletter__link:hover:after,
  .newsletter__link:focus:after {
    background-position: calc(50% + 2px) 50%;
  }
}
.footarea {
  float: left;
  width: 100%;
  margin-top: calc(var(--spaceTotal) + 20px);
  margin-bottom: calc(var(--spaceTotal) + 20px);
  display: grid;
  gap: 0 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1500px) {
  .footarea {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .footarea {
    grid-template-columns: 1fr;
  }
}
.footunit {
  float: left;
  width: 100%;
  margin-top: calc(var(--spacePart) * 1);
  margin-bottom: calc(var(--spacePart) * 1);
}
.vcard {
  margin-top: calc(var(--spacePart) * 1);
  margin-bottom: calc(var(--spacePart) * 1);
  color: var(--textcolor);
  --linkcolor: #ffffff;
  --linkcolor-hov: #DCCA66;
}
.unit--footUnit {
  float: left;
  width: 100%;
  min-height: 20px;
  margin-top: calc(var(--spacePart) * 1);
  margin-bottom: calc(var(--spacePart) * 1);
  --linkcolor: #DCCA66;
  --linkcolor-hov: #ffffff;
}
#edit .unit--footUnit {
  outline: 1px dotted var(--textcolor);
}
.unit--footUnit .part {
  --spacePart: 0;
}
.unit--footUnit .part:has(h4) {
  margin-top: calc(var(--spaceTotal) * 1);
}
.unit--footUnit .part h4 {
  font-size: clamp(1.125rem, 1.068rem + 0.24vw, 1.25rem);
  line-height: 1.28571429;
}
.unit--footUnit .part.link .open {
  line-height: 1.5;
  font-family: inherit;
  cursor: pointer;
  color: var(--linkcolor);
  text-decoration: underline;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  border: none;
  display: inline-block;
}
.unit--footUnit .part.link .open:after {
  content: '';
  display: inline-block;
  width: clamp(0.625rem, 0.483rem + 0.61vw, 0.938rem);
  aspect-ratio: 1;
  margin-left: clamp(0.313rem, 0.17rem + 0.61vw, 0.625rem);
  background-color: var(--textcolor);
  -webkit-mask-image: url('/images/icon-link.svg');
          mask-image: url('/images/icon-link.svg');
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (hover: hover) and (pointer: fine) {
  .unit--footUnit .part.link .open:hover,
  .unit--footUnit .part.link .open:focus {
    color: var(--linkcolor-hov);
  }
}
.unit--footLinks {
  float: left;
  width: 100%;
  --spaceUnit: 0;
  --spacePart: 0;
  --linkcolor-hov: #DCCA66;
  min-height: 20px;
}
#edit .unit--footLinks {
  outline: 1px dotted var(--textcolor);
}
.unit--footLinks .unit__body {
  display: flex;
  flex-direction: column;
}
.unit--footLinks .part.link .open {
  color: var(--textcolor);
}
@media (hover: hover) and (pointer: fine) {
  .unit--footLinks .part.link .open:hover,
  .unit--footLinks .part.link .open:focus {
    color: var(--linkcolor-hov);
  }
}
.part--footSocial {
  float: left;
  width: 100%;
  display: flex;
  --linkcolor-hov: #DCCA66;
  margin-top: calc(var(--spacePart) * 1);
  margin-bottom: calc(var(--spacePart) * 1);
}
#edit .part--footSocial {
  outline: 1px dotted var(--textcolor);
}
.iconLinks {
  float: left;
  width: 100%;
  position: relative;
}
.iconLinks__content {
  float: left;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 767px) {
  .iconLinks__content {
    gap: 8px;
  }
}
.iconLinks__icon {
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  transition: background-color 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  width: clamp(2.188rem, 1.903rem + 1.21vw, 2.813rem);
  aspect-ratio: 1;
  background-color: var(--textcolor);
  -webkit-mask-image: url('/images/instagram.svg');
          mask-image: url('/images/instagram.svg');
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .iconLinks__icon:hover,
  .iconLinks__icon:focus {
    background-color: var(--linkcolor-hov);
  }
}
.iconLinks__icon--facebook {
  -webkit-mask-image: url('/images/facebook.svg');
          mask-image: url('/images/facebook.svg');
}
.iconLinks__icon--youtube {
  -webkit-mask-image: url('/images/youtube.svg');
          mask-image: url('/images/youtube.svg');
}
.iconLinks__icon--linkedin {
  -webkit-mask-image: url('/images/linkedin.svg');
          mask-image: url('/images/linkedin.svg');
}
@media (hover: hover) and (pointer: fine) {
  .iconLinks__icon:focus {
    background-color: var(--linkcolor-hov);
  }
}
.langnavi {
  float: left;
  width: 100%;
  margin-top: calc(var(--spaceTotal) * 1);
  margin-bottom: calc(var(--spaceTotal) * 1);
}
.mobile-navigation .langnavi {
  display: none;
  margin-top: calc(var(--spaceTotal) * 1);
  margin-bottom: calc(var(--spaceTotal) * 1);
}
@media (max-width: 1023px) {
  .mobile-navigation .langnavi {
    display: block;
  }
}
.langnavi div.sub1 {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 1023px) {
  .langnavi div.sub1 {
    margin-top: calc(var(--spaceTotal) * 1);
  }
}
.langnavi div.sub1 > .item {
  float: left;
  margin-bottom: 4px;
}
.langnavi div.sub1 > .item:not(.exit):after {
  content: '|';
  position: absolute;
  margin-left: 9px;
  color: var(--textcolor);
}
.langnavi div.sub1 > .item > .menu {
  position: relative;
  float: left;
  display: block;
  font-weight: 300;
  white-space: nowrap;
  box-sizing: border-box;
  text-transform: uppercase;
  transition: all 0.2s;
  text-align: left;
  color: var(--textcolor);
}
.langnavi div.sub1 > .item > .menu.path {
  font-weight: 800;
}
a {
  color: var(--linkcolor);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
@media (hover: hover) and (pointer: fine) {
  a:hover,
  a:focus {
    color: var(--linkcolor-hov);
  }
}
.area--column .unit .btn--primary .open,
.area--one .unit .btn--primary .open {
  background-color: var(--accentcolor);
  line-height: 1.5;
  font-family: inherit;
  cursor: pointer;
  color: #ffffff;
  display: inline-block;
  padding: 10px 15px 9px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  font-weight: 800;
  isolation: isolate;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .area--column .unit .btn--primary .open:hover,
  .area--one .unit .btn--primary .open:hover,
  .area--column .unit .btn--primary .open:focus,
  .area--one .unit .btn--primary .open:focus {
    background-color: var(--accentcolor-hov);
  }
}
.area--column .unit .btn--secondary,
.area--one .unit .btn--secondary {
  --spacePart: 5px;
}
.area--column .unit .btn--secondary .open,
.area--one .unit .btn--secondary .open {
  line-height: 1.5;
  font-family: inherit;
  cursor: pointer;
  color: var(--linkcolor);
  text-decoration: underline;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  border: none;
  display: inline-block;
  --textcolor: #007370;
  --linkcolor: #DCCA66;
  font-weight: 800;
}
.area--column .unit .btn--secondary .open:after,
.area--one .unit .btn--secondary .open:after {
  content: '';
  display: inline-block;
  width: clamp(0.625rem, 0.483rem + 0.61vw, 0.938rem);
  aspect-ratio: 1;
  margin-left: clamp(0.313rem, 0.17rem + 0.61vw, 0.625rem);
  background-color: var(--textcolor);
  -webkit-mask-image: url('/images/icon-link.svg');
          mask-image: url('/images/icon-link.svg');
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (hover: hover) and (pointer: fine) {
  .area--column .unit .btn--secondary .open:hover,
  .area--one .unit .btn--secondary .open:hover,
  .area--column .unit .btn--secondary .open:focus,
  .area--one .unit .btn--secondary .open:focus {
    color: var(--linkcolor-hov);
  }
}
.area--one .part.text .open {
  --linkcolor: var(--accentcolor);
  text-decoration: underline;
}
h1 {
  font-size: clamp(1.625rem, 1.033rem + 2.52vw, 4.063rem);
  line-height: 1.14285714;
  font-weight: 300;
  color: var(--accentcolor);
}
h2 {
  font-size: clamp(1.625rem, 1.261rem + 1.55vw, 3.125rem);
  line-height: 1.2;
  font-weight: 300;
  color: var(--accentcolor);
}
h3 {
  font-size: clamp(1.25rem, 1.038rem + 0.91vw, 2.125rem);
  line-height: 1.17647059;
  font-weight: 300;
  color: var(--accentcolor);
}
h4 {
  font-size: clamp(1.125rem, 0.943rem + 0.78vw, 1.875rem);
  line-height: 1.16666667;
  font-weight: 300;
  color: var(--accentcolor);
}
h5 {
  font-size: clamp(1.125rem, 0.973rem + 0.65vw, 1.75rem);
  line-height: 1.28571429;
  color: #ffffff;
  background-color: var(--accentcolor);
  padding: 5px 20px;
  box-sizing: border-box;
  display: inline-block;
}
p.loud {
  color: var(--textcolor);
  font-size: clamp(1rem, 0.848rem + 0.65vw, 1.625rem);
  line-height: 1.53846154;
}
p.norm {
  color: var(--textcolor);
}
p.skew {
  color: #007370;
  font-size: clamp(1.375rem, 1.026rem + 1.49vw, 2.813rem);
  line-height: 1.33333333;
  font-weight: 800;
}
.part--areaTitle {
  float: left;
  width: 100%;
  display: flex;
}
#view .part--areaTitle.is-empty {
  display: none;
}
.part--areaTitle h2 {
  width: auto;
  display: inline-block;
  padding: 15px 20px;
  box-sizing: border-box;
  font-weight: 800;
  color: #ffffff;
  background-color: var(--accentcolor);
}
.part--areaTitleSecondary {
  float: left;
  width: 100%;
  display: flex;
}
#view .part--areaTitleSecondary.is-empty {
  display: none;
}
.part--areaTitleSecondary h4 {
  width: auto;
  display: inline-block;
  padding: 8px 15px 7px;
  box-sizing: border-box;
  font-weight: 800;
  color: #ffffff;
  background-color: var(--accentcolor);
}
.area--column {
  margin-top: calc(var(--spaceTotal) * 2);
  margin-bottom: calc(var(--spaceTotal) * 2);
}
.area--one {
  margin-bottom: calc(var(--spaceTotal) * 2);
}
.area--one:not(.area1) {
  margin-top: calc(var(--spaceTotal) * 2);
}
.area--one .unitTwo {
  margin-top: calc(var(--spaceUnit) * 2 - 5px);
  margin-bottom: calc(var(--spaceUnit) * 2 - 5px);
}
.area--one .unitTwo .unit__background {
  margin-top: calc(var(--spacePart) * 1);
  margin-bottom: calc(var(--spacePart) * 1);
}
.area--one .unitTwo .unit__content {
  padding-top: calc(var(--spacePart) * 1);
  box-sizing: border-box;
}
.area--one .unitThree {
  border: 1px solid var(--accentcolor);
}
.area--one .unitThree .part.pict:first-child {
  margin-top: 0;
}
.area--one .unitThree .part.pict:first-child img {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}
.area--one .unitThree .part:not(.pict:first-child) {
  padding: 0 clamp(0.938rem, 0.71rem + 0.97vw, 1.875rem);
  box-sizing: border-box;
}
.area--one .unitThree .part:last-child {
  margin-bottom: calc(var(--spacePart) * 2);
}
.area--one .unitFour {
  padding-block-start: clamp(6.25rem, 4.809rem + 6.15vw, 12.188rem);
  box-sizing: border-box;
  position: relative;
}
.area--one .unitFour.unit--hasBackground {
  display: grid;
  grid-template-columns: clamp(6.25rem, 3.216rem + 12.94vw, 18.75rem) 1fr;
  gap: 20px;
}
.area--one .unitFour.unit--hasBackground .unit__background {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  border: 6px solid #ffffff;
  box-sizing: border-box;
}
.area--one .unitFour.unit--hasBackground .unit__background * {
  height: 100%;
}
.area--one .unitFour.unit--hasBackground .unit__background img {
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.area--one .unitFour.unit--hasBackground .unit__background .placeholder {
  padding-bottom: 0;
}
.area--one .unitFour:after {
  content: '';
  top: 0;
  right: 0;
  position: absolute;
  width: clamp(14.625rem, 11.712rem + 12.43vw, 26.625rem);
  aspect-ratio:  426 / 182;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/icon-zitat.svg);
}
@media (max-width: 1023px) {
  .area--one .unit--foto {
    margin-bottom: 0;
  }
  .area--one .unit--foto:not(:nth-child(1 of .unit--foto)) {
    margin-top: calc(var(--spaceTotal) * 2);
  }
}
.area--one .unitOne--1-2.unit--fold .unit__foot .ctrl .link {
  margin-top: calc(var(--spacePart) * 1);
  margin-bottom: calc(var(--spacePart) * 1);
  line-height: 1.5;
  font-family: inherit;
  cursor: pointer;
  color: var(--accentcolor);
  padding-right: 30px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  font-weight: 800;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
@media (max-width: 767px) {
  .area--one .unitOne--1-2.unit--fold .unit__foot .ctrl .link {
    padding-right: 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .area--one .unitOne--1-2.unit--fold .unit__foot .ctrl .link:hover,
  .area--one .unitOne--1-2.unit--fold .unit__foot .ctrl .link:focus {
    color: var(--linkcolor-hov);
  }
  .area--one .unitOne--1-2.unit--fold .unit__foot .ctrl .link:hover:after,
  .area--one .unitOne--1-2.unit--fold .unit__foot .ctrl .link:focus:after {
    background-color: var(--linkcolor-hov);
  }
}
.area--one .unitOne--1-2.unit--fold .unit__foot .ctrl .link:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-color: var(--accentcolor);
  -webkit-mask-image: url('/images/fold-open-black.svg');
          mask-image: url('/images/fold-open-black.svg');
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: clamp(0.625rem, 0.534rem + 0.39vw, 1rem);
  aspect-ratio: 16 / 17;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.area--one .unitOne--1-2.unit--fold .unit__foot .ctrl .link.less:after {
  transform: translateY(-50%) rotate(-180deg);
}
.area--one .unitFive {
  margin-top: 0;
  margin-bottom: calc(var(--spaceTotal) * 2);
}
.area--one .unitFive:has(+.unit--fold) {
  margin: 0;
}
.area--one .unitFive .unit__content {
  border-bottom: 1px solid #009870;
}
.area--one .unitFive .fold-toggle {
  padding-right: clamp(1.25rem, 0.682rem + 2.42vw, 2.5rem);
  box-sizing: border-box;
  position: relative;
  width: 100%;
  display: inline-block;
  text-decoration: none!important;
}
.area--one .unitFive .fold-toggle:after {
  content: '';
  position: absolute;
  top: 8px;
  right: 0;
  width: 22px;
  height: 25px;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/faqfolding-toggle.svg);
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.area--one .unitFive .fold-toggle--open:after {
  transform: rotate(180deg);
}
.area--one .unitFive .unit__foot {
  display: none;
}
@media (max-width: 1599px) {
  body.cb-toggle-target-active {
    overflow: hidden;
  }
  .section {
    transition: transform 0.6s cubic-bezier(0.05, 0.8, 0.5, 1);
  }
  body.cb-toggle-target-active .section {
    transform: translateY(200px);
  }
  body.cb-toggle-target-active .section.section--header {
    transform: none;
  }
  .navigation {
    display: none;
  }
}
.togglenavigation {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 2001;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.togglenavigation__text {
  display: inline-block;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  color: #009870;
}
.togglenavigation__burger {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 29px;
}
.tline {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 5px;
  background-color: #009870;
  border-radius: 5px;
  transition: all 0.4s cubic-bezier(0.05, 0.8, 0.5, 1);
}
.tline--2,
.tline--3 {
  top: calc(50% - 3px);
}
.tline--4 {
  top: unset;
  bottom: 0;
}
body.cb-toggle-target-active .tline--1 {
  opacity: 0;
  transform: translateY(-10px);
}
body.cb-toggle-target-active .tline--2 {
  transform: translateY(-50%) rotate(-45deg);
}
body.cb-toggle-target-active .tline--3 {
  transform: translateY(-50%) rotate(45deg);
}
body.cb-toggle-target-active .tline--4 {
  opacity: 0;
  transform: translateY(10px);
}
.mobile-navigation {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1999;
  width: 100%;
  height: 100%;
  background-color: #009870;
  overflow-y: scroll;
  transform: translateY(-100%);
  transition: all 0.6s cubic-bezier(0.05, 0.8, 0.5, 1);
}
body.cb-toggle-target-active .mobile-navigation {
  transform: translateY(0);
}
.mobile-navi-animation {
  float: left;
  width: 100%;
  opacity: 0;
  transform: translateY(-100vh);
  transition: all 0s 0.6s cubic-bezier(0.05, 0.8, 0.5, 1);
}
body.cb-toggle-target-active .mobile-navi-animation {
  transition: all 1s cubic-bezier(0.05, 0.8, 0.5, 1);
  transform: translateY(0);
  opacity: 1;
}
.mobile-navigation div.navi {
  --textcolor: #ffffff;
  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(--textcolor);
}
.mobile-navigation div.sub2 {
  box-sizing: border-box;
  margin: calc(var(--headerHeight) + 60px) 0 30px;
}
.mobile-navigation div.sub2 > .item > .menu {
  padding: 9px var(--deskSpace);
  font-size: 24px;
  line-height: 1.41666667;
  font-weight: 800;
  text-transform: uppercase;
}
.mobile-navigation div.sub2 > .item > .menu.path {
  background-color: #007370;
}
@media (hover: hover) and (pointer: fine) {
  .mobile-navigation div.sub2 > .item > .menu:hover,
  .mobile-navigation div.sub2 > .item > .menu:focus {
    background-color: #007370;
  }
}
.mobile-navigation div.sub3 {
  overflow: hidden;
  max-height: 0;
}
.mobile-navigation div.sub3 > .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: 40px;
  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 cubic-bezier(0.05, 0.8, 0.5, 1);
}
.mobile-navigation .cb-toggle.cb-toggle-active {
  transform: rotate(-180deg);
}
.cb-album {
  position: relative;
  padding-top: var(--spacePart);
  padding-bottom: var(--spacePart);
}
.cb-album .body-mobile {
  display: none !important;
}
.cb-album h2 {
  display: none;
}
.cb-album .body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cb-album .part {
  width: 100% !important;
  margin: 0 !important;
}
.cb-album .part.desc {
  display: none;
}
#root.ie11 .cb-album img {
  height: auto !important;
  max-height: 1000000000px !important;
}
.cb-album.cb-album .scan {
  margin-top: 40px !important;
}
.cb-album.cb-album .scan:first-child {
  margin-top: 0 !important;
  margin-bottom: 40px !important;
}
.cb-album .scan table,
.cb-album .scan tbody,
.cb-album .scan tr {
  float: left;
  display: block;
  width: 100%;
}
.cb-matrix .body {
  margin-top: -0.5%;
  margin-bottom: -0.5%;
}
.cb-matrix .part {
  margin-top: 0.5% !important;
  margin-bottom: 0.5% !important;
}
.cb-matrix .part.foto {
  height: auto !important;
  box-sizing: border-box;
}
.cb-matrix .part.foto a.foto,
.cb-matrix .part.foto span.foto {
  display: block;
  height: 0;
  padding-bottom: 60%;
  position: relative;
  overflow: hidden;
}
.cb-matrix .part.foto img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.05, 0.8, 0.5, 1);
}
.cb-matrix .part.foto a.foto.zoom img {
  transform: scale(1.1);
}
.cb-matrix.cb-matrix-columns-1 .part.foto {
  width: 100% !important;
}
.cb-matrix.cb-matrix-columns-2 .part.foto {
  width: 49.5% !important;
}
.cb-matrix.cb-matrix-columns-3 .part.foto {
  width: 32.66666667% !important;
}
.cb-matrix.cb-matrix-columns-4 .part.foto {
  width: 24.25% !important;
}
.cb-matrix.cb-matrix-columns-5 .part.foto {
  width: 19.2% !important;
}
.cb-matrix.cb-matrix-columns-6 .part.foto {
  width: 15.83333333% !important;
}
.cb-matrix.cb-matrix-columns-7 .part.foto {
  width: 13.42857143% !important;
}
.cb-matrix.cb-matrix-columns-8 .part.foto {
  width: 11.625% !important;
}
.cb-matrix .scan tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.cb-matrix .scan td {
  float: left;
  display: block;
  margin: 0 10px;
  font-size: 16px;
  line-height: 1.25;
}
.cb-matrix .scan td:first-child {
  margin-left: 0;
}
.cb-matrix .scan td:last-child {
  margin-right: 0;
}
.cb-matrix .scan td.prev,
.cb-matrix .scan td.next {
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  width: 20px;
  height: 20px;
}
.cb-matrix .scan td.prev a,
.cb-matrix .scan td.next a {
  float: left;
  display: block;
  width: 100%;
  height: 100%;
  background-size: 16px 16px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-arrow-left-black.svg);
}
.cb-matrix .scan td.prev:empty,
.cb-matrix .scan td.next:empty {
  opacity: 0.5;
  pointer-events: none;
}
.cb-matrix .scan td.next a {
  background-image: url(/images/cb-default/cb-arrow-right-black.svg);
}
.cb-matrix .scan td a {
  color: var(--textcolor);
}
.cb-matrix .scan td .same {
  color: var(--sitecolor);
}
.cb-strips .part.foto {
  height: auto !important;
  max-height: 1000000000px !important;
}
.cb-strips-images {
  float: left;
  width: 100%;
  height: 0 !important;
  padding-bottom: 56.25%;
  position: relative;
}
.cb-strips-images a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.96);
  z-index: 2;
  transition: opacity 1s cubic-bezier(0.05, 0.8, 0.5, 1), transform 1s cubic-bezier(0.05, 0.8, 0.5, 1);
  overflow: hidden;
}
.cb-strips-images a.is-active {
  z-index: 3;
  pointer-events: auto;
  opacity: 1;
  transform: scale(1);
}
.cb-strips-images img {
  opacity: 1 !important;
  display: block !important;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.cb-strips .scan tbody > tr {
  float: left;
  width: 100%;
  display: flex;
}
.cb-strips .scan tbody > tr > td {
  float: left;
  width: 100%;
  display: block;
}
.cb-strips .scan td.prev,
.cb-strips .scan td.next {
  margin-right: 1.25%;
  width: 6.25%;
}
.cb-strips .scan td.next {
  margin-right: 0;
  margin-left: 1.25%;
}
.cb-strips .scan div.prev,
.cb-strips .scan div.next {
  float: left;
  width: 100%;
  height: 100%;
}
.cb-strips .scan div.prev a,
.cb-strips .scan div.next a {
  float: left;
  display: block;
  width: 100%;
  height: 100%;
  background-size: 16px 16px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-arrow-left-black.svg);
  transition: background 0.4s cubic-bezier(0.05, 0.8, 0.5, 1);
}
.cb-strips .scan div.prev a:hover,
.cb-strips .scan div.next a:hover {
  background-position: 40% 50%;
}
.cb-strips .scan div.next a {
  background-image: url(/images/cb-default/cb-arrow-right-black.svg);
}
.cb-strips .scan div.next a:hover {
  background-position: 60% 50%;
}
.cb-strips .scan td.cb-strips-thumbs {
  width: 85%;
}
.cb-strips-container {
  float: left;
  width: 100%;
}
.cb-strips-container .body {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cb-strips-container .part.foto {
  position: relative;
}
.cb-strips-container .part.foto a.foto,
.cb-strips-container .part.foto span.foto {
  float: left;
  width: 100%;
  display: block;
  height: 0;
  position: relative;
  padding-bottom: 60%;
  opacity: 0.4;
  transition: opacity 0.4s cubic-bezier(0.05, 0.8, 0.5, 1);
  overflow: hidden;
}
.cb-strips-container .part.foto a.foto:hover,
.cb-strips-container .part.foto span.foto:hover,
.cb-strips-container .part.foto a.foto.is-active,
.cb-strips-container .part.foto span.foto.is-active {
  opacity: 1;
}
.cb-strips-container .part.foto a.foto .cb-zoom-indicator,
.cb-strips-container .part.foto span.foto .cb-zoom-indicator {
  display: none;
}
.cb-strips-container .part.foto img {
  opacity: 1 !important;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.05, 0.8, 0.5, 1);
}
.cb-strips-container .part.foto a.foto:hover img {
  transform: scale(1.2);
}
.cb-strips-4 .cb-strips-container .part.foto {
  width: 23.95833333% !important;
}
.cb-strips-6 .cb-strips-container .part.foto {
  width: 15.50925926% !important;
}
.cb-strips-8 .cb-strips-container .part.foto {
  width: 11.28472222% !important;
}
.cb-strips-10 .cb-strips-container .part.foto {
  width: 8.75% !important;
}
.cb-slideshow-images {
  float: left;
  width: 100%;
}
.cb-slideshow .part.foto,
.cb-slideshow .part.crossslideContainer {
  max-height: 1000000000px !important;
  max-width: 100% !important;
  height: 0 !important;
  padding-bottom: 61.8336887%;
  overflow: hidden;
  position: relative;
}
.cb-slideshow a.foto {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s cubic-bezier(0.05, 0.8, 0.5, 1);
}
.cb-slideshow a.foto.is-activated {
  z-index: 2;
  pointer-events: auto;
  opacity: 1;
}
.cb-slideshow img {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  border: none !important;
  z-index: 1;
}
.cb-slideshow img.is-activated {
  z-index: 2;
}
#view .cb-slideshow.cb-manual img {
  transition: all 1s cubic-bezier(0.05, 0.8, 0.5, 1);
  transform: scale(1.05);
}
#view .cb-slideshow.cb-manual a.foto.is-activated img {
  transform: scale(1);
}
#view .cb-slideshow.cb-fading img {
  opacity: 0 !important;
  transition: all 1s cubic-bezier(0.05, 0.8, 0.5, 1);
  transform: scale(1.05);
}
#view .cb-slideshow.cb-fading img.is-activated,
#view .cb-slideshow.cb-fading .cb-image-figure.is-activated img {
  opacity: 1 !important;
  transform: scale(1);
}
#view .cb-slideshow.cb-sliding img {
  opacity: 0 !important;
  width: 110% !important;
  max-width: 110% !important;
  transition: all 1s cubic-bezier(0.05, 0.8, 0.5, 1);
  animation-name: SlideshowSlide;
  animation-duration: 12s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
#view .cb-slideshow.cb-sliding img.is-activated,
#view .cb-slideshow.cb-sliding .cb-image-figure.is-activated img {
  opacity: 1 !important;
}
@keyframes SlideshowSlide {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -10%;
  }
  100% {
    margin-left: 0;
  }
}
#view .cb-slideshow.cb-moving img {
  opacity: 0 !important;
  transition: all 1s cubic-bezier(0.05, 0.8, 0.5, 1);
  animation-name: SlideshowMove;
  animation-duration: 16s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
#view .cb-slideshow.cb-moving img.is-activated,
#view .cb-slideshow.cb-moving .cb-image-figure.is-activated img {
  opacity: 1 !important;
}
@keyframes SlideshowMove {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.cb-slideshow .head {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 4;
  height: 0;
  width: 100%;
}
.cb-slideshow .ctrl {
  float: left;
  width: 100%;
}
.cb-slideshow .ctrl a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  width: 50px;
  height: 40px;
  background-size: 25px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/arrow-left-white.svg);
  transition: all 0.4s cubic-bezier(0.05, 0.8, 0.5, 1);
}
.cb-slideshow .ctrl a:hover {
  width: 70px;
}
.cb-slideshow .ctrl a.fade {
  opacity: 0.4;
  cursor: default;
  width: 50px;
}
.cb-slideshow .ctrl .next a {
  left: unset;
  right: 0;
  background-image: url(/images/arrow-right-white.svg);
}
.crossslide {
  float: left;
  width: 100%;
  max-width: 100% !important;
  position: static !important;
  padding: 0 !important;
}
/*# sourceMappingURL=./screen-small.css.map */