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

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

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

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

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

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

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

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

## Live Template abbreviations
---
-z

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

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

## Example
---

```html_example

// In the SASS theme file

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

// In the SASS module file

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

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

Clears after floating element

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

## Live Template abbreviations
---

## Example
---

```html_example
@include clearfix;
```

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

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

Use this mixing to add fonts and normalization.

Documentation:

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

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

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

Mixin to add visibility to control to elements

---

## Example
---

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

    @include breakpoint($b-01) {
      @include hidden;
    }
  }
}
```
*/
.batcom-bff-fullcart {
  margin-top: 28px;
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-fullcart {
    margin-top: 44px;
  }
}
.batcom-bff-fullcart__trial-info .batcom-container {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.batcom-bff-fullcart__trial-info .batcom-container .batcom-container {
  max-width: initial;
}
.batcom-bff-fullcart__trial-info .batcom-container:has(.batcom-icon-container-uniform-spacing) {
  width: 100%;
  max-width: initial;
}
.batcom-bff-fullcart__below-errors .batcom-container, .batcom-bff-fullcart__above-errors .batcom-container {
  max-width: 100%;
  width: 100%;
}
.batcom-bff-fullcart__product-list-placeholder .batcom-bff-fullcart__product-imagecontainer,
.batcom-bff-fullcart__product-list-placeholder .batcom-bff-fullcart__product-title,
.batcom-bff-fullcart__product-list-placeholder .batcom-bff-fullcart__product-attribute,
.batcom-bff-fullcart__product-list-placeholder .batcom-bff-fullcart__quantity-container {
  background-color: var(--batcom-color-full-basket-quantity-button);
  color: transparent;
}
.batcom-bff-fullcart__errors-container {
  color: var(--batcom-color-full-basket-errors-color);
  background-color: var(--batcom-color-full-basket-errors-bg);
  padding: 8px 24px;
  margin-bottom: 16px;
  text-align: center;
}
.batcom-bff-fullcart__total {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 16px;
  align-items: center;
  border-bottom: 1px solid var(--batcom-color-full-basket-divider);
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .batcom-bff-fullcart__total-label {
    font-size: var(--batcom-typography-h4-size-mobile);
    line-height: var(--batcom-typography-h4-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .batcom-bff-fullcart__total-label {
    font-size: var(--batcom-typography-h4-size-tablet);
    line-height: var(--batcom-typography-h4-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-fullcart__total-label {
    font-size: var(--batcom-typography-h4-size-desktop);
    line-height: var(--batcom-typography-h4-line-height-desktop);
  }
}
.batcom-bff-fullcart__total-label {
  font-weight: var(--batcom-typography-weight-bold, 700);
}
.batcom-bff-fullcart__total-items {
  display: none;
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 400;
  font-family: var(--batcom-font-face-1-name);
  color: var(--batcom-color-full-basket-title-counter);
}
@media only screen and (min-width: 768px) {
  .batcom-bff-fullcart__total-items {
    display: flex;
  }
}
.batcom-bff-fullcart__divider {
  background-color: var(--batcom-color-full-basket-divider);
}
.batcom-bff-fullcart__product {
  position: relative;
  padding: 16px 0;
  border-bottom: 1px solid var(--batcom-color-full-basket-divider);
}
.batcom-bff-fullcart__product:last-child {
  border-bottom: none;
}
.batcom-bff-fullcart__product-summary {
  margin-left: auto;
}
.batcom-bff-fullcart__product-delete-button {
  position: absolute;
  right: 0;
  width: 22px;
  height: 22px;
}
.batcom-bff-fullcart__product-title {
  padding-right: 22px;
}
.batcom-bff-fullcart__product-title, .batcom-bff-fullcart__product-attribute-name {
  font-family: var(--batcom-font-face-2-name);
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 500;
}
.batcom-bff-fullcart__product-total-price {
  text-align: right;
}
.batcom-bff-fullcart__product-list {
  display: flex;
  flex-direction: column;
}
.batcom-bff-fullcart__product-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
}
@media only screen and (min-width: 768px) {
  .batcom-bff-fullcart__product-details {
    gap: 16px;
  }
}
.batcom-bff-fullcart__product-imagecontainer {
  width: 96px;
  height: 96px;
  min-width: 96px;
  min-height: 96px;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-fullcart__product-imagecontainer {
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
  }
}
.batcom-bff-fullcart__product-list-checkout {
  background-color: var(--batcom-color-dynamic-summary-order-bg);
}
.batcom-bff-fullcart__product-list-checkout .batcom-bff-fullcart__product-details {
  gap: 4px;
}
.batcom-bff-fullcart__product-list-checkout .batcom-bff-fullcart__product-summary {
  margin-left: 0;
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-fullcart__product-list-checkout .batcom-bff-fullcart__product-summary {
    margin-left: auto;
  }
}
.batcom-bff-fullcart__product-list-checkout .batcom-bff-fullcart__quantity-container {
  gap: 8px;
}
.batcom-bff-fullcart__product-list-checkout .batcom-bff-fullcart__quantity-value {
  padding: 0;
  font-size: 0.75rem;
  line-height: 1rem;
}
.batcom-bff-fullcart__product-list-checkout .batcom-bff-fullcart__supplementary-block,
.batcom-bff-fullcart__product-list-checkout .batcom-bff-fullcart__product-title {
  font-size: 1rem;
  line-height: 1.375rem;
}
.batcom-bff-fullcart__product-list-checkout .batcom-bff-fullcart__product-total-price {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 500;
  font-family: var(--batcom-font-face-2-name);
  color: var(--batcom-color-full-basket-title-counter);
}
.batcom-bff-fullcart__product-list-checkout .batcom-bff-fullcart__product-imagecontainer {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-fullcart__product-list-checkout .batcom-bff-fullcart__product-imagecontainer {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
  }
}
.batcom-bff-fullcart__quantity {
  font-family: var(--batcom-font-face-2-name);
  font-size: var(--batcom-typography-body-size-mobile);
  line-height: 1.375rem;
  font-weight: 500;
}
.batcom-bff-fullcart__quantity-container {
  display: flex;
  padding: 4px 0;
  flex-direction: row;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .batcom-bff-fullcart__quantity-container--noButtons {
    flex-direction: column;
    align-items: flex-start;
  }
}
.batcom-bff-fullcart__quantity-value {
  padding: 9px 8px;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-fullcart__quantity-value {
    padding: 9px 12px;
  }
}
.batcom-bff-fullcart__quantity-value, .batcom-bff-fullcart__product-total-price {
  font-family: var(--batcom-font-face-2-name);
  font-size: var(--batcom-typography-body-size-mobile);
  line-height: 1.375rem;
  font-weight: 500;
}
.batcom-bff-fullcart__product {
  display: flex;
  gap: 8px;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-fullcart__product {
    gap: 16px;
  }
}
.batcom-bff-fullcart__add-item, .batcom-bff-fullcart__remove-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--batcom-color-full-basket-quantity-icon);
  background-color: var(--batcom-color-full-basket-quantity-button);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}
.batcom-bff-fullcart__disabled-button {
  opacity: 0.4;
  cursor: default;
}
.batcom-bff-fullcart__supplementary-block {
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 8px;
  font-family: var(--batcom-font-face-2-name);
  font-size: var(--batcom-typography-x-small-size-mobile);
  line-height: var(--batcom-typography-body-size-mobile);
  font-weight: 500;
  color: var(--batcom-color-full-basket-errors-color);
  background-color: var(--batcom-color-full-basket-errors-bg);
}
.batcom-bff-fullcart__product-total-price-wrap {
  display: flex;
  gap: 4px;
}
@media only screen and (max-width: 767px) {
  .batcom-bff-fullcart__product-total-price-wrap {
    flex-direction: column;
  }
}
.batcom-bff-fullcart__product-bundle-options {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .batcom-bff-fullcart__product-bundle-device, .batcom-bff-fullcart__product-bundle-flavours {
    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-fullcart__product-bundle-device, .batcom-bff-fullcart__product-bundle-flavours {
    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-fullcart__product-bundle-device, .batcom-bff-fullcart__product-bundle-flavours {
    font-size: var(--batcom-typography-small-size-desktop);
    line-height: var(--batcom-typography-small-line-height-desktop);
  }
}
.batcom-bff-fullcart__product-bundle-device, .batcom-bff-fullcart__product-bundle-flavours {
  font-weight: 500;
}
.batcom-bff-fullcart__product-bundle-device .field-value, .batcom-bff-fullcart__product-bundle-flavours .field-value {
  font-weight: 400;
}
.batcom-bff-fullcart__product-bundle-options .field-value {
  padding-left: 4px;
}
.batcom-bff-fullcart__product-link {
  color: var(--batcom-color-anchor-default, #000);
}
.batcom-bff-fullcart__product-link img {
  max-width: 100px;
}
.batcom-bff-fullcart__trial-identifier-label {
  background-color: var(--batcom-color-palette-surface-info, #e0f2fe);
  color: var(--batcom-color-palette-text-info, #17305a);
  line-height: var(--batcom-typography-body-size-mobile);
  padding: 4px 8px;
}
.batcom-bff-fullcart__price-preauthorization-label {
  font-family: var(--batcom-font-face-2-name);
  font-size: var(--batcom-typography-body-size-mobile);
  line-height: 1.375rem;
  font-weight: 100;
  opacity: 0.5;
  display: block;
}
.batcom-bff-fullcart__vuse-identifier, .batcom-bff-fullcart__glo-identifier, .batcom-bff-fullcart__velo-identifier {
  font-weight: var(--batcom-typography-weight-bold);
  border-radius: 8px;
  padding: 4px 6px;
  width: -moz-fit-content;
  width: fit-content;
  line-height: var(--batcom-typography-body-size-desktop);
}
.batcom-bff-fullcart__vuse-identifier {
  color: #fff;
  background: #000;
}
.batcom-bff-fullcart__glo-identifier {
  color: #eb4c03;
  background: #eed9ce;
}
.batcom-bff-fullcart__velo-identifier {
  color: #fff;
  background: #00557d;
}
.batcom-bff-fullcart__product-list--checkout .batcom-bff-fullcart__quantity-value {
  padding: 9px 0;
}