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-accordion .cmp-accordion__item {
  border-bottom: 1px solid var(--batcom-color-palette-3-inverted);
  border-radius: initial;
}
body .batcom-accordion .cmp-accordion__item:first-of-type {
  border-top: 1px solid var(--batcom-color-palette-3-inverted);
}
body .batcom-accordion .cmp-accordion__item .cmp-accordion__button {
  padding-inline: initial;
}
body .batcom-accordion--transparent .cmp-accordion__button {
  background-color: initial;
}
body .batcom-accordion .cmp-accordion__item {
  border-bottom: 1px solid var(--batcom-color-palette-3-inverted);
  border-radius: initial;
}
body .batcom-accordion .cmp-accordion__item:first-of-type {
  border-top: 1px solid var(--batcom-color-palette-3-inverted);
}
body .batcom-accordion .cmp-accordion__item .cmp-accordion__button {
  padding-inline: initial;
}

body .batcom-bff-accounticon__nav {
  z-index: 8;
}

body .batcom-carousel--arrow-bottom .swiper-button-prev, body .batcom-carousel--arrow-bottom .swiper-button-next, body .batcom-carousel--arrow-middle .swiper-button-prev, body .batcom-carousel--arrow-middle .swiper-button-next {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background-color: var(--batcom-color-palette-2-inverted);
  -webkit-mask-image: none;
          mask-image: none;
}
@media only screen and (min-width: 768px) {
  body .batcom-carousel--arrow-bottom .swiper-button-prev, body .batcom-carousel--arrow-bottom .swiper-button-next, body .batcom-carousel--arrow-middle .swiper-button-prev, body .batcom-carousel--arrow-middle .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
body .batcom-carousel--arrow-bottom .swiper-button-prev::after, body .batcom-carousel--arrow-bottom .swiper-button-next::after, body .batcom-carousel--arrow-middle .swiper-button-prev::after, body .batcom-carousel--arrow-middle .swiper-button-next::after {
  content: "";
  width: 16px;
  height: 16px;
  background-color: var(--batcom-color-palette-5);
  -webkit-mask-size: 7px 12px;
          mask-size: 7px 12px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media only screen and (min-width: 768px) {
  body .batcom-carousel--arrow-bottom .swiper-button-prev::after, body .batcom-carousel--arrow-bottom .swiper-button-next::after, body .batcom-carousel--arrow-middle .swiper-button-prev::after, body .batcom-carousel--arrow-middle .swiper-button-next::after {
    width: 24px;
    height: 24px;
    -webkit-mask-size: 11px 20px;
            mask-size: 11px 20px;
  }
}
body .batcom-carousel--arrow-bottom .swiper-button-prev::after, body .batcom-carousel--arrow-middle .swiper-button-prev::after {
  -webkit-mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-left.svg");
          mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-left.svg");
}
body .batcom-carousel--arrow-bottom .swiper-button-next::after, body .batcom-carousel--arrow-middle .swiper-button-next::after {
  -webkit-mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-right.svg");
          mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-right.svg");
}
body .batcom-carousel--arrow-bottom .swiper-button-prev, body .batcom-carousel--arrow-bottom .swiper-button-next {
  bottom: 44px;
  transform: translateY(50%);
}
@media only screen and (min-width: 768px) {
  body .batcom-carousel--arrow-bottom .swiper-button-prev, body .batcom-carousel--arrow-bottom .swiper-button-next {
    bottom: 70px;
  }
}
body .batcom-carousel--arrow-bottom .swiper-button-prev {
  left: 20px;
}
@media only screen and (min-width: 768px) {
  body .batcom-carousel--arrow-bottom .swiper-button-prev {
    left: 25%;
  }
}
body .batcom-carousel--arrow-bottom .swiper-button-next {
  right: 20px;
}
@media only screen and (min-width: 768px) {
  body .batcom-carousel--arrow-bottom .swiper-button-next {
    right: 25%;
  }
}
body .batcom-carousel--arrow-middle .swiper-button-prev, body .batcom-carousel--arrow-middle .swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
}
body .batcom-carousel--arrow-middle .swiper-button-prev {
  left: 10px;
}
@media only screen and (min-width: 768px) {
  body .batcom-carousel--arrow-middle .swiper-button-prev {
    left: 20px;
  }
}
body .batcom-carousel--arrow-middle .swiper-button-next {
  right: 10px;
}
@media only screen and (min-width: 768px) {
  body .batcom-carousel--arrow-middle .swiper-button-next {
    right: 20px;
  }
}
body .batcom-carousel--bullet-lines .swiper-pagination, body .batcom-carousel--bullet-dots .swiper-pagination {
  display: flex;
  justify-content: center;
}
body .batcom-carousel--bullet-lines .swiper-pagination .swiper-pagination-bullet, body .batcom-carousel--bullet-dots .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  opacity: 1;
}
body .batcom-carousel--bullet-lines .swiper-pagination {
  gap: 15px;
  bottom: 50px;
}
@media only screen and (min-width: 768px) {
  body .batcom-carousel--bullet-lines .swiper-pagination {
    bottom: 41px;
  }
}
body .batcom-carousel--bullet-lines .swiper-pagination .swiper-pagination-bullet {
  width: 32px;
  height: 6px;
  border-radius: 0;
  background-color: var(--batcom-color-palette-4-inverted);
}
body .batcom-carousel--bullet-lines .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--batcom-color-palette-11);
}
body .batcom-carousel--bullet-dots .swiper-pagination {
  gap: 16px;
  bottom: 44px;
  transform: translateY(50%);
}
@media only screen and (min-width: 768px) {
  body .batcom-carousel--bullet-dots .swiper-pagination {
    bottom: 70px;
  }
}
body .batcom-carousel--bullet-dots .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--batcom-color-palette-3-inverted);
}
body .batcom-carousel--bullet-dots .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--batcom-color-palette-1-inverted);
}
body .batcom-carousel--full-width .cmp-carousel {
  margin-left: calc(-1 * var(--batcom-layout-content-left-right-margin) / 2);
  margin-right: calc(-1 * var(--batcom-layout-content-left-right-margin) / 2);
}
@media only screen and (min-width: 1024px) {
  body .batcom-carousel--full-width .cmp-carousel {
    margin-left: calc(-1 * (var(--batcom-layout-content-left-right-margin)));
    margin-right: calc(-1 * (var(--batcom-layout-content-left-right-margin)));
  }
}
@media screen and (min-width: 1360px) {
  body .batcom-carousel--full-width .cmp-carousel {
    margin-left: calc(-1 * (100vw - var(--batcom-layout-content-max-width)) / 2);
    margin-right: calc(-1 * (100vw - var(--batcom-layout-content-max-width)) / 2);
  }
}

body .batcom-teaser--text-left .cmp-teaser__content {
  bottom: 60px;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser--text-left .cmp-teaser__content {
    left: 0;
    bottom: initial;
  }
}
body .batcom-teaser--text-right .cmp-teaser__content {
  top: 50px;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser--text-right .cmp-teaser__content {
    right: 0;
    top: initial;
  }
}
body .batcom-teaser--text-left, body .batcom-teaser--text-right {
  position: relative;
}
body .batcom-teaser--text-left .cmp-image, body .batcom-teaser--text-right .cmp-image {
  margin-left: calc(-1 * var(--batcom-layout-content-left-right-margin) / 2);
  margin-right: calc(-1 * var(--batcom-layout-content-left-right-margin) / 2);
}
@media only screen and (min-width: 1024px) {
  body .batcom-teaser--text-left .cmp-image, body .batcom-teaser--text-right .cmp-image {
    margin-left: calc(-1 * (var(--batcom-layout-content-left-right-margin)));
    margin-right: calc(-1 * (var(--batcom-layout-content-left-right-margin)));
  }
}
@media screen and (min-width: 1360px) {
  body .batcom-teaser--text-left .cmp-image, body .batcom-teaser--text-right .cmp-image {
    margin-left: calc(-1 * (100vw - var(--batcom-layout-content-max-width)) / 2);
    margin-right: calc(-1 * (100vw - var(--batcom-layout-content-max-width)) / 2);
  }
}
body .batcom-teaser--text-left .cmp-image__image, body .batcom-teaser--text-right .cmp-image__image {
  min-height: 575px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser--text-left .cmp-image__image, body .batcom-teaser--text-right .cmp-image__image {
    min-height: 100%;
  }
}
body .batcom-teaser--text-left .cmp-teaser__content, body .batcom-teaser--text-right .cmp-teaser__content {
  position: absolute;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser--text-left .cmp-teaser__content, body .batcom-teaser--text-right .cmp-teaser__content {
    width: 449px;
    top: 50%;
    transform: translateY(-50%);
  }
}
body .batcom-teaser--text-left .cmp-teaser__content .cmp-teaser__title, body .batcom-teaser--text-right .cmp-teaser__content .cmp-teaser__title {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 34px;
  line-height: 34px;
  color: var(--batcom-color-palette-11);
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser--text-left .cmp-teaser__content .cmp-teaser__title, body .batcom-teaser--text-right .cmp-teaser__content .cmp-teaser__title {
    font-size: 44px;
    line-height: 48px;
  }
}
body .batcom-teaser--text-left .cmp-teaser__content .cmp-teaser__description, body .batcom-teaser--text-right .cmp-teaser__content .cmp-teaser__description {
  height: initial;
  overflow: initial;
  display: block;
  -webkit-line-clamp: initial;
  -webkit-box-orient: initial;
  line-height: inherit;
  margin-top: 12px;
  color: var(--batcom-color-palette-2);
}
body .batcom-teaser--text-left .cmp-teaser__content .cmp-teaser__action-link, body .batcom-teaser--text-right .cmp-teaser__content .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-button-icon: var(--batcom-color-button-primary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-primary-text-hover-inverted);
  --batcom-button-outline: var(--batcom-color-button-outline-inverted, #0761cd);
  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--text-left .cmp-teaser__content .cmp-teaser__action-link, body .batcom-teaser--text-right .cmp-teaser__content .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--text-left .cmp-teaser__content .cmp-teaser__action-link span, body .batcom-teaser--text-right .cmp-teaser__content .cmp-teaser__action-link span {
  color: var(--batcom-button-text);
}
@media (hover: hover) {
  body .batcom-teaser--text-left .cmp-teaser__content .cmp-teaser__action-link:hover, body .batcom-teaser--text-right .cmp-teaser__content .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--text-left .cmp-teaser__content .cmp-teaser__action-link:hover span, body .batcom-teaser--text-right .cmp-teaser__content .cmp-teaser__action-link:hover span {
    color: var(--batcom-button-text-hover);
  }
  body .batcom-teaser--text-left .cmp-teaser__content .cmp-teaser__action-link:hover .cmp-button__svg :is(svg, g, path), body .batcom-teaser--text-right .cmp-teaser__content .cmp-teaser__action-link:hover .cmp-button__svg :is(svg, g, path) {
    fill: var(--batcom-button-icon-hover);
  }
}
body .batcom-teaser--text-left .cmp-teaser__content .cmp-teaser__action-link__text + .cmp-button__svg, body .batcom-teaser--text-right .cmp-teaser__content .cmp-teaser__action-link__text + .cmp-button__svg {
  margin-left: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body .batcom-teaser--text-left .cmp-teaser__content .cmp-teaser__action-link__svg :is(svg, g, path), body .batcom-teaser--text-right .cmp-teaser__content .cmp-teaser__action-link__svg :is(svg, g, path) {
  fill: var(--batcom-button-icon);
  filter: none;
}
body .batcom-teaser--text-left .cmp-teaser__content .cmp-teaser__action-link__svg svg, body .batcom-teaser--text-right .cmp-teaser__content .cmp-teaser__action-link__svg svg {
  height: 16px;
}
.cmp-button__svg body .batcom-teaser--text-left .cmp-teaser__content .cmp-teaser__action-link__svg svg, .cmp-button__svg body .batcom-teaser--text-right .cmp-teaser__content .cmp-teaser__action-link__svg svg {
  height: 20px;
}
body .batcom-teaser--text-left .cmp-teaser__content .cmp-teaser__action-link:focus, body .batcom-teaser--text-right .cmp-teaser__content .cmp-teaser__action-link:focus {
  outline: transparent;
}
body .batcom-teaser--text-left .cmp-teaser__content .cmp-teaser__action-link:focus-visible, body .batcom-teaser--text-right .cmp-teaser__content .cmp-teaser__action-link:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
body .batcom-teaser--text-left .cmp-teaser__content .cmp-teaser__action-link, body .batcom-teaser--text-right .cmp-teaser__content .cmp-teaser__action-link {
  padding: 12px 35px;
  border: 0;
  border-radius: 100px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}
body .batcom-teaser--text-left .cmp-teaser__content .cmp-teaser__action-link:hover, body .batcom-teaser--text-right .cmp-teaser__content .cmp-teaser__action-link:hover {
  border: 0;
}
body .batcom-teaser.batcom-teaser-promo-card .cmp-teaser__content-promocard-wrapper {
  padding: 24px 24px 0;
  height: calc(100% - 24px);
}
body .batcom-teaser.batcom-teaser-stage .cmp-teaser__action-link:first-child::after {
  display: none;
}
body .cmp-carousel .batcom-teaser--text-left .cmp-teaser__content, body .cmp-carousel .batcom-teaser--text-right .cmp-teaser__content {
  margin-inline: 44px;
}
@media only screen and (min-width: 768px) {
  body .cmp-carousel .batcom-teaser--text-left .cmp-teaser__content, body .cmp-carousel .batcom-teaser--text-right .cmp-teaser__content {
    margin-inline: 80px;
  }
}
body .cmp-carousel .batcom-teaser--text-left .cmp-image, body .cmp-carousel .batcom-teaser--text-right .cmp-image {
  margin-inline: 0;
}
@media only screen and (min-width: 1280px) {
  body .batcom-carousel--full-width .cmp-carousel .batcom-teaser--text-left .cmp-teaser__content {
    margin-inline: 0;
    left: calc((100vw - var(--batcom-layout-content-max-width)) / 2);
  }
}
@media only screen and (min-width: 1280px) {
  body .batcom-carousel--full-width .cmp-carousel .batcom-teaser--text-right .cmp-teaser__content {
    margin-inline: 0;
    right: calc((100vw - var(--batcom-layout-content-max-width)) / 2);
  }
}

body .cmp-experiencefragment--product-hero {
  padding-top: 48px;
}
body .cmp-experiencefragment--product-hero:has(#trial-address-approved) {
  padding: 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 ul {
  list-style-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/glo-arrow.svg");
  list-style-position: outside;
  padding-left: 15px;
}
body .cmp-experiencefragment--product-hero #product-hero-container .batcom-text ul li {
  padding-left: 10px;
  text-indent: 0;
}
@media only screen and (max-width: 767px) {
  body .cmp-experiencefragment--product-hero #product-hero-container {
    display: flex;
    flex-direction: column;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-title {
    order: 0;
    margin-bottom: 0;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-title h3 {
    margin-bottom: var(--batcom-layout-spacing-between-components-mobile);
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-image {
    order: 1;
    margin-bottom: var(--batcom-layout-spacing-between-components-mobile);
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .cmp-image__image {
    height: 240px;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-title:has(.extra-product-price) {
    order: 2;
    margin-bottom: var(--batcom-layout-spacing-bottom-medium-mobile);
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-dynamicproduct,
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-button {
    order: 3;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .cmp-button {
    display: block;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-text {
    order: 4;
  }
}
@media only screen and (min-width: 768px) {
  body .cmp-experiencefragment--product-hero #product-hero-container {
    display: grid;
    grid-template-rows: repeat(4, auto) 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 80px;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-image {
    grid-row: 1/-1;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-button {
    grid-column: 2;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .cmp-image__image {
    height: 318px;
  }
}
@media only screen and (min-width: 1024px) {
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-button {
    margin-bottom: 32px;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-image {
    padding: 20px 50px 20px 30px;
  }
  body .cmp-experiencefragment--product-hero #product-hero-container .cmp-image__image {
    height: 460px;
  }
}
@media only screen and (min-width: 1680px) {
  body .cmp-experiencefragment--product-hero #product-hero-container .batcom-image {
    padding: 30px 90px 20px 60px;
  }
}
body .cmp-experiencefragment--product-hero .cmp-accordion__panel {
  padding: 16px 0;
}

@media only screen and (max-width: 767px) {
  body .columncontrol__column:not(:has(.cmp-container > [class])) {
    display: none;
  }
}

body .batcom-tabs--clickDisabled .batcom-tabs__tablist-wrapper {
  pointer-events: none;
  cursor: default;
}
body .batcom-tabs__tablist-wrapper {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1px;
}
body .batcom-tabs__tablist-wrapper .cmp-tabs__tablist {
  flex-wrap: nowrap;
}
body .batcom-tabs__tablist-wrapper .cmp-tabs__tab {
  flex: 1;
}
@media only screen and (min-width: 768px) {
  body .batcom-tabs__tablist-wrapper .cmp-tabs__tab {
    padding-left: 16px;
    padding-right: 16px;
  }
}
body .batcom-tabs__tablist-wrapper .cmp-tabs__tab {
  opacity: 1;
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--batcom-color-palette-3-inverted);
}
body .batcom-tabs__tablist-wrapper .cmp-tabs__tab--active {
  margin-bottom: -1.5px;
  border-bottom: 4px solid var(--batcom-color-palette-1);
}
body .batcom-tabs__tablist-wrapper .cmp-tabs__tablist {
  -moz-column-gap: 0;
       column-gap: 0;
}

body .batcom-flyout__body {
  max-height: 100%;
}
body .batcom-flyout__base {
  --icon-color: var(--batcom-color-palette-flyout-icon, #000);
}
body .batcom-flyout__window {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: none;
  max-height: calc(100vh - 30px);
}
body .batcom-flyout__header {
  height: 0;
  padding: 0;
  z-index: 1;
}
body .batcom-flyout__closebutton {
  margin: 20px;
}
body .batcom-flyout__closeicon {
  background-color: var(--icon-color);
}
body .batcom-flyout__body .batcom-flyout__extra-title-padding .batcom-text:first-child {
  padding-right: 20px;
  padding-left: 20px;
}
body .batcom-flyout__mask {
  pointer-events: none;
}

.batcom-loader {
  display: none;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  background-color: var(--batcom-color-miscellaneous-loader-bg);
  z-index: 8;
}
.batcom-loader::after {
  content: "";
  -webkit-mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/loader-icon.svg");
          mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/loader-icon.svg");
  top: 20%;
  width: 100px;
  height: 100px;
  background-color: var(--batcom-color-miscellaneous-loader);
  animation: 0.4s infinite linear rotate-loader;
}
.batcom-loader--active {
  display: flex;
}

@keyframes rotate-loader {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(29deg);
  }
}
.batcom-notification-message {
  padding-block: 16px;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 40px;
}
.batcom-notification-message::before {
  content: "";
  display: block;
  width: 8px;
  border-radius: 4px;
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 8px;
}
.batcom-notification-message--success {
  background-color: var(--batcom-color-form-success-bg);
}
.batcom-notification-message--success::before {
  background-color: var(--batcom-color-form-success);
}
.batcom-notification-message--error {
  background-color: var(--batcom-color-form-error-bg);
}
.batcom-notification-message--error::before {
  background-color: var(--batcom-color-form-error);
}

:root {
  --batcom-button-text-align: center;
}

body .cmp-form .batcom-text,
body .cmp-form .batcom-options,
body .cmp-form .batcom-title {
  margin-bottom: 16px;
}
body .cmp-form .batcom-text:has(> .batcom-hide),
body .cmp-form .batcom-options:has(> .batcom-hide) {
  margin-bottom: 0;
}
body .batcom-options .form-select,
body .batcom-text .cmp-form-text .cmp-form-text__text {
  height: 48px;
  border-radius: 2px;
  font-size: 16px;
  line-height: 22px;
  padding-inline: 16px;
  border: none;
  border-bottom: 1px solid var(--batcom-color-form-input-border-filled);
  color: var(--batcom-color-form-text-input);
  background-color: var(--batcom-color-form-text-bgcolor);
}
body .batcom-options .form-select::-moz-placeholder, body .batcom-text .cmp-form-text .cmp-form-text__text::-moz-placeholder {
  color: var(--batcom-color-form-text-placeholder);
}
body .batcom-options .form-select::placeholder,
body .batcom-text .cmp-form-text .cmp-form-text__text::placeholder {
  color: var(--batcom-color-form-text-placeholder);
}
body .batcom-options .form-select:-moz-placeholder, body .batcom-text .cmp-form-text .cmp-form-text__text:-moz-placeholder {
  border-bottom-color: var(--batcom-color-form-input-border);
}
body .batcom-options .form-select:placeholder-shown,
body .batcom-text .cmp-form-text .cmp-form-text__text:placeholder-shown {
  border-bottom-color: var(--batcom-color-form-input-border);
}
body .batcom-options .form-select:focus,
body .batcom-text .cmp-form-text .cmp-form-text__text:focus {
  outline: none;
  border-bottom-color: var(--batcom-color-form-input-border-focused, #2a2a2a);
  border-bottom-width: 2px;
}
body .batcom-options .form-select.invalid-input,
body .batcom-text .cmp-form-text .cmp-form-text__text.invalid-input {
  border: 0;
  border-bottom: 2px solid var(--batcom-color-form-error);
  box-shadow: none;
}
body .batcom-options .form-select {
  padding-right: var(--batcom-layout-form-select-padding-right, 40px);
  overflow: hidden;
  text-overflow: ellipsis;
}
body .cmp-form .batcom-options:has(.form-field-group-radio).hidden {
  display: none;
}
body .cmp-form .batcom-options:has(.form-field-group-radio) .form-field--container {
  border: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
body .cmp-form .batcom-options:has(.form-field-group-radio) .form-field--container .form-title {
  margin-bottom: 16px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  body .cmp-form .batcom-options:has(.form-field-group-radio) .form-label {
    font-size: var(--batcom-typography-x-small-size-mobile);
    line-height: var(--batcom-typography-x-small-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .cmp-form .batcom-options:has(.form-field-group-radio) .form-label {
    font-size: var(--batcom-typography-x-small-size-tablet);
    line-height: var(--batcom-typography-x-small-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .cmp-form .batcom-options:has(.form-field-group-radio) .form-label {
    font-size: var(--batcom-typography-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
body .cmp-form .batcom-options:has(.form-field-group-radio) .form-label {
  padding: 12px 16px;
  border: 1px solid var(--batcom-color-form-radio-border, #dedede);
  background-color: transparent;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  letter-spacing: 1px;
  font-weight: 400;
  color: var(--batcom-color-form-input-border-focused, #2a2a2a);
  transition: background-color 0.3s ease, border 0.3s ease;
  cursor: pointer;
}
body .cmp-form .batcom-options:has(.form-field-group-radio) .form-label:hover {
  background-color: var(--batcom-color-form-radio-selected-bg, rgba(147, 164, 188, 0.24));
}
body .cmp-form .batcom-options:has(.form-field-group-radio) .form-radio {
  display: none;
}
body .cmp-form .batcom-options:has(.form-field-group-radio) .form-radio:checked + .form-label {
  background-color: var(--batcom-color-form-radio-selected-bg, rgba(147, 164, 188, 0.24));
  border: 1px solid transparent;
}
body .cmp-form .batcom-options:has(.form-field-group-radio) .form-radio:disabled + .form-label {
  pointer-events: none;
}
body .cmp-form .batcom-options:has(.form-field-group-radio) .form-radio-icon,
body .cmp-form .batcom-options:has(.form-field-group-radio) .form-hover-circle {
  display: none;
}
body .cmp-form .batcom-options:has(.form-field-group-checkbox) .form-field--option {
  align-items: flex-start;
}
body .cmp-form .batcom-options .form-title,
body .cmp-form .batcom-options .form-label,
body .cmp-form .batcom-text .cmp-form-text label {
  color: var(--batcom-color-form-text-label);
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  display: block;
}
body .cmp-form .form-field-group-checkbox .form-hover-circle {
  display: none;
}
body .cmp-form .form-field-group-checkbox .form-field--option {
  display: flex;
  position: relative;
  align-items: center;
}
body .cmp-form .form-field-group-checkbox .form-field .form-checkbox {
  width: 18px;
  height: 18px;
  margin: 0;
  margin-right: 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
body .cmp-form .form-field-group-checkbox .form-field .form-checkbox ~ .form-checkbox-icon {
  pointer-events: none;
}
body .cmp-form .form-field-group-checkbox .form-field .form-checkbox:checked ~ .form-checkbox-icon {
  -webkit-mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-checkbox/checkbox-enabled-selected-v2.svg");
          mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-checkbox/checkbox-enabled-selected-v2.svg");
  -webkit-mask-size: 18px;
          mask-size: 18px;
  background-color: var(--batcom-color-form-input-border);
}
body .cmp-form .form-field-group-checkbox .form-field .form-label {
  display: initial;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  font-size: 12px;
  line-height: 16px;
  text-transform: initial;
}
body .cmp-form .form-field-group-checkbox .form-field .form-options-icon {
  width: 18px;
  height: 18px;
  background-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-checkbox/checkbox-enabled-unselected-v2.svg");
  position: absolute;
}
body .cmp-form .batcom-text:has(input.cmp-form-text__text[name*=postalcode]) {
  display: inline-block;
  width: calc(50% - 8px);
  vertical-align: bottom;
  float: left;
  clear: none;
}
body .cmp-form .batcom-text:has(input.cmp-form-text__text[name=postalcode1]) {
  margin-right: 16px;
}
body .cmp-form .batcom-text:has(input.cmp-form-text__text[name=postalcode2]) {
  margin-top: 24px;
}
body .cmp-form .form-text__fieldError,
body .cmp-form .form-customError {
  display: none;
  color: var(--batcom-color-form-text-failed);
  font-size: 14px;
  line-height: 18px;
  margin-top: 8px;
}
body .cmp-form .form-text__fieldError--active,
body .cmp-form .form-customError--active {
  display: block;
  margin-top: 4px;
}
body .cmp-form .form-text__fieldError a.link-disabled,
body .cmp-form .form-customError a.link-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
body .cmp-form .batcom-button .cmp-button {
  display: inline-flex;
  letter-spacing: 1px;
  padding: 12px 32px;
  border-radius: 80px;
  border: none;
}
@media only screen and (min-width: 768px) {
  body .cmp-form .batcom-button .cmp-button {
    width: initial;
  }
}
body .cmp-form .batcom-button.batcom-button--disabled .cmp-button {
  background-color: var(--batcom-color-form-button-disabled-bg);
}
body .cmp-form .batcom-button.batcom-button--disabled .cmp-button span {
  color: var(--batcom-color-form-button-disabled-text);
}
body .cmp-form .batcom-button--primary:not(.batcom-button--disabled) .cmp-button,
body .cmp-form .batcom-button--primary:not(.batcom-button--disabled) .cmp-button:hover {
  background-color: var(--batcom-color-form-button-primary-bg);
  border: 0;
}
body .cmp-form .batcom-button--primary:not(.batcom-button--disabled) .cmp-button span,
body .cmp-form .batcom-button--primary:not(.batcom-button--disabled) .cmp-button:hover span {
  color: var(--batcom-color-form-button-primary-text);
}
body .cmp-form .batcom-button--primary:not(.batcom-button--disabled) .cmp-button.batcom-is-success,
body .cmp-form .batcom-button--primary:not(.batcom-button--disabled) .cmp-button:hover.batcom-is-success {
  background-color: var(--batcom-color-form-button-disabled-bg);
}
body .cmp-form .batcom-button--secondary .cmp-button {
  background-color: var(--batcom-color-form-button-secondary-bg);
  border: 2px solid var(--batcom-color-form-button-secondary-border);
}
body .cmp-form .batcom-button--secondary .cmp-button span {
  color: var(--batcom-color-form-button-secondary-text);
}
body .cmp-form .batcom-title {
  font-weight: 700;
}
body .batcom-text .cmp-form-text .cmp-form-text__text[readonly] {
  background-color: var(--batcom-color-form-input-border-filled);
  color: var(--batcom-color-form-input-text-disabled);
  border-bottom: 1px solid var(--batcom-color-form-input-border-disabled);
}
body .cmp-form .batcom-text--layout-half-width {
  display: inline-block;
  width: calc(50% - 8px) !important;
  vertical-align: bottom;
  float: left;
  clear: none;
}
body .cmp-form .batcom-text--layout-third-width {
  display: inline-block;
  width: calc(50% - 8px) !important;
  vertical-align: bottom;
  float: left;
  clear: none;
}
@media only screen and (min-width: 768px) {
  body .cmp-form .batcom-text--layout-third-width {
    width: calc(33.3% - 8px) !important;
  }
}
body .cmp-form .batcom-text--spacing-margin-left {
  margin-left: 16px;
}
body .cmp-form .batcom-text--spacing-margin-top {
  margin-top: 24px;
}

.batcom-bff-form {
  --batcom-color-form-help-text: var(--batcom-color-form-text-placeholder);
}
.batcom-bff-form--small {
  display: flex;
  flex-direction: column;
}
.batcom-bff-form--small > *:not(.batcom-separator) {
  max-width: 470px;
}
.batcom-bff-form .form-field-row__error {
  color: var(--batcom-color-form-error);
}

body .batcom-bff-genericdatatable__header-cell {
  font-size: var(--batcom-typography-small-size-mobile);
  line-height: var(--batcom-typography-small-line-height-mobile);
}
body .batcom-bff-genericdatatable__data-cell {
  font-size: var(--batcom-typography-small-size-mobile);
  line-height: var(--batcom-typography-small-line-height-mobile);
}
body .batcom-bff-genericdatatable__item-cta .batcom-button--primary > .cmp-button,
body .batcom-bff-genericdatatable__item-cta .batcom-button--primary > .cmp-button:hover {
  color: var(--batcom-color-form-button-primary-text) !important;
  border: 2px solid var(--batcom-color-form-button-primary-bg);
}
body .batcom-bff-genericdatatable__item-cta .batcom-button--secondary > .cmp-button {
  color: var(--batcom-color-form-button-secondary-text);
}

body .batcom-bff-addressbook__empty-address, body .batcom-bff-addressbook__verification-label, body .batcom-bff-addressbook__name, body .batcom-bff-addressbook__user-address, body .batcom-bff-addressbook__phn {
  font-size: 14px;
}
body .batcom-bff-addressbook__btn .cmp-button {
  width: 100%;
}
body .batcom-bff-addressbook__address-approved {
  background-color: #edf3e7;
}
body .batcom-bff-addressbook__address-pending {
  background-color: #d9edf8;
}
body .batcom-bff-addressbook__address-rejected {
  background-color: #ffe4e6;
}
body .batcom-bff-addressbook__user-address--standard {
  display: flex;
  flex-direction: column-reverse;
}
body .batcom-title:has(+ .batcom-bff-addressbook) {
  border-bottom: 1px solid var(--batcom-color-palette-7);
  padding-bottom: 12px;
}

body .batcom-bff-bundleproduct .product-card__bundle-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--batcom-color-product-card-border, #dedede);
}
body .batcom-bff-bundleproduct .product-card__bundle-item:first-child {
  border-top: 1px solid var(--batcom-color-product-card-border, #dedede);
}
body .batcom-bff-bundleproduct .product-card__bundle-item:last-child.device-sticks-toggle-design {
  min-height: 100px;
  background-color: #f9f9f9;
  padding: 10px 8px;
}
body .batcom-bff-bundleproduct .product-card__bundle-item:last-child.device-sticks-toggle-design .product-card__bundle-item-operations input {
  background-color: transparent;
  border: none;
}
body .batcom-bff-bundleproduct .product-card__bundle-item:last-child {
  border-bottom: none;
}
body .batcom-bff-bundleproduct .product-card__preauthorization-label {
  font-family: var(--batcom-typography-x-small-family);
  font-size: var(--batcom-typography-x-x-small-size-mobile);
  line-height: var(--batcom-typography-x-small-line-height-mobile);
  font-weight: var(--batcom-typography-x-small-weight);
  color: var(--batcom-color-palette-surface-neutral-darkgrey, #636363);
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-bundleproduct .product-card__preauthorization-label {
    --batcom-typography-small-size-mobile: var(--batcom-typography-x-x-small-size-tablet);
    --batcom-typography-small-line-height-mobile: var(--batcom-typography-x-small-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-bff-bundleproduct .product-card__preauthorization-label {
    --batcom-typography-small-size-mobile: var(--batcom-typography-x-x-small-size-desktop);
    --batcom-typography-small-line-height-mobile: var(--batcom-typography-x-small-line-height-desktop);
  }
}
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial {
  font-family: var(--batcom-typography-large-family);
  font-size: var(--batcom-typography-large-size-mobile);
  line-height: var(--batcom-typography-large-line-height-mobile);
  font-weight: var(--batcom-typography-large-weight);
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial {
    --batcom-typography-small-size-mobile: var(--batcom-typography-large-size-tablet);
    --batcom-typography-small-line-height-mobile: var(--batcom-typography-large-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial {
    --batcom-typography-small-size-mobile: var(--batcom-typography-large-size-desktop);
    --batcom-typography-small-line-height-mobile: var(--batcom-typography-large-line-height-desktop);
  }
}
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .decvice-only-title-wrapper,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .with-sticks-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .decvice-only-title-wrapper span,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .with-sticks-title-wrapper span {
  font-size: 14px;
}
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .decvice-only-title-wrapper .device-tag-wrapper,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .decvice-only-title-wrapper .sticks-tag-wrapper,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .with-sticks-title-wrapper .device-tag-wrapper,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .with-sticks-title-wrapper .sticks-tag-wrapper {
  display: flex;
}
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .decvice-only-title-wrapper .device-title-wrapper,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .decvice-only-title-wrapper .sticks-title-wrapper,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .with-sticks-title-wrapper .device-title-wrapper,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .with-sticks-title-wrapper .sticks-title-wrapper {
  display: flex;
  margin-right: 40px;
}
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .decvice-only-title-wrapper .device-title-wrapper span,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .decvice-only-title-wrapper .sticks-title-wrapper span,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .with-sticks-title-wrapper .device-title-wrapper span,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .with-sticks-title-wrapper .sticks-title-wrapper span {
  font-weight: 500;
}
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .decvice-only-title-wrapper .device-tag-wrapper,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .decvice-only-title-wrapper .sticks-tag-wrapper,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .with-sticks-title-wrapper .device-tag-wrapper,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .with-sticks-title-wrapper .sticks-tag-wrapper {
  display: flex;
  align-items: center;
  border-radius: 20px;
  padding: 2px 4px 2px 3px;
  min-width: 140px;
}
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .decvice-only-title-wrapper .device-tag-wrapper i,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .decvice-only-title-wrapper .sticks-tag-wrapper i,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .with-sticks-title-wrapper .device-tag-wrapper i,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .with-sticks-title-wrapper .sticks-tag-wrapper i {
  width: 16px;
  height: 16px;
  margin-right: 3px;
  margin-bottom: 3px;
}
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .decvice-only-title-wrapper .device-tag-wrapper span,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .decvice-only-title-wrapper .sticks-tag-wrapper span,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .with-sticks-title-wrapper .device-tag-wrapper span,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .with-sticks-title-wrapper .sticks-tag-wrapper span {
  font-size: 12px;
  font-weight: 700;
}
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .decvice-only-title-wrapper input[type=radio],
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .with-sticks-title-wrapper input[type=radio] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-right: 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #000;
  border-radius: 50%;
  position: relative;
}
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .decvice-only-title-wrapper input[type=radio]:checked::after,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .with-sticks-title-wrapper input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000;
}
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .device-tag-text,
body .batcom-bff-bundleproduct .product-card__bundle-item-title-trial.device-sticks-title-design .sticks-tag-text {
  font-weight: 700;
}
body .batcom-bff-bundleproduct .product-card__bundle-item-subtitle, body .batcom-bff-bundleproduct .product-card__bundle-selected-counter, body .batcom-bff-bundleproduct .product-card__bundle-item-quantity-container label {
  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);
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-bundleproduct .product-card__bundle-item-subtitle, body .batcom-bff-bundleproduct .product-card__bundle-selected-counter, body .batcom-bff-bundleproduct .product-card__bundle-item-quantity-container label {
    --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 .batcom-bff-bundleproduct .product-card__bundle-item-subtitle, body .batcom-bff-bundleproduct .product-card__bundle-selected-counter, body .batcom-bff-bundleproduct .product-card__bundle-item-quantity-container label {
    --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 .batcom-bff-bundleproduct .product-card__device-only-counter {
  margin-left: 35px;
}
body .batcom-bff-bundleproduct .product-card__color-selector-title {
  font-family: var(--batcom-typography-button-family);
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-bundleproduct .product-card__color-selector-title {
    --batcom-typography-button-size-mobile: var(--batcom-typography-button-size-tablet);
    --batcom-typography-button-line-height-mobile: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-bff-bundleproduct .product-card__color-selector-title {
    --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-bff-bundleproduct .product-card__bundle-item-quantity-container input[type=checkbox] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin: 0 12px 0 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
body .batcom-bff-bundleproduct .product-card__bundle-item-quantity-container input[type=checkbox]:checked {
  -webkit-mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-checkbox/checkbox-enabled-selected-v2.svg");
          mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-checkbox/checkbox-enabled-selected-v2.svg");
  -webkit-mask-size: 18px;
          mask-size: 18px;
  background-color: var(--batcom-color-form-input-border);
}
body .batcom-bff-bundleproduct .product-card__bundle-item-quantity-container input[type=checkbox]:checked::before {
  display: none;
}

body .batcom-bff-minibasket__empty .cmp-button.batcom-bff-minibasket__continueBtn {
  /* stylelint-disable */
  --batcom-button-text: var(--batcom-color-button-primary-text) !important;
  --batcom-button-text-hover: var(--batcom-color-button-primary-text-hover) !important;
  --batcom-button-bg: var(--batcom-color-button-primary-bg) !important;
  --batcom-button-bg-hover: var(--batcom-color-button-primary-bg-hover) !important;
  --batcom-button-border: var(--batcom-color-button-primary-border) !important;
  --batcom-button-border-hover: var(--batcom-color-button-primary-border-hover) !important;
  /* stylelint-enable */
}
body .batcom-bff-minibasket__empty-hl {
  color: var(--batcom-color-body-text);
  font-size: 1.25rem;
}
body .batcom-bff-minibasket__empty-label {
  color: var(--batcom-color-body-text);
  font-size: 0.875rem;
}
body .batcom-bff-minibasket__bag-value {
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 600;
  font-family: var(--batcom-font-face-2-name);
}
body .batcom-bff-minibasket__title {
  color: var(--batcom-color-body-text);
  font-size: 1.375rem;
  line-height: 1.5rem;
  font-weight: 800;
  letter-spacing: 0;
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-minibasket__title {
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}
body .batcom-bff-minibasket__total-label {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 400;
  color: var(--batcom-color-body-text);
}
@media only screen and (max-width: 767px) {
  body .batcom-bff-minibasket__total-label {
    font-size: 0.875rem;
  }
}
body .batcom-bff-minibasket__total-amount,
body .batcom-bff-minibasket__total .batcom-bff-minibasket__price-suffix-text {
  color: var(--batcom-color-body-text);
  font-weight: 800;
  font-size: 1.0625rem;
  line-height: 1.25rem;
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-minibasket__total-amount,
  body .batcom-bff-minibasket__total .batcom-bff-minibasket__price-suffix-text {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
}
body .batcom-bff-minibasket__total-items {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 400;
  color: var(--batcom-color-body-text);
}
@media only screen and (max-width: 479px) {
  body .batcom-bff-minibasket__product-summary {
    display: inline-block;
  }
}
body .batcom-bff-minibasket__product-title, body .batcom-bff-minibasket__product-order, body .batcom-bff-minibasket__product-total-price, body .batcom-bff-minibasket__product-total-price + .batcom-bff-minibasket__price-suffix-text {
  color: var(--batcom-color-body-text);
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-minibasket__product-title, body .batcom-bff-minibasket__product-order, body .batcom-bff-minibasket__product-total-price, body .batcom-bff-minibasket__product-total-price + .batcom-bff-minibasket__price-suffix-text {
    font-size: 1rem;
    line-height: 1.5625rem;
  }
}
body .batcom-bff-minibasket__product-level {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 400;
  color: var(--batcom-color-body-text);
}
@media only screen and (max-width: 767px) {
  body .batcom-bff-minibasket__product-level {
    font-size: 0.875rem;
  }
}
body .batcom-bff-minibasket__actions .cmp-button.batcom-bff-minibasket__continueBtn {
  /* stylelint-disable */
  --batcom-button-text: var(--batcom-color-button-secondary-text) !important;
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover) !important;
  --batcom-button-bg: var(--batcom-color-button-secondary-bg) !important;
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover) !important;
  --batcom-button-border: var(--batcom-color-button-secondary-border) !important;
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover) !important;
  /* stylelint-enable */
}

body .batcom-bff-dynamiclist .product-card__rating-filled {
  background: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/star-filled-glo-plp.svg") repeat-x;
}
@media only screen and (max-width: 479px) {
  body .batcom-bff-dynamiclist .product-card__info {
    height: auto;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist .product-card__buy {
    margin-top: auto;
  }
}

.batcom-container--primary-light .cmp-container .batcom-bff-dynamiclist .cmp-list__item-layout-product, .batcom-container--secondary-light .cmp-container .batcom-bff-dynamiclist .cmp-list__item-layout-product, .batcom-container--tertiary-light .cmp-container .batcom-bff-dynamiclist .cmp-list__item-layout-product {
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .cmp-container .batcom-bff-dynamiclist .batcom-hover .product-card .product-card__buy--error {
    /* stylelint-disable value-no-vendor-prefix */
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    /* stylelint-enable value-no-vendor-prefix */
  }
}

body .batcom-bff-dynamiclist .batcom-dynamiclist-filters__quick-list--item {
  border: 1px solid var(--batcom-color-container-secondary-dark-bg);
}
body .batcom-bff-dynamiclist .batcom-dynamiclist-filters__quick-list--item-active {
  border: 1px solid var(--batcom-color-button-secondary-bg-hover);
  color: var(--batcom-color-button-secondary-text-hover) !important; /* stylelint-disable-line */
  background-color: var(--batcom-color-button-secondary-bg-hover);
}
body .batcom-bff-dynamiclist .batcom-dynamiclist-filters__quick-list--item-active .batcom-dynamiclist-filters__strength-level--filled {
  background-color: var(--batcom-color-button-secondary-bg);
  border: none;
}
body .batcom-bff-dynamiclist .batcom-dynamiclist-filters__quick-list--item-active .batcom-dynamiclist-filters__strength-level {
  border: 1px solid var(--batcom-color-button-secondary-bg);
}
body .batcom-bff-dynamiclist .batcom-dynamiclist-filters__quick-list--item:hover .batcom-dynamiclist-filters__strength-level--filled {
  background-color: var(--batcom-color-button-secondary-bg);
  border: none;
}
body .batcom-bff-dynamiclist .batcom-dynamiclist-filters__quick-list--item:hover .batcom-dynamiclist-filters__strength-level {
  border: 1px solid var(--batcom-color-button-secondary-bg);
}
body .batcom-bff-dynamiclist .batcom-dynamiclist-filters__quick-list {
  margin-bottom: 0;
}

body .batcom-header-var-2 a {
  text-decoration: none;
}
body .batcom-header-var-2 a:visited, body .batcom-header-var-2 a:hover {
  text-decoration: none;
}
body .batcom-header-var-2 .header-logo {
  width: 113px;
}
body .batcom-header-var-2 .batcom-header__logo--secondary .header-logo {
  width: -moz-fit-content;
  width: fit-content;
}
body .batcom-header-var-2 .batcom-search {
  display: none;
}
body .batcom-header-var-2 .batcom-header__link {
  text-align: center;
}
@media only screen and (max-width: 479px) {
  body .batcom-header-var-2 .cmp-navigation__item-link--contact {
    display: flex;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header-var-2 .cmp-navigation__item-link--contact {
    min-height: 52px;
    align-items: center;
    display: flex;
  }
  body .batcom-header-var-2 .cmp-navigation__item-link--contact::before {
    content: "";
    width: 25px;
    height: 25px;
    background: var(--batcom-color-navigation-text, #e9ecf0);
    background-position: center;
    -webkit-mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/location.svg");
            mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/location.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    margin-right: 20px;
  }
}
body .batcom-header-var-2 #icon-location::before {
  content: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/location.svg");
  display: inline-block;
  width: 16px;
  height: 16px;
  transform: translateY(6px);
}
@media only screen and (max-width: 767px) {
  body .batcom-header-var-2 .batcom-header__link {
    display: none;
  }
  body .batcom-header-var-2 .cmp-navigation__item--level-2,
  body .batcom-header-var-2 .cmp-navigation__item--level-1 {
    margin-top: 2px;
    background-color: #fff;
    padding-left: 20px;
  }
  body .batcom-header-var-2 .cmp-navigation__item--level-2:first-child,
  body .batcom-header-var-2 .cmp-navigation__item--level-1:first-child {
    padding-left: 0;
  }
  body .batcom-header-var-2 .cmp-navigation__item--level-2 .cmp-navigation__item-link,
  body .batcom-header-var-2 .cmp-navigation__item--level-1 .cmp-navigation__item-link {
    color: var(--batcom-color-navigation-text-inverted);
  }
  body .batcom-header-var-2 .cmp-navigation__item--level-2 .cmp-navigation__item-link::before,
  body .batcom-header-var-2 .cmp-navigation__item--level-1 .cmp-navigation__item-link::before {
    background-color: var(--batcom-color-navigation-text-inverted);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-header-var-2 .cmp-navigation__item--level-1 .cmp-navigation__item-link .batcom-navigation__arrow--right {
    display: none;
  }
  body .batcom-header-var-2 .cmp-navigation__item--level-1:only-of-type .cmp-navigation__item-link {
    padding: 10px 0;
  }
}
body .batcom-header-var-2.batcom-header__wrapper {
  padding: 0;
}
body .batcom-header-var-2 .batcom-header__link span a {
  font-size: 0.75rem;
}
body .batcom-header-var-2 .batcom-languagenavigation__toggle,
body .batcom-header-var-2 .batcom-header__link a {
  text-transform: capitalize;
}
@media only screen and (min-width: 1024px) {
  body .batcom-header-var-2 .batcom-languagenavigation__toggle,
  body .batcom-header-var-2 .batcom-header__link a {
    display: inline-flex;
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
    text-decoration: none;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 768px) {
  body .batcom-header-var-2 .batcom-languagenavigation__toggle,
  body .batcom-header-var-2 .batcom-header__link a {
    --batcom-typography-small-size-mobile: var(--batcom-typography-body-size-tablet);
    --batcom-typography-small-line-height-mobile: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  body .batcom-header-var-2 .batcom-languagenavigation__toggle,
  body .batcom-header-var-2 .batcom-header__link a {
    --batcom-typography-small-size-mobile: var(--batcom-typography-body-size-desktop);
    --batcom-typography-small-line-height-mobile: var(--batcom-typography-body-line-height-desktop);
  }
}
@media only screen and (max-width: 479px) {
  body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item--level-0 .batcom-navigation__arrow--left {
    height: auto;
  }
  body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item--level-0 .batcom-navigation__arrow--right {
    margin-right: 15px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item--level-0 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    min-height: 52px;
  }
  body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item--level-0 .cmp-navigation__item-link::before {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item--level-0 {
    padding-bottom: 0;
    border-bottom: none;
    align-items: center;
  }
  body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item--level-0:not(:first-child) {
    margin-left: 63px;
  }
}
body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item--level-0 .cmp-navigation__item-link {
  display: flex;
  justify-content: initial;
  align-items: center;
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: 100%;
}
body .batcom-header-var-2 .batcom-navigation .cmp-navigation__item--level-0 .cmp-navigation__item-link .cmp-navigation__item-title {
  flex: 1;
}
body .batcom-header-var-2 .batcom-menuButton__icon-line {
  background-color: white;
}
body .batcom-header-var-2 .batcom-menuButton__icon-bottom {
  visibility: hidden;
}
body .batcom-header-var-2 .open .batcom-menuButton__icon-bottom {
  visibility: visible;
}
@media only screen and (max-width: 1023px) {
  body .batcom-header-var-2 .batcom-languagenavigation,
  body .batcom-header-var-2 .batcom-search {
    margin-right: 12px;
  }
}
body .batcom-header-var-2 .batcom-navigation {
  z-index: 2;
}
body .batcom-header-var-2 .batcom-navigation--header {
  margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
}
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 (min-width: 1024px) {
  body .batcom-header-var-2 .batcom-navigation nav {
    width: 100%;
  }
  body .batcom-header-var-2 .batcom-navigation nav .batcom-container,
  body .batcom-header-var-2 .batcom-navigation nav .batcom-teaser-meganav-desktop-multicat,
  body .batcom-header-var-2 .batcom-navigation nav .batcom-teaser-meganav-desktop {
    margin-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
  }
  body .batcom-header-var-2 .batcom-navigation nav .batcom-container--background-full-page-width,
  body .batcom-header-var-2 .batcom-navigation nav .batcom-teaser-meganav-desktop-multicat--background-full-page-width,
  body .batcom-header-var-2 .batcom-navigation nav .batcom-teaser-meganav-desktop--background-full-page-width {
    padding-top: 44px !important; /* stylelint-disable-line declaration-no-important */
    padding-bottom: 70px !important; /* stylelint-disable-line declaration-no-important */
  }
  body .batcom-header-var-2 .batcom-navigation nav .batcom-container--children-inline > .cmp-container > .aem-Grid,
  body .batcom-header-var-2 .batcom-navigation nav .batcom-teaser-meganav-desktop-multicat--children-inline > .cmp-container > .aem-Grid,
  body .batcom-header-var-2 .batcom-navigation nav .batcom-teaser-meganav-desktop--children-inline > .cmp-container > .aem-Grid {
    gap: 12px;
  }
  body .batcom-header-var-2 .batcom-navigation nav .batcom-container--children-inline > .cmp-container > .aem-Grid::before, body .batcom-header-var-2 .batcom-navigation nav .batcom-container--children-inline > .cmp-container > .aem-Grid::after,
  body .batcom-header-var-2 .batcom-navigation nav .batcom-teaser-meganav-desktop-multicat--children-inline > .cmp-container > .aem-Grid::before,
  body .batcom-header-var-2 .batcom-navigation nav .batcom-teaser-meganav-desktop-multicat--children-inline > .cmp-container > .aem-Grid::after,
  body .batcom-header-var-2 .batcom-navigation nav .batcom-teaser-meganav-desktop--children-inline > .cmp-container > .aem-Grid::before,
  body .batcom-header-var-2 .batcom-navigation nav .batcom-teaser-meganav-desktop--children-inline > .cmp-container > .aem-Grid::after {
    display: none;
  }
  body .batcom-header-var-2 .batcom-navigation nav .cmp-navigation__group {
    justify-content: flex-start;
    position: static;
  }
  body .batcom-header-var-2 .batcom-navigation nav .cmp-navigation__view-all-button {
    display: flex;
    align-items: flex-end;
    margin: 0;
    position: absolute;
    bottom: 0;
    padding: 8px 0;
    text-align: center;
    left: 0;
    text-transform: uppercase;
    width: 100%;
    border-radius: 0;
    font-size: 12px;
    letter-spacing: 1px;
  }
  body .batcom-header-var-2 .batcom-navigation nav .cmp-navigation__view-all-button::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    -webkit-mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-right.svg");
            mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-right.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: var(--batcom-color-body-text);
    width: 17px;
    height: 17px;
    vertical-align: middle;
  }
  body .batcom-header-var-2 .batcom-navigation nav .cmp-navigation__mega-nav-desktop-flyout {
    display: none;
    position: absolute;
    top: 99%;
    width: 100vw;
    padding: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--batcom-color-palette-1);
  }
  body .batcom-header-var-2 .batcom-navigation nav .cmp-navigation__mega-nav-desktop-flyout .batcom-button--link:has(.cmp-navigation__view-all-button) {
    margin-top: 8px;
  }
}
body .batcom-header-var-2 .submenu-trigger {
  display: none;
}
body .batcom-header__navigation--centered .batcom-header-var-2 .batcom-navigation nav .cmp-navigation__group {
  justify-content: center;
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header-var-2.batcom-header--bff .batcom-header__links {
    order: 2;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header-var-2.batcom-header--bff .batcom-header__links > div:not(:empty) {
    margin-left: 12px;
    margin-right: 0;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header-var-2.batcom-header--bff .batcom-menuButton__base.open .batcom-menuButton__label {
    display: block !important; /* stylelint-disable-line declaration-no-important */
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header-var-2.batcom-header--bff .batcom-navigation--header {
    width: auto;
  }
}

body .cmp-list.batcom-bff-dynamiclist__product-list .product-card__link {
  text-decoration: none;
}
body .cmp-list.batcom-bff-dynamiclist__product-list .product-card__price, body .cmp-list.batcom-bff-dynamiclist__product-list .product-card__name, body .cmp-list.batcom-bff-dynamiclist__product-list .product-card__link {
  font-weight: var(--batcom-typography-weight-medium, 500);
}
body .cmp-list.batcom-bff-dynamiclist__product-list .product-card .intensity__item .intensity__label {
  font-weight: bold;
  line-height: 1rem;
}
body .cmp-list.batcom-bff-dynamiclist__product-list .product-card .intensity__item {
  padding: 12px 10px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body .cmp-list.batcom-bff-dynamiclist__product-list .product-card .intensity__item {
    padding: 10px;
  }
}

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

body .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link {
  font-family: var(--batcom-font-face-4-name), var(--batcom-typography-body-family);
}

@media only screen and (max-width: 767px) {
  body .batcom-bff-dynamicproduct .product-card__promo,
  body .batcom-bff-bundleproduct .product-card__promo {
    display: block;
  }
}

.batcom-icon-button-banner-container {
  padding: 10px 20px;
}
@media only screen and (min-width: 1024px) {
  .batcom-icon-button-banner-container .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 {
    width: auto;
  }
}
.batcom-icon-button-banner-container .aem-Grid {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .batcom-icon-button-banner-container .aem-Grid {
    padding-left: 25%;
    padding-right: 25%;
  }
}
.batcom-icon-button-banner-container:not(:has(.aem-Grid)) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .batcom-icon-button-banner-container:not(:has(.aem-Grid)) {
    padding-left: 25%;
    padding-right: 25%;
  }
}
.batcom-icon-button-banner-container .batcom-button {
  flex-shrink: 0;
  width: auto;
  margin-bottom: 0;
}
.batcom-icon-button-banner-container .batcom-icon {
  flex: 0 1 auto;
  width: auto;
  min-width: 0;
  text-align: left;
}
.batcom-icon-button-banner-container .batcom-icon--form-notification-text, .batcom-icon-button-banner-container .batcom-icon--form-success-text, .batcom-icon-button-banner-container .batcom-icon--form-error-text, .batcom-icon-button-banner-container .batcom-icon--form-pending-text {
  padding: 1rem 0.5rem;
}

.batcom-icon-container-uniform-spacing .batcom-icon--form-notification-text:not(.batcom-icon--bottom-space-small, .batcom-icon--bottom-space-medium, .batcom-icon--bottom-space-large), .batcom-icon-container-uniform-spacing .batcom-icon--form-success-text:not(.batcom-icon--bottom-space-small, .batcom-icon--bottom-space-medium, .batcom-icon--bottom-space-large), .batcom-icon-container-uniform-spacing .batcom-icon--form-error-text:not(.batcom-icon--bottom-space-small, .batcom-icon--bottom-space-medium, .batcom-icon--bottom-space-large), .batcom-icon-container-uniform-spacing .batcom-icon--form-pending-text:not(.batcom-icon--bottom-space-small, .batcom-icon--bottom-space-medium, .batcom-icon--bottom-space-large) {
  margin-bottom: 16px;
}

.batcom-icon--form-notification-text .batcom-icon__label, .batcom-icon--form-success-text .batcom-icon__label, .batcom-icon--form-error-text .batcom-icon__label, .batcom-icon--form-pending-text .batcom-icon__label {
  font-size: 14px !important;
}
.batcom-icon--form-notification-text .batcom-icon__label p, .batcom-icon--form-success-text .batcom-icon__label p, .batcom-icon--form-error-text .batcom-icon__label p, .batcom-icon--form-pending-text .batcom-icon__label p {
  margin-bottom: 16px;
}
.batcom-icon--form-notification-text .batcom-icon__label b, .batcom-icon--form-success-text .batcom-icon__label b, .batcom-icon--form-error-text .batcom-icon__label b, .batcom-icon--form-pending-text .batcom-icon__label b {
  font-family: var(--batcom-typography-large-family);
  font-weight: var(--batcom-typography-large-weight);
  font-size: 16px;
  line-height: 22px;
}
.batcom-icon--form-notification-text {
  color: var(--batcom-color-palette-icon-text-info, #1e6fb5);
}

body {
  opacity: 1 !important; /* stylelint-disable-line */
}

body,
a {
  font-family: var(--batcom-font-face-4-name), var(--batcom-typography-body-family);
}

h1,
h1 a,
h1 span {
  font-family: var(--batcom-font-face-4-name), var(--batcom-typography-h1-family);
}

h2,
h2 a,
h2 span {
  font-family: var(--batcom-font-face-4-name), var(--batcom-typography-h2-family);
}

h3,
h3 a,
h3 span {
  font-family: var(--batcom-font-face-4-name), var(--batcom-typography-h3-family);
}

h4,
h4 a,
h4 span {
  font-family: var(--batcom-font-face-4-name), var(--batcom-typography-h4-family);
}

h5,
h5 a,
h5 span {
  font-family: var(--batcom-font-face-4-name), var(--batcom-typography-h5-family);
}

h6,
h6 a,
h6 span {
  font-family: var(--batcom-font-face-4-name), var(--batcom-typography-h6-family);
}

.xx-small,
.xx-small a {
  font-family: var(--batcom-font-face-4-name), var(--batcom-typography-x-x-small-family);
}

.x-small,
.x-small a {
  font-family: var(--batcom-font-face-4-name), var(--batcom-typography-x-small-family);
}

.small,
.small a {
  font-family: var(--batcom-font-face-4-name), var(--batcom-typography-small-family);
}

.large,
.large a {
  font-family: var(--batcom-font-face-4-name), var(--batcom-typography-large-family);
}

blockquote,
blockquote a {
  font-family: var(--batcom-font-face-4-name), var(--batcom-typography-quote-family);
}