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-basketcontainer__basket {
  position: relative;
}
.batcom-bff-basketcontainer__loader {
  position: fixed;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: inherit;
  width: 100dvw;
  height: 100dvh;
  background-color: var(--batcom-color-full-basket-loading-bg, #fff);
  z-index: 8;
}
.batcom-bff-basketcontainer__loader-icon::after {
  content: " ";
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/loader-icon.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/loader-icon.svg");
  position: fixed;
  inset: 40% 0 0;
  z-index: 12;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background-color: var(--batcom-color-search-text, #000);
  animation: 0.4s infinite linear rotate-loader;
}
.batcom-bff-basketcontainer__loader-enhanced {
  --loader-bg-color: var(--bff-basketcontainer-enhanced-loader-bg-color-darker, rgba(0, 0, 0, 0.15));
}
.batcom-container--primary-dark .batcom-bff-basketcontainer__loader-enhanced, .batcom-container--secondary-dark .batcom-bff-basketcontainer__loader-enhanced, .batcom-container--tertiary-dark .batcom-bff-basketcontainer__loader-enhanced {
  --loader-bg-color: var(--bff-basketcontainer-enhanced-loader-bg-color-lighter, rgba(0, 0, 0, 0.75));
}
.batcom-bff-basketcontainer__loader-enhanced {
  display: flex;
}
.batcom-bff-basketcontainer__loader-enhanced-icon, .batcom-bff-basketcontainer__loader-enhanced-check-icon {
  width: 100px;
  height: 100px;
  display: block;
}
.batcom-bff-basketcontainer__loader-enhanced-icon::after, .batcom-bff-basketcontainer__loader-enhanced-check-icon::after {
  display: block;
  content: "";
  position: fixed;
  z-index: 12;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
.batcom-bff-basketcontainer__loader-enhanced-icon::after {
  -webkit-mask-image: var(--js-bff-basketcontainer-enhanced-loader-icon, url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/loader-icon.svg"));
          mask-image: var(--js-bff-basketcontainer-enhanced-loader-icon, url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/loader-icon.svg"));
  background-color: var(--loader-bg-color);
}
.batcom-bff-basketcontainer__loader-enhanced-check-icon::after {
  -webkit-mask-image: var(--js-bff-basketcontainer-enhanced-check-icon, url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/checkmark-icon.svg"));
          mask-image: var(--js-bff-basketcontainer-enhanced-check-icon, url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/checkmark-icon.svg"));
  background-color: var(--batcom-color-form-success, #068475);
}
.batcom-bff-basketcontainer__loader-enhanced-text {
  font-family: var(--batcom-typography-h4-family);
  font-size: var(--batcom-typography-h4-size-mobile);
  line-height: var(--batcom-typography-h4-line-height-mobile);
  word-break: break-word;
  color: var(--batcom-color-heading-h4);
  font-weight: 700;
}
.batcom-bff-basketcontainer__loader-enhanced-text span {
  font-family: var(--batcom-typography-h4-family);
  font-size: var(--batcom-typography-h4-size-mobile);
  line-height: var(--batcom-typography-h4-line-height-mobile);
  font-weight: 700;
}
.batcom-bff-basketcontainer__loader-enhanced-text a {
  font-family: var(--batcom-typography-h4-family);
  font-size: var(--batcom-typography-h4-size-mobile);
  line-height: var(--batcom-typography-h4-line-height-mobile);
  font-weight: 700;
  text-decoration: none;
  color: var(--batcom-color-anchor-default);
}
.batcom-bff-basketcontainer__loader-enhanced-text a:hover, .batcom-bff-basketcontainer__loader-enhanced-text a:focus {
  color: var(--batcom-color-anchor-hover);
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-basketcontainer__loader-enhanced-text {
    --batcom-typography-h4-size-mobile: var(--batcom-typography-h4-size-tablet);
    --batcom-typography-h4-line-height-mobile: var(--batcom-typography-h4-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-basketcontainer__loader-enhanced-text {
    --batcom-typography-h4-size-mobile: var(--batcom-typography-h4-size-desktop);
    --batcom-typography-h4-line-height-mobile: var(--batcom-typography-h4-line-height-desktop);
  }
}
.batcom-container--primary-dark .batcom-bff-basketcontainer__loader-enhanced-text, .batcom-container--secondary-dark .batcom-bff-basketcontainer__loader-enhanced-text, .batcom-container--tertiary-dark .batcom-bff-basketcontainer__loader-enhanced-text {
  color: var(--batcom-color-heading-h4-inverted);
}
.batcom-bff-basketcontainer__loader-enhanced-text {
  margin-top: 16px;
  text-align: center;
  font-weight: var(--batcom-typography-h4-weight);
  color: var(--batcom-color-text-functional, var(--batcom-color-palette-16, #272626));
  max-width: 320px;
  padding: 0 20px;
}
.batcom-bff-basketcontainer .batcom-bff-payment-summary__container.loading,
.batcom-bff-basketcontainer .batcom-bff-discountcode__container.loading,
.batcom-bff-basketcontainer .batcom-bff-checkoutaddress__container.loading {
  display: none;
}
.batcom-bff-basketcontainer .batcom-bff-payment-summary__container.loading + .batcom-bff-payment-summary__loader, .batcom-bff-basketcontainer .batcom-bff-payment-summary__container.loading + .batcom-bff-discountcode__loader, .batcom-bff-basketcontainer .batcom-bff-payment-summary__container.loading + .batcom-bff-checkoutaddress__loader,
.batcom-bff-basketcontainer .batcom-bff-discountcode__container.loading + .batcom-bff-payment-summary__loader,
.batcom-bff-basketcontainer .batcom-bff-discountcode__container.loading + .batcom-bff-discountcode__loader,
.batcom-bff-basketcontainer .batcom-bff-discountcode__container.loading + .batcom-bff-checkoutaddress__loader,
.batcom-bff-basketcontainer .batcom-bff-checkoutaddress__container.loading + .batcom-bff-payment-summary__loader,
.batcom-bff-basketcontainer .batcom-bff-checkoutaddress__container.loading + .batcom-bff-discountcode__loader,
.batcom-bff-basketcontainer .batcom-bff-checkoutaddress__container.loading + .batcom-bff-checkoutaddress__loader {
  width: 100%;
  height: 50px;
  background-color: #ccc;
  animation: pulse 1.5s infinite ease-in-out;
}
.batcom-bff-basketcontainer .batcom-bff-payment-summary__container.loading + .batcom-bff-checkoutaddress__loader,
.batcom-bff-basketcontainer .batcom-bff-discountcode__container.loading + .batcom-bff-checkoutaddress__loader,
.batcom-bff-basketcontainer .batcom-bff-checkoutaddress__container.loading + .batcom-bff-checkoutaddress__loader {
  height: 126px;
}
.batcom-bff-basketcontainer .batcom-icon--form-notification-text:has(.batcom-bff-basketcontainer__trial-info) {
  display: none;
}
.batcom-bff-basketcontainer .batcom-icon--form-notification-text:has(.batcom-bff-basketcontainer__trial-info).active {
  display: block;
}
.batcom-bff-basketcontainer.author .batcom-icon--form-notification-text:has(.batcom-bff-basketcontainer__trial-info) {
  display: block;
}
.batcom-bff-basketcontainer .batcom-bff-basketcontainer__trial-info .batcom-icon__label p:first-of-type {
  font-size: 16px;
}
.batcom-bff-basketcontainer .batcom-bff-basketcontainer__trial-info .batcom-icon__label p:first-of-type .bottom-margin {
  display: inline-block;
  margin-bottom: 4px;
}
.batcom-bff-basketcontainer .columncontrol--home .columncontrol__column .batcom-cc-container > .cmp-container {
  justify-content: flex-start;
}
.batcom-bff-basketcontainer .batcom-container:has(.batcom-accordion), .batcom-bff-basketcontainer .batcom-container:has(.batcom-bff-paymentmethod-gmo-cc__accordion) {
  margin-bottom: 24px;
}
.batcom-bff-basketcontainer .batcom-bff-deliverymethod__details {
  margin-bottom: 20px;
}
.batcom-bff-basketcontainer .batcom-accordion {
  margin-bottom: 0;
}
@media only screen and (max-width: 1023px) {
  .batcom-bff-basketcontainer .batcom-accordion {
    margin-left: 0 !important; /* stylelint-disable-line */
    width: 100%;
  }
}
.batcom-bff-basketcontainer .batcom-accordion .cmp-accordion__item .cmp-accordion__header .cmp-accordion__button {
  padding: 16px 12px;
  margin-bottom: 0;
}
.batcom-bff-basketcontainer .batcom-accordion .cmp-accordion__title {
  font-size: var(--batcom-typography-body-size-mobile);
}
@media only screen and (min-width: 768px) {
  .batcom-bff-basketcontainer .batcom-accordion .cmp-accordion__title {
    font-size: var(--batcom-typography-body-size-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-basketcontainer .batcom-accordion .cmp-accordion__title {
    font-size: var(--batcom-typography-body-size-desktop);
  }
}
.batcom-bff-basketcontainer .batcom-bff-paymentmethodcod__header-wrapper,
.batcom-bff-basketcontainer .batcom-bff-paymentmethodpaypay__header-wrapper {
  padding: 16px 12px;
  margin-top: 0;
  margin-bottom: 24px;
}
.batcom-bff-basketcontainer .batcom-bff-paymentmethod-gmo-cc__accordion {
  height: auto;
  min-height: 56px;
}
.batcom-bff-basketcontainer .batcom-bff-paymentmethod-gmo-cc .batcom-bff-paymentmethod-gmo-cc__details-container > :last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .batcom-bff-basketcontainer .batcom-bff-paymentmethod-gmo-cc .batcom-bff-paymentmethod-gmo-cc__details-container .batcom-button .cmp-form-button {
    margin: 0;
  }
}
.batcom-bff-basketcontainer .aem-Grid > .aem-GridColumn.aem-GridColumn--default--newline.batcom-icon:has(.batcom-bff-basketcontainer__trial-info), .batcom-bff-basketcontainer .aem-Grid > .aem-GridColumn.aem-GridColumn--default--none.batcom-icon:has(.batcom-bff-basketcontainer__trial-info) {
  display: none;
}
.batcom-bff-basketcontainer .aem-Grid > .aem-GridColumn.aem-GridColumn--default--newline.batcom-icon:has(.batcom-bff-basketcontainer__trial-info).active, .batcom-bff-basketcontainer .aem-Grid > .aem-GridColumn.aem-GridColumn--default--none.batcom-icon:has(.batcom-bff-basketcontainer__trial-info).active {
  display: block;
}
.batcom-bff-basketcontainer .batcom-bff-subscription-calendar:not(.open) .batcom-bff-subscription-calendar {
  display: none;
}
.batcom-bff-basketcontainer .batcom-bff-subscription-calendar {
  margin: 25px 0;
}

body:has(.batcom-bff-basketcontainer__loader:not(.batcom-hide)) .batcom-container:has(.batcom-header),
body:has(.batcom-bff-basketcontainer__loader:not(.batcom-hide)) .cmp-experiencefragment--footer .batcom-container {
  z-index: 10;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotate-loader {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(29deg);
  }
}