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-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 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
*/
.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;
  /* stylelint-disable-next-line scss/at-rule-no-unknown */
}
@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;
  }
}
@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;
  cursor: pointer;
  display: none;
  height: calc(100% - 30px);
  margin: 15px 0;
  position: absolute;
  width: 22px;
}
.batcom-tabs__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.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;
}
/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fYm9keV9ub3Njcm9sbC5zY3NzIiwiLi4vc3JjL21haW4vamNyX3Jvb3QvYXBwcy9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tdGFicy9iYXRjb20tdGFicy5idW5kbGUuY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvYWJzdHJhY3RzL19sb2FkaW5nLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9hYnN0cmFjdHMvX292ZXJsYXlfc2hvcnRoYW5kLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9mdW5jdGlvbnMvX25uLXotaW5kZXguc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fYXJyb3cuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fY2xlYXJmaXguc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fY29tcG9uZW50LW5vcm1hbGl6ZS5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19mb250LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2hlYWRpbmdzLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX3Zpc2liaWxpdHkuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fY29sdW1uY29udHJvbC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19yZXZlcnNlLWNvbnRhaW5lci5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLXRhYnMvYmF0Y29tLXRhYnMuY2xpZW50bGlicy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19tZWRpYXF1ZXJpZXMuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fYnV0dG9ucy5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQU1BO0VBQ0UsZ0JBQUE7RUFDQSxlQUFBO0VBQ0EsUUFBQTtBQ0xGOztBQ0VBO0VBQ0U7SUFDRSx1Q0FBQTtFRENGO0VDRUE7SUFDRSx1Q0FBQTtFREFGO0VDR0E7SUFDRSx5QkFBQTtFRERGO0FBQ0Y7QUNJQTtFQUNFLHFCQUFBO0VBQ0EsV0FBQTtFQUNBLFlBQUE7RUFDQSxrQkFBQTtFQUNBLHNCQUFBO0VBQ0Esc0NBQUE7RUFDQSxxQkFBQTtFQUNBLGtCQUFBO0FERkY7QUNJRTtFQUVFLGtCQUFBO0VBQ0EsV0FBQTtFQUNBLHFCQUFBO0VBQ0Esa0JBQUE7RUFDQSxXQUFBO0VBQ0EsWUFBQTtFQUNBLHlCQUFBO0VBQ0Esc0NBQUE7QURISjtBQ01FO0VBQ0UscUJBQUE7RUFDQSxXQUFBO0FESko7QUNPRTtFQUNFLHFCQUFBO0VBQ0EsWUFBQTtBRExKOztBRTFDQTtFQUNFLGtCQUFBO0VBQ0EsVUFBQTtBRjZDRjs7QUdqREE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0NBQUE7QUNBQTs7Q0FBQTtBQ0FBOzs7Ozs7Ozs7Ozs7Ozs7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 */