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
*/
.standalone-select, .cmp-form .form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 38px;
  border-radius: 8px;
  padding-left: 18px;
  padding-right: var(--batcom-layout-form-select-padding-right, 38px);
  background-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: center right 16px;
  background-color: var(--batcom-color-form-select-input);
  border: 2px solid var(--batcom-color-form-select-border);
  color: var(--batcom-color-body-text);
}
@media only screen and (min-width: 768px) {
  .standalone-select, .cmp-form .form-select {
    height: 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .standalone-select, .cmp-form .form-select {
    height: 58px;
  }
}
.batcom-container--primary-dark .standalone-select, .batcom-container--primary-dark .cmp-form .form-select, .cmp-form .batcom-container--primary-dark .form-select, .batcom-container--secondary-dark .standalone-select, .batcom-container--secondary-dark .cmp-form .form-select, .cmp-form .batcom-container--secondary-dark .form-select {
  background-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-down-white.svg");
}
[multiple].standalone-select, .cmp-form [multiple].form-select {
  height: auto;
  background: none;
  padding-bottom: 16px;
  padding-top: 16px;
}
.batcom-container--primary-light .cmp-form, .batcom-container--secondary-light .cmp-form {
  --batcom-color-form-input: var(--batcom-color-form-input-light-bg);
  --batcom-color-form-select-input: var(--batcom-color-form-select-input-light-bg);
}
.batcom-container--primary-dark .cmp-form, .batcom-container--secondary-dark .cmp-form {
  --batcom-color-palette-1: var(--batcom-color-palette-1-inverted);
  --batcom-color-palette-3: var(--batcom-color-palette-3-inverted);
  --batcom-color-body-text: var(--batcom-color-body-text-inverted);
  --batcom-color-form-help-text: var(--batcom-color-form-help-text-inverted);
  --batcom-color-form-select-border: var(--batcom-color-form-select-border-inverted);
  --batcom-color-form-border: var(--batcom-color-form-border-inverted);
  --batcom-color-form-input: var(--batcom-color-form-input-inverted);
  --batcom-color-form-select-input: var(--batcom-color-form-select-input-inverted);
  --batcom-color-form-textarea-border: var(--batcom-color-form-border);
  --batcom-color-form-placeholder: var(--batcom-color-form-placeholder-inverted);
  --batcom-color-form-error: var(--batcom-color-form-error-inverted);
}
.cmp-form .options > .form-field {
  margin-bottom: 20px;
}
.cmp-form .form-title,
.cmp-form .form-label {
  font-weight: var(--batcom-typography-weight-bold);
  margin: 16px 0 10px;
}
.cmp-form .form-customError,
.cmp-form .form-text__fieldError {
  display: none;
  color: var(--batcom-color-form-error);
  font-size: 0.875rem;
}
.cmp-form .form-customError--active,
.cmp-form .form-text__fieldError--active {
  display: block;
  margin-top: 5px;
  line-height: 18px;
}
.cmp-form .form-error {
  clear: both;
  padding: 1em;
  font-size: 1rem;
}
.cmp-form .batcom-hptext {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  height: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}
.cmp-form .batcom-text {
  margin-bottom: 48px;
}
.cmp-form .batcom-text:has(.batcom-hide) {
  margin: 0;
  height: 0;
}
.cmp-form-text {
  display: flex;
  flex-direction: column;
}
.cmp-form-text__textarea {
  min-height: 110px;
  padding: 12px;
  border: 1px solid var(--batcom-color-form-textarea-border);
  border-bottom-right-radius: 9px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  resize: none; /* stylelint-disable-line */
}
.cmp-form-text__textarea::-moz-placeholder {
  color: var(--batcom-color-form-placeholder);
}
.cmp-form-text__textarea::placeholder {
  color: var(--batcom-color-form-placeholder);
}
.cmp-form-text__textarea.invalid-input {
  border: solid 1px var(--batcom-color-form-error);
  box-shadow: 0 0 4px 0 var(--batcom-color-form-error);
}
.cmp-form-text .form-text__char-counter {
  margin-top: 5px;
}
.cmp-form .form-field {
  position: relative;
}
.cmp-form .form-label:first-child {
  display: block;
  margin-bottom: 12px;
}
.cmp-form fieldset {
  border: 0;
  padding: 0;
}
.cmp-form label:not(.form-label) {
  align-items: flex-start;
  margin-bottom: 16px;
}
.cmp-form input[type=text],
.cmp-form input[type=email],
.cmp-form input[type=tel],
.cmp-form input[type=date],
.cmp-form input[type=number],
.cmp-form input[type=password],
.cmp-form input[type=cardNumber],
.cmp-form input[type=expiryDate],
.cmp-form input[type=securityCode] {
  height: 50px;
  background-color: var(--batcom-color-form-input);
  padding: 14px 37px 10px 12px;
  border: 1px solid var(--batcom-color-form-border);
  border-radius: 8px;
}
.cmp-form input[type=text]::-moz-placeholder, .cmp-form input[type=email]::-moz-placeholder, .cmp-form input[type=tel]::-moz-placeholder, .cmp-form input[type=date]::-moz-placeholder, .cmp-form input[type=number]::-moz-placeholder, .cmp-form input[type=password]::-moz-placeholder, .cmp-form input[type=cardNumber]::-moz-placeholder, .cmp-form input[type=expiryDate]::-moz-placeholder, .cmp-form input[type=securityCode]::-moz-placeholder {
  color: var(--batcom-color-form-placeholder);
}
.cmp-form input[type=text]::placeholder,
.cmp-form input[type=email]::placeholder,
.cmp-form input[type=tel]::placeholder,
.cmp-form input[type=date]::placeholder,
.cmp-form input[type=number]::placeholder,
.cmp-form input[type=password]::placeholder,
.cmp-form input[type=cardNumber]::placeholder,
.cmp-form input[type=expiryDate]::placeholder,
.cmp-form input[type=securityCode]::placeholder {
  color: var(--batcom-color-form-placeholder);
}
.cmp-form input[type=text].invalid-input,
.cmp-form input[type=email].invalid-input,
.cmp-form input[type=tel].invalid-input,
.cmp-form input[type=date].invalid-input,
.cmp-form input[type=number].invalid-input,
.cmp-form input[type=password].invalid-input,
.cmp-form input[type=cardNumber].invalid-input,
.cmp-form input[type=expiryDate].invalid-input,
.cmp-form input[type=securityCode].invalid-input {
  border: solid 1px var(--batcom-color-form-error);
  box-shadow: 0 0 4px 0 var(--batcom-color-form-error);
}
.cmp-form fieldset.form-field.form-option-style {
  margin: 0 0 48px;
}
.cmp-form fieldset.form-field.form-option-style .form-field--select {
  padding-top: 16px;
}
.cmp-form fieldset.form-field.form-option-style select.form-input {
  border: 1px solid var(--batcom-color-form-border);
  background-color: var(--batcom-color-form-input);
}
.cmp-form button {
  --batcom-button-text: var(--batcom-color-button-primary-text);
  --batcom-button-text-hover: var(--batcom-color-button-primary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-primary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-primary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-primary-border);
  --batcom-button-border-hover: var(--batcom-color-button-primary-border-hover);
  --batcom-button-icon: var(--batcom-color-button-primary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-primary-text-hover);
  --batcom-button-outline: var(--batcom-color-button-outline, #0761cd);
}
.batcom-container--primary-dark .cmp-form button, .batcom-container--secondary-dark .cmp-form button, .batcom-container--tertiary-dark .cmp-form button {
  --batcom-button-outline: var(--batcom-color-button-outline-inverted, #0761cd);
}
.cmp-form button {
  display: inline-flex;
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
  font-family: var(--batcom-typography-button-family);
  font-weight: var(--batcom-typography-button-weight);
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: var(--batcom-layout-button-primary-border-radius);
  cursor: pointer;
  color: var(--batcom-button-text) !important; /* stylelint-disable-line */
  background-color: var(--batcom-button-bg);
  border: var(--batcom-layout-button-border-width) solid var(--batcom-button-border);
  text-decoration: none !important; /* stylelint-disable-line */
  padding: 10px 20px;
}
@media only screen and (min-width: 1024px) {
  .cmp-form button {
    --batcom-typography-button-size-mobile: var(--batcom-typography-button-size-desktop);
    --batcom-typography-button-line-height-mobile: var(--batcom-typography-button-line-height-desktop);
  }
}
.cmp-form button span {
  color: var(--batcom-button-text);
}
@media (hover: hover) {
  .cmp-form button:hover {
    color: var(--batcom-button-text-hover) !important; /* stylelint-disable-line */
    background-color: var(--batcom-button-bg-hover);
    border: var(--batcom-layout-button-border-width) solid var(--batcom-button-border-hover);
    text-decoration: none !important; /* stylelint-disable-line */
  }
  .cmp-form button:hover span {
    color: var(--batcom-button-text-hover);
  }
  .cmp-form button:hover .cmp-button__svg :is(svg, g, path) {
    fill: var(--batcom-button-icon-hover);
  }
}
.cmp-form button__text + .cmp-button__svg {
  margin-left: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cmp-form button__svg :is(svg, g, path) {
  fill: var(--batcom-button-icon);
  filter: none;
}
.cmp-form button__svg svg {
  height: 16px;
}
.cmp-button__svg .cmp-form button__svg svg {
  height: 20px;
}
.cmp-form button:focus {
  outline: transparent;
}
.cmp-form button:focus-visible {
  outline: 2px solid var(--batcom-button-outline);
  outline-offset: 4px;
}
.cmp-form button {
  display: flex;
  flex-flow: column nowrap;
  margin-top: 50px;
}
.batcom-button--sending .cmp-form-button__text {
  visibility: hidden;
  height: 0;
}
.cmp-form-button__icon {
  content: "";
  display: none;
  width: 100%;
  height: var(--batcom-typography-button-line-height-mobile, var(--batcom-typography-body-line-height-mobile));
  background-color: var(--batcom-color-anchor-default);
}
@media only screen and (min-width: 768px) {
  .cmp-form-button__icon {
    height: var(--batcom-typography-button-line-height-tablet, var(--batcom-typography-body-line-height-tablet));
  }
}
@media only screen and (min-width: 1024px) {
  .cmp-form-button__icon {
    height: var(--batcom-typography-button-line-height-desktop, var(--batcom-typography-body-line-height-desktop));
  }
}
.batcom-button--sending .cmp-form-button__icon {
  display: inline-block;
}
.cmp-form .form-checkbox,
.cmp-form .form-radio {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  flex-shrink: 0;
  height: 34px;
  margin: 0;
  width: 34px;
  z-index: 2;
}
.cmp-form .form-checkbox:hover,
.cmp-form .form-radio:hover {
  cursor: pointer;
}
.cmp-form .form-checkbox:hover:not(:checked, :disabled) ~ .form-options-icon,
.cmp-form .form-radio:hover:not(:checked, :disabled) ~ .form-options-icon {
  background-color: var(--batcom-color-palette-3);
}
.cmp-form .form-checkbox:hover ~ .form-hover-circle,
.cmp-form .form-radio:hover ~ .form-hover-circle {
  background-color: var(--batcom-color-palette-6);
}
.batcom-container--primary-light .cmp-form .form-checkbox:hover ~ .form-hover-circle,
.batcom-container--primary-light .cmp-form .form-radio:hover ~ .form-hover-circle {
  background-color: var(--batcom-color-palette-6);
}
.cmp-form .form-checkbox:checked ~ .form-options-icon,
.cmp-form .form-radio:checked ~ .form-options-icon {
  background-color: var(--batcom-color-palette-1);
}
.cmp-form .form-checkbox:checked:hover ~ .form-hover-circle,
.cmp-form .form-radio:checked:hover ~ .form-hover-circle {
  background-color: var(--batcom-color-palette-1);
  opacity: 0.21;
}
.batcom-container--primary-dark .cmp-form .form-checkbox:checked:hover ~ .form-hover-circle, .batcom-container--secondary-dark .cmp-form .form-checkbox:checked:hover ~ .form-hover-circle,
.batcom-container--primary-dark .cmp-form .form-radio:checked:hover ~ .form-hover-circle,
.batcom-container--secondary-dark .cmp-form .form-radio:checked:hover ~ .form-hover-circle {
  background-color: var(--batcom-color-palette-5);
  opacity: 1;
}
.cmp-form .form-checkbox[disabled],
.cmp-form .form-radio[disabled] {
  cursor: not-allowed;
}
.cmp-form .form-checkbox[disabled] ~ .form-options-icon,
.cmp-form .form-radio[disabled] ~ .form-options-icon {
  background-color: var(--batcom-color-palette-5);
}
.batcom-container--secondary-light .cmp-form .form-checkbox[disabled] ~ .form-options-icon,
.batcom-container--secondary-light .cmp-form .form-radio[disabled] ~ .form-options-icon {
  background-color: var(--batcom-color-palette-7);
}
.cmp-form .form-checkbox[disabled] + .form-label,
.cmp-form .form-radio[disabled] + .form-label {
  cursor: not-allowed;
}
.cmp-form .form-checkbox[disabled] ~ .form-hover-circle,
.cmp-form .form-radio[disabled] ~ .form-hover-circle {
  display: none;
}
.cmp-form .form-checkbox:not(:disabled) + .form-label,
.cmp-form .form-radio:not(:disabled) + .form-label {
  cursor: pointer;
}
.cmp-form .form-checkbox + .form-label,
.cmp-form .form-radio + .form-label {
  padding-left: 10px;
}
.cmp-form .form-options-icon {
  background-color: var(--batcom-color-palette-3);
  display: inline-block;
  height: 34px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 34px;
          mask-size: 34px;
  -webkit-mask-position: center;
          mask-position: center;
  position: absolute;
  width: 34px;
  z-index: 1;
}
.cmp-form .form-hover-circle {
  background-color: transparent;
  border-radius: 50%;
  display: inline-block;
  height: 34px;
  left: 0;
  position: absolute;
  width: 34px;
}
.cmp-form .form-field-group-checkbox .form-field--option {
  display: flex;
  align-items: center;
}
.cmp-form .form-checkbox ~ .form-checkbox-icon {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-checkbox/checkbox-enabled-unselected.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-checkbox/checkbox-enabled-unselected.svg");
}
.cmp-form .form-checkbox:checked ~ .form-checkbox-icon {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-checkbox/checkbox-enabled-selected.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-checkbox/checkbox-enabled-selected.svg");
}
.cmp-form .form-checkbox[disabled] ~ .form-checkbox-icon {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-checkbox/checkbox-disabled-unselected.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-checkbox/checkbox-disabled-unselected.svg");
}
.cmp-form .form-checkbox[disabled]:checked ~ .form-checkbox-icon {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-checkbox/checkbox-disabled-selected.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-checkbox/checkbox-disabled-selected.svg");
}
.cmp-form .form-field-group-radio {
  display: flex;
  align-items: center;
}
.cmp-form .form-radio ~ .form-radio-icon {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-radio/radio-button-enabled-unselected.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-radio/radio-button-enabled-unselected.svg");
}
.cmp-form .form-radio:checked ~ .form-radio-icon {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-radio/radio-button-enabled-selected.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-radio/radio-button-enabled-selected.svg");
}
.cmp-form .form-radio[disabled] ~ .form-radio-icon {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-radio/radio-button-disabled-unselected.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-radio/radio-button-disabled-unselected.svg");
}
.cmp-form .form-radio[disabled]:checked ~ .form-radio-icon {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-radio/radio-button-disabled-selected.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-radio/radio-button-disabled-selected.svg");
}
.cmp-form-text__help-block {
  order: 3;
  margin-top: 10px;
  color: var(--batcom-color-form-help-text);
  font-size: 0.875rem;
}
.cmp-form .form-help {
  margin-top: 10px;
  color: var(--batcom-color-form-help-text);
}
.cmp-form .text-failed {
  color: var(--batcom-color-form-text-failed);
}
.cmp-form .text-success {
  color: var(--batcom-color-form-text-success);
}
.cmp-form.cmp-form-success-xf .batcom-content {
  width: 100%;
}