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
*/
body .batcom-accordion--caret .cmp-accordion__heading {
  margin-block-end: 30px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}
body .batcom-accordion--caret .cmp-accordion__item {
  margin: 0;
  padding: 12px 0;
  border-width: 1px 0 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 0;
}
body .batcom-accordion--caret .cmp-accordion__item:last-child {
  border-bottom-width: 1px;
}
body .batcom-accordion--caret .cmp-accordion__panel {
  padding: 0;
}
body .batcom-accordion--caret .cmp-accordion__panel--expanded {
  margin-block-start: 15px;
}
body .batcom-accordion--caret .cmp-accordion__title {
  margin-inline-start: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: 400;
}
body .batcom-accordion--caret .cmp-accordion__icon {
  width: 19px;
  aspect-ratio: 1;
  background-color: var(--batcom-color-accordion-title);
  -webkit-mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-down.svg");
          mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-down.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
body .batcom-accordion--caret .cmp-accordion__icon::before {
  content: none;
}
body .batcom-accordion--caret .cmp-accordion__button {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.4;
}
body .batcom-accordion--caret .cmp-accordion__button:hover .cmp-accordion__icon {
  background-color: var(--batcom-color-accordion-title-hover);
}
body .batcom-accordion--caret .cmp-accordion__button--expanded .cmp-accordion__icon {
  -webkit-mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-up.svg");
          mask-image: url("../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-up.svg");
}
body .batcom-accordion--caret .cmp-accordion .batcom-button,
body .batcom-accordion--caret .cmp-accordion .embed,
body .batcom-accordion--caret .cmp-accordion .image,
body .batcom-accordion--caret .cmp-accordion .list,
body .batcom-accordion--caret .cmp-accordion .teaser,
body .batcom-accordion--caret .cmp-accordion .text {
  margin: 0;
  padding: 0;
}
body .batcom-accordion--caret .cmp-accordion:has(.cmp-accordion__roundicon) .cmp-accordion__title,
body .batcom-accordion--caret .cmp-accordion:has(.cmp-accordion__roundicon) .batcom-button,
body .batcom-accordion--caret .cmp-accordion:has(.cmp-accordion__roundicon) .embed,
body .batcom-accordion--caret .cmp-accordion:has(.cmp-accordion__roundicon) .image,
body .batcom-accordion--caret .cmp-accordion:has(.cmp-accordion__roundicon) .list,
body .batcom-accordion--caret .cmp-accordion:has(.cmp-accordion__roundicon) .teaser,
body .batcom-accordion--caret .cmp-accordion:has(.cmp-accordion__roundicon) .text {
  margin-inline-start: 70px;
}
body .batcom-container--primary-dark .batcom-accordion--caret .cmp-accordion {
  --batcom-color-accordion-bg: transparent;
  --batcom-color-accordion-bg-hover: transparent;
  --batcom-color-accordion-bg-expanded: transparent;
}

@media only screen and (min-width: 1024px) {
  body .batcom-header-default .batcom-search--header {
    align-self: flex-end;
    padding-block-end: 9.5px;
    line-height: 1;
  }
}

@media only screen and (min-width: 768px) {
  body .batcom-tabs--vertical {
    margin-block-end: 0;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-tabs--vertical .batcom-tabs__tablist-wrapper {
    grid-area: list;
    margin-block-end: 0;
    padding: 34px 34px 29px 40px;
    background: var(--batcom-color-container-primary-dark-bg);
    color: var(--batcom-color-body-text-inverted);
  }
}
body .batcom-tabs--vertical .batcom-tabs__title {
  --batcom-color-heading-h2: --batcom-color-body-text-inverted;
  margin-block-end: 20px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}
@media only screen and (min-width: 768px) {
  body .batcom-tabs--vertical .cmp-tabs {
    grid-template-areas: "list panel";
    grid-template-columns: minmax(300px, 400px) minmax(400px, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-tabs--vertical .cmp-tabs {
    -moz-column-gap: 39px;
         column-gap: 39px;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-tabs--vertical .cmp-tabs__tabpanel {
    grid-area: panel;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-tabs--vertical .cmp-tabs__tablist {
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-tabs--vertical .cmp-tabs__tab {
    opacity: 1;
    padding: 10px 0;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.15);
    line-height: 1.4;
    transition: text-indent 0.3s;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-tabs--vertical .cmp-tabs__tab:hover, body .batcom-tabs--vertical .cmp-tabs__tab--active {
    border-bottom: none;
    text-indent: 20px;
  }
}
body .batcom-tabs--vertical .cmp-tabs__tab:focus {
  outline-offset: -2px;
}
@media only screen and (min-width: 768px) {
  body .batcom-tabs--vertical .cmp-tabs__tab:last-child {
    border-bottom-width: 1px;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-tabs--rounded .batcom-tabs__tablist-wrapper {
    margin-left: 16.6667%;
  }
}
body .batcom-tabs--rounded .cmp-tabs__tablist {
  display: inline-flex;
  padding: 0;
  background-color: var(--batcom-color-tabs-bg-default, #f4f5f8);
  border-radius: 33px;
  gap: 0;
  overflow: visible;
}
body .batcom-tabs--rounded .cmp-tabs__tab {
  padding: 16px 20px;
  border-radius: 33px;
  color: var(--batcom-color-tabs-text-default, #0e2b63);
  height: 51px;
  opacity: 1;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  border: 1px solid transparent;
}
body .batcom-tabs--rounded .cmp-tabs__tab:hover {
  border-bottom: 0;
}
body .batcom-tabs--rounded .cmp-tabs__tab--active {
  background: var(--batcom-color-tabs-bg-active, #0e2b63);
  color: var(--batcom-color-tabs-text-active, #fff);
}
body .batcom-tabs--rounded .cmp-tabs__tab:not(.cmp-tabs__tab--active):hover {
  background-color: var(--batcom-color-tabs-bg-onhover, #b3d4fc);
  border: 1px solid var(--batcom-color-button-primary-border, #004f9f);
  color: var(--batcom-color-tabs-text-onhover, #000);
}
@media only screen and (min-width: 480px) {
  body .batcom-tabs--rounded .cmp-tabs__tab {
    padding: 16px 30px;
  }
}
body .batcom-tabs--layout-left .batcom-tabs__tablist-wrapper {
  text-align: left;
}
body .batcom-tabs--layout-center .batcom-tabs__tablist-wrapper {
  text-align: center;
}
body .batcom-tabs--layout-right .batcom-tabs__tablist-wrapper {
  text-align: right;
}

@media only screen and (min-width: 768px) {
  body .batcom-tabs--vertical .batcom-teaser {
    min-height: 532px;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-tabs--vertical .batcom-teaser {
    aspect-ratio: auto;
  }
}
body .batcom-teaser-product-card .cmp-teaser__title {
  font-size: 24px;
  line-height: 1.4;
}
body .batcom-teaser-product-card .cmp-teaser__description {
  font-size: 18px;
  font-weight: var(--batcom-typography-weight-bold);
  line-height: 1.4;
}
body .batcom-teaser-product-card .cmp-teaser__pretitle {
  font-size: 16px;
  font-weight: var(--batcom-typography-weight-light);
  line-height: 1.4;
}

.batcom-video--omni {
  background-color: rgba(0, 0, 0, 0.2);
}
.batcom-video--omni .batcom-video__content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 29px var(--batcom-layout-container-padding);
  background: linear-gradient(to top, #0e2b63, transparent);
}
@media only screen and (min-width: 768px) {
  .batcom-video--omni .batcom-video__content {
    padding-block: 63px;
  }
}
.batcom-video--omni .batcom-video__content-container {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: 1fr auto;
  gap: 17px 51px;
  max-width: var(--batcom-layout-content-max-width);
  margin: 0 auto;
  color: var(--batcom-color-body-text-inverted);
}
@media only screen and (min-width: 768px) {
  .batcom-video--omni .batcom-video__content-container {
    gap: 6px 39px;
  }
}
.batcom-video--omni .batcom-video__content-container:has(.batcom-video__content-pretitle) {
  grid-template-rows: repeat(3, auto);
}
.batcom-video--omni .batcom-video__content-pretitle, .batcom-video--omni .batcom-video__content-title, .batcom-video--omni .batcom-video__content-description {
  text-align: inherit;
}
.batcom-video--omni .batcom-video__content-title {
  grid-column: 1/-1;
  line-height: 110%;
  font-size: 32px;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .batcom-video--omni .batcom-video__content-title {
    grid-column: auto;
    font-size: 48px;
  }
}
.batcom-video--omni .batcom-video__content-pretitle, .batcom-video--omni .batcom-video__content-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}
@media only screen and (min-width: 768px) {
  .batcom-video--omni .batcom-video__content-pretitle, .batcom-video--omni .batcom-video__content-description {
    font-size: 22px;
  }
}
.batcom-video--omni .batcom-video__content-link {
  grid-column: 2/3;
  align-self: end;
}
@media only screen and (min-width: 768px) {
  .batcom-video--omni .batcom-video__content-link {
    grid-row: 1/-1;
  }
}
.batcom-video--omni .batcom-video__content-link svg {
  display: block;
  height: 55px;
  width: 55px;
}
@media only screen and (min-width: 768px) {
  .batcom-video--omni .batcom-video__content-link svg {
    height: 77px;
    width: 77px;
  }
}
@media only screen and (max-width: 767px) {
  .batcom-video--omni .batcom-video__content:has(.batcom-video__content-pretitle) .batcom-video__content-link {
    grid-row: 2/-1;
  }
}
.batcom-video--omni h2 {
  color: var(--batcom-color-body-text-inverted);
  text-transform: none;
}
.batcom-video--omni .batcom-video__video {
  display: block;
  z-index: -2;
  position: relative;
}
.batcom-video--omni:not(.cq-Editable-dom) .batcom-video__video {
  height: 100svh;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (min-width: 1024px) {
  body .batcom-header {
    height: 100px;
  }
}
body .batcom-header__top {
  margin-block-start: 0;
}
@media only screen and (max-width: 1023px) {
  body .batcom-header__top {
    order: 1;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header__top {
    height: 40px;
    grid-column: 2/4;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header-default--corp {
    padding-inline: 5.6vw;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header-default--corp .batcom-header__logo {
    align-self: flex-end;
    padding-block-end: 7px;
  }
}
body .batcom-header-default--corp .batcom-header__links {
  margin-block-start: 0;
}
@media only screen and (min-width: 1024px) {
  body .batcom-header .batcom-header__wrapper {
    height: 100px;
    -moz-column-gap: 2.1vw;
         column-gap: 2.1vw;
    grid-template-columns: auto 1fr auto;
  }
}
@media only screen and (max-width: 1023px) {
  body .batcom-header__links .batcom-search--header {
    margin-inline: 12px;
  }
}
body .batcom-header__cta {
  align-self: center;
}
body .batcom-header__cta .cmp-button {
  padding: 7px 11px;
  line-height: 15px;
}
@media only screen and (min-width: 1024px) {
  body .batcom-header__cta .cmp-button {
    padding-inline: 18px;
  }
}
body .batcom-header__cta .cmp-button__text + .cmp-button__svg {
  margin-inline-start: 10px;
}
body .batcom-header__cta .cmp-button__svg svg {
  height: 15px;
}
@media only screen and (max-width: 1023px) {
  body .batcom-header__cta--desktop {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header__cta--mobile {
    display: none;
  }
}
body .batcom-header__cta:has(.cmp-button) {
  margin-block-end: 0;
}
@media only screen and (min-width: 1024px) {
  body .batcom-header-breadcrumbs {
    top: 112px;
    left: 5.6vw;
    width: calc(100vw - 2 * 5.6vw);
  }
}
@media only screen and (min-width: 1024px) {
  body .batcom-header-breadcrumbs.batcom-header--sticky::before {
    height: 100px;
  }
}

.xf-web-container .batcom-header__cta {
  display: initial;
}

body .batcom-navigationcorp {
  order: 1;
}
body .cmp-navigationcorp__menu-container {
  top: 100px;
  height: calc(100vh - 100px);
}
@media only screen and (min-width: 1024px) {
  body .cmp-navigationcorp > .cmp-navigationcorp__group {
    gap: 2.1vw;
  }
}
@media only screen and (max-width: 1023px) {
  body .cmp-navigationcorp--active {
    top: 80px;
    height: calc(100dvh - 80px);
  }
}

body .corp-search-bar__modal {
  inset-block-start: 80px;
  height: calc(100vh - 80px);
}
@media only screen and (min-width: 1024px) {
  body .corp-search-bar__modal {
    inset-block-start: 100px;
    height: calc(100vh - 100px);
  }
}