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
*/
.cmp-list__items-container--waiting .batcom-dynamiclist__skeleton-container {
  display: flex;
}
.batcom-dynamiclist__skeleton-container {
  display: none;
  flex-flow: column nowrap;
}
@media only screen and (min-width: 768px) {
  .batcom-dynamiclist__skeleton-container {
    flex-flow: row wrap;
    gap: 7px;
  }
}
.batcom-dynamiclist__skeleton-item {
  background-color: #fff;
  padding: 10px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .batcom-dynamiclist__skeleton-item {
    width: calc(33.33% - 4.6666666667px);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-dynamiclist__skeleton-item {
    width: calc(25% - 5.25px);
  }
}
.batcom-dynamiclist__skeleton-image {
  max-width: 420px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .batcom-dynamiclist__skeleton-image--mobile {
    display: none;
  }
}
.batcom-dynamiclist__skeleton-image--desktop {
  display: none;
}
@media only screen and (min-width: 768px) {
  .batcom-dynamiclist__skeleton-image--desktop {
    display: block;
  }
}

.batcom-dynamiclist .cmp-list__carousel {
  min-height: 420px;
}
.batcom-dynamiclist .cmp-list__carousel .product-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  .batcom-dynamiclist .cmp-list__carousel .product-card {
    min-height: 358px;
  }
}
@media only screen and (max-width: 767px) {
  .batcom-dynamiclist .cmp-list__carousel .product-card__image {
    margin-right: 0;
  }
}
.batcom-dynamiclist .cmp-list__carousel .product-card .cmp-image__image {
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  /* stylelint-disable-next-line declaration-no-important */
  height: auto !important;
}
.batcom-dynamiclist .cmp-list__carousel .product-card__image {
  flex-grow: 0;
}
.batcom-dynamiclist .cmp-list__carousel .product-card__tag-new {
  top: 0;
  left: 0;
}
.batcom-dynamiclist .cmp-list__carousel .product-card__promo {
  margin-bottom: 10px;
}
.batcom-dynamiclist .cmp-list__carousel .product-card .product-card__content {
  flex: 1;
  justify-content: start;
}
@media only screen and (min-width: 768px) {
  .batcom-dynamiclist .cmp-list__carousel .product-card .product-card__content {
    padding-bottom: 32px;
  }
}
.batcom-dynamiclist .cmp-list__carousel .product-card__link {
  margin-top: 0;
}
.batcom-dynamiclist .cmp-list__carousel .product-card__button {
  width: 100%;
  margin-top: 0;
}
.batcom-dynamiclist .cmp-list__carousel .product-card__button .batcom-button--link {
  display: inline-block;
}
.batcom-dynamiclist .cmp-list__carousel .product-card__button .batcom-button--link .cmp-button {
  display: flex;
  align-items: center;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .batcom-dynamiclist .cmp-list__carousel .product-card__product-status {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.batcom-dynamiclist .cmp-list__carousel .product-card__product-status {
  display: none;
}

@media only screen and (min-width: 768px) {
  .batcom-dynamiclist .cmp-list__carousel .product-card__tag-new {
    left: 0;
    top: 0;
  }
}
.batcom-dynamiclist .product-card__tag-new {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.25rem;
  background: black;
  color: white;
  text-transform: uppercase;
  padding: 0 16px;
  position: absolute;
  left: 0;
  top: 11px;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .batcom-dynamiclist .product-card__tag-new {
    top: 20px;
    left: 20px;
  }
}
.batcom-dynamiclist .product-card__content {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .batcom-dynamiclist .product-card__content {
    padding-bottom: 0;
  }
}
.batcom-dynamiclist .product-card__info {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .batcom-dynamiclist .product-card__info {
    justify-content: space-between;
    padding-bottom: 0;
  }
}
.batcom-dynamiclist .product-card__promo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 5px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.batcom-dynamiclist .product-card__link {
  display: block;
  margin-bottom: 10px;
}
.batcom-dynamiclist .product-card__price {
  margin-top: 0;
  margin-bottom: 10px;
}
.batcom-dynamiclist .product-card__name {
  font-family: var(--batcom-font-face-1-name);
  font-weight: 325;
  color: #2a2a2a;
}
.batcom-dynamiclist .product-card__nicotine-label {
  display: block;
  color: #2a2a2a;
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-family: var(--batcom-font-face-2-name);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.batcom-dynamiclist .product-card__nicotine-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 28px;
  justify-content: flex-start;
  gap: 12px;
}
.batcom-dynamiclist .product-card__variant-option--label {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  cursor: pointer;
  border: 1px solid #dedede;
  border-radius: 100%;
  color: #1d1d1b;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
}
.batcom-dynamiclist .product-card__variant-option.active:not(.disabled) .product-card__variant-option--label {
  background-color: #1d1d1b;
  border-color: #1d1d1b;
  color: #fff;
  transform: translateX(3px);
}
.batcom-dynamiclist .product-card__variant-option.active:not(.disabled) .product-card__variant-option--label::before {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1px solid #1d1d1b;
  border-radius: 100%;
  pointer-events: none;
}
.batcom-dynamiclist .product-card__variant-option.disabled .product-card__variant-option--label {
  border-color: #1d1d1b;
  cursor: not-allowed;
  opacity: 0.5;
}
.batcom-dynamiclist .product-card__variant-option.disabled .product-card__variant-option--label::after {
  background-color: #1d1d1b;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 100%;
  z-index: 1;
}
.batcom-dynamiclist .product-card__variant-option-ml {
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 52px;
  margin-right: -13px;
}
.batcom-dynamiclist .product-card__variant-option-ml--label {
  display: inline-block;
  border-radius: 1px;
  overflow: hidden;
  font-family: var(--batcom-font-face-1-name);
  font-weight: 500;
  padding: 0;
  width: 100%;
  position: relative;
  z-index: 1;
}
.batcom-dynamiclist .product-card__variant-option-ml--label:hover {
  background-color: #f8ab28;
  cursor: pointer;
}
.batcom-dynamiclist .product-card__variant-option-ml--label .bars_master {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  border: 1px solid #dadada;
  color: #1d1d1b;
  flex: 1;
  outline: none;
  width: 100%;
  height: 40px;
  min-width: 22px;
}
.batcom-dynamiclist .product-card__variant-option-ml--label .bars_master[class~="strength-1.8"] {
  color: #fff;
  background-image: url("../../../../../../content/dam/vuse-assets/images/global/nicotineStrength/20mg.svg");
}
.batcom-dynamiclist .product-card__variant-option-ml--label .bars_master[class~="strength-1.6"] {
  color: #fff;
  background-image: url("../../../../../../content/dam/vuse-assets/images/global/nicotineStrength/18mg.svg");
}
.batcom-dynamiclist .product-card__variant-option-ml--label .bars_master[class~="strength-1.1"] {
  background-image: url("../../../../../../content/dam/vuse-assets/images/global/nicotineStrength/12mg.svg");
}
.batcom-dynamiclist .product-card__variant-option-ml--label .bars_master[class~=strength-0] {
  background-image: url("../../../../../../content/dam/vuse-assets/images/global/nicotineStrength/0mg.svg");
}
.batcom-dynamiclist .product-card__variant-option-ml--label .bars_master[class~="strength-20mg/ml"] {
  color: #fff;
  background-image: url("../../../../../../content/dam/vuse-assets/images/global/nicotineStrength/20mg.svg");
}
.batcom-dynamiclist .product-card__variant-option-ml--label .bars_master[class~="strength-18mg/ml"] {
  color: #fff;
  background-image: url("../../../../../../content/dam/vuse-assets/images/global/nicotineStrength/18mg.svg");
}
.batcom-dynamiclist .product-card__variant-option-ml--label .bars_master[class~="strength-10mg/ml"] {
  background-image: url("../../../../../../content/dam/vuse-assets/images/global/nicotineStrength/10mg.svg");
}
.batcom-dynamiclist .product-card__variant-option-ml--label .bars_master[class~="strength-0mg/ml"] {
  background-image: url("../../../../../../content/dam/vuse-assets/images/global/nicotineStrength/0mg.svg");
}
.batcom-dynamiclist .product-card__variant-option-ml.active:not(.disabled) .product-card__variant-option-ml--label {
  background-color: #1d1d1b;
  border-color: #1d1d1b;
  color: #fff;
}
.batcom-dynamiclist .product-card__variant-option-ml.active:not(.disabled) .product-card__variant-option-ml--label:hover {
  background-color: #f8ab28;
}
.batcom-dynamiclist .product-card__variant-option-ml.active:not(.disabled) .product-card__variant-option-ml--label:hover .bars_master {
  filter: invert(0);
}
.batcom-dynamiclist .product-card__variant-option-ml.active:not(.disabled) .product-card__variant-option-ml--label .bars_master {
  filter: invert(100);
}
.batcom-dynamiclist .product-card__variant-option-ml.active.disabled .product-card__variant-option-ml--label:hover {
  background-color: transparent;
  cursor: default;
}
.batcom-dynamiclist .product-card__variant-option-ml.active.disabled .product-card__variant-option-ml--label .bars_master {
  filter: invert(65%);
  border-color: #1d1d1b;
}
.batcom-dynamiclist .product-card__variant-option-ml.active.disabled .product-card__variant-option-ml--label .bars_master::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 65%;
  height: 100%;
  background: linear-gradient(to top left, rgba(0, 0, 0, 0) 0% calc(50% - 1px), #000 50%, rgba(0, 0, 0, 0) calc(50% + 2px) 100%);
}
.batcom-dynamiclist .product-card__product-status--instock {
  margin-top: 8px;
  color: #068475;
  font-family: var(--batcom-font-face-3-name);
  line-height: 1.5rem;
  font-weight: 400;
  display: none;
}
.batcom-dynamiclist .product-card__product-status--unavailable {
  color: #991f39;
  line-height: 1.5rem;
  font-weight: 400;
  font-family: var(--batcom-font-face-3-name);
  display: none;
}
@media only screen and (max-width: 767px) {
  .batcom-dynamiclist .product-card:not([data-key-quantity-available="0"]) .product-card__product-status--instock {
    display: block;
  }
}
.batcom-dynamiclist .product-card[data-key-quantity-available="0"] .product-card__product-status--unavailable {
  display: block;
}
.batcom-dynamiclist .product-card button.product-card__variant-option-ml {
  padding: 0;
  border: 0;
  background: transparent;
}
.batcom-dynamiclist .product-card button.product-card__variant-option-ml:focus-visible {
  outline-offset: 2px;
}

.cmp-form-error__item {
  text-transform: uppercase;
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 2rem;
}