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-container {
  --batcom-layout-container-padding: var(--batcom-layout-container-padding-mobile);
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .batcom-container {
    --batcom-layout-container-padding: var(--batcom-layout-container-padding-desktop);
  }
}
.batcom-container--primary-light {
  background-color: var(--batcom-color-container-primary-light-bg);
}
.batcom-container--primary-dark {
  background-color: var(--batcom-color-container-primary-dark-bg);
}
.batcom-container--secondary-light {
  background-color: var(--batcom-color-container-secondary-light-bg);
}
.batcom-container--secondary-dark {
  background-color: var(--batcom-color-container-secondary-dark-bg);
}
.batcom-container--tertiary-light {
  background-color: var(--batcom-color-container-tertiary-light-bg);
}
.batcom-container--tertiary-dark {
  background-color: var(--batcom-color-container-tertiary-dark-bg);
}
.batcom-container--white {
  background-color: #fff;
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--primary-light:where(:not(.batcom-container--background-full-page-width)) {
  padding: var(--batcom-layout-container-padding);
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--primary-dark:where(:not(.batcom-container--background-full-page-width)) {
  padding: var(--batcom-layout-container-padding);
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--secondary-light:where(:not(.batcom-container--background-full-page-width)) {
  padding: var(--batcom-layout-container-padding);
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--secondary-dark:where(:not(.batcom-container--background-full-page-width)) {
  padding: var(--batcom-layout-container-padding);
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--tertiary-light:where(:not(.batcom-container--background-full-page-width)) {
  padding: var(--batcom-layout-container-padding);
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--tertiary-dark:where(:not(.batcom-container--background-full-page-width)) {
  padding: var(--batcom-layout-container-padding);
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--background-full-page-width {
  padding: var(--batcom-layout-container-padding);
  margin-left: calc(-0.5 * var(--batcom-layout-content-left-right-margin));
  width: 100vw;
}
@media only screen and (min-width: 1024px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--background-full-page-width {
    margin-left: calc(50% - 50vw);
    padding: var(--batcom-layout-container-padding) calc(50vw - var(--batcom-layout-content-max-width) / 2);
  }
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--background-full-page-width:not(.batcom-container--noSpacing) > .cmp-container, .cmp-experiencefragment--header .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--background-full-page-width > .cmp-container {
    width: calc(100vw - var(--batcom-layout-content-left-right-margin) * 2);
    max-width: var(--batcom-layout-content-max-width);
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1023px) {
  .cmp-experiencefragment--header .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--background-full-page-width {
    padding-right: calc(0.5 * var(--batcom-layout-content-left-right-margin));
    padding-left: calc(0.5 * var(--batcom-layout-content-left-right-margin));
  }
  .blog-article .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--background-full-page-width .batcom-container--narrow-page-width {
    margin: calc(var(--batcom-layout-container-padding) * -1);
    width: 100vw;
  }
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--full-page-width {
  padding: var(--batcom-layout-container-padding);
  margin-left: calc(50% - 50vw);
  width: 100vw;
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--narrow-page-width {
  --batcom-layout-narrow-max-width: 883px;
}
@media only screen and (min-width: 1024px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--narrow-page-width {
    width: var(--batcom-layout-narrow-max-width);
    padding: 62px 107px;
    margin-left: calc(50% - var(--batcom-layout-narrow-max-width) * 0.5);
    margin-top: -200px;
  }
}
@media only screen and (max-width: 1023px) {
  .blog-article .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--narrow-page-width {
    width: calc(100% + var(--batcom-layout-content-left-right-margin));
    margin: calc(-0.5 * var(--batcom-layout-content-left-right-margin));
    padding: 0 var(--batcom-layout-container-padding);
  }
}
@media only screen and (max-width: 767px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noSpacing.batcom-container--full-page-width {
    padding-top: 0;
    padding-bottom: 0;
  }
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noSpacing:not(.batcom-container--full-page-width) {
    padding: 0;
  }
  .cmp-experiencefragment--header .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noSpacing {
    padding: 0 calc(0.5 * var(--batcom-layout-content-left-right-margin));
  }
}
@media only screen and (min-width: 768px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noSpacing {
    padding: 0;
  }
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noSpacing:not(.batcom-container--background-full-page-width) > .cmp-container {
  max-width: 100%;
  width: auto;
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noSpacing.batcom-sticky > .cmp-container {
  width: 100%;
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noVerticalSpacing {
  padding-top: 0;
  padding-bottom: 0;
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--moreVerticalSpacing {
  padding-top: var(--batcom-layout-container-top-padding);
}
@media only screen and (min-width: 768px) {
  .batcom-container--half-float.batcom-container {
    margin-top: calc(var(--batcom-layout-container-float-distance-tablet) * -1);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-container--half-float.batcom-container {
    margin-top: calc(var(--batcom-layout-container-float-distance-desktop) * -1);
  }
}
.batcom-container--titled {
  height: 370px;
}
@media only screen and (min-width: 768px) {
  .batcom-container--titled {
    height: 350px;
  }
}
.batcom-container--titled.batcom-rainbow-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 7px;
  width: 100%;
  display: block;
  background: linear-gradient(90deg, #0e2b63 30.479%, rgba(0, 0, 0, 0) 30.479%), linear-gradient(90deg, #004f9f 52.158%, rgba(0, 0, 0, 0) 52.158%), linear-gradient(90deg, #00b1eb 64.729%, rgba(0, 0, 0, 0) 64.729%), linear-gradient(90deg, #ef7d00 73.225%, rgba(0, 0, 0, 0) 73.225%), linear-gradient(90deg, #fb0 79.628%, rgba(0, 0, 0, 0) 79.629%), linear-gradient(90deg, #50af47 86.692%, rgba(0, 0, 0, 0) 86.692%), linear-gradient(90deg, #afca0b 92.03%, rgba(0, 0, 0, 0) 92.03%), linear-gradient(90deg, #5a328a 97.009%, rgba(0, 0, 0, 0) 97.009%), linear-gradient(90deg, #e72582 100%, rgba(0, 0, 0, 0) 100%);
}
.batcom-container--titled > .cmp-container {
  padding: 0 5.6vw;
  display: flex;
  height: 100%;
  align-items: flex-end;
}
@media only screen and (min-width: 768px) {
  .batcom-container--titled > .cmp-container {
    align-items: center;
  }
}
.batcom-container--titled > .cmp-container > .aem-Grid {
  margin: 55px 0 16px;
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky {
  position: fixed;
  z-index: 4;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky {
    inset: auto 0;
  }
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky-top {
  top: 0;
  height: var(--batcom-layout-container-sticky-height-top-mobile);
}
@media only screen and (min-width: 768px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky-top {
    height: var(--batcom-layout-container-sticky-height-top-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky-top {
    height: var(--batcom-layout-container-sticky-height-top-desktop);
  }
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky-bottom {
  bottom: 0;
  height: var(--batcom-layout-container-sticky-height-bottom-mobile);
}
@media only screen and (min-width: 768px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky-bottom {
    height: var(--batcom-layout-container-sticky-height-bottom-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky-bottom {
    height: var(--batcom-layout-container-sticky-height-bottom-desktop);
  }
}
.batcom-container--border-radius {
  border-radius: var(--batcom-layout-container-round-corners-border-radius);
  overflow: hidden;
}
.batcom-container--gradient-1 {
  background: var(--batcom-color-container-gradient-bg-1);
}
.batcom-container--gradient-2 {
  background: var(--batcom-color-container-gradient-bg-2);
}
.batcom-container--gradient-3 {
  background: var(--batcom-color-container-gradient-bg-3);
}
.batcom-container--children-inline > .cmp-container > .aem-Grid {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  padding: 5px 0;
  gap: 5px;
}

body:has(.batcom-sticky-top) {
  padding-top: var(--batcom-layout-container-sticky-height-top-mobile);
}
@media only screen and (min-width: 768px) {
  body:has(.batcom-sticky-top) {
    padding-top: var(--batcom-layout-container-sticky-height-top-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body:has(.batcom-sticky-top) {
    padding-top: var(--batcom-layout-container-sticky-height-top-desktop);
  }
}
body:has(.batcom-sticky-bottom) {
  padding-bottom: var(--batcom-layout-container-sticky-height-bottom-mobile);
}
@media only screen and (min-width: 768px) {
  body:has(.batcom-sticky-bottom) {
    padding-bottom: var(--batcom-layout-container-sticky-height-bottom-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body:has(.batcom-sticky-bottom) {
    padding-bottom: var(--batcom-layout-container-sticky-height-bottom-desktop);
  }
}
/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fYm9keV9ub3Njcm9sbC5zY3NzIiwiLi4vc3JjL21haW4vamNyX3Jvb3QvYXBwcy9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tY29udGFpbmVyL2JhdGNvbS1jb250YWluZXIuYnVuZGxlLmNzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fbG9hZGluZy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvYWJzdHJhY3RzL19vdmVybGF5X3Nob3J0aGFuZC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvZnVuY3Rpb25zL19ubi16LWluZGV4LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2Fycm93LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2NsZWFyZml4LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2NvbXBvbmVudC1ub3JtYWxpemUuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fZm9udC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19oZWFkaW5ncy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL192aXNpYmlsaXR5LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2NvbHVtbmNvbnRyb2wuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fcmV2ZXJzZS1jb250YWluZXIuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvcHVibGlzaC9jb21wb25lbnRzL2JhdGNvbS1jb250YWluZXIvYmF0Y29tLWNvbnRhaW5lci5jbGllbnRsaWJzLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX21lZGlhcXVlcmllcy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19ib3JkZXJzLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBTUE7RUFDRSxnQkFBQTtFQUNBLGVBQUE7RUFDQSxRQUFBO0FDTEY7O0FDRUE7RUFDRTtJQUNFLHVDQUFBO0VEQ0Y7RUNFQTtJQUNFLHVDQUFBO0VEQUY7RUNHQTtJQUNFLHlCQUFBO0VEREY7QUFDRjtBQ0lBO0VBQ0UscUJBQUE7RUFDQSxXQUFBO0VBQ0EsWUFBQTtFQUNBLGtCQUFBO0VBQ0Esc0JBQUE7RUFDQSxzQ0FBQTtFQUNBLHFCQUFBO0VBQ0Esa0JBQUE7QURGRjtBQ0lFO0VBRUUsa0JBQUE7RUFDQSxXQUFBO0VBQ0EscUJBQUE7RUFDQSxrQkFBQTtFQUNBLFdBQUE7RUFDQSxZQUFBO0VBQ0EseUJBQUE7RUFDQSxzQ0FBQTtBREhKO0FDTUU7RUFDRSxxQkFBQTtFQUNBLFdBQUE7QURKSjtBQ09FO0VBQ0UscUJBQUE7RUFDQSxZQUFBO0FETEo7O0FFMUNBO0VBQ0Usa0JBQUE7RUFDQSxVQUFBO0FGNkNGOztBR2pEQTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Q0FBQTtBQ0FBOztDQUFB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QUFDRjtBYTdWRTtFRGlJSTtJQVNJLG1FQUFBO0VadU5SO0FBQ0Y7QVlsTkU7RUFDRSx5RUFBQTtFQUNBLGdCQUFBO0Fab05KO0FZak5FO0VBQ0UsdURBQUE7QVptTko7QVloTkU7RUFDRSx1REFBQTtBWmtOSjtBWS9NRTtFQUNFLHVEQUFBO0FaaU5KO0FZNU1NO0VBQ0UsYUFBQTtFQUNBLHFCQUFBO0VBQ0EsdUJBQUE7RUFDQSxjQUFBO0VBQ0EsUUFBQTtBWjhNUjs7QVl0TUk7RUFDRSxvRUFBQTtBWnlNTjtBYS9ZRTtFRHFNRTtJQUlJLG9FQUFBO0VaME1OO0FBQ0Y7QWEvWEU7RURnTEU7SUFRSSxxRUFBQTtFWjJNTjtBQUNGO0FZcE5JO0VBQ0UsMEVBQUE7QVpzTk47QWE1WkU7RURxTUU7SUFJSSwwRUFBQTtFWnVOTjtBQUNGO0FhNVlFO0VEZ0xFO0lBUUksMkVBQUE7RVp3Tk47QUFDRiIsImZpbGUiOiIuLi9zcmMvbWFpbi9qY3Jfcm9vdC9hcHBzL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvcHVibGlzaC9jb21wb25lbnRzL2JhdGNvbS1jb250YWluZXIvYmF0Y29tLWNvbnRhaW5lci5idW5kbGUuY3NzIn0= */