/** Shopify CDN: Minification failed

Line 173:4 Unexpected "{"

**/
/*  DEV. NOTES
    All css files combined for the sections in use so they easily can be reused across sections when needed
*/

/* section-image-banner.css */

.banner {
    display: flex;
    position: relative;
    flex-direction: column;
    z-index: auto;
    isolation: isolate;
  }
  
  .banner__box {
    text-align: center;
  }
  
  /* Needed for gradient continuity with or without animation, the transform scopes the gradient to its container which happens already when animation are turned on */
  .banner__box.gradient {
    transform: perspective(0);
  }
  
  @media only screen and (max-width: 749px) {
    .banner--content-align-mobile-right .banner__box {
      text-align: right;
    }
  
    .banner--content-align-mobile-left .banner__box {
      text-align: left;
    }
  }
  
  @media only screen and (min-width: 750px) {
    .banner--content-align-right .banner__box {
      text-align: right;
    }
  
    .banner--content-align-left .banner__box {
      text-align: left;
    }
  
    .banner--content-align-left.banner--desktop-transparent .banner__box,
    .banner--content-align-right.banner--desktop-transparent .banner__box,
    .banner--medium.banner--desktop-transparent .banner__box {
      max-width: 68rem;
    }
  }
  
  .banner__media.animate--zoom-in {
    clip-path: inset(0px);
  }
  
  .banner__media.animate--zoom-in > img:not(.zoom):not(.deferred-media__poster-button),
  .banner__media.animate--zoom-in > svg:not(.zoom):not(.deferred-media__poster-button) {
    position: fixed;
    height: 100vh;
  }
  
  @media screen and (max-width: 749px) {
    .banner--mini.banner--mobile-bottom:not(.banner--adapt) .banner__media,
    .banner--mini.banner--stacked:not(.banner--mobile-bottom):not(.banner--adapt) > .banner__media {
      height: 20rem;
    }
    .banner--small.banner--mobile-bottom:not(.banner--adapt) .banner__media,
    .banner--small.banner--stacked:not(.banner--mobile-bottom):not(.banner--adapt) > .banner__media {
      height: 28rem;
    }
  
    .banner--medium.banner--mobile-bottom:not(.banner--adapt) .banner__media,
    .banner--medium.banner--stacked:not(.banner--mobile-bottom):not(.banner--adapt) > .banner__media {
      height: 34rem;
    }
  
    .banner--large.banner--mobile-bottom:not(.banner--adapt) .banner__media,
    .banner--large.banner--stacked:not(.banner--mobile-bottom):not(.banner--adapt) > .banner__media {
      /* min-height: calc(70vh - var(--header-height) - 4rem); */
      min-height: 34rem;
    }
  
    .banner--mini:not(.banner--mobile-bottom):not(.banner--adapt) .banner__content {
      min-height: 25rem;
    }
  
    .banner--small:not(.banner--mobile-bottom):not(.banner--adapt) .banner__content {
      min-height: 28rem;
    }
  
    .banner--medium:not(.banner--mobile-bottom):not(.banner--adapt) .banner__content {
      min-height: 34rem;
    }
  
    .banner--large:not(.banner--mobile-bottom):not(.banner--adapt) .banner__content {
      /* min-height: calc(70vh - var(--header-height) - 4rem); */
      min-height: 34rem;
    }
  }
  
  @media screen and (min-width: 750px) {
    .banner {
      flex-direction: row;
    }
  
    .banner--mini:not(.banner--adapt) {
      min-height: 30rem;
    }
  
    .banner--small:not(.banner--adapt) {
      min-height: 40rem;
    }
  
    .banner--medium:not(.banner--adapt) {
      min-height: 45rem;
    }
  
    .banner--large:not(.banner--adapt) {
      min-height: 55rem;
    }
  
    .banner__content.banner__content--top-left {
      align-items: flex-start;
      justify-content: flex-start;
    }
  
    .banner__content.banner__content--top-center {
      align-items: flex-start;
      justify-content: center;
    }
  
    .banner__content.banner__content--top-right {
      align-items: flex-start;
      justify-content: flex-end;
    }
  
    .banner__content.banner__content--middle-left {
      align-items: center;
      justify-content: flex-start;
    }
  
    .banner__content.banner__content--middle-center {
      align-items: center;
      justify-content: center;
    }
  
    .banner__content.banner__content--middle-right {
      align-items: center;
      justify-content: flex-end;
    }
  
    .banner__content.banner__content--bottom-left {
      align-items: flex-end;
      justify-content: flex-start;
    }
  
    .banner__content.banner__content--bottom-center {
      align-items: flex-end;
      justify-content: center;
    }
  
    .banner__content.banner__content--bottom-right {
      align-items: flex-end;
      justify-content: flex-end;
    }
  }

  @media screen and (min-width: 1024px) {
    .banner--large:not(.banner--adapt),
    {
      min-height: 35rem;
    }
  }

  @media screen and (min-width: 1440px) {
    .banner--large:not(.banner--adapt),
    .banner--mini:not(.banner--adapt) {
      min-height: 45rem;
    }
  }

  @media screen and (min-width: 1680px) {
    .banner--large:not(.banner--adapt) {
      min-height: 55rem;
    }
  }

  @media screen and (min-width: 1920px) {
    .banner--large:not(.banner--adapt) {
      min-height: 60rem;
    }
  }

  @media screen and (min-width: 3840px) {
    .banner--large:not(.banner--adapt) {
      min-height: 100rem;
    }
  }
  
  @media screen and (max-width: 749px) {
    .banner:not(.banner--stacked) {
      flex-direction: row;
      flex-wrap: wrap;
    }
  
    .banner--stacked {
      height: auto;
    }
  
    .banner--stacked .banner__media {
      flex-direction: column;
    }
  }
  
  .banner__media {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
  
  .banner__media-half {
    width: 50%;
  }
  
  .banner__media-half + .banner__media-half {
    right: 0;
    left: auto;
  }
  
  .banner__media-half.animate--fixed:first-child > img,
  .banner__media-half.animate--zoom-in:first-child > img {
    width: 50%;
  }
  
  .banner__media-half.animate--fixed:nth-child(2) > img,
  .banner__media-half.animate--zoom-in:nth-child(2) > img {
    left: 50%;
    width: 50%;
  }
  
  @media screen and (max-width: 749px) {
    .banner--stacked .animate--fixed:first-child > img,
    .banner--stacked .animate--zoom-in:first-child > img {
      width: 100%;
    }
  
    .banner--stacked .banner__media-half.animate--fixed:nth-child(2) > img,
    .banner--stacked .banner__media-half.animate--zoom-in:nth-child(2) > img {
      left: 0;
      width: 100%;
    }
  
    .banner--stacked .banner__media-half {
      width: 100%;
    }
  
    .banner--stacked .banner__media-half + .banner__media-half {
      order: 1;
    }
  }
  
  @media screen and (min-width: 750px) {
    .banner__media {
      height: 100%;
    }
  }
  
  .banner--adapt,
  .banner--adapt_image.banner--mobile-bottom .banner__media:not(.placeholder) {
    height: auto;
  }
  
  @media screen and (max-width: 749px) {
    .banner--mobile-bottom .banner__media,
    .banner--stacked:not(.banner--mobile-bottom) .banner__media {
      position: relative;
    }
  
    .banner--stacked.banner--adapt .banner__content {
      height: auto;
    }
  
    .banner:not(.banner--mobile-bottom):not(.email-signup-banner) .banner__box {
      background: transparent;
    }
  
    .banner:not(.banner--mobile-bottom) .banner__box {
      border: none;
      border-radius: 0;
      box-shadow: none;
    }
  
    .banner:not(.banner--mobile-bottom) .button--secondary {
      --alpha-button-background: 0;
    }
  
    .banner--stacked:not(.banner--mobile-bottom):not(.banner--adapt) .banner__content {
      position: absolute;
      height: auto;
    }
  
    .banner--stacked.banner--adapt:not(.banner--mobile-bottom) .banner__content {
      max-height: 100%;
      overflow: hidden;
      position: absolute;
    }
  
    .banner--stacked:not(.banner--adapt) .banner__media {
      position: relative;
    }
  
    .banner::before {
      display: none !important;
    }
  
    .banner--stacked .banner__media-image-half {
      width: 100%;
    }
  }
  
  .banner__content {
    padding: 0;
    display: flex;
    position: relative;
    width: 100%;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  
  @media screen and (min-width: 750px) {
    .banner__content {
      padding: 5rem;
    }
  
    .banner__content--top-left {
      align-items: flex-start;
      justify-content: flex-start;
    }
  
    .banner__content--top-center {
      align-items: flex-start;
      justify-content: center;
    }
  
    .banner__content--top-right {
      align-items: flex-start;
      justify-content: flex-end;
    }
  
    .banner__content--middle-left {
      align-items: center;
      justify-content: flex-start;
    }
  
    .banner__content--middle-center {
      align-items: center;
      justify-content: center;
    }
  
    .banner__content--middle-right {
      align-items: center;
      justify-content: flex-end;
    }
  
    .banner__content--bottom-left {
      align-items: flex-end;
      justify-content: flex-start;
    }
  
    .banner__content--bottom-center {
      align-items: flex-end;
      justify-content: center;
    }
  
    .banner__content--bottom-right {
      align-items: flex-end;
      justify-content: flex-end;
    }
  }
  
  @media screen and (max-width: 749px) {
    .banner--mobile-bottom:not(.banner--stacked) .banner__content {
      order: 2;
    }
  
    .banner:not(.banner--mobile-bottom) .field__input,
    .banner--mobile-bottom:not(.banner--stacked) .banner__box.color-scheme-1 {
      background: transparent;
    }
  }
  
  .banner__box {
    padding: 4rem 1.5rem;
    position: relative;
    height: fit-content;
    align-items: center;
    text-align: center;
    width: 100%;
    word-wrap: break-word;
    z-index: 1;
  }
  
  .banner--mobile-bottom .banner__box {
    padding: 4rem 3.5rem;
  }
  
  @media screen and (min-width: 750px) {
    .banner__box {
      padding: 4rem 3.5rem;
    }
  
    .banner--desktop-transparent .banner__box {
      padding: 4rem 0;
      background: transparent;
      max-width: 89rem;
      border: none;
      border-radius: 0;
      box-shadow: none;
    }
  
    .banner--desktop-transparent .button--secondary {
      --alpha-button-background: 0;
    }
  
    .banner--desktop-transparent .content-container:after {
      display: none;
    }
  }
  
  @media screen and (max-width: 749px) {
    .banner--mobile-bottom::after,
    .banner--mobile-bottom .banner__media::after {
      display: none;
    }
  }
  
  .banner::after,
  .banner__media::after {
    content: '';
    position: absolute;
    top: 0;
    background: #000000;
    opacity: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
  }
  
  .banner--overlay-left::after,
  .banner__media--overlay-left::after {
    content: '';
    position: absolute;
    top: 0;
    background: #000000;
    opacity: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
  }
  
  @media screen and (min-width: 990px) {
    .banner--overlay-left::after,
    .banner__media--overlay-left::after {
      content: '';
      position: absolute;
      top: 0;
      /* background: linear-gradient(to left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.20) 20%, rgba(0,0,0,0.50) 40%, rgba(0,0,0,0.70) 50%, rgba(0,0,0,0.90) 100%); */
      /* background: linear-gradient(to left, #0000, #0003, #00000080 60%, #000000b3 100%, #000000e6); */
      background: linear-gradient(to left, #0000, #0003, #00000080 40%, #000000d5 100%);
      opacity: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
    }
  }
  
  .banner__box > * + .banner__text {
    margin-top: 1.5rem;
  }
  
  @media screen and (min-width: 750px) {
    .banner__box > * + .banner__text {
      margin-top: 2rem;
    }
  }
  
  .banner__box > * + * {
    margin-top: 1rem;
  }
  
  .banner__box > *:first-child {
    margin-top: 0;
  }
  
  @media screen and (max-width: 749px) {
    .banner--stacked .banner__box {
      width: 100%;
    }
  }
  
  @media screen and (min-width: 750px) {
    .banner__box {
      width: auto;
      max-width: 71rem;
      min-width: 45rem;
    }
  }
  
  @media screen and (min-width: 1400px) {
    .banner__box {
      max-width: 90rem;
    }
  }
  
  .banner__heading {
    margin-bottom: 0;
  }
  
  .banner__box .banner__heading + * {
    margin-top: .5rem;
  }
  
  .banner__buttons {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1rem;
    row-gap: 1.5rem;
    max-width: 45rem;
    word-break: break-word;
  }
  
  @media screen and (max-width: 749px) {
    .banner--content-align-mobile-right .banner__buttons--multiple {
      justify-content: flex-end;
    }
  
    .banner--content-align-mobile-center .banner__buttons--multiple > * {
      flex-grow: 1;
      min-width: 22rem;
    }
  }
  
  @media screen and (min-width: 750px) {
    .banner--content-align-center .banner__buttons--multiple > * {
      flex-grow: 1;
      min-width: 22rem;
    }
  
    .banner--content-align-right .banner__buttons--multiple {
      justify-content: flex-end;
    }
  }
  
  .banner__box > * + .banner__buttons {
    margin-top: 2rem;
  }
  
  @media screen and (max-width: 749px) {
    .banner:not(.slideshow) .rte a,
    .banner:not(.slideshow) .inline-richtext a:hover,
    .banner:not(.slideshow) .rte a:hover {
      color: currentColor;
    }
  }
  
  @media screen and (min-width: 750px) {
    .banner--desktop-transparent .rte a,
    .banner--desktop-transparent .inline-richtext a:hover,
    .banner--desktop-transparent .rte a:hover {
      color: currentColor;
    }
  }
  
  .c-collection-banner .banner__content {
    padding: 2.5rem;
  }
  
  @media screen and (max-width: 749px) {
    .c-collection-banner .banner__content {
      padding: 0;
    }
  
    .c-collection-banner .banner__box {
      padding: 2.5rem 1.5rem;
    }
  }
  
  .c-collection-banner .banner__text {
    font-size: 1.4rem;
  }
  
  .collection-banner-slideout-viltkottguide {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .collection-banner-slideout-viltkottguide svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .collection-banner-slideout-viltkottguide span {
    font-size: 1.4rem;
  }
  
  .c-image-banner-newsletter .banner__text {
    margin-top: 1rem;
  }
  
  .c-image-banner-newsletter .newsletter-form {
    margin: 2rem 0 0;
  }
  
  .c-image-banner-newsletter .newsletter-form__field-wrapper,
  .c-image-banner-newsletter .newsletter-form {
    max-width: 53.5rem;
    width: 100%;
  }
  
  .c-image-banner-newsletter .newsletter-form__button .icon {
    color: var(--gl-orange);
    stroke: currentColor;
  }
  
  .c-image-banner-newsletter .newsletter-form__message--success {
    margin-top: 0;
  }
  
  .c-image-banner-newsletter .form__message {
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--gl-white);
    font-weight: 500;
  }
  .c-image-banner-newsletter .icon-success {
    width: 2rem;
    height: 2rem;
    display: none;
  }
  
  .c-image-banner-newsletter .icon-success path {
    fill: var(--gl-green);
  }
  
  .c-image-banner-newsletter .newsletter-form__field-wrapper .field label,
  .c-image-banner-newsletter .newsletter-form__field-wrapper .field input {
    color: var(--gl-black);
  }
  
  .c-image-banner-newsletter .newsletter-form__field-wrapper .field__input {
    background-color: var(--gl-white);
  }
  
  .c-image-banner-newsletter .c-field-checkbox {
    margin-bottom: 2rem;
  }
  
  .c-image-banner-newsletter .field__checkbox + .checkbox-label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: inline-block;
    user-select: none;
    font-size: 1.3rem;
  }

  .c-image-banner-newsletter .c-field {
    margin-bottom: 2rem;
  }

  .c-image-banner-newsletter .c-field,
  .c-image-banner-newsletter .c-field .link {
    font-size: 1.3rem;
  }

  .c-image-banner-newsletter .c-field .c-field-label {
    opacity: .7;
  }
  
  .c-image-banner-newsletter .c-field-checkbox .link {
    font-size: 1.3rem;
  }
  
  .c-image-banner-newsletter .newsletter-form .field__checkbox {
    display: none;
  }
  
  .c-image-banner-newsletter .field__checkbox + .checkbox-label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--gl-grey);
    border-radius: 4px;
    background-color: var(--gl-white);
  }
  
  .c-image-banner-newsletter .field__checkbox:checked + .checkbox-label:after {
    content: '✕';
    position: absolute;
    left: 1.5px;
    top: -1px;
    font-size: 25px;
    color: var(--gl-black);
    line-height: 1;
  }

/* component-accordion.css */

.accordion summary {
    display: flex;
    position: relative;
    line-height: 1;
    padding: 1.5rem 0;
  }
  
  .accordion .summary__title {
    display: flex;
    flex: 1;
  }
  
  .accordion .summary__title + .icon-caret {
    height: calc(var(--font-heading-scale) * 1rem);
  }
  
  .accordion + .accordion {
    margin-top: 0;
    border-top: none;
  }
  
  .accordion:not(.product__accordion) {
    margin-top: 0rem;
    margin-bottom: 0;
    border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
    border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  }

  .accordion.accordion--footer {
    border-top: none;
    /* border-bottom: none; */
  }

  .accordion--footer summary {
    align-items: center;
    gap: 1rem;
  }
  .accordion--footer summary .icon-caret {
    position: relative;
    left: unset;
    top: unset;
    right: unset;
    bottom: unset;
  }

  .accordion__title {
    display: inline-block;
    max-width: calc(100% - 6rem);
    min-height: 1.6rem;
    margin: 0;
    word-break: break-word;
  }
  
  .accordion .icon-accordion {
    align-self: center;
    fill: rgb(var(--color-foreground));
    height: calc(var(--font-heading-scale) * 2rem);
    margin-right: calc(var(--font-heading-scale) * 1rem);
    width: calc(var(--font-heading-scale) * 2rem);
  }
  
  .accordion details[open] > summary .icon-caret {
    transform: rotate(180deg);
  }
  
  .accordion__content {
    margin-bottom: 1.5rem;
    word-break: break-word;
    overflow-x: auto;
    padding: 0 0.6rem;
  }
  
  .accordion__content img {
    max-width: 100%;
  }
  
  .c-accordion-column .c-collapsible-content {
    margin-top: 2rem;
  }
  
  .c-accordion-column .accordion__content {
    padding: 0;
  }

  /* collapsible-content.css */

  .collapsible-content {
    position: relative;
    z-index: 0;
  }
  
  .collapsible-section-layout {
    padding-bottom: 5rem;
    padding-top: 5rem;
  }
  
  @media screen and (min-width: 750px) {
    .collapsible-section-layout {
      padding-bottom: 7rem;
      padding-top: 7rem;
    }
  }
  
  /* Needed for gradient continuity with or without animation so that transparent PNG images come up as we would expect */
  .collapsible-content__media {
    background: transparent;
  }
  
  .collapsible-content__media--small {
    height: 19.4rem;
  }
  
  .collapsible-content__media--large {
    height: 43.5rem;
  }
  
  @media screen and (min-width: 750px) {
    .collapsible-content__media--small {
      height: 31.4rem;
    }
  
    .collapsible-content__media--large {
      height: 69.5rem;
    }
  }
  
  @media screen and (min-width: 750px) {
    .collapsible-content__grid--reverse {
      flex-direction: row-reverse;
    }
  }
  
  .collapsible-content-wrapper-narrow {
    margin: 0 auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    max-width: 73.4rem;
  }
  
  .collapsible-content__header {
    word-break: break-word;
  }
  
  .collapsible-content__heading {
    margin-bottom: 2rem;
    margin-top: 0;
  }
  
  @media screen and (min-width: 750px) {
    .collapsible-content__heading {
      margin-bottom: 3rem;
    }
  }
  
  .collapsible-none-layout .accordion + .accordion {
    border-top: 0;
  }
  
  .collapsible-row-layout .accordion:not(:first-child):not(.color-scheme-1) {
    margin-top: 1rem;
  }
  
  .caption-with-letter-spacing + h2 {
    margin-top: 1rem;
  }
  
  @media screen and (min-width: 750px) {
    .collapsible-content .accordion {
      margin-top: 0;
    }
  }
  
  .collapsible-row-layout .accordion {
    border: var(--text-boxes-border-width) solid rgba(var(--color-foreground), var(--text-boxes-border-opacity));
    margin-bottom: 1.5rem;
    /* Needed for gradient continuity with or without animation, the transform scopes the gradient to its container which happens already when animation are turned on */
    transform: perspective(0);
  }
  
  .collapsible-row-layout .accordion summary,
  .collapsible-row-layout .accordion .accordion__content {
    padding: 1.5rem;
  }
  
  .collapsible-row-layout .accordion .accordion__content {
    padding-top: 0;
  }
  
  .collapsible-content summary:hover {
    background: rgba(var(--color-foreground), 0.04);
  }
  
  .collapsible-content summary:hover .accordion__title {
    text-decoration: underline;
    text-underline-offset: 0.3rem;
  }
  
  /* check for flexbox gap in older Safari versions */
  @supports not (inset: 10px) {
    @media screen and (min-width: 750px) {
      .collapsible-content__grid:not(.collapsible-content__grid--reverse) .grid__item:last-child,
      .collapsible-content__grid--reverse .collapsible-content__grid-item {
        padding-left: 5rem;
        padding-right: 0;
      }
    }
  
    @media screen and (min-width: 990px) {
      .collapsible-content__grid:not(.collapsible-content__grid--reverse) .grid__item:last-child,
      .collapsible-content__grid--reverse .collapsible-content__grid-item {
        padding-left: 7rem;
      }
    }
  }
  
  .collapsible-content__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  
  .collapsible-content__header h2 {
    margin: 0;
  }