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-discountcode__container {
  --input-height: 48px;
  --icon-size: 24px;
  min-height: 90px;
}
.batcom-bff-discountcode__summary {
  display: flex;
  flex-direction: column;
}
.batcom-bff-discountcode__summary-discount {
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}
.batcom-bff-discountcode__summary-discount .discount-label {
  font-family: var(--batcom-font-face-2-name);
}
.batcom-bff-discountcode__summary-discount .discount-value {
  color: var(--batcom-color-palette-text-positive, #04695d);
}
@media only screen and (max-width: 767px) {
  .batcom-bff-discountcode__change-discount-code {
    font-size: var(--batcom-typography-button-size-mobile);
    line-height: var(--batcom-typography-button-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .batcom-bff-discountcode__change-discount-code {
    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-discountcode__change-discount-code {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
.batcom-bff-discountcode__change-discount-code {
  align-self: flex-end;
  font-family: var(--batcom-font-face-2-name);
  background: transparent;
  border: 0;
  padding: 0;
  padding-top: 5px;
  border-bottom: 1px solid;
  font-weight: 500;
}
@supports (-webkit-touch-callout: none) {
  .batcom-bff-discountcode__change-discount-code {
    color: var(--batcom-color-body-text);
  }
}
.batcom-bff-discountcode__container .batcom-bff-discountcode__form {
  max-width: initial;
}
.batcom-bff-discountcode__form .external-error-message,
.batcom-bff-discountcode__form .form-customError,
.batcom-bff-discountcode__form .form-text__fieldError {
  display: none;
  color: var(--batcom-color-palette-text-critical, #be123c);
  font-family: var(--batcom-font-face-1-name);
}
.batcom-bff-discountcode__form .external-error-message--active,
.batcom-bff-discountcode__form .form-customError--active,
.batcom-bff-discountcode__form .form-text__fieldError--active {
  display: block;
  margin-top: 4px;
}
.batcom-bff-discountcode__form .external-error-message.cmp-form-error__item,
.batcom-bff-discountcode__form .form-customError.cmp-form-error__item,
.batcom-bff-discountcode__form .form-text__fieldError.cmp-form-error__item {
  margin-bottom: 4px;
}
@media only screen and (max-width: 767px) {
  .batcom-bff-discountcode__form .batcom-discountcodefield input.discountcode__input {
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .batcom-bff-discountcode__form .batcom-discountcodefield input.discountcode__input {
    font-size: var(--batcom-typography-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-discountcode__form .batcom-discountcodefield input.discountcode__input {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
.batcom-bff-discountcode__form .batcom-discountcodefield input.discountcode__input {
  padding: 13px 16px;
  height: var(--input-height);
  outline: none;
  box-shadow: none;
  background-color: var(--batcom-color-palette-surface-neutral-option-2, #f6f6f6);
  border: 0;
  border-bottom: 1px solid var(--batcom-color-palette-border-strong, #1d1d1b);
  border-radius: 2px;
}
.batcom-bff-discountcode__form .batcom-discountcodefield input.discountcode__input.invalid-input {
  box-shadow: none;
  border: 0;
  border-bottom: 1px solid var(--batcom-color-palette-text-critical, #be123c);
}
.batcom-bff-discountcode__form .batcom-discountcodefield input.discountcode__input::-moz-placeholder {
  color: var(--batcom-color-form-text-placeholder, #636363);
}
.batcom-bff-discountcode__form .batcom-discountcodefield input.discountcode__input::placeholder {
  color: var(--batcom-color-form-text-placeholder, #636363);
}
.batcom-bff-discountcode__form .batcom-title {
  text-align: center;
}
.batcom-bff-discountcode__form .batcom-text {
  margin-bottom: 16px;
}
.batcom-bff-discountcode__form .batcom-text .cmp-form-text label {
  display: inline-block;
}
.batcom-bff-discountcode__form .cmp-form-text__textContainer {
  display: flex;
  gap: 4px;
  height: var(--input-height);
}
.batcom-bff-discountcode__form .cmp-form-text__textContainer input.discountcode__input {
  flex: 1;
}
.batcom-bff-discountcode__form .submit-icon {
  display: grid;
  place-items: center;
  height: var(--input-height);
  width: var(--input-height);
  min-width: var(--input-height);
  background-color: var(--batcom-color-palette-interactive-primary-default, #f8ab28);
}
.batcom-bff-discountcode__form .submit-icon::before {
  content: "";
  height: var(--icon-size);
  width: var(--icon-size);
  -webkit-mask-size: var(--icon-size);
          mask-size: var(--icon-size);
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-right-white.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-right-white.svg");
  background-color: var(--batcom-color-palette-icon-brand-action, #1d1d1b);
}
.batcom-bff-discountcode__form .submit-icon.loading::before {
  display: none;
}
.batcom-bff-discountcode__form .submit-icon.loading::after {
  content: "";
  background-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/spinner.svg");
  height: var(--input-height);
  width: var(--input-height);
  background-repeat: no-repeat;
  background-position: center;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.batcom-bff-discountcode__couponItemsContainer {
  position: relative;
  flex: 1;
  display: flex;
  gap: 8px;
}
.batcom-bff-discountcode__couponItemsContainer input[type=text].cmp-form-text__text {
  flex: 1 1 auto;
  width: 100%;
}
.batcom-bff-discountcode__couponItemsContainer .submit-icon:hover {
  cursor: pointer;
}
.batcom-bff-discountcode__inputWrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.batcom-bff-discountcode__inputWrapper.coupons-chevron:hover::after {
  cursor: pointer;
}
.batcom-bff-discountcode__inputWrapper.coupons-chevron::after {
  content: "";
  background-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-up.svg");
  height: var(--icon-size);
  width: var(--icon-size);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: var(--icon-size);
  right: 0;
  transform: translate(-50%, -50%) rotate(180deg);
  transition: transform 0.2s ease-in-out;
}
.batcom-bff-discountcode__inputWrapper.coupons-chevron.open::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.batcom-bff-discountcode__inputWrapper.coupons-chevron.open .batcom-bff-discountcode__couponsList {
  display: block;
}
.batcom-bff-discountcode__couponsList {
  position: absolute;
  top: var(--input-height);
  left: 0;
  right: 0;
  padding: 0;
  margin: 0;
  max-height: 138px;
  overflow-y: auto;
  list-style: none;
  border: 1px solid var(--batcom-color-palette-border-subdued, #f1f1f1);
  border-radius: var(--batcom-border-radius-small, 4px);
  background-color: var(--batcom-color-palette-surface-active, #f6f6f6);
  z-index: 1000;
  display: none;
}
.batcom-bff-discountcode__couponsList:empty {
  display: none;
}
.batcom-bff-discountcode__couponsList li {
  display: flex;
  gap: 8px;
  padding: 12px;
  align-items: center;
  cursor: pointer;
}
.batcom-bff-discountcode__couponsList li span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 18px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--batcom-color-palette-border-strong, #2a2a2a);
  border-radius: 50%;
}
.batcom-bff-discountcode__couponsList li:hover, .batcom-bff-discountcode__couponsList li.active {
  background-color: var(--batcom-color-palette-surface-neutral-option-3, #e4e3e3);
}
.batcom-bff-discountcode__couponsList li:hover span::before, .batcom-bff-discountcode__couponsList li.active span::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--batcom-color-palette-border-strong, #2a2a2a);
  border-radius: 50%;
  display: inline-block;
}