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-document-list .batcom-document-list--press-release {
  text-align: center;
}
.batcom-document-list--press-release .batcom-document-list__documents {
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .batcom-document-list--press-release .batcom-document-list__documents {
    display: flex;
    flex-flow: row wrap;
    justify-content: left;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.batcom-document-list__document {
  position: relative;
}
.batcom-document-list--key-documents .batcom-document-list__document {
  border-top: solid 1px #0e2b63;
  padding-top: 8px;
}
.batcom-container--primary-dark .batcom-document-list--key-documents .batcom-document-list__document, .batcom-container--secondary-dark .batcom-document-list--key-documents .batcom-document-list__document {
  border-top: solid 1px #fff;
}
.batcom-document-list--press-release .batcom-document-list__document {
  transition: 0.3s;
  margin: 0 0 40px;
  min-height: 240px;
  background: #f3f4f7;
}
@media only screen and (min-width: 768px) {
  .batcom-document-list--press-release .batcom-document-list__document {
    flex: 0 1 calc(50% - 40px / 2);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-document-list--press-release .batcom-document-list__document {
    flex: 0 1 calc(33.33% - 40px * 2 / 3);
  }
}
.batcom-document-list--press-release .batcom-document-list__document:hover {
  background: #fff;
  box-shadow: 1px 5px 20px rgba(15, 43, 99, 0.2);
}
.batcom-document-list--key-documents .batcom-document-list__date, .batcom-document-list--key-documents .batcom-document-list__title {
  font-size: 0.75rem;
  line-height: 1.05rem;
  font-weight: 300;
  color: #0e2b63;
}
.batcom-container--primary-dark .batcom-document-list--key-documents .batcom-document-list__date, .batcom-container--secondary-dark .batcom-document-list--key-documents .batcom-document-list__date, .batcom-container--primary-dark .batcom-document-list--key-documents .batcom-document-list__title, .batcom-container--secondary-dark .batcom-document-list--key-documents .batcom-document-list__title {
  color: #fff;
}
.batcom-document-list--key-documents .batcom-document-list__date {
  position: absolute;
  right: 0;
  top: 8px;
}
[dir=rtl] .batcom-document-list--key-documents .batcom-document-list__date {
  right: auto;
  left: 0;
}
.batcom-document-list__date + .batcom-document-list__description:nth-child(2) {
  margin-top: 44px;
}
.batcom-document-list--press-release .batcom-document-list__date {
  display: block;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 24px;
}
.batcom-document-list__title-link {
  text-decoration: none;
  display: flex;
}
.batcom-document-list--key-documents .batcom-document-list__title {
  margin-bottom: 24px;
  max-width: calc(100% - 88px);
}
.batcom-document-list--press-release .batcom-document-list__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.1;
  word-break: break-word;
  color: #0e2b63;
  margin-bottom: 18px;
}
.batcom-document-list--key-documents .batcom-document-list__text {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 100;
  flex-grow: 1;
}
.batcom-document-list--press-release .batcom-document-list__action {
  padding: 40px;
  text-decoration: none;
  display: block;
  height: 100%;
}
.batcom-document-list--press-release .batcom-document-list__action:hover {
  text-decoration: none;
}
.batcom-document-list--press-release .batcom-document-list__action-text {
  position: absolute;
  bottom: 32px;
}
.batcom-document-list__cta {
  --batcom-button-text: var(--batcom-color-button-primary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-primary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-primary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-primary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-primary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-primary-border-hover-inverted);
  --batcom-button-icon: var(--batcom-color-button-primary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-primary-text-hover-inverted);
  display: inline-flex;
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
  font-family: var(--batcom-typography-button-family);
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: var(--batcom-layout-button-primary-border-radius);
  cursor: pointer;
  color: var(--batcom-button-text) !important; /* stylelint-disable-line */
  background-color: var(--batcom-button-bg);
  border: var(--batcom-layout-button-border-width) solid var(--batcom-button-border);
  text-decoration: none !important; /* stylelint-disable-line */
  padding: 8px 20px;
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-secondary-border);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover);
  --batcom-button-icon: var(--batcom-color-button-secondary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-secondary-border-radius);
}
@media only screen and (min-width: 1024px) {
  .batcom-document-list__cta {
    --batcom-typography-button-size-mobile: var(--batcom-typography-button-size-desktop);
    --batcom-typography-button-line-height-mobile: var(--batcom-typography-button-line-height-desktop);
  }
}
.batcom-document-list__cta span {
  color: var(--batcom-button-text);
}
@media (hover: hover) {
  .batcom-document-list__cta:hover {
    color: var(--batcom-button-text-hover) !important; /* stylelint-disable-line */
    background-color: var(--batcom-button-bg-hover);
    border: var(--batcom-layout-button-border-width) solid var(--batcom-button-border-hover);
    text-decoration: none !important; /* stylelint-disable-line */
  }
  .batcom-document-list__cta:hover span {
    color: var(--batcom-button-text-hover);
  }
  .batcom-document-list__cta:hover .cmp-button__svg :is(svg, g, path) {
    fill: var(--batcom-button-icon-hover);
  }
}
.batcom-document-list__cta__text + .cmp-button__svg {
  margin-left: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.batcom-document-list__cta__svg :is(svg, g, path) {
  fill: var(--batcom-button-icon);
  filter: none;
}
.batcom-document-list__cta__svg svg {
  height: 16px;
}
.batcom-container--primary-dark .batcom-document-list__cta, .batcom-container--secondary-dark .batcom-document-list__cta, .batcom-container--tertiary-dark .batcom-document-list__cta {
  --batcom-button-text: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-secondary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover-inverted);
}
.batcom-container--primary-dark .batcom-document-list__cta .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark .batcom-document-list__cta .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark .batcom-document-list__cta .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover-inverted);
}
.batcom-document-list--press-release .batcom-document-list__cta {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 700;
  margin: 0;
  transition: 0.3s;
}
.batcom-document-list--key-documents .batcom-document-list__description {
  margin-bottom: 40px;
}
.batcom-document-list__svg {
  color: #0e2b63;
  margin-inline-start: 8px;
}
.batcom-container--primary-dark .batcom-document-list__svg, .batcom-container--secondary-dark .batcom-document-list__svg {
  color: #fff;
}
.batcom-document-list svg {
  stroke: currentColor;
  fill: none;
  height: 24px;
  width: 24px;
}
/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fYm9keV9ub3Njcm9sbC5zY3NzIiwiLi4vc3JjL21haW4vamNyX3Jvb3QvYXBwcy9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tZG9jdW1lbnQtbGlzdC9iYXRjb20tZG9jdW1lbnQtbGlzdC5idW5kbGUuY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvYWJzdHJhY3RzL19sb2FkaW5nLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9hYnN0cmFjdHMvX292ZXJsYXlfc2hvcnRoYW5kLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9mdW5jdGlvbnMvX25uLXotaW5kZXguc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fYXJyb3cuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fY2xlYXJmaXguc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fY29tcG9uZW50LW5vcm1hbGl6ZS5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19mb250LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2hlYWRpbmdzLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX3Zpc2liaWxpdHkuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fY29sdW1uY29udHJvbC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19yZXZlcnNlLWNvbnRhaW5lci5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLWRvY3VtZW50LWxpc3QvYmF0Y29tLWRvY3VtZW50LWxpc3QuY2xpZW50bGlicy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19tZWRpYXF1ZXJpZXMuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fYnV0dG9ucy5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQU1BO0VBQ0UsZ0JBQUE7RUFDQSxlQUFBO0VBQ0EsUUFBQTtBQ0xGOztBQ0VBO0VBQ0U7SUFDRSx1Q0FBQTtFRENGO0VDRUE7SUFDRSx1Q0FBQTtFREFGO0VDR0E7SUFDRSx5QkFBQTtFRERGO0FBQ0Y7QUNJQTtFQUNFLHFCQUFBO0VBQ0EsV0FBQTtFQUNBLFlBQUE7RUFDQSxrQkFBQTtFQUNBLHNCQUFBO0VBQ0Esc0NBQUE7RUFDQSxxQkFBQTtFQUNBLGtCQUFBO0FERkY7QUNJRTtFQUVFLGtCQUFBO0VBQ0EsV0FBQTtFQUNBLHFCQUFBO0VBQ0Esa0JBQUE7RUFDQSxXQUFBO0VBQ0EsWUFBQTtFQUNBLHlCQUFBO0VBQ0Esc0NBQUE7QURISjtBQ01FO0VBQ0UscUJBQUE7RUFDQSxXQUFBO0FESko7QUNPRTtFQUNFLHFCQUFBO0VBQ0EsWUFBQTtBRExKOztBRTFDQTtFQUNFLGtCQUFBO0VBQ0EsVUFBQTtBRjZDRjs7QUdqREE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7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RSxZQUFBO0Fkb1NOO0FjL0xJO0VBR0Usd0VBQUE7RUFDQSxvRkFBQTtFQUNBLG9FQUFBO0VBQ0EsZ0ZBQUE7RUFDQSw0RUFBQTtFQUNBLHdGQUFBO0FkK0xOO0FjNUxRO0VBQ0Usd0VBQUE7RUFDQSxvRkFBQTtBZDhMVjtBWXhQSTtFQUNFLG1CQUFBO0VBQ0EsbUJBQUE7RUFDQSxnQkFBQTtFQUNBLFNBQUE7RUFDQSxnQkFBQTtBWjBQTjtBWXJQSTtFQUNFLG1CQUFBO0FadVBOO0FZblBFO0VBQ0UsY0FBQTtFQUNBLHdCQUFBO0FacVBKO0FZblBJO0VBRUUsV0FBQTtBWm9QTjtBWWhQRTtFQUNFLG9CQUFBO0VBQ0EsVUFBQTtFQUNBLFlBQUE7RUFDQSxXQUFBO0Faa1BKIiwiZmlsZSI6Ii4uL3NyYy9tYWluL2pjcl9yb290L2FwcHMvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLWRvY3VtZW50LWxpc3QvYmF0Y29tLWRvY3VtZW50LWxpc3QuYnVuZGxlLmNzcyJ9 */