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-container--primary-dark .batcom-linklist, .batcom-container--secondary-dark .batcom-linklist {
  --batcom-color-link-list-item-link-arrow: var(--batcom-color-link-list-item-link-arrow-inverted);
}

.batcom-linklist--solid {
  padding-top: 20px;
}
@media only screen and (min-width: 768px) {
  .batcom-linklist--solid {
    padding: 40px 30px;
  }
}
.batcom-linklist--solid .batcom-linklist__title {
  margin-bottom: 36px;
}
.batcom-linklist--solid .batcom-linklist__item-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 25px 0;
}
@media only screen and (max-width: 479px) {
  .batcom-linklist--solid .batcom-linklist__item-link {
    padding: 18px 0;
  }
}
.batcom-linklist--solid .batcom-linklist__item-link::after {
  content: "";
  height: 18px;
  width: 9px;
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-right-rounded.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-right-rounded.svg");
  background-color: var(--batcom-color-link-list-item-link-arrow);
}
.batcom-linklist--solid .batcom-linklist__item-title {
  max-width: calc(100% - 18px);
}
.batcom-linklist--solid .batcom-linklist__wrapper-item::after, .batcom-linklist--solid .batcom-linklist__wrapper-item:first-child::before {
  content: "";
  width: 100%;
  height: 1px;
  opacity: 0.3;
  background-color: var(--batcom-color-link-list-text);
}
@media only screen and (min-width: 768px) {
  .batcom-linklist--solid .batcom-linklist__wrapper-item {
    flex-direction: column;
  }
}

.batcom-linklist--directory .batcom-linklist {
  display: flex;
}
.batcom-linklist--directory .batcom-linklist__title {
  flex: 0 0 35px;
  padding-top: 4px;
  font-size: 1.2rem;
  font-weight: 300;
}
.batcom-linklist--directory .batcom-linklist__wrapper-item {
  align-items: baseline;
  flex-direction: row;
}
.columncontrol__column .batcom-linklist--directory .batcom-linklist__wrapper-item {
  flex-direction: initial;
}
.batcom-linklist--directory .batcom-linklist__wrapper-item:not(:last-child) {
  margin-bottom: 1.1rem;
}
.batcom-linklist--directory .batcom-linklist__wrapper-item::before {
  content: "";
  width: 16px;
  margin-inline-end: 6.4px;
  padding-top: 1rem;
  -webkit-mask: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-black.svg") center bottom/contain no-repeat;
          mask: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-black.svg") center bottom/contain no-repeat;
  background-color: var(--batcom-color-link-list-item-link-arrow);
  display: inline-flex;
  flex-shrink: 0;
}
.batcom-linklist--directory .batcom-linklist__item-link:active, .batcom-linklist--directory .batcom-linklist__item-link:focus, .batcom-linklist--directory .batcom-linklist__item-link:hover, .batcom-linklist--directory .batcom-linklist__item-link:visited {
  color: var(--batcom-color-link-list-item-link);
  text-decoration: none;
}
.batcom-linklist--directory .batcom-linklist__item-title {
  font-size: 0.85rem;
  font-weight: 300;
}

.batcom-linklist.batcom-linklist__side-navigation {
  font-family: var(--batcom-font-face-4-name), serif;
  color: var(--batcom-color-link-list-side-navigation-item-link);
}
@media only screen and (min-width: 1024px) {
  .batcom-linklist.batcom-linklist__side-navigation {
    margin: 48px 24px 48px 0;
  }
}
@media only screen and (max-width: 1023px) {
  .batcom-linklist.batcom-linklist__side-navigation {
    margin: 0 calc(var(--batcom-layout-content-left-right-margin) / 2 * -1);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .batcom-linklist.batcom-linklist__side-navigation {
    margin-inline: calc(var(--batcom-layout-content-left-right-margin) * -1);
  }
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title {
  --icon-height: 19px;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1fr var(--icon-height);
  grid-template-areas: "title icon";
  align-items: center;
  font-size: var(--batcom-typography-x-small-size-mobile);
  font-weight: var(--batcom-typography-weight-normal);
  margin-left: 0;
  min-height: 60px;
  position: relative;
  padding: 18px calc(var(--batcom-layout-content-left-right-margin) / 2);
  line-height: var(--batcom-typography-body-size-mobile);
  letter-spacing: 1px;
  color: var(--batcom-color-link-list-side-navigation-title);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title {
    padding-inline: var(--batcom-layout-content-left-right-margin);
  }
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title::before, .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title::after {
  content: "";
  grid-area: icon;
  justify-self: center;
  background: var(--batcom-color-link-list-side-navigation-menu-expand-icon);
  height: var(--icon-height);
  border-radius: 2px;
  width: 2px;
  transition: transform 0.3s;
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title::after {
  transform: rotate(90deg);
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title:has(+ .batcom-linklist__wrapper--visible) {
  background: var(--batcom-color-link-list-side-navigation-link-bg-active);
  color: var(--batcom-color-link-list-side-navigation-title-inverted);
  border-top: 2px solid var(--batcom-color-link-list-side-navigation-item-link-active);
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title:has(+ .batcom-linklist__wrapper--visible)::before {
  background: var(--batcom-color-link-list-side-navigation-item-link-active);
  transform: rotate(90deg);
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title:has(+ .batcom-linklist__wrapper--visible)::after {
  background: var(--batcom-color-link-list-side-navigation-item-link-active);
}
@media only screen and (min-width: 1024px) {
  .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title {
    display: none;
  }
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper {
    display: block;
  }
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper--visible {
  display: block;
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item {
  justify-content: center;
  margin-bottom: 0;
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item:not(:first-child) .batcom-linklist__item-link-wrapper {
  border-top: 1px solid var(--batcom-color-link-list-side-navigation-separator);
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item--selected {
  align-items: flex-start;
  display: flex;
  position: relative;
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item--selected .batcom-linklist__item-link {
  padding-left: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item--selected .batcom-linklist__item-link {
    padding-left: 64px;
  }
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item--selected div.batcom-linklist__item-link-wrapper {
  border: 0 !important; /* stylelint-disable-line */
  background: var(--batcom-color-link-list-side-navigation-link-bg-active);
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item--selected .batcom-linklist__item-title {
  color: var(--batcom-color-link-list-side-navigation-item-link-active);
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item--selected::after {
  background-color: var(--batcom-color-link-list-side-navigation-item-link-active);
  content: "";
  height: 12px;
  left: 24px;
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-right.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-right.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item--selected::after {
    left: 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item--selected::after {
    left: 16px;
  }
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item:last-child .batcom-linklist__item-link-wrapper {
  border-bottom: none;
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link-wrapper {
  align-items: stretch;
  align-self: stretch;
  background: transparent;
  transition: background 160ms ease-out;
  margin: 0 8px;
}
@media only screen and (min-width: 1024px) {
  .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link-wrapper {
    width: 100%;
    margin: 0;
  }
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link-wrapper:hover {
  background: rgba(147, 164, 188, 0.0784313725);
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link-wrapper:active {
  background: rgba(147, 164, 188, 0.2392156863);
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link {
  align-items: center;
  color: var(--batcom-color-link-list-side-navigation-item-link);
  display: flex;
  font-size: var(--batcom-typography-x-small-size-mobile);
  min-height: 48px;
  font-family: var(--batcom-font-face-4-name), serif;
  line-height: var(--batcom-typography-body-size-mobile);
  padding: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link {
    padding: 12px 34px;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link {
    min-height: 60px;
    padding: 18px 16px;
  }
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link:focus-visible {
  border-radius: 8px;
  outline: 2px solid var(--batcom-color-link-list-side-navigation-item-link);
  outline-offset: 4px;
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link:active {
  outline: 0;
  border-radius: 0;
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link:hover, .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link:visited {
  text-decoration: none;
}

.batcom-container .columncontrol .columncontrol__base.columncontrol__grid--lt2 .columncontrol__column--lt2:has(.batcom-linklist__side-navigation) {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .batcom-container .columncontrol .columncontrol__base.columncontrol__grid--lt2 .columncontrol__column--lt2:has(.batcom-linklist__side-navigation) {
    width: calc((100% - 2 * var(--batcom-layout-column-control-gutter)) / 4);
  }
}
.batcom-container .columncontrol .columncontrol__base.columncontrol__grid--lt2 .columncontrol__column--lt2:has(.batcom-linklist__side-navigation) + .columncontrol__column--lt2 {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .batcom-container .columncontrol .columncontrol__base.columncontrol__grid--lt2 .columncontrol__column--lt2:has(.batcom-linklist__side-navigation) + .columncontrol__column--lt2 {
    padding-left: 87px;
    width: calc(100% - (100% - 2 * var(--batcom-layout-column-control-gutter)) / 4 - var(--batcom-layout-column-control-gutter));
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .batcom-container .columncontrol .columncontrol__wrapper:has(.batcom-linklist__side-navigation) {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .columncontrol--home .columncontrol__column--lt2:nth-child(1) .batcom-cc-container:has(.batcom-linklist__side-navigation)::before {
    inset-inline: calc(var(--batcom-layout-content-left-right-margin) * -1);
  }
}

.columncontrol--home .columncontrol__column--lt2 .batcom-cc-container:has(.batcom-linklist__side-navigation)::before {
  background-color: var(--batcom-color-link-list-side-navigation-bg);
  border-top: 1px solid var(--batcom-color-palette-border-default, #dedede);
}

@media only screen and (max-width: 1023px) {
  .columncontrol--home .columncontrol__column--lt2 .batcom-cc-container:has(.batcom-linklist__side-navigation)::before {
    border-bottom: 1px solid var(--batcom-color-palette-border-default, #dedede);
  }
}
.batcom-container--primary-dark .batcom-linklist, .batcom-container--secondary-dark .batcom-linklist {
  --batcom-color-link-list-item-link: var(--batcom-color-link-list-item-link-inverted);
  --batcom-color-link-list-item-link-hover: var(--batcom-color-link-list-item-link-hover-inverted);
  --batcom-color-link-list-text: var(--batcom-color-link-list-text-inverted);
  --batcom-color-link-list-title: var(--batcom-color-link-list-title-inverted);
}
.batcom-linklist.batcom-linklist--horizontal {
  margin-bottom: 0;
  padding: 20px 0 30px;
}
.batcom-linklist .batcom-linklist__title {
  color: var(--batcom-color-link-list-title);
}
.batcom-linklist__wrapper {
  list-style-type: none;
  padding-left: 0;
}
.batcom-linklist--horizontal .batcom-linklist__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
  justify-content: center;
}
.batcom-linklist__wrapper-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 6px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .batcom-linklist__wrapper-item {
    flex-direction: row;
  }
  .columncontrol__column .batcom-linklist__wrapper-item {
    flex-direction: column;
  }
}
.batcom-linklist--horizontal .batcom-linklist__wrapper-item {
  margin: 7px 10px;
  width: auto;
}
.batcom-linklist__item-description {
  color: var(--batcom-color-link-list-text);
  font-size: 18px;
  margin-bottom: 18px;
}
.batcom-linklist__item-link {
  color: var(--batcom-color-link-list-item-link);
  line-height: 2.5rem;
  text-decoration: none;
}
.batcom-linklist__item-link::before {
  display: none;
}
.batcom-linklist__item-link:hover, .batcom-linklist__item-link:visited {
  color: var(--batcom-color-link-list-item-link-hover);
}
.batcom-linklist__item-date {
  color: var(--batcom-color-link-list-text);
  display: flex;
  margin-bottom: 24px;
  margin-right: 5px;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.columncontrol__column .batcom-linklist__item-date {
  margin-bottom: 10px;
}
@media only screen and (max-width: 479px) {
  .batcom-linklist__item-date {
    margin-bottom: 10px;
  }
}
.batcom-linklist__item-link-wrapper {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
.batcom-linklist__description {
  color: var(--batcom-color-link-list-text);
  margin-bottom: 18px;
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link {
  font-weight: var(--batcom-typography-weight-normal);
}