body.noScroll {
  overflow: hidden;
  position: fixed;
  inset: 0;
}

@keyframes dot-animation {
  0% {
    background-color: rgba(29, 29, 27, 0.4);
  }
  50% {
    background-color: rgba(29, 29, 27, 0.7);
  }
  100% {
    background-color: #1d1d1b;
  }
}
.batcom--loading {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
  background-color: grey;
  animation: dot-animation 1.2s infinite;
  animation-delay: 0.8s;
  border-radius: 50%;
}
.batcom--loading::before, .batcom--loading::after {
  border-radius: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #1d1d1b;
  animation: dot-animation 1.2s infinite;
}
.batcom--loading::before {
  animation-delay: 0.4s;
  left: -20px;
}
.batcom--loading::after {
  animation-delay: 1.2s;
  right: -20px;
}

.batcom__loading-container {
  position: relative;
}
.batcom__loading-container .batcom--loading {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.batcom__loading-container.loading {
  pointer-events: none;
  opacity: 0.3;
}
.batcom__loading-container.loading .batcom--loading {
  display: inline-block;
}

.batcom-overlay__shorthand {
  position: relative;
  z-index: 0;
}

/* doc
---
title: z-index
name: nn-z-index
category: functions
---

Because z-indices can get tricky we manage them in the theme.scss globally.

Always use this mixin to set set a z-index.

Read the Best Practice to get an full documentation:
https://projects.netcentric.biz/wiki/display/FRONTEND/z-index+management+with+SCSS

## Live Template abbreviations
---
-z

## Parameters
---
@parameter $element = Name of the element (normally this will be the module name for the main stack)
@parameter $list = Name of the list (default $z-indices). Must be only set for stack context
@parameter $min = Set a minimum z-index which will be added to the list.

## Dependencies
---
$z-indices variable in the theme.scss

## Example
---

```html_example

// In the SASS theme file

$z-indices: slider, modal, dialog, navigation;

// In the SASS module file

.modal {
    &__base {
        position: absolute;
        z-index: nn-z-index(modal);
    }
}
```

## Source
---
http://www.smashingmagazine.com/2014/06/12/sassy-z-index-management-for-complex-layouts/
*/
/*
* Mixin used to create the arrows for the menu items.
*/
/* doc
---
title: Clearfix
name: clearfix
category: mixins
---

Clears after floating element

Use this mixin only inside media queries where you can't use the
abstract/extends/utils/_clearfix version, which adds less code to css

## Live Template abbreviations
---

## Example
---

```html_example
@include clearfix;
```

## Source
---
<https://css-tricks.com/snippets/css/clear-fix/>
*/
/*
lt0 = (default) 1 column at a 100%
lt1 = 2 columns (50%, 50%)
lt2 = 2 columns (33%, 66%)
lt3 = 2 columns (66%, 33%)
lt4 = 3 columns (33%, 33%, 33%)
lt5 = 4 columns (25%, 25%, 25%, 25%)

## Parameters
@parameter $layout-type = lt0 | lt1 | lt2 | lt3 | lt4 | lt5
*/
/* doc
---
title: Component Normalize / item Normalize
name: font
category: mixins
---
Use this mixing to regular AEM wrappers and normalization.
*/
/* stylelint-disable max-nesting-depth */
/* stylelint-disable media-feature-name-no-vendor-prefix */
/* doc
---
title: Font
name: font
category: mixins
---

Use this mixing to add fonts and normalization.

Documentation:

- https://projects.netcentric.biz/wiki/display/FRONTEND/CSS+-+Font+Normalization
- https://projects.netcentric.biz/wiki/display/FRONTEND/SCSS+-+Font+management

## Parameters
---
@param $font-type
@param $normalize

## Dependencies
---
/abstract/functions/nn-px-to-em
/abstract/functions/nn-px-to-rem
/abstract/functions/nn-px-to-unitless
/abstract/mixins/font-icon
*/
/*
* This mixin is used to set styles for elements according to typography in their respective viewport.
* It uses the variables defined in the typography
* @include typography("button") will enable the font size and lineheight according to typography button tokens in all the 3 viewports
*/
/*
* This mixin is used to style headings of any level in a responsive way.
* It uses the variables defined in the typography map to style the headings so
* the levels it can effectively style are 1 to 6.
* It also styles the use of spans and links inside the headings.
*
* @param {number} $level - The heading level to style.
* @param {string} $weight - The font weight to use for the heading. By default it uses the weight defined in the typography map.
*/
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*
* This mixin is used to set styles for name, price, button label elements in:
* batcom-algolia-bw-productsearch.clientlibs.scss
* batcom-bff-dynamiclist.clientlibs.scss
* product-list.clientlibs.scss
*/
/**
* Reverse container
*/
/* doc
---
title: Visibility
name: visibility
category: mixins
---

Mixin to add visibility to control to elements

---

## Example
---

```html_example
.container {
  &__base {
    @include visible;

    @include breakpoint($b-01) {
      @include hidden;
    }
  }
}
```
*/
body .batcom-faq .cmp-accordion {
  width: 500px;
  max-width: 100%;
  margin: auto;
  border-top: 1px solid var(--batcom-color-palette-surface-neutral-option-4, #dedede);
}
body .batcom-faq .cmp-accordion__title {
  font-size: 16px;
  line-height: 22px;
}
body .batcom-faq .cmp-accordion__button {
  padding: var(--batcom-typography-body-base-size) 0;
  margin-bottom: 0;
  border-radius: 0;
  background-color: transparent;
}
body .batcom-faq .cmp-accordion__item {
  border: 1px solid var(--batcom-color-palette-surface-neutral-option-4, #dedede);
  border-radius: 0;
  border-width: 0 0 1px;
}
body .batcom-faq .cmp-accordion__panel {
  padding: var(--batcom-typography-body-base-size) 0;
}

body .cmp-batcom-agegate .batcom-agegate__content-data {
  background-color: var(--batcom-color-palette-surface-neutral, #fff);
}

body .batcom-bff-minibasket__empty .cmp-button {
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
  font-family: var(--batcom-typography-button-family), sans-serif;
  letter-spacing: 0.063rem;
  font-weight: var(--batcom-typography-button-weight, 400);
  text-transform: uppercase;
  padding: 10px 20px;
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-minibasket__empty .cmp-button {
    font-size: var(--batcom-typography-button-size-tablet);
    line-height: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-bff-minibasket__empty .cmp-button {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-bff-minibasket__empty .cmp-button:focus {
  outline: none;
}
body .batcom-bff-minibasket__empty .cmp-button:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
body .batcom-bff-minibasket__empty-hl {
  font-size: 1.25rem;
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
}
body .batcom-bff-minibasket__empty-label {
  font-size: 0.875rem;
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
}
body .batcom-bff-minibasket__bag-value {
  font-weight: 325;
  font-size: 0.75rem;
  line-height: 1.375rem;
}
body .batcom-bff-minibasket__title {
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
  font-size: 1.375rem;
  line-height: 1.5rem;
  font-weight: var(--batcom-typography-weight-normal, 500);
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-minibasket__title {
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}
body .batcom-bff-minibasket__total-label {
  font-weight: 325;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
}
body .batcom-bff-minibasket__total-amount,
body .batcom-bff-minibasket__total .batcom-bff-minibasket__price-suffix-text {
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
  font-weight: var(--batcom-typography-weight-normal, 500);
  font-size: 1.0625rem;
  line-height: 1.25rem;
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-minibasket__total-amount,
  body .batcom-bff-minibasket__total .batcom-bff-minibasket__price-suffix-text {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
}
body .batcom-bff-minibasket__total-items {
  font-weight: 325;
  font-size: 1rem;
  line-height: 1.5625rem;
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
}
body .batcom-bff-minibasket__product-title, body .batcom-bff-minibasket__product-order, body .batcom-bff-minibasket__product-total-price, body .batcom-bff-minibasket__product-total-price + .batcom-bff-minibasket__price-suffix-text {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
}
body .batcom-bff-minibasket__product-level {
  font-weight: 325;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
}
body .batcom-bff-minibasket__actions .cmp-button {
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
  font-family: var(--batcom-typography-button-family), sans-serif;
  letter-spacing: 0.063rem;
  font-weight: var(--batcom-typography-button-weight, 400);
  text-transform: uppercase;
  padding: 10px 20px;
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-minibasket__actions .cmp-button {
    font-size: var(--batcom-typography-button-size-tablet);
    line-height: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-bff-minibasket__actions .cmp-button {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-bff-minibasket__actions .cmp-button:focus {
  outline: none;
}
body .batcom-bff-minibasket__actions .cmp-button:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}

body .cmp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--batcom-layout-spacing-s, 12px);
  align-items: baseline;
}
body .cmp-breadcrumb__title {
  font-size: 12px;
  line-height: 18px;
  padding-bottom: var(--batcom-layout-spacing-xs, 8px);
}
body .cmp-breadcrumb__item {
  vertical-align: baseline;
}
body .cmp-breadcrumb__item::after {
  top: 4px;
}
body .cmp-breadcrumb__item span, body .cmp-breadcrumb__item--link {
  text-transform: uppercase;
}
body .cmp-breadcrumb__item-link, body .cmp-breadcrumb__item--active {
  font-size: 14px;
  line-height: 18px;
  vertical-align: baseline;
}

.extra-image-component-svg-icon-size-fix-48 {
  width: 48px;
  height: 48px;
  margin: 0 auto;
}

body .batcom-minibasket__empty .cmp-button {
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
  font-family: var(--batcom-typography-button-family), sans-serif;
  letter-spacing: 0.063rem;
  font-weight: var(--batcom-typography-button-weight, 400);
  text-transform: uppercase;
  padding: 10px 20px;
}
@media only screen and (min-width: 768px) {
  body .batcom-minibasket__empty .cmp-button {
    font-size: var(--batcom-typography-button-size-tablet);
    line-height: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-minibasket__empty .cmp-button {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-minibasket__empty .cmp-button:focus {
  outline: none;
}
body .batcom-minibasket__empty .cmp-button:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
body .batcom-minibasket__empty-hl {
  font-size: 1.25rem;
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
}
body .batcom-minibasket__empty-label {
  font-size: 0.875rem;
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
}
body .batcom-minibasket__bag-value {
  font-weight: 325;
  font-size: 0.75rem;
  line-height: 1.375rem;
}
body .batcom-minibasket__title {
  font-size: 1.375rem;
  line-height: 1.5rem;
  font-weight: var(--batcom-typography-weight-normal, 500);
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
}
@media only screen and (min-width: 768px) {
  body .batcom-minibasket__title {
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}
body .batcom-minibasket__total-label {
  font-weight: 325;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
}
body .batcom-minibasket__total-amount {
  font-size: 1.0625rem;
  line-height: 1.25rem;
}
@media only screen and (min-width: 768px) {
  body .batcom-minibasket__total-amount {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
}
body .batcom-minibasket__total-amount {
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
  font-weight: var(--batcom-typography-weight-normal, 500);
}
body .batcom-minibasket__total-items {
  font-size: 1rem;
  line-height: 1.5625rem;
  font-weight: 325;
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
}
body .batcom-minibasket__product-title, body .batcom-minibasket__product-order, body .batcom-minibasket__product-total-price {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
}
body .batcom-minibasket__product-level {
  font-weight: 325;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
}
body .batcom-minibasket__actions .cmp-button {
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
  font-family: var(--batcom-typography-button-family), sans-serif;
  letter-spacing: 0.063rem;
  font-weight: var(--batcom-typography-button-weight, 400);
  text-transform: uppercase;
  padding: 10px 20px;
}
@media only screen and (min-width: 768px) {
  body .batcom-minibasket__actions .cmp-button {
    font-size: var(--batcom-typography-button-size-tablet);
    line-height: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-minibasket__actions .cmp-button {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-minibasket__actions .cmp-button:focus {
  outline: none;
}
body .batcom-minibasket__actions .cmp-button:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}

body .cmp-experiencefragment--product-hero {
  padding: var(--batcom-layout-spacing-xxxl, 48px) 0;
}
body .cmp-experiencefragment--product-hero #product-hero-container .cmp-image__image {
  width: auto;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
body .cmp-experiencefragment--product-hero #product-hero-container .batcom-text li,
body .cmp-experiencefragment--product-hero #product-hero-container .batcom-text p,
body .cmp-experiencefragment--product-hero #product-hero-container .batcom-text span {
  font-size: var(--batcom-typography-small-size-mobile);
  line-height: var(--batcom-typography-small-line-height-mobile);
  font-weight: var(--batcom-typography-small-weight);
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
}
@media only screen and (min-width: 768px) {
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-text li,
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-text p,
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-text span {
    --batcom-typography-small-size-mobile: var(--batcom-typography-small-size-tablet);
    --batcom-typography-small-line-height-mobile: var(--batcom-typography-small-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-text li,
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-text p,
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-text span {
    --batcom-typography-small-size-mobile: var(--batcom-typography-small-size-desktop);
    --batcom-typography-small-line-height-mobile: var(--batcom-typography-small-line-height-desktop);
  }
}
body .cmp-experiencefragment--product-hero #product-hero-container .batcom-text--restricted-online p {
  background: var(--batcom-color-palette-text-functional, #1d1d1b);
  color: var(--batcom-color-palette-surface-neutral-option-1, #fff);
  font-weight: var(--batcom-typography-weight-bold, 700);
  padding: 0 10px;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  margin: 10px 0;
}
body .cmp-experiencefragment--product-hero #product-hero-container .batcom-title h3 {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 350;
}
@media only screen and (max-width: 767px) {
  body .cmp-experiencefragment--product-hero #product-hero-container {
    display: flex;
    flex-direction: column;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container h1 {
    font-size: 2.125rem;
    line-height: 2.125rem;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-title {
    order: 0;
    margin-bottom: 0;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-title h3 {
    margin-bottom: var(--batcom-layout-spacing-between-components-mobile);
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-image {
    order: 1;
    margin-top: 78px;
    margin-bottom: 65px;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .cmp-image__image {
    height: 240px;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-button {
    order: 2;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .cmp-button {
    display: block;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-text {
    order: 3;
    margin-top: var(--batcom-layout-spacing-l, 24px);
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-text--restricted-online {
    order: 0;
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  body .cmp-experiencefragment--product-hero #product-hero-container {
    display: grid;
    grid-template-rows: repeat(4, fit-content(100%)) 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 98px;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-title.title {
    margin-bottom: 0;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-title h1 {
    margin-bottom: var(--batcom-layout-spacing-xs, 8px);
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-title h3,
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-title h4 {
    font-size: 1.125rem;
    margin-bottom: var(--batcom-layout-spacing-m, 16px);
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-image {
    grid-row: 1/5;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-button {
    grid-column: 2;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .cmp-image__image {
    height: 318px;
  }
}
@media only screen and (min-width: 1024px) {
  body .cmp-experiencefragment--product-hero #product-hero-container .cmp-image__image {
    height: 460px;
  }
}

.batcom-socialmedia .socialmedia__base {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -moz-column-gap: var(--batcom-layout-spacing-l, 24px);
       column-gap: var(--batcom-layout-spacing-l, 24px);
  margin-bottom: var(--batcom-layout-spacing-l, 24px);
}
@media only screen and (min-width: 480px) {
  .batcom-socialmedia .socialmedia__base {
    justify-content: flex-end;
    margin: 0;
  }
}
.batcom-container--noSpacing .batcom-socialmedia .socialmedia__base {
  justify-content: flex-start;
}
.batcom-socialmedia .socialmedia__title {
  font-size: 0.875rem;
  font-weight: var(--batcom-typography-anchor-weight);
  white-space: nowrap;
  margin: 0;
}
.batcom-socialmedia .socialmedia__list {
  -moz-column-gap: var(--batcom-layout-spacing-m, 16px);
       column-gap: var(--batcom-layout-spacing-m, 16px);
  flex-wrap: nowrap;
}
.batcom-socialmedia .socialmedia__svg {
  margin: 0;
}

body .cmp-teaser__title {
  margin-bottom: var(--batcom-layout-spacing-m, 16px);
}
body .cmp-teaser__description {
  margin-top: 0;
}
body .cmp-teaser__description h1,
body .cmp-teaser__description h2,
body .cmp-teaser__description h3,
body .cmp-teaser__description h4,
body .cmp-teaser__description h5,
body .cmp-teaser__description h6,
body .cmp-teaser__description a,
body .cmp-teaser__description blockquote,
body .cmp-teaser__description small,
body .cmp-teaser__description pre {
  margin-top: 0;
}
@media only screen and (max-width: 479px) {
  body .cmp-teaser__description,
  body .batcom-teaser-stage .cmp-teaser__description {
    height: initial;
    overflow: initial;
    display: block;
    -webkit-line-clamp: initial;
    -webkit-box-orient: initial;
    line-height: inherit;
  }
}
@media only screen and (max-width: 767px) {
  body .batcom-teaser-horizontal .cmp-teaser {
    flex-direction: column;
  }
}
body .batcom-teaser-horizontal .cmp-teaser__image + .cmp-teaser__content {
  margin-top: var(--batcom-layout-spacing-xl, 32px);
}
@media only screen and (min-width: 1024px) {
  body .batcom-teaser-horizontal .cmp-teaser__image + .cmp-teaser__content {
    padding-left: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
body .batcom-teaser-horizontal .cmp-teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-primary-text);
  --batcom-button-text-hover: var(--batcom-color-button-primary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-primary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-primary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-primary-border);
  --batcom-button-border-hover: var(--batcom-color-button-primary-border-hover);
  --batcom-button-icon: var(--batcom-color-button-primary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-primary-text-hover);
  --batcom-button-outline: var(--batcom-color-button-outline, #0761cd);
}
.batcom-container--primary-dark body .batcom-teaser-horizontal .cmp-teaser__action-link, .batcom-container--secondary-dark body .batcom-teaser-horizontal .cmp-teaser__action-link, .batcom-container--tertiary-dark body .batcom-teaser-horizontal .cmp-teaser__action-link {
  --batcom-button-outline: var(--batcom-color-button-outline-inverted, #0761cd);
}
body .batcom-teaser-horizontal .cmp-teaser__action-link {
  display: inline-flex;
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
  font-family: var(--batcom-typography-button-family);
  font-weight: var(--batcom-typography-button-weight);
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: var(--batcom-layout-button-primary-border-radius);
  cursor: pointer;
  color: var(--batcom-button-text) !important; /* stylelint-disable-line */
  background-color: var(--batcom-button-bg);
  border: var(--batcom-layout-button-border-width) solid var(--batcom-button-border);
  text-decoration: none !important; /* stylelint-disable-line */
  padding: 10px 20px;
}
@media only screen and (min-width: 1024px) {
  body .batcom-teaser-horizontal .cmp-teaser__action-link {
    --batcom-typography-button-size-mobile: var(--batcom-typography-button-size-desktop);
    --batcom-typography-button-line-height-mobile: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-teaser-horizontal .cmp-teaser__action-link span {
  color: var(--batcom-button-text);
}
@media (hover: hover) {
  body .batcom-teaser-horizontal .cmp-teaser__action-link:hover {
    color: var(--batcom-button-text-hover) !important; /* stylelint-disable-line */
    background-color: var(--batcom-button-bg-hover);
    border: var(--batcom-layout-button-border-width) solid var(--batcom-button-border-hover);
    text-decoration: none !important; /* stylelint-disable-line */
  }
  body .batcom-teaser-horizontal .cmp-teaser__action-link:hover span {
    color: var(--batcom-button-text-hover);
  }
  body .batcom-teaser-horizontal .cmp-teaser__action-link:hover .cmp-button__svg :is(svg, g, path) {
    fill: var(--batcom-button-icon-hover);
  }
}
body .batcom-teaser-horizontal .cmp-teaser__action-link__text + .cmp-button__svg {
  margin-left: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--batcom-layout-spacing-xxs, 4px) 0;
}
body .batcom-teaser-horizontal .cmp-teaser__action-link__svg :is(svg, g, path) {
  fill: var(--batcom-button-icon);
  filter: none;
}
body .batcom-teaser-horizontal .cmp-teaser__action-link__svg svg {
  height: 16px;
}
.cmp-button__svg body .batcom-teaser-horizontal .cmp-teaser__action-link__svg svg {
  height: 20px;
}
body .batcom-teaser-horizontal .cmp-teaser__action-link:focus {
  outline: transparent;
}
body .batcom-teaser-horizontal .cmp-teaser__action-link:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
body .batcom-teaser-horizontal .cmp-teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-primary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-primary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-primary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-primary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-primary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-primary-border-hover-inverted);
}
.batcom-container--primary-dark body .batcom-teaser-horizontal .cmp-teaser__action-link, .batcom-container--secondary-dark body .batcom-teaser-horizontal .cmp-teaser__action-link, .batcom-container--tertiary-dark body .batcom-teaser-horizontal .cmp-teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-primary-text);
  --batcom-button-text-hover: var(--batcom-color-button-primary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-primary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-primary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-primary-border);
  --batcom-button-border-hover: var(--batcom-color-button-primary-border-hover);
}
body .batcom-teaser-horizontal .cmp-teaser__action-link .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-primary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-primary-text-hover);
}
body .batcom-teaser-horizontal .cmp-teaser__action-link {
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
  font-family: var(--batcom-typography-button-family), sans-serif;
  letter-spacing: 0.063rem;
  font-weight: var(--batcom-typography-button-weight, 400);
  text-transform: uppercase;
  padding: 10px 20px;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal .cmp-teaser__action-link {
    font-size: var(--batcom-typography-button-size-tablet);
    line-height: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-teaser-horizontal .cmp-teaser__action-link {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-teaser-horizontal .cmp-teaser__action-link:focus {
  outline: none;
}
body .batcom-teaser-horizontal .cmp-teaser__action-link:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
body .batcom-teaser-horizontal .cmp-teaser__action-link {
  margin-top: 0;
  margin-bottom: 0;
  height: -moz-fit-content;
  height: fit-content;
}
body .batcom-teaser-horizontal .cmp-teaser__action-link:nth-child(2) {
  --batcom-button-text: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-secondary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover-inverted);
  --batcom-button-icon: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-secondary-border-radius);
}
.batcom-container--primary-dark body .batcom-teaser-horizontal .cmp-teaser__action-link:nth-child(2), .batcom-container--secondary-dark body .batcom-teaser-horizontal .cmp-teaser__action-link:nth-child(2), .batcom-container--tertiary-dark body .batcom-teaser-horizontal .cmp-teaser__action-link:nth-child(2) {
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-secondary-border);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover);
}
.batcom-container--primary-dark body .batcom-teaser-horizontal .cmp-teaser__action-link:nth-child(2) .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark body .batcom-teaser-horizontal .cmp-teaser__action-link:nth-child(2) .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark body .batcom-teaser-horizontal .cmp-teaser__action-link:nth-child(2) .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-secondary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover);
}
body .batcom-teaser-horizontal .extra-secondary-button .cmp-teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-secondary-border);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover);
  --batcom-button-icon: var(--batcom-color-button-secondary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-secondary-border-radius);
}
.batcom-container--primary-dark body .batcom-teaser-horizontal .extra-secondary-button .cmp-teaser__action-link, .batcom-container--secondary-dark body .batcom-teaser-horizontal .extra-secondary-button .cmp-teaser__action-link, .batcom-container--tertiary-dark body .batcom-teaser-horizontal .extra-secondary-button .cmp-teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-secondary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover-inverted);
}
.batcom-container--primary-dark body .batcom-teaser-horizontal .extra-secondary-button .cmp-teaser__action-link .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark body .batcom-teaser-horizontal .extra-secondary-button .cmp-teaser__action-link .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark body .batcom-teaser-horizontal .extra-secondary-button .cmp-teaser__action-link .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover-inverted);
}
.batcom-container--primary-dark body .batcom-teaser-horizontal .extra-secondary-button .cmp-teaser__action-link option, .batcom-container--secondary-dark body .batcom-teaser-horizontal .extra-secondary-button .cmp-teaser__action-link option, .batcom-container--tertiary-dark body .batcom-teaser-horizontal .extra-secondary-button .cmp-teaser__action-link option {
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  color: var(--batcom-button-text, #000) !important; /* stylelint-disable-line */
}
body .batcom-teaser-horizontal .cmp-teaser__action-container {
  margin-top: var(--batcom-layout-spacing-l, 24px);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (max-width: 479px) {
  body .batcom-teaser-horizontal .cmp-teaser__action-container {
    gap: var(--batcom-layout-spacing-m, 16px);
  }
}
@media only screen and (max-width: 479px) {
  body .batcom-teaser-horizontal .extra-mobile-content-centered .cmp-teaser__description {
    text-align: center;
  }
  body .batcom-teaser-horizontal .extra-mobile-content-centered .cmp-teaser__action-container {
    justify-content: center;
  }
}
body .batcom-teaser-stage .cmp-teaser__image + .cmp-teaser__content {
  padding: 0 125px 0 20px;
  justify-content: center;
  row-gap: var(--batcom-layout-spacing-m, 16px);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body .batcom-teaser-stage .cmp-teaser__image + .cmp-teaser__content .cmp-teaser__description *, body .batcom-teaser-stage .cmp-teaser__image + .cmp-teaser__content .cmp-teaser__action-container {
    font-size: 1rem;
    line-height: normal;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-stage .cmp-teaser__image + .cmp-teaser__content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
@media only screen and (min-width: 1680px) {
  body .batcom-teaser-stage .cmp-teaser__image + .cmp-teaser__content {
    padding: var(--batcom-layout-spacing-l, 24px) 150px var(--batcom-layout-spacing-l, 24px) 40px;
  }
}
body .batcom-teaser-stage .cmp-teaser__description p {
  display: none;
}
@media only screen and (min-width: 1280px) {
  body .batcom-teaser-stage .cmp-teaser__description p {
    height: auto;
    overflow: hidden;
    display: -webkit-box; /* stylelint-disable-line */
    -webkit-line-clamp: 3; /* stylelint-disable-line */
    -webkit-box-orient: vertical; /* stylelint-disable-line */
    display: block;
  }
}
body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child, body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child,
body .batcom-teaser-stage .cmp-teaser__action-link {
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
  font-family: var(--batcom-typography-button-family), sans-serif;
  letter-spacing: 0.063rem;
  font-weight: var(--batcom-typography-button-weight, 400);
  text-transform: uppercase;
  padding: 10px 20px;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child, body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child,
  body .batcom-teaser-stage .cmp-teaser__action-link {
    font-size: var(--batcom-typography-button-size-tablet);
    line-height: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child, body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child,
  body .batcom-teaser-stage .cmp-teaser__action-link {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child:focus, body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child:focus,
body .batcom-teaser-stage .cmp-teaser__action-link:focus {
  outline: none;
}
body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child:focus-visible, body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child:focus-visible,
body .batcom-teaser-stage .cmp-teaser__action-link:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child, body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child,
body .batcom-teaser-stage .cmp-teaser__action-link {
  padding: 5px var(--batcom-layout-spacing-m, 16px);
  margin: 0;
}
@media only screen and (max-width: 479px) {
  body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child, body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child,
  body .batcom-teaser-stage .cmp-teaser__action-link {
    width: -moz-fit-content;
    width: fit-content;
  }
}
body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child {
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-secondary-border);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover);
  --batcom-button-icon: var(--batcom-color-button-secondary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-secondary-border-radius);
}
.batcom-container--primary-dark body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child, .batcom-container--secondary-dark body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child, .batcom-container--tertiary-dark body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child {
  --batcom-button-text: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-secondary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover-inverted);
}
.batcom-container--primary-dark body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover-inverted);
}
.batcom-container--primary-dark body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child option, .batcom-container--secondary-dark body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child option, .batcom-container--tertiary-dark body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child option {
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  color: var(--batcom-button-text, #000) !important; /* stylelint-disable-line */
}
body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child {
  --batcom-button-text: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-secondary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover-inverted);
  --batcom-button-icon: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-secondary-border-radius);
}
.batcom-container--primary-dark body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child, .batcom-container--secondary-dark body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child, .batcom-container--tertiary-dark body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child {
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-secondary-border);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover);
}
.batcom-container--primary-dark body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-secondary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover);
}
body .batcom-teaser-stage .cmp-teaser__action-link:first-child::after {
  display: none;
}
body .batcom-teaser-stage .cmp-teaser__image + .cmp-teaser__content > .cmp-teaser__action-container {
  width: auto;
}
@media only screen and (max-width: 479px) {
  body .batcom-teaser-stage .cmp-teaser__image + .cmp-teaser__content > .cmp-teaser__action-container {
    position: relative;
    bottom: 0;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-stage .cmp-teaser__action-link {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1680px) {
  body .batcom-teaser-stage .cmp-teaser__action-link {
    margin-top: var(--batcom-layout-spacing-l, 24px);
  }
}
body .batcom-teaser-stage .cmp-teaser__background {
  display: none;
}
@media only screen and (max-width: 767px) {
  body .batcom-columncontrol .batcom-teaser-stage {
    margin-left: calc(var(--batcom-layout-content-left-right-margin) / 2 * -1);
    width: 100vw;
  }
}
body .batcom-teaser-horizontal--hometop .cmp-teaser {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal--hometop .cmp-teaser {
    flex-direction: row;
  }
}
body .batcom-teaser-horizontal--hometop .cmp-teaser .cmp-teaser__image {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal--hometop .cmp-teaser .cmp-teaser__image {
    width: 40%;
    min-width: 40%;
  }
}
body .batcom-teaser-horizontal--hometop .cmp-teaser .cmp-teaser__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 20px 20px var(--batcom-layout-spacing-xxxl, 48px);
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal--hometop .cmp-teaser .cmp-teaser__content {
    flex: 1;
    padding-left: min(157px, 10%);
    padding-right: 20px;
  }
}
body .batcom-teaser-horizontal--hometop .cmp-teaser .cmp-teaser__description {
  display: block;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal--hometop.batcom-imagelayout--right .cmp-teaser {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal--hometop.batcom-imagelayout--right .cmp-teaser .cmp-teaser__content {
    padding-left: 20px;
    padding-right: min(157px, 10%);
  }
}