* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

:root {
  --section--max-width: 85rem;
  --message-color: #FE7B72;
}

@media screen and (min-width: 768px) {
  :root {
    --content--padding-left: 2rem;
    --content--padding-right: 4rem;
    --section--margin-top: 6rem;
  }

  .section--max-width {
    margin-left: auto !important;
    margin-right: auto !important;
    width: calc(100% - 15rem) !important;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --content--padding-left: 1rem;
    --content--padding-right: 2rem;
    --section--margin-top: 5rem;
  }

  .section--max-width:not(.section--img-next-to-text):not(.img-with-text-overlay--content):not(.big-preview-articles) {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

  .overlay-text-style {
    mix-blend-mode: screen;
  }

  #main {
    position: relative;
  }

  #main .container {
    max-width: 100%;
  }

  /* #main > div.c-headerBuilder:empty + div.c-contentBuilder div.container > div:nth-child(2) {
    margin-top: 6rem;
  } */

  .section--max-width {
    max-width: var(--section--max-width);
  }

  section {
    width: 100%;
    height: 100%;
  }

  div.container section.cl .col-layout section {
    padding-top: 0 !important;
  }

  div.container > section:first-of-type:not(.cl):not(.section--display-modules):not(.section--display-downloads):not(.t.fixed-height) {
    padding-top: var(--section--margin-top) !important;
  }

  div.container section:first-of-type.t.fixed-height {
    padding-top: 0 !important;
  }

  div.container .linear-gradient > section:last-of-type {
    padding-bottom: 0 !important;
  }

  div.container > section:last-of-type:not(.cl) {
    padding-bottom: var(--section--margin-top) !important;
  }

  div.container section:not(section.iwto.bg-colorized):not(.cl) {
    padding-top: calc(var(--section--margin-top) / 2);
    padding-bottom: calc(var(--section--margin-top) / 2);
  }

  div.container section.cl .col-layout section:not(.t) {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  div.container section.cl .col-layout section .section--max-width {
    width: 100% !important;
  }

  section:not(.iwto) {
    position: relative;
    z-index: 1;
  }

  section:not(.iwto):not(.cl) + section.cl {
    padding-top: 0 !important;
    margin-top: calc(var(--section--margin-top) / 2 * -1);
    position: relative;
    z-index: 0;
  }

  section.cl + section.cl {
    margin-top: 2px;
  }

  section.cl .col-layout.distance-to-top {
    padding-top: var(--section--margin-top);
  }

  @media screen and (min-width: 768px) {
    section.cl .col-layout.distance-to-bottom {
      padding-bottom: var(--section--margin-top);
    }
  }

  @media screen and (max-width: 767px) {
    section.cl:not(:last-child) .col-layout.distance-to-bottom {
      padding-bottom: var(--section--margin-top);
    }
  }

  /*  */

  ::not(.text-xs)::not(.text-sm)::not(.text-m)::not(.text-lg)::not(.text-xl)::not(.text-2xl)::not(.text-3xl)::not(.text-4xl)::not(.text-5xl)::not(.text-6xl)::not(.text-7xl)::not(.text-8xl)::not(.text-9xl) .normal-text-size {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .heading-font-weight {
    font-weight: 400;
  }

/* Start Section Ausnahmen */

div.container .col-layout section {
  margin-left: 0 !important;
  margin-right: 0 !important;
  /* width: 100% !important; */

  margin-top: 0 !important;
  margin-bottom: 0 !important;

  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.col-layout + section, .article-previews .small-preview {
  margin-top: 0 !important;
}

@media screen and (min-width: 768px) {
  :not(.section--img-with-text-overlay) + .text + .section--img-with-text-overlay {
    margin-top: calc(var(--section--margin-top) - 3rem) !important;
  }
}

@media screen and (max-width: 767px) {

}
.btn {
  width: max-content;
  max-width: calc(100% - 1rem);
  height: max-content;
  padding: .5rem .5rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  background-color: #313131;
  color: white;
  border: 1px solid transparent;
  font-size: 1rem;
  transition: all 100ms linear;
}

.btn:hover {
  background-color: white;
  color: #313131;
  border: 1px solid #313131;
  transform: scale(1.05) !important;
}

#login-or-register-forms--heading button {
  width: max-content;
  max-width: calc(100% - 1rem);
  height: max-content;
  padding: .5rem .5rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  background-color: white;
  color: #313131;
  border: 1px solid #313131;
  font-size: 1rem;
  transition: all 100ms linear;
}

#login-or-register-forms--heading button.active {
  background-color: #313131;
  color: white;
  border: 1px solid transparent;
}

/* Loading Animation */
.loader-relative {
  position: relative !important;
}

.loader-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  padding: inherit;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, .2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  -webkit-animation: 2s linear infinite svg-animation;
  animation: 2s linear infinite svg-animation;
  height: 100%;
  fill: black;
  margin: auto;
}

@keyframes svg-animation {
  0% {
    transform: rotateZ(0)
  }

  100% {
    transform: rotateZ(360deg)
  }
}

.loader circle {
  -webkit-animation: 1.4s ease-in-out infinite both circle-animation;
  animation: 1.4s ease-in-out infinite both circle-animation;
  display: block;
  fill: transparent;
  stroke: #fff;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 280;
  stroke-width: 10px;
  transform-origin: 50% 50%
}

@keyframes circle-animation {

  0%,
  25% {
    stroke-dashoffset: 280;
    transform: rotate(0)
  }

  50%,
  75% {
    stroke-dashoffset: 75;
    transform: rotate(45deg)
  }

  100% {
    stroke-dashoffset: 280;
    transform: rotate(360deg)
  }
}

/* End Section Ausnahmen */

  /* .account-form .btn {
    font-family: soleil, sans-serif;
    font-weight: 600;
    font-style: normal;
    letter-spacing: .1em;
    padding: 1em;
    font-size: .9em;
    cursor: pointer;
    background-color: #2dba74;
    color: #fff
  }

  .account-form .btn--full {
    width: 100%
  }

  .account-form input {
    font-size: 1em;
    border-color: transparent;
    border-radius: 4px;
    background-color: #edf1f2;
    color: #4f5659;
    -webkit-transition: opacity .4s ease-out;
    -moz-transition: opacity .4s ease-out;
    -ms-transition: opacity .4s ease-out;
    -o-transition: opacity .4s ease-out;
    transition: opacity .4s ease-out;
    width: 100%;
    padding: .75em .5em
  } */

  /* START Navigation */
  header {
    width: 100%;
    height: 0;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: transparent;

    --header--navitem--color: white;
    --header--background--color: rgb(0, 0, 0, .4);

    --header--navitem--level-1--background--hover-color: rgb(0, 0, 0, 0);
    --header--navitem--level-1--text--hover-color: white;
    --header--navitem--level-2--background--hover-color: rgb(0, 0, 0, 0);
    --header--navitem--level-2--text--hover-color: black;
    --header--navitem--level-3--background--hover-color: rgb(0, 0, 0, 0);
    --header--navitem--level-3--text--hover-color: black;

    /* --header--hamburger--color: white; */
    --header--x-button--color: white;
    --header--chevron-button--color: black;
    --header--mobile-menu--background-color: var(--base-color);
  }

  header .header-colorized #logo svg text, header .header-colorized-fixed #logo svg text {
    fill: #FFFFFF !important;
  }

  header .header-colorized #hamburger, header .header-colorized-fixed #hamburger {
    stroke: #FFFFFF !important;
  }

  header #header-content-wrapper.header-colorized .menu-tab .menu-tab-heading, header .header-colorized-fixed .menu-tab .menu-tab-heading {
    color: #FFFFFF;
  }

  header.header-dark #logo svg text {
    fill: #313131;
  }

  header.header-dark #hamburger {
    stroke: #313131;
  }

  header.header-dark .menu-tab .menu-tab-heading {
    color: #313131;
  }

  header.header-light #logo svg text {
    fill: #FFFFFF;
  }

  header.header-light #hamburger {
    stroke: #FFFFFF;
  }

  header.header-dark #language-switcher {
    color: #313131;
  }

  header.header-light #language-switcher {
    color: #FFFFFF;
  }

  header.header-dark #currency-switcher {
    color: #313131;
  }

  header.header-light #currency-switcher {
    color: #FFFFFF;
  }

  header.header-light .menu-tab .menu-tab-heading {
    color: #FFFFFF;
  }

  header .header-colorized #language-switch-mobile #language-switcher, header .header-colorized-fixed #language-switch-mobile #language-switcher {
    color: white;
  }

  header #language-switcher {
    display: flex;
    gap: .2rem;
    margin-left: 1rem;
  }

  #currency-switcher {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
  }

  #currency-switcher li {
    margin-top: 2rem;
    display: block;
    padding: .5rem .75rem;
    cursor: pointer;
    border: 1px solid #313131;
    background-color: white;
  }

  #currency-switcher li:hover {
    color: white;
    background-color: #313131;
  }

  #header-content-wrapper.header-colorized, #header-content-wrapper.header-colorized-fixed {
    background-color: var(--header--background--color);
    /* box-shadow: 0 0 10px gray; */
  }

  @media screen and (max-width: 767px) {
    header #menu-mobile {
      padding: 1rem 0;
      display: flex;
      flex-direction: row;
      justify-content: center;;
      align-items: center;
      position: relative;
    }

    header #menu-mobile #menu-header {
      padding: 1rem 1rem;
    }

    header #menu-mobile #menu-nav {
      overflow: hidden;
      top: 0;
      left: 0;
      position: fixed;
      height: 100vh;
      width: 100vw;
      transform: translateX(-100%);
      background-color: var(--header--mobile-menu--background-color);
      transition: transform 350ms ease-in-out;
    }

    header #menu-mobile #menu-nav.active {
      transform: none;
    }

    header #menu-mobile #menu-nav #menu {
      width: 100%;
      height: 100%;
      overflow: hidden;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: start;
      gap: 2rem;
    }

    header #menu-mobile #menu-nav.active #menu {
      overflow-y: scroll;
    }

    header #menu-mobile #menu-nav #menu .x-button {
      cursor: pointer;
      height: 2rem;
      width: auto;
      stroke: var(--header--x-button--color);
    }

    header #menu-mobile #menu-nav #menu #menu-header {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    header #menu-header #logo-mobile {
      width: 10rem;
      height: auto;
    }

    header #menu-header #logo-mobile img {
      width: 100%;
      height: auto;
    }

    header .navigation__list {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    header #menu-mobile .navigation__listItem {
      position: relative;
      display: inline-flex;
      flex-direction: column;
      height: max-content;
      color: var(--header--navitem--color);
    }

    header #menu-mobile .navigation__listItem--level-1 {
      padding: 1rem;
    }

    header #menu-mobile .navigation__list a, header #menu-mobile .navigation__list span {
      display: block;
      /* white-space: nowrap; */
    }

    header #menu-mobile .navigation__listHeading, header #menu-mobile .navigation__listLink, header #menu-mobile .arrow-wrapper {
      transition: color 250ms linear;
    }

    header #menu-mobile .menu-tab {
      transition: background-color 250ms linear;
    }

    header #menu-mobile .navigation__listHeading--level-1, header #menu-mobile .navigation__listLink--level-1 {
      font-size: 2rem;
    }

    header #menu-mobile .navigation__listHeading:not(.navigation__listHeading--level-1), header #menu-mobile .navigation__listLink:not(.navigation__listLink--level-1) {
      font-size: 1.5rem;
    }

    header #menu-mobile .navigation__list--level-1 {
      width: 100%;
    }

    header #menu-mobile .navigation__list--level-1 > li:not(:last-child) {
      border-bottom: 2px white solid;
    }

    header #menu-mobile .navigation__listItem--level-1--heading-arrow-wrapper {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    header #menu-mobile .navigation__listItem--level-1--heading-arrow-wrapper .arrow-wrapper {
      width: max-content;
      height: max-content;
      transform: rotate(90deg);
      transition: transform 200ms linear;
    }

    header #menu-mobile .navigation__listItem.opened .navigation__listItem--heading-arrow-wrapper .arrow-wrapper {
      transform: rotate(0deg);
    }

    header #menu-mobile .navigation__listItem--level-1--heading-arrow-wrapper .arrow-wrapper .dropdown-arrow {
      height: 2rem;
      width: auto;
    }

    header #menu-mobile .navigation__listItem--level-1 .navigation__subItemsWrapper {
      max-height: 0;
      width: 100%;
      overflow: hidden;
      transition: max-height 250ms ease-in-out;
    }

    header #menu-mobile .navigation__listItem.opened > .navigation__subItemsWrapper {
      max-height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
    }
  }

  @media screen and (min-width: 768px) {
    #header-content-wrapper.header-colorized #language-switcher, #header-content-wrapper.header-colorized-fixed #language-switcher {
      color: #FFFFFF;
    }

    header #menu-desktop .navigation__list .chevron-down {
      display: none;
    }

    header #menu-desktop .navigation__list--level-1 {
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
    }

    header #menu-desktop .navigation__listItem {
      display: inline-flex;
      flex-direction: column;
      height: max-content;
      width: 100%;
    }

    header #menu-desktop .navigation__listItem:not(.navigation__listItem--level-1) {
      font-size: 1.7rem;
    }

    header #menu-desktop .navigation__listHeading--level-1:not(.menu-tab-title), header #menu-desktop .navigation__listLink--level-1:not(.menu-tab-title) {
      padding: 1rem;
      white-space: nowrap;
    }

    header #menu-desktop .navigation__subItemsWrapper--level-2 {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    header #menu-desktop .menu-tab-title {
      height: 100%;
      aspect-ratio: 1/1;
      font-size: 3.5rem;
      line-height: 3.5rem;
      border-right: 2px currentColor solid;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    header #menu-desktop .navigation__listWrapper--level-2 {
      width: 100%;
      height: 100%;
      padding-left: 6rem;
      padding-right: 1rem;
      display: flex;
      justify-content: flex-start;
      align-items: center;
    }

    header #menu-desktop .navigation__list--level-2 {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
    }

    header #menu-desktop .navigation__listLink--level-2, header #menu-desktop .menu-tab-title {
      color: #313131;
    }

    header #menu-desktop .navigation__listLink--level-2 {
      max-width: 100%;
    }

    #header-content {
      position: relative;
    }

    .menu-tab {
      overflow: hidden;
    }

    .menu-content {
      z-index: 998;
      position: absolute;
      top: calc(100% - 4px);
      right: -5rem;
      min-width: 75vw;
      max-width: 100vw;
      height: 0;
      overflow: hidden;
      background-color: white;
      /* transition: height 250ms linear; */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .menu-tab:hover .menu-content, .menu-tab.active .menu-content {
      height: 50vh;
      overflow-y: scroll;
      transition: max-height 1000ms linear;
      box-shadow: 0 4px 10px -10px black;
      border: 2px currentColor solid;
    }

    .menu-tab .menu-tab-heading {
      display: block;
      position: absolute;
      font-weight: 500;
    }

    .menu-tab:hover .menu-tab-heading:not(.has-descendants), .menu-tab:hover .menu-tab-heading-clone:not(.has-descendants), .menu-tab.active .menu-tab-heading:not(.has-descendants), .menu-tab.active .menu-tab-heading-clone:not(.has-descendants) {
      border: 2px transparent solid;
      background-color: transparent;
      color: inherit !important;
    }

    .menu-tab .menu-tab-heading, .menu-tab .menu-tab-heading-clone {
      border-top: 2px transparent solid;
      border-right: 2px transparent solid;
      border-left: 2px transparent solid;
      border-bottom: 2px transparent solid;
    }

    .navigation__listHeading {
      cursor: default;
    }

    .menu-tab:hover .menu-tab-heading, .menu-tab.active .menu-tab-heading {
      background-color: white;
      color: #313131 !important;
      border-top: 2px currentColor solid;
      border-right: 2px currentColor solid;
      border-left: 2px currentColor solid;
      z-index: 999;
    }

    .navigation__listLink--level-1:hover {
      border: 2px currentColor solid;
    }

    .menu-tab .menu-tab-heading-clone {
      display: block;
      color: transparent;
    }

    .menu-tab:hover .menu-tab-heading-clone, .menu-tab.active .menu-tab-heading-clone {
      border-top: 2px currentColor solid;
      border-right: 2px currentColor solid;
      border-left: 2px currentColor solid;
      background-color: white;
    }
  }

  .navigation__listLink, .footer-nav__listLink--level-1, .footer-nav__listLink--level-2, .footer-nav__listLink--level-3, #language-switcher li {
    width: max-content !important;
    display: inline-block;
    color: currentColor;
    text-decoration: none;
  }

  .navigation__listLink:after, .footer-nav__listLink--level-1:after, .footer-nav__listLink--level-2:after, .footer-nav__listLink--level-3:after, #language-switcher li:after, #currency-switcher li:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background: white;
    transition-property: all;
    transition-timing-function: ease;
  }

  .navigation__listLink:hover::after, .footer-nav__listLink--level-1:hover:after, .footer-nav__listLink--level-2:hover:after, .footer-nav__listLink--level-3:hover:after, #language-switcher li:hover:after, #language-switcher li.is-active:after, #currency-switcher li:hover:after, #currency-switcher li.is-active:after {
    width: 100%;
    background: currentColor;
  }

  .navigation__listLink--level-1:after, #language-switcher li:after, #currency-switcher li:after {
    transition-duration: .3s;
  }

  .navigation__listLink--level-2:after {
    transition-duration: .5s;
  }

  .footer-nav__listLink--level-1:after, .footer-nav__listLink--level-2:after, .footer-nav__listLink--level-3:after {
    transition-duration: .3s;
  }

  @keyframes moving-bg {
    0% {
      background-position: right;
    }
    100% {
      background-position: left;
    }
  }

  /* END Navigation */

  /* login */

  .account-form .loginName-wrapper, .account-form .password-wrapper {
    margin-top: 1.5rem;
  }

  .account-form .loginName, .account-form .password {
    padding: .2rem .5rem;
    border: 2px solid #313131;
    border-radius: 0;
    width: 20rem;
    max-width: 100%;
    display: block;
    background-color: white;
    color: #313131;
  }

  @media screen and (min-width: 768px) {
    .account-form .loginName, .account-form .password {
      font-size: 70%;
    }
  }

  .account-form .loginName::placeholder, .account-form .password::placeholder {
    color: #313131;
    opacity: 1;
    font-size: 70%;
  }

  /* Footer */

  .footer-nav__list--level-1 {
    width: 100%;
    display: flex;
  }

  .footer-nav__listHeading--level-1, .footer-nav__listLink--level-1, .placeholder .footer-nav__listHeading--level-2, .placeholder .footer-nav__listLink--level-2, #footer-newsletter-wrapper .footer-newsletter-heading {
    font-size: 2rem;
    font-weight: 500;
  }

  .footer-nav__list--level-2 {
    display: flex;
    flex-direction: column;
  }

  footer {
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
  }

  @media screen and (min-width: 768px) {
    footer {
      position: relative;
      z-index: 1;
    }

    .footer-nav__list--level-1 {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1rem;
    }

    .placeholder .footer-nav__list--level-2 {
      gap: 1rem;
    }

    #footer-nav {
      padding-top: 3rem;
      padding-bottom: 3rem;
      padding-right: 3rem;
      border-right: 2px solid currentColor;
    }
  }

  @media screen and (max-width: 767px) {
    .footer-nav__list--level-1 {
      flex-direction: column;
      justify-content: flex-start;
      gap: 2rem;
    }

    .placeholder .footer-nav__list--level-2 {
      gap: 2rem;
    }

    #footer-nav {
      margin-top: 1rem;
    }
  }

  #footer-newsletter-wrapper input::placeholder {
    color: currentColor;
    opacity: 1;
  }

  .icon-size {
    height: 2rem;
    width: auto;
  }

  #social-nav a {
    transition: transform 150ms linear;
  }

  #social-nav a:hover {
    transform: scale(1.3);
  }

  /* button[type="submit"] {
    transition: transform 100ms linear;
  }

  button[type="submit"]:hover {
    transform: scale(1.15);
  } */

  /* Standard-Header */

  #standard-header {
    display: block;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: relative;
  }

  #standard-header .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  #standard-header .text-overlay {
    position: absolute;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    padding-top: 2rem;

    /* transition: transform 100ms linear; */
  }

  #standard-header:hover .text-overlay {
    /* transform: scale(1.02); */
  }

  #standard-header .arrow-wrapper {
    transition: transform 100ms linear;
  }

  @media screen and (min-width: 768px) {
    #standard-header .text-overlay {
      width: 100%;
      text-align: center;
      justify-content: center;
      padding-left: var(--content--padding-left);
      padding-right: var(--content--padding-right);
    }
  }

  @media screen and (max-width: 767px) {
    #standard-header .text-overlay {
      width: 100%;
      justify-content: center;
      padding-bottom: 6rem;
      padding-left: var(--content--padding-left);
      padding-right: var(--content--padding-right);
    }
  }

  /* Email-Register */

  #email-register-header {
    display: block;
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
  }

  #email-register-header .bg-image {
    width: 100%;
    height: 100%;
  }


  #email-register-header .email-register-overlay {
    position: absolute;
    width: 100%;
    height: max-content;
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: var(--content--padding-left);
    padding-right: var(--content--padding-right);

    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 6rem;
  }

  #email-register-header .email-register {
    width: 50%;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: .5rem;
  }

  #email-register-header .email-register--side-text {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  #email-register-header #email-register-text {
    font-size: 3rem;
  }

  @media screen and (min-width: 768px) {
    #email-register-header .email-register-overlay {
      flex-direction: row;
    }

    #email-register-header .email-register {
      width: 50%;
    }

    #email-register-header .email-register--side-text {
      width: 50%;
    }
  }

  @media screen and (max-width: 767px) {
    #email-register-header .email-register-overlay {
      flex-direction: column;
    }

    #email-register-header .email-register--side-text {
      width: 100%;
    }

    #email-register-header .email-register {
      width: 100%;
    }
  }

  /* Spaltenlayout */

  .col-layout {
    margin-left: auto;
    margin-right: auto;
    place-items: center;
  }

  .col-layout.xs-gap {
    gap: 1rem;
  }

  .col-layout.m-gap {
    gap: 3rem;
  }

  .col-layout.l-gap {
    gap: 5rem;
  }

  .col-layout.xl-gap {
    gap: 7rem;
  }

  .col-layout .arrow-block .text-overlay {
    width: 100%;
  }

  .col-layout.border-around-elements {
    grid-gap: 2px;
  }

  .col-layout.border-around-elements > section.t {
    padding: 1rem !important;
  }

  @media screen and (min-width: 768px) {
    .col-layout.cols-1 {
      grid-template-columns: 100%;
    }

    .col-layout:not(.xs-gap):not(.m-gap):not(.l-gap):not(.xl-gap).cols-2 {
      grid-template-columns: repeat(2, calc((100% - 2px) / 2));
    }

    .col-layout.xs-gap.cols-2 {
      grid-template-columns: repeat(2, calc((100% - 1rem - 2px) / 2));
    }

    .col-layout.m-gap.cols-2 {
      grid-template-columns: repeat(2, calc((100% - 3rem - 2px) / 2));
    }

    .col-layout.l-gap.cols-2 {
      grid-template-columns: repeat(2, calc((100% - 5rem - 2px) / 2));
    }

    .col-layout.xl-gap.cols-2 {
      grid-template-columns: repeat(2, calc((100% - 7rem - 2px) / 2));
    }

    .col-layout:not(.xs-gap):not(.m-gap):not(.l-gap):not(.xl-gap).cols-3 {
      grid-template-columns: repeat(3, calc((100% - 4px) / 3));
    }

    .col-layout.xs-gap.cols-3 {
      grid-template-columns: repeat(3, calc((100% - 2rem - 4px) / 3));
    }

    .col-layout.m-gap.cols-3 {
      grid-template-columns: repeat(3, calc((100% - 6rem - 4px) / 3));
    }

    .col-layout.l-gap.cols-3 {
      grid-template-columns: repeat(3, calc((100% - 10rem - 4px) / 3));
    }

    .col-layout.xl-gap.cols-3 {
      grid-template-columns: repeat(3, calc((100% - 14rem - 4px) / 3));
    }

    .col-layout:not(.xs-gap):not(.m-gap):not(.l-gap):not(.xl-gap).cols-4 {
      grid-template-columns: repeat(4, calc((100% - 6px) / 4));
    }

    .col-layout.xs-gap.cols-4 {
      grid-template-columns: repeat(4, calc((100% - 3rem - 6px) / 4));
    }

    .col-layout.m-gap.cols-4 {
      grid-template-columns: repeat(4, calc((100% - 9rem - 6px) / 4));
    }

    .col-layout.l-gap.cols-4 {
      grid-template-columns: repeat(4, calc((100% - 15rem - 6px) / 4));
    }

    .col-layout.xl-gap.cols-4 {
      grid-template-columns: repeat(4, calc((100% - 21rem - 6px) / 4));
    }

    .col-layout.border-around-elements > section {
      outline: 2px solid #313131;
    }
  }

  @media screen and (max-width: 767px) {
    .cols {
      grid-template-columns: 100%;
    }

    .cols-2 {
      grid-template-columns: 100%;
    }

    .cols-3 {
      grid-template-columns: 100%;
    }

    .cols-4 {
      grid-template-columns: 100%;
    }

    .col-layout.border-around-elements > section {
      outline: 2px solid #313131;
    }
  }

  /* Standard-Block */

.arrow-block {
  display: block;
  width: 100%;

  position: relative;
}

.arrow-block .bg-image {
  width: 100%;
  height: 100%;

  position: absolute;
  top: 0;
  left: 0;
}

.arrow-block .bg-image {
  width: 100%;
  height: 100%;
}

.arrow-block .image-overlay {
  width: 100%;
  height: 100%;

  position: absolute;
  top: 0;
  left: 0;
}

.arrow-block .text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  /* transition: transform 100ms linear; */
}

.arrow-block:hover .text-overlay {
  /* transform: scale(1.02); */
}

.arrow-block .text-overlay .arrow-wrapper {
  transition: transform 100ms linear;
}

.arrow-block:hover .text-overlay .arrow-wrapper {
  transform: translateX(1.5rem) scale(1.1);
}



@media screen and (min-width: 768px) {
  .arrow-block .text-overlay {
    width: 50%;
    height: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding-left: var(--content--padding-left);
    position: relative;

    gap: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .arrow-block .arrow-wrapper {
    position: absolute;
    margin-bottom: 3rem;
    right: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .arrow-block {
      height: 50vh;
  }

  .arrow-block .text-overlay {
    width: 100%;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-left: var(--content--padding-left);
    padding-right: var(--content--padding-right);

    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .arrow-block .arrow-wrapper {
  }
}

/* Text */

.text {
  width: 100%;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.text ul {
  margin: 1rem 0;
  list-style-type: none;
}

.text li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text li:before {
  content: '+';
  width: 1rem;
  height: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .text {
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .text {
    justify-content: flex-start;
  }
}

/* filter */

.section--display-modules, .section--display-downloads {
  width: 100%;
  display: flex;
  justify-content: center;

  padding-bottom: 3rem;
}

.display-modules-wrapper, .display-downloads-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.show-downloads-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.show-downloads-wrapper .item-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media screen and (min-width: 500px) {
  .show-downloads-wrapper .item-grid > * {
    flex: 0 1 calc((100% - 3rem) / 4);
    min-width: 300px;
  }
}

@media screen and (max-width: 499px) {
  .show-downloads-wrapper .item-grid > * {
    width: 100%;
  }
}

.section--display-modules .item-grid, .section--display-downloads .item-grid {
  display: grid;
  grid-gap: 1rem;
}

.section--display-modules .item {
  border: 1px solid var(--base-color);
  padding: 1rem;
}

@media screen and (min-width: 1100px) {
  .section--display-modules .item-grid, .section--display-downloads .item-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 768px) and (max-width: 1099px) {
  .section--display-modules .item-grid, .section--display-downloads .item-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 500px) and (max-width: 767px) {
  .section--display-modules .item-grid, .section--display-downloads .item-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 499px) {
  .section--display-modules .item-grid, .section--display-downloads .item-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 768px) {
  .filter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .filter .filter-content {
    display: grid;
    grid-template-columns: max-content 1fr;
    grid-gap: 1rem;
  }

  .filter .row-title {
    padding: .5rem 0;
  }

  .filter .filter-content .col-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .filter .filter-content .col-title {
    display: block;
    width: 8rem;
    min-width: max-content;
    border: 1px solid var(--base-color);
    padding: .5rem;
    cursor: pointer;
  }

  .filter .filter-content input:checked + .col-title {
    background-color: var(--base-color);
    color: white;
    font-weight: 600;
  }

  .filter input {
    position: fixed;
    left: -9999px;
  }
}

@media screen and (max-width: 767px) {
  .filter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .filter .filter-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }

  .filter .row-title {
    display: block;
    width: 100%;
    min-width: max-content;
    border: 1px solid var(--base-color);
    padding: .5rem;
    cursor: pointer;
  }

  .filter .row-title.active + .col-wrapper {
    height: 100%;
  }

  .filter .filter-content .col-wrapper {
    width: 100%;
    height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
  }

  .filter .filter-content .col {
    width: 90%;
  }

  .filter .filter-content .col-title {
    display: block;
    width: 100%;
    min-width: max-content;
    border: 1px solid var(--base-color);
    padding: .5rem;
    cursor: pointer;
  }

  .filter .filter-content input:checked + .col-title {
    background-color: var(--base-color);
    color: white;
    font-weight: 600;
  }

  .filter input {
    position: fixed;
    left: -9999px;
  }
}

/* downloadItem */

.download-item {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
}

.download-item .item-body {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  border: 1px solid var(--base-color);
}

.download-item .item-body .side-text {
  width: calc(100% / 3);
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1rem .5rem;
}

.download-item .item-body .side-text .vertical-text {
  writing-mode: vertical-lr;
}

@media screen and (min-width: 1300px) {
  .download-item .item-body .side-text .vertical-text {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}

@media screen and (min-width: 1101px) and (max-width: 1300px) {
  .download-item .item-body .side-text .vertical-text {
    font-size: 2rem;
    line-height: 2rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .download-item .item-body .side-text .vertical-text {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .download-item .item-body .side-text .vertical-text {
    font-size: 2rem;
    line-height: 2rem;
  }
}

.download-item .item-body .side-text .horizontal-text {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  line-height: 1.05rem;
  margin-top: 1rem;
}


.download-item .item-body .super-grid-logo {
  width: calc(100% / 3 * 2);
  height: 100%;
  -webkit-mask-image: url('/assets/img/super-grid-logo-repeat-white.png');

  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}

.download-item .item-footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: .5rem;
}

.download-item .item-footer .download-type {
  display: block;
  width: 6rem;
  min-width: max-content;
  border: 1px solid var(--base-color);
  padding: .5rem;
}

.button-animation {
  color: inherit;
  background-color: transparent;
  transition: all 100ms linear;
}

.button-animation:hover {
  background-color: #313131;
  color: white;
  transform: scale(1.05);
}

/* img-with-text-overlay */

.section--img-with-text-overlay {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-with-text-overlay--content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.img-with-text-overlay-wrapper {
  width: 100%;
  height: auto;

  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.img-with-text-overlay {
  width: 100%;
  height: auto;

  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.img-with-text-overlay-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

a.img-with-text-overlay-wrapper:hover img {
  transition: opacity 100ms linear;
}

a.img-with-text-overlay-wrapper .overlay-text {
  transition: transform 100ms linear;
}

.img-with-text-overlay-wrapper .overlay-text {
  max-width: 100%;
}

section.iwto.bg-colorized {
  --img-with-text-overlay--y-padding: 10rem;
  padding-top: var(--img-with-text-overlay--y-padding);
  padding-bottom: var(--img-with-text-overlay--y-padding);
}

.img-with-text-overlay-wrapper img {
  height:auto;
}

.img-with-text-overlay-wrapper .overlay-text {
  position: absolute;
  padding: 2rem;
  text-align: center;
}

.section--img-with-text-overlay .img-subtitle-wrapper {
  width: 100%;
  height: 0;
  position: relative;
  display: flex;
  justify-content: center;
}

.section--img-with-text-overlay .img-subtitle-wrapper .img-subtitle {
  position: absolute;
  height: var(--img-with-text-overlay--y-padding);
  top: 0;
  width: max-content;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.img-with-text-overlay-wrapper img {
  height: 80vh;
  max-height: 45rem;
}
@media screen and (min-width: 768px) {

}

@media screen and (max-width: 767px) {
  /* .img-with-text-overlay--content {
    border-top: 2px solid currentColor;
  }

  .img-with-text-overlay-wrapper img {
    height:80vh;
  }

  .img-with-text-overlay-wrapper .overlay-text {
    width: 100%;
    padding: 1rem;
  }

  .section--img-with-text-overlay .img-subtitle-wrapper {
    display: none;
  } */
}





/* section--img-next-to-text */

.section--img-next-to-text {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.img-next-to-text--content {
  width: 100%;
  display: flex;
  position: relative;
}

@media screen and (min-width: 768px) {
  .img-next-to-text--content {
    min-height: 40vh;
  }

  .img-next-to-text--content.text-pos-left .img-wrapper {
    padding-left: 6rem;
    right: 0;
    top: 0;
  }

  .img-next-to-text--content.text-pos-right .img-wrapper {
    padding-right: 6rem;
    left: 0;
    top: 0;
  }

  .img-next-to-text--content .img-wrapper {
    position: absolute;
    width: 50%;
    height: 100%;
  }

  .img-next-to-text--content .text-wrapper {
    width: 50%;
    height: max-content;
  }

  .img-next-to-text--content.text-pos-left {
    justify-content: flex-start;
  }

  .img-next-to-text--content.text-pos-right {
    justify-content: flex-end;
  }
}

@media screen and (max-width: 767px) {
  .img-next-to-text--content {
    border-top: 2px solid currentColor;
    flex-direction: column-reverse;
  }

  .img-next-to-text--content .text-wrapper {
    padding: 0 1rem;
  }

  .img-next-to-text--content .img-wrapper {
    width: 100%;
    height: 80vh;
  }
}

.img-next-to-text--content .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Section articleSection */

.article-previews {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.article-previews > .big-preview-articles .small-preview {
  display: none;
}

.article-previews > .small-preview-articles .big-preview {
  display: none;
}

.small-preview-articles {
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}

.small-preview-articles::-webkit-scrollbar {
  -webkit-appearance: none;
  background-color: transparent;
  height: 1rem;
}

.small-preview-articles::-webkit-scrollbar-track-piece {
}

.small-preview-articles::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: rgba(0, 0, 0, .5);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

.small-preview-articles .article {
  display: inline-block;
  width: 100%;
  min-width: 200px;
  max-width: calc((100% - 2rem * 3) / 4);
}

.small-preview-articles .article:not(:last-child) {
  margin-right: 2rem;
}

.small-preview-articles:not(:empty) {
  border-top: 2px solid #313131;
  padding-top: calc(var(--section--margin-top) / 2);
  margin-bottom: 1rem;
}

/* Section smallPreview */

.section--small-preview {
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 3;
}

.section--small-preview .small-preview--content {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.section--small-preview .small-preview--content .img-wrapper {
  width: 100%;
  height: 100%;
  transition: opacity 100ms linear;
}

.section--small-preview .small-preview--content .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section--small-preview .text-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 70% 1rem 1rem 1rem;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: normal;
}

/* Section imgNextToTextPreview */

.section--img-next-to-text-preview {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

@media screen and (min-width: 768px) {
  .img-next-to-text-preview--content.text-pos-left {
    justify-content: flex-start;
  }

  .img-next-to-text-preview--content.text-pos-right {
    justify-content: flex-end;
  }

  .img-next-to-text-preview--content.text-pos-left .img-wrapper {
    padding-left: 6rem;
    right: 0;
    top: 0;
  }

  .img-next-to-text-preview--content.text-pos-right .img-wrapper {
    padding-right: 6rem;
    left: 0;
    top: 0;
  }

  .img-next-to-text-preview--content .img-wrapper {
    position: absolute;
    width: 50%;
    height: 100%;
  }

  .img-next-to-text-preview--content .text-wrapper {
    width: 50%;
    height: max-content;
  }

  .article-preview--read-more {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .article-preview--read-more {
    transition: transform 100ms linear;
  }

  .article-preview--read-more:hover {
    transform: scale(1.1);
  }
}

@media screen and (max-width: 767px) {
  .section--img-next-to-text-preview {
    position: relative;
  }

  .img-next-to-text-preview--content .img-wrapper {
    width: 100%;
    height: 50vh;
  }

  .img-next-to-text-preview--content .text-wrapper {
    margin-top: 3rem;
    width: 100%;
    height: max-content;
    padding: 0 1rem;
  }

  .img-next-to-text-preview--content .text-wrapper > *:not(.text-heading) {
    display: none;
  }

  .img-next-to-text-preview--content {
    flex-direction: column-reverse;
  }

  .section--img-next-to-text-preview .article-headnote {
      position: absolute;
      top: 50vh;
      padding: 0 1rem;
  }
}

.img-next-to-text-preview--content {
  display: flex;
  position: relative;
}

.img-next-to-text-preview--content .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.big-preview .article-headnote {
  margin-top: .5rem;
  margin-bottom: 4rem;
  width: max-content;
  display: flex;
  font-size: .9rem;
}

.big-preview {
  border-top: 2px solid #313131;
}

/* Section bigImgPreview */

.big-img-preview--content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .section--big-img-preview .img-wrapper img {
    height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .section--big-img-preview .article-headnote {
    display: none;
  }

  .section--big-img-preview .img-wrapper img {
    height: 50vh;
  }
}

.section--big-img-preview .img-wrapper {
  width: 100%;
  height: 100%;
  aspect-ratio: 5 / 3;
  transition: opacity 100ms linear;
}

a.big-img-preview--content:hover .img-wrapper, a.small-preview--content:hover .img-wrapper, a.img-with-text-overlay-wrapper:hover img {
  opacity: .7;
}

.section--big-img-preview .text-wrapper, a.small-preview--content .text-wrapper {
  transition: transform 100ms linear;
}

a.big-img-preview--content:hover .text-wrapper, a.small-preview--content:hover .text-wrapper, a.img-with-text-overlay-wrapper:hover .overlay-text {
  transform: scale(1.05);
}

.section--big-img-preview .img-wrapper img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.section--big-img-preview .text-wrapper {
  position: absolute;
  text-align: center;
  font-size: 11vw;
  line-height: 11vw;
  font-weight: 500;
  text-transform: uppercase;
}


/* Contact-Accordion */

.submit-btn {
  max-width: calc(100% - 1rem);
  height: max-content;
  padding: .5rem .5rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  background-color: #313131;
  color: white;
  border: 1px solid transparent;
  margin-right: 1rem;
}

.submit-btn:hover {
  background-color: white;
  color: #313131;
  border: 1px solid #313131;
}

.accordion-input {
  width: 100%;
}

.accordion-input input, .accordion-input textarea, .accordion-input select {
  width: 100%;
  border: 1.5px solid #313131;
  padding: .5rem .5rem;
}

input::placeholder, textarea::placeholder {
  color: #313131;
  opacity: 1;
}

input, textarea, select {
  border-radius: 0;
}

input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: none;
  border-radius: 0;
}

@media screen and (min-width: 768px) {
  .accordion-header {
    font-size: 1.5rem;
  }

  .contact-text {
    font-size: 1.3rem;
    line-height: 1.8rem;
    text-transform: uppercase;
  }

  #general-contact .accordion-body .accordion-body--content, #sales-germany .accordion-body .accordion-body--content, #sales-ch-li .accordion-body .accordion-body--content, #brand-marketing .accordion-body .accordion-body--content {
    display: grid;
    grid-template-columns: repeat(3, calc(100% / 3));
    row-gap: 5rem;
  }

  #sales-international .accordion-body .accordion-body--content {
    display: grid;
    grid-template-columns: repeat(3, calc(100% / 3));
    row-gap: 2rem;
  }

  .accordion-item .accordion-header.active + .accordion-body {
    max-height: 50rem;
  }

  /* .accordion-item:not(:last-child) .accordion-header.active + .accordion-body {
    max-height: 30rem;
  }

  .accordion-item:last-child .accordion-header.active + .accordion-body {
    max-height: 8rem;
  } */

  .accordion-input {
    padding-right: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .accordion-header {
    font-size: 1.2rem;
  }

  .contact-text {
    font-size: 1rem;
    line-height: 1.5rem;
    text-transform: uppercase;
  }

  #general-contact .accordion-body .accordion-body--content, #sales-germany .accordion-body .accordion-body--content, #sales-ch-li .accordion-body .accordion-body--content, #brand-marketing .accordion-body .accordion-body--content {
    display: grid;
    grid-template-columns: 100%;
    row-gap: 1rem;
  }

  #sales-international .accordion-body .accordion-body--content {
    display: grid;
    grid-template-columns: 100%;
    row-gap: 1rem;
  }

  #sales .accordion-body--content {
    display: grid;
    grid-template-columns: 100%;
    row-gap: 1.4rem;
  }

  .accordion-item .accordion-header.active + .accordion-body {
    max-height: 50rem;
  }
}

.accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.accordion-item {
  background-color: white;
  border-top: 1px solid #313131;
  border-right: 1px solid #313131;
  border-left: 1px solid #313131;
}

.accordion-item:last-child {
  border-bottom: 1px solid #313131;
}

.accordion-header {
  text-transform: uppercase;
  cursor: pointer;
}

.accordion-header-title {
  padding: .5rem .75rem;
}

.accordion-body {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  text-transform: none;
}

.accordion-item:not(:last-child) .accordion-body {
  transition: max-height 200ms linear;
}

.accordion-item:last-child .accordion-body {
  transition: max-height 200ms linear;
}

.accordion-body--content {
  padding: .5rem .75rem;
}

.accordion-header.active + .accordion-body {
  margin-top: 1.5rem;
  padding-bottom: 2rem;
}

/* .accordion-header.active {
  border-bottom: 1px solid #313131;
  background-color: #313131;
  color: white;
} */

.accordion-header:hover, .input-wrapper select:hover {
  background-color: #313131;
  color: white;
}

.input-wrapper select:hover {
  background-image: url('/assets/icons/supergrid-icons/arrow-down-light.svg');
  cursor: pointer;
}

a {
  text-decoration: underline;
}

.input-wrapper {
  position: relative;
}

.input-wrapper input:not(:placeholder-shown) + label, .input-wrapper textarea:not(:placeholder-shown) + label, .input-wrapper select:not(.placeholder) + label, .input-wrapper label:not(.placeholder) + label.label-for {
  background: #fff;
  transform: translate(0, -60%);
  opacity: 1;
  z-index: 1;
}

.input-wrapper select {
  -moz-appearance:none; /* Firefox */
  -webkit-appearance:none; /* Safari and Chrome */
  appearance:none;
  background-color: white;

  background-image: url('/assets/icons/supergrid-icons/arrow-down-dark.svg');
  background-repeat: no-repeat;
  background-size: auto 40%;
  background-position: calc(100% - .8rem) center;
}

.input-wrapper label:not(:first-child) {
  padding: .2rem .5rem;
  left: 8px;
  position: absolute;
  top: 0;
  /* box-shadow: 0px 7px 15px -3px rgba(0,0,0,0.1); */

  z-index: -1;
  opacity: 0;
  transition: all 200ms;
}

.purple-colorized {
  color: #A299FF;
  font-size: 90%;
}

/* Animation */

.loading-animation {
  display: flex;
  gap: 1rem;
  /* width: 4rem;
  height: 4rem;
  border: 1rem solid #DDDDDD;
  border-top-color: #313131;
  border-radius: 50%;
  background-color: transparent;
  box-shadow: 0 0 10px rgb(230,230,230);
  animation: spin 700ms linear infinite; */
}

.loading-animation .dot {
  width: .8rem;
  height: .8rem;
  border-radius: 50%;
  background-color: #313131;
  margin: 3rem 0;
}

.loading-animation .dot:nth-child(1) {
  animation: dot-pulse 1s 0s ease infinite;
}

.loading-animation .dot:nth-child(2) {
  animation: dot-pulse 1s .1s ease infinite;
}

.loading-animation .dot:nth-child(3) {
  animation: dot-pulse 1s .2s ease infinite;
}

@keyframes dot-pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: .25;
    transform: scale(.75);
  }
}

/* registerForm */

#register-form select#declared-profession {
  width: 100%;
  height: 100%;
  padding: .5rem;
  border: 1.5px solid #313131;
}

@media screen and (min-width: 768px) {
  #register-form {
    gap: 10rem;
    flex-direction: row;
  }

  #register-form > div:nth-of-type(1), #register-form > div:nth-of-type(2) {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  #register-form {
    flex-direction: column;
    gap: 1rem;
  }

  #register-form > div:nth-of-type(1), #register-form > div:nth-of-type(2) {
    width: 100%;
  }
}
.section--register-form {
  margin-top: 0 !important;
  border-top: 2px solid currentColor;
}

.register-form--content {
  width: 100%;
  padding-top: var(--section--margin-top);
}

#register-form {
  width: 100%;
  display: flex;
}

#register-form > div:nth-of-type(1), #register-form > div:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
}

#register-form .form-input {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#register-form label[for="official-document"]:hover {
  cursor: pointer;
  color: white;
  background-color: #313131;
}

#register-form input, #register-form label[for="official-document"] {
  display: block;
  width: 100%;
  border: 1.5px solid #313131;
  padding: .5rem .5rem;
  border-radius: 0;
}

#register-form input[type="file"] {
  position: fixed;
  top: -9999px;
  visibility: hidden;
}

#register-form .form-column-heading {
  font-size: 1.3rem;
}

#register-form input::placeholder {
  color: #313131;
  opacity: 1;
}

#register-form input:focus-visible{
  outline: none;
  border-radius: 0;
}

#register-form button[type="submit"]:hover, .section--contact-accordion button[type="submit"]:hover {
  transform: scale(1.05);
}

/* update-profile-form */

@media screen and (min-width: 768px) {
  .update-profile-form--content form {
    gap: 10rem;
    flex-direction: row;
  }
}

@media screen and (max-width: 767px) {
  .update-profile-form--content form {
    flex-direction: column;
    gap: 1rem;
  }

}
.update-profile-form--content {
  width: 100%;
}

.update-profile-form--content form {
  width: 100%;
  display: flex;
}

#update-profile-form .form-input {
  width: 100%;
  height: max-content;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: max-content;
  gap: 1.5rem;
}

.input-wrapper {
  height: max-content;
}

.input-wrapper label {
  background-color: #EBEBEB;
}

#update-profile-form input, .input-wrapper input, .input-wrapper textarea {
  display: block;
  width: 100%;
  border: 1.5px solid #313131;
  padding: .5rem .5rem;
  border-radius: 0;
  background-color: transparent;
}

#update-profile-form .form-column-heading {
  font-size: 1.3rem;
}

#update-profile-form input::placeholder, .input-wrapper input::placeholder, .input-wrapper textarea::placeholder {
  color: #313131;
  opacity: 1;
}

#update-profile-form input:focus-visible, .input-wrapper input:focus-visible, .input-wrapper textarea:focus-visible {
  outline: none;
  border-radius: 0;
}

#update-profile-form button[type="submit"]:hover, .section--contact-accordion button[type="submit"]:hover {
  transform: scale(1.05);
}

/* Buttons */

/* .project.customer-view .project-title--wrapper button, .project .project-delete-button--wrapper button, #delete-pop-up button, #configurator-pop-up button[name="save-project"] {
  width: max-content;
  border: 2px solid #313131;
  padding: .1rem .5rem;
  font-size: 1rem;
} */

/*  */

.linear-gradient {
  background-attachment: fixed;
}

/*  */
form#footer-newsletter input#company, form#contact-newletter input#company, #general-contact form input#company, #sales-germany form input#company, #sales-ch-li form input#company, #sales-international form input#company, #brand-marketing form input#company, #sales-international-contact-solo form input#company {
  display: none;
}

/* newletter */
.newsletter-opt-in {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .8rem;
  max-width: 100%;
}

.newsletter-opt-in p {
  width: 100%;
}

.newsletter-opt-in a {
  display: inline-block;
  text-decoration: underline;
}

.newsletter-opt-in input {
  margin-top: .25rem;
}

#footer-newsletter .newsletter-opt-in {
  width: 100%;
  grid-column: 1 / -1;
  font-size: .7rem;
}

#contact-newletter, #footer-newsletter {
  display: grid;
  row-gap: 1rem;
}

@media screen and (min-width: 768px) {
  #contact-newletter{
    grid-template-columns: 1fr max-content;
  }

  #footer-newsletter {
    display: flex;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  #contact-newletter, #footer-newsletter {
    grid-template-columns: 100%;
  }
}

header #menu-mobile nav {
  font-size: 2rem;
  padding-bottom: 5rem;
}