@charset "UTF-8";
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
*/
.cmp-download > * {
  margin-bottom: 8px;
}
.cmp-download__action {
  --batcom-button-text: var(--batcom-color-button-primary-text);
  --batcom-button-text-hover: var(--batcom-color-button-primary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-primary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-primary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-primary-border);
  --batcom-button-border-hover: var(--batcom-color-button-primary-border-hover);
  --batcom-button-icon: var(--batcom-color-button-primary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-primary-text-hover);
  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-primary-text);
  --batcom-button-text-hover: var(--batcom-color-button-primary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-primary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-primary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-primary-border);
  --batcom-button-border-hover: var(--batcom-color-button-primary-border-hover);
}
@media only screen and (min-width: 1024px) {
  .cmp-download__action {
    --batcom-typography-button-size-mobile: var(--batcom-typography-button-size-desktop);
    --batcom-typography-button-line-height-mobile: var(--batcom-typography-button-line-height-desktop);
  }
}
.cmp-download__action span {
  color: var(--batcom-button-text);
}
@media (hover: hover) {
  .cmp-download__action: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 */
  }
  .cmp-download__action:hover span {
    color: var(--batcom-button-text-hover);
  }
  .cmp-download__action:hover .cmp-button__svg :is(svg, g, path) {
    fill: var(--batcom-button-icon-hover);
  }
}
.cmp-download__action__text + .cmp-button__svg {
  margin-left: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cmp-download__action__svg :is(svg, g, path) {
  fill: var(--batcom-button-icon);
  filter: none;
}
.cmp-download__action__svg svg {
  height: 16px;
}
.batcom-container--primary-dark .cmp-download__action, .batcom-container--secondary-dark .cmp-download__action, .batcom-container--tertiary-dark .cmp-download__action {
  --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-container--primary-dark .cmp-download__action .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark .cmp-download__action .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark .cmp-download__action .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-primary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-primary-text-hover-inverted);
}
.cmp-download__action-text {
  padding-right: 10px;
}
.cmp-download__action svg,
.cmp-download__action g,
.cmp-download__action path,
.cmp-download__action mask {
  stroke: currentColor;
  fill: none;
}
.cmp-download__action:hover svg,
.cmp-download__action:hover g,
.cmp-download__action:hover path,
.cmp-download__action:hover mask {
  stroke: currentColor;
  fill: none;
}
.cmp-download__properties {
  display: flex;
  margin-bottom: 16px;
}
.cmp-download__property-label {
  display: none;
}
.cmp-download__property-content {
  font-size: var(--batcom-typography-small-size-mobile);
  padding-right: 10px;
}
.cmp-download__property--date {
  display: none;
}
.cmp-download__property-size {
  display: none;
}
.cmp-download__description {
  /* 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
  */
}
.cmp-download__description 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;
  }
}
.cmp-download__description .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%;
}
.cmp-download__description .batcom--loading::before, .cmp-download__description .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;
}
.cmp-download__description .batcom--loading::before {
  animation-delay: 0.4s;
  left: -20px;
}
.cmp-download__description .batcom--loading::after {
  animation-delay: 1.2s;
  right: -20px;
}
.cmp-download__description .batcom-overlay__shorthand {
  position: relative;
  z-index: 0;
}
.cmp-download__description li {
  position: relative;
  padding: 4px 0 4px 23px;
  text-indent: -23px;
}
.cmp-download__description ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-block: 0 0;
}
.cmp-download__description ul li::marker {
  color: var(--batcom-color-miscellaneous-li-bullet);
}
.batcom-container--primary-dark .cmp-download__description ul li::marker, .batcom-container--secondary-dark .cmp-download__description ul li::marker {
  color: var(--batcom-color-miscellaneous-li-bullet-inverted);
}
.cmp-download__description ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-block: 0 0;
}
.cmp-download__description ol li::marker {
  color: var(--batcom-color-miscellaneous-li-number);
}
.batcom-container--primary-dark .cmp-download__description ol li::marker, .batcom-container--secondary-dark .cmp-download__description ol li::marker {
  color: var(--batcom-color-miscellaneous-li-number-inverted);
}
.cmp-download__description ol li ol li {
  text-indent: -18px;
}
.cmp-download__description ul:has(li .bullet-icon) {
  list-style-type: "→ ";
}
.cmp-download__title-link--key-documents, .cmp-download__description-text--key-documents {
  display: none;
}
/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL3NyYy9tYWluL2pjcl9yb290L2FwcHMvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLWRvd25sb2FkL2JhdGNvbS1kb3dubG9hZC5idW5kbGUuY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvYWJzdHJhY3RzL19ib2R5X25vc2Nyb2xsLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9hYnN0cmFjdHMvX2xvYWRpbmcuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fb3ZlcmxheV9zaG9ydGhhbmQuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Z1bmN0aW9ucy9fbm4tei1pbmRleC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19hcnJvdy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19jbGVhcmZpeC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19jb21wb25lbnQtbm9ybWFsaXplLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2ZvbnQuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9faGVhZGluZ3Muc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fdmlzaWJpbGl0eS5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19jb2x1bW5jb250cm9sLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX3JldmVyc2UtY29udGFpbmVyLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tZG93bmxvYWQvYmF0Y29tLWRvd25sb2FkLmNsaWVudGxpYnMuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fYnV0dG9ucy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19tZWRpYXF1ZXJpZXMuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvcHVibGlzaC90aGVtZS9nbG9iYWxzdHlsZXMvZ2xvYmFsLWxpc3QtZWxlbWVudHMtc3R5bGVzLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsZ0JBQWdCO0FDTWhCO0VBQ0UsZ0JBQUE7RUFDQSxlQUFBO0VBQ0EsUUFBQTtBREpGOztBRUNBO0VBQ0U7SUFDRSx1Q0FBQTtFRkVGO0VFQ0E7SUFDRSx1Q0FBQTtFRkNGO0VFRUE7SUFDRSx5QkFBQTtFRkFGO0FBQ0Y7QUVHQTtFQUNFLHFCQUFBO0VBQ0EsV0FBQTtFQUNBLFlBQUE7RUFDQSxrQkFBQTtFQUNBLHNCQUFBO0VBQ0Esc0NBQUE7RUFDQSxxQkFBQTtFQUNBLGtCQUFBO0FGREY7QUVHRTtFQUVFLGtCQUFBO0VBQ0EsV0FBQTtFQUNBLHFCQUFBO0VBQ0Esa0JBQUE7RUFDQSxXQUFBO0VBQ0EsWUFBQTtFQUNBLHlCQUFBO0VBQ0Esc0NBQUE7QUZGSjtBRUtFO0VBQ0UscUJBQUE7RUFDQSxXQUFBO0FGSEo7QUVNRTtFQUNFLHFCQUFBO0VBQ0EsWUFBQTtBRkpK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ZkY7QUU5ZUU7RUFFRSxrQkFBQTtFQUNBLFdBQUE7RUFDQSxxQkFBQTtFQUNBLGtCQUFBO0VBQ0EsV0FBQTtFQUNBLFlBQUE7RUFDQSx5QkFBQTtFQUNBLHNDQUFBO0FGK2VKO0FFNWVFO0VBQ0UscUJBQUE7RUFDQSxXQUFBO0FGOGVKO0FFM2VFO0VBQ0UscUJBQUE7RUFDQSxZQUFBO0FGNmVKO0FHNWhCQTtFQUNFLGtCQUFBO0VBQ0EsVUFBQTtBSDhoQkY7QWdCL2hCQTtFQUNFLGtCQUFBO0VBQ0EsdUJBQUE7RUFDQSxrQkFBQTtBaEJpaUJGO0FnQjdoQkE7RUFDRSxxQkFBQTtFQUNBLDJCQUFBO0VBQ0EsaUJBQUE7QWhCK2hCRjtBZ0I1aEJJO0VBQ0Usa0RBQUE7QWhCOGhCTjtBZ0I1aEJNO0VBRUUsMkRBQUE7QWhCNmhCUjtBZ0J0aEJBO0VBQ0Usd0JBQUE7RUFDQSwyQkFBQTtFQUNBLGlCQUFBO0FoQndoQkY7QWdCcmhCSTtFQUNFLGtEQUFBO0FoQnVoQk47QWdCcmhCTTtFQUVFLDJEQUFBO0FoQnNoQlI7QWdCbGhCSTtFQUNFLGtCQUFBO0FoQm9oQk47QWdCOWdCQTtFQUNFLHFCQUFBO0FoQmdoQkY7QWFsZ0JJO0VBQ0UsYUFBQTtBYm9nQk4iLCJmaWxlIjoiLi4vc3JjL21haW4vamNyX3Jvb3QvYXBwcy9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tZG93bmxvYWQvYmF0Y29tLWRvd25sb2FkLmJ1bmRsZS5jc3MifQ== */