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 .cmp-accordion__item:not(:last-of-type) {
  border-bottom: 1px solid var(--batcom-color-palette-surface-neutral-option-4, #dedede);
  border-radius: 0;
}
body .batcom-accordion--faq .cmp-accordion {
  border-top: 1px solid var(--batcom-color-palette-surface-neutral-option-4, #dedede);
}
body .batcom-accordion--faq .cmp-accordion__item:last-of-type {
  border-bottom: 1px solid var(--batcom-color-palette-surface-neutral-option-4, #dedede);
}
body .batcom-accordion--faq .cmp-accordion .cmp-accordion__button {
  margin-bottom: 0;
  padding: var(--batcom-layout-spacing-m, 16px) var(--batcom-layout-spacing-s, 12px);
}

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);
}
@media only screen and (max-width: 767px) {
  body .batcom-faq .cmp-accordion__title {
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-faq .cmp-accordion__title {
    font-size: var(--batcom-typography-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-faq .cmp-accordion__title {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
body .batcom-faq .cmp-accordion__button {
  padding: var(--batcom-layout-spacing-m, 16px) 0;
  margin-bottom: 0;
  border-radius: 0;
  background-color: transparent;
}
body .batcom-faq .cmp-accordion__item {
  border: 0 solid var(--batcom-color-palette-surface-neutral-option-4, #dedede);
  border-bottom-width: 1px;
  border-radius: 0;
}
body .batcom-faq .cmp-accordion__panel {
  padding: var(--batcom-layout-spacing-m, 16px) 0;
}

body .cmp-batcom-agegate .batcom-agegate__content-data {
  background-color: var(--batcom-color-palette-surface-neutral-option-1, #fff);
}
body .cmp-batcom-agegate .batcom-agegate__footnote {
  font-size: 0.75rem;
  line-height: 1.25rem;
}

body .cmp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--batcom-layout-spacing-s, 12px);
  align-items: baseline;
}
body .cmp-breadcrumb__title {
  font-size: 0.75rem;
  line-height: 1.25rem;
  padding-bottom: var(--batcom-layout-spacing-xs, 8px);
}
body .cmp-breadcrumb__item {
  vertical-align: baseline;
}
body .cmp-breadcrumb__item::after {
  top: var(--batcom-layout-spacing-xxs, 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: 0.875rem;
  line-height: 1.125rem;
  font-weight: var(--batcom-typography-weight-bold, 700);
  vertical-align: baseline;
}

body .batcom-container .batcom-container--glomaintenance {
  margin-top: var(--batcom-layout-spacing-xl, 32px);
}
@media only screen and (min-width: 480px) {
  body .batcom-container .batcom-container--glomaintenance {
    margin-bottom: var(--batcom-layout-spacing-xl, 32px);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-container .batcom-container--glomaintenance {
    margin-top: clamp(var(--batcom-layout-spacing-xl, 32px), 6vw, 163px);
  }
}
body .batcom-container.batcom-container--lavender {
  background-color: var(--batcom-color-container-lavender-bg, #c4b3cc);
}
body .batcom-container.batcom-container--turquoise {
  background-color: var(--batcom-color-container-turquoise-bg, #a7e0ec);
}

@media only screen and (min-width: 768px) {
  body .columncontrol__base--withColumnDividers .columncontrol__column::after {
    border-color: var(--batcom-color-palette-4-inverted);
    border-width: 1px;
    height: calc(100% - 10px);
  }
}
@media only screen and (min-width: 1024px) {
  body .columncontrol__base--withColumnDividers .columncontrol__column:last-child::after {
    display: block;
  }
}

body .batcom-dynamicproduct .product-card__promo {
  color: #2f537e;
}
body .batcom-dynamicproduct .product-card__level-row:first-child {
  margin-top: var(--batcom-layout-spacing-m, 16px);
}
body .batcom-dynamicproduct .product-card__color-selected-name, body .batcom-dynamicproduct .product-card__level-label {
  color: var(--batcom-color-palette-text-functional, #000);
  font-weight: 600;
}
body .batcom-dynamicproduct .product-card__buy-quantity, body .batcom-dynamicproduct .product-card__color-selected-label, body .batcom-dynamicproduct .product-card__color-selector-label, body .batcom-dynamicproduct .product-card__level-label-main {
  font-size: 14px;
  font-weight: 800;
}
body .batcom-dynamicproduct .product-card__dot {
  color: var(--batcom-color-palette-text-functional, #000);
}
body .batcom-dynamicproduct .product-card__dot.filled {
  color: var(--batcom-color-palette-text-functional, #000);
}
body .batcom-dynamicproduct .product-card__dotsNumber {
  color: var(--batcom-color-palette-text-functional, #000);
  font-weight: 800;
}
body .batcom-dynamicproduct .product-card__tooltip {
  background: #2f539f;
}
body .batcom-dynamicproduct .product-card__tooltip::after {
  border-color: transparent transparent #2f539f;
}
body .batcom-dynamicproduct .product-card__price-discount--price {
  font-size: 26px;
  font-weight: 900;
}
body .batcom-dynamicproduct .product-card__buy-button .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;
  font-weight: var(--batcom-typography-button-weight, 800);
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  padding: 10px 35px;
}
@media only screen and (min-width: 768px) {
  body .batcom-dynamicproduct .product-card__buy-button .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-dynamicproduct .product-card__buy-button .cmp-button {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-dynamicproduct .product-card__buy-button .cmp-button:focus {
  outline: none;
}
body .batcom-dynamicproduct .product-card__buy-button .cmp-button:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
body .batcom-dynamicproduct .product-card__buy-button .cmp-button {
  margin-bottom: var(--batcom-layout-spacing-xl, 32px);
}

body .batcom-bff-bundleproduct .product-card__promo {
  color: var(--batcom-color-palette-info-500, #2f537e);
}
body .batcom-bff-bundleproduct .product-card__level-row:first-child {
  margin-top: var(--batcom-layout-spacing-m, 16px);
}
body .batcom-bff-bundleproduct .product-card__color-selected-name, body .batcom-bff-bundleproduct .product-card__level-label {
  color: var(--batcom-color-palette-text-functional, #000);
  font-weight: var(--batcom-typography-weight-lighter, 400);
}
body .batcom-bff-bundleproduct .product-card__buy-quantity, body .batcom-bff-bundleproduct .product-card__bundle-item-quantity, body .batcom-bff-bundleproduct .product-card__color-selected-label, body .batcom-bff-bundleproduct .product-card__color-selector-label, body .batcom-bff-bundleproduct .product-card__level-label-main {
  font-size: 14px;
  font-weight: 800;
}
body .batcom-bff-bundleproduct .product-card__dot {
  color: var(--batcom-color-palette-icon-default, #2a2a2a);
}
body .batcom-bff-bundleproduct .product-card__dot.filled {
  color: var(--batcom-color-palette-icon-default, #2a2a2a);
}
body .batcom-bff-bundleproduct .product-card__dotsNumber {
  color: var(--batcom-color-palette-icon-default, #2a2a2a);
  font-weight: var(--batcom-typography-weight-bold, 700);
}
body .batcom-bff-bundleproduct .product-card__tooltip {
  background: #2f539f;
}
body .batcom-bff-bundleproduct .product-card__tooltip::after {
  border-color: transparent transparent #2f539f;
}
body .batcom-bff-bundleproduct .product-card__price-discount--price {
  font-size: 26px;
  font-weight: 900;
}
body .batcom-bff-bundleproduct .product-card__buy-button {
  margin-top: 0;
}
body .batcom-bff-bundleproduct .product-card__buy-button .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;
  font-weight: var(--batcom-typography-button-weight, 800);
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  padding: 10px 35px;
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-bundleproduct .product-card__buy-button .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-bundleproduct .product-card__buy-button .cmp-button {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-bff-bundleproduct .product-card__buy-button .cmp-button:focus {
  outline: none;
}
body .batcom-bff-bundleproduct .product-card__buy-button .cmp-button:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}

body .batcom-bff-dynamicproduct .product-card__promo {
  color: var(--batcom-color-palette-info-500, #2f537e);
}
body .batcom-bff-dynamicproduct .product-card__level-row:first-child {
  margin-top: var(--batcom-layout-spacing-m, 16px);
}
body .batcom-bff-dynamicproduct .product-card__color-selected-name, body .batcom-bff-dynamicproduct .product-card__level-label {
  color: var(--batcom-color-palette-text-functional, #000);
  font-weight: 600;
}
body .batcom-bff-dynamicproduct .product-card__buy-quantity, body .batcom-bff-dynamicproduct .product-card__color-selected-label, body .batcom-bff-dynamicproduct .product-card__color-selector-label, body .batcom-bff-dynamicproduct .product-card__level-label-main {
  font-size: 14px;
  font-weight: 800;
}
body .batcom-bff-dynamicproduct .product-card__dot {
  color: var(--batcom-color-palette-text-functional, #000);
}
body .batcom-bff-dynamicproduct .product-card__dot.filled {
  color: var(--batcom-color-palette-text-functional, #000);
}
body .batcom-bff-dynamicproduct .product-card__dotsNumber {
  color: var(--batcom-color-palette-text-functional, #000);
  font-weight: 800;
}
body .batcom-bff-dynamicproduct .product-card__tooltip {
  background: #2f539f;
}
body .batcom-bff-dynamicproduct .product-card__tooltip::after {
  border-color: transparent transparent #2f539f;
}
body .batcom-bff-dynamicproduct .product-card__price-final--price {
  font-size: 26px;
  font-weight: 900;
}
body .batcom-bff-dynamicproduct .product-card__buy-button .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;
  font-weight: var(--batcom-typography-button-weight, 800);
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  padding: 10px 35px;
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamicproduct .product-card__buy-button .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-dynamicproduct .product-card__buy-button .cmp-button {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-bff-dynamicproduct .product-card__buy-button .cmp-button:focus {
  outline: none;
}
body .batcom-bff-dynamicproduct .product-card__buy-button .cmp-button:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
body #pdp-ratings {
  height: 1.25rem;
}
body #pdp-ratings .product-card__rating {
  height: 1.25rem;
}
body #pdp-ratings .product-card__rating-container {
  margin-top: 3px;
}
body #pdp-ratings .product-card__rating-filled {
  background: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/star-filled-glo-pdp.svg") repeat-x;
}
body #pdp-ratings .product-card__rating-reviews {
  font-weight: 600;
  line-height: 1.25rem;
}

body .batcom-bff-customerreviews__reviews-add-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;
  font-weight: var(--batcom-typography-button-weight, 800);
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  padding: 10px 35px;
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-customerreviews__reviews-add-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-customerreviews__reviews-add-button {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-bff-customerreviews__reviews-add-button:focus {
  outline: none;
}
body .batcom-bff-customerreviews__reviews-add-button:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
body .batcom-bff-customerreviews__reviews-add-form-buttons-submit {
  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;
  font-weight: var(--batcom-typography-button-weight, 800);
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  padding: 10px 35px;
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-customerreviews__reviews-add-form-buttons-submit {
    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-customerreviews__reviews-add-form-buttons-submit {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-bff-customerreviews__reviews-add-form-buttons-submit:focus {
  outline: none;
}
body .batcom-bff-customerreviews__reviews-add-form-buttons-submit:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}

.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;
  font-weight: var(--batcom-typography-button-weight, 800);
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  padding: 10px 35px;
}
@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 {
  color: var(--batcom-color-palette-text-functional, #000);
  font-size: 1.25rem;
}
body .batcom-minibasket__empty-label {
  color: var(--batcom-color-palette-text-functional, #000);
  font-size: 0.875rem;
}
body .batcom-minibasket__bag-value {
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 600;
  margin-top: 8px;
}
@media only screen and (min-width: 1024px) {
  body .batcom-minibasket__bag-value {
    margin-top: 6px;
  }
}
body .batcom-minibasket__bag::before {
  transform: translateY(7px);
}
@media only screen and (min-width: 1024px) {
  body .batcom-minibasket__bag::before {
    transform: translateY(6px);
  }
}
body .batcom-minibasket__title {
  color: var(--batcom-color-palette-text-functional, #000);
  font-size: 1.375rem;
  line-height: 1.5rem;
  font-weight: 800;
  letter-spacing: 0;
}
@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-size: 1rem;
  line-height: 1.375rem;
  font-weight: var(--batcom-typography-weight-lighter, 400);
  color: var(--batcom-color-palette-text-functional, #000);
}
@media only screen and (max-width: 767px) {
  body .batcom-minibasket__total-label {
    font-size: 0.875rem;
  }
}
body .batcom-minibasket__total-amount {
  color: var(--batcom-color-palette-text-functional, #000);
  font-weight: 800;
  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-items {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: var(--batcom-typography-weight-lighter, 400);
  color: var(--batcom-color-palette-text-functional, #000);
}
@media only screen and (max-width: 479px) {
  body .batcom-minibasket__product-summary {
    display: inline-block;
  }
}
body .batcom-minibasket__product-title, body .batcom-minibasket__product-order, body .batcom-minibasket__product-total-price {
  color: var(--batcom-color-palette-text-functional, #000);
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: var(--batcom-typography-weight-bold, 700);
}
@media only screen and (min-width: 768px) {
  body .batcom-minibasket__product-title, body .batcom-minibasket__product-order, body .batcom-minibasket__product-total-price {
    font-size: 1rem;
    line-height: 1.5625rem;
  }
}
body .batcom-minibasket__product-level {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: var(--batcom-typography-weight-lighter, 400);
  color: var(--batcom-color-palette-text-functional, #000);
}
@media only screen and (max-width: 767px) {
  body .batcom-minibasket__product-level {
    font-size: 0.875rem;
  }
}
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;
  font-weight: var(--batcom-typography-button-weight, 800);
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  padding: 10px 35px;
}
@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 .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;
  font-weight: var(--batcom-typography-button-weight, 800);
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  padding: 10px 35px;
}
@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 {
  color: var(--batcom-color-palette-text-functional, #000);
  font-size: 1.25rem;
}
body .batcom-bff-minibasket__empty-label {
  color: var(--batcom-color-palette-text-functional, #000);
  font-size: 0.875rem;
}
body .batcom-bff-minibasket__bag-value {
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 600;
  margin-top: 10px;
}
@media only screen and (min-width: 1024px) {
  body .batcom-bff-minibasket__bag-value {
    margin-top: var(--batcom-layout-spacing-xs, 8px);
  }
}
body .batcom-bff-minibasket__bag::before {
  transform: translateY(7px);
}
@media only screen and (min-width: 1024px) {
  body .batcom-bff-minibasket__bag::before {
    transform: translateY(6px);
  }
}
body .batcom-bff-minibasket__title {
  color: var(--batcom-color-palette-text-functional, #000);
  font-size: 1.375rem;
  line-height: 1.5rem;
  font-weight: 800;
  letter-spacing: 0;
}
@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-size: 1rem;
  line-height: 1.375rem;
  font-weight: var(--batcom-typography-weight-lighter, 400);
  color: var(--batcom-color-palette-text-functional, #000);
}
@media only screen and (max-width: 767px) {
  body .batcom-bff-minibasket__total-label {
    font-size: 0.875rem;
  }
}
body .batcom-bff-minibasket__total-amount,
body .batcom-bff-minibasket__total .batcom-bff-minibasket__price-suffix-text {
  color: var(--batcom-color-palette-text-functional, #000);
  font-weight: 800;
  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-size: 1rem;
  line-height: 1.375rem;
  font-weight: var(--batcom-typography-weight-lighter, 400);
  color: var(--batcom-color-palette-text-functional, #000);
}
@media only screen and (max-width: 479px) {
  body .batcom-bff-minibasket__product-summary {
    display: inline-block;
  }
}
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 {
  color: var(--batcom-color-palette-text-functional, #000);
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: var(--batcom-typography-weight-bold, 700);
}
@media only screen and (min-width: 768px) {
  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-size: 1rem;
    line-height: 1.5625rem;
  }
}
body .batcom-bff-minibasket__product-level {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: var(--batcom-typography-weight-lighter, 400);
  color: var(--batcom-color-palette-text-functional, #000);
}
@media only screen and (max-width: 767px) {
  body .batcom-bff-minibasket__product-level {
    font-size: 0.875rem;
  }
}
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;
  font-weight: var(--batcom-typography-button-weight, 800);
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  padding: 10px 35px;
}
@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-experiencefragment--product-hero {
  padding-top: var(--batcom-layout-spacing-xxxl, 48px);
}
body .cmp-experiencefragment--product-hero #product-hero-container .cmp-image__image {
  width: auto;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 767px) {
  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);
  }
}
@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 {
    font-size: var(--batcom-typography-small-size-tablet);
    line-height: 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 {
    font-size: var(--batcom-typography-small-size-desktop);
    line-height: var(--batcom-typography-small-line-height-desktop);
  }
}
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-weight: var(--batcom-typography-weight-lighter, 400);
  color: var(--batcom-color-palette-text-body, #2a2a2a);
}
body .cmp-experiencefragment--product-hero #product-hero-container .batcom-text ul {
  list-style-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/glo-arrow.svg");
  list-style-position: outside;
  padding-left: var(--batcom-layout-spacing-m, 16px);
}
body .cmp-experiencefragment--product-hero #product-hero-container .batcom-text ul li {
  padding-left: 10px;
  text-indent: 0;
}
@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 .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, 0);
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-image {
    order: 1;
    margin-bottom: var(--batcom-layout-spacing-between-components-mobile, 0);
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .cmp-image__image {
    height: 240px;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-title:has(.extra-product-price) {
    order: 2;
    margin-bottom: var(--batcom-layout-spacing-bottom-medium-mobile, 0);
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-dynamicproduct,
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-button {
    order: 3;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .cmp-button {
    display: block;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-text {
    order: 4;
  }
}
@media only screen and (min-width: 768px) {
  body .cmp-experiencefragment--product-hero #product-hero-container {
    display: grid;
    grid-template-rows: repeat(4, auto) 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 80px;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-image {
    grid-row: 1/-1;
  }
  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 .batcom-button {
    margin-bottom: var(--batcom-layout-spacing-xl, 32px);
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-image {
    padding: 20px 50px 20px 30px;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .cmp-image__image {
    height: 460px;
  }
}
@media only screen and (min-width: 1680px) {
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-image {
    padding: 30px 90px 20px 60px;
  }
}

.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;
}
@media only screen and (max-width: 767px) {
  .batcom-socialmedia .socialmedia__title {
    font-size: var(--batcom-typography-small-size-mobile);
    line-height: var(--batcom-typography-small-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .batcom-socialmedia .socialmedia__title {
    font-size: var(--batcom-typography-small-size-tablet);
    line-height: var(--batcom-typography-small-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-socialmedia .socialmedia__title {
    font-size: var(--batcom-typography-small-size-desktop);
    line-height: var(--batcom-typography-small-line-height-desktop);
  }
}
.batcom-socialmedia .socialmedia__title {
  font-weight: var(--batcom-typography-button-weight, 500);
  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;
  font-weight: var(--batcom-typography-button-weight, 800);
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  padding: 10px 35px;
}
@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 .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-vertical .cmp-teaser__description h3,
body .batcom-teaser-vertical .cmp-teaser__description p {
  margin-bottom: var(--batcom-layout-spacing-xs, 8px);
}
body .batcom-teaser-horizontal--hometop .cmp-teaser__image.cmp-teaser__image--desktop {
  max-width: 612px;
}
body .batcom-teaser-horizontal--hometop .cmp-teaser__image + .cmp-teaser__content {
  padding: 0 20px;
}
@media only screen and (min-width: 1280px) {
  body .batcom-teaser-horizontal--hometop .cmp-teaser__image + .cmp-teaser__content {
    max-width: 590px;
    padding-left: 138px;
  }
}
body .batcom-teaser-horizontal--hometop .cmp-teaser__image + .cmp-teaser__content .cmp-teaser__description ul {
  margin-top: var(--batcom-layout-spacing-s, 12px);
}
body .batcom-teaser-horizontal--hometop .cmp-teaser__image + .cmp-teaser__content .cmp-teaser__description ul .bullet-icon {
  padding-left: 6px;
}
@media only screen and (max-width: 1023px) {
  body .batcom-teaser-horizontal--hometop .cmp-teaser__image + .cmp-teaser__content .cmp-teaser__action-link {
    padding: var(--batcom-layout-spacing-s, 12px) 35px;
    width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-teaser-horizontal--hometop .cmp-teaser__image + .cmp-teaser__content .cmp-teaser__action-container {
    margin-bottom: var(--batcom-layout-spacing-xxxl, 48px);
  }
}
body .batcom-teaser-horizontal--homebottom .cmp-image,
body .batcom-teaser-horizontal--homebottom .cmp-image__image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
body .batcom-teaser-horizontal--homebottom .cmp-teaser__image + .cmp-teaser__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: var(--batcom-layout-spacing-xl, 32px) 0;
  padding: 0 20px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal--homebottom .cmp-teaser__image + .cmp-teaser__content {
    align-items: flex-start;
    padding: 0 40px 0 62px;
    text-align: left;
  }
}
body .batcom-teaser-horizontal--homebottom .cmp-teaser__image + .cmp-teaser__content .cmp-teaser__description {
  display: block;
}
body .batcom-teaser-horizontal--homebottom .cmp-teaser__image + .cmp-teaser__content .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-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--homebottom .cmp-teaser__image + .cmp-teaser__content .cmp-teaser__action-link, .batcom-container--secondary-dark body .batcom-teaser-horizontal--homebottom .cmp-teaser__image + .cmp-teaser__content .cmp-teaser__action-link, .batcom-container--tertiary-dark body .batcom-teaser-horizontal--homebottom .cmp-teaser__image + .cmp-teaser__content .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-container--primary-dark body .batcom-teaser-horizontal--homebottom .cmp-teaser__image + .cmp-teaser__content .cmp-teaser__action-link .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark body .batcom-teaser-horizontal--homebottom .cmp-teaser__image + .cmp-teaser__content .cmp-teaser__action-link .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark body .batcom-teaser-horizontal--homebottom .cmp-teaser__image + .cmp-teaser__content .cmp-teaser__action-link .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--plp {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal--plp .cmp-teaser__image {
    max-width: 40.8%;
  }
}
body .batcom-teaser-horizontal--plp .cmp-image,
body .batcom-teaser-horizontal--plp .cmp-image__image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
body .batcom-teaser-horizontal--plp .cmp-teaser__image + .cmp-teaser__content {
  align-items: left;
  display: flex;
  flex-direction: column;
  margin: var(--batcom-layout-spacing-xl, 32px) 0;
  padding: 0 20px;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal--plp .cmp-teaser__image + .cmp-teaser__content {
    flex: 1;
    align-items: flex-start;
    margin: 62px 0;
    padding: 0 10.5% 0 9.3%;
  }
}
body .batcom-teaser-horizontal--plp .cmp-teaser__description {
  display: block;
}
body .batcom-teaser-horizontal--plp .cmp-teaser__description h1 {
  margin-bottom: var(--batcom-layout-spacing-s, 12px);
}
body .batcom-teaser-horizontal--plp .cmp-teaser__description h4 {
  margin-bottom: var(--batcom-layout-spacing-s, 12px);
}
body .batcom-teaser-horizontal--plp .cmp-teaser__action-container {
  margin-top: var(--batcom-layout-spacing-l, 24px);
}
body .batcom-teaser-horizontal--plp .cmp-teaser__action-container .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;
  font-weight: var(--batcom-typography-button-weight, 800);
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  padding: 10px 35px;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal--plp .cmp-teaser__action-container .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--plp .cmp-teaser__action-container .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--plp .cmp-teaser__action-container .cmp-teaser__action-link:focus {
  outline: none;
}
body .batcom-teaser-horizontal--plp .cmp-teaser__action-container .cmp-teaser__action-link:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
body .batcom-teaser-horizontal--plp .cmp-teaser__action-container .cmp-teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-link-text-inverted);
  background-color: transparent;
  border: none;
  padding: 0;
  position: relative;
}
body .batcom-teaser-horizontal--plp .cmp-teaser__action-container .cmp-teaser__action-link::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 12px;
  right: -28px;
  -webkit-mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-right-link-button.svg");
          mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-right-link-button.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--batcom-button-text);
}
body .batcom-teaser-horizontal--plp .cmp-teaser__action-container .cmp-teaser__action-link:hover {
  --batcom-button-text-hover: var(--batcom-color-button-link-text-hover-inverted);
}
body .batcom-teaser-horizontal--plp .cmp-teaser__action-container .cmp-teaser__action-link:hover::after {
  animation: bounce-arrow 2s infinite ease-in-out;
  background-color: var(--batcom-button-text-hover);
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal.batcom-teaser-horizontal--v02 .cmp-teaser__image {
    width: 56.53%;
  }
}
body .batcom-teaser-horizontal.batcom-teaser-horizontal--v02 .cmp-teaser__image + .cmp-teaser__content {
  padding: 20px 0;
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal.batcom-teaser-horizontal--v02 .cmp-teaser__image + .cmp-teaser__content {
    padding-right: 5.67%;
    padding-left: 8.58%;
  }
}
body .batcom-teaser-horizontal.batcom-teaser-horizontal--v02 .cmp-teaser__image + .cmp-teaser__content .cmp-teaser__description {
  display: block;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal.batcom-teaser-horizontal--v02.batcom-imagelayout--right .cmp-teaser__image + .cmp-teaser__content {
    padding-right: 8.58%;
    padding-left: 5.67%;
  }
}
body .batcom-teaser-horizontal.batcom-teaser-horizontal--v02 .cmp-teaser__action-link {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal.batcom-teaser-horizontal--v02 .cmp-teaser__action-link {
    width: auto;
  }
}
body .batcom-teaser-horizontal--v03 .cmp-teaser {
  display: flex;
  gap: 20px;
  flex-direction: row;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal--v03 .cmp-teaser {
    gap: 30px;
  }
}
body .batcom-teaser-horizontal--v03 .cmp-teaser__image {
  width: 25%;
}
body .batcom-teaser-horizontal--v03 .cmp-teaser__image + .cmp-teaser__content {
  flex: 1;
  margin: 0;
}
body .batcom-teaser-horizontal--v03 .cmp-teaser__image + .cmp-teaser__content .cmp-teaser__description {
  display: block;
}
body .batcom-teaser-vertical--v02 {
  margin-bottom: 13px;
}
body .batcom-teaser-vertical--v02 .cmp-teaser:not(:has(.cmp-teaser__link)),
body .batcom-teaser-vertical--v02 .cmp-teaser > .cmp-teaser__link {
  display: flex;
  -moz-column-gap: 25px;
       column-gap: 25px;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-vertical--v02 .cmp-teaser:not(:has(.cmp-teaser__link)),
  body .batcom-teaser-vertical--v02 .cmp-teaser > .cmp-teaser__link {
    flex-direction: column;
  }
}
body .batcom-teaser-vertical--v02 .cmp-teaser:not(:has(.cmp-teaser__link)) .cmp-teaser__image,
body .batcom-teaser-vertical--v02 .cmp-teaser > .cmp-teaser__link .cmp-teaser__image {
  width: 17%;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-vertical--v02 .cmp-teaser:not(:has(.cmp-teaser__link)) .cmp-teaser__image,
  body .batcom-teaser-vertical--v02 .cmp-teaser > .cmp-teaser__link .cmp-teaser__image {
    width: 61%;
    max-width: 120px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-vertical--v02 .cmp-teaser:not(:has(.cmp-teaser__link)) .cmp-teaser__content,
  body .batcom-teaser-vertical--v02 .cmp-teaser > .cmp-teaser__link .cmp-teaser__content {
    text-align: center;
  }
}
body .batcom-teaser-vertical--v02 .cmp-teaser:not(:has(.cmp-teaser__link)) .cmp-teaser__title,
body .batcom-teaser-vertical--v02 .cmp-teaser > .cmp-teaser__link .cmp-teaser__title {
  margin-bottom: var(--batcom-layout-spacing-xxs, 4px);
  font-size: 1.125rem;
  line-height: 1.375rem;
}
body .batcom-teaser-vertical--v02 .cmp-teaser__link .cmp-teaser__title {
  display: inline-block;
  position: relative;
  padding-right: 33px;
}
body .batcom-teaser-vertical--v02 .cmp-teaser__link .cmp-teaser__title::after {
  position: absolute;
  content: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/glo-arrow.svg");
  top: -30%;
  scale: 2.3;
  right: 7px;
}
body .batcom-teaser-vertical--v02 .cmp-teaser__link .cmp-teaser__description {
  font-size: var(--batcom-typography-body-size-mobile);
}
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) and (max-width: 767px) {
  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: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) and (min-width: 768px) {
  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: var(--batcom-typography-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) and (min-width: 1024px) {
  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: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
@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 {
  -webkit-line-clamp: initial;
}
body .batcom-teaser-stage .cmp-teaser__action-link:first-child {
  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;
  font-weight: var(--batcom-typography-button-weight, 800);
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  padding: 10px 35px;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-stage .cmp-teaser__action-link:first-child {
    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 .cmp-teaser__action-link:first-child {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-teaser-stage .cmp-teaser__action-link:first-child:focus {
  outline: none;
}
body .batcom-teaser-stage .cmp-teaser__action-link:first-child:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
body .batcom-teaser-stage .cmp-teaser__action-link:first-child {
  padding: 5px var(--batcom-layout-spacing-m, 16px) var(--batcom-layout-spacing-xxs, 4px);
  margin: 0;
}
@media only screen and (max-width: 479px) {
  body .batcom-teaser-stage .cmp-teaser__action-link:first-child {
    width: -moz-fit-content;
    width: fit-content;
  }
}
body .batcom-teaser-stage .cmp-teaser__action-link:first-child::after {
  display: none;
}
body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__description > * {
  color: var(--batcom-color-heading-h2);
}
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__description > * {
  color: var(--batcom-color-body-text-inverted);
}
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.batcom-text-color--light .cmp-teaser__action-link:first-child {
  --batcom-button-text: var(--batcom-color-button-link-text-inverted);
  border-color: var(--batcom-color-button-link-text-inverted);
}
body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child:hover {
  --batcom-button-text-hover: var(--batcom-color-button-link-text-hover-inverted);
  border-color: var(--batcom-color-button-link-text-hover-inverted);
}
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;
  }
}
body .batcom-teaser-stage .cmp-teaser__background {
  display: none;
}
body .batcom-teaser-text-over-image .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;
  font-weight: var(--batcom-typography-button-weight, 800);
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  padding: 10px 35px;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-text-over-image .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-text-over-image .cmp-teaser__action-link {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-teaser-text-over-image .cmp-teaser__action-link:focus {
  outline: none;
}
body .batcom-teaser-text-over-image .cmp-teaser__action-link:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
body .batcom-teaser-text-over-image.batcom-text-color--light .cmp-teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-link-text-inverted);
  border-color: var(--batcom-color-button-link-text-inverted);
}
body .batcom-teaser-text-over-image.batcom-text-color--light .cmp-teaser__action-link:hover {
  --batcom-button-text-hover: var(--batcom-color-button-link-text-hover-inverted);
  border-color: var(--batcom-color-button-link-text-hover-inverted);
}
body .batcom-teaser-text-over-image.batcom-text-color--dark .cmp-teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-link-text);
  border-color: var(--batcom-color-button-link-text);
}
body .batcom-teaser-text-over-image.batcom-text-color--dark .cmp-teaser__action-link:hover {
  --batcom-button-text-hover: var(--batcom-color-button-link-text-hover);
  border-color: var(--batcom-color-button-link-text-hover);
}
body .batcom-teaser-text-over-image .extra-teaser-text-over-image-background-dark {
  background-color: var(--batcom-color-palette-1);
}
@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;
  }
}

@media only screen and (max-width: 479px) {
  body .batcom-text.batcom-text--center-mobile {
    text-align: center;
  }
}
body .batcom-text.batcom-text--palette12-list-ticks .cmp-text ul {
  list-style: none;
  padding-left: 0;
}
body .batcom-text.batcom-text--palette12-list-ticks .cmp-text ul li {
  display: flex;
  align-items: center;
  padding-left: 0;
  text-indent: 0;
}
body .batcom-text.batcom-text--palette12-list-ticks .cmp-text ul li::before {
  content: "";
  width: 20px;
  min-width: 20px;
  height: 13px;
  margin-right: 11px;
  -webkit-mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/glo-list-tick.svg");
          mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/glo-list-tick.svg");
  background-color: var(--batcom-color-palette-12, #cd4a04);
}

body .batcom-accounticon__icon,
body .batcom-bff-accounticon__icon {
  color: inherit;
}
@media only screen and (max-width: 767px) {
  body .batcom-accounticon__icon__label,
  body .batcom-bff-accounticon__icon__label {
    font-size: var(--batcom-typography-x-small-size-mobile);
    line-height: var(--batcom-typography-x-small-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-accounticon__icon__label,
  body .batcom-bff-accounticon__icon__label {
    font-size: var(--batcom-typography-x-small-size-tablet);
    line-height: var(--batcom-typography-x-small-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-accounticon__icon__label,
  body .batcom-bff-accounticon__icon__label {
    font-size: var(--batcom-typography-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
body .batcom-accounticon__icon__label,
body .batcom-bff-accounticon__icon__label {
  font-weight: var(--batcom-typography-weight-lighter, 400);
  margin-top: var(--batcom-layout-spacing-xs, 8px);
}
body .batcom-accounticon__icon::before,
body .batcom-bff-accounticon__icon::before {
  transform: translateY(8px);
}
@media only screen and (min-width: 1024px) {
  body .batcom-accounticon__icon::before,
  body .batcom-bff-accounticon__icon::before {
    transform: translateY(6px);
  }
}

body .batcom-flyout__window {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: none;
}
body .batcom-flyout__header {
  height: 0;
  padding: 0;
  z-index: 1;
}
body .batcom-flyout__closebutton {
  margin: 20px;
}
body .batcom-flyout__closeicon {
  background-color: var(--batcom-color-palette-icon-default, #2a2a2a);
}

body .batcom-bff-payment-summary__label,
body .batcom-bff-payment-summary__items,
body .batcom-bff-payment-summary__total-price {
  color: var(--batcom-color-palette-text-functional, #000);
}