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-text .h1-style {
  font-family: var(--batcom-typography-h1-family);
  font-size: var(--batcom-typography-h1-size-mobile);
  line-height: var(--batcom-typography-h1-line-height-mobile);
  word-break: break-word;
  color: var(--batcom-color-heading-h1);
  font-weight: var(--batcom-typography-h1-weight);
}
.batcom-text .h1-style span {
  font-family: var(--batcom-typography-h1-family);
  font-size: var(--batcom-typography-h1-size-mobile);
  line-height: var(--batcom-typography-h1-line-height-mobile);
  font-weight: var(--batcom-typography-h1-weight);
}
.batcom-text .h1-style a {
  font-family: var(--batcom-typography-h1-family);
  font-size: var(--batcom-typography-h1-size-mobile);
  line-height: var(--batcom-typography-h1-line-height-mobile);
  font-weight: var(--batcom-typography-h1-weight);
  text-decoration: none;
  color: var(--batcom-color-anchor-default);
}
.batcom-text .h1-style a:hover, .batcom-text .h1-style a:focus {
  color: var(--batcom-color-anchor-hover);
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .batcom-text .h1-style {
    --batcom-typography-h1-size-mobile: var(--batcom-typography-h1-size-tablet);
    --batcom-typography-h1-line-height-mobile: var(--batcom-typography-h1-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-text .h1-style {
    --batcom-typography-h1-size-mobile: var(--batcom-typography-h1-size-desktop);
    --batcom-typography-h1-line-height-mobile: var(--batcom-typography-h1-line-height-desktop);
  }
}
.batcom-container--primary-dark .batcom-text .h1-style, .batcom-container--secondary-dark .batcom-text .h1-style, .batcom-container--tertiary-dark .batcom-text .h1-style {
  color: var(--batcom-color-heading-h1-inverted);
}
.batcom-text .h2-style {
  font-family: var(--batcom-typography-h2-family);
  font-size: var(--batcom-typography-h2-size-mobile);
  line-height: var(--batcom-typography-h2-line-height-mobile);
  word-break: break-word;
  color: var(--batcom-color-heading-h2);
  font-weight: var(--batcom-typography-h2-weight);
}
.batcom-text .h2-style span {
  font-family: var(--batcom-typography-h2-family);
  font-size: var(--batcom-typography-h2-size-mobile);
  line-height: var(--batcom-typography-h2-line-height-mobile);
  font-weight: var(--batcom-typography-h2-weight);
}
.batcom-text .h2-style a {
  font-family: var(--batcom-typography-h2-family);
  font-size: var(--batcom-typography-h2-size-mobile);
  line-height: var(--batcom-typography-h2-line-height-mobile);
  font-weight: var(--batcom-typography-h2-weight);
  text-decoration: none;
  color: var(--batcom-color-anchor-default);
}
.batcom-text .h2-style a:hover, .batcom-text .h2-style a:focus {
  color: var(--batcom-color-anchor-hover);
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .batcom-text .h2-style {
    --batcom-typography-h2-size-mobile: var(--batcom-typography-h2-size-tablet);
    --batcom-typography-h2-line-height-mobile: var(--batcom-typography-h2-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-text .h2-style {
    --batcom-typography-h2-size-mobile: var(--batcom-typography-h2-size-desktop);
    --batcom-typography-h2-line-height-mobile: var(--batcom-typography-h2-line-height-desktop);
  }
}
.batcom-container--primary-dark .batcom-text .h2-style, .batcom-container--secondary-dark .batcom-text .h2-style, .batcom-container--tertiary-dark .batcom-text .h2-style {
  color: var(--batcom-color-heading-h2-inverted);
}
.batcom-text .h3-style {
  font-family: var(--batcom-typography-h3-family);
  font-size: var(--batcom-typography-h3-size-mobile);
  line-height: var(--batcom-typography-h3-line-height-mobile);
  word-break: break-word;
  color: var(--batcom-color-heading-h3);
  font-weight: var(--batcom-typography-h3-weight);
}
.batcom-text .h3-style span {
  font-family: var(--batcom-typography-h3-family);
  font-size: var(--batcom-typography-h3-size-mobile);
  line-height: var(--batcom-typography-h3-line-height-mobile);
  font-weight: var(--batcom-typography-h3-weight);
}
.batcom-text .h3-style a {
  font-family: var(--batcom-typography-h3-family);
  font-size: var(--batcom-typography-h3-size-mobile);
  line-height: var(--batcom-typography-h3-line-height-mobile);
  font-weight: var(--batcom-typography-h3-weight);
  text-decoration: none;
  color: var(--batcom-color-anchor-default);
}
.batcom-text .h3-style a:hover, .batcom-text .h3-style a:focus {
  color: var(--batcom-color-anchor-hover);
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .batcom-text .h3-style {
    --batcom-typography-h3-size-mobile: var(--batcom-typography-h3-size-tablet);
    --batcom-typography-h3-line-height-mobile: var(--batcom-typography-h3-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-text .h3-style {
    --batcom-typography-h3-size-mobile: var(--batcom-typography-h3-size-desktop);
    --batcom-typography-h3-line-height-mobile: var(--batcom-typography-h3-line-height-desktop);
  }
}
.batcom-container--primary-dark .batcom-text .h3-style, .batcom-container--secondary-dark .batcom-text .h3-style, .batcom-container--tertiary-dark .batcom-text .h3-style {
  color: var(--batcom-color-heading-h3-inverted);
}
.batcom-text .h4-style {
  font-family: var(--batcom-typography-h4-family);
  font-size: var(--batcom-typography-h4-size-mobile);
  line-height: var(--batcom-typography-h4-line-height-mobile);
  word-break: break-word;
  color: var(--batcom-color-heading-h4);
  font-weight: var(--batcom-typography-h4-weight);
}
.batcom-text .h4-style span {
  font-family: var(--batcom-typography-h4-family);
  font-size: var(--batcom-typography-h4-size-mobile);
  line-height: var(--batcom-typography-h4-line-height-mobile);
  font-weight: var(--batcom-typography-h4-weight);
}
.batcom-text .h4-style a {
  font-family: var(--batcom-typography-h4-family);
  font-size: var(--batcom-typography-h4-size-mobile);
  line-height: var(--batcom-typography-h4-line-height-mobile);
  font-weight: var(--batcom-typography-h4-weight);
  text-decoration: none;
  color: var(--batcom-color-anchor-default);
}
.batcom-text .h4-style a:hover, .batcom-text .h4-style a:focus {
  color: var(--batcom-color-anchor-hover);
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .batcom-text .h4-style {
    --batcom-typography-h4-size-mobile: var(--batcom-typography-h4-size-tablet);
    --batcom-typography-h4-line-height-mobile: var(--batcom-typography-h4-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-text .h4-style {
    --batcom-typography-h4-size-mobile: var(--batcom-typography-h4-size-desktop);
    --batcom-typography-h4-line-height-mobile: var(--batcom-typography-h4-line-height-desktop);
  }
}
.batcom-container--primary-dark .batcom-text .h4-style, .batcom-container--secondary-dark .batcom-text .h4-style, .batcom-container--tertiary-dark .batcom-text .h4-style {
  color: var(--batcom-color-heading-h4-inverted);
}
@media only screen and (max-width: 479px) {
  .batcom-text table thead {
    display: none;
  }
  .batcom-text table tr {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .batcom-text table tr th[data-header],
  .batcom-text table tr td[data-header] {
    display: flex;
    justify-content: space-between;
  }
  .batcom-text table tr th[data-header]::before,
  .batcom-text table tr td[data-header]::before {
    content: attr(data-header);
  }
}
.batcom-text-table-variant-1 table tr td {
  border: 1px solid #00557d;
  padding: 10px 16px;
  height: 100%;
}
.batcom-text-table-variant-1 table tr td p {
  font-size: 14px;
  line-height: 22px;
}
.batcom-text-table-variant-1 table tr td:nth-child(2) {
  border-left: none;
  display: flex;
  justify-content: flex-end;
}
.batcom-text-table-variant-1 table tr td:first-child {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  font-weight: 700;
  text-transform: uppercase;
  border-right: none;
}
.batcom-text-table-variant-1 table tr td:first-child span {
  white-space: nowrap;
}
.batcom-text-table-variant-1 table tr:first-child td:nth-child(2) {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 16px 16px 10px 0;
}
.batcom-text-table-variant-1 table tr:first-child td:nth-child(2) img {
  margin-bottom: 12px;
  margin-top: 4px;
}
.batcom-text-table-variant-1 table tr:not(:first-child) td {
  border-top: none;
}
@media only screen and (max-width: 767px) {
  .batcom-text-table-variant-1 table {
    width: 100%;
  }
  .batcom-text-table-variant-1 table tr {
    flex-direction: row;
    height: auto;
  }
  .batcom-text-table-variant-1 table tr td {
    height: auto;
    padding-top: 12px;
    padding-bottom: 10px;
  }
  .batcom-text-table-variant-1 table tr td:first-child {
    display: inline-flex;
    padding-right: 0;
  }
  .batcom-text-table-variant-1 table tr td:first-child span {
    display: inline-block;
    width: 145px;
    white-space: inherit;
  }
  .batcom-text-table-variant-1 table tr td:nth-child(2) {
    flex: 1;
    padding-left: 0;
  }
  .batcom-text-table-variant-1 table tr td:nth-child(2) p {
    font-size: 12px;
    line-height: 20px;
  }
  .batcom-text-table-variant-1 table tr:first-child td:nth-child(2) img {
    width: 52px;
    height: 18px;
    margin-top: 4px;
    margin-bottom: 8px;
  }
  .batcom-text-table-variant-1 table tr:nth-child(2) td:nth-child(2) img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right;
       object-position: right;
  }
}
.batcom-text thead th {
  vertical-align: top;
}
.batcom-text--image-right img {
  width: 100%;
  padding-bottom: var(--batcom-layout-text-image-padding-right-bottom);
}
@media only screen and (min-width: 480px) {
  .batcom-text--image-right img {
    padding-top: var(--batcom-layout-text-image-padding-right-top);
    padding-right: var(--batcom-layout-text-image-padding-right-right);
    padding-left: var(--batcom-layout-text-image-padding-right-left);
    width: auto;
    float: right;
  }
}
.batcom-text--image-left img {
  width: 100%;
  padding-bottom: var(--batcom-layout-text-image-padding-left-bottom);
}
@media only screen and (min-width: 480px) {
  .batcom-text--image-left img {
    padding-top: var(--batcom-layout-text-image-padding-left-top);
    padding-right: var(--batcom-layout-text-image-padding-left-right);
    padding-left: var(--batcom-layout-text-image-padding-left-left);
    width: auto;
    float: left;
  }
}
.batcom-text--with-margin .cmp-text > p {
  margin-bottom: var(--batcom-layout-text-bottom-margin);
}
.batcom-text--with-margin .cmp-text > :where(ul, ol) {
  margin-bottom: var(--batcom-layout-text-list-bottom-margin);
}
.batcom-text--with-margin .cmp-text > :where(h1, h2, h3, h4, h5, h6) {
  margin-bottom: var(--batcom-layout-text-title-bottom-margin);
}
.batcom-text--with-padding {
  padding: 15px 0;
}
@media only screen and (max-width: 767px) {
  .batcom-text--with-padding {
    padding: 24px;
  }
}
.batcom-text .bottom-margin {
  display: inline-block;
  margin-bottom: var(--batcom-layout-text-bottom-margin);
}
.batcom-text .quote {
  position: relative;
  padding-top: 28px;
  margin-top: 12px;
}
.batcom-text .quote, .batcom-text .quote-author {
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 7px;
  display: block;
}
.batcom-text .quote::after {
  content: "";
  height: 27px;
  width: 27px;
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/quote.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/quote.svg");
  background-color: var(--batcom-color-palette-1);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  position: absolute;
  top: -8px;
  left: 0;
}
.batcom-text .quote-author {
  margin-top: 5px;
}
@media only screen and (min-width: 480px) {
  .batcom-text .quote-author {
    font-size: var(--batcom-typography-x-x-small-size-desktop);
  }
}
.batcom-text .color-1 .quote::after {
  background-color: var(--batcom-color-palette-1);
}
.batcom-text .color-2 .quote::after {
  background-color: var(--batcom-color-palette-2);
}
.batcom-text .color-3 .quote::after {
  background-color: var(--batcom-color-palette-3);
}
.batcom-text .color-4 .quote::after {
  background-color: var(--batcom-color-palette-4);
}
.batcom-text .color-5 .quote::after {
  background-color: var(--batcom-color-palette-5);
}
.batcom-text .color-6 .quote::after {
  background-color: var(--batcom-color-palette-6);
}
.batcom-text .color-7 .quote::after {
  background-color: var(--batcom-color-palette-7);
}
.batcom-text .color-8 .quote::after {
  background-color: var(--batcom-color-palette-8);
}
.batcom-text .color-9 .quote::after {
  background-color: var(--batcom-color-palette-9);
}
.batcom-text--center-align {
  text-align: center;
}
.batcom-text.batcom-space--smallBottom {
  margin-bottom: var(--batcom-layout-spacing-bottom-small-desktop);
}
.batcom-text__heading-styles h1 {
  font-family: var(--batcom-font-face-2-name);
  font-size: 44px;
  font-weight: 700;
  line-height: 48px;
  color: #2b2b2b;
}
.batcom-text__heading-styles h1 span {
  font-size: 44px;
}
.batcom-text__heading-styles p {
  font-family: var(--batcom-font-face-3-name);
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  color: #2b2b2b;
}
.batcom-text--content-style {
  margin-top: 32px;
}
@media only screen and (max-width: 767px) {
  .batcom-text--content-style {
    padding: 0 20px;
  }
}
.batcom-text--content-style p {
  font-size: 40px;
  line-height: 48px;
  font-family: var(--batcom-font-face-1-name);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .batcom-text--content-style p {
    font-size: 34px;
    line-height: 34px;
  }
}
.batcom-text--content-style p .dorn-yellow-text {
  color: #fff200;
}
.cmp-navigation__mega-nav-desktop-flyout .batcom-text a {
  text-transform: none;
}
.batcom-text--faq-accordion {
  padding-bottom: 12px;
}
.batcom-text--faq-accordion .cmp-text {
  font-family: var(--batcom-font-face-1-name);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #5d5f63;
}
.batcom-text--faq-accordion .cmp-text b {
  font-family: var(--batcom-font-face-2-name);
  font-weight: 500;
  line-height: 22px;
  color: #2b2b2b;
  margin-bottom: 8px;
  display: inline-block;
}
.batcom-text--faq-accordion:not(:first-child) {
  padding-top: 12px;
  border-top: 1px solid #8f9296;
}
.batcom-text--faq-accordion:not(:last-child) {
  margin-bottom: 4px;
}
.batcom-text--vsue-pro-title {
  color: var(--batcom-color-body-text-inverted);
  font-family: var(--batcom-font-face-3-name, "Gotham-Bold");
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .batcom-text--vsue-pro-title {
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 0;
  }
}
.batcom-text--vsue-pro-title-light-text {
  font-weight: 400;
  font-family: var(--batcom-font-face-1-name, "Gotham-Book");
}
@media only screen and (max-width: 767px) {
  .batcom-text--vsue-pro-title-light-text {
    font-weight: 300;
    display: block;
  }
}
.batcom-text--vsue-pro-title-description {
  font-family: var(--batcom-font-face-1-name, "Gotham-Book");
  font-size: 24px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  margin: 8px 0 64px;
}
@media only screen and (max-width: 767px) {
  .batcom-text--vsue-pro-title-description {
    font-size: 16px;
    line-height: 22px;
    margin: 16px 0;
  }
}
.batcom-text--vsue-pro-title-description b {
  font-family: var(--batcom-font-face-3-name, "Gotham-Bold");
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .batcom-text--vsue-pro-title-description b {
    font-family: var(--batcom-font-face-2-name, "Gotham-Medium");
    font-weight: 500;
  }
}
.batcom-text--restricted-online p {
  background: #000;
  color: #fff;
  font-weight: 700;
  padding: 0 10px;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  margin: 10px 0;
}
.batcom-text--foot-note {
  font-size: 18px;
  color: var(--batcom-color-body-text-inverted);
  text-align: center;
  line-height: 22px;
  letter-spacing: 0;
  font-family: "Gotham-Medium", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .batcom-text--foot-note {
    font-size: 12px;
    line-height: 16px;
  }
}
.batcom-text--vuse-pro-disclaimer {
  color: var(--batcom-color-body-text-inverted);
  font-family: var(--batcom-font-face-1-name, "Gotham-Book");
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.5px;
}
@media only screen and (max-width: 767px) {
  .batcom-text--vuse-pro-disclaimer {
    font-size: 12px;
  }
}