@charset "UTF-8";
body.noScroll {
  overflow: hidden;
  position: fixed;
  inset: 0;
}

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

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

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

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

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

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

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

## Live Template abbreviations
---
-z

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

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

## Example
---

```html_example

// In the SASS theme file

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

// In the SASS module file

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

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

Clears after floating element

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

## Live Template abbreviations
---

## Example
---

```html_example
@include clearfix;
```

## Source
---
<https://css-tricks.com/snippets/css/clear-fix/>
*/
/* doc
---
title: Component Normalize / item Normalize
name: font
category: mixins
---
Use this mixing to regular AEM wrappers and normalization.
*/
/* stylelint-disable max-nesting-depth */
/* stylelint-disable media-feature-name-no-vendor-prefix */
/* doc
---
title: Font
name: font
category: mixins
---

Use this mixing to add fonts and normalization.

Documentation:

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

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

## Dependencies
---
/abstract/functions/nn-px-to-em
/abstract/functions/nn-px-to-rem
/abstract/functions/nn-px-to-unitless
/abstract/mixins/font-icon
*/
/*
* This mixin is used to set styles for elements according to typography in their respective viewport.
* It uses the variables defined in the typography
* @include typography("button") will enable the font size and lineheight according to typography button tokens in all the 3 viewports
*/
/*
* This mixin is used to style headings of any level in a responsive way.
* It uses the variables defined in the typography map to style the headings so
* the levels it can effectively style are 1 to 6.
* It also styles the use of spans and links inside the headings.
*
* @param {number} $level - The heading level to style.
* @param {string} $weight - The font weight to use for the heading. By default it uses the weight defined in the typography map.
*/
/* doc
---
title: Visibility
name: visibility
category: mixins
---

Mixin to add visibility to control to elements

---

## Example
---

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

    @include breakpoint($b-01) {
      @include hidden;
    }
  }
}
```
*/
/*
lt0 = (default) 1 column at a 100%
lt1 = 2 columns (50%, 50%)
lt2 = 2 columns (33%, 66%)
lt3 = 2 columns (66%, 33%)
lt4 = 3 columns (33%, 33%, 33%)
lt5 = 4 columns (25%, 25%, 25%, 25%)

## Parameters
@parameter $layout-type = lt0 | lt1 | lt2 | lt3 | lt4 | lt5
*/
/**
* Reverse container
*/
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*
* This mixin is used to set styles for name, price, button label elements in:
* batcom-algolia-bw-productsearch.clientlibs.scss
* batcom-bff-dynamiclist.clientlibs.scss
* product-list.clientlibs.scss
*/
.product-card__intensity-indicators {
  display: inline-block;
  font-family: var(--batcom-typography-body-family), sans-serif;
  margin-top: 10px;
  border: 0;
}
.product-card__intensind-row td {
  vertical-align: middle;
}
.product-card__intensind-row td:first-child {
  padding: 0 32px 0 0;
}
@media only screen and (max-width: 767px) {
  .product-card__intensind-data-name {
    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) {
  .product-card__intensind-data-name {
    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) {
  .product-card__intensind-data-name {
    font-size: var(--batcom-typography-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
.product-card__intensind-data-name {
  color: var(--batcom-color-palette-text-functional, #000);
}
.product-card__intensind-data-tooltip {
  cursor: pointer;
  position: relative;
}
.product-card__intensind-data-tooltip img {
  width: 16px;
}
.product-card__intensind-data-tooltip span {
  display: none;
  position: absolute;
  text-align: center;
  width: 160px;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  padding: 14px;
  z-index: 1;
  font-size: 10px;
  color: var(--batcom-color-palette-icon-disabled, #b3b0aa);
  background: var(--batcom-color-palette-icon-default, #2a2a2a);
  transition: opacity 0.3s;
}
.product-card__intensind-data-tooltip span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--batcom-color-palette-icon-default, #2a2a2a);
}
.product-card__intensind-data-tooltip:hover span {
  display: block;
}
.product-card__intensind-data-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.product-card__intensind-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--batcom-color-palette-surface-neutral-option-3, #e4e3e3);
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-card__intensind-circle--capsule {
  background-color: var(--batcom-color-palette-surface-neutral, #fff);
  border: 1px solid var(--batcom-color-palette-icon-default, #2a2a2a);
}
.product-card__intensind-circle--capsule-inner-circle {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--batcom-color-palette-icon-default, #2a2a2a);
}
.product-card__intensind-circle--level {
  border: 1px solid var(--batcom-color-palette-icon-default, #2a2a2a);
  background-color: var(--batcom-color-palette-icon-default, #2a2a2a);
}
@media only screen and (max-width: 767px) {
  .product-card__intensind-data-number {
    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) {
  .product-card__intensind-data-number {
    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) {
  .product-card__intensind-data-number {
    font-size: var(--batcom-typography-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
.product-card__intensind-data-number {
  padding: 0;
  font-weight: bold;
}

.intensity__list {
  display: flex;
  font-size: 0.75rem;
  flex-direction: column;
}
@media only screen and (min-width: 480px) {
  .intensity__list {
    flex-direction: row;
  }
}
.intensity__item {
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 1px solid var(--batcom-color-palette-3-inverted, #d7dbe1);
  padding: 10px;
  min-height: 40px;
  font-size: 0.75rem;
}
@media only screen and (max-width: 479px) {
  .intensity__item:first-child:not(.batcom-hide) + .intensity__item {
    border-top: 0;
  }
}
@media only screen and (min-width: 480px) {
  .intensity__item {
    width: 50%;
  }
  .intensity__item:first-child:not(.batcom-hide) + .intensity__item {
    border-left: 0;
  }
}
.intensity__buttons {
  display: flex;
  align-items: center;
}

.batcom-bff-dynamicproduct,
.batcom-bff-bundleproduct {
  min-height: 250px;
}
@media only screen and (max-width: 767px) {
  .batcom-bff-dynamicproduct,
  .batcom-bff-bundleproduct {
    order: 2;
  }
}
.batcom-bff-dynamicproduct .product-card__promo,
.batcom-bff-bundleproduct .product-card__promo {
  font-family: var(--batcom-font-face-3-name);
  color: #7d3679;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .batcom-bff-dynamicproduct .product-card__promo,
  .batcom-bff-bundleproduct .product-card__promo {
    display: none;
  }
}
.batcom-bff-dynamicproduct .product-card__buy-quantity, .batcom-bff-dynamicproduct .product-card__nicotine-level-label,
.batcom-bff-bundleproduct .product-card__buy-quantity,
.batcom-bff-bundleproduct .product-card__nicotine-level-label {
  font-size: 12px;
  line-height: 20px;
  font-family: var(--batcom-font-face-3-name);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: #1d1d1b;
}
.batcom-bff-dynamicproduct .product-card__buy-quantity,
.batcom-bff-bundleproduct .product-card__buy-quantity {
  line-height: 15px;
}
.batcom-bff-dynamicproduct .product-card__nicotine-area,
.batcom-bff-bundleproduct .product-card__nicotine-area {
  margin-top: 4px;
}
.batcom-bff-dynamicproduct .product-card__nicotine-level-label,
.batcom-bff-bundleproduct .product-card__nicotine-level-label {
  text-transform: uppercase;
}
.batcom-bff-dynamicproduct .product-card__nicotine-buttons,
.batcom-bff-bundleproduct .product-card__nicotine-buttons {
  display: flex;
}
.batcom-bff-dynamicproduct .product-card__nicotine-button,
.batcom-bff-bundleproduct .product-card__nicotine-button {
  align-items: center;
  border: 1px solid #dedede;
  background: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  height: 45px;
  flex: 1;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-dynamicproduct .product-card__nicotine-button,
  .batcom-bff-bundleproduct .product-card__nicotine-button {
    width: 76px;
    height: 40px;
    flex: none;
  }
}
.batcom-bff-dynamicproduct .product-card__nicotine-button.active,
.batcom-bff-bundleproduct .product-card__nicotine-button.active {
  background: rgb(0, 0, 0);
}
.batcom-bff-dynamicproduct .product-card__nicotine-button.active .product-card__nicotine-icon,
.batcom-bff-bundleproduct .product-card__nicotine-button.active .product-card__nicotine-icon {
  filter: invert(100%);
}
.batcom-bff-dynamicproduct .product-card__nicotine-button.disabled,
.batcom-bff-bundleproduct .product-card__nicotine-button.disabled {
  position: relative;
  overflow: hidden;
}
.batcom-bff-dynamicproduct .product-card__nicotine-button.disabled::after,
.batcom-bff-bundleproduct .product-card__nicotine-button.disabled::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #dedede;
  transform: rotate(320deg);
}
.batcom-bff-dynamicproduct .product-card__nicotine-button.disabled:not(.active),
.batcom-bff-bundleproduct .product-card__nicotine-button.disabled:not(.active) {
  opacity: 0.5;
}
.batcom-bff-dynamicproduct .product-card__nicotine-icon,
.batcom-bff-bundleproduct .product-card__nicotine-icon {
  height: 100%;
  padding: 4px;
  width: auto;
}
.batcom-bff-dynamicproduct .product-card__buy-quantity, .batcom-bff-dynamicproduct .product-card__bundle-item-quantity,
.batcom-bff-bundleproduct .product-card__buy-quantity,
.batcom-bff-bundleproduct .product-card__bundle-item-quantity {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.batcom-bff-dynamicproduct .product-card__bundle-items,
.batcom-bff-bundleproduct .product-card__bundle-items {
  margin-top: 20px;
  width: 100%;
}
.batcom-bff-dynamicproduct .product-card__bundle-item-title,
.batcom-bff-bundleproduct .product-card__bundle-item-title {
  background-color: #f1f1f1;
  padding: 10px;
}
.batcom-bff-dynamicproduct .product-card__buy-quantity-container, .batcom-bff-dynamicproduct .product-card__bundle-item-quantity-container,
.batcom-bff-bundleproduct .product-card__buy-quantity-container,
.batcom-bff-bundleproduct .product-card__bundle-item-quantity-container {
  display: flex;
  flex-direction: row;
  height: 32px;
  align-items: center;
}
.batcom-bff-dynamicproduct .product-card__bundle-item-quantity-container,
.batcom-bff-bundleproduct .product-card__bundle-item-quantity-container {
  justify-content: space-between;
  margin: 15px 0;
  padding: 0 10px;
}
.batcom-bff-dynamicproduct .product-card__bundle-item-quantity-container.out-of-stock,
.batcom-bff-bundleproduct .product-card__bundle-item-quantity-container.out-of-stock {
  opacity: 0.5;
}
.batcom-bff-dynamicproduct .product-card__bundle-item-quantity-container.radio-buttons,
.batcom-bff-bundleproduct .product-card__bundle-item-quantity-container.radio-buttons {
  justify-content: flex-start;
}
.batcom-bff-dynamicproduct .product-card__bundle-item-quantity-container.radio-buttons input,
.batcom-bff-bundleproduct .product-card__bundle-item-quantity-container.radio-buttons input {
  margin: 0 15px 0 0;
}
.batcom-bff-dynamicproduct .product-card__bundle-item-quantity-container.radio-buttons label.disabled,
.batcom-bff-bundleproduct .product-card__bundle-item-quantity-container.radio-buttons label.disabled {
  color: #969696;
}
.batcom-bff-dynamicproduct .product-card__buy-row,
.batcom-bff-bundleproduct .product-card__buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.batcom-bff-dynamicproduct .product-card__price-container,
.batcom-bff-bundleproduct .product-card__price-container {
  font-family: var(--batcom-font-face-4-name);
  font-weight: 500;
  color: #1d1d1b;
  font-size: 1.625rem;
  line-height: 1.875rem;
  margin-top: 24px;
}
.batcom-bff-dynamicproduct .product-card__price-wrap,
.batcom-bff-bundleproduct .product-card__price-wrap {
  display: flex;
  flex-flow: column nowrap;
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-dynamicproduct .product-card__price-wrap,
  .batcom-bff-bundleproduct .product-card__price-wrap {
    display: inline-block;
  }
}
.batcom-bff-dynamicproduct .product-card__buy-operations, .batcom-bff-dynamicproduct .product-card__bundle-item-operations,
.batcom-bff-bundleproduct .product-card__buy-operations,
.batcom-bff-bundleproduct .product-card__bundle-item-operations {
  display: flex;
  justify-content: space-between;
  margin-left: 20px;
}
.batcom-bff-dynamicproduct .product-card__buy-quantityInput, .batcom-bff-dynamicproduct .product-card__bundle-item-quantityInput,
.batcom-bff-bundleproduct .product-card__buy-quantityInput,
.batcom-bff-bundleproduct .product-card__bundle-item-quantityInput {
  border: 0;
  border-radius: 0;
  padding: 0;
  font-size: 14px;
  line-height: 22px;
  font-family: var(--batcom-font-face-3-name);
  text-align: left;
  width: 50px;
  padding-left: 20px;
}
.batcom-bff-dynamicproduct .product-card__bundle-item-quantity.disabled, .batcom-bff-dynamicproduct .product-card__bundle-item-quantityInput.disabled,
.batcom-bff-bundleproduct .product-card__bundle-item-quantity.disabled,
.batcom-bff-bundleproduct .product-card__bundle-item-quantityInput.disabled {
  color: #969696;
}
.batcom-bff-dynamicproduct .product-card__buy-quantityBtn, .batcom-bff-dynamicproduct .product-card__bundle-item-quantityBtn,
.batcom-bff-bundleproduct .product-card__buy-quantityBtn,
.batcom-bff-bundleproduct .product-card__bundle-item-quantityBtn {
  position: relative;
  border: 0;
  cursor: pointer;
  width: 32px;
  height: 32px;
  background: #f1f1f1;
  border-radius: 50%;
}
.batcom-bff-dynamicproduct .product-card__buy-quantityBtn::after, .batcom-bff-dynamicproduct .product-card__bundle-item-quantityBtn::after,
.batcom-bff-bundleproduct .product-card__buy-quantityBtn::after,
.batcom-bff-bundleproduct .product-card__bundle-item-quantityBtn::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 22px;
  height: 23px;
  background: #1d1d1b;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.batcom-bff-dynamicproduct .product-card__buy-quantityBtn.button-disabled, .batcom-bff-dynamicproduct .product-card__buy-quantityBtn:disabled, .batcom-bff-dynamicproduct .product-card__bundle-item-quantityBtn.button-disabled, .batcom-bff-dynamicproduct .product-card__bundle-item-quantityBtn:disabled,
.batcom-bff-bundleproduct .product-card__buy-quantityBtn.button-disabled,
.batcom-bff-bundleproduct .product-card__buy-quantityBtn:disabled,
.batcom-bff-bundleproduct .product-card__bundle-item-quantityBtn.button-disabled,
.batcom-bff-bundleproduct .product-card__bundle-item-quantityBtn:disabled {
  cursor: not-allowed;
}
.batcom-bff-dynamicproduct .product-card__buy-quantityBtn.button-disabled::after, .batcom-bff-dynamicproduct .product-card__buy-quantityBtn:disabled::after, .batcom-bff-dynamicproduct .product-card__bundle-item-quantityBtn.button-disabled::after, .batcom-bff-dynamicproduct .product-card__bundle-item-quantityBtn:disabled::after,
.batcom-bff-bundleproduct .product-card__buy-quantityBtn.button-disabled::after,
.batcom-bff-bundleproduct .product-card__buy-quantityBtn:disabled::after,
.batcom-bff-bundleproduct .product-card__bundle-item-quantityBtn.button-disabled::after,
.batcom-bff-bundleproduct .product-card__bundle-item-quantityBtn:disabled::after {
  background: #969696;
  cursor: not-allowed;
  pointer-events: none;
}
.batcom-bff-dynamicproduct .product-card__buy-quantityBtn-minus::after, .batcom-bff-dynamicproduct .product-card__bundle-item-quantityBtn-minus::after,
.batcom-bff-bundleproduct .product-card__buy-quantityBtn-minus::after,
.batcom-bff-bundleproduct .product-card__bundle-item-quantityBtn-minus::after {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/quantity-minus.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/quantity-minus.svg");
}
.batcom-bff-dynamicproduct .product-card__buy-quantityBtn-plus::after, .batcom-bff-dynamicproduct .product-card__bundle-item-quantityBtn-plus::after,
.batcom-bff-bundleproduct .product-card__buy-quantityBtn-plus::after,
.batcom-bff-bundleproduct .product-card__bundle-item-quantityBtn-plus::after {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/quantity-plus.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/quantity-plus.svg");
}
.batcom-bff-dynamicproduct .product-card__buy--error,
.batcom-bff-bundleproduct .product-card__buy--error {
  margin-top: 20px;
  font-family: var(--batcom-font-face-2-name);
  color: #e00830;
}
.batcom-bff-dynamicproduct .product-card__buy--oos-error,
.batcom-bff-bundleproduct .product-card__buy--oos-error {
  margin-top: 0;
  margin-left: 10px;
  font-family: var(--batcom-font-face-2-name);
  color: #e00830;
}
.batcom-bff-dynamicproduct .product-card .square-radio,
.batcom-bff-bundleproduct .product-card .square-radio {
  width: 15px;
  height: 15px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #1d1d1b;
  border-radius: 0;
  cursor: pointer;
  position: relative;
}
.batcom-bff-dynamicproduct .product-card .square-radio:disabled,
.batcom-bff-bundleproduct .product-card .square-radio:disabled {
  border: 1px solid #969696;
  cursor: default;
}
.batcom-bff-dynamicproduct .product-card .square-radio:checked,
.batcom-bff-bundleproduct .product-card .square-radio:checked {
  background-color: #1d1d1b;
}
.batcom-bff-dynamicproduct .product-card .square-radio:checked::before,
.batcom-bff-bundleproduct .product-card .square-radio:checked::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 11px;
  height: 11px;
  background: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/tick.svg") no-repeat center center;
  background-size: contain;
  pointer-events: none;
}
.batcom-bff-dynamicproduct .product-card__color-area,
.batcom-bff-bundleproduct .product-card__color-area {
  margin-top: 16px;
}
.batcom-bff-dynamicproduct .product-card__device-colors,
.batcom-bff-bundleproduct .product-card__device-colors {
  margin-top: 6px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.batcom-bff-dynamicproduct .product-card__device-colors-container,
.batcom-bff-bundleproduct .product-card__device-colors-container {
  background: #f1f1f1;
  padding: 9px 20px 18px;
}
.batcom-bff-dynamicproduct .product-card__color-selector-label,
.batcom-bff-bundleproduct .product-card__color-selector-label {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1px;
  color: #1d1d1b;
  text-transform: uppercase;
  font-family: var(--batcom-font-face-3-name);
}
.batcom-bff-dynamicproduct .product-card__device-color-btn,
.batcom-bff-bundleproduct .product-card__device-color-btn {
  overflow: visible;
  width: auto;
  padding: 0;
  border: none;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  color: inherit;
  font: inherit;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  line-height: normal;
}
.batcom-bff-dynamicproduct .product-card__device-color-btn::-moz-focus-inner,
.batcom-bff-bundleproduct .product-card__device-color-btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.batcom-bff-dynamicproduct .product-card__device-color-btn,
.batcom-bff-bundleproduct .product-card__device-color-btn {
  border-radius: 50%;
  cursor: pointer;
  height: 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.batcom-bff-dynamicproduct .product-card__device-color-btn-inside,
.batcom-bff-bundleproduct .product-card__device-color-btn-inside {
  border: 1px solid rgb(212, 208, 208);
  border-radius: 50%;
  display: inline-block;
  width: 26px;
  height: 26px;
  position: relative;
  overflow: hidden;
}
.batcom-bff-dynamicproduct .product-card__device-color-btn.disabled .product-card__device-color-btn-inside::after,
.batcom-bff-bundleproduct .product-card__device-color-btn.disabled .product-card__device-color-btn-inside::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(121, 120, 120); /* Change color as needed */
  transform: rotate(320deg);
}
.batcom-bff-dynamicproduct .product-card__device-color-btn.active,
.batcom-bff-bundleproduct .product-card__device-color-btn.active {
  border: 1px solid rgb(0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.batcom-bff-dynamicproduct .product-card__color-container,
.batcom-bff-bundleproduct .product-card__color-container {
  margin-top: 16px;
  display: flex;
}
.batcom-bff-dynamicproduct .product-card__color-selected,
.batcom-bff-bundleproduct .product-card__color-selected {
  width: 26px;
  margin-left: 2px;
  margin-right: 17px;
}
.batcom-bff-dynamicproduct .product-card__color-selected-label,
.batcom-bff-bundleproduct .product-card__color-selected-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
  color: #1d1d1b;
  text-transform: uppercase;
  display: block;
  font-family: var(--batcom-font-face-3-name);
}
.batcom-bff-dynamicproduct .product-card__color-selected-name,
.batcom-bff-bundleproduct .product-card__color-selected-name {
  font-size: 14px;
  font-weight: 325;
  line-height: 22px;
  letter-spacing: 0;
  color: #636363;
  display: block;
  margin-top: 2px;
  text-transform: capitalize;
}
.batcom-bff-dynamicproduct .product-card__buy,
.batcom-bff-bundleproduct .product-card__buy {
  float: left;
  width: 100%;
  margin-top: 24px;
}
.batcom-bff-dynamicproduct .product-card__buy--not-available .product-card__buy-quantity-container,
.batcom-bff-bundleproduct .product-card__buy--not-available .product-card__buy-quantity-container {
  display: none;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-dynamicproduct .product-card__buy--not-available,
  .batcom-bff-bundleproduct .product-card__buy--not-available {
    margin-top: 0;
  }
  .batcom-bff-dynamicproduct .product-card__buy--not-available .product-card__buy-basket,
  .batcom-bff-bundleproduct .product-card__buy--not-available .product-card__buy-basket {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 0;
  }
}
.batcom-bff-dynamicproduct .product-card__buy-basket,
.batcom-bff-bundleproduct .product-card__buy-basket {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.batcom-bff-dynamicproduct .product-card__price,
.batcom-bff-bundleproduct .product-card__price {
  font-family: var(--batcom-font-face-4-name);
  font-weight: 500;
  font-size: 26px;
  line-height: 30px;
  color: #1d1d1d;
}
.batcom-bff-dynamicproduct .product-card__price-final--price,
.batcom-bff-bundleproduct .product-card__price-final--price {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--batcom-font-face-4-name);
  color: #e00830;
}
.batcom-bff-dynamicproduct .product-card__price-discount--precentage, .batcom-bff-dynamicproduct .product-card__price-discount-label,
.batcom-bff-bundleproduct .product-card__price-discount--precentage,
.batcom-bff-bundleproduct .product-card__price-discount-label {
  color: #2a2a2a;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  font-family: var(--batcom-font-face-3-name);
  margin-left: 2px;
}
.batcom-bff-dynamicproduct .product-card__price-regular span,
.batcom-bff-bundleproduct .product-card__price-regular span {
  font-family: var(--batcom-font-face-1-name);
  font-weight: 325;
  font-size: 14px;
  line-height: 30px;
  color: #6b6b6b;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .batcom-bff-dynamicproduct .product-card__price-final--price-suffix-text,
  .batcom-bff-bundleproduct .product-card__price-final--price-suffix-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) {
  .batcom-bff-dynamicproduct .product-card__price-final--price-suffix-text,
  .batcom-bff-bundleproduct .product-card__price-final--price-suffix-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) {
  .batcom-bff-dynamicproduct .product-card__price-final--price-suffix-text,
  .batcom-bff-bundleproduct .product-card__price-final--price-suffix-text {
    font-size: var(--batcom-typography-small-size-desktop);
    line-height: var(--batcom-typography-small-line-height-desktop);
  }
}
.batcom-bff-dynamicproduct .product-card__price-final--price-suffix-text,
.batcom-bff-bundleproduct .product-card__price-final--price-suffix-text {
  font-weight: 500;
}
.batcom-bff-dynamicproduct .product-card__price-final--price-wrap,
.batcom-bff-bundleproduct .product-card__price-final--price-wrap {
  display: flex;
  flex-flow: column wrap;
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-dynamicproduct .product-card__price-final--price-wrap,
  .batcom-bff-bundleproduct .product-card__price-final--price-wrap {
    display: inline-flex;
    align-items: flex-end;
    flex-flow: row wrap;
    gap: 0;
  }
}
@media only screen and (max-width: 767px) {
  .batcom-bff-dynamicproduct .product-card__price-final--price-wrap .product-card__price-regular--price,
  .batcom-bff-bundleproduct .product-card__price-final--price-wrap .product-card__price-regular--price {
    font-size: var(--batcom-typography-small-size-mobile);
    line-height: var(--batcom-typography-small-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .batcom-bff-dynamicproduct .product-card__price-final--price-wrap .product-card__price-regular--price,
  .batcom-bff-bundleproduct .product-card__price-final--price-wrap .product-card__price-regular--price {
    font-size: var(--batcom-typography-small-size-tablet);
    line-height: var(--batcom-typography-small-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-dynamicproduct .product-card__price-final--price-wrap .product-card__price-regular--price,
  .batcom-bff-bundleproduct .product-card__price-final--price-wrap .product-card__price-regular--price {
    font-size: var(--batcom-typography-small-size-desktop);
    line-height: var(--batcom-typography-small-line-height-desktop);
  }
}
.batcom-bff-dynamicproduct .product-card__price-final--price-wrap .product-card__price-regular--price,
.batcom-bff-bundleproduct .product-card__price-final--price-wrap .product-card__price-regular--price {
  text-decoration-line: line-through;
  color: var(--batcom-color-palette-text-critical, #991f39);
  order: 3;
  flex-basis: 100%;
  font-weight: 400;
}
.batcom-bff-dynamicproduct .product-card__price-final--price-wrap .product-card__price-final--price,
.batcom-bff-bundleproduct .product-card__price-final--price-wrap .product-card__price-final--price {
  color: inherit;
  margin-right: 8px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .batcom-bff-dynamicproduct .product-card__price-final--price-wrap .product-card__price-final--price,
  .batcom-bff-bundleproduct .product-card__price-final--price-wrap .product-card__price-final--price {
    font-size: var(--batcom-typography-h3-size-mobile);
    line-height: var(--batcom-typography-h3-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .batcom-bff-dynamicproduct .product-card__price-final--price-wrap .product-card__price-final--price,
  .batcom-bff-bundleproduct .product-card__price-final--price-wrap .product-card__price-final--price {
    font-size: var(--batcom-typography-h3-size-tablet);
    line-height: var(--batcom-typography-h3-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-dynamicproduct .product-card__price-final--price-wrap .product-card__price-final--price,
  .batcom-bff-bundleproduct .product-card__price-final--price-wrap .product-card__price-final--price {
    font-size: var(--batcom-typography-h3-size-desktop);
    line-height: var(--batcom-typography-h3-line-height-desktop);
  }
}
@media only screen and (max-width: 767px) {
  .batcom-bff-dynamicproduct .product-card__price-final--price-wrap *,
  .batcom-bff-bundleproduct .product-card__price-final--price-wrap * {
    flex-basis: 100%;
  }
}
.batcom-bff-dynamicproduct .product-card__buy-button,
.batcom-bff-bundleproduct .product-card__buy-button {
  border: 0;
  background: none;
  padding: 0;
  margin-top: 14px;
}
@media only screen and (min-width: 480px) {
  .batcom-bff-dynamicproduct .product-card__buy-button,
  .batcom-bff-bundleproduct .product-card__buy-button {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.batcom-bff-dynamicproduct .product-card__buy-button:disabled .cmp-button,
.batcom-bff-bundleproduct .product-card__buy-button:disabled .cmp-button {
  cursor: not-allowed;
}
.batcom-bff-dynamicproduct .product-card__buy-button-status--instock .cmp-button,
.batcom-bff-bundleproduct .product-card__buy-button-status--instock .cmp-button {
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
  font-family: var(--batcom-typography-button-family), sans-serif;
  letter-spacing: 0.063rem;
  font-weight: var(--batcom-typography-button-weight, 400);
  text-transform: uppercase;
  padding: 10px 20px;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-dynamicproduct .product-card__buy-button-status--instock .cmp-button,
  .batcom-bff-bundleproduct .product-card__buy-button-status--instock .cmp-button {
    font-size: var(--batcom-typography-button-size-tablet);
    line-height: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-dynamicproduct .product-card__buy-button-status--instock .cmp-button,
  .batcom-bff-bundleproduct .product-card__buy-button-status--instock .cmp-button {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
.batcom-bff-dynamicproduct .product-card__buy-button-status--instock .cmp-button:focus,
.batcom-bff-bundleproduct .product-card__buy-button-status--instock .cmp-button:focus {
  outline: none;
}
.batcom-bff-dynamicproduct .product-card__buy-button-status--instock .cmp-button:focus-visible,
.batcom-bff-bundleproduct .product-card__buy-button-status--instock .cmp-button:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
.batcom-bff-dynamicproduct .product-card__buy-button-status--instock .cmp-button .batcom--loading,
.batcom-bff-bundleproduct .product-card__buy-button-status--instock .cmp-button .batcom--loading {
  display: none;
}
.batcom-bff-dynamicproduct .product-card__buy-button-status--instock .cmp-button,
.batcom-bff-bundleproduct .product-card__buy-button-status--instock .cmp-button {
  padding: 13px 55px;
  height: 44px;
  min-width: 206px;
}
.batcom-bff-dynamicproduct .product-card__buy-button-status--instock .cmp-button.batcom-is-success,
.batcom-bff-bundleproduct .product-card__buy-button-status--instock .cmp-button.batcom-is-success {
  position: relative;
}
.batcom-bff-dynamicproduct .product-card__buy-button-status--instock .cmp-button.batcom-is-success > span,
.batcom-bff-bundleproduct .product-card__buy-button-status--instock .cmp-button.batcom-is-success > span {
  filter: blur(2px);
}
.batcom-bff-dynamicproduct .product-card__buy-button-status--instock .cmp-button.batcom-is-success::after,
.batcom-bff-bundleproduct .product-card__buy-button-status--instock .cmp-button.batcom-is-success::after {
  content: "";
  position: absolute;
  width: 45px;
  height: 45px;
  top: 50%;
  left: 50%;
  margin-top: -22.5px;
  margin-left: -22.5px;
  background-color: #000;
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/checkmark.gif");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/checkmark.gif");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.batcom-bff-dynamicproduct .product-card__buy-button-status--instock .cmp-button.loading svg,
.batcom-bff-bundleproduct .product-card__buy-button-status--instock .cmp-button.loading svg {
  display: none;
}
.batcom-bff-dynamicproduct .product-card__buy-button-status--instock .cmp-button.loading > span,
.batcom-bff-bundleproduct .product-card__buy-button-status--instock .cmp-button.loading > span {
  filter: blur(2px);
}
.batcom-bff-dynamicproduct .product-card__buy-button-status--instock .cmp-button.loading::after,
.batcom-bff-bundleproduct .product-card__buy-button-status--instock .cmp-button.loading::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  background-color: var(--batcom-button-text);
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/spinner.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/spinner.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  animation: spin 2s linear infinite;
}
.batcom-bff-dynamicproduct .product-card__buy-button-status--instock .cmp-button.loading,
.batcom-bff-bundleproduct .product-card__buy-button-status--instock .cmp-button.loading {
  position: relative;
}
.batcom-bff-dynamicproduct .product-card__buy-button-status--unavailable,
.batcom-bff-bundleproduct .product-card__buy-button-status--unavailable {
  display: none;
}
.batcom-bff-dynamicproduct .product-card__buy-button-status--unavailable .cmp-button,
.batcom-bff-bundleproduct .product-card__buy-button-status--unavailable .cmp-button {
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
  font-family: var(--batcom-typography-button-family), sans-serif;
  letter-spacing: 0.063rem;
  font-weight: var(--batcom-typography-button-weight, 400);
  text-transform: uppercase;
  padding: 10px 20px;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-dynamicproduct .product-card__buy-button-status--unavailable .cmp-button,
  .batcom-bff-bundleproduct .product-card__buy-button-status--unavailable .cmp-button {
    font-size: var(--batcom-typography-button-size-tablet);
    line-height: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-dynamicproduct .product-card__buy-button-status--unavailable .cmp-button,
  .batcom-bff-bundleproduct .product-card__buy-button-status--unavailable .cmp-button {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
.batcom-bff-dynamicproduct .product-card__buy-button-status--unavailable .cmp-button:focus,
.batcom-bff-bundleproduct .product-card__buy-button-status--unavailable .cmp-button:focus {
  outline: none;
}
.batcom-bff-dynamicproduct .product-card__buy-button-status--unavailable .cmp-button:focus-visible,
.batcom-bff-bundleproduct .product-card__buy-button-status--unavailable .cmp-button:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
.batcom-bff-dynamicproduct .product-card__buy-button-status--unavailable .cmp-button,
.batcom-bff-bundleproduct .product-card__buy-button-status--unavailable .cmp-button {
  --batcom-button-text: var(--batcom-color-button-disabled-text);
  --batcom-button-text-hover: var(--batcom-color-button-disabled-text-hover);
  --batcom-button-bg: var(--batcom-color-button-disabled-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-disabled-bg-hover);
  --batcom-button-border: var(--batcom-color-button-disabled-border);
  --batcom-button-border-hover: var(--batcom-color-button-disabled-border-hover);
  --batcom-button-icon: var(--batcom-color-button-disabled-text);
  --batcom-button-icon-hover: var(--batcom-color-button-disabled-text-hover);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-disabled-border-radius);
  cursor: not-allowed;
  pointer-events: none;
}
.batcom-container--primary-dark .batcom-bff-dynamicproduct .product-card__buy-button-status--unavailable .cmp-button, .batcom-container--secondary-dark .batcom-bff-dynamicproduct .product-card__buy-button-status--unavailable .cmp-button, .batcom-container--tertiary-dark .batcom-bff-dynamicproduct .product-card__buy-button-status--unavailable .cmp-button,
.batcom-container--primary-dark .batcom-bff-bundleproduct .product-card__buy-button-status--unavailable .cmp-button,
.batcom-container--secondary-dark .batcom-bff-bundleproduct .product-card__buy-button-status--unavailable .cmp-button,
.batcom-container--tertiary-dark .batcom-bff-bundleproduct .product-card__buy-button-status--unavailable .cmp-button {
  --batcom-button-text: var(--batcom-color-button-disabled-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-disabled-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-disabled-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-disabled-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-disabled-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-disabled-border-hover-inverted);
}
.batcom-container--primary-dark .batcom-bff-dynamicproduct .product-card__buy-button-status--unavailable .cmp-button .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark .batcom-bff-dynamicproduct .product-card__buy-button-status--unavailable .cmp-button .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark .batcom-bff-dynamicproduct .product-card__buy-button-status--unavailable .cmp-button .cmp-button__svg :is(svg, g, path),
.batcom-container--primary-dark .batcom-bff-bundleproduct .product-card__buy-button-status--unavailable .cmp-button .cmp-button__svg :is(svg, g, path),
.batcom-container--secondary-dark .batcom-bff-bundleproduct .product-card__buy-button-status--unavailable .cmp-button .cmp-button__svg :is(svg, g, path),
.batcom-container--tertiary-dark .batcom-bff-bundleproduct .product-card__buy-button-status--unavailable .cmp-button .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-disabled-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-disabled-text-hover-inverted);
}
.batcom-container--primary-dark .batcom-bff-dynamicproduct .product-card__buy-button-status--unavailable .cmp-button, .batcom-container--secondary-dark .batcom-bff-dynamicproduct .product-card__buy-button-status--unavailable .cmp-button, .batcom-container--tertiary-dark .batcom-bff-dynamicproduct .product-card__buy-button-status--unavailable .cmp-button,
.batcom-container--primary-dark .batcom-bff-bundleproduct .product-card__buy-button-status--unavailable .cmp-button,
.batcom-container--secondary-dark .batcom-bff-bundleproduct .product-card__buy-button-status--unavailable .cmp-button,
.batcom-container--tertiary-dark .batcom-bff-bundleproduct .product-card__buy-button-status--unavailable .cmp-button {
  cursor: not-allowed;
}
.batcom-container--secondary-light .batcom-bff-dynamicproduct .product-card__buy-button-status--unavailable .cmp-button,
.batcom-container--secondary-light .batcom-bff-bundleproduct .product-card__buy-button-status--unavailable .cmp-button {
  --batcom-button-text: var(--batcom-color-button-disabled-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-disabled-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-disabled-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-disabled-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-disabled-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-disabled-border-hover-inverted);
}
.batcom-container--secondary-light .batcom-bff-dynamicproduct .product-card__buy-button-status--unavailable .cmp-button .cmp-button__svg :is(svg, g, path),
.batcom-container--secondary-light .batcom-bff-bundleproduct .product-card__buy-button-status--unavailable .cmp-button .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-disabled-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-disabled-text-hover-inverted);
}
.batcom-container--secondary-light .batcom-bff-dynamicproduct .product-card__buy-button-status--unavailable .cmp-button,
.batcom-container--secondary-light .batcom-bff-bundleproduct .product-card__buy-button-status--unavailable .cmp-button {
  cursor: not-allowed;
}
.batcom-bff-dynamicproduct .product-card__buy-button-status--unavailable .cmp-button,
.batcom-bff-bundleproduct .product-card__buy-button-status--unavailable .cmp-button {
  padding: 13px 55px;
  height: 44px;
}
.batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more,
.batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more {
  --batcom-button-text: var(--batcom-color-button-disabled-text);
  --batcom-button-text-hover: var(--batcom-color-button-disabled-text-hover);
  --batcom-button-bg: var(--batcom-color-button-disabled-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-disabled-bg-hover);
  --batcom-button-border: var(--batcom-color-button-disabled-border);
  --batcom-button-border-hover: var(--batcom-color-button-disabled-border-hover);
  --batcom-button-icon: var(--batcom-color-button-disabled-text);
  --batcom-button-icon-hover: var(--batcom-color-button-disabled-text-hover);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-disabled-border-radius);
  cursor: not-allowed;
  pointer-events: none;
}
.batcom-container--primary-dark .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more, .batcom-container--secondary-dark .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more, .batcom-container--tertiary-dark .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more,
.batcom-container--primary-dark .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more,
.batcom-container--secondary-dark .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more,
.batcom-container--tertiary-dark .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more {
  --batcom-button-text: var(--batcom-color-button-disabled-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-disabled-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-disabled-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-disabled-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-disabled-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-disabled-border-hover-inverted);
}
.batcom-container--primary-dark .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more .cmp-button__svg :is(svg, g, path),
.batcom-container--primary-dark .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more .cmp-button__svg :is(svg, g, path),
.batcom-container--secondary-dark .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more .cmp-button__svg :is(svg, g, path),
.batcom-container--tertiary-dark .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-disabled-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-disabled-text-hover-inverted);
}
.batcom-container--primary-dark .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more, .batcom-container--secondary-dark .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more, .batcom-container--tertiary-dark .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more,
.batcom-container--primary-dark .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more,
.batcom-container--secondary-dark .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more,
.batcom-container--tertiary-dark .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more {
  cursor: not-allowed;
}
.batcom-container--secondary-light .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more,
.batcom-container--secondary-light .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more {
  --batcom-button-text: var(--batcom-color-button-disabled-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-disabled-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-disabled-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-disabled-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-disabled-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-disabled-border-hover-inverted);
}
.batcom-container--secondary-light .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more .cmp-button__svg :is(svg, g, path),
.batcom-container--secondary-light .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-disabled-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-disabled-text-hover-inverted);
}
.batcom-container--secondary-light .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more,
.batcom-container--secondary-light .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more {
  cursor: not-allowed;
}
.batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more .cmp-button,
.batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more .cmp-button {
  --batcom-button-text: var(--batcom-color-button-disabled-text);
  --batcom-button-text-hover: var(--batcom-color-button-disabled-text-hover);
  --batcom-button-bg: var(--batcom-color-button-disabled-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-disabled-bg-hover);
  --batcom-button-border: var(--batcom-color-button-disabled-border);
  --batcom-button-border-hover: var(--batcom-color-button-disabled-border-hover);
  --batcom-button-icon: var(--batcom-color-button-disabled-text);
  --batcom-button-icon-hover: var(--batcom-color-button-disabled-text-hover);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-disabled-border-radius);
  cursor: not-allowed;
  pointer-events: none;
}
.batcom-container--primary-dark .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more .cmp-button, .batcom-container--secondary-dark .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more .cmp-button, .batcom-container--tertiary-dark .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more .cmp-button,
.batcom-container--primary-dark .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more .cmp-button,
.batcom-container--secondary-dark .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more .cmp-button,
.batcom-container--tertiary-dark .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more .cmp-button {
  --batcom-button-text: var(--batcom-color-button-disabled-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-disabled-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-disabled-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-disabled-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-disabled-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-disabled-border-hover-inverted);
}
.batcom-container--primary-dark .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more .cmp-button .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more .cmp-button .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more .cmp-button .cmp-button__svg :is(svg, g, path),
.batcom-container--primary-dark .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more .cmp-button .cmp-button__svg :is(svg, g, path),
.batcom-container--secondary-dark .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more .cmp-button .cmp-button__svg :is(svg, g, path),
.batcom-container--tertiary-dark .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more .cmp-button .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-disabled-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-disabled-text-hover-inverted);
}
.batcom-container--primary-dark .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more .cmp-button, .batcom-container--secondary-dark .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more .cmp-button, .batcom-container--tertiary-dark .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more .cmp-button,
.batcom-container--primary-dark .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more .cmp-button,
.batcom-container--secondary-dark .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more .cmp-button,
.batcom-container--tertiary-dark .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more .cmp-button {
  cursor: not-allowed;
}
.batcom-container--secondary-light .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more .cmp-button,
.batcom-container--secondary-light .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more .cmp-button {
  --batcom-button-text: var(--batcom-color-button-disabled-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-disabled-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-disabled-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-disabled-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-disabled-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-disabled-border-hover-inverted);
}
.batcom-container--secondary-light .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more .cmp-button .cmp-button__svg :is(svg, g, path),
.batcom-container--secondary-light .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more .cmp-button .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-disabled-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-disabled-text-hover-inverted);
}
.batcom-container--secondary-light .batcom-bff-dynamicproduct .product-card__buy-button.bundle--add-more .cmp-button,
.batcom-container--secondary-light .batcom-bff-bundleproduct .product-card__buy-button.bundle--add-more .cmp-button {
  cursor: not-allowed;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-dynamicproduct .product-card__buy-button,
  .batcom-bff-bundleproduct .product-card__buy-button {
    text-align: left;
    margin-top: 24px;
  }
}
.batcom-bff-dynamicproduct .product-card[data-key-quantity-available="0"] .product-card__buy-button-status--instock,
.batcom-bff-bundleproduct .product-card[data-key-quantity-available="0"] .product-card__buy-button-status--instock {
  display: none;
}
.batcom-bff-dynamicproduct .product-card[data-key-quantity-available="0"] .product-card__buy-button-status--unavailable,
.batcom-bff-bundleproduct .product-card[data-key-quantity-available="0"] .product-card__buy-button-status--unavailable {
  display: block;
}
.batcom-bff-dynamicproduct .product-card[data-key-quantity-available="0"]:not([data-key-retricted-online-purchase=null]) .product-card__buy-button-status--unavailable,
.batcom-bff-bundleproduct .product-card[data-key-quantity-available="0"]:not([data-key-retricted-online-purchase=null]) .product-card__buy-button-status--unavailable {
  display: none;
}
.batcom-bff-dynamicproduct .product-card__action-container,
.batcom-bff-bundleproduct .product-card__action-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 24px;
}
.batcom-bff-dynamicproduct .product-card__action-container .product-card__price-container,
.batcom-bff-dynamicproduct .product-card__action-container button,
.batcom-bff-bundleproduct .product-card__action-container .product-card__price-container,
.batcom-bff-bundleproduct .product-card__action-container button {
  margin-top: 0;
}
.batcom-bff-dynamicproduct .product-card__dotsWrapper,
.batcom-bff-bundleproduct .product-card__dotsWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.batcom-bff-dynamicproduct .product-card__dotsContainer, .batcom-bff-dynamicproduct .product-card__dotsLabelContainer,
.batcom-bff-bundleproduct .product-card__dotsContainer,
.batcom-bff-bundleproduct .product-card__dotsLabelContainer {
  display: flex;
  align-items: center;
}
.batcom-bff-dynamicproduct .product-card__dots-grid,
.batcom-bff-bundleproduct .product-card__dots-grid {
  display: grid;
  grid-template-columns: repeat(5, 13px);
}
.batcom-bff-dynamicproduct .product-card__dotsNumber,
.batcom-bff-bundleproduct .product-card__dotsNumber {
  margin-left: 5px;
}
.batcom-bff-dynamicproduct .product-card__level-row,
.batcom-bff-bundleproduct .product-card__level-row {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  align-items: center;
  grid-gap: 15px;
  padding: 15px 0;
  border-top: 1px solid currentColor;
}
.batcom-bff-dynamicproduct .product-card__level-row:nth-child(2),
.batcom-bff-bundleproduct .product-card__level-row:nth-child(2) {
  border-bottom: 1px solid currentColor;
}
@media only screen and (min-width: 480px) {
  .batcom-bff-dynamicproduct .product-card__level-row,
  .batcom-bff-bundleproduct .product-card__level-row {
    grid-template-columns: 0.3fr 1fr 1fr;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-bff-dynamicproduct .product-card__level-row,
  .batcom-bff-bundleproduct .product-card__level-row {
    grid-template-columns: 0.5fr 1fr;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-dynamicproduct .product-card__level-row,
  .batcom-bff-bundleproduct .product-card__level-row {
    grid-template-columns: 0.3fr 1fr 1fr;
  }
}
.batcom-bff-dynamicproduct .product-card__level-row .product-card__dotsWrapper:nth-child(3),
.batcom-bff-bundleproduct .product-card__level-row .product-card__dotsWrapper:nth-child(3) {
  grid-column: 2;
}
@media only screen and (min-width: 480px) {
  .batcom-bff-dynamicproduct .product-card__level-row .product-card__dotsWrapper:nth-child(3),
  .batcom-bff-bundleproduct .product-card__level-row .product-card__dotsWrapper:nth-child(3) {
    grid-column: 3;
  }
  .batcom-bff-dynamicproduct .product-card__level-row .product-card__dotsWrapper:nth-child(3) .product-card__dotsContainer,
  .batcom-bff-bundleproduct .product-card__level-row .product-card__dotsWrapper:nth-child(3) .product-card__dotsContainer {
    justify-content: flex-end;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-bff-dynamicproduct .product-card__level-row .product-card__dotsWrapper:nth-child(3),
  .batcom-bff-bundleproduct .product-card__level-row .product-card__dotsWrapper:nth-child(3) {
    grid-column: 2;
  }
  .batcom-bff-dynamicproduct .product-card__level-row .product-card__dotsWrapper:nth-child(3) .product-card__dotsContainer,
  .batcom-bff-bundleproduct .product-card__level-row .product-card__dotsWrapper:nth-child(3) .product-card__dotsContainer {
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-dynamicproduct .product-card__level-row .product-card__dotsWrapper:nth-child(3),
  .batcom-bff-bundleproduct .product-card__level-row .product-card__dotsWrapper:nth-child(3) {
    grid-column: 3;
  }
  .batcom-bff-dynamicproduct .product-card__level-row .product-card__dotsWrapper:nth-child(3) .product-card__dotsContainer,
  .batcom-bff-bundleproduct .product-card__level-row .product-card__dotsWrapper:nth-child(3) .product-card__dotsContainer {
    justify-content: flex-end;
  }
}
.batcom-bff-dynamicproduct .product-card__level-label,
.batcom-bff-bundleproduct .product-card__level-label {
  margin-right: 5px;
  white-space: nowrap;
}
.batcom-bff-dynamicproduct .product-card__level-label-main,
.batcom-bff-bundleproduct .product-card__level-label-main {
  font-weight: bold;
}
.batcom-bff-dynamicproduct .product-card__dot,
.batcom-bff-bundleproduct .product-card__dot {
  align-self: center;
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.batcom-bff-dynamicproduct .product-card__dot.filled,
.batcom-bff-bundleproduct .product-card__dot.filled {
  background-color: currentColor;
}
.batcom-bff-dynamicproduct .product-card__tooltip-wrapper,
.batcom-bff-bundleproduct .product-card__tooltip-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 20px;
}
.batcom-bff-dynamicproduct .product-card__tooltip,
.batcom-bff-bundleproduct .product-card__tooltip {
  position: absolute;
  width: 160px;
  left: 50%;
  top: 95%;
  margin-left: -80px;
  margin-top: 16px;
  padding: 14px;
  z-index: 1;
  color: white;
  background: black;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}
.batcom-bff-dynamicproduct .product-card__tooltip::after,
.batcom-bff-bundleproduct .product-card__tooltip::after {
  content: "";
  position: absolute;
  bottom: 95%;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent black;
}
.batcom-bff-dynamicproduct .product-card__tooltip-wrapper:focus .product-card__tooltip, .batcom-bff-dynamicproduct .product-card__tooltip-wrapper:hover .product-card__tooltip,
.batcom-bff-bundleproduct .product-card__tooltip-wrapper:focus .product-card__tooltip,
.batcom-bff-bundleproduct .product-card__tooltip-wrapper:hover .product-card__tooltip {
  visibility: visible;
  opacity: 1;
}
.batcom-bff-dynamicproduct .product-card__strength-label,
.batcom-bff-bundleproduct .product-card__strength-label {
  display: block;
  width: 100%;
  color: #2b2b2b;
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-weight: 700;
  font-family: var(--batcom-font-face-2-name);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.batcom-bff-dynamicproduct .product-card__strength-area.jpvariant .product-card__strength-level-label,
.batcom-bff-bundleproduct .product-card__strength-area.jpvariant .product-card__strength-level-label {
  font-family: var(--batcom-typography-body-family), sans-serif;
  margin-bottom: 8px;
  font-size: 0.75rem;
  line-height: 1rem;
}
.batcom-bff-dynamicproduct .product-card__strength-area.jpvariant .product-card__strength-buttons,
.batcom-bff-bundleproduct .product-card__strength-area.jpvariant .product-card__strength-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.batcom-bff-dynamicproduct .product-card__strbtn-wrapper,
.batcom-bff-bundleproduct .product-card__strbtn-wrapper {
  font-family: var(--batcom-typography-button-family), sans-serif;
  cursor: pointer;
  border: 2px solid var(--batcom-color-palette-3-inverted, #d7dbe1);
  width: 98px;
  padding: 4px 5px 0;
  margin-right: 4px;
  margin-bottom: 4px;
  background-color: var(--batcom-color-button-primary-bg-inverted, #fff);
}
@media only screen and (min-width: 768px) {
  .batcom-bff-dynamicproduct .product-card__strbtn-wrapper,
  .batcom-bff-bundleproduct .product-card__strbtn-wrapper {
    width: 162px;
    padding: 12px 7px 0;
    margin-right: 8px;
    margin-bottom: 8px;
  }
}
.batcom-bff-dynamicproduct .product-card__strbtn-label,
.batcom-bff-bundleproduct .product-card__strbtn-label {
  background-color: var(--batcom-color-palette-3-inverted, #d7dbe1);
  font-weight: var(--batcom-typography-weight-normal);
  text-align: center;
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 12px;
  color: var(--batcom-color-body-text, #272626);
  margin-bottom: 8px;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-dynamicproduct .product-card__strbtn-label,
  .batcom-bff-bundleproduct .product-card__strbtn-label {
    margin-bottom: 12px;
  }
}
.batcom-bff-dynamicproduct .product-card__strbtn-row,
.batcom-bff-bundleproduct .product-card__strbtn-row {
  width: 100%;
  padding: 0;
  justify-content: space-between;
  margin-bottom: 4px;
  display: flex;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-dynamicproduct .product-card__strbtn-row,
  .batcom-bff-bundleproduct .product-card__strbtn-row {
    padding: 0 5px;
    margin-bottom: 12px;
  }
}
.batcom-bff-dynamicproduct .product-card__strbtn-data-name,
.batcom-bff-bundleproduct .product-card__strbtn-data-name {
  font-size: 0.688rem;
  color: var(--batcom-color-palette-3-inverted, #d7dbe1);
}
@media only screen and (min-width: 768px) {
  .batcom-bff-dynamicproduct .product-card__strbtn-data-name,
  .batcom-bff-bundleproduct .product-card__strbtn-data-name {
    font-size: 0.75rem;
  }
}
.batcom-bff-dynamicproduct .product-card__strbtn-data-value,
.batcom-bff-bundleproduct .product-card__strbtn-data-value {
  display: flex;
  align-items: center;
}
.batcom-bff-dynamicproduct .product-card__strbtn-circle,
.batcom-bff-bundleproduct .product-card__strbtn-circle {
  width: 8px;
  height: 8px;
  margin-right: 2px;
  border-radius: 50%;
  border: 1px solid var(--batcom-color-palette-3-inverted, #d7dbe1);
}
.batcom-bff-dynamicproduct .product-card__strbtn-circle--filled,
.batcom-bff-bundleproduct .product-card__strbtn-circle--filled {
  background-color: var(--batcom-color-palette-3-inverted, #d7dbe1);
}
@media only screen and (min-width: 768px) {
  .batcom-bff-dynamicproduct .product-card__strbtn-circle,
  .batcom-bff-bundleproduct .product-card__strbtn-circle {
    width: 10px;
    height: 10px;
    margin-right: 3px;
  }
}
.batcom-bff-dynamicproduct .product-card__strbtn-wrapper.active,
.batcom-bff-bundleproduct .product-card__strbtn-wrapper.active {
  border-color: var(--batcom-color-button-primary-bg, #254aa2);
}
.batcom-bff-dynamicproduct .product-card__strbtn-wrapper.active .product-card__strbtn-label,
.batcom-bff-bundleproduct .product-card__strbtn-wrapper.active .product-card__strbtn-label {
  background-color: var(--batcom-color-button-primary-bg, #254aa2);
  color: var(--batcom-color-button-primary-text, #fff);
}
.batcom-bff-dynamicproduct .product-card__strbtn-wrapper.active .product-card__strbtn-data-name,
.batcom-bff-bundleproduct .product-card__strbtn-wrapper.active .product-card__strbtn-data-name {
  color: var(--batcom-color-button-primary-bg, #254aa2);
  font-weight: 500;
}
.batcom-bff-dynamicproduct .product-card__strbtn-wrapper.active .product-card__strbtn-circle,
.batcom-bff-bundleproduct .product-card__strbtn-wrapper.active .product-card__strbtn-circle {
  border-color: var(--batcom-color-button-primary-bg, #254aa2);
}
.batcom-bff-dynamicproduct .product-card__strbtn-wrapper.active .product-card__strbtn-circle--filled,
.batcom-bff-bundleproduct .product-card__strbtn-wrapper.active .product-card__strbtn-circle--filled {
  background-color: var(--batcom-color-button-primary-bg, #254aa2);
}
.batcom-bff-dynamicproduct .product-card__strbtn-wrapper.active.velo-jp-intensity,
.batcom-bff-bundleproduct .product-card__strbtn-wrapper.active.velo-jp-intensity {
  border-color: var(--intensity-active-item, #254aa2);
}
.batcom-bff-dynamicproduct .product-card__strbtn-wrapper.active.velo-jp-intensity .product-card__strbtn-label,
.batcom-bff-bundleproduct .product-card__strbtn-wrapper.active.velo-jp-intensity .product-card__strbtn-label {
  background-color: var(--intensity-active-item, #254aa2);
}
.batcom-bff-dynamicproduct .product-card__strbtn-wrapper.active.velo-jp-intensity .product-card__strbtn-data-name,
.batcom-bff-bundleproduct .product-card__strbtn-wrapper.active.velo-jp-intensity .product-card__strbtn-data-name {
  color: var(--intensity-active-item, #254aa2);
}
.batcom-bff-dynamicproduct .product-card__strbtn-wrapper.active.velo-jp-intensity .product-card__strbtn-circle,
.batcom-bff-bundleproduct .product-card__strbtn-wrapper.active.velo-jp-intensity .product-card__strbtn-circle {
  border-color: var(--intensity-active-item, #254aa2);
}
.batcom-bff-dynamicproduct .product-card__strbtn-wrapper.active.velo-jp-intensity .product-card__strbtn-circle--filled,
.batcom-bff-bundleproduct .product-card__strbtn-wrapper.active.velo-jp-intensity .product-card__strbtn-circle--filled {
  background-color: var(--intensity-active-item, #254aa2);
}
.batcom-bff-dynamicproduct .product-card__strbtn-wrapper.disabled,
.batcom-bff-bundleproduct .product-card__strbtn-wrapper.disabled {
  cursor: not-allowed;
}
.batcom-bff-dynamicproduct .product-card__size-buttons, .batcom-bff-dynamicproduct .product-card__nicotine-buttons:has(.product-card__strength-button), .batcom-bff-dynamicproduct .product-card__strength-buttons,
.batcom-bff-bundleproduct .product-card__size-buttons,
.batcom-bff-bundleproduct .product-card__nicotine-buttons:has(.product-card__strength-button),
.batcom-bff-bundleproduct .product-card__strength-buttons {
  display: grid;
  margin-bottom: 10px;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (min-width: 480px) {
  .batcom-bff-dynamicproduct .product-card__size-buttons, .batcom-bff-dynamicproduct .product-card__nicotine-buttons:has(.product-card__strength-button), .batcom-bff-dynamicproduct .product-card__strength-buttons,
  .batcom-bff-bundleproduct .product-card__size-buttons,
  .batcom-bff-bundleproduct .product-card__nicotine-buttons:has(.product-card__strength-button),
  .batcom-bff-bundleproduct .product-card__strength-buttons {
    grid-template-columns: repeat(4, 1fr);
  }
}
.batcom-bff-dynamicproduct .product-card__strength-button, .batcom-bff-dynamicproduct .product-card__size-button,
.batcom-bff-bundleproduct .product-card__strength-button,
.batcom-bff-bundleproduct .product-card__size-button {
  display: flex;
  flex-direction: column;
  flex-basis: 50%;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7dbe1;
  cursor: pointer;
  height: 50px;
  padding: 9px 0;
  color: #6b6b6b;
  background: none;
}
@media only screen and (max-width: 479px) {
  .batcom-bff-dynamicproduct .product-card__strength-button:nth-child(n+3), .batcom-bff-dynamicproduct .product-card__size-button:nth-child(n+3),
  .batcom-bff-bundleproduct .product-card__strength-button:nth-child(n+3),
  .batcom-bff-bundleproduct .product-card__size-button:nth-child(n+3) {
    border-top-color: transparent;
  }
  .batcom-bff-dynamicproduct .product-card__strength-button:nth-child(even), .batcom-bff-dynamicproduct .product-card__size-button:nth-child(even),
  .batcom-bff-bundleproduct .product-card__strength-button:nth-child(even),
  .batcom-bff-bundleproduct .product-card__size-button:nth-child(even) {
    border-left-color: transparent;
  }
}
@media only screen and (min-width: 480px) {
  .batcom-bff-dynamicproduct .product-card__strength-button:nth-child(n+5), .batcom-bff-dynamicproduct .product-card__size-button:nth-child(n+5),
  .batcom-bff-bundleproduct .product-card__strength-button:nth-child(n+5),
  .batcom-bff-bundleproduct .product-card__size-button:nth-child(n+5) {
    border-top-color: transparent;
  }
  .batcom-bff-dynamicproduct .product-card__strength-button:nth-child(4n+3), .batcom-bff-dynamicproduct .product-card__size-button:nth-child(4n+3),
  .batcom-bff-bundleproduct .product-card__strength-button:nth-child(4n+3),
  .batcom-bff-bundleproduct .product-card__size-button:nth-child(4n+3) {
    border-left-color: transparent;
  }
  .batcom-bff-dynamicproduct .product-card__strength-button:nth-child(even), .batcom-bff-dynamicproduct .product-card__size-button:nth-child(even),
  .batcom-bff-bundleproduct .product-card__strength-button:nth-child(even),
  .batcom-bff-bundleproduct .product-card__size-button:nth-child(even) {
    border-left-color: transparent;
  }
}
.batcom-bff-dynamicproduct .product-card__strength-level-label,
.batcom-bff-bundleproduct .product-card__strength-level-label {
  display: inline-flex;
  color: #6b6b6b;
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-weight: 700;
  font-family: var(--batcom-font-face-2-name);
  text-transform: uppercase;
}
.batcom-bff-dynamicproduct .product-card__strength-levels,
.batcom-bff-bundleproduct .product-card__strength-levels {
  display: inline-flex;
}
.batcom-bff-dynamicproduct .product-card__strength-level,
.batcom-bff-bundleproduct .product-card__strength-level {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 1px solid #5d5f63;
  background-color: transparent;
  margin-right: 2px;
  display: inline-flex;
}
.batcom-bff-dynamicproduct .product-card__strength-level--filled,
.batcom-bff-bundleproduct .product-card__strength-level--filled {
  background-color: #5d5f63;
}
.batcom-bff-dynamicproduct .product-card__strength-button.active, .batcom-bff-dynamicproduct .product-card__size-button.active,
.batcom-bff-bundleproduct .product-card__strength-button.active,
.batcom-bff-bundleproduct .product-card__size-button.active {
  background: #01567e;
  border-color: #01567e;
  color: #fff;
}
.batcom-bff-dynamicproduct .product-card__strength-button.active .product-card__strength-level-label, .batcom-bff-dynamicproduct .product-card__size-button.active .product-card__strength-level-label,
.batcom-bff-bundleproduct .product-card__strength-button.active .product-card__strength-level-label,
.batcom-bff-bundleproduct .product-card__size-button.active .product-card__strength-level-label {
  color: #fff;
}
.batcom-bff-dynamicproduct .product-card__strength-button.active .product-card__strength-level, .batcom-bff-dynamicproduct .product-card__size-button.active .product-card__strength-level,
.batcom-bff-bundleproduct .product-card__strength-button.active .product-card__strength-level,
.batcom-bff-bundleproduct .product-card__size-button.active .product-card__strength-level {
  border-color: #fff;
}
.batcom-bff-dynamicproduct .product-card__strength-button.active .product-card__strength-level--filled, .batcom-bff-dynamicproduct .product-card__size-button.active .product-card__strength-level--filled,
.batcom-bff-bundleproduct .product-card__strength-button.active .product-card__strength-level--filled,
.batcom-bff-bundleproduct .product-card__size-button.active .product-card__strength-level--filled {
  background-color: #fff;
}
.batcom-bff-dynamicproduct .product-card__buy .notification-button,
.batcom-bff-dynamicproduct .product-card__buy .notification-set-button,
.batcom-bff-bundleproduct .product-card__buy .notification-button,
.batcom-bff-bundleproduct .product-card__buy .notification-set-button {
  display: none;
}
.batcom-bff-dynamicproduct .product-card__buy[data-key-notification-set=true] .notification-set-button,
.batcom-bff-bundleproduct .product-card__buy[data-key-notification-set=true] .notification-set-button {
  display: block;
}
.batcom-bff-dynamicproduct .product-card__buy[data-key-notification=true] .notification-button,
.batcom-bff-bundleproduct .product-card__buy[data-key-notification=true] .notification-button {
  display: block;
}
.batcom-bff-dynamicproduct .product-card__buy[data-key-notification-disabled=true] .notification-button,
.batcom-bff-bundleproduct .product-card__buy[data-key-notification-disabled=true] .notification-button {
  display: block;
  cursor: not-allowed;
  pointer-events: none;
}
.batcom-bff-dynamicproduct .product-card__buy[data-key-notification-disabled=true] .notification-button span,
.batcom-bff-bundleproduct .product-card__buy[data-key-notification-disabled=true] .notification-button span {
  /* stylelint-disable-next-line declaration-no-important */
  color: var(--batcom-color-button-disabled-text) !important;
  background-color: var(--batcom-color-form-button-disabled-bg);
  border: none;
}
.batcom-bff-dynamicproduct .product-card__sticky-add-to-cart,
.batcom-bff-bundleproduct .product-card__sticky-add-to-cart {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.batcom-bff-dynamicproduct .product-card__sticky-add-to-cart.position-bottom,
.batcom-bff-bundleproduct .product-card__sticky-add-to-cart.position-bottom {
  top: auto;
  bottom: 0;
  box-shadow: 0 0 6.7px 2px rgba(0, 0, 0, 0.1);
}
.batcom-bff-dynamicproduct .product-card__sticky-add-to-cart,
.batcom-bff-bundleproduct .product-card__sticky-add-to-cart {
  transform: translateY(-100%);
  transition: transform 0.5s linear;
}
.batcom-bff-dynamicproduct .product-card__sticky-add-to-cart.show-banner,
.batcom-bff-bundleproduct .product-card__sticky-add-to-cart.show-banner {
  transform: translateY(0);
}
.batcom-bff-dynamicproduct .product-card__sticky-add-to-cart.position-bottom,
.batcom-bff-bundleproduct .product-card__sticky-add-to-cart.position-bottom {
  transform: translateY(100%);
}
.batcom-bff-dynamicproduct .product-card__sticky-add-to-cart.position-bottom.show-banner,
.batcom-bff-bundleproduct .product-card__sticky-add-to-cart.position-bottom.show-banner {
  transform: translateY(0);
}
@media only screen and (min-width: 480px) {
  .batcom-bff-dynamicproduct .product-card__sticky-add-to-cart:not(.position-bottom),
  .batcom-bff-bundleproduct .product-card__sticky-add-to-cart:not(.position-bottom) {
    display: none;
  }
}
.batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-container,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-container {
  background-color: var(--batcom-color-sticky-cart-banner-bg);
  color: var(--batcom-color-sticky-cart-banner-color);
  display: flex;
  width: 100%;
  padding: 16px 40px 12px;
}
@media only screen and (max-width: 479px) {
  .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-container,
  .batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-container {
    flex-direction: column;
    padding: 16px 25px 12px;
    gap: 14px;
  }
}
.batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-product-info-container,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-product-info-container {
  flex: 0.6;
}
.batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-product-info-container:has(:only-child),
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-product-info-container:has(:only-child) {
  display: flex;
  align-items: center;
}
.batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-label-container,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-label-container {
  font-size: 12px;
  font-weight: 400;
}
.batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-basket,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-basket {
  flex: 0.4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-right: 20px;
}
@media only screen and (max-width: 479px) {
  .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-basket,
  .batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-basket {
    flex-direction: column;
    margin-right: 0;
  }
}
.batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-button,
.batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-button,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button {
  display: none;
}
.batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-OOS-label,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-OOS-label {
  visibility: hidden;
  color: var(--batcom-color-sticky-cart-banner-oos-color);
  text-transform: uppercase;
}
@media only screen and (max-width: 479px) {
  .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-OOS-label,
  .batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-OOS-label {
    display: none;
  }
}
.batcom-bff-dynamicproduct .product-card__sticky-cart-banner-container,
.batcom-bff-bundleproduct .product-card__sticky-cart-banner-container {
  background-color: var(--batcom-color-sticky-cart-banner-bg);
  padding: 12px 20px;
}
.batcom-bff-dynamicproduct .product-card__sticky-cart-banner-container, .batcom-bff-dynamicproduct .product-card__sticky-cart-banner-quantity-container, .batcom-bff-dynamicproduct .product-card__sticky-cart-banner-buy-basket,
.batcom-bff-bundleproduct .product-card__sticky-cart-banner-container,
.batcom-bff-bundleproduct .product-card__sticky-cart-banner-quantity-container,
.batcom-bff-bundleproduct .product-card__sticky-cart-banner-buy-basket {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.batcom-bff-dynamicproduct .product-card__sticky-cart-banner-buy-basket,
.batcom-bff-bundleproduct .product-card__sticky-cart-banner-buy-basket {
  gap: 12px;
}
.batcom-bff-dynamicproduct .product-card__sticky-cart-quantity-btn,
.batcom-bff-bundleproduct .product-card__sticky-cart-quantity-btn {
  width: 32px;
  height: 32px;
  background: var(--batcom-color-sticky-cart-banner-icon-bg);
  border-radius: 50%;
  border: 0;
}
.batcom-bff-dynamicproduct .product-card__sticky-cart-quantity-btn.button-disabled, .batcom-bff-dynamicproduct .product-card__sticky-cart-quantity-btn:disabled,
.batcom-bff-bundleproduct .product-card__sticky-cart-quantity-btn.button-disabled,
.batcom-bff-bundleproduct .product-card__sticky-cart-quantity-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.batcom-bff-dynamicproduct .product-card__sticky-cart-quantity-btn.button-disabled::after, .batcom-bff-dynamicproduct .product-card__sticky-cart-quantity-btn:disabled::after,
.batcom-bff-bundleproduct .product-card__sticky-cart-quantity-btn.button-disabled::after,
.batcom-bff-bundleproduct .product-card__sticky-cart-quantity-btn:disabled::after {
  background: var(--batcom-color-sticky-cart-banner-icon-color);
  cursor: not-allowed;
  pointer-events: none;
}
.batcom-bff-dynamicproduct .product-card__sticky-cart-quantity-btn::after,
.batcom-bff-bundleproduct .product-card__sticky-cart-quantity-btn::after {
  position: absolute;
  transform: translate(-50%, -50%);
  content: "";
  width: 22px;
  height: 23px;
  background: var(--batcom-color-sticky-cart-banner-icon-color);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.batcom-bff-dynamicproduct .product-card__sticky-cart-quantity-btn-minus::after,
.batcom-bff-bundleproduct .product-card__sticky-cart-quantity-btn-minus::after {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/quantity-minus.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/quantity-minus.svg");
}
.batcom-bff-dynamicproduct .product-card__sticky-cart-quantity-btn-plus::after,
.batcom-bff-bundleproduct .product-card__sticky-cart-quantity-btn-plus::after {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/quantity-plus.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/quantity-plus.svg");
}
.batcom-bff-dynamicproduct .product-card__sticky-cart-quantity-input,
.batcom-bff-bundleproduct .product-card__sticky-cart-quantity-input {
  border: 0;
  border-radius: 0;
  padding: 0;
  font-size: 14px;
  line-height: 22px;
  font-family: var(--batcom-font-face-3-name);
  text-align: center;
  width: 36px;
  background: transparent;
}
.batcom-bff-dynamicproduct .product-card__sticky-cart-price-container,
.batcom-bff-bundleproduct .product-card__sticky-cart-price-container {
  font-family: var(--batcom-font-face-4-name);
  font-weight: 700;
  color: var(--batcom-color-sticky-cart-banner-text);
  font-size: 20px;
  line-height: 16px;
  min-width: 70px;
  text-align: center;
}
.batcom-bff-dynamicproduct .product-card__sticky-cart-banner-buy-button, .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-button,
.batcom-bff-bundleproduct .product-card__sticky-cart-banner-buy-button,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-button {
  min-width: 120px;
  height: 40px;
  border-radius: 100px;
  padding: 13px 24px;
  background: var(--batcom-color-sticky-cart-banner-cta-bg);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.batcom-bff-dynamicproduct .product-card__sticky-banner-cta-label, .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-cta-label,
.batcom-bff-bundleproduct .product-card__sticky-banner-cta-label,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-cta-label {
  font-family: var(--batcom-font-face-4-name);
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1px;
  text-align: center;
  color: var(--batcom-color-sticky-cart-banner-cta-text);
  text-transform: uppercase;
}
.batcom-bff-dynamicproduct .product-card__sticky-banner-cta-label.batcom-is-success, .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-cta-label.batcom-is-success,
.batcom-bff-bundleproduct .product-card__sticky-banner-cta-label.batcom-is-success,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-cta-label.batcom-is-success {
  position: relative;
}
.batcom-bff-dynamicproduct .product-card__sticky-banner-cta-label.batcom-is-success > span, .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-cta-label.batcom-is-success > span,
.batcom-bff-bundleproduct .product-card__sticky-banner-cta-label.batcom-is-success > span,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-cta-label.batcom-is-success > span {
  filter: blur(2px);
}
.batcom-bff-dynamicproduct .product-card__sticky-banner-cta-label.batcom-is-success::after, .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-cta-label.batcom-is-success::after,
.batcom-bff-bundleproduct .product-card__sticky-banner-cta-label.batcom-is-success::after,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-cta-label.batcom-is-success::after {
  content: "";
  position: absolute;
  width: 45px;
  height: 45px;
  top: 50%;
  left: 50%;
  margin-top: -22.5px;
  margin-left: -22.5px;
  background-color: #000;
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/checkmark.gif");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/checkmark.gif");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.batcom-bff-dynamicproduct .product-card__sticky-banner-cta-label.loading svg, .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-cta-label.loading svg,
.batcom-bff-bundleproduct .product-card__sticky-banner-cta-label.loading svg,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-cta-label.loading svg {
  display: none;
}
.batcom-bff-dynamicproduct .product-card__sticky-banner-cta-label.loading > span, .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-cta-label.loading > span,
.batcom-bff-bundleproduct .product-card__sticky-banner-cta-label.loading > span,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-cta-label.loading > span {
  filter: blur(2px);
}
.batcom-bff-dynamicproduct .product-card__sticky-banner-cta-label.loading::after, .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-cta-label.loading::after,
.batcom-bff-bundleproduct .product-card__sticky-banner-cta-label.loading::after,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-cta-label.loading::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  background-color: #fff;
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/spinner.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/spinner.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  animation: spin 2s linear infinite;
}
.batcom-bff-dynamicproduct .product-card__sticky-banner-cta-label.loading, .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-cta-label.loading,
.batcom-bff-bundleproduct .product-card__sticky-banner-cta-label.loading,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-cta-label.loading {
  position: relative;
}
.batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-button,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-button {
  width: 312px;
  padding: 0;
  border-radius: 80px;
}
.batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more {
  --batcom-button-text: var(--batcom-color-button-disabled-text);
  --batcom-button-text-hover: var(--batcom-color-button-disabled-text-hover);
  --batcom-button-bg: var(--batcom-color-button-disabled-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-disabled-bg-hover);
  --batcom-button-border: var(--batcom-color-button-disabled-border);
  --batcom-button-border-hover: var(--batcom-color-button-disabled-border-hover);
  --batcom-button-icon: var(--batcom-color-button-disabled-text);
  --batcom-button-icon-hover: var(--batcom-color-button-disabled-text-hover);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-disabled-border-radius);
  cursor: not-allowed;
  pointer-events: none;
}
.batcom-container--primary-dark .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more, .batcom-container--secondary-dark .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more, .batcom-container--tertiary-dark .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more,
.batcom-container--primary-dark .batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more,
.batcom-container--secondary-dark .batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more,
.batcom-container--tertiary-dark .batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more {
  --batcom-button-text: var(--batcom-color-button-disabled-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-disabled-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-disabled-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-disabled-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-disabled-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-disabled-border-hover-inverted);
}
.batcom-container--primary-dark .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more .cmp-button__svg :is(svg, g, path),
.batcom-container--primary-dark .batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more .cmp-button__svg :is(svg, g, path),
.batcom-container--secondary-dark .batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more .cmp-button__svg :is(svg, g, path),
.batcom-container--tertiary-dark .batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-disabled-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-disabled-text-hover-inverted);
}
.batcom-container--primary-dark .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more, .batcom-container--secondary-dark .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more, .batcom-container--tertiary-dark .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more,
.batcom-container--primary-dark .batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more,
.batcom-container--secondary-dark .batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more,
.batcom-container--tertiary-dark .batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more {
  cursor: not-allowed;
}
.batcom-container--secondary-light .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more,
.batcom-container--secondary-light .batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more {
  --batcom-button-text: var(--batcom-color-button-disabled-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-disabled-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-disabled-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-disabled-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-disabled-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-disabled-border-hover-inverted);
}
.batcom-container--secondary-light .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more .cmp-button__svg :is(svg, g, path),
.batcom-container--secondary-light .batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-disabled-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-disabled-text-hover-inverted);
}
.batcom-container--secondary-light .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more,
.batcom-container--secondary-light .batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more {
  cursor: not-allowed;
}
.batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more {
  background-color: var(--batcom-color-form-button-disabled-bg, #e4e3e3);
}
.batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more span,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-button.bundle--add-more span {
  color: var(--batcom-color-button-disabled-text, #636363);
}
.batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-button span,
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-button span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 479px) {
  .batcom-bff-dynamicproduct .product-card__sticky-cart--custom-variant-banner-buy-button,
  .batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-banner-buy-button {
    width: 100%;
  }
}
.batcom-bff-dynamicproduct .product-card_subscription-container,
.batcom-bff-bundleproduct .product-card_subscription-container {
  background-color: var(--batcom-color-container-secondary-light-bg);
  padding: 20px 24px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-transform: uppercase;
}
.batcom-bff-dynamicproduct .product-card_subscription-container input[type=radio],
.batcom-bff-bundleproduct .product-card_subscription-container input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--batcom-color-body-text);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transform: translateY(-1px);
}
.batcom-bff-dynamicproduct .product-card_subscription-container input[type=radio]:checked::after,
.batcom-bff-bundleproduct .product-card_subscription-container input[type=radio]:checked::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--batcom-color-body-text);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.batcom-bff-dynamicproduct .product-card_subscription-row,
.batcom-bff-bundleproduct .product-card_subscription-row {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-dynamicproduct .product-card_subscription-row,
  .batcom-bff-bundleproduct .product-card_subscription-row {
    width: 45%;
  }
}
.batcom-bff-dynamicproduct .product-card_subscription-row.product-card_subscription-subscribe-left,
.batcom-bff-bundleproduct .product-card_subscription-row.product-card_subscription-subscribe-left {
  gap: 8px;
}
.batcom-bff-dynamicproduct .product-card_subscription-radio,
.batcom-bff-bundleproduct .product-card_subscription-radio {
  display: flex;
  align-items: center;
  height: 18px;
}
.batcom-bff-dynamicproduct .product-card_subscription-text,
.batcom-bff-bundleproduct .product-card_subscription-text {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.batcom-bff-dynamicproduct .product-card_subscription-subscribe,
.batcom-bff-bundleproduct .product-card_subscription-subscribe {
  display: flex;
  align-items: center;
  gap: 16px;
}
.batcom-bff-dynamicproduct .product-card_subscription-subscribe-left,
.batcom-bff-bundleproduct .product-card_subscription-subscribe-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.batcom-bff-dynamicproduct .product-card_subscription-subscribe-right,
.batcom-bff-bundleproduct .product-card_subscription-subscribe-right {
  margin-left: auto;
}
@media (max-width: 768px) {
  .batcom-bff-dynamicproduct .product-card_subscription-subscribe-right,
  .batcom-bff-bundleproduct .product-card_subscription-subscribe-right {
    display: none;
  }
}
.batcom-bff-dynamicproduct .product-card_subscription-subscribe-learn-more,
.batcom-bff-bundleproduct .product-card_subscription-subscribe-learn-more {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.batcom-bff-dynamicproduct .product-card_subscription-subscribe-learn-more::after,
.batcom-bff-bundleproduct .product-card_subscription-subscribe-learn-more::after {
  content: "→";
  margin-left: 4px;
  position: relative;
  top: -1px;
  font-weight: 600;
}
.batcom-bff-dynamicproduct .product-card_subscription-subscribe-learn-more:hover,
.batcom-bff-bundleproduct .product-card_subscription-subscribe-learn-more:hover {
  text-decoration: none;
  color: var(--batcom-color-body-text);
}
.batcom-bff-dynamicproduct .batcom-hide,
.batcom-bff-bundleproduct .batcom-hide {
  display: none;
}

.batcom-bff-bundleproduct .product-card__action-container {
  margin-top: 0;
}
.batcom-bff-bundleproduct .product-card__action-container button,
.batcom-bff-bundleproduct .product-card__action-container .product-card__price-section {
  margin-top: 24px;
}
.batcom-bff-bundleproduct .product-card__sticky-add-to-cart {
  transform: translateY(0);
}
.batcom-bff-bundleproduct .product-card__sticky-add-to-cart.velo-it-bundle-design {
  position: absolute;
}
.batcom-bff-bundleproduct .product-card__sticky-add-to-cart {
  top: -56px;
}
@media only screen and (max-width: 479px) {
  .batcom-bff-bundleproduct .product-card__sticky-add-to-cart {
    margin-left: -20px;
    width: 100vw;
  }
}
@media only screen and (min-width: 480px) {
  .batcom-bff-bundleproduct .product-card__sticky-add-to-cart {
    display: block;
    top: auto;
    bottom: 17px;
    width: calc(100% + 42px);
    margin-left: -21px;
  }
}
@media only screen and (max-width: 479px) {
  .batcom-bff-bundleproduct .product-card__sticky-add-to-cart.stick-banner {
    position: fixed;
    top: 0;
    margin-left: 0;
  }
  .batcom-bff-bundleproduct .product-card__sticky-add-to-cart.stick-banner.hide-banner {
    transform: translateY(-100%);
  }
}
.batcom-bff-bundleproduct .product-card__sticky-add-to-cart.position-bottom {
  margin-left: 0;
  top: auto;
  bottom: 0;
  transform: translateY(100%);
  box-shadow: 0 0 6.7px 2px rgba(0, 0, 0, 0.1);
}
.batcom-bff-bundleproduct .product-card__sticky-add-to-cart.position-bottom.stick-banner {
  transform: translateY(0);
}
.batcom-bff-bundleproduct .product-card__sticky-cart-banner-container {
  padding: 8px 20px;
}
@media only screen and (min-width: 480px) {
  .batcom-bff-bundleproduct .product-card__sticky-cart-banner-container {
    padding: 23px 32px;
    border-radius: 30px;
  }
}
.batcom-bff-bundleproduct .product-card__sticky-cart-banner-quantity-container {
  gap: 15px;
}
@media only screen and (min-width: 480px) {
  .batcom-bff-bundleproduct .product-card__sticky-cart-banner-quantity-container {
    gap: 12px;
  }
}
.batcom-bff-bundleproduct .product-card__bundle-sticky-cart-quantity-input {
  font-size: 14px;
  line-height: 22px;
  font-family: var(--batcom-font-face-3-name);
  text-align: center;
  color: #2b2b2b;
  font-weight: 700;
}
@media only screen and (min-width: 480px) {
  .batcom-bff-bundleproduct .product-card__bundle-sticky-cart-quantity-input {
    font-size: 26px;
  }
}
@media only screen and (min-width: 480px) {
  .batcom-bff-bundleproduct .product-card__sticky-cart-banner-buy-basket {
    gap: 40px;
  }
}
.batcom-bff-bundleproduct .product-card__sticky-cart-price-container {
  font-size: 14px;
  min-width: 0;
}
@media only screen and (min-width: 480px) {
  .batcom-bff-bundleproduct .product-card__sticky-cart-price-container {
    font-size: 26px;
    margin-left: 40px;
    min-width: 65px;
  }
}
.batcom-bff-bundleproduct .product-card__sticky-cart--custom-variant-price-container {
  font-size: 20px;
  margin-left: 0;
}
@media only screen and (min-width: 480px) {
  .batcom-bff-bundleproduct .product-card__sticky-cart-banner-buy-button {
    margin-left: auto;
  }
}
.batcom-bff-bundleproduct .product-card__sticky-cart-banner-buy-button.bundle--add-more {
  background-color: #5d5f63;
  pointer-events: none;
}

.product-card__capsules {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  z-index: 2;
}
.product-card__capsules .product-card__capsule {
  display: flex;
  margin: 8px;
}

#pdp-ratings {
  height: 1.375rem;
}
#pdp-ratings .product-card__rating {
  height: 1.375rem;
  display: flex;
}
#pdp-ratings .product-card__rating-container {
  position: relative;
  display: inline-block;
  font-size: 0;
  width: 76px;
  height: 13px;
  margin-top: 3px;
  background: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/star-empty-pdp.svg") repeat-x;
  cursor: pointer;
}
#pdp-ratings .product-card__rating-filled {
  position: absolute;
  top: 0;
  left: 1px;
  height: 100%;
  background: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/star-filled-vuse-pdp.svg") repeat-x;
}
#pdp-ratings .product-card__rating-reviews {
  font-family: var(--batcom-font-face-1-name);
  font-size: 0.75rem;
  font-weight: 325;
  line-height: 1.375rem;
  text-align: left;
  padding: 0 8px;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  .product-card__bundle-items.velo-kit-redesign {
    max-height: 537px;
    overflow: scroll;
    margin-top: 22px;
  }
  .product-thumb-images .product-card__bundle-items.velo-kit-redesign {
    max-height: 610px;
  }
}
.product-card__bundle-items.velo-kit-redesign .product-card__bundle-item {
  background: #fff;
  padding: 16px;
  margin-bottom: 12px;
}
.product-card__bundle-items.velo-kit-redesign .product-card__bundle-item-title {
  background: none;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .product-card__bundle-items.velo-kit-redesign .product-card__bundle-item-title {
    text-transform: none;
  }
}
.product-card__bundle-items.velo-kit-redesign .product-card__bundle-item-pouches-info {
  font-size: 16px;
  line-height: 24px;
  color: #00bed5;
}
.product-card__bundle-items.velo-kit-redesign .product-card__bundle-item-quantity-container {
  padding: 0;
  margin: 16px 0 0;
}
.product-card__bundle-items.velo-kit-redesign .product-card__bundle-item-operations {
  margin: 0;
  padding: 0;
}
.product-card__bundle-items.velo-kit-redesign .product-card__bundle-item-quantityInput {
  font-weight: 700;
}
.product-card__bundle-items.velo-kit-redesign .product-card__bundle-item-quantityBtn {
  background: #2b2b2b;
}
.product-card__bundle-items.velo-kit-redesign .product-card__bundle-item-quantityBtn-minus::after {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/velo-kit-redesign-minus.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/velo-kit-redesign-minus.svg");
  background: #fff;
  height: 12px;
  width: 12px;
}
.product-card__bundle-items.velo-kit-redesign .product-card__bundle-item-quantityBtn-plus::after {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/velo-kit-redesign-plus.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/velo-kit-redesign-plus.svg");
  background: #fff;
  height: 12px;
  width: 12px;
}
.product-card__bundle-items.velo-kit-redesign .product-card__bundle-item_new-design-img-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
.product-card__bundle-items.velo-kit-redesign .product-card__bundle-item_new-design-img-wrapper img {
  width: 74px;
  display: inline-flex;
  height: 74px;
}
@media only screen and (max-width: 767px) {
  .product-card__bundle-items.velo-kit-redesign .product-card__bundle-item_new-design-img-wrapper img {
    display: none;
  }
}
.product-card__bundle-items.velo-kit-redesign .product-card__bundle-item_new-design-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media only screen and (max-width: 767px) {
  .product-card__bundle-items.velo-kit-redesign .product-card__bundle-item_new-design-info {
    gap: 8px;
    padding: 0 8px;
  }
}
.product-card__bundle-items.velo-kit-redesign .product-card__bundle-item-quantityBtn.velo-kit-redesign-button-disabled {
  cursor: not-allowed;
  opacity: 0.8;
}

.product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button, .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button {
  display: block;
  margin: 0;
}
@media only screen and (max-width: 479px) {
  .product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button, .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button {
    width: 100%;
  }
}
.product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span, .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span {
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
  font-family: var(--batcom-typography-button-family), sans-serif;
  letter-spacing: 0.063rem;
  font-weight: var(--batcom-typography-button-weight, 400);
  text-transform: uppercase;
  padding: 10px 20px;
}
@media only screen and (min-width: 768px) {
  .product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span, .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span {
    font-size: var(--batcom-typography-button-size-tablet);
    line-height: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span, .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
.product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span:focus, .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span:focus {
  outline: none;
}
.product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span:focus-visible, .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
.product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span, .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span {
  --batcom-button-text: var(--batcom-color-button-disabled-text);
  --batcom-button-text-hover: var(--batcom-color-button-disabled-text-hover);
  --batcom-button-bg: var(--batcom-color-button-disabled-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-disabled-bg-hover);
  --batcom-button-border: var(--batcom-color-button-disabled-border);
  --batcom-button-border-hover: var(--batcom-color-button-disabled-border-hover);
  --batcom-button-icon: var(--batcom-color-button-disabled-text);
  --batcom-button-icon-hover: var(--batcom-color-button-disabled-text-hover);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-disabled-border-radius);
  cursor: not-allowed;
  pointer-events: none;
}
.batcom-container--primary-dark .product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span, .batcom-container--secondary-dark .product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span, .batcom-container--tertiary-dark .product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span, .batcom-container--primary-dark .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span, .batcom-container--secondary-dark .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span, .batcom-container--tertiary-dark .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span {
  --batcom-button-text: var(--batcom-color-button-disabled-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-disabled-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-disabled-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-disabled-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-disabled-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-disabled-border-hover-inverted);
}
.batcom-container--primary-dark .product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark .product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark .product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span .cmp-button__svg :is(svg, g, path), .batcom-container--primary-dark .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-disabled-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-disabled-text-hover-inverted);
}
.batcom-container--primary-dark .product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span, .batcom-container--secondary-dark .product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span, .batcom-container--tertiary-dark .product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span, .batcom-container--primary-dark .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span, .batcom-container--secondary-dark .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span, .batcom-container--tertiary-dark .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span {
  cursor: not-allowed;
}
.batcom-container--secondary-light .product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span, .batcom-container--secondary-light .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span {
  --batcom-button-text: var(--batcom-color-button-disabled-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-disabled-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-disabled-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-disabled-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-disabled-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-disabled-border-hover-inverted);
}
.batcom-container--secondary-light .product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-light .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-disabled-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-disabled-text-hover-inverted);
}
.batcom-container--secondary-light .product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span, .batcom-container--secondary-light .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span {
  cursor: not-allowed;
}
.product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span, .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span {
  width: 312px;
  border: 2px solid #797874;
  /* stylelint-disable-next-line declaration-no-important */
  color: var(--batcom-color-sticky-cart-banner-restock-notification-message-color) !important;
  background-color: var(--batcom-color-sticky-cart-banner-restock-notification-message-bg-color);
}
@media only screen and (max-width: 479px) {
  .product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span, .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-set-button span {
    width: 100%;
  }
}
.product-card__buy[data-key-notification=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-button, .product-card__buy[data-key-notification=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-button {
  display: block;
  margin: 0;
}
@media only screen and (max-width: 479px) {
  .product-card__buy[data-key-notification=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-button, .product-card__buy[data-key-notification=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-button {
    width: 100%;
  }
}
.product-card__buy[data-key-notification=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-button span, .product-card__buy[data-key-notification=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-button span {
  width: 312px;
  /* stylelint-disable-next-line declaration-no-important */
  color: var(--batcom-color-sticky-cart-banner-restock-notification-label-color) !important;
  background-color: var(--batcom-color-sticky-cart-banner-restock-notification-label-bg-color);
}
@media only screen and (max-width: 479px) {
  .product-card__buy[data-key-notification=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-button span, .product-card__buy[data-key-notification=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-button span {
    width: 100%;
  }
}
.product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-OOS-label, .product-card__buy[data-key-notification=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-OOS-label, .product-card__buy[data-key-notification-disabled=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-OOS-label, .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-OOS-label, .product-card__buy[data-key-notification=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-OOS-label, .product-card__buy[data-key-notification-disabled=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-OOS-label {
  visibility: visible;
  display: block;
}
.product-card__buy[data-key-notification-set=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-button, .product-card__buy[data-key-notification=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-button, .product-card__buy[data-key-notification-disabled=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-button, .product-card__buy[data-key-notification-set=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-button, .product-card__buy[data-key-notification=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-button, .product-card__buy[data-key-notification-disabled=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-button {
  display: none;
}
.product-card__buy[data-key-notification-disabled=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-button, .product-card__buy[data-key-notification-disabled=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-button {
  display: block;
  cursor: not-allowed;
  pointer-events: none;
  margin: 0;
}
@media only screen and (max-width: 479px) {
  .product-card__buy[data-key-notification-disabled=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-button, .product-card__buy[data-key-notification-disabled=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-button {
    width: 100%;
  }
}
.product-card__buy[data-key-notification-disabled=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-button span, .product-card__buy[data-key-notification-disabled=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-button span {
  width: 312px;
  text-decoration: line-through;
}
@media only screen and (max-width: 479px) {
  .product-card__buy[data-key-notification-disabled=true] ~ .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-button span, .product-card__buy[data-key-notification-disabled=true] .product-card__sticky-add-to-cart .product-card__sticky-cart--custom-variant-banner-buy-basket .notification-button span {
    width: 100%;
  }
}

.velo-kit-redesign-error {
  width: 100%;
  min-height: 76px;
  margin-top: 8px;
  background: #e0f2fe;
  padding: 16px 32px;
  display: flex;
  align-items: flex-start;
  position: relative;
  justify-content: space-between;
  transition: transform 0.5s ease-in;
}
.velo-kit-redesign-error::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10%;
  bottom: 10%;
  width: 8px;
  border-radius: 4px;
  background-color: #2196f3;
}
@media only screen and (max-width: 479px) {
  .velo-kit-redesign-error {
    position: absolute;
    margin-bottom: 0;
    z-index: 2;
  }
  .velo-kit-redesign-error.stick-banner {
    position: fixed;
    top: 56px;
    width: calc(100% - 40px);
  }
  .velo-kit-redesign-error.hide-banner {
    transform: translateY(-56px);
  }
}
.velo-kit-redesign-error .product-card__error-icon {
  cursor: pointer;
}
.velo-kit-redesign-error .product-card-info {
  display: flex;
  flex-direction: column;
  color: #272626;
}
.velo-kit-redesign-error .product-card__error-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.container:has(.velo-kit-redesign-container) {
  background-color: var(--velo-kit-desktop-bg, #f1f4f8);
}
@media only screen and (max-width: 767px) {
  .container:has(.velo-kit-redesign-container) {
    background-color: var(--velo-kit-mobile-bg, #fff);
    padding: 0;
  }
}

.velo-kit-redesign-container {
  transition: all 0.2s ease-in;
  padding-top: 36px;
}
@media only screen and (min-width: 480px) {
  .velo-kit-redesign-container {
    padding-top: 40px;
    padding-bottom: 17px;
  }
}

#product-hero-container.velo-kit-redesign-container .batcom-text.text {
  margin-bottom: 0;
}

.velo-kit-redesign-container .product-card__buy {
  margin-top: 0;
}

.cmp-experiencefragment--product-hero:has(.velo-kit-redesign-container) {
  padding: 0;
}

@media only screen and (max-width: 479px) {
  .sticky-banner-padding-space {
    margin-top: 56px;
  }
}
@media only screen and (min-width: 480px) {
  .sticky-banner-padding-space {
    margin-bottom: 86px;
  }
}