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/>
*/
/* 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.
*/
/* 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;
    }
  }
}
```
*/
/*
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
*/
/**
* Reverse container
*/
@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
*/
body .cmp-accordion__item:not(:last-of-type) {
  border-bottom: 1px solid var(--batcom-color-palette-4-inverted);
  border-radius: 0;
}
body .batcom-accordion--faq .cmp-accordion {
  border-top: 1px solid var(--batcom-color-palette-4-inverted);
}
body .batcom-accordion--faq .cmp-accordion__item:last-of-type {
  border-bottom: 1px solid var(--batcom-color-palette-4-inverted);
}
body .batcom-accordion--faq .cmp-accordion .cmp-accordion__button {
  margin-bottom: 0;
  padding: 17px 15px;
}

body .batcom-faq .cmp-accordion {
  width: 500px;
  max-width: 100%;
  margin: auto;
  border-top: 1px solid var(--batcom-color-palette-6);
}
body .batcom-faq .cmp-accordion__title {
  font-size: 16px;
  line-height: 22px;
  font-family: var(--batcom-typography-body-family);
}
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: 0 solid var(--batcom-color-palette-6);
  border-bottom-width: 1px;
  border-radius: 0;
}
body .batcom-faq .cmp-accordion__panel {
  padding: var(--batcom-typography-body-base-size) 0;
}

body .cmp-batcom-agegate .batcom-agegate__content-data {
  background-color: #fff;
}
body .cmp-batcom-agegate .batcom-agegate__footnote {
  font-size: 0.75rem;
  line-height: 1.25rem;
}

@media only screen and (min-width: 1680px) {
  body .batcom-content {
    --batcom-layout-content-max-width: 1376px;
  }
}
body .cmp-form button {
  margin-top: 0;
}
body .batcom-text ul li::marker {
  color: black;
}
body table {
  border: 1px solid #dfe1e2;
  border-collapse: collapse;
}
body table td {
  padding: 10px;
}
body a {
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
}
body a:visited {
  color: var(--batcom-color-anchor-default);
}
body a:hover {
  color: var(--batcom-color-anchor-hover);
}
@media only screen and (min-width: 1024px) {
  body h1 {
    --batcom-typography-h1-size-mobile: var(--batcom-typography-h1-size-tablet);
    --batcom-typography-h1-line-height-mobile: var(--batcom-typography-h1-line-height-tablet);
  }
}
@media only screen and (min-width: 1280px) {
  body h1 {
    --batcom-typography-h1-size-mobile: var(--batcom-typography-h1-size-desktop);
    --batcom-typography-h1-line-height-mobile: var(--batcom-typography-h1-line-height-desktop);
  }
}
@media only screen and (min-width: 1024px) {
  body h2 {
    --batcom-typography-h2-size-mobile: var(--batcom-typography-h2-size-tablet);
    --batcom-typography-h2-line-height-mobile: var(--batcom-typography-h2-line-height-tablet);
  }
}
@media only screen and (min-width: 1280px) {
  body h2 {
    --batcom-typography-h2-size-mobile: var(--batcom-typography-h2-size-desktop);
    --batcom-typography-h2-line-height-mobile: var(--batcom-typography-h2-line-height-desktop);
  }
}
body h5 {
  letter-spacing: 1.2px;
}

body .cmp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
}
body .cmp-breadcrumb__title {
  font-size: 0.75rem;
  line-height: 1.25rem;
  padding-bottom: 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: 0.875rem;
  line-height: 1.125rem;
  font-weight: bold;
  vertical-align: baseline;
}

.batcom-button .cmp-button, .batcom-button--primary .cmp-button, .batcom-button--secondary .cmp-button, .batcom-button--disabled .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) {
  .batcom-button .cmp-button, .batcom-button--primary .cmp-button, .batcom-button--secondary .cmp-button, .batcom-button--disabled .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) {
  .batcom-button .cmp-button, .batcom-button--primary .cmp-button, .batcom-button--secondary .cmp-button, .batcom-button--disabled .cmp-button {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
.batcom-button .cmp-button:focus, .batcom-button--primary .cmp-button:focus, .batcom-button--secondary .cmp-button:focus, .batcom-button--disabled .cmp-button:focus {
  outline: none;
}
.batcom-button .cmp-button:focus-visible, .batcom-button--primary .cmp-button:focus-visible, .batcom-button--secondary .cmp-button:focus-visible, .batcom-button--disabled .cmp-button:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
.batcom-button--link .cmp-button .cmp-button__text {
  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) {
  .batcom-button--link .cmp-button .cmp-button__text {
    font-size: var(--batcom-typography-button-size-tablet);
    line-height: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-button--link .cmp-button .cmp-button__text {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
.batcom-button--link .cmp-button .cmp-button__text:focus {
  outline: none;
}
.batcom-button--link .cmp-button .cmp-button__text:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
.batcom-button--link .cmp-button .cmp-button__text {
  padding: 3px 10px 0 0;
}

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

@media only screen and (min-width: 768px) {
  body .columncontrol .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 .columncontrol__base--withColumnDividers .columncontrol__column:last-child::after {
    display: block;
  }
}

body .batcom-dynamiclist .product-card__image,
body .batcom-bff-dynamiclist .product-card__image {
  padding-top: 0;
}
@media only screen and (max-width: 479px) {
  body .batcom-dynamiclist .product-card__image,
  body .batcom-bff-dynamiclist .product-card__image {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-dynamiclist .product-card__image,
  body .batcom-bff-dynamiclist .product-card__image {
    padding-top: 10px;
    margin-bottom: 9px;
  }
}
body .batcom-dynamiclist .product-card__tag-new,
body .batcom-bff-dynamiclist .product-card__tag-new {
  font-family: var(--batcom-font-face-2-name);
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 1px;
  padding: 4px 14px 2px;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 768px) {
  body .batcom-dynamiclist .product-card__tag-new,
  body .batcom-bff-dynamiclist .product-card__tag-new {
    top: 20px;
  }
}
body .batcom-dynamiclist .product-card__capsules,
body .batcom-bff-dynamiclist .product-card__capsules {
  z-index: 3;
}
body .batcom-dynamiclist .product-card__rating-filled,
body .batcom-bff-dynamiclist .product-card__rating-filled {
  background: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/star-filled-glo-plp.svg") repeat-x;
}
body .batcom-dynamiclist .product-card__rating-reviews,
body .batcom-bff-dynamiclist .product-card__rating-reviews {
  font-weight: 600;
}
body .batcom-dynamiclist .product-card__promo,
body .batcom-bff-dynamiclist .product-card__promo {
  background: #edf2f9;
  color: #2f537e;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.275rem;
  font-family: var(--batcom-font-face-2-name);
}
body .batcom-dynamiclist .product-card__price, body .batcom-dynamiclist .product-card__price-suffix-text,
body .batcom-bff-dynamiclist .product-card__price,
body .batcom-bff-dynamiclist .product-card__price-suffix-text {
  font-family: var(--batcom-font-face-2-name);
  font-weight: 800;
}
body .batcom-dynamiclist .product-card__level-label,
body .batcom-bff-dynamiclist .product-card__level-label {
  color: #242c2c;
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 600;
  font-family: var(--batcom-font-face-1-name);
  margin-right: 5px;
}
body .batcom-dynamiclist .product-card__dot,
body .batcom-bff-dynamiclist .product-card__dot {
  color: #242c2c;
}
body .batcom-dynamiclist .product-card__dot.filled,
body .batcom-bff-dynamiclist .product-card__dot.filled {
  color: #242c2c;
}
body .batcom-dynamiclist .product-card__dotsNumber,
body .batcom-bff-dynamiclist .product-card__dotsNumber {
  color: #242c2c;
  font-size: 0.75rem;
  line-height: 1.275rem;
  font-family: var(--batcom-font-face-2-name);
  font-weight: 800;
}
body .batcom-dynamiclist .product-card__tooltip,
body .batcom-bff-dynamiclist .product-card__tooltip {
  background: #2f539f;
  font-family: var(--batcom-font-face-1-name);
  font-weight: 600;
  font-size: 10px;
  line-height: 15px;
}
body .batcom-dynamiclist .product-card__tooltip::after,
body .batcom-bff-dynamiclist .product-card__tooltip::after {
  border-color: transparent transparent #2f539f;
}
body .batcom-dynamiclist .product-card__link,
body .batcom-bff-dynamiclist .product-card__link {
  line-height: 1.5625rem;
  font-family: var(--batcom-font-face-3-name);
}
body .batcom-dynamiclist .product-card__buy-label,
body .batcom-bff-dynamiclist .product-card__buy-label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 800;
  color: #242c2c;
  font-family: var(--batcom-font-face-2-name);
}
body .batcom-dynamiclist .product-card__buy-operations,
body .batcom-bff-dynamiclist .product-card__buy-operations {
  border-radius: 50px;
}
body .batcom-dynamiclist .product-card__buy-button,
body .batcom-bff-dynamiclist .product-card__buy-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-dynamiclist .product-card__buy-button,
  body .batcom-bff-dynamiclist .product-card__buy-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-dynamiclist .product-card__buy-button,
  body .batcom-bff-dynamiclist .product-card__buy-button {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-dynamiclist .product-card__buy-button:focus,
body .batcom-bff-dynamiclist .product-card__buy-button:focus {
  outline: none;
}
body .batcom-dynamiclist .product-card__buy-button:focus-visible,
body .batcom-bff-dynamiclist .product-card__buy-button:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
@media only screen and (min-width: 768px) {
  body .batcom-dynamiclist .product-card__buy-button,
  body .batcom-bff-dynamiclist .product-card__buy-button {
    display: none;
  }
}
body .batcom-dynamiclist .product-card__product-status--instock, body .batcom-dynamiclist .product-card__product-status--unavailable,
body .batcom-bff-dynamiclist .product-card__product-status--instock,
body .batcom-bff-dynamiclist .product-card__product-status--unavailable {
  font-family: var(--batcom-font-face-2-name);
  font-weight: 800;
}

body .batcom-bff-dynamiclist .cmp-list__carousel {
  min-height: 420px;
}
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__name {
  font-family: var(--batcom-font-face-1-name);
  font-size: 1rem;
  line-height: 1.563rem;
  font-weight: 325;
  margin-top: 0;
  height: auto;
  overflow: hidden;
  display: -webkit-box; /* stylelint-disable-line */
  -webkit-line-clamp: 2; /* stylelint-disable-line */
  -webkit-box-orient: vertical; /* stylelint-disable-line */
}
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__tag-new {
  top: 0;
  left: 0;
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__tag-new {
    top: 0;
  }
}
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card .product-card__image {
  margin-top: 0;
}
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card .cmp-image__image {
  height: 140px;
  padding: 26px 8px 0;
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist .cmp-list__carousel .product-card .cmp-image__image {
    height: 194px;
    padding: 17px 11px 5px;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__content {
    justify-content: start;
  }
}
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__buy-button {
  --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-bff-dynamiclist .cmp-list__carousel .product-card__buy-button, .batcom-container--secondary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__buy-button, .batcom-container--tertiary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__buy-button {
  --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-bff-dynamiclist .cmp-list__carousel .product-card__buy-button .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__buy-button .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__buy-button .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-bff-dynamiclist .cmp-list__carousel .product-card__buy-button option, .batcom-container--secondary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__buy-button option, .batcom-container--tertiary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__buy-button option {
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  color: var(--batcom-button-text, #000) !important; /* stylelint-disable-line */
}
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__buy-button {
  padding: 5px 26px;
}

body .batcom-dynamiclist-filters__button {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 800;
  color: #242c2c;
}
body .batcom-dynamiclist-filters__quick-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: #242c2c;
}
body .batcom-dynamiclist-filters__sum {
  line-height: 1.5625rem;
  font-weight: 325;
  color: #242c2c;
}
body .batcom-dynamiclist-filters__container-header-label {
  font-weight: 800;
  font-size: 1.375rem;
  line-height: 1.5rem;
  color: #242c2c;
}
body .batcom-dynamiclist-filters__container-clear {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: #242c2c;
}
body .batcom-dynamiclist-filters__category-header-label {
  font-size: 1.0625rem;
  line-height: 1.25rem;
  font-weight: 800;
  color: #242c2c;
}
body .batcom-dynamiclist-filters__category-header-clear {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: #242c2c;
}
body .batcom-dynamiclist-filters__category-item-label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: #242c2c;
}
body .batcom-dynamiclist-filters__category-item-quantity {
  color: #6b6b6b;
}

body .batcom-dynamicproduct .product-card__promo {
  color: #2f537e;
  font-family: var(--batcom-font-face-2-name);
}
body .batcom-dynamicproduct .product-card__level-row:first-child {
  margin-top: 16px;
}
body .batcom-dynamicproduct .product-card__color-selected-name, body .batcom-dynamicproduct .product-card__level-label {
  color: #242c2c;
  font-weight: 600;
  font-family: var(--batcom-font-face-1-name);
}
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-family: var(--batcom-font-face-2-name);
  font-weight: 800;
}
body .batcom-dynamicproduct .product-card__dot {
  color: #242c2c;
}
body .batcom-dynamicproduct .product-card__dot.filled {
  color: #242c2c;
}
body .batcom-dynamicproduct .product-card__dotsNumber {
  color: #242c2c;
  font-family: var(--batcom-font-face-2-name);
  font-weight: 800;
}
body .batcom-dynamicproduct .product-card__tooltip {
  background: #2f539f;
  font-family: var(--batcom-font-face-1-name);
}
body .batcom-dynamicproduct .product-card__tooltip::after {
  border-color: transparent transparent #2f539f;
}
body .batcom-dynamicproduct .product-card__price-discount--price {
  font-size: 26px;
  font-family: var(--batcom-font-face-3-name);
  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: 32px;
}

body .batcom-bff-bundleproduct .product-card__promo {
  color: #2f537e;
  font-family: var(--batcom-font-face-2-name);
}
body .batcom-bff-bundleproduct .product-card__level-row:first-child {
  margin-top: 16px;
}
body .batcom-bff-bundleproduct .product-card__color-selected-name, body .batcom-bff-bundleproduct .product-card__level-label {
  color: #242c2c;
  font-weight: 600;
  font-family: var(--batcom-font-face-1-name);
}
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-family: var(--batcom-font-face-2-name);
  font-weight: 800;
}
body .batcom-bff-bundleproduct .product-card__dot {
  color: #242c2c;
}
body .batcom-bff-bundleproduct .product-card__dot.filled {
  color: #242c2c;
}
body .batcom-bff-bundleproduct .product-card__dotsNumber {
  color: #242c2c;
  font-family: var(--batcom-font-face-2-name);
  font-weight: 800;
}
body .batcom-bff-bundleproduct .product-card__tooltip {
  background: #2f539f;
  font-family: var(--batcom-font-face-1-name);
}
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-family: var(--batcom-font-face-3-name);
  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: #2f537e;
  font-family: var(--batcom-font-face-2-name);
}
body .batcom-bff-dynamicproduct .product-card__level-row:first-child {
  margin-top: 16px;
}
body .batcom-bff-dynamicproduct .product-card__color-selected-name, body .batcom-bff-dynamicproduct .product-card__level-label {
  color: #242c2c;
  font-weight: 600;
  font-family: var(--batcom-font-face-1-name);
}
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-family: var(--batcom-font-face-2-name);
  font-weight: 800;
}
body .batcom-bff-dynamicproduct .product-card__dot {
  color: #242c2c;
}
body .batcom-bff-dynamicproduct .product-card__dot.filled {
  color: #242c2c;
}
body .batcom-bff-dynamicproduct .product-card__dotsNumber {
  color: #242c2c;
  font-family: var(--batcom-font-face-2-name);
  font-weight: 800;
}
body .batcom-bff-dynamicproduct .product-card__tooltip {
  background: #2f539f;
  font-family: var(--batcom-font-face-1-name);
}
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-family: var(--batcom-font-face-3-name);
  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 .cmp-experiencefragment--footer .batcom-separator {
  width: 90%;
  margin-bottom: 18px;
}
body .cmp-experiencefragment--footer .columncontrol__column:has(.batcom-separator) .batcom-separator {
  width: 100%;
}
body .cmp-experiencefragment--footer .columncontrol__column:has(.batcom-separator) {
  --batcom-layout-column-control-gutter: 3.5%;
}
body .cmp-experiencefragment--footer a {
  text-decoration: none;
}
body .cmp-experiencefragment--footer a:visited, body .cmp-experiencefragment--footer a:hover {
  text-decoration: none;
}
body .cmp-experiencefragment--footer .footer-logo {
  width: 110px;
}
body .cmp-experiencefragment--footer .eighteen-plus-logo {
  width: 38px;
}
@media only screen and (max-width: 479px) {
  body .cmp-experiencefragment--footer .eighteen-plus-logo {
    float: right;
  }
}
@media only screen and (min-width: 1024px) {
  body .cmp-experiencefragment--footer .batcom-columncontrol {
    margin-bottom: 66px;
  }
}
body .cmp-experiencefragment--footer .batcom-columncontrol .batcom-text .cmp-text ul {
  list-style: none;
}
body .cmp-experiencefragment--footer .batcom-columncontrol .batcom-text .cmp-text ul li {
  padding-left: 0;
  text-indent: 0;
}
body .cmp-experiencefragment--footer .batcom-columncontrol .cmp-title__text {
  font-size: 1em;
}
body .cmp-experiencefragment--footer .cmp-breadcrumb {
  display: block;
}
@media only screen and (max-width: 479px) {
  body .cmp-experiencefragment--footer .cmp-breadcrumb {
    text-align: center;
  }
}
@media only screen and (min-width: 480px) {
  body .cmp-experiencefragment--footer .cmp-breadcrumb {
    float: right;
  }
}
body .cmp-experiencefragment--footer .cmp-breadcrumb__list, body .cmp-experiencefragment--footer .cmp-breadcrumb__title {
  display: inline-block;
}
body .cmp-experiencefragment--footer .cmp-breadcrumb__item--active {
  padding-right: 0;
}
body .cmp-experiencefragment--footer .cmp-breadcrumb__item {
  display: none;
}
body .cmp-experiencefragment--footer .cmp-breadcrumb__item:last-child {
  display: inline-block;
}
body .cmp-experiencefragment--footer .socialmedia__base {
  flex-direction: row;
  justify-content: left;
  margin-bottom: 0;
}
@media only screen and (min-width: 1024px) {
  body .cmp-experiencefragment--footer .socialmedia__base {
    height: auto;
    margin-top: 12px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 479px) {
  body .cmp-experiencefragment--footer .socialmedia__base {
    padding-bottom: 24px;
  }
}
body .cmp-experiencefragment--footer .socialmedia__title {
  display: none;
}
@media only screen and (min-width: 1024px) {
  body .cmp-experiencefragment--footer .batcom-accordion {
    margin-top: 20px;
  }
}
body .cmp-experiencefragment--footer .batcom-accordion + .batcom-text .cmp-text * {
  font-size: var(--batcom-typography-anchor-size-mobile);
}
@media only screen and (min-width: 768px) {
  body .cmp-experiencefragment--footer .batcom-accordion + .batcom-text .cmp-text * {
    font-size: var(--batcom-typography-anchor-size-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .cmp-experiencefragment--footer .batcom-accordion + .batcom-text .cmp-text * {
    font-size: var(--batcom-typography-anchor-size-desktop);
  }
}
body .cmp-experiencefragment--footer .cmp-accordion__item {
  border-radius: 0;
}
@media only screen and (max-width: 767px) {
  body .cmp-experiencefragment--footer .cmp-accordion__item:not(:last-of-type) {
    border-bottom: 1px solid var(--batcom-color-separator-default-bg);
  }
}
body .cmp-experiencefragment--footer .cmp-accordion__header .cmp-accordion__button {
  padding: 12px 0;
  margin-bottom: 0;
  border-radius: 0;
  background-color: transparent;
}
body .cmp-experiencefragment--footer .cmp-accordion__title {
  font-size: var(--batcom-typography-body-size-mobile);
  line-height: 1.375rem;
  text-transform: uppercase;
  font-weight: normal;
  font-family: var(--batcom-typography-body-family);
}
@media only screen and (min-width: 768px) {
  body .cmp-experiencefragment--footer .cmp-accordion__title {
    font-size: var(--batcom-typography-body-size-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .cmp-experiencefragment--footer .cmp-accordion__title {
    font-size: var(--batcom-typography-body-size-desktop);
  }
}
body .cmp-experiencefragment--footer .cmp-accordion__panel {
  padding: 0;
}
body .cmp-experiencefragment--footer .cmp-accordion__panel .batcom-text .cmp-text p {
  line-height: 1.375rem;
  text-transform: uppercase;
  font-weight: normal;
  font-family: var(--batcom-typography-body-family);
  padding: 6px 12px;
}
body .cmp-experiencefragment--footer .cmp-accordion__panel .batcom-text .cmp-text p:last-child {
  margin-bottom: 12px;
}
body .cmp-experiencefragment--footer .cmp-accordion__panel .batcom-text .cmp-text * {
  font-size: var(--batcom-typography-anchor-size-mobile);
}
@media only screen and (min-width: 768px) {
  body .cmp-experiencefragment--footer .cmp-accordion__panel .batcom-text .cmp-text * {
    font-size: var(--batcom-typography-anchor-size-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .cmp-experiencefragment--footer .cmp-accordion__panel .batcom-text .cmp-text * {
    font-size: var(--batcom-typography-anchor-size-desktop);
  }
}
body .cmp-experiencefragment--footer .cmp-accordion__icon, body .cmp-experiencefragment--footer .cmp-accordion__button:hover .cmp-accordion__icon {
  background-color: var(--batcom-color-accordion-title);
}
body .cmp-experiencefragment--footer #footer-accordion-opening-desktop .cmp-accordion__icon, body .cmp-experiencefragment--footer #footer-accordion-opening-mobile .cmp-accordion__icon {
  -webkit-mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-down.svg");
          mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-down.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  width: 18px;
  height: 10px;
}
body .cmp-experiencefragment--footer #footer-accordion-opening-desktop [aria-expanded=true] .cmp-accordion__icon, body .cmp-experiencefragment--footer #footer-accordion-opening-mobile [aria-expanded=true] .cmp-accordion__icon {
  -webkit-mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-up.svg");
          mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-up.svg");
}
body .cmp-experiencefragment--footer #footer-accordion-opening-desktop .cmp-accordion__button, body .cmp-experiencefragment--footer #footer-accordion-opening-mobile .cmp-accordion__button {
  justify-content: flex-start;
  gap: 1em;
}
body .cmp-experiencefragment--footer #footer-accordion-opening-desktop .cmp-accordion__title, body .cmp-experiencefragment--footer #footer-accordion-opening-mobile .cmp-accordion__title {
  font-size: var(--batcom-typography-anchor-size-mobile);
}
@media only screen and (min-width: 768px) {
  body .cmp-experiencefragment--footer #footer-accordion-opening-desktop .cmp-accordion__title, body .cmp-experiencefragment--footer #footer-accordion-opening-mobile .cmp-accordion__title {
    font-size: var(--batcom-typography-anchor-size-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .cmp-experiencefragment--footer #footer-accordion-opening-desktop .cmp-accordion__title, body .cmp-experiencefragment--footer #footer-accordion-opening-mobile .cmp-accordion__title {
    font-size: var(--batcom-typography-anchor-size-desktop);
  }
}
body .cmp-experiencefragment--footer #footer-accordion-opening-desktop .cmp-accordion__title, body .cmp-experiencefragment--footer #footer-accordion-opening-mobile .cmp-accordion__title {
  width: auto;
}
@media only screen and (max-width: 1023px) {
  body .cmp-experiencefragment--footer #footer-copyright-desktop {
    display: none;
  }
}
body .cmp-experiencefragment--footer #footer-copyright-desktop * {
  font-size: 0.875rem;
}
body .cmp-experiencefragment--footer #footer-copyright-mobile {
  text-align: center;
  font-size: 0.875rem;
}
body .cmp-experiencefragment--footer #footer-disclaimer {
  text-align: center;
  border: 4px solid black;
  background: white;
  color: black;
  font-weight: bold;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  body .cmp-experiencefragment--footer #footer-disclaimer.cmp-container:has(.batcom-image) {
    padding: 15px 20px;
  }
}
body .cmp-experiencefragment--footer #footer-disclaimer.cmp-container .aem-Grid {
  display: flex;
  align-items: center;
  justify-content: center;
}
body .cmp-experiencefragment--footer #footer-disclaimer.cmp-container .batcom-image,
body .cmp-experiencefragment--footer #footer-disclaimer.cmp-container .batcom-text {
  width: auto;
  margin: 0;
}
body .cmp-experiencefragment--footer #footer-disclaimer.cmp-container .cmp-image__image {
  width: 35px;
  min-width: 35px;
  margin-right: 5px;
}
body .cmp-experiencefragment--footer .batcom-text:last-child {
  margin-bottom: 0;
}

body .cmp-form label:not(.form-label) {
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 700;
  color: var(--batcom-color-form-placeholder);
}

body .batcom-header-var-2 a {
  text-decoration: none;
}
body .batcom-header-var-2 a:visited, body .batcom-header-var-2 a:hover {
  text-decoration: none;
}
body .batcom-header-var-2 .header-logo {
  width: 113px;
}
body .batcom-header-var-2 .batcom-header__logo--secondary .header-logo {
  width: -moz-fit-content;
  width: fit-content;
}
body .batcom-header-var-2 .batcom-search {
  display: none;
}
body .batcom-header-var-2 .batcom-header__link {
  text-align: center;
}
@media only screen and (max-width: 479px) {
  body .batcom-header-var-2 .cmp-navigation__item-link--contact {
    display: flex;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header-var-2 .cmp-navigation__item-link--contact {
    min-height: 52px;
    align-items: center;
    display: flex;
  }
  body .batcom-header-var-2 .cmp-navigation__item-link--contact::before {
    content: "";
    width: 25px;
    height: 25px;
    background: var(--batcom-color-navigation-text, #e9ecf0);
    background-position: center;
    -webkit-mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/location.svg");
            mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/location.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    margin-right: 20px;
  }
}
body .batcom-header-var-2 #icon-location::before {
  content: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/location.svg");
  display: inline-block;
  width: 16px;
  height: 16px;
  transform: translateY(6px);
}
@media only screen and (max-width: 767px) {
  body .batcom-header-var-2 .batcom-header__link {
    display: none;
  }
  body .batcom-header-var-2 .cmp-navigation__item--level-2,
  body .batcom-header-var-2 .cmp-navigation__item--level-1 {
    margin-top: 2px;
    background-color: #fff;
    padding-left: 20px;
  }
  body .batcom-header-var-2 .cmp-navigation__item--level-2:first-child,
  body .batcom-header-var-2 .cmp-navigation__item--level-1:first-child {
    padding-left: 0;
  }
  body .batcom-header-var-2 .cmp-navigation__item--level-2 .cmp-navigation__item-link,
  body .batcom-header-var-2 .cmp-navigation__item--level-1 .cmp-navigation__item-link {
    color: var(--batcom-color-navigation-text-inverted);
  }
  body .batcom-header-var-2 .cmp-navigation__item--level-2 .cmp-navigation__item-link::before,
  body .batcom-header-var-2 .cmp-navigation__item--level-1 .cmp-navigation__item-link::before {
    background-color: var(--batcom-color-navigation-text-inverted);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-header-var-2 .cmp-navigation__item--level-1 .cmp-navigation__item-link .batcom-navigation__arrow--right {
    display: none;
  }
  body .batcom-header-var-2 .cmp-navigation__item--level-1:only-of-type .cmp-navigation__item-link {
    padding: 10px 0;
  }
}
body .batcom-header-var-2.batcom-header__wrapper {
  padding: 0;
}
body .batcom-header-var-2 .batcom-header__link span a {
  font-size: 0.75rem;
}
body .batcom-header-var-2 .batcom-languagenavigation__toggle,
body .batcom-header-var-2 .batcom-header__link a {
  text-transform: capitalize;
}
@media only screen and (min-width: 1024px) {
  body .batcom-header-var-2 .batcom-languagenavigation__toggle,
  body .batcom-header-var-2 .batcom-header__link a {
    display: inline-flex;
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
    text-decoration: none;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 768px) {
  body .batcom-header-var-2 .batcom-languagenavigation__toggle,
  body .batcom-header-var-2 .batcom-header__link a {
    --batcom-typography-small-size-mobile: var(--batcom-typography-body-size-tablet);
    --batcom-typography-small-line-height-mobile: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  body .batcom-header-var-2 .batcom-languagenavigation__toggle,
  body .batcom-header-var-2 .batcom-header__link a {
    --batcom-typography-small-size-mobile: var(--batcom-typography-body-size-desktop);
    --batcom-typography-small-line-height-mobile: var(--batcom-typography-body-line-height-desktop);
  }
}
@media only screen and (max-width: 479px) {
  body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item--level-0 .batcom-navigation__arrow--left {
    height: auto;
  }
  body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item--level-0 .batcom-navigation__arrow--right {
    margin-right: 15px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item--level-0 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    min-height: 52px;
  }
  body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item--level-0 .cmp-navigation__item-link::before {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item--level-0 {
    padding-bottom: 0;
    border-bottom: none;
    align-items: center;
  }
  body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item--level-0:not(:first-child) {
    margin-left: 63px;
  }
}
@media only screen and (max-width: 767px) {
  body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item--level-0 .cmp-navigation__item-link {
    font-size: var(--batcom-typography-button-size-mobile);
    line-height: var(--batcom-typography-button-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item--level-0 .cmp-navigation__item-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-header-var-2 .batcom-navigation .cmp-navigation__item--level-0 .cmp-navigation__item-link {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item--level-0 .cmp-navigation__item-link {
  display: flex;
  justify-content: initial;
  align-items: center;
  font-weight: 800;
  font-family: var(--batcom-font-face-2-name);
  width: 100%;
}
body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item--level-0 .cmp-navigation__item-link .cmp-navigation__item-title {
  flex: 1;
}
body .batcom-header-var-2 .batcom-menuButton__icon-line {
  background-color: white;
}
body .batcom-header-var-2 .batcom-menuButton__icon-bottom {
  visibility: hidden;
}
body .batcom-header-var-2 .open .batcom-menuButton__icon-bottom {
  visibility: visible;
}
@media only screen and (max-width: 1023px) {
  body .batcom-header-var-2 .batcom-languagenavigation,
  body .batcom-header-var-2 .batcom-search {
    margin-right: 12px;
  }
}
body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item-link, body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item-link--contact {
  font-size: var(--batcom-typography-anchor-size-mobile);
}
@media only screen and (min-width: 768px) {
  body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item-link, body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item-link--contact {
    font-size: var(--batcom-typography-anchor-size-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item-link, body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item-link--contact {
    font-size: var(--batcom-typography-anchor-size-desktop);
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header-var-2 .batcom-navigation--header[data-label]::after {
    content: attr(data-label);
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 0.75rem;
    line-height: 1.25rem;
    font-weight: 600;
    font-family: var(--batcom-font-face-2-name);
  }
  body .batcom-header-var-2 .batcom-navigation--header[data-label] .batcom-menuButton__base, body .batcom-header-var-2 .batcom-navigation--header[data-label]::after {
    transform: translateY(calc(1.25rem / -2));
  }
}
body .batcom-header-var-2 .submenu-trigger {
  display: none;
}

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: #1d1d1b;
  font-size: 1.25rem;
}
body .batcom-minibasket__empty-label {
  color: #1d1d1b;
  font-size: 0.875rem;
}
body .batcom-minibasket__bag-value {
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 600;
  font-family: var(--batcom-font-face-2-name);
  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: #1d1d1b;
  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: 400;
  color: #1d1d1b;
}
@media only screen and (max-width: 767px) {
  body .batcom-minibasket__total-label {
    font-size: 0.875rem;
  }
}
body .batcom-minibasket__total-amount {
  color: #1d1d1b;
  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: 400;
  color: #1d1d1b;
}
@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: #1d1d1b;
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: 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: 400;
  color: #1d1d1b;
}
@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: #1d1d1b;
  font-size: 1.25rem;
}
body .batcom-bff-minibasket__empty-label {
  color: #1d1d1b;
  font-size: 0.875rem;
}
body .batcom-bff-minibasket__bag-value {
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 600;
  font-family: var(--batcom-font-face-2-name);
  margin-top: 10px;
}
@media only screen and (min-width: 1024px) {
  body .batcom-bff-minibasket__bag-value {
    margin-top: 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: #1d1d1b;
  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: 400;
  color: #1d1d1b;
}
@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: #1d1d1b;
  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: 400;
  color: #1d1d1b;
}
@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: #1d1d1b;
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: 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: 400;
  color: #1d1d1b;
}
@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: 48px;
}
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-family: var(--batcom-typography-small-family);
  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: #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 ul {
  list-style-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/glo-arrow.svg");
  list-style-position: outside;
  padding-left: 15px;
}
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);
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-image {
    order: 1;
    margin-bottom: var(--batcom-layout-spacing-between-components-mobile);
  }
  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);
  }
  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: 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;
  }
}

body.product-list {
  background-color: #f1f1f1;
}
body .cmp-list__product-list .cmp-list__item-layout-product {
  background-color: #fff;
}
body .cmp-list.cmp-list__carousel .product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
body .cmp-list.cmp-list__product-list .product-card {
  display: flex;
  flex-direction: row;
}
@media only screen and (min-width: 768px) {
  body .cmp-list.cmp-list__product-list .product-card {
    flex-direction: column;
  }
}
body .cmp-list .product-card__image {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  body .cmp-list .product-card__image {
    margin-bottom: 15px;
  }
}
body .cmp-list .product-card__image .cmp-image__image {
  -o-object-fit: contain;
     object-fit: contain;
}
body .cmp-list .product-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  body .cmp-list .product-card__content {
    justify-content: space-between;
  }
}
@media only screen and (min-width: 768px) {
  body .cmp-list .product-card__link {
    flex: 1;
  }
}
body .cmp-list .product-card__name, body .cmp-list .product-card__shortName {
  color: var(--batcom-color-palette-1);
  font-weight: 400;
  text-transform: none;
}
body .cmp-list .product-card__price {
  color: var(--batcom-color-palette-1);
  font-weight: 700;
}
body .cmp-list .product-card__button {
  position: static;
  margin-top: 15px;
}
body .cmp-list .product-card__button .cmp-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
body .cmp-list .product-card__button .cmp-button::after {
  position: static;
}

.batcom-socialmedia .socialmedia__base {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  margin-bottom: 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;
  line-height: 1rem;
  font-weight: var(--batcom-typography-weight-heavy);
  white-space: nowrap;
  margin: 0;
}
.batcom-socialmedia .socialmedia__list {
  -moz-column-gap: 16px;
       column-gap: 16px;
  flex-wrap: nowrap;
}
.batcom-socialmedia .socialmedia__svg {
  margin: 0;
}

body .cmp-teaser__title {
  margin-bottom: 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;
}
body .cmp-teaser__description b {
  font-family: var(--batcom-font-face-2-name);
}
@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: 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;
}
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: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (max-width: 479px) {
  body .batcom-teaser-horizontal .cmp-teaser__action-container {
    gap: 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: 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: 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: 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: 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: 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: 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: 12px;
}
body .batcom-teaser-horizontal--plp .cmp-teaser__description h4 {
  margin-bottom: 12px;
}
body .batcom-teaser-horizontal--plp .cmp-teaser__action-container {
  margin-top: 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: 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: 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: 24px 150px 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 16px 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;
}
body .batcom-accounticon__icon__label,
body .batcom-bff-accounticon__icon__label {
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 600;
  font-family: var(--batcom-font-face-2-name);
  margin-top: 7px;
}
@media only screen and (min-width: 1024px) {
  body .batcom-accounticon__icon__label,
  body .batcom-bff-accounticon__icon__label {
    margin-top: 5px;
  }
}
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-5);
}

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);
}

.batcom-text .cmp-form-text__textContainer {
  position: relative;
}
.batcom-text .cmp-form-text__text {
  width: 100%;
}
.batcom-text .cmp-form-text label {
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-body-size-mobile);
  font-weight: var(--batcom-typography-weight-bold);
  margin-bottom: 4px;
}
.batcom-text .cmp-form-text label.cmp-form-text__password-confirmation-label {
  margin-top: 24px;
}
.batcom-text .cmp-form-text__validationTags {
  width: 100%;
  margin-top: 16px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  color: var(--batcom-color-form-text-label);
}
.batcom-text .cmp-form-text__validationTitle {
  width: 100%;
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.batcom-text .cmp-form-text__validationTag {
  display: flex;
  align-items: center;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .batcom-text .cmp-form-text__validationTag {
    width: 50%;
  }
}
.batcom-text .cmp-form-text__validationTag-label {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 400;
  padding: 2px 0;
  margin-left: 12px;
}
.batcom-text .cmp-form-text__validationTag-icon {
  display: inline-block;
}
.batcom-text .cmp-form-text__validationTag-icon.icon-uncheck {
  width: 18px;
  height: 18px;
}
.batcom-text .cmp-form-text__validationTag-icon.icon-check {
  width: 18px;
  height: 15px;
}
.batcom-text #password-confirmation {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}