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-text-image .batcom-image {
  margin: 0;
}
.batcom-text-image__title {
  margin-bottom: var(--batcom-layout-text-bottom-margin);
}
.batcom-text-image:not(.text-image--alignMiddle) .cmp-image__image {
  width: 33.33%;
}
.batcom-text-image .cmp-image__image {
  margin: 0 0 var(--batcom-layout-textimage-image-padding-mobile, 20px) 0;
}
@media only screen and (min-width: 1024px) {
  .batcom-text-image .cmp-image__image {
    margin-bottom: var(--batcom-layout-textimage-image-padding-desktop, 20px);
  }
}
.batcom-text-image.text-image--alignBefore .cmp-image__image {
  margin-inline-end: auto;
}
.batcom-text-image.text-image--alignCenter .cmp-image__image {
  margin-left: auto;
  margin-right: auto;
}
.batcom-text-image.text-image--alignAfter .cmp-image__image {
  margin-inline-start: auto;
}
.batcom-text-image.text-image--alignMiddle .cmp-image__image {
  margin: 0;
  padding: 0 var(--batcom-layout-textimage-image-padding-mobile, 20px) 0 0;
}
@media only screen and (min-width: 1024px) {
  .batcom-text-image.text-image--alignMiddle .cmp-image__image {
    padding-inline-end: var(--batcom-layout-textimage-image-padding-desktop, 20px);
  }
}
.batcom-text-image.text-image--alignMiddle .batcom-text-image--wrapper {
  display: flex;
  align-items: center;
}
.batcom-text-image.text-image--alignMiddle .batcom-image {
  flex-basis: 33.33%;
}
.batcom-text-image.text-image--alignMiddle .batcom-text {
  flex-basis: 66.66%;
}
.batcom-text-image.text-image--alignMiddle.text-image--alignAfter .batcom-text-image--wrapper {
  flex-direction: row-reverse;
}
.batcom-text-image.text-image--alignMiddle.text-image--alignAfter .cmp-image__image {
  padding: 0 0 0 var(--batcom-layout-textimage-image-padding-mobile, 20px);
}
@media only screen and (min-width: 1024px) {
  .batcom-text-image.text-image--alignMiddle.text-image--alignAfter .cmp-image__image {
    padding-inline-start: var(--batcom-layout-textimage-image-padding-desktop, 20px);
  }
}
.batcom-text-image.text-image--alignBottom .cmp-image__image {
  margin-bottom: 0;
  margin-top: var(--batcom-layout-textimage-image-padding-mobile, 20px);
}
@media only screen and (min-width: 1024px) {
  .batcom-text-image.text-image--alignBottom .cmp-image__image {
    margin-top: var(--batcom-layout-textimage-image-padding-desktop, 20px);
  }
}
.batcom-text-image .batcom-text-image--wrapped .cmp-image__image {
  float: left;
  margin: 0 var(--batcom-layout-textimage-image-padding-mobile, 20px) var(--batcom-layout-textimage-image-padding-mobile, 20px) 0;
}
@media only screen and (min-width: 1024px) {
  .batcom-text-image .batcom-text-image--wrapped .cmp-image__image {
    margin: 0 var(--batcom-layout-textimage-image-padding-desktop, 20px) var(--batcom-layout-textimage-image-padding-desktop, 20px) 0;
  }
}
.batcom-text-image.text-image--alignAfter .batcom-text-image--wrapped .cmp-image__image {
  float: right;
  margin: 0 0 var(--batcom-layout-textimage-image-padding-mobile, 20px) var(--batcom-layout-textimage-image-padding-mobile, 20px);
}
@media only screen and (min-width: 1024px) {
  .batcom-text-image.text-image--alignAfter .batcom-text-image--wrapped .cmp-image__image {
    margin: 0 0 var(--batcom-layout-textimage-image-padding-desktop, 20px) var(--batcom-layout-textimage-image-padding-desktop, 20px);
  }
}
.batcom-text-image.text-image--alignBottom .batcom-text-image--wrapped p > img {
  padding: 0;
  float: left;
  margin: var(--batcom-layout-textimage-image-padding-mobile, 20px) var(--batcom-layout-textimage-image-padding-mobile, 20px) 0 0;
}
@media only screen and (min-width: 1024px) {
  .batcom-text-image.text-image--alignBottom .batcom-text-image--wrapped p > img {
    margin: var(--batcom-layout-textimage-image-padding-desktop, 20px) var(--batcom-layout-textimage-image-padding-desktop, 20px) 0 0;
  }
}
.batcom-text-image.text-image--alignBottom.text-image--alignAfter .batcom-text-image--wrapped p > img {
  float: right;
  margin: var(--batcom-layout-textimage-image-padding-mobile, 20px) 0 0 var(--batcom-layout-textimage-image-padding-mobile, 20px);
}
@media only screen and (min-width: 1024px) {
  .batcom-text-image.text-image--alignBottom.text-image--alignAfter .batcom-text-image--wrapped p > img {
    margin: var(--batcom-layout-textimage-image-padding-desktop, 20px) 0 0 var(--batcom-layout-textimage-image-padding-desktop, 20px);
  }
}
/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fYm9keV9ub3Njcm9sbC5zY3NzIiwiLi4vc3JjL21haW4vamNyX3Jvb3QvYXBwcy9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tdGV4dC1pbWFnZS9iYXRjb20tdGV4dC1pbWFnZS5idW5kbGUuY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvYWJzdHJhY3RzL19sb2FkaW5nLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9hYnN0cmFjdHMvX292ZXJsYXlfc2hvcnRoYW5kLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9mdW5jdGlvbnMvX25uLXotaW5kZXguc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fYXJyb3cuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fY2xlYXJmaXguc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fY29tcG9uZW50LW5vcm1hbGl6ZS5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19mb250LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2hlYWRpbmdzLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX3Zpc2liaWxpdHkuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fY29sdW1uY29udHJvbC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19yZXZlcnNlLWNvbnRhaW5lci5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLXRleHQtaW1hZ2UvYmF0Y29tLXRleHQtaW1hZ2UuY2xpZW50bGlicy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19tZWRpYXF1ZXJpZXMuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFNQTtFQUNFLGdCQUFBO0VBQ0EsZUFBQTtFQUNBLFFBQUE7QUNMRjs7QUNFQTtFQUNFO0lBQ0UsdUNBQUE7RURDRjtFQ0VBO0lBQ0UsdUNBQUE7RURBRjtFQ0dBO0lBQ0UseUJBQUE7RURERjtBQUNGO0FDSUE7RUFDRSxxQkFBQTtFQUNBLFdBQUE7RUFDQSxZQUFBO0VBQ0Esa0JBQUE7RUFDQSxzQkFBQTtFQUNBLHNDQUFBO0VBQ0EscUJBQUE7RUFDQSxrQkFBQTtBREZGO0FDSUU7RUFFRSxrQkFBQTtFQUNBLFdBQUE7RUFDQSxxQkFBQTtFQUNBLGtCQUFBO0VBQ0EsV0FBQTtFQUNBLFlBQUE7RUFDQSx5QkFBQTtFQUNBLHNDQUFBO0FESEo7QUNNRTtFQUNFLHFCQUFBO0VBQ0EsV0FBQTtBREpKO0FDT0U7RUFDRSxxQkFBQTtFQUNBLFlBQUE7QURMSjs7QUUxQ0E7RUFDRSxrQkFBQTtFQUNBLFVBQUE7QUY2Q0Y7O0FHakRBOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztDQUFBO0FDQUE7O0NBQUE7QUNBQTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztDQUFBO0FDQUE7Ozs7Ozs7Q0FBQTtBQ0FBLHdDQUFBO0FBQ0EsMERBQUE7QUFFQTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztDQUFBO0FDSEE7Ozs7Ozs7O0NBQUE7QUNBQTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztDQUFBO0FDQUE7Ozs7Ozs7Ozs7Q0FBQTtBQ0NBOztDQUFBO0FDR0U7RUFDRSxTQUFBO0FacU5KO0FZbE5FO0VBQ0Usc0RBQUE7QVpvTko7QVlqTkU7RUFDRSxhQUFBO0FabU5KO0FZaE5FO0VBQ0UsdUVBQUE7QVprTko7QWExSkU7RUR6REE7SUFJSSx5RUFBQTtFWm1OSjtBQUNGO0FZL01JO0VBQ0UsdUJBQUE7QVppTk47QVk1TUk7RUFDRSxpQkFBQTtFQUNBLGtCQUFBO0FaOE1OO0FZek1JO0VBQ0UseUJBQUE7QVoyTU47QVl0TUk7RUFDRSxTQUFBO0VBQ0Esd0VBQUE7QVp3TU47QWE3S0U7RUQ3QkU7SUFLSSw4RUFBQTtFWnlNTjtBQUNGO0FZdE1JO0VBQ0UsYUFBQTtFQUNBLG1CQUFBO0Fad01OO0FZck1JO0VBQ0Usa0JBQUE7QVp1TU47QVlwTUk7RUFDRSxrQkFBQTtBWnNNTjtBWWxNTTtFQUNFLDJCQUFBO0Fab01SO0FZak1NO0VBQ0Usd0VBQUE7QVptTVI7QWFsTUU7RURGSTtJQUlJLGdGQUFBO0Vab01SO0FBQ0Y7QVk5TEk7RUFDRSxnQkFBQTtFQUNBLHFFQUFBO0FaZ01OO0FhM01FO0VEU0U7SUFLSSxzRUFBQTtFWmlNTjtBQUNGO0FZNUxJO0VBQ0UsV0FBQTtFQUNBLCtIQUFBO0FaOExOO0FhcE5FO0VEb0JFO0lBS0ksaUlBQUE7RVorTE47QUFDRjtBWXpMTTtFQUNFLFlBQUE7RUFDQSwrSEFBQTtBWjJMUjtBYTdORTtFRGdDSTtJQUtJLGlJQUFBO0VaNExSO0FBQ0Y7QVlyTE07RUFDRSxVQUFBO0VBQ0EsV0FBQTtFQUNBLCtIQUFBO0FadUxSO0Fhdk9FO0VENkNJO0lBTUksaUlBQUE7RVp3TFI7QUFDRjtBWWxMUTtFQUNFLFlBQUE7RUFDQSwrSEFBQTtBWm9MVjtBYWhQRTtFRDBETTtJQUtJLGlJQUFBO0VacUxWO0FBQ0YiLCJmaWxlIjoiLi4vc3JjL21haW4vamNyX3Jvb3QvYXBwcy9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tdGV4dC1pbWFnZS9iYXRjb20tdGV4dC1pbWFnZS5idW5kbGUuY3NzIn0= */