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
*/
.batcom-tabs .cmp-tabs {
  position: relative;
  display: grid;
}
.batcom-tabs .cmp-tabs__tablist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 9px;
  padding: 20px 0 11px;
  overflow: scroll hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  gap: 10px 20px;
}
@media only screen and (min-width: 1024px) {
  .batcom-tabs .cmp-tabs__tablist {
    -moz-column-gap: 48px;
         column-gap: 48px;
  }
}
.batcom-tabs .cmp-tabs__tablist::-webkit-scrollbar {
  display: none;
}
.batcom-tabs .cmp-tabs__tabpanel {
  display: initial;
  opacity: 0;
  grid-area: 2/1/3/2;
  pointer-events: none;
  transition: opacity 0.3s;
}
@supports (transition-behavior: allow-discrete) {
  .batcom-tabs .cmp-tabs__tabpanel {
    display: none;
    transition: opacity 0.3s, display 0.3s allow-discrete;
  }
}
.batcom-tabs .cmp-tabs__tabpanel--active {
  display: block;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.3s 0.3s;
}
@supports (transition-behavior: allow-discrete) {
  .batcom-tabs .cmp-tabs__tabpanel--active {
    transition: opacity 0.3s 0.3s, display 0.3s 0.3s allow-discrete;
  }
}
.batcom-tabs .cmp-tabs__tabpanel {
  /* stylelint-disable-next-line scss/at-rule-no-unknown */
}
@starting-style {
  .batcom-tabs .cmp-tabs__tabpanel {
    opacity: 0;
  }
}
.batcom-tabs .cmp-tabs__tab {
  flex-shrink: 0;
  padding: 0 0 4px;
  opacity: 0.5;
  border-bottom: 1px solid transparent;
}
.batcom-tabs .cmp-tabs__tab--active {
  border-bottom: 1px solid var(--batcom-color-palette-1);
  opacity: 1;
}
.batcom-container--primary-dark .batcom-tabs .cmp-tabs__tab--active, .batcom-container--secondary-dark .batcom-tabs .cmp-tabs__tab--active {
  border-bottom-color: var(--batcom-color-palette-1-inverted);
}
.batcom-tabs .cmp-tabs__tab:hover {
  border-bottom: 1px solid var(--batcom-color-palette-3);
}
.batcom-container--primary-dark .batcom-tabs .cmp-tabs__tab:hover, .batcom-container--secondary-dark .batcom-tabs .cmp-tabs__tab:hover {
  border-bottom-color: var(--batcom-color-palette-3-inverted);
}
.batcom-tabs__tablist-wrapper {
  margin-bottom: 20px;
  position: relative;
}
.batcom-tabs__button {
  overflow: visible;
  width: auto;
  padding: 0;
  border: none;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  color: inherit;
  font: inherit;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  line-height: normal;
}
.batcom-tabs__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.batcom-tabs__button {
  cursor: pointer;
  display: none;
  height: calc(100% - 30px);
  margin: 15px 0;
  position: absolute;
  width: 22px;
}
.batcom-tabs__button.visible {
  display: block;
}
.batcom-tabs__button-wrapper {
  height: 100%;
  position: absolute;
  top: 0;
  width: 60px;
}
.batcom-tabs__button-wrapper--prev {
  background: linear-gradient(to right, var(--batcom-color-palette-7) 45%, transparent 100%);
  display: none;
  left: -1px;
}
.batcom-container--primary-light .batcom-tabs__button-wrapper--prev {
  background: linear-gradient(to right, var(--batcom-color-container-primary-light-bg) 45%, transparent 100%);
}
.batcom-container--primary-dark .batcom-tabs__button-wrapper--prev {
  background: linear-gradient(to right, var(--batcom-color-container-primary-dark-bg) 45%, transparent 100%);
}
.batcom-container--secondary-light .batcom-tabs__button-wrapper--prev {
  background: linear-gradient(to right, var(--batcom-color-container-secondary-light-bg) 45%, transparent 100%);
}
.batcom-container--secondary-dark .batcom-tabs__button-wrapper--prev {
  background: linear-gradient(to right, var(--batcom-color-container-secondary-dark-bg) 45%, transparent 100%);
}
.batcom-tabs__button-wrapper--next {
  background: linear-gradient(to left, var(--batcom-color-palette-7) 45%, transparent 100%);
  display: block;
  right: -1px;
}
.batcom-tabs__button-wrapper--next.hidden {
  display: none;
}
.batcom-container--primary-light .batcom-tabs__button-wrapper--next {
  background: linear-gradient(to left, var(--batcom-color-container-primary-light-bg) 45%, transparent 100%);
}
.batcom-container--primary-dark .batcom-tabs__button-wrapper--next {
  background: linear-gradient(to left, var(--batcom-color-container-primary-dark-bg) 45%, transparent 100%);
}
.batcom-container--secondary-light .batcom-tabs__button-wrapper--next {
  background: linear-gradient(to left, var(--batcom-color-container-secondary-light-bg) 45%, transparent 100%);
}
.batcom-container--secondary-dark .batcom-tabs__button-wrapper--next {
  background: linear-gradient(to left, var(--batcom-color-container-secondary-dark-bg) 45%, transparent 100%);
}
.batcom-tabs__button-wrapper.visible {
  display: block;
}
.batcom-tabs__button-icon {
  background-color: var(--batcom-color-palette-4-tint);
  display: inline-block;
  height: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 10px;
          mask-size: 10px;
  -webkit-mask-position: center;
          mask-position: center;
  width: 100%;
}
.batcom-container--primary-dark .batcom-tabs__button-icon, .batcom-container--secondary-dark .batcom-tabs__button-icon {
  background-color: var(--batcom-color-palette-4-inverted);
}
.batcom-tabs__button--prev {
  left: 9px;
}
.batcom-tabs__button--prev .batcom-tabs__button-icon {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-left.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-left.svg");
}
.batcom-tabs__button--next {
  right: 9px;
}
.batcom-tabs__button--next .batcom-tabs__button-icon {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-right.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-right.svg");
}
.batcom-container--full-page-width .batcom-tabs .batcom-embed,
.batcom-container--full-page-width .batcom-tabs .batcom-image,
.batcom-container--full-page-width .batcom-tabs .batcom-teaser-horizontal,
.batcom-container--full-page-width .batcom-tabs .batcom-teaser-stage {
  margin-left: 0;
  margin-right: 0;
}
.batcom-tabs .cmp-tabs--multicat {
  --tab-gap-spacing-between-tabs: var(--batcom-layout-tabs-tab-spacing, 0);
  --border-bottom-color-default: var(--batcom-color-tabs-border-bottom-color-default);
  --border-bottom-color-active: var(--batcom-color-tabs-border-bottom-color-active);
  --tab-color-bg-default: transparent;
  --tab-color-bg-hover: var(--batcom-color-tabs-bg-hover, rgba(147, 164, 188, 0.08));
  --tab-color-bg-pressed: var(--batcom-color-tabs-bg-pressed, rgba(147, 164, 188, 0.24));
  --tab-color-bg-active: transparent;
}
.batcom-container--primary-dark .batcom-tabs .cmp-tabs--multicat, .batcom-container--secondary-dark .batcom-tabs .cmp-tabs--multicat, .batcom-container--tertiary-dark .batcom-tabs .cmp-tabs--multicat {
  --border-bottom-color-default: var(--batcom-color-tabs-border-bottom-color-default-inverted, var(--batcom-color-tabs-border-bottom-color-default));
  --border-bottom-color-active: var(--batcom-color-tabs-border-bottom-color-active-inverted, var(--batcom-color-tabs-border-bottom-color-active));
  --tab-color-bg-default: transparent;
  --tab-color-bg-hover: var(--batcom-color-tabs-bg-hover-inverted, rgba(147, 164, 188, 0.08));
  --tab-color-bg-pressed: var(--batcom-color-tabs-bg-pressed-inverted, rgba(147, 164, 188, 0.24));
  --tab-color-bg-active: transparent;
}
.batcom-tabs .cmp-tabs--multicat .cmp-tabs__tablist {
  gap: var(--tab-gap-spacing-between-tabs, 0);
}
.batcom-tabs .cmp-tabs--multicat .cmp-tabs__tab {
  position: relative;
  padding: 24px 16px;
  border-bottom: 0 none;
  background-color: var(--tab-color-bg-default);
  border-radius: 0;
  opacity: 1;
  font-weight: var(--batcom-typography-tabs-weight, 500);
}
@media only screen and (max-width: 767px) {
  .batcom-tabs .cmp-tabs--multicat .cmp-tabs__tab {
    font-size: var(--batcom-typography-tabs-size-mobile);
    line-height: var(--batcom-typography-tabs-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .batcom-tabs .cmp-tabs--multicat .cmp-tabs__tab {
    font-size: var(--batcom-typography-tabs-size-tablet);
    line-height: var(--batcom-typography-tabs-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-tabs .cmp-tabs--multicat .cmp-tabs__tab {
    font-size: var(--batcom-typography-tabs-size-desktop);
    line-height: var(--batcom-typography-tabs-line-height-desktop);
  }
}
.batcom-tabs .cmp-tabs--multicat .cmp-tabs__tab::after {
  display: block;
  position: absolute;
  width: 100%;
  content: "";
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(-150%);
  background-color: var(--border-bottom-color-default);
}
.batcom-tabs .cmp-tabs--multicat .cmp-tabs__tab:hover {
  background-color: var(--tab-color-bg-hover);
}
.batcom-tabs .cmp-tabs--multicat .cmp-tabs__tab:hover::after {
  transform: translateY(0);
  height: 4px;
}
.batcom-tabs .cmp-tabs--multicat .cmp-tabs__tab:active {
  background-color: var(--tab-color-bg-pressed);
}
.batcom-tabs .cmp-tabs--multicat .cmp-tabs__tab:active::after {
  transform: translateY(0);
}
.batcom-tabs .cmp-tabs--multicat .cmp-tabs__tab:focus {
  outline: transparent;
}
.batcom-tabs .cmp-tabs--multicat .cmp-tabs__tab:focus-visible {
  outline-offset: 4px;
  border-radius: 8px;
}
.batcom-container--primary-light .batcom-tabs .cmp-tabs--multicat .cmp-tabs__tab:focus-visible, .batcom-container--secondary-light .batcom-tabs .cmp-tabs--multicat .cmp-tabs__tab:focus-visible, .batcom-container--tertiary-light .batcom-tabs .cmp-tabs--multicat .cmp-tabs__tab:focus-visible {
  outline: 1px solid #000;
}
.batcom-container--primary-dark .batcom-tabs .cmp-tabs--multicat .cmp-tabs__tab:focus-visible, .batcom-container--secondary-dark .batcom-tabs .cmp-tabs--multicat .cmp-tabs__tab:focus-visible, .batcom-container--tertiary-dark .batcom-tabs .cmp-tabs--multicat .cmp-tabs__tab:focus-visible {
  outline: 1px solid #fff;
}
.batcom-tabs .cmp-tabs--multicat .cmp-tabs__tab--active {
  background-color: var(--tab-color-bg-active);
}
.batcom-tabs .cmp-tabs--multicat .cmp-tabs__tab--active::after {
  transform: translateY(0);
  height: 4px;
  background-color: var(--border-bottom-color-active);
}
.batcom-tabs .cmp-tabs--multicat .cmp-tabs__tab--active:hover::after {
  background-color: var(--border-bottom-color-active);
}
.batcom-tabs--layout-left .cmp-tabs--multicat .cmp-tabs__tablist {
  align-items: flex-start;
  justify-content: flex-start;
}
.batcom-tabs--layout-center .cmp-tabs--multicat .cmp-tabs__tablist {
  align-items: center;
  justify-content: center;
}
.batcom-tabs--layout-right .cmp-tabs--multicat .cmp-tabs__tablist {
  align-items: flex-end;
  justify-content: flex-end;
}
.batcom-tabs--layout-full .cmp-tabs--multicat .cmp-tabs__tablist {
  align-items: center;
  justify-content: stretch;
}
.batcom-tabs--layout-full .cmp-tabs--multicat .cmp-tabs__tab {
  flex: 1;
  text-align: center;
}
.batcom-tabs--vertical-left {
  padding: 80px 62px 100px;
}
@media only screen and (max-width: 1023px) {
  .batcom-tabs--vertical-left {
    display: none;
  }
}
.batcom-tabs--vertical-left .cmp-tabs {
  grid-template-columns: 29.7% 64px 1fr;
}
.batcom-tabs--vertical-left .cmp-tabs__tabpanel {
  grid-area: 2/3/3/4;
}
.batcom-tabs--vertical-left .cmp-tabs__tablist {
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
  padding: 0;
}
.batcom-tabs--vertical-left .cmp-tabs__tab {
  opacity: 1;
  border: none;
  padding: 12px 12px 12px 16px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--batcom-font-face-2-name);
  font-weight: 700;
  font-size: 16px;
  color: #2b2b2b;
}
.batcom-tabs--vertical-left .cmp-tabs__tab::after {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/tab-icon.svg");
}
.batcom-tabs--vertical-left .cmp-tabs__tab--active {
  background: #254aa2;
  color: #fff;
}
.batcom-tabs--vertical-left .cmp-tabs__tab--active::after {
  background-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/tab-icon-active.svg");
}
.batcom-tabs--vertical-left .batcom-tabs-vertical-left__title {
  grid-area: 1/1/2/4;
  margin-bottom: 32px;
}
.batcom-tabs--vertical-left .batcom-tabs__tablist-wrapper {
  grid-area: 2/1/3/2;
  margin-bottom: 0;
}
.batcom-tabs--vertical-left .cmp-accordion__item {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom: 1px solid black;
}
.batcom-tabs--vertical-left .cmp-accordion__item:first-child {
  border-top: 1px solid black;
}
.batcom-tabs--vertical-left .cmp-accordion__item--animation .cmp-accordion__panel--expanded {
  max-height: none;
}
.batcom-tabs--vertical-left .cmp-accordion__button {
  padding: 16px 0;
  margin: 0;
}
.batcom-tabs--vertical-left .cmp-accordion__panel--expanded {
  padding: 8px 115px 16px 0;
}