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 .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: 1px solid var(--batcom-color-palette-6);
  border-radius: 0;
  border-width: 0 0 1px;
}
body .batcom-faq .cmp-accordion__panel {
  padding: var(--batcom-typography-body-base-size) 0;
}

body .cmp-batcom-agegate .batcom-agegate__content-data {
  background-color: #fff;
}

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 .cmp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
}
body .cmp-breadcrumb__title {
  font-size: 12px;
  line-height: 18px;
  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: 14px;
  line-height: 18px;
  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;
  letter-spacing: 0.063rem;
  font-weight: var(--batcom-typography-button-weight, 400);
  text-transform: uppercase;
  padding: 10px 20px;
}
@media only screen and (min-width: 768px) {
  .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 {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

body .batcom-dynamiclist .product-card__promo,
body .batcom-bff-dynamiclist .product-card__promo {
  background: #f1e2f0;
  color: #7d3679;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.375rem;
  font-family: var(--batcom-font-face-3-name);
}
body .batcom-dynamiclist .product-card__tag-new,
body .batcom-bff-dynamiclist .product-card__tag-new {
  background: black;
  color: white;
  padding: 1px 14px;
  font-family: var(--batcom-font-face-3-name);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.25rem;
}
@media only screen and (min-width: 768px) {
  body .batcom-dynamiclist .product-card__tag-new,
  body .batcom-bff-dynamiclist .product-card__tag-new {
    left: 20px;
  }
}
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-button,
body .batcom-bff-dynamiclist .product-card__buy-button {
  --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-dynamiclist .product-card__buy-button, .batcom-container--secondary-dark body .batcom-dynamiclist .product-card__buy-button, .batcom-container--tertiary-dark body .batcom-dynamiclist .product-card__buy-button,
.batcom-container--primary-dark body .batcom-bff-dynamiclist .product-card__buy-button,
.batcom-container--secondary-dark body .batcom-bff-dynamiclist .product-card__buy-button,
.batcom-container--tertiary-dark body .batcom-bff-dynamiclist .product-card__buy-button {
  --batcom-button-outline: var(--batcom-color-button-outline-inverted, #0761cd);
}
body .batcom-dynamiclist .product-card__buy-button,
body .batcom-bff-dynamiclist .product-card__buy-button {
  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-dynamiclist .product-card__buy-button,
  body .batcom-bff-dynamiclist .product-card__buy-button {
    --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-dynamiclist .product-card__buy-button span,
body .batcom-bff-dynamiclist .product-card__buy-button span {
  color: var(--batcom-button-text);
}
@media (hover: hover) {
  body .batcom-dynamiclist .product-card__buy-button:hover,
  body .batcom-bff-dynamiclist .product-card__buy-button: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-dynamiclist .product-card__buy-button:hover span,
  body .batcom-bff-dynamiclist .product-card__buy-button:hover span {
    color: var(--batcom-button-text-hover);
  }
  body .batcom-dynamiclist .product-card__buy-button:hover .cmp-button__svg :is(svg, g, path),
  body .batcom-bff-dynamiclist .product-card__buy-button:hover .cmp-button__svg :is(svg, g, path) {
    fill: var(--batcom-button-icon-hover);
  }
}
body .batcom-dynamiclist .product-card__buy-button__text + .cmp-button__svg,
body .batcom-bff-dynamiclist .product-card__buy-button__text + .cmp-button__svg {
  margin-left: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body .batcom-dynamiclist .product-card__buy-button__svg :is(svg, g, path),
body .batcom-bff-dynamiclist .product-card__buy-button__svg :is(svg, g, path) {
  fill: var(--batcom-button-icon);
  filter: none;
}
body .batcom-dynamiclist .product-card__buy-button__svg svg,
body .batcom-bff-dynamiclist .product-card__buy-button__svg svg {
  height: 16px;
}
.cmp-button__svg body .batcom-dynamiclist .product-card__buy-button__svg svg,
.cmp-button__svg body .batcom-bff-dynamiclist .product-card__buy-button__svg svg {
  height: 20px;
}
body .batcom-dynamiclist .product-card__buy-button:focus,
body .batcom-bff-dynamiclist .product-card__buy-button:focus {
  outline: transparent;
}
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__buy-button,
body .batcom-bff-dynamiclist .product-card__buy-button {
  font-size: 12px;
}
body .batcom-dynamiclist .product-card .product-card__image,
body .batcom-bff-dynamiclist .product-card .product-card__image {
  padding-top: 30px;
}
body .batcom-dynamiclist .product-card__buy-label,
body .batcom-bff-dynamiclist .product-card__buy-label {
  font-family: var(--batcom-font-face-3-name);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.75rem;
}

body .batcom-dynamiclist .cmp-list__carousel,
body .batcom-bff-dynamiclist .cmp-list__carousel {
  min-height: 420px;
}
body .batcom-dynamiclist .cmp-list__carousel .product-card__name,
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-dynamiclist .cmp-list__carousel .product-card__button--is-link .cmp-button__text,
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__button--is-link .cmp-button__text {
  font-family: var(--batcom-font-face-3-name);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.25rem;
}
body .batcom-dynamiclist .cmp-list__carousel .product-card__button--is-link .cmp-button__text.strike-price,
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__button--is-link .cmp-button__text.strike-price {
  text-decoration: line-through;
  color: #969696;
}
body .batcom-dynamiclist .cmp-list__carousel .product-card__button--is-link .cmp-button__text.slash-price,
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__button--is-link .cmp-button__text.slash-price {
  color: #f8ab28;
  margin-right: 5px;
}
body .batcom-dynamiclist .cmp-list__carousel .product-card .product-card__buy-button,
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card .product-card__buy-button {
  --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-container--primary-dark body .batcom-dynamiclist .cmp-list__carousel .product-card .product-card__buy-button, .batcom-container--secondary-dark body .batcom-dynamiclist .cmp-list__carousel .product-card .product-card__buy-button, .batcom-container--tertiary-dark body .batcom-dynamiclist .cmp-list__carousel .product-card .product-card__buy-button,
.batcom-container--primary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card .product-card__buy-button,
.batcom-container--secondary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card .product-card__buy-button,
.batcom-container--tertiary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card .product-card__buy-button {
  --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-dynamiclist .cmp-list__carousel .product-card .product-card__buy-button .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark body .batcom-dynamiclist .cmp-list__carousel .product-card .product-card__buy-button .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark body .batcom-dynamiclist .cmp-list__carousel .product-card .product-card__buy-button .cmp-button__svg :is(svg, g, path),
.batcom-container--primary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card .product-card__buy-button .cmp-button__svg :is(svg, g, path),
.batcom-container--secondary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card .product-card__buy-button .cmp-button__svg :is(svg, g, path),
.batcom-container--tertiary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card .product-card__buy-button .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-primary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-primary-text-hover-inverted);
}
.batcom-container--primary-dark body .batcom-dynamiclist .cmp-list__carousel .product-card .product-card__buy-button option, .batcom-container--secondary-dark body .batcom-dynamiclist .cmp-list__carousel .product-card .product-card__buy-button option, .batcom-container--tertiary-dark body .batcom-dynamiclist .cmp-list__carousel .product-card .product-card__buy-button option,
.batcom-container--primary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card .product-card__buy-button option,
.batcom-container--secondary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card .product-card__buy-button option,
.batcom-container--tertiary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card .product-card__buy-button option {
  --batcom-button-text: var(--batcom-color-button-primary-text);
  color: var(--batcom-button-text, #000) !important; /* stylelint-disable-line */
}

body .batcom-dynamiclist-filters__button {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  color: #1d1d1b;
}
body .batcom-dynamiclist-filters__quick-text {
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 400;
  color: #1d1d1b;
}
body .batcom-dynamiclist-filters__quick-list--item {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #1d1d1b;
}
@media only screen and (min-width: 768px) {
  body .batcom-dynamiclist-filters__quick-list--item {
    line-height: 1.375rem;
  }
}
body .batcom-dynamiclist-filters__sum {
  line-height: 1.5625rem;
  font-weight: 325;
  color: #1d1d1b;
}
body .batcom-dynamiclist-filters__container-header-label {
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.5rem;
  color: #1d1d1b;
}
@media only screen and (min-width: 768px) {
  body .batcom-dynamiclist-filters__container-header-label {
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}
body .batcom-dynamiclist-filters__container-clear {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  color: #1d1d1b;
}
body .batcom-dynamiclist-filters__category-header-label {
  font-size: 1.063rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: #1d1d1b;
}
@media only screen and (min-width: 768px) {
  body .batcom-dynamiclist-filters__category-header-label {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
}
body .batcom-dynamiclist-filters__category-header-clear {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  color: #1d1d1b;
}
body .batcom-dynamiclist-filters__category-item-label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  color: #1d1d1b;
}
body .batcom-dynamiclist-filters__category-item-quantity {
  color: #6b6b6b;
}

.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, body .cmp-experiencefragment--footer .batcom-columncontrol .batcom-text .cmp-text * {
  font-size: var(--batcom-typography-anchor-size-mobile);
}
@media only screen and (min-width: 768px) {
  body .cmp-experiencefragment--footer .batcom-columncontrol .batcom-text .cmp-text, body .cmp-experiencefragment--footer .batcom-columncontrol .batcom-text .cmp-text * {
    font-size: var(--batcom-typography-anchor-size-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .cmp-experiencefragment--footer .batcom-columncontrol .batcom-text .cmp-text, body .cmp-experiencefragment--footer .batcom-columncontrol .batcom-text .cmp-text * {
    font-size: var(--batcom-typography-anchor-size-desktop);
  }
}
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;
    border-bottom: 1px solid var(--batcom-color-separator-default-bg);
  }
}
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 {
    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 #000;
  background: var(--batcom-color-palette-2);
  color: #000;
  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 #footer-disclaimer-extrasmall {
  text-align: center;
  background: var(--batcom-color-palette-2);
  color: #000;
  font-weight: bold;
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .cmp-experiencefragment--footer #footer-disclaimer-extrasmall.cmp-container .aem-Grid {
  display: flex;
  align-items: center;
  justify-content: center;
}
body .cmp-experiencefragment--footer #footer-disclaimer-extrasmall.cmp-container .batcom-image,
body .cmp-experiencefragment--footer #footer-disclaimer-extrasmall.cmp-container .batcom-text {
  width: auto;
  margin: 0;
}
body .cmp-experiencefragment--footer #footer-disclaimer-extrasmall.cmp-container .cmp-text {
  text-align: left;
}
@media only screen and (max-width: 479px) {
  body .cmp-experiencefragment--footer #footer-disclaimer-extrasmall.cmp-container .cmp-text * {
    font-size: 0.625rem;
    font-weight: 300;
    line-height: 0.75rem;
  }
}
body .cmp-experiencefragment--footer #footer-disclaimer-extrasmall.cmp-container .cmp-image__image {
  width: 46px;
  min-width: 46px;
  margin-left: 5px;
  margin-right: 0;
}
body .cmp-experiencefragment--footer .batcom-text:last-child {
  margin-bottom: 0;
}
body .cmp-experiencefragment--footer .batcom-container.aem-GridColumn.container.responsivegrid.batcom-open {
  z-index: 2;
}

body .cmp-form {
  margin: 0 auto;
  max-width: 512px;
}
body .form-title,
body .form-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: 0;
}
body .cmp-form .form-checkbox:not(:disabled) + .form-label,
body .cmp-form .form-radio:not(:disabled) + .form-label {
  font-weight: 325;
  font-size: 16px;
}

@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper {
    height: 80px;
    flex-wrap: nowrap;
  }
}
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: 83px;
}
@media only screen and (min-width: 1024px) {
  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: 1023px) {
  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;
  }
  .batcom-header__navigation--bg-white body .batcom-header-var-2 .cmp-navigation__item-link--contact::before {
    background-color: #000;
  }
}
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: #068475;
    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-desktop);
  }
  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-desktop);
  }
}
@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.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: 1023px) {
  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;
  }
}
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-size: 0.75rem;
  line-height: 1.25;
  width: 100%;
  text-transform: none;
  font-family: var(--batcom-font-face-3-name);
  font-weight: 400;
}
@media only screen and (min-width: 1024px) {
  body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item--level-0 .cmp-navigation__item-link {
    font-family: var(--batcom-font-face-2-name);
    font-weight: 350;
  }
}
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__base {
  float: initial;
  margin-left: 20px;
}
body .batcom-header-var-2 .batcom-menuButton__label {
  display: block;
  font-family: var(--batcom-font-face-1-name);
  font-weight: 325;
  font-size: 0.75rem;
  line-height: 1.375rem;
  margin-top: 7px;
}
body .batcom-header-var-2 .batcom-menuButton__icon-line {
  background-color: white;
}
@media only screen and (max-width: 1023px) {
  body .batcom-header-var-2 .batcom-languagenavigation,
  body .batcom-header-var-2 .batcom-search {
    margin-right: 12px;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header-var-2 .batcom-navigation {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
  }
}
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: 10px;
    color: #fff;
    font-size: 0.75rem;
    width: 100%;
    line-height: 1.125rem;
    font-weight: 400;
    display: flex;
    justify-content: center;
  }
  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.125rem / -2));
  }
}
body .batcom-header-var-2 .submenu-trigger {
  display: none;
}
body .batcom-header-var-2 .batcom-accounticon__icon__label {
  white-space: nowrap;
}
body .batcom-header-var-5 .batcom-accounticon__icon__label {
  margin-top: 4px;
}
@media only screen and (min-width: 1024px) {
  body .batcom-header-var-5 .batcom-accounticon__icon__label {
    margin-top: 7px;
  }
}
body .batcom-header-var-5 .batcom-accounticon__icon::before {
  transform: translateY(0);
}
@media only screen and (min-width: 1024px) {
  body .batcom-header-var-5 .batcom-accounticon__icon::before {
    transform: translateY(7px);
  }
}
body .batcom-header-var-5 .batcom-header__link {
  margin-left: 16px;
}
@media only screen and (min-width: 1024px) {
  body .batcom-header-var-5 .batcom-header__link {
    margin-left: 22px;
  }
}
body .batcom-header-var-5 .batcom-header__link #icon-location > p {
  font-size: 0.75rem;
  transform: translateY(0);
}
@media only screen and (min-width: 1024px) {
  body .batcom-header-var-5 .batcom-header__link #icon-location > p {
    transform: translateY(2px);
  }
}
body .batcom-header-var-5 .batcom-header__link #icon-location > p * {
  font-size: 0.75rem;
}
body .batcom-header-var-5 .batcom-header__link #icon-location::before {
  transform: translateY(0);
}
@media only screen and (min-width: 1024px) {
  body .batcom-header-var-5 .batcom-header__link #icon-location::before {
    transform: translateY(6px);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header-var-5 .batcom-canada-minibasket {
    margin-left: 22px;
  }
}
body .batcom-header-var-5 .batcom-languagenavigation--header {
  margin-right: 0;
}
body .batcom-header-var-5 .bat-header__rewards-count {
  position: absolute;
  top: -2px;
  right: -13px;
  border-radius: 20px;
  background: #027f9c;
  width: 44px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .batcom-header-var-5 .bat-header__rewards-count .bat-header__reward-points {
  font-weight: 400;
  font-size: 8px;
  line-height: 9px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  padding: 3px 6px;
}

@media only screen and (min-width: 768px) {
  body .batcom-header-var-vuseCanada {
    max-width: 1200px;
    align-self: flex-start;
    margin: 0 auto;
  }
  body .batcom-header-var-vuseCanada .batcom-container--children-inline .cmp-container {
    max-width: 1200px !important; /* stylelint-disable-line */
    margin: 0 auto !important; /* stylelint-disable-line */
  }
  body .batcom-header-var-vuseCanada .batcom-content {
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1024px) {
  body .batcom-header-var-vuseCanada .batcom-navigation {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1024px) {
  body .batcom-header-var-vuseCanada .batcom-navigation .cmp-navigation {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-header-var-vuseCanada .batcom-navigation .cmp-navigation > .cmp-navigation__group {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
  }
  body .batcom-header-var-vuseCanada .batcom-navigation .cmp-navigation__item--mega-nav {
    flex: 0 1 auto;
  }
  body .batcom-header-var-vuseCanada .batcom-navigation .cmp-navigation__item--mega-nav .cmp-navigation__mega-nav-desktop-flyout {
    border: none;
    padding: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 100vw;
    top: 60px;
  }
  body .batcom-header-var-vuseCanada .batcom-navigation .cmp-navigation__item--level-0 .cmp-navigation__item-link {
    border: none;
    align-items: center !important; /* stylelint-disable-line */
    display: flex;
    justify-content: center;
    padding: 18px 0 20px;
    font-family: var(--batcom-font-face-1-name);
    font-weight: 325;
  }
  body .batcom-header-var-vuseCanada .batcom-navigation .cmp-navigation__item--level-0 .cmp-navigation__item-link .cmp-navigation__item-title {
    margin-top: 0;
  }
  body .batcom-header-var-vuseCanada .batcom-navigation .cmp-navigation__item--level-0:not(:first-child) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header-var-vuseCanada .cmp-navigation {
    padding: 0;
    width: 375px;
    left: -100%;
    transition: left 0.25s ease !important; /* stylelint-disable-line */
    transform: none;
  }
  body .batcom-header-var-vuseCanada .cmp-navigation.visible {
    left: 0;
  }
  body .batcom-header-var-vuseCanada .batcom-navigation .cmp-navigation__item--level-0 {
    border-bottom-color: #dedede;
  }
  body .batcom-header-var-vuseCanada .batcom-navigation .cmp-navigation__item--level-0 .cmp-navigation__item-link {
    font-size: 0.875rem;
    line-height: 1.375;
    border-bottom-color: #dedede;
  }
  body .batcom-header-var-vuseCanada .batcom-navigation .cmp-navigation__item--level-0 .cmp-navigation__item-link:hover {
    color: #000;
  }
  body .batcom-header-var-vuseCanada .cmp-navigation__item--mega-nav .cmp-navigation__mobile-meganav {
    width: 100%;
  }
  body .batcom-header-var-vuseCanada .cmp-navigation__item--mega-nav .cmp-navigation__mobile-meganav .batcom-content {
    max-width: 100%;
    width: 100%;
  }
  body .batcom-header-var-vuseCanada .batcom-header__links #icon-location a::before {
    transform: translateY(-3px);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header-var-vuseCanada .batcom-header__links #icon-location::before {
    display: none;
  }
  body .batcom-header-var-vuseCanada .batcom-header__links #icon-location a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  body .batcom-header-var-vuseCanada .batcom-header__links #icon-location a::before {
    content: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/location.svg");
    display: inline-block;
    width: 16px;
    height: 16px;
    transform: translateY(1px);
    margin-bottom: 7px;
  }
  body .batcom-header-var-vuseCanada .batcom-header__links #icon-location > p {
    transform: translateY(3px);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header__links #icon-location a {
    position: relative;
    flex-direction: column;
    align-items: center;
  }
  body .batcom-header__links #icon-location a::before {
    content: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/location.svg");
    display: inline-block;
    width: 16px;
    height: 16px;
    transform: translateY(3px);
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  body .batcom-container:has(#container-nopadding) {
    padding: 0;
  }
}

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

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

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

body.product-list {
  background-color: #f1f1f1;
}
body .cmp-list__product-list .cmp-list__item-layout-product {
  background-color: #fff;
}
body .product-card .product-card__content {
  position: relative;
}
body .product-card .product-card__image .cmp-image__image {
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (min-width: 768px) {
  body .product-card .product-card__button {
    bottom: 0;
  }
}
body .cmp-list__carousel .product-card .product-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.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;
  font-family: var(--batcom-font-face-2-name);
  font-weight: var(--batcom-typography-anchor-weight);
  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 {
  --bg-silver-color: var(--batcom-color-palette-bg-silver, #b4c7d8);
  --bg-gold-color: var(--batcom-color-palette-bg-gold, #f7b549);
}
body .batcom-bff-subscription-tiercard__items {
  gap: 6px;
}
body .batcom-bff-subscription-tiercard__item {
  text-align: center;
  background: var(--batcom-color-palette-surface-neutral);
  color: var(--batcom-color-palette-text-body);
  border: 1px solid var(--batcom-color-palette-3-inverted);
  border-radius: 16px;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-subscription-tiercard__item {
    flex: 1 1 calc(33.333% - 6px);
    max-width: calc(33.333% - 6px);
  }
}
body .batcom-bff-subscription-tiercard__header {
  border-radius: 16px 16px 0 0;
  padding: 20px 0;
}
body .batcom-bff-subscription-tiercard__sub-heading {
  margin: 15px 0;
}
body .batcom-bff-subscription-tiercard__footer {
  padding: 10px 32px;
  border: 0;
}
body .batcom-bff-subscription-tiercard__plan-label {
  padding-left: 8px;
}
body .batcom-bff-subscription-tiercard__wrapper {
  justify-content: center;
}
body .batcom-bff-subscription-tiercard__cta-button {
  background: var(--primary-default-color);
}
body .batcom-bff-subscription-tiercard__cta-button:hover {
  background: var(--batcom-color-button-primary-bg-hover);
}
body .batcom-bff-subscription-tiercard__cta-button-active::after {
  border-right: 3px solid var(--batcom-color-palette-text-body);
  border-bottom: 3px solid var(--batcom-color-palette-text-body);
}
body .batcom-bff-subscription-tiercard .bronze .batcom-bff-subscription-tiercard__header {
  background: var(--batcom-color-palette-3-inverted);
}
body .batcom-bff-subscription-tiercard .silver {
  border-color: var(--bg-silver-color);
}
body .batcom-bff-subscription-tiercard .silver .batcom-bff-subscription-tiercard__header {
  background: var(--bg-silver-color);
}
body .batcom-bff-subscription-tiercard .gold {
  border-color: var(--bg-gold-color);
}
body .batcom-bff-subscription-tiercard .gold .batcom-bff-subscription-tiercard__header {
  background: var(--bg-gold-color);
}
body .batcom-bff-subscription-tiercard .bronze .batcom-bff-subscription-tiercard__cta-button,
body .batcom-bff-subscription-tiercard .silver .batcom-bff-subscription-tiercard__cta-button,
body .batcom-bff-subscription-tiercard .gold .batcom-bff-subscription-tiercard__cta-button {
  background: var(--primary-default-color);
}
body .batcom-bff-subscription-tiercard .bronze .batcom-bff-subscription-tiercard__cta-button:hover,
body .batcom-bff-subscription-tiercard .silver .batcom-bff-subscription-tiercard__cta-button:hover,
body .batcom-bff-subscription-tiercard .gold .batcom-bff-subscription-tiercard__cta-button:hover {
  background: var(--batcom-color-button-primary-bg-hover);
}
body .batcom-bff-subscription-tiercard .bronze .batcom-bff-subscription-tiercard__cta-button-active::after,
body .batcom-bff-subscription-tiercard .silver .batcom-bff-subscription-tiercard__cta-button-active::after,
body .batcom-bff-subscription-tiercard .gold .batcom-bff-subscription-tiercard__cta-button-active::after {
  border-color: var(--batcom-color-palette-text-body);
}
body .batcom-bff-subscription-tiercard .bronze,
body .batcom-bff-subscription-tiercard .silver,
body .batcom-bff-subscription-tiercard .gold {
  background: var(--batcom-color-palette-surface-neutral);
  color: var(--batcom-color-palette-text-body);
}

body .batcom-bff-subscription-product-listing .product-card__buy-operations {
  border-color: var(--batcom-color-button-secondary-border);
}
body .batcom-bff-subscription-product-listing .product-card__buy-quantityBtn,
body .batcom-bff-subscription-product-listing .product-card__buy-quantityInput,
body .batcom-bff-subscription-product-listing .cmp-list .product-card__name .product-card__name {
  color: var(--batcom-color-body-text);
}
body .batcom-bff-subscription-product-listing .cmp-list .product-card__name {
  text-align: left;
  color: var(--batcom-color-body-text);
}
body .batcom-bff-subscription-summary-stickybar {
  background: var(--batcom-color-palette-bg-dark-blue, #26376b);
}
body .batcom-bff-subscription-summary-stickybar .get__basket-cta,
body .batcom-bff-subscription-summary-stickybar .checkout__btn-cta {
  color: var(--batcom-color-button-primary-bg-inverted);
  border-color: var(--batcom-color-button-primary-bg-inverted);
}
body .batcom-bff-subscription-summary-stickybar .buy__btn-cta {
  background: var(--batcom-color-button-primary-bg-inverted);
}

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;
}
@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;
  letter-spacing: 0.063rem;
  font-weight: var(--batcom-typography-button-weight, 400);
  text-transform: uppercase;
  padding: 10px 20px;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal .cmp-teaser__action-link {
    font-size: var(--batcom-typography-button-size-tablet);
    line-height: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-teaser-horizontal .cmp-teaser__action-link {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-teaser-horizontal .cmp-teaser__action-link:focus {
  outline: none;
}
body .batcom-teaser-horizontal .cmp-teaser__action-link:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
body .batcom-teaser-horizontal .cmp-teaser__action-link {
  margin-top: 0;
  margin-bottom: 0;
  height: -moz-fit-content;
  height: fit-content;
}
body .batcom-teaser-horizontal .cmp-teaser__action-link:nth-child(2) {
  --batcom-button-text: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-secondary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover-inverted);
  --batcom-button-icon: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-secondary-border-radius);
}
.batcom-container--primary-dark body .batcom-teaser-horizontal .cmp-teaser__action-link:nth-child(2), .batcom-container--secondary-dark body .batcom-teaser-horizontal .cmp-teaser__action-link:nth-child(2), .batcom-container--tertiary-dark body .batcom-teaser-horizontal .cmp-teaser__action-link:nth-child(2) {
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-secondary-border);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover);
}
.batcom-container--primary-dark body .batcom-teaser-horizontal .cmp-teaser__action-link:nth-child(2) .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark body .batcom-teaser-horizontal .cmp-teaser__action-link:nth-child(2) .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark body .batcom-teaser-horizontal .cmp-teaser__action-link:nth-child(2) .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-secondary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover);
}
body .batcom-teaser-horizontal .extra-secondary-button .cmp-teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-secondary-border);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover);
  --batcom-button-icon: var(--batcom-color-button-secondary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-secondary-border-radius);
}
.batcom-container--primary-dark body .batcom-teaser-horizontal .extra-secondary-button .cmp-teaser__action-link, .batcom-container--secondary-dark body .batcom-teaser-horizontal .extra-secondary-button .cmp-teaser__action-link, .batcom-container--tertiary-dark body .batcom-teaser-horizontal .extra-secondary-button .cmp-teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-secondary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover-inverted);
}
.batcom-container--primary-dark body .batcom-teaser-horizontal .extra-secondary-button .cmp-teaser__action-link .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark body .batcom-teaser-horizontal .extra-secondary-button .cmp-teaser__action-link .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark body .batcom-teaser-horizontal .extra-secondary-button .cmp-teaser__action-link .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover-inverted);
}
.batcom-container--primary-dark body .batcom-teaser-horizontal .extra-secondary-button .cmp-teaser__action-link option, .batcom-container--secondary-dark body .batcom-teaser-horizontal .extra-secondary-button .cmp-teaser__action-link option, .batcom-container--tertiary-dark body .batcom-teaser-horizontal .extra-secondary-button .cmp-teaser__action-link option {
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  color: var(--batcom-button-text, #000) !important; /* stylelint-disable-line */
}
body .batcom-teaser-horizontal .cmp-teaser__action-container {
  margin-top: 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-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 p {
  display: none;
}
@media only screen and (min-width: 1280px) {
  body .batcom-teaser-stage .cmp-teaser__description p {
    height: auto;
    overflow: hidden;
    display: -webkit-box; /* stylelint-disable-line */
    -webkit-line-clamp: 3; /* stylelint-disable-line */
    -webkit-box-orient: vertical; /* stylelint-disable-line */
    display: block;
  }
}
body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child, body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child,
body .batcom-teaser-stage .cmp-teaser__action-link {
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
  font-family: var(--batcom-typography-button-family), sans-serif;
  letter-spacing: 0.063rem;
  font-weight: var(--batcom-typography-button-weight, 400);
  text-transform: uppercase;
  padding: 10px 20px;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child, body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child,
  body .batcom-teaser-stage .cmp-teaser__action-link {
    font-size: var(--batcom-typography-button-size-tablet);
    line-height: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child, body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child,
  body .batcom-teaser-stage .cmp-teaser__action-link {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child:focus, body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child:focus,
body .batcom-teaser-stage .cmp-teaser__action-link:focus {
  outline: none;
}
body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child:focus-visible, body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child:focus-visible,
body .batcom-teaser-stage .cmp-teaser__action-link:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child, body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child,
body .batcom-teaser-stage .cmp-teaser__action-link {
  padding: 5px 16px;
  margin: 0;
}
@media only screen and (max-width: 479px) {
  body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child, body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child,
  body .batcom-teaser-stage .cmp-teaser__action-link {
    width: -moz-fit-content;
    width: fit-content;
  }
}
body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child {
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-secondary-border);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover);
  --batcom-button-icon: var(--batcom-color-button-secondary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-secondary-border-radius);
}
.batcom-container--primary-dark body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child, .batcom-container--secondary-dark body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child, .batcom-container--tertiary-dark body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child {
  --batcom-button-text: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-secondary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover-inverted);
}
.batcom-container--primary-dark body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover-inverted);
}
.batcom-container--primary-dark body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child option, .batcom-container--secondary-dark body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child option, .batcom-container--tertiary-dark body .batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child option {
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  color: var(--batcom-button-text, #000) !important; /* stylelint-disable-line */
}
body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child {
  --batcom-button-text: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-secondary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover-inverted);
  --batcom-button-icon: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-secondary-border-radius);
}
.batcom-container--primary-dark body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child, .batcom-container--secondary-dark body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child, .batcom-container--tertiary-dark body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child {
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-secondary-border);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover);
}
.batcom-container--primary-dark body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark body .batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-secondary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover);
}
body .batcom-teaser-stage .cmp-teaser__action-link:first-child::after {
  display: none;
}
body .batcom-teaser-stage .cmp-teaser__image + .cmp-teaser__content > .cmp-teaser__action-container {
  width: auto;
}
@media only screen and (max-width: 479px) {
  body .batcom-teaser-stage .cmp-teaser__image + .cmp-teaser__content > .cmp-teaser__action-container {
    position: relative;
    bottom: 0;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-stage .cmp-teaser__action-link {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1680px) {
  body .batcom-teaser-stage .cmp-teaser__action-link {
    margin-top: 24px;
  }
}
body .batcom-teaser-stage .cmp-teaser__background {
  display: none;
}
@media only screen and (max-width: 767px) {
  body .batcom-columncontrol .batcom-teaser-stage {
    margin-left: calc(var(--batcom-layout-content-left-right-margin) / 2 * -1);
    width: 100vw;
  }
}
body .batcom-teaser-horizontal--hometop .cmp-teaser {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal--hometop .cmp-teaser {
    flex-direction: row;
  }
}
body .batcom-teaser-horizontal--hometop .cmp-teaser .cmp-teaser__image {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal--hometop .cmp-teaser .cmp-teaser__image {
    width: 40%;
    min-width: 40%;
  }
}
body .batcom-teaser-horizontal--hometop .cmp-teaser .cmp-teaser__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 20px 20px 48px;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal--hometop .cmp-teaser .cmp-teaser__content {
    flex: 1;
    padding-left: min(157px, 10%);
    padding-right: 20px;
  }
}
body .batcom-teaser-horizontal--hometop .cmp-teaser .cmp-teaser__description {
  display: block;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal--hometop.batcom-imagelayout--right .cmp-teaser {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-horizontal--hometop.batcom-imagelayout--right .cmp-teaser .cmp-teaser__content {
    padding-left: 20px;
    padding-right: min(157px, 10%);
  }
}
body .batcom-teaser.batcom-teaser-horizontal--teaser-image-left .cmp-teaser {
  display: flex;
  padding: 40px 33px;
  gap: 36px;
  border-radius: 24px;
  background: linear-gradient(180deg, #061d2e 1.71%, #22405d 100%);
  box-shadow: 0 2px 10px 1px rgba(16, 51, 77, 0.6);
  backdrop-filter: blur(28.3px);
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser.batcom-teaser-horizontal--teaser-image-left .cmp-teaser {
    padding: 0 115px 0 80px;
    gap: 137px;
    border-radius: 40px;
    flex-direction: row;
    background: linear-gradient(180deg, #22405d 0%, #061d2e 98.29%);
    min-height: 458px;
  }
}
body .batcom-teaser.batcom-teaser-horizontal--teaser-image-left .cmp-teaser__image {
  width: 100%;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser.batcom-teaser-horizontal--teaser-image-left .cmp-teaser__image {
    width: 44.5%;
  }
}
body .batcom-teaser.batcom-teaser-horizontal--teaser-image-left .cmp-teaser__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser.batcom-teaser-horizontal--teaser-image-left .cmp-teaser__content {
    text-align: start;
    padding: 0 0 78.26px;
  }
}
body .batcom-teaser.batcom-teaser-horizontal--teaser-image-left .cmp-teaser__title {
  font-family: var(--batcom-font-face-3-name, "Gotham-Bold");
  font-size: 24px;
  line-height: 120%;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  body .batcom-teaser.batcom-teaser-horizontal--teaser-image-left .cmp-teaser__title {
    font-family: var(--batcom-font-face-2-name, "Gotham-Medium");
    font-size: 32px;
    font-weight: 500;
  }
}
body .batcom-teaser.batcom-teaser-horizontal--teaser-image-left .cmp-teaser__description {
  font-family: var(--batcom-font-face-1-name, "Gotham-Book");
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  color: #fff;
  margin-top: 16px;
  -webkit-line-clamp: none;
}
@media only screen and (min-width: 1024px) {
  body .batcom-teaser.batcom-teaser-horizontal--teaser-image-left .cmp-teaser__description {
    font-size: 20px;
    text-align: start;
    margin-top: 24px;
  }
}
body .batcom-teaser.batcom-teaser-horizontal--teaser-image-left .cmp-teaser__action-container {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser.batcom-teaser-horizontal--teaser-image-left .cmp-teaser__action-container {
    width: auto;
  }
}
body .batcom-teaser.batcom-teaser-horizontal--teaser-image-left .cmp-teaser__action-link {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  font-family: var(--batcom-font-face-3-name, "Gotham-Bold");
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 6px 0;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  width: 100%;
  margin: 24px 0 0;
  letter-spacing: 1px;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser.batcom-teaser-horizontal--teaser-image-left .cmp-teaser__action-link {
    padding: 10px 24px;
    width: auto;
    margin: 48px 0 0;
  }
}

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