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
*/
.cmp-experiencefragment--header {
  width: 100vw;
  z-index: 2;
  position: relative;
}
.cmp-experiencefragment--header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 200px;
  display: block;
  background: linear-gradient(to bottom, rgba(14, 43, 99, 0.95), rgba(14, 43, 99, 0));
}
.batcom-evergreenpage .cmp-experiencefragment--header::after {
  content: none;
}
.cmp-experiencefragment--header .batcom-container,
.cmp-experiencefragment--header .cmp-container {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
}
.cmp-experiencefragment--header .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noSpacing {
  padding: 0;
}

.batcom-header {
  height: 80px;
  position: absolute;
  width: 100vw;
  padding: 0;
  z-index: 1;
  background: var(--batcom-color-palette-1-inverted);
}
@media only screen and (min-width: 1024px) {
  .batcom-header {
    height: 128px;
    background: transparent;
  }
}
@media only screen and (min-width: 1280px) {
  .batcom-container--full-page-width .batcom-header {
    padding: 0;
  }
}
.batcom-header.batcom-header--sticky::before {
  content: "";
  display: block;
  height: 80px;
}
@media only screen and (min-width: 1024px) {
  .batcom-header.batcom-header--sticky::before {
    height: 128px;
  }
}
.batcom-header.batcom-header--sticky .batcom-header-default--corp, .batcom-evergreenpage .batcom-header .batcom-header-default--corp, .batcom-header:hover .batcom-header-default--corp, .noScroll .batcom-header .batcom-header-default--corp {
  background: var(--batcom-color-palette-1-inverted);
}
.batcom-evergreenpage .batcom-header {
  height: auto;
  min-height: 80px;
  background: var(--batcom-color-palette-1-inverted);
  position: relative;
}
.batcom-evergreenpage .batcom-header .batcom-header-default--corp {
  border-bottom: 1px solid rgba(5, 5, 5, 0.05);
}
.noScroll.batcom-evergreenpage .batcom-header {
  margin-bottom: 0;
}
.batcom-header__logo img[src$=".svg"] {
  filter: invert(9%) sepia(51%) saturate(4659%) hue-rotate(216deg) brightness(96%) contrast(91%);
}
@media only screen and (min-width: 1024px) {
  .batcom-header__logo img[src$=".svg"] {
    filter: invert(99%) sepia(1%) saturate(5341%) hue-rotate(221deg) brightness(123%) contrast(100%);
  }
}
.batcom-header--sticky .batcom-header__logo img[src$=".svg"], .batcom-evergreenpage .batcom-header__logo img[src$=".svg"], .batcom-header:hover .batcom-header__logo img[src$=".svg"], .noScroll .batcom-header__logo img[src$=".svg"] {
  filter: invert(9%) sepia(51%) saturate(4659%) hue-rotate(216deg) brightness(96%) contrast(91%);
}
@media only screen and (min-width: 1024px) {
  .xf-web-container .batcom-header__logo img[src$=".svg"] {
    filter: invert(9%) sepia(51%) saturate(4659%) hue-rotate(216deg) brightness(96%) contrast(91%);
  }
}
.batcom-header-default--corp .batcom-header__logo {
  order: initial;
  flex-grow: 1;
}
@media only screen and (min-width: 1024px) {
  .batcom-header-default--corp .batcom-header__logo {
    grid-row: 1/3;
    grid-column: 1/2;
    align-self: center;
  }
}
.batcom-header__logo .cmp-image__image {
  height: 36px;
}
@media only screen and (min-width: 1024px) {
  .batcom-header__logo .cmp-image__image {
    height: 70px;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-header__top {
    height: 62px;
    grid-row: 1/2;
    grid-column: 2/3;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.batcom-header-default .batcom-header__links {
  margin-top: 4px;
}
@media only screen and (min-width: 1024px) {
  .batcom-header-default .batcom-header__links {
    margin: 0;
  }
}
.batcom-header__links .batcom-search--header {
  margin: 0 25px;
}
.batcom-header__links .cmp-search__toggle {
  color: var(--batcom-color-palette-1);
}
@media only screen and (min-width: 1024px) {
  .batcom-header__links .cmp-search__toggle {
    color: var(--batcom-color-palette-1-inverted);
  }
}
.batcom-header--sticky .batcom-header__links .cmp-search__toggle, .batcom-evergreenpage .batcom-header__links .cmp-search__toggle, .batcom-header:hover .batcom-header__links .cmp-search__toggle, .noScroll .batcom-header__links .cmp-search__toggle {
  color: var(--batcom-color-palette-1);
}
.batcom-header-default--corp-fixed .batcom-header__links .cmp-search__toggle {
  color: var(--batcom-color-palette-1);
}
@media only screen and (min-width: 1024px) {
  .batcom-header__top .batcom-header__links {
    display: flex;
    border-bottom: solid 1px var(--batcom-color-palette-1-inverted);
    height: 100%;
    align-items: center;
  }
  .batcom-header--sticky .batcom-header__top .batcom-header__links, .batcom-evergreenpage .batcom-header__top .batcom-header__links, .batcom-header:hover .batcom-header__top .batcom-header__links, .noScroll .batcom-header__top .batcom-header__links {
    border-bottom-color: var(--batcom-color-palette-1);
  }
  .batcom-header-default--corp-fixed .batcom-header__top .batcom-header__links {
    border-bottom-color: var(--batcom-color-palette-1);
  }
}
.batcom-header__links a {
  color: var(--batcom-color-palette-1-inverted);
  font-weight: 300;
}
.batcom-header--sticky .batcom-header__links a, .batcom-evergreenpage .batcom-header__links a, .batcom-header:hover .batcom-header__links a, .noScroll .batcom-header__links a {
  color: var(--batcom-color-palette-1);
}
.batcom-header-default--corp-fixed .batcom-header__links a {
  color: var(--batcom-color-palette-1);
}
.batcom-header__link img[src$=".svg"] {
  filter: invert(9%) sepia(51%) saturate(4659%) hue-rotate(216deg) brightness(96%) contrast(91%);
}
@media only screen and (min-width: 1024px) {
  .batcom-header__link img[src$=".svg"] {
    filter: invert(99%) sepia(1%) saturate(5341%) hue-rotate(221deg) brightness(123%) contrast(100%);
  }
}
.batcom-header--sticky .batcom-header__link img[src$=".svg"], .batcom-evergreenpage .batcom-header__link img[src$=".svg"], .batcom-header:hover .batcom-header__link img[src$=".svg"], .noScroll .batcom-header__link img[src$=".svg"] {
  filter: invert(9%) sepia(51%) saturate(4659%) hue-rotate(216deg) brightness(96%) contrast(91%);
}
@media only screen and (min-width: 1024px) {
  .xf-web-container .batcom-header__link img[src$=".svg"] {
    filter: invert(9%) sepia(51%) saturate(4659%) hue-rotate(216deg) brightness(96%) contrast(91%);
  }
}
.batcom-header__link {
  white-space: nowrap;
}
.batcom-header__link--text:hover a, .batcom-header__link--text:focus a {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.batcom-header__link.batcom-header__link-img {
  display: inline-block;
}
.batcom-header__link.batcom-header__link-img img {
  width: 19px;
}
@media only screen and (min-width: 1024px) {
  .batcom-header__link.batcom-header__link-img img {
    width: 17px;
    min-width: 17px;
  }
}
.batcom-header .batcom-navigationcorp--header {
  flex-grow: 0;
}
@media only screen and (min-width: 1024px) {
  .batcom-header .batcom-navigationcorp--header {
    order: initial;
    grid-row: 2/3;
    grid-column: 2/3;
  }
}
.batcom-header .batcom-menuButton__icon-line {
  --batcom-color-navigation-burger-menu-icon: var(--batcom-color-palette-1);
}
.batcom-header__wrapper {
  border: 0;
}
.batcom-header--sticky .batcom-header__wrapper {
  width: 100vw;
  position: fixed;
  top: 0;
  box-shadow: 0 8px 4px 0 rgba(0, 0, 0, 0.25);
}
.batcom-header-default--corp {
  padding: 0 16px;
}
@media only screen and (min-width: 1024px) {
  .batcom-header-default--corp {
    padding: 0 2.8vw;
  }
}
.batcom-header .batcom-header__wrapper {
  border: 0;
}
@media only screen and (min-width: 1024px) {
  .batcom-header .batcom-header__wrapper {
    height: 128px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
.batcom-header-breadcrumbs {
  position: absolute;
  top: 92px;
  left: 5%;
  width: 95%;
}
@media only screen and (min-width: 1024px) {
  .batcom-header-breadcrumbs {
    top: 140px;
    left: 2.8vw;
    width: calc(100vw - 2.8vw);
  }
}
.batcom-evergreenpage .batcom-header-breadcrumbs {
  position: relative;
  top: 12px;
  margin-bottom: 20px;
}
.batcom-homepage .batcom-header-breadcrumbs, .batcom-evergreenpage.noScroll .batcom-header-breadcrumbs {
  display: none;
}
.batcom-header-breadcrumbs .cmp-breadcrumb__item::after {
  content: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/filled-arrow-right-white.svg");
}
.batcom-header-breadcrumbs .cmp-breadcrumb__item span, .batcom-header-breadcrumbs .cmp-breadcrumb__item-link {
  color: var(--batcom-color-palette-1-inverted);
}
.batcom-header-breadcrumbs .cmp-breadcrumb__item span:hover, .batcom-header-breadcrumbs .cmp-breadcrumb__item span:focus, .batcom-header-breadcrumbs .cmp-breadcrumb__item-link:hover, .batcom-header-breadcrumbs .cmp-breadcrumb__item-link:focus {
  color: var(--batcom-color-palette-1-inverted);
}
.batcom-evergreenpage .batcom-header-breadcrumbs .cmp-breadcrumb__item::after {
  content: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/filled-arrow-right-purple.svg");
}
.batcom-evergreenpage .batcom-header-breadcrumbs .cmp-breadcrumb__item span, .batcom-evergreenpage .batcom-header-breadcrumbs .cmp-breadcrumb__item-link {
  color: var(--batcom-color-palette-1);
}
.batcom-evergreenpage .batcom-header-breadcrumbs .cmp-breadcrumb__item span:hover, .batcom-evergreenpage .batcom-header-breadcrumbs .cmp-breadcrumb__item span:focus, .batcom-evergreenpage .batcom-header-breadcrumbs .cmp-breadcrumb__item-link:hover, .batcom-evergreenpage .batcom-header-breadcrumbs .cmp-breadcrumb__item-link:focus {
  color: var(--batcom-color-palette-1);
}
.xf-web-container .batcom-header {
  position: relative;
}
.xf-web-container .batcom-header *:not(.cmp-button span) {
  color: #333 !important; /* stylelint-disable-line */
}