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

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

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

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

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

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

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

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

## Live Template abbreviations
---
-z

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

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

## Example
---

```html_example

// In the SASS theme file

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

// In the SASS module file

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

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

Clears after floating element

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

## Live Template abbreviations
---

## Example
---

```html_example
@include clearfix;
```

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

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

Use this mixing to add fonts and normalization.

Documentation:

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

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

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

Mixin to add visibility to control to elements

---

## Example
---

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

    @include breakpoint($b-01) {
      @include hidden;
    }
  }
}
```
*/
.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-button .cmp-button, body .batcom-button--primary .cmp-button, body .batcom-button--secondary .cmp-button, body .batcom-button--disabled .cmp-button {
  min-height: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: var(--batcom-layout-spacing-xs, 8px) var(--batcom-layout-spacing-xl, 32px);
}
body .batcom-button.batcom-button--link .cmp-button {
  min-height: auto;
  padding: var(--batcom-layout-spacing-xxs, 4px);
}
body .batcom-button.batcom-button--link .cmp-button .cmp-button__svg {
  margin-left: var(--batcom-layout-spacing-xs, 8px);
}
body .batcom-button.batcom-button--link .cmp-button .cmp-button__svg svg {
  height: auto;
}

.batcom-carousel .cmp-carousel .swiper-pagination {
  --swiper-pagination-bullet-inactive-color: var(--batcom-color-carousel-indicator);
  --swiper-pagination-color: var(--batcom-color-carousel-indicator-active);
  --swiper-pagination-bullet-inactive-opacity: 1;
}
.batcom-container--primary-dark .batcom-carousel .cmp-carousel .swiper-pagination, .batcom-container--secondary-dark .batcom-carousel .cmp-carousel .swiper-pagination, .batcom-container--tertiary-dark .batcom-carousel .cmp-carousel .swiper-pagination {
  --swiper-pagination-bullet-inactive-color: var(--batcom-color-carousel-indicator-inverted);
  --swiper-pagination-color: var(--batcom-color-carousel-indicator-active-inverted);
  --swiper-pagination-bullet-inactive-opacity: 0.2;
}

body .cmp-experiencefragment--footer .batcom-separator {
  width: 90%;
  margin-bottom: 16px;
}
body .cmp-experiencefragment--footer a {
  text-decoration: none;
}
body .cmp-experiencefragment--footer a:visited, body .cmp-experiencefragment--footer a:hover {
  text-decoration: none;
  color: var(--batcom-color-palette-surface-neutral-option-1, #fff);
}
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 (max-width: 767px) {
  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-x-small-size-mobile);
    line-height: var(--batcom-typography-x-small-line-height-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-x-small-size-tablet);
    line-height: var(--batcom-typography-x-small-line-height-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-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
body .cmp-experiencefragment--footer .batcom-columncontrol .batcom-text .cmp-text, body .cmp-experiencefragment--footer .batcom-columncontrol .batcom-text .cmp-text * {
  font-weight: var(--batcom-typography-weight-normal, 500);
}
body .cmp-experiencefragment--footer .batcom-columncontrol .batcom-text .cmp-text ul {
  list-style: none;
}
body .cmp-experiencefragment--footer .batcom-columncontrol .batcom-text .cmp-text ul li {
  text-indent: 0;
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  body .cmp-experiencefragment--footer .batcom-columncontrol .batcom-text .cmp-text ul li {
    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-experiencefragment--footer .batcom-columncontrol .batcom-text .cmp-text ul li {
    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-experiencefragment--footer .batcom-columncontrol .batcom-text .cmp-text ul li {
    font-size: var(--batcom-typography-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
body .cmp-experiencefragment--footer .batcom-columncontrol + .batcom-columncontrol .batcom-text .cmp-text * {
  font-weight: var(--batcom-typography-weight-bold, 700);
}
@media only screen and (max-width: 767px) {
  body .cmp-experiencefragment--footer .batcom-columncontrol .cmp-title__text {
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .cmp-experiencefragment--footer .batcom-columncontrol .cmp-title__text {
    font-size: var(--batcom-typography-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .cmp-experiencefragment--footer .batcom-columncontrol .cmp-title__text {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
body .cmp-experiencefragment--footer .batcom-columncontrol .cmp-title__text {
  font-weight: var(--batcom-typography-weight-bold, 700);
}
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: 1024px) {
  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;
}
@media only screen and (max-width: 767px) {
  body .cmp-experiencefragment--footer .cmp-breadcrumb__list, body .cmp-experiencefragment--footer .cmp-breadcrumb__title {
    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-experiencefragment--footer .cmp-breadcrumb__list, body .cmp-experiencefragment--footer .cmp-breadcrumb__title {
    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-experiencefragment--footer .cmp-breadcrumb__list, body .cmp-experiencefragment--footer .cmp-breadcrumb__title {
    font-size: var(--batcom-typography-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
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 #footer-logo-desktop img {
  margin-top: -30px;
}
body .cmp-experiencefragment--footer #footer-logo-mobile {
  display: flex;
  justify-content: center;
}
body .cmp-experiencefragment--footer #footer-logo-desktop img,
body .cmp-experiencefragment--footer #footer-logo-mobile img {
  max-width: 136px;
}
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: 1023px) {
  body .cmp-experiencefragment--footer .socialmedia__base {
    padding-bottom: var(--batcom-layout-spacing-l, 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;
  }
}
@media only screen and (max-width: 767px) {
  body .cmp-experiencefragment--footer .batcom-accordion + .batcom-text .cmp-text * {
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .cmp-experiencefragment--footer .batcom-accordion + .batcom-text .cmp-text * {
    font-size: var(--batcom-typography-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .cmp-experiencefragment--footer .batcom-accordion + .batcom-text .cmp-text * {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
body .cmp-experiencefragment--footer .batcom-accordion + .batcom-text .cmp-text * {
  font-weight: var(--batcom-typography-weight-normal, 500);
}
body .cmp-experiencefragment--footer .cmp-accordion__item {
  border-radius: 0;
}
@media only screen and (max-width: 1023px) {
  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: var(--batcom-layout-spacing-s, 12px) 0;
  margin-bottom: 0;
  border-radius: 0;
  background-color: transparent;
}
@media only screen and (max-width: 767px) {
  body .cmp-experiencefragment--footer .cmp-accordion__title {
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .cmp-experiencefragment--footer .cmp-accordion__title {
    font-size: var(--batcom-typography-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .cmp-experiencefragment--footer .cmp-accordion__title {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
body .cmp-experiencefragment--footer .cmp-accordion__title {
  font-weight: var(--batcom-typography-weight-normal, 500);
}
body .cmp-experiencefragment--footer .cmp-accordion__panel {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  body .cmp-experiencefragment--footer .cmp-accordion__panel .batcom-text .cmp-text p {
    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-experiencefragment--footer .cmp-accordion__panel .batcom-text .cmp-text p {
    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-experiencefragment--footer .cmp-accordion__panel .batcom-text .cmp-text p {
    font-size: var(--batcom-typography-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
body .cmp-experiencefragment--footer .cmp-accordion__panel .batcom-text .cmp-text p {
  font-weight: var(--batcom-typography-weight-normal, 500);
  padding: 6px var(--batcom-layout-spacing-s, 12px);
}
body .cmp-experiencefragment--footer .cmp-accordion__panel .batcom-text .cmp-text p:last-child {
  margin-bottom: 12px;
}
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, #fff);
}
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;
}
@media only screen and (max-width: 767px) {
  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-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-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-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-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-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
body .cmp-experiencefragment--footer #footer-accordion-opening-desktop .cmp-accordion__title, body .cmp-experiencefragment--footer #footer-accordion-opening-mobile .cmp-accordion__title {
  font-weight: var(--batcom-typography-weight-normal, 500);
  width: auto;
}
@media only screen and (max-width: 1023px) {
  body .cmp-experiencefragment--footer #footer-copyright-desktop {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  body .cmp-experiencefragment--footer #footer-copyright-desktop * {
    font-size: var(--batcom-typography-anchor-size-mobile);
    line-height: var(--batcom-typography-anchor-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .cmp-experiencefragment--footer #footer-copyright-desktop * {
    font-size: var(--batcom-typography-anchor-size-tablet);
    line-height: var(--batcom-typography-anchor-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .cmp-experiencefragment--footer #footer-copyright-desktop * {
    font-size: var(--batcom-typography-anchor-size-desktop);
    line-height: var(--batcom-typography-anchor-line-height-desktop);
  }
}
@media only screen and (max-width: 767px) {
  body .cmp-experiencefragment--footer #footer-copyright-mobile {
    font-size: var(--batcom-typography-anchor-size-mobile);
    line-height: var(--batcom-typography-anchor-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .cmp-experiencefragment--footer #footer-copyright-mobile {
    font-size: var(--batcom-typography-anchor-size-tablet);
    line-height: var(--batcom-typography-anchor-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .cmp-experiencefragment--footer #footer-copyright-mobile {
    font-size: var(--batcom-typography-anchor-size-desktop);
    line-height: var(--batcom-typography-anchor-line-height-desktop);
  }
}
body .cmp-experiencefragment--footer #footer-copyright-mobile {
  text-align: center;
}
body .cmp-experiencefragment--footer #footer-disclaimer {
  text-align: center;
  border: 4px solid var(--batcom-color-palette-surface-neutral-option-1, #fff);
  background: var(--batcom-color-palette-surface-neutral-option-1, #fff);
  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;
  margin-right: 5px;
}
body .cmp-experiencefragment--footer #footer-disclaimer-extrasmall {
  text-align: center;
  background: var(--batcom-color-palette-surface-neutral-option-1, #fff);
  font-weight: var(--batcom-typography-weight-normal, 500);
  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-weight: var(--batcom-typography-weight-lighter, 400);
  }
}
@media only screen and (max-width: 479px) and (max-width: 767px) {
  body .cmp-experiencefragment--footer #footer-disclaimer-extrasmall.cmp-container .cmp-text * {
    font-size: var(--batcom-typography-x-small-size-mobile);
    line-height: var(--batcom-typography-x-small-line-height-mobile);
  }
}
@media only screen and (max-width: 479px) and (min-width: 768px) {
  body .cmp-experiencefragment--footer #footer-disclaimer-extrasmall.cmp-container .cmp-text * {
    font-size: var(--batcom-typography-x-small-size-tablet);
    line-height: var(--batcom-typography-x-small-line-height-tablet);
  }
}
@media only screen and (max-width: 479px) and (min-width: 1024px) {
  body .cmp-experiencefragment--footer #footer-disclaimer-extrasmall.cmp-container .cmp-text * {
    font-size: var(--batcom-typography-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
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;
}

@media only screen and (max-width: 1023px) {
  body .batcom-container .batcom-header .batcom-header--bff:not(:has(.batcom-header__logo--secondary .cmp-image__image:not([src])), :has(.batcom-header__logo--secondary .cmp-image__image[src=""])) {
    margin-top: 0;
    height: auto;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header {
    height: 110px;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper {
    padding-inline: 0;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff {
    height: auto;
    padding-top: var(--batcom-layout-spacing-l, 24px);
    padding-bottom: var(--batcom-layout-spacing-xs, 8px);
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__top {
    position: relative;
    width: 100%;
    order: -1;
    height: auto;
    padding: var(--batcom-layout-spacing-xxs, 4px) 0;
    margin-bottom: var(--batcom-layout-spacing-m, 16px);
    min-height: 30px;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__top::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline: calc(-1 * var(--batcom-layout-spacing-l, 24px));
    height: 100%;
    background-color: var(--batcom-color-palette-surface-neutral-option-9, #000);
    z-index: 1;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__top::after {
    content: "";
    position: absolute;
    bottom: 0;
    inset-inline: calc(-1 * var(--batcom-layout-spacing-l, 24px));
    height: 1px;
    background-color: var(--batcom-color-palette-surface-neutral-option-7, #4f4f4f);
    z-index: 1;
  }
}
@media only screen and (max-width: 767px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__top .batcom-text {
    font-size: var(--batcom-typography-x-small-size-mobile);
    line-height: var(--batcom-typography-x-small-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__top .batcom-text {
    font-size: var(--batcom-typography-x-small-size-tablet);
    line-height: var(--batcom-typography-x-small-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__top .batcom-text {
    font-size: var(--batcom-typography-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__top .batcom-header__logo--secondary {
  padding: 0 var(--batcom-layout-spacing-m, 16px);
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__top .batcom-header__logo--secondary {
    border-right: none;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__top .batcom-header__logo {
    border-color: var(--batcom-color-palette-surface-neutral-option-7, #2a2a2a);
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__top .batcom-header__logo:last-of-type {
  border-right: none;
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__top .batcom-header__logo .cmp-image__image {
  max-width: 48px;
  height: 16px;
}
@media only screen and (min-width: 768px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__top .batcom-header__logo .cmp-image__image {
    max-width: 49px;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__top .batcom-header__logo .cmp-image__image {
    max-width: 63px;
    height: 20px;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__top > * {
    z-index: 2;
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .header-logo .cmp-image__image {
  max-width: 83px;
}
@media only screen and (min-width: 768px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .header-logo .cmp-image__image {
    max-width: 124px;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .header-logo .cmp-image__image {
    max-width: 128px;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation--header {
    margin-left: 9px;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation--header .cmp-navigation {
    top: 110px;
    border-top: 0;
    padding: 0;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__item {
    width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__item-link {
    width: 100%;
    border-bottom: 0;
    border-top: 1px solid var(--batcom-color-palette-border-default, #d5d5d5);
    padding: var(--batcom-layout-spacing-m, 16px) 0;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__item--mega-nav .cmp-navigation__item-link {
    border-bottom: none;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-button--meganav-brand-button {
    border-top: 1px solid var(--batcom-color-palette-border-default, #dedede);
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-button--meganav-brand-button .cmp-button {
  padding: var(--batcom-layout-spacing-m, 16px) var(--batcom-layout-spacing-l, 24px);
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation {
    min-width: 35px;
    align-self: flex-start;
    margin-top: var(--batcom-layout-spacing-xs, 8px);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation {
    margin-top: var(--batcom-layout-spacing-m, 16px);
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation--header[data-label]::after {
    content: attr(data-label);
    position: absolute;
    top: 100%;
    font-weight: var(--batcom-typography-weight-lighter);
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: var(--batcom-layout-spacing-xs, 8px);
  }
}
@media only screen and (max-width: 1023px) and (max-width: 767px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation--header[data-label]::after {
    font-size: var(--batcom-typography-x-small-size-mobile);
    line-height: var(--batcom-typography-x-small-line-height-mobile);
  }
}
@media only screen and (max-width: 1023px) and (min-width: 768px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation--header[data-label]::after {
    font-size: var(--batcom-typography-x-small-size-tablet);
    line-height: var(--batcom-typography-x-small-line-height-tablet);
  }
}
@media only screen and (max-width: 1023px) and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation--header[data-label]::after {
    font-size: var(--batcom-typography-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .cmp-navigation__item-link {
  align-items: center !important;
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .cmp-navigation__item-link {
    display: flex;
    min-height: 56px;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .cmp-navigation__item-title {
    margin-top: 0;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .cmp-navigation__item-button {
    top: 14px;
    width: 32px;
    height: 32px;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .cmp-navigation__item-button::after {
    -webkit-mask-size: 24px;
            mask-size: 24px;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .batcom-menuButton__base {
  width: 16px;
  margin-top: 0;
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .batcom-menuButton__base button.batcom-menuButton__wrapper {
  margin: 0;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  height: 17px;
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .batcom-menuButton__base button.batcom-menuButton__wrapper::before, body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .batcom-menuButton__base button.batcom-menuButton__wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--batcom-color-navigation-burger-menu-icon, #fff);
  transition: transform 0.3s ease, top 0.3s ease;
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .batcom-menuButton__base button.batcom-menuButton__wrapper::before {
  top: 0;
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .batcom-menuButton__base button.batcom-menuButton__wrapper::after {
  top: 5px;
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .batcom-menuButton__base button.batcom-menuButton__wrapper span.batcom-menuButton__icon {
  display: none;
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .batcom-menuButton__base.open .batcom-menuButton__wrapper::before {
  top: 3px;
  transform: rotate(45deg);
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .batcom-menuButton__base.open .batcom-menuButton__wrapper::after {
  top: 3px;
  transform: rotate(-45deg);
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .batcom-menuButton__base .batcom-menuButton__wrapper,
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .batcom-menuButton__base .batcom-menuButton__icon,
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .batcom-menuButton__base .batcom-menuButton__icon-line {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .batcom-menuButton__base .batcom-menuButton__label {
    font-size: var(--batcom-typography-x-small-size-mobile);
    line-height: var(--batcom-typography-x-small-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .batcom-menuButton__base .batcom-menuButton__label {
    font-size: var(--batcom-typography-x-small-size-tablet);
    line-height: var(--batcom-typography-x-small-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .batcom-menuButton__base .batcom-menuButton__label {
    font-size: var(--batcom-typography-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-navigation .batcom-menuButton__base .batcom-menuButton__label {
  position: absolute;
  top: 100%;
  font-weight: var(--batcom-typography-weight-lighter);
  margin-top: var(--batcom-layout-spacing-xs, 8px);
  transform: translateY(-50%);
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-searchbar__input-wrapper {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-searchbar__input-wrapper input::-moz-placeholder {
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
  }
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-searchbar__input-wrapper input::placeholder {
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-searchbar__input-wrapper input::-moz-placeholder {
    font-size: var(--batcom-typography-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-tablet);
  }
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-searchbar__input-wrapper input::placeholder {
    font-size: var(--batcom-typography-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-searchbar__input-wrapper input::-moz-placeholder {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-searchbar__input-wrapper input::placeholder {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-searchbar__input-wrapper input::-moz-placeholder {
  font-weight: var(--batcom-typography-weight-lighter);
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-searchbar__input-wrapper input::placeholder {
  font-weight: var(--batcom-typography-weight-lighter);
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .aa-DetachedSearchButton {
  margin-block-start: 0;
  gap: 0;
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__links {
    align-items: stretch;
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__links a {
  text-decoration: none;
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__links a,
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__links p,
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__links span {
  font-family: inherit;
}
@media only screen and (max-width: 767px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__link {
    font-size: var(--batcom-typography-x-small-size-mobile);
    line-height: var(--batcom-typography-x-small-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__link {
    font-size: var(--batcom-typography-x-small-size-tablet);
    line-height: var(--batcom-typography-x-small-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__link {
    font-size: var(--batcom-typography-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__link {
  text-align: center;
  font-weight: var(--batcom-typography-weight-lighter);
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__link::before {
  content: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/location.svg");
  display: inline-block;
  width: 16px;
  height: 16px;
}
@media only screen and (max-width: 767px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__link a {
    font-size: var(--batcom-typography-x-small-size-mobile);
    line-height: var(--batcom-typography-x-small-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__link a {
    font-size: var(--batcom-typography-x-small-size-tablet);
    line-height: var(--batcom-typography-x-small-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__link a {
    font-size: var(--batcom-typography-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__link a {
  color: inherit;
  margin-top: var(--batcom-layout-spacing-xs, 8px);
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-header__link a:hover {
  color: var(--batcom-color-header-anchor-hover);
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-bff-minibasket__bag::before {
  transform: none;
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-bff-accounticon {
    height: 100%;
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-bff-accounticon__icon,
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-bff-minibasket__bag {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-bff-accounticon__icon__img {
  transform: none;
}
@media only screen and (max-width: 767px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-bff-accounticon__icon__label,
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-bff-minibasket__bag-value,
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .aa-DetachedSearchButtonPlaceholder {
    font-size: var(--batcom-typography-x-small-size-mobile);
    line-height: var(--batcom-typography-x-small-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-bff-accounticon__icon__label,
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-bff-minibasket__bag-value,
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .aa-DetachedSearchButtonPlaceholder {
    font-size: var(--batcom-typography-x-small-size-tablet);
    line-height: var(--batcom-typography-x-small-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-bff-accounticon__icon__label,
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-bff-minibasket__bag-value,
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .aa-DetachedSearchButtonPlaceholder {
    font-size: var(--batcom-typography-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-bff-accounticon__icon__label,
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-bff-minibasket__bag-value,
body .batcom-header .batcom-header__wrapper.batcom-header--bff .aa-DetachedSearchButtonPlaceholder {
  font-weight: var(--batcom-typography-weight-lighter);
  margin-top: var(--batcom-layout-spacing-xs, 8px);
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__item-link--contact {
    font-weight: var(--batcom-typography-weight-normal);
    display: flex;
    align-items: center;
    padding: var(--batcom-layout-spacing-m, 16px) 0;
    border-top: 1px solid var(--batcom-color-palette-border-default, #d5d5d5);
  }
}
@media only screen and (max-width: 1023px) and (max-width: 767px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__item-link--contact {
    font-size: var(--batcom-typography-x-small-size-mobile);
    line-height: var(--batcom-typography-x-small-line-height-mobile);
  }
}
@media only screen and (max-width: 1023px) and (min-width: 768px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__item-link--contact {
    font-size: var(--batcom-typography-x-small-size-tablet);
    line-height: var(--batcom-typography-x-small-line-height-tablet);
  }
}
@media only screen and (max-width: 1023px) and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__item-link--contact {
    font-size: var(--batcom-typography-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__item-link--contact::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: var(--batcom-layout-spacing-xs, 8px);
  -webkit-mask: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/location.svg") center/contain no-repeat;
          mask: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/location.svg") center/contain no-repeat;
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__group {
    padding: 0 var(--batcom-layout-spacing-l, 24px);
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__group .cmp-navigation__group {
    padding: 0;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__group > .cmp-navigation__item-link {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__view-more {
    font-size: var(--batcom-typography-button-size-mobile);
    line-height: var(--batcom-typography-button-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__view-more {
    font-size: var(--batcom-typography-button-size-tablet);
    line-height: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__view-more {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__view-more {
  text-decoration: none;
  font-weight: var(--batcom-typography-weight-normal);
  color: var(--batcom-color-palette-text-functional, #272626);
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__item--level-0 {
    padding-bottom: 0;
    min-height: auto;
    border-bottom: none;
  }
}
@media only screen and (max-width: 767px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__item--level-0 .cmp-navigation__item-title {
    font-size: var(--batcom-typography-button-size-mobile);
    line-height: var(--batcom-typography-button-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__item--level-0 .cmp-navigation__item-title {
    font-size: var(--batcom-typography-button-size-tablet);
    line-height: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__item--level-0 .cmp-navigation__item-title {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__item--level-0 .cmp-navigation__item-title {
  font-weight: var(--batcom-typography-weight-normal);
  color: var(--batcom-color-navigation-text);
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__item--level-0 > .cmp-navigation__item-link {
    padding: var(--batcom-layout-spacing-xs, 8px) 0;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__item--level-0 > .cmp-navigation__item-link .cmp-navigation__item-title {
    margin-top: 0;
    text-transform: uppercase;
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__item--level-1 .cmp-navigation__item-title {
  color: var(--batcom-color-palette-text-functional, #272626);
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-teaser a,
body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__mega-nav-desktop-flyout a {
  text-decoration: none;
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .batcom-teaser .cmp-button,
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-navigation__mega-nav-desktop-flyout .cmp-button {
    padding-left: 0;
    padding-right: 0;
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__title,
body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__description,
body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__action-link {
  font-family: inherit;
}
@media only screen and (max-width: 767px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__title {
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__title {
    font-size: var(--batcom-typography-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__title {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__title {
  font-weight: var(--batcom-typography-weight-normal);
  color: var(--batcom-color-palette-text-functional, #272626);
}
@media only screen and (max-width: 767px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__description p,
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__description span,
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__description a {
    font-size: var(--batcom-typography-small-size-mobile);
    line-height: var(--batcom-typography-small-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__description p,
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__description span,
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__description a {
    font-size: var(--batcom-typography-small-size-tablet);
    line-height: var(--batcom-typography-small-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__description p,
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__description span,
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__description a {
    font-size: var(--batcom-typography-small-size-desktop);
    line-height: var(--batcom-typography-small-line-height-desktop);
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__description p,
body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__description span,
body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__description a {
  font-family: inherit;
  font-weight: var(--batcom-typography-weight-lighter);
  color: var(--batcom-color-palette-text-functional, #272626);
}
@media only screen and (max-width: 767px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__action-link {
    font-size: var(--batcom-typography-button-size-mobile);
    line-height: var(--batcom-typography-button-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .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-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__action-link {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-header .batcom-header__wrapper.batcom-header--bff .cmp-teaser .cmp-teaser__action-link {
  font-weight: var(--batcom-typography-weight-normal);
  color: var(--batcom-color-palette-text-action-secondary, #000);
}
@media only screen and (max-width: 1023px) {
  body .batcom-experiencefragment .cmp-experiencefragment .batcom-container .batcom-container:has(.batcom-header > .batcom-header--bff) {
    padding: 0 var(--batcom-layout-spacing-l, 24px);
  }
}

@media only screen and (max-width: 767px) {
  body .batcom-dynamiclist-filters__button {
    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-dynamiclist-filters__button {
    font-size: var(--batcom-typography-button-size-tablet);
    line-height: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-dynamiclist-filters__button {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-dynamiclist-filters__button {
  font-weight: var(--batcom-typography-weight-normal);
  color: var(--batcom-color-palette-text-functional, #000);
}
body .batcom-dynamiclist-filters__button-filter.button-filter-active {
  background: var(--batcom-color-palette-surface-filter, #1347d4);
  color: var(--batcom-color-palette-text-action-primary, #000);
  height: 40px;
  padding: var(--batcom-layout-spacing-s, 12px) var(--batcom-layout-spacing-l, 24px);
}
body .batcom-dynamiclist-filters__button-filter.button-filter-active::after {
  filter: invert(0);
}
@media only screen and (max-width: 767px) {
  body .batcom-dynamiclist-filters__quick-text {
    font-size: var(--batcom-typography-small-size-mobile);
    line-height: var(--batcom-typography-small-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-dynamiclist-filters__quick-text {
    font-size: var(--batcom-typography-small-size-tablet);
    line-height: var(--batcom-typography-small-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-dynamiclist-filters__quick-text {
    font-size: var(--batcom-typography-small-size-desktop);
    line-height: var(--batcom-typography-small-line-height-desktop);
  }
}
body .batcom-dynamiclist-filters__quick-text {
  font-weight: var(--batcom-typography-weight-normal);
  color: var(--batcom-color-palette-text-functional, #000);
}
@media only screen and (max-width: 767px) {
  body .batcom-dynamiclist-filters__quick-list--item {
    font-size: var(--batcom-typography-small-size-mobile);
    line-height: var(--batcom-typography-small-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-dynamiclist-filters__quick-list--item {
    font-size: var(--batcom-typography-small-size-tablet);
    line-height: var(--batcom-typography-small-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-dynamiclist-filters__quick-list--item {
    font-size: var(--batcom-typography-small-size-desktop);
    line-height: var(--batcom-typography-small-line-height-desktop);
  }
}
body .batcom-dynamiclist-filters__quick-list--item {
  font-weight: var(--batcom-typography-weight-normal);
  color: var(--batcom-color-palette-text-functional, #000);
}
body .batcom-dynamiclist-filters__quick-list--item-active, body .batcom-dynamiclist-filters__quick-list--item-active:hover {
  background-color: var(--batcom-color-palette-surface-filter, #1347d4);
  color: var(--batcom-color-palette-text-action-primary, #000) !important; /* stylelint-disable-line */
}
body .batcom-dynamiclist-filters__quick-list--item-active .batcom-dynamiclist-filters__strength-level, body .batcom-dynamiclist-filters__quick-list--item-active:hover .batcom-dynamiclist-filters__strength-level {
  border: 1px solid var(--batcom-color-palette-text-action-primary, #000);
  background-color: var(--batcom-color-palette-surface-filter, #1347d4);
}
body .batcom-dynamiclist-filters__quick-list--item-active .batcom-dynamiclist-filters__strength-level--filled, body .batcom-dynamiclist-filters__quick-list--item-active:hover .batcom-dynamiclist-filters__strength-level--filled {
  background-color: var(--batcom-color-palette-text-action-primary, #000);
}
body .batcom-dynamiclist-filters__quick-list .cmp-button {
  min-height: 32px;
  height: 32px;
}
@media only screen and (max-width: 767px) {
  body .batcom-dynamiclist-filters__sum {
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-dynamiclist-filters__sum {
    font-size: var(--batcom-typography-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-dynamiclist-filters__sum {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
body .batcom-dynamiclist-filters__sum {
  font-weight: var(--batcom-typography-weight-lighter);
  color: var(--batcom-color-palette-text-functional, #000);
}
@media only screen and (max-width: 767px) {
  body .batcom-dynamiclist-filters__container-header-label {
    font-size: var(--batcom-typography-h3-size-mobile);
    line-height: var(--batcom-typography-h3-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-dynamiclist-filters__container-header-label {
    font-size: var(--batcom-typography-h3-size-tablet);
    line-height: var(--batcom-typography-h3-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-dynamiclist-filters__container-header-label {
    font-size: var(--batcom-typography-h3-size-desktop);
    line-height: var(--batcom-typography-h3-line-height-desktop);
  }
}
body .batcom-dynamiclist-filters__container-header-label {
  font-weight: var(--batcom-typography-weight-bold);
  color: var(--batcom-color-palette-text-functional, #000);
}
@media only screen and (max-width: 767px) {
  body .batcom-dynamiclist-filters__container-clear {
    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-dynamiclist-filters__container-clear {
    font-size: var(--batcom-typography-button-size-tablet);
    line-height: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-dynamiclist-filters__container-clear {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-dynamiclist-filters__container-clear {
  font-weight: var(--batcom-typography-weight-normal);
  color: var(--batcom-color-palette-text-functional, #000);
}
@media only screen and (max-width: 767px) {
  body .batcom-dynamiclist-filters__category-header-label {
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-dynamiclist-filters__category-header-label {
    font-size: var(--batcom-typography-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-dynamiclist-filters__category-header-label {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
body .batcom-dynamiclist-filters__category-header-label {
  font-weight: var(--batcom-typography-weight-normal);
  color: var(--batcom-color-palette-text-functional, #000);
}
@media only screen and (max-width: 767px) {
  body .batcom-dynamiclist-filters__category-header-clear {
    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-dynamiclist-filters__category-header-clear {
    font-size: var(--batcom-typography-button-size-tablet);
    line-height: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-dynamiclist-filters__category-header-clear {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
body .batcom-dynamiclist-filters__category-header-clear {
  font-weight: var(--batcom-typography-weight-normal);
  color: var(--batcom-color-palette-text-functional, #000);
}
@media only screen and (max-width: 767px) {
  body .batcom-dynamiclist-filters__category-item-label {
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-dynamiclist-filters__category-item-label {
    font-size: var(--batcom-typography-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-dynamiclist-filters__category-item-label {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
body .batcom-dynamiclist-filters__category-item-label {
  font-weight: var(--batcom-typography-weight-lighter);
  color: var(--batcom-color-palette-text-functional, #000);
}
body .batcom-dynamiclist-filters__category-item-quantity {
  color: var(--batcom-color-palette-text-functional-subtle, #4f4f4f);
}

body.product-list {
  background-color: var(--batcom-color-palette-surface-neutral-option-2, #f9f9f9);
}
body .batcom-bff-dynamiclist .product-card__tag-new {
  padding: var(--batcom-layout-spacing-xxs, 4px) var(--batcom-layout-spacing-s, 12px);
  background-color: var(--batcom-color-palette-surface-neutral-option-1-inverted, #000);
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
  font-weight: var(--batcom-typography-weight-normal);
  letter-spacing: 1px;
  color: var(--batcom-color-palette-text-functional-inverted, #fff);
}
body .batcom-bff-dynamiclist .product-card__link {
  margin-block-end: 0;
  text-decoration: none;
}
body .batcom-bff-dynamiclist .product-card__content {
  justify-content: flex-start;
}
body .batcom-bff-dynamiclist .product-card__content .product-card__link {
  min-height: auto;
  margin-block-end: var(--batcom-layout-spacing-s, 12px);
}
body .batcom-bff-dynamiclist .product-card__image .cmp-image__image {
  aspect-ratio: 1;
}
body .batcom-bff-dynamiclist .product-card__name, body .batcom-bff-dynamiclist .product-card__shortName {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: var(--batcom-typography-weight-normal);
  color: var(--batcom-color-palette-text-functional, #272626);
}
body .batcom-bff-dynamiclist .product-card__rating {
  align-items: center;
  gap: var(--batcom-layout-spacing-xxs, 4px);
  margin-block-end: var(--batcom-layout-spacing-s, 12px);
}
body .batcom-bff-dynamiclist .product-card__rating-container {
  width: 100%;
  max-width: 110px;
  -webkit-mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/star-empty-plp.svg");
          mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/star-empty-plp.svg");
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-size: 20%;
          mask-size: 20%;
  background: var(--batcom-color-palette-surface-neutral-option-3, #e4e3e3);
}
body .batcom-bff-dynamiclist .product-card__rating-filled {
  left: 0;
  background: var(--batcom-color-palette-interactive-primary-default, #1347d4);
}
body .batcom-bff-dynamiclist .product-card__rating-reviews {
  padding: 0;
  font-size: var(--batcom-typography-small-size-mobile);
  font-family: inherit;
  font-weight: inherit;
  line-height: var(--batcom-typography-small-line-height-mobile);
}
body .batcom-bff-dynamiclist .product-card__promo {
  margin-block-end: var(--batcom-layout-spacing-m, 16px);
  padding: var(--batcom-layout-spacing-xxs, 4px) var(--batcom-layout-spacing-xs, 8px);
  background-color: var(--batcom-color-palette-surface-info, #e0f2fe);
  font-size: var(--batcom-typography-x-small-size-mobile);
  font-weight: var(--batcom-typography-weight-normal);
  line-height: var(--batcom-typography-x-small-line-height-mobile);
  color: var(--batcom-color-palette-text-info, #0369a1);
}
body .batcom-bff-dynamiclist .product-card__restricted-online-purchase:empty {
  margin: 0;
}
body .batcom-bff-dynamiclist .product-card__device-colors:not(.batcom-hide) {
  --color-indicator-size: 24px;
  --color-indicator-selected-border-size: 1px;
  --color-indicator-selected-gutter: 2px;
  gap: calc(var(--batcom-layout-spacing-xs, 8px) - (var(--color-indicator-selected-border-size) + var(--color-indicator-selected-gutter)));
}
body .batcom-bff-dynamiclist .product-card__device-color-btn {
  --color-indicator-wrapper-size:
  calc(
           var(--color-indicator-size) + 2 * (var(--color-indicator-selected-border-size) + var(--color-indicator-selected-gutter))
         );
  width: var(--color-indicator-wrapper-size);
  height: var(--color-indicator-wrapper-size);
}
body .batcom-bff-dynamiclist .product-card__device-color-btn-inside {
  width: var(--color-indicator-size);
  height: var(--color-indicator-size);
  border-color: var(--batcom-color-palette-border-default, #d5d5d5);
}
body .batcom-bff-dynamiclist .product-card__price {
  margin: 0;
  font-family: inherit;
  line-height: inherit;
  font-weight: var(--batcom-typography-weight-normal);
}
body .batcom-bff-dynamiclist .product-card__price-suffix-text {
  font-size: var(--batcom-typography-x-small-size-mobile);
  line-height: var(--batcom-typography-x-small-line-height-mobile);
}
body .batcom-bff-dynamiclist .product-card__price-regular--price, body .batcom-bff-dynamiclist .product-card__price-final--price-suffix-text {
  font-weight: var(--batcom-typography-weight-lighter);
}
body .batcom-bff-dynamiclist .product-card__button .cmp-button {
  gap: var(--batcom-layout-spacing-xs, 8px);
}
body .batcom-bff-dynamiclist .product-card__button .cmp-button::after {
  position: static;
  flex-shrink: 0;
}
body .batcom-bff-dynamiclist .product-card__buy {
  margin-block-start: auto;
}
body .batcom-bff-dynamiclist .product-card__buy-basket {
  gap: var(--batcom-layout-spacing-xs, 8px);
}
body .batcom-bff-dynamiclist .product-card__buy-operations {
  margin: 0;
  border-color: var(--batcom-color-palette-border-strong, #1d1d1b);
}
body .batcom-bff-dynamiclist .product-card__buy-container {
  flex-flow: row wrap;
}
body .batcom-bff-dynamiclist .product-card__buy-button {
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding-inline: var(--batcom-layout-spacing-xs, 8px);
}
@media only screen and (max-width: 767px) {
  body .batcom-bff-dynamiclist .product-card__buy-button {
    padding-block: 6px;
  }
}
body .batcom-bff-dynamiclist .product-card__buy-label {
  gap: var(--batcom-layout-spacing-xs, 8px);
  margin-inline-end: 0;
  font-size: var(--batcom-typography-button-size-mobile);
  font-weight: var(--batcom-typography-weight-bold);
  line-height: var(--batcom-typography-button-line-height-mobile);
  letter-spacing: 1px;
}
body .batcom-bff-dynamiclist .product-card__buy-label::after {
  position: static;
  flex-shrink: 0;
  background-color: currentColor;
}
body .batcom-bff-dynamiclist .product-card__buy-link {
  margin-block-start: auto;
}
body .batcom-bff-dynamiclist .product-card__product-status--unavailable, body .batcom-bff-dynamiclist .product-card__product-status--instock, body .batcom-bff-dynamiclist .product-card__buy-quantityInput {
  font-family: inherit;
  font-weight: var(--batcom-typography-weight-normal);
  line-height: inherit;
}
body .batcom-bff-dynamiclist .product-card__product-status--instock {
  margin-block-start: var(--batcom-layout-spacing-m, 16px);
  color: var(--batcom-color-palette-text-positive, #04695d);
}
body .batcom-bff-dynamiclist .product-card__product-status--unavailable {
  color: var(--batcom-color-palette-text-critical, #991f39);
}
body .batcom-bff-dynamiclist .product-card__nicotine, body .batcom-bff-dynamiclist .product-card__strength, body .batcom-bff-dynamiclist .product-card__intensity-indicators, body .batcom-bff-dynamiclist .product-card__device-colors {
  margin-block-start: var(--batcom-layout-spacing-m, 16px);
}
body .batcom-bff-dynamiclist .product-card__nicotine-label, body .batcom-bff-dynamiclist .product-card__strength-label {
  display: block;
  margin-block-end: var(--batcom-layout-spacing-xs, 8px);
  font-size: var(--batcom-typography-button-size-mobile);
  font-family: inherit;
  font-weight: var(--batcom-typography-weight-normal);
  line-height: var(--batcom-typography-button-line-height-mobile);
  letter-spacing: 1px;
  color: var(--batcom-color-palette-text-title, #272626);
}
body .batcom-bff-dynamiclist .product-card__nicotine-buttons {
  justify-content: flex-start;
}
body .batcom-bff-dynamiclist .product-card__nicotine-button.disabled::after {
  background-color: var(--batcom-color-palette-surface-neutral-option-5, #b3b0aa);
}
body .batcom-bff-dynamiclist .product-card__nicotine-button.disabled:not(.active) {
  opacity: 1;
}
body .batcom-bff-dynamiclist .product-card__nicotine-button.disabled:not(.active) .product-card__nicotine-icon {
  opacity: 0.5;
}
body .batcom-bff-dynamiclist .product-card__nicotine-icon {
  max-height: 14.4px;
  padding: 0;
}
body .batcom-bff-dynamiclist .product-card__strength-level {
  margin: 0;
  border-color: var(--batcom-color-palette-border-strong, #1d1d1b);
}
body .batcom-bff-dynamiclist .product-card__strength-level-label {
  font-size: var(--batcom-typography-button-size-mobile);
  font-family: inherit;
  font-weight: var(--batcom-typography-weight-normal);
  line-height: var(--batcom-typography-button-line-height-mobile);
  letter-spacing: 1px;
  color: var(--batcom-color-palette-text-functional, #272626);
}
body .batcom-bff-dynamiclist .product-card__strength-level--filled {
  background-color: var(--batcom-color-palette-icon-default, #272626);
}
body .batcom-bff-dynamiclist .product-card__strength-buttons {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--batcom-color-palette-surface-neutral-option-3, #e4e3e3);
}
body .batcom-bff-dynamiclist .product-card__strength-button {
  gap: var(--batcom-layout-spacing-xxs, 4px);
}
body .batcom-bff-dynamiclist .product-card__strength-button.active .product-card__strength-level {
  border-color: var(--batcom-color-palette-border-on-primary, #fff);
}
body .batcom-bff-dynamiclist .product-card__strength-button.active .product-card__strength-level--filled {
  background-color: var(--batcom-color-palette-icon-action-primary, #fff);
}
body .batcom-bff-dynamiclist .product-card__strength .product-card__nicotine-levels {
  display: flex;
  gap: 3px;
}
body .batcom-bff-dynamiclist .product-card__intensind-row + .product-card__intensind-row td {
  padding-block-start: var(--batcom-layout-spacing-xs, 8px);
}
body .batcom-bff-dynamiclist .product-card__intensind-row td:first-child {
  padding-inline-end: var(--batcom-layout-spacing-xxs, 4px);
}
body .batcom-bff-dynamiclist .product-card__intensind-data-value {
  gap: 3px;
}
body .batcom-bff-dynamiclist .product-card__intensind-circle {
  width: 10px;
  height: 10px;
}
body .batcom-bff-dynamiclist .batcom-hover .product-card {
  padding: 0;
}
body .batcom-bff-dynamiclist .cmp-list__item-layout-product,
body .batcom-bff-dynamiclist .batcom-dynamiclist__skeleton-item {
  background-color: var(--batcom-color-palette-surface-neutral-option-1, #fff);
}
body .batcom-bff-dynamiclist .cmp-list__product-list .batcom-dynamiclist__skeleton-container,
body .batcom-bff-dynamiclist .cmp-list__product-list .cmp-list__items,
body .batcom-bff-dynamiclist .cmp-list__carousel .batcom-dynamiclist__skeleton-container,
body .batcom-bff-dynamiclist .cmp-list__carousel .cmp-list__items {
  --gap: var(--batcom-layout-spacing-m, 16px);
  --gaps: calc(var(--items) - 1);
  --width: calc(100% / var(--items) - var(--gap, var(--batcom-layout-spacing-xs, 8px)) * (var(--gaps) / var(--items)));
  gap: var(--gap);
}
body .batcom-bff-dynamiclist .cmp-list__product-list .cmp-list__item-layout-product,
body .batcom-bff-dynamiclist .cmp-list__product-list .batcom-dynamiclist__skeleton-item,
body .batcom-bff-dynamiclist .cmp-list__carousel .cmp-list__item-layout-product,
body .batcom-bff-dynamiclist .cmp-list__carousel .batcom-dynamiclist__skeleton-item {
  width: var(--width);
  margin: 0;
}
body .batcom-bff-dynamiclist .cmp-list__product-list .product-card__nicotine-button, body .batcom-bff-dynamiclist .cmp-list__product-list .product-card__strength-button,
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__nicotine-button,
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__strength-button {
  border: 1px solid var(--batcom-color-palette-surface-neutral-option-3, #e4e3e3);
}
body .batcom-bff-dynamiclist .cmp-list__product-list .product-card__nicotine-button:hover, body .batcom-bff-dynamiclist .cmp-list__product-list .product-card__strength-button:hover,
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__nicotine-button:hover,
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__strength-button:hover {
  border-color: var(--batcom-color-palette-interactive-primary-default, #1347d4);
  background-color: var(--batcom-color-palette-surface-brand-primary, #1347d4);
}
body .batcom-bff-dynamiclist .cmp-list__product-list .product-card__nicotine-button.active, body .batcom-bff-dynamiclist .cmp-list__product-list .product-card__strength-button.active,
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__nicotine-button.active,
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__strength-button.active {
  border-color: var(--batcom-color-palette-surface-neutral-option-8, #272626);
  background-color: var(--batcom-color-palette-surface-brand-background, #2a2a2a);
}
body .batcom-bff-dynamiclist .cmp-list__product-list .product-card__nicotine-button,
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__nicotine-button {
  max-width: 51.5px;
  height: 32px;
  margin-block-end: 0;
  padding: 0 var(--batcom-layout-spacing-xxs, 4px);
}
body .batcom-bff-dynamiclist .cmp-list__product-list .product-card__nicotine-button + .product-card__nicotine-button,
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__nicotine-button + .product-card__nicotine-button {
  border-inline-start: 0;
}
body .batcom-bff-dynamiclist .cmp-list__product-list .batcom-dynamiclist__skeleton-container,
body .batcom-bff-dynamiclist .cmp-list__product-list .cmp-list__items {
  --items: 1;
}
@media only screen and (max-width: 767px) {
  body .batcom-bff-dynamiclist .cmp-list__product-list .batcom-dynamiclist__skeleton-container,
  body .batcom-bff-dynamiclist .cmp-list__product-list .cmp-list__items {
    margin-inline: calc(-0.5 * var(--batcom-layout-content-left-right-margin));
  }
}
@media only screen and (max-width: 767px) {
  body .batcom-bff-dynamiclist .cmp-list__product-list .cmp-list__items {
    display: flex;
    flex-direction: column;
  }
}
body .batcom-bff-dynamiclist .cmp-list__product-list .cmp-list__item-layout-product,
body .batcom-bff-dynamiclist .cmp-list__product-list .batcom-dynamiclist__skeleton-item {
  padding: var(--batcom-layout-spacing-m, 16px);
}
body .batcom-bff-dynamiclist .cmp-list__product-list .product-card {
  gap: var(--batcom-layout-spacing-xs, 8px);
}
body .batcom-bff-dynamiclist .cmp-list__product-list .product-card__tag-new {
  inset-block-start: var(--batcom-layout-spacing-l, 24px);
  inset-inline-start: var(--batcom-layout-spacing-l, 24px);
}
body .batcom-bff-dynamiclist .cmp-list__product-list .product-card__image {
  margin-inline-end: 0;
}
body .batcom-bff-dynamiclist .cmp-list__product-list .product-card__content {
  gap: var(--batcom-layout-spacing-m, 16px);
}
body .batcom-bff-dynamiclist .cmp-list__carousel .cmp-list__items-container {
  row-gap: var(--batcom-layout-spacing-m, 16px);
}
body .batcom-bff-dynamiclist .cmp-list__carousel .cmp-list__carousel-button-container {
  width: auto;
  margin-block-start: 0;
}
body .batcom-bff-dynamiclist .cmp-list__carousel .cmp-list__carousel-button-container:first-of-type {
  padding-inline-end: var(--batcom-layout-spacing-xs, 8px);
}
body .batcom-bff-dynamiclist .cmp-list__carousel .cmp-list__carousel-button-container:last-of-type {
  padding-inline-start: var(--batcom-layout-spacing-xs, 8px);
}
body .batcom-bff-dynamiclist .cmp-list__carousel .cmp-list__carousel-prev, body .batcom-bff-dynamiclist .cmp-list__carousel .cmp-list__carousel-next {
  width: 24px;
  height: 24px;
}
@media only screen and (min-width: 480px) {
  body .batcom-bff-dynamiclist .cmp-list__carousel .cmp-list__carousel-prev, body .batcom-bff-dynamiclist .cmp-list__carousel .cmp-list__carousel-next {
    background-color: transparent;
  }
}
body .batcom-bff-dynamiclist .cmp-list__carousel .cmp-list__carousel-prev::after, body .batcom-bff-dynamiclist .cmp-list__carousel .cmp-list__carousel-next::after {
  width: 8px;
  height: auto;
  aspect-ratio: 7/10;
}
body .batcom-bff-dynamiclist .cmp-list__carousel .batcom-dynamiclist__skeleton-container,
body .batcom-bff-dynamiclist .cmp-list__carousel .cmp-list__items {
  --items: 2;
}
body .batcom-bff-dynamiclist .cmp-list__carousel .cmp-list__item-layout-product {
  margin: 0;
  padding: 0;
  min-width: var(--width);
}
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__tag-new {
  inset-block-start: var(--batcom-layout-spacing-xs, 8px);
  inset-inline-start: var(--batcom-layout-spacing-xs, 8px);
}
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card .cmp-image__image {
  width: 148px;
  height: auto;
}
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__content {
  justify-content: flex-start;
  padding: var(--batcom-layout-spacing-m, 16px);
}
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__name {
  height: auto;
  overflow: hidden;
  display: -webkit-box; /* stylelint-disable-line */
  -webkit-line-clamp: 2; /* stylelint-disable-line */
  -webkit-box-orient: vertical; /* stylelint-disable-line */
}
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__device-colors {
  margin-block-end: var(--batcom-layout-spacing-m, 16px);
}
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__button {
  margin-block-start: auto;
}
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__button .batcom-button--link {
  min-height: auto;
}
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__button--is-link .product-card__strength {
  margin-block-end: var(--batcom-layout-spacing-m, 16px);
}
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__buy-container .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-bff-dynamiclist .cmp-list__carousel .product-card__buy-container .product-card__buy-button, .batcom-container--secondary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__buy-container .product-card__buy-button, .batcom-container--tertiary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__buy-container .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-bff-dynamiclist .cmp-list__carousel .product-card__buy-container .product-card__buy-button .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__buy-container .product-card__buy-button .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__buy-container .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-bff-dynamiclist .cmp-list__carousel .product-card__buy-container .product-card__buy-button option, .batcom-container--secondary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__buy-container .product-card__buy-button option, .batcom-container--tertiary-dark body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__buy-container .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-bff-dynamiclist .cmp-list__carousel .product-card__buy-container .product-card__buy-button {
  margin-block-start: var(--batcom-layout-spacing-s, 12px);
  padding-block: 10px;
}
@media only screen and (max-width: 767px) {
  body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__buy-container .product-card__buy-button {
    padding: 6px var(--batcom-layout-spacing-xxs, 4px);
  }
}
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__buy-link {
  margin-block-start: var(--batcom-layout-spacing-s, 12px);
}
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__nicotine-buttons {
  margin-block-end: var(--batcom-layout-spacing-s, 12px);
}
body .batcom-bff-dynamiclist .cmp-list__carousel .product-card__nicotine-button {
  margin-block-end: 0;
}
@media only screen and (max-width: 767px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__tag-new {
    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-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__tag-new {
    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-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__tag-new {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__content {
    padding: var(--batcom-layout-spacing-m, 16px);
  }
}
@media only screen and (max-width: 767px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__rating-reviews {
    font-size: var(--batcom-typography-small-size-mobile);
    line-height: var(--batcom-typography-small-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__rating-reviews {
    font-size: var(--batcom-typography-small-size-tablet);
    line-height: var(--batcom-typography-small-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__rating-reviews {
    font-size: var(--batcom-typography-small-size-desktop);
    line-height: var(--batcom-typography-small-line-height-desktop);
  }
}
@media only screen and (max-width: 767px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__promo {
    font-size: var(--batcom-typography-x-small-size-mobile);
    line-height: var(--batcom-typography-x-small-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__promo {
    font-size: var(--batcom-typography-x-small-size-tablet);
    line-height: var(--batcom-typography-x-small-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__promo {
    font-size: var(--batcom-typography-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
@media only screen and (max-width: 767px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__price-suffix-text {
    font-size: var(--batcom-typography-x-small-size-mobile);
    line-height: var(--batcom-typography-x-small-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__price-suffix-text {
    font-size: var(--batcom-typography-x-small-size-tablet);
    line-height: var(--batcom-typography-x-small-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__price-suffix-text {
    font-size: var(--batcom-typography-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__buy-button {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__buy-label {
    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-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__buy-label {
    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-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__buy-label {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
@media only screen and (max-width: 767px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__nicotine-label, body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__strength-label {
    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-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__nicotine-label, body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__strength-label {
    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-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__nicotine-label, body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__strength-label {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__nicotine-icon {
    max-height: 28px;
  }
}
@media only screen and (max-width: 767px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__strength-level-label {
    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-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__strength-level-label {
    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-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__strength-level-label {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .batcom-hover .product-card .product-card__buy-basket {
    flex-flow: row wrap;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .basket-flyout-enabled .cmp-list__item-js .product-card__buy-basket {
    flex-flow: row wrap;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__item-layout-promo {
    margin: 0;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__product-list .batcom-dynamiclist__skeleton-container,
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__product-list .cmp-list__items,
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__carousel .batcom-dynamiclist__skeleton-container,
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__carousel .cmp-list__items {
    --gap: var(--batcom-layout-spacing-l, 24px);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__product-list .product-card__nicotine-button,
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__carousel .product-card__nicotine-button {
    max-width: 62px;
    height: 40px;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__product-list .batcom-dynamiclist__skeleton-container,
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__product-list .cmp-list__items {
    --items: 2;
    margin: 0;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__product-list .batcom-dynamiclist__skeleton-container,
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__product-list .cmp-list__items {
    --items: 4;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__product-list .cmp-list__item-layout-product,
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__product-list .batcom-dynamiclist__skeleton-item {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__product-list .product-card {
    gap: 0;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__product-list .product-card__image .cmp-image__image {
    width: 328px;
    height: auto;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__product-list .product-card__image .cmp-image__image {
    width: 310px;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__product-list .product-card__buy-operations, body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__product-list .product-card__buy-button {
    flex: 1 1 calc(50% - 0.5 * var(--batcom-layout-spacing-xs, 8px));
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__carousel .cmp-list__items-container {
    grid-template-areas: "carousel-area carousel-area carousel-area" "left-carousel-button-container . right-carousel-button-container";
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__carousel .cmp-list__carousel-prev, body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__carousel .cmp-list__carousel-next {
    width: 48px;
    height: 48px;
    background-color: var(--batcom-color-palette-surface-neutral-option-2, #f9f9f9);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__carousel .batcom-dynamiclist__skeleton-container,
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__carousel .cmp-list__items {
    --items: 3;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__carousel .batcom-dynamiclist__skeleton-container,
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__carousel .cmp-list__items {
    --items: 5;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__carousel .batcom-dynamiclist__skeleton-item:nth-child(-n+5) {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__carousel .product-card .cmp-image__image {
    width: 213px;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__carousel .product-card .cmp-image__image {
    width: 243px;
  }
}
@media only screen and (min-width: 1280px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__carousel .product-card__buy-container {
    gap: var(--batcom-layout-spacing-s, 12px);
    align-items: center;
  }
}
@media only screen and (min-width: 1280px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__carousel .product-card__buy-button {
    margin-block-start: 0;
  }
}
@media only screen and (min-width: 1280px) {
  body .batcom-bff-dynamiclist__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__carousel .product-card__buy-link {
    margin-block-start: 0;
  }
}
body .batcom-bff-dynamiclist--mobile-only {
  margin: 0;
  padding: 0;
  background-color: transparent;
}
body .batcom-bff-dynamiclist--mobile-only .product-card__buy-button {
  padding-block: 6px;
}
body .batcom-bff-dynamiclist--mobile-only .cmp-list__items .cmp-list__item-layout-product .product-card__image {
  width: auto;
}
body .batcom-bff-dynamiclist--mobile-only .cmp-list__items .cmp-list__item-layout-product .product-card__image .cmp-image__image {
  -o-object-fit: cover;
     object-fit: cover;
}
body .batcom-bff-dynamiclist--mobile-only .cmp-list__product-list .cmp-list__items .cmp-list__item-layout-product,
body .batcom-bff-dynamiclist--mobile-only .cmp-list__carousel .cmp-list__items .cmp-list__item-layout-product {
  flex-basis: auto;
}
body .batcom-bff-dynamiclist--mobile-only .cmp-list__product-list .batcom-dynamiclist__skeleton-container,
body .batcom-bff-dynamiclist--mobile-only .cmp-list__product-list .cmp-list__items {
  --items: 1;
}
body .batcom-bff-dynamiclist--mobile-only .cmp-list__product-list .cmp-list__items .cmp-list__item-layout-product .product-card {
  position: static;
  flex-direction: row;
}
body .batcom-bff-dynamiclist--mobile-only .cmp-list__product-list .cmp-list__items .cmp-list__item-layout-product .product-card__image .cmp-image__image {
  width: 114px;
}
body .batcom-bff-dynamiclist--mobile-only .cmp-list__carousel .batcom-dynamiclist__skeleton-container,
body .batcom-bff-dynamiclist--mobile-only .cmp-list__carousel .cmp-list__items {
  --items: 2;
}
body .batcom-bff-dynamiclist--mobile-only .cmp-list__carousel .batcom-dynamiclist__skeleton-item {
  display: none;
}
body .batcom-bff-dynamiclist--mobile-only .cmp-list__carousel .batcom-dynamiclist__skeleton-item:nth-child(-n+2) {
  display: block;
}
body .batcom-bff-dynamiclist--mobile-only .cmp-list__carousel .cmp-list__items .cmp-list__item-layout-product .product-card__image .cmp-image__image {
  width: 148px;
}
body .batcom-bff-dynamiclist--mobile-only .cmp-list__carousel .cmp-list__items:has(li:nth-last-child(n+3)) {
  justify-content: left;
}
body .batcom-bff-dynamiclist--mobile-only .cmp-list__carousel .product-card__buy-container .product-card__buy-button {
  padding: 6px var(--batcom-layout-spacing-xxs, 4px);
}

body .batcom-algolia-bw-productsearch .product-card__link {
  margin-block-end: 0;
  text-decoration: none;
}
body .batcom-algolia-bw-productsearch .product-card__content {
  justify-content: flex-start;
}
body .batcom-algolia-bw-productsearch .product-card__content .product-card__link {
  min-height: auto;
  margin-block-end: var(--batcom-layout-spacing-s, 12px);
}
body .batcom-algolia-bw-productsearch .product-card__image {
  aspect-ratio: 1;
}
body .batcom-algolia-bw-productsearch .product-card__name, body .batcom-algolia-bw-productsearch .product-card__shortName {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: var(--batcom-typography-weight-normal);
  color: var(--batcom-color-palette-text-functional, #272626);
}
body .batcom-algolia-bw-productsearch .product-card__price {
  margin: 0;
  font-family: inherit;
  line-height: inherit;
  font-weight: var(--batcom-typography-weight-normal);
}
body .batcom-algolia-bw-productsearch .batcom-hover .product-card {
  padding: 0;
}
body .batcom-algolia-bw-productsearch .product-card,
body .batcom-algolia-bw-productsearch .batcom-algolia-bw-productsearch__skeleton-item {
  background-color: var(--batcom-color-palette-surface-neutral-option-1, #fff);
}
body .batcom-algolia-bw-productsearch .cmp-list__product-list .batcom-algolia-bw-productsearch__skeleton-container,
body .batcom-algolia-bw-productsearch .cmp-list__product-list .cmp-list__items {
  --gap: var(--batcom-layout-spacing-m, 16px);
  --gaps: calc(var(--items) - 1);
  --width: calc(100% / var(--items) - var(--gap, var(--batcom-layout-spacing-xs, 8px)) * (var(--gaps) / var(--items)));
  gap: var(--gap);
}
body .batcom-algolia-bw-productsearch .cmp-list__product-list .product-card,
body .batcom-algolia-bw-productsearch .cmp-list__product-list .batcom-algolia-bw-productsearch__skeleton-item {
  width: var(--width);
  margin: 0;
}
body .batcom-algolia-bw-productsearch .cmp-list__product-list .batcom-algolia-bw-productsearch__skeleton-container,
body .batcom-algolia-bw-productsearch .cmp-list__product-list .cmp-list__items {
  --items: 1;
}
@media only screen and (max-width: 767px) {
  body .batcom-algolia-bw-productsearch .cmp-list__product-list .batcom-algolia-bw-productsearch__skeleton-container,
  body .batcom-algolia-bw-productsearch .cmp-list__product-list .cmp-list__items {
    margin-inline: calc(-0.5 * var(--batcom-layout-content-left-right-margin));
  }
}
@media only screen and (max-width: 767px) {
  body .batcom-algolia-bw-productsearch .cmp-list__product-list .cmp-list__items {
    display: flex;
    flex-direction: column;
  }
}
body .batcom-algolia-bw-productsearch .cmp-list__product-list .product-card,
body .batcom-algolia-bw-productsearch .cmp-list__product-list .batcom-algolia-bw-productsearch__skeleton-item {
  padding: var(--batcom-layout-spacing-m, 16px);
}
body .batcom-algolia-bw-productsearch .cmp-list__product-list .product-card {
  gap: var(--batcom-layout-spacing-xs, 8px);
}
body .batcom-algolia-bw-productsearch .cmp-list__product-list .product-card__image {
  margin-inline-end: 0;
}
@media only screen and (min-width: 768px) {
  body .batcom-algolia-bw-productsearch .cmp-list__product-list .product-card__image {
    width: 328px;
    height: auto;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-algolia-bw-productsearch .cmp-list__product-list .product-card__image {
    width: 310px;
  }
}
body .batcom-algolia-bw-productsearch .cmp-list__product-list .product-card__content {
  gap: var(--batcom-layout-spacing-m, 16px);
}
@media only screen and (max-width: 767px) {
  body .batcom-algolia-bw-productsearch__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__buy-link {
    font-size: var(--batcom-typography-button-size-mobile);
    line-height: var(--batcom-typography-button-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-algolia-bw-productsearch__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__buy-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-algolia-bw-productsearch__container:not(.batcom-bff-dynamiclist--mobile-only) .product-card__buy-link {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-algolia-bw-productsearch__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__product-list .batcom-algolia-bw-productsearch__skeleton-container,
  body .batcom-algolia-bw-productsearch__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__product-list .cmp-list__items {
    --items: 2;
    margin: 0;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-algolia-bw-productsearch__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__product-list .batcom-algolia-bw-productsearch__skeleton-container,
  body .batcom-algolia-bw-productsearch__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__product-list .cmp-list__items {
    --items: 4;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-algolia-bw-productsearch__container:not(.batcom-bff-dynamiclist--mobile-only) .cmp-list__product-list .product-card {
    gap: 0;
  }
}

body .batcom-container .cmp-form input[type=text],
body .batcom-container .cmp-form input[type=email],
body .batcom-container .cmp-form input[type=tel],
body .batcom-container .cmp-form input[type=date],
body .batcom-container .cmp-form input[type=number],
body .batcom-container .cmp-form input[type=password],
body .batcom-container .cmp-form input[type=cardNumber],
body .batcom-container .cmp-form input[type=expiryDate],
body .batcom-container .cmp-form input[type=securityCode],
body .batcom-container .cmp-form select {
  padding: 0 var(--batcom-layout-spacing-m, 16px);
  height: 48px;
  border: 0;
  background-color: var(--batcom-color-palette-surface-neutral-option-2, #f9f9f9);
  border-bottom: 1px solid var(--batcom-color-palette-border-strong, #272626);
  border-radius: 2px;
}
body .batcom-container .cmp-form input[type=text]:not(:-moz-placeholder), body .batcom-container .cmp-form input[type=email]:not(:-moz-placeholder), body .batcom-container .cmp-form input[type=tel]:not(:-moz-placeholder), body .batcom-container .cmp-form input[type=date]:not(:-moz-placeholder), body .batcom-container .cmp-form input[type=number]:not(:-moz-placeholder), body .batcom-container .cmp-form input[type=password]:not(:-moz-placeholder), body .batcom-container .cmp-form input[type=cardNumber]:not(:-moz-placeholder), body .batcom-container .cmp-form input[type=expiryDate]:not(:-moz-placeholder), body .batcom-container .cmp-form input[type=securityCode]:not(:-moz-placeholder), body .batcom-container .cmp-form select:not(:-moz-placeholder) {
  border-bottom: 1px solid var(--batcom-color-palette-border-subdued, #e4e3e3);
}
body .batcom-container .cmp-form input[type=text]:not(:placeholder-shown),
body .batcom-container .cmp-form input[type=email]:not(:placeholder-shown),
body .batcom-container .cmp-form input[type=tel]:not(:placeholder-shown),
body .batcom-container .cmp-form input[type=date]:not(:placeholder-shown),
body .batcom-container .cmp-form input[type=number]:not(:placeholder-shown),
body .batcom-container .cmp-form input[type=password]:not(:placeholder-shown),
body .batcom-container .cmp-form input[type=cardNumber]:not(:placeholder-shown),
body .batcom-container .cmp-form input[type=expiryDate]:not(:placeholder-shown),
body .batcom-container .cmp-form input[type=securityCode]:not(:placeholder-shown),
body .batcom-container .cmp-form select:not(:placeholder-shown) {
  border-bottom: 1px solid var(--batcom-color-palette-border-subdued, #e4e3e3);
}
body .batcom-container .cmp-form input[type=text]:focus,
body .batcom-container .cmp-form input[type=email]:focus,
body .batcom-container .cmp-form input[type=tel]:focus,
body .batcom-container .cmp-form input[type=date]:focus,
body .batcom-container .cmp-form input[type=number]:focus,
body .batcom-container .cmp-form input[type=password]:focus,
body .batcom-container .cmp-form input[type=cardNumber]:focus,
body .batcom-container .cmp-form input[type=expiryDate]:focus,
body .batcom-container .cmp-form input[type=securityCode]:focus,
body .batcom-container .cmp-form select:focus {
  border-bottom: 1px solid var(--batcom-color-palette-border-subdued, #e4e3e3);
  outline: 1px solid var(--batcom-color-palette-border-strong, #272626);
}
body .batcom-container .cmp-form input[type=text]:active,
body .batcom-container .cmp-form input[type=email]:active,
body .batcom-container .cmp-form input[type=tel]:active,
body .batcom-container .cmp-form input[type=date]:active,
body .batcom-container .cmp-form input[type=number]:active,
body .batcom-container .cmp-form input[type=password]:active,
body .batcom-container .cmp-form input[type=cardNumber]:active,
body .batcom-container .cmp-form input[type=expiryDate]:active,
body .batcom-container .cmp-form input[type=securityCode]:active,
body .batcom-container .cmp-form select:active {
  border-bottom: 2px solid var(--batcom-color-palette-border-strong, #272626);
  outline: 0;
}
body .batcom-container .cmp-form input[type=text]:disabled,
body .batcom-container .cmp-form input[type=email]:disabled,
body .batcom-container .cmp-form input[type=tel]:disabled,
body .batcom-container .cmp-form input[type=date]:disabled,
body .batcom-container .cmp-form input[type=number]:disabled,
body .batcom-container .cmp-form input[type=password]:disabled,
body .batcom-container .cmp-form input[type=cardNumber]:disabled,
body .batcom-container .cmp-form input[type=expiryDate]:disabled,
body .batcom-container .cmp-form input[type=securityCode]:disabled,
body .batcom-container .cmp-form select:disabled {
  background-color: var(--batcom-color-palette-surface-disabled, #e4e3e3);
  border-bottom: 1px solid var(--batcom-color-palette-border-disabled, #d5d5d5);
}
body .batcom-container .cmp-form input[type=text].invalid-input,
body .batcom-container .cmp-form input[type=email].invalid-input,
body .batcom-container .cmp-form input[type=tel].invalid-input,
body .batcom-container .cmp-form input[type=date].invalid-input,
body .batcom-container .cmp-form input[type=number].invalid-input,
body .batcom-container .cmp-form input[type=password].invalid-input,
body .batcom-container .cmp-form input[type=cardNumber].invalid-input,
body .batcom-container .cmp-form input[type=expiryDate].invalid-input,
body .batcom-container .cmp-form input[type=securityCode].invalid-input,
body .batcom-container .cmp-form select.invalid-input {
  border: 0;
  border-bottom: 2px solid var(--batcom-color-palette-border-critical, #f43f5e);
  box-shadow: none;
}
body .batcom-container .cmp-form input[type=text].has-left-icon, body .batcom-container .cmp-form input[type=text].has-right-icon,
body .batcom-container .cmp-form input[type=email].has-left-icon,
body .batcom-container .cmp-form input[type=email].has-right-icon,
body .batcom-container .cmp-form input[type=tel].has-left-icon,
body .batcom-container .cmp-form input[type=tel].has-right-icon,
body .batcom-container .cmp-form input[type=date].has-left-icon,
body .batcom-container .cmp-form input[type=date].has-right-icon,
body .batcom-container .cmp-form input[type=number].has-left-icon,
body .batcom-container .cmp-form input[type=number].has-right-icon,
body .batcom-container .cmp-form input[type=password].has-left-icon,
body .batcom-container .cmp-form input[type=password].has-right-icon,
body .batcom-container .cmp-form input[type=cardNumber].has-left-icon,
body .batcom-container .cmp-form input[type=cardNumber].has-right-icon,
body .batcom-container .cmp-form input[type=expiryDate].has-left-icon,
body .batcom-container .cmp-form input[type=expiryDate].has-right-icon,
body .batcom-container .cmp-form input[type=securityCode].has-left-icon,
body .batcom-container .cmp-form input[type=securityCode].has-right-icon,
body .batcom-container .cmp-form select.has-left-icon,
body .batcom-container .cmp-form select.has-right-icon {
  padding: 0 var(--batcom-layout-spacing-xxxl, 48px);
}
body .batcom-container .cmp-form input[type=date],
body .batcom-container .cmp-form select {
  padding: 0 var(--batcom-layout-spacing-xs, 8px);
}
body .batcom-container .cmp-form textarea,
body .batcom-container .cmp-form [multiple].form-select {
  padding: var(--batcom-layout-spacing-xs, 8px);
  border: 0;
  background-color: var(--batcom-color-palette-surface-neutral-option-2, #f9f9f9);
  border-bottom: 1px solid var(--batcom-color-palette-border-strong, #272626);
  border-radius: 2px;
}
body .batcom-container .cmp-form textarea:not(:-moz-placeholder), body .batcom-container .cmp-form [multiple].form-select:not(:-moz-placeholder) {
  border-bottom: 1px solid var(--batcom-color-palette-border-subdued, #e4e3e3);
}
body .batcom-container .cmp-form textarea:not(:placeholder-shown),
body .batcom-container .cmp-form [multiple].form-select:not(:placeholder-shown) {
  border-bottom: 1px solid var(--batcom-color-palette-border-subdued, #e4e3e3);
}
body .batcom-container .cmp-form textarea:focus,
body .batcom-container .cmp-form [multiple].form-select:focus {
  border-bottom: 1px solid var(--batcom-color-palette-border-subdued, #e4e3e3);
  outline: 1px solid var(--batcom-color-palette-border-strong, #272626);
}
body .batcom-container .cmp-form textarea:active,
body .batcom-container .cmp-form [multiple].form-select:active {
  border-bottom: 2px solid var(--batcom-color-palette-border-strong, #272626);
  outline: 0;
}
body .batcom-container .cmp-form textarea:disabled,
body .batcom-container .cmp-form [multiple].form-select:disabled {
  background-color: var(--batcom-color-palette-surface-disabled, #e4e3e3);
  border-bottom: 1px solid var(--batcom-color-palette-border-disabled, #d5d5d5);
}
body .batcom-container .cmp-form textarea.invalid-input,
body .batcom-container .cmp-form [multiple].form-select.invalid-input {
  border: 0;
  border-bottom: 2px solid var(--batcom-color-palette-border-critical, #f43f5e);
  box-shadow: none;
}
body .batcom-container .cmp-form .form-checkbox,
body .batcom-container .cmp-form .form-radio {
  width: 18px;
  height: 18px;
  border: 2px solid var(--batcom-color-palette-border-strong, #272626);
}
@media only screen and (max-width: 767px) {
  body .batcom-container .cmp-form .form-checkbox + .form-label,
  body .batcom-container .cmp-form .form-radio + .form-label {
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-container .cmp-form .form-checkbox + .form-label,
  body .batcom-container .cmp-form .form-radio + .form-label {
    font-size: var(--batcom-typography-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-container .cmp-form .form-checkbox + .form-label,
  body .batcom-container .cmp-form .form-radio + .form-label {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
body .batcom-container .cmp-form .form-checkbox + .form-label,
body .batcom-container .cmp-form .form-radio + .form-label {
  font-weight: var(--batcom-typography-weight-lighter, 400);
  padding-left: var(--batcom-layout-spacing-xs, 8px);
}
body .batcom-container .cmp-form .form-checkbox:focus,
body .batcom-container .cmp-form .form-radio:focus {
  outline: 1px solid var(--batcom-color-palette-border-strong, #272626);
  outline-offset: 2px;
}
body .batcom-container .cmp-form .form-checkbox:hover,
body .batcom-container .cmp-form .form-radio:hover {
  border-color: var(--batcom-color-palette-border-medium, #797874);
  background: var(--batcom-color-palette-interactive-action-hovered, rgba(147, 164, 188, 0.0784313725));
}
body .batcom-container .cmp-form .form-checkbox:hover ~ .form-hover-circle,
body .batcom-container .cmp-form .form-radio:hover ~ .form-hover-circle {
  display: none;
}
body .batcom-container .cmp-form .form-checkbox[disabled],
body .batcom-container .cmp-form .form-radio[disabled] {
  border: 1px solid var(--batcom-color-palette-border-disabled, #d5d5d5);
  background: var(--batcom-color-palette-surface-disabled, #e4e3e3);
}
body .batcom-container .cmp-form .form-checkbox:checked ~ .form-options-icon,
body .batcom-container .cmp-form .form-radio:checked ~ .form-options-icon {
  background: var(--batcom-color-palette-surface-neutral-option-8, #272626);
}
body .batcom-container .cmp-form .form-checkbox:checked:hover ~ .form-options-icon,
body .batcom-container .cmp-form .form-radio:checked:hover ~ .form-options-icon {
  background: var(--batcom-color-palette-surface-neutral-option-6, #797874);
}
body .batcom-container .cmp-form .form-checkbox:checked[disabled],
body .batcom-container .cmp-form .form-radio:checked[disabled] {
  background: transparent;
  border: 0;
}
body .batcom-container .cmp-form .form-checkbox:checked[disabled] ~ .form-options-icon,
body .batcom-container .cmp-form .form-radio:checked[disabled] ~ .form-options-icon {
  background: var(--batcom-color-palette-surface-disabled, #e4e3e3);
}
body .batcom-container .cmp-form .form-checkbox ~ .form-hover-circle,
body .batcom-container .cmp-form .form-radio ~ .form-hover-circle {
  display: none;
}
body .batcom-container .cmp-form .form-checkbox ~ .form-options-icon,
body .batcom-container .cmp-form .form-radio ~ .form-options-icon {
  width: 18px;
  height: 18px;
}
body .batcom-container .cmp-form .form-radio {
  border-radius: 80px;
  border-width: 1px;
}
body .batcom-container .cmp-form .form-radio ~ .form-options-icon {
  border-radius: 80px;
}
body .batcom-container .cmp-form .form-radio[disabled] {
  background: transparent;
}
@media only screen and (max-width: 767px) {
  body .batcom-container .cmp-form label:not(.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 .batcom-container .cmp-form label:not(.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 .batcom-container .cmp-form label:not(.form-label) {
    font-size: var(--batcom-typography-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
body .batcom-container .cmp-form label:not(.form-label) {
  font-weight: var(--batcom-typography-weight-normal, 500);
  text-transform: uppercase;
  margin-bottom: var(--batcom-layout-spacing-xs, 8px);
}