@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
*/
.batcom-container--primary-dark .batcom-linklist, .batcom-container--secondary-dark .batcom-linklist {
  --batcom-color-link-list-item-link-arrow: var(--batcom-color-link-list-item-link-arrow-inverted);
}

.batcom-linklist--solid {
  padding-top: 20px;
}
@media only screen and (min-width: 768px) {
  .batcom-linklist--solid {
    padding: 40px 30px;
  }
}
.batcom-linklist--solid .batcom-linklist__title {
  margin-bottom: 36px;
}
.batcom-linklist--solid .batcom-linklist__item-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 25px 0;
}
@media only screen and (max-width: 479px) {
  .batcom-linklist--solid .batcom-linklist__item-link {
    padding: 18px 0;
  }
}
.batcom-linklist--solid .batcom-linklist__item-link::after {
  content: "";
  height: 18px;
  width: 9px;
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-right-rounded.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-right-rounded.svg");
  background-color: var(--batcom-color-link-list-item-link-arrow);
}
.batcom-linklist--solid .batcom-linklist__item-title {
  max-width: calc(100% - 18px);
}
.batcom-linklist--solid .batcom-linklist__wrapper-item::after, .batcom-linklist--solid .batcom-linklist__wrapper-item:first-child::before {
  content: "";
  width: 100%;
  height: 1px;
  opacity: 0.3;
  background-color: var(--batcom-color-link-list-text);
}
@media only screen and (min-width: 768px) {
  .batcom-linklist--solid .batcom-linklist__wrapper-item {
    flex-direction: column;
  }
}

.batcom-linklist--directory .batcom-linklist {
  display: flex;
}
.batcom-linklist--directory .batcom-linklist__title {
  flex: 0 0 35px;
  padding-top: 4px;
  font-size: 1.2rem;
  font-weight: 300;
}
.batcom-linklist--directory .batcom-linklist__wrapper-item {
  align-items: baseline;
  flex-direction: row;
}
.columncontrol__column .batcom-linklist--directory .batcom-linklist__wrapper-item {
  flex-direction: initial;
}
.batcom-linklist--directory .batcom-linklist__wrapper-item:not(:last-child) {
  margin-bottom: 1.1rem;
}
.batcom-linklist--directory .batcom-linklist__wrapper-item::before {
  content: "";
  width: 16px;
  margin-inline-end: 6.4px;
  padding-top: 1rem;
  -webkit-mask: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-black.svg") center bottom/contain no-repeat;
          mask: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-black.svg") center bottom/contain no-repeat;
  background-color: var(--batcom-color-link-list-item-link-arrow);
  display: inline-flex;
  flex-shrink: 0;
}
.batcom-linklist--directory .batcom-linklist__item-link:active, .batcom-linklist--directory .batcom-linklist__item-link:focus, .batcom-linklist--directory .batcom-linklist__item-link:hover, .batcom-linklist--directory .batcom-linklist__item-link:visited {
  color: var(--batcom-color-link-list-item-link);
  text-decoration: none;
}
.batcom-linklist--directory .batcom-linklist__item-title {
  font-size: 0.85rem;
  font-weight: 300;
}

.batcom-linklist.batcom-linklist__side-navigation {
  font-family: var(--batcom-font-face-4-name), serif;
  color: var(--batcom-color-link-list-side-navigation-item-link);
}
@media only screen and (min-width: 1024px) {
  .batcom-linklist.batcom-linklist__side-navigation {
    margin: 48px 24px 48px 0;
  }
}
@media only screen and (max-width: 1023px) {
  .batcom-linklist.batcom-linklist__side-navigation {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-bottom: 0;
  }
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title {
  align-items: center;
  display: flex;
  font-size: var(--batcom-typography-x-small-size-mobile);
  margin-left: 0;
  min-height: 60px;
  position: relative;
  padding: 18px calc(0.5 * var(--batcom-layout-content-left-right-margin));
  line-height: var(--batcom-typography-body-size-mobile);
  color: var(--batcom-color-link-list-side-navigation-title);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title {
    padding: 18px calc(var(--batcom-layout-content-left-right-margin));
  }
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title::before, .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title::after {
  background: var(--batcom-color-link-list-side-navigation-menu-expand-icon);
  height: 16px;
  right: calc(0.5 * var(--batcom-layout-content-left-right-margin) + 8px);
  border-radius: 2px;
  width: 2px;
  content: "";
  position: absolute;
  top: 50%;
  transition: transform 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title::before, .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title::after {
    right: calc((var(--batcom-layout-content-left-right-margin)) + 8px);
  }
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title::before {
  transform: translateY(-50%);
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title::after {
  transform: translateY(-50%) rotate(90deg);
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title:has(+ .batcom-linklist__wrapper--visible) {
  background: var(--batcom-color-link-list-side-navigation-link-bg-active);
  color: var(--batcom-color-link-list-side-navigation-title-inverted);
  border-top: 2px solid var(--batcom-color-link-list-side-navigation-item-link-active);
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title:has(+ .batcom-linklist__wrapper--visible)::before {
  background: var(--batcom-color-link-list-side-navigation-item-link-active);
  transform: translateY(-50%) rotate(90deg);
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title:has(+ .batcom-linklist__wrapper--visible)::after {
  background: var(--batcom-color-link-list-side-navigation-item-link-active);
}
@media only screen and (min-width: 1024px) {
  .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__title {
    display: none;
  }
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper {
    display: block;
  }
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper--visible {
  display: block;
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item {
  justify-content: center;
  margin-bottom: 0;
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item:not(:first-child) .batcom-linklist__item-link-wrapper {
  border-top: 1px solid var(--batcom-color-link-list-side-navigation-separator);
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item--selected {
  align-items: flex-start;
  display: flex;
  position: relative;
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item--selected .batcom-linklist__item-link {
  padding-left: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item--selected .batcom-linklist__item-link {
    padding-left: 64px;
  }
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item--selected div.batcom-linklist__item-link-wrapper {
  border: 0 !important; /* stylelint-disable-line */
  background: var(--batcom-color-link-list-side-navigation-link-bg-active);
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item--selected .batcom-linklist__item-title {
  color: var(--batcom-color-link-list-side-navigation-item-link-active);
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item--selected::after {
  background-color: var(--batcom-color-link-list-side-navigation-item-link-active);
  content: "";
  height: 12px;
  left: 24px;
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-right.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-right.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item--selected::after {
    left: 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item--selected::after {
    left: 16px;
  }
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__wrapper-item:last-child .batcom-linklist__item-link-wrapper {
  border-bottom: none;
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link-wrapper {
  align-items: stretch;
  align-self: stretch;
  background: transparent;
  transition: background 160ms ease-out;
  margin: 0 8px;
}
@media only screen and (min-width: 1024px) {
  .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link-wrapper {
    width: 100%;
    margin: 0;
  }
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link-wrapper:hover {
  background: rgba(147, 164, 188, 0.0784313725);
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link-wrapper:active {
  background: rgba(147, 164, 188, 0.2392156863);
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link {
  align-items: center;
  color: var(--batcom-color-link-list-side-navigation-item-link);
  display: flex;
  font-size: var(--batcom-typography-x-small-size-mobile);
  min-height: 48px;
  font-family: var(--batcom-font-face-4-name), serif;
  line-height: var(--batcom-typography-body-size-mobile);
  padding: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link {
    padding: 12px 34px;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link {
    min-height: 60px;
    padding: 18px 16px;
  }
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link:focus-visible {
  border-radius: 8px;
  outline: 2px solid var(--batcom-color-link-list-side-navigation-item-link);
  outline-offset: 4px;
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link:active {
  outline: 0;
  border-radius: 0;
}
.batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link:hover, .batcom-linklist.batcom-linklist__side-navigation .batcom-linklist__item-link:visited {
  text-decoration: none;
}

.columncontrol__base.columncontrol__grid--lt2 .columncontrol__column--lt2:has(.batcom-linklist__side-navigation) {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .columncontrol__base.columncontrol__grid--lt2 .columncontrol__column--lt2:has(.batcom-linklist__side-navigation) {
    width: calc((100% - 2 * var(--batcom-layout-column-control-gutter)) / 4);
  }
}
.columncontrol__base.columncontrol__grid--lt2 .columncontrol__column--lt2:has(.batcom-linklist__side-navigation) + .columncontrol__column--lt2 {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .columncontrol__base.columncontrol__grid--lt2 .columncontrol__column--lt2:has(.batcom-linklist__side-navigation) + .columncontrol__column--lt2 {
    padding-left: 87px;
    width: calc(100% - (100% - 2 * var(--batcom-layout-column-control-gutter)) / 4 - var(--batcom-layout-column-control-gutter));
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .columncontrol__wrapper:has(.batcom-linklist__side-navigation) {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .columncontrol--home .columncontrol__column--lt2:nth-child(1) .batcom-cc-container:has(.batcom-linklist__side-navigation)::before {
    right: -44px;
  }
}

.columncontrol--home .columncontrol__column--lt2 .batcom-cc-container:has(.batcom-linklist__side-navigation)::before {
  background-color: var(--batcom-color-link-list-side-navigation-bg);
  border-top: 2px solid var(--batcom-color-link-list-side-navigation-item-link-active);
}

@media only screen and (max-width: 1023px) {
  .columncontrol--home .columncontrol__column--lt2 .batcom-cc-container:has(.batcom-linklist__side-navigation)::before {
    border-bottom: 1px solid var(--batcom-color-link-list-side-navigation-item-link-active);
  }
}
.batcom-container--primary-dark .batcom-linklist, .batcom-container--secondary-dark .batcom-linklist {
  --batcom-color-link-list-item-link: var(--batcom-color-link-list-item-link-inverted);
  --batcom-color-link-list-item-link-hover: var(--batcom-color-link-list-item-link-hover-inverted);
  --batcom-color-link-list-text: var(--batcom-color-link-list-text-inverted);
  --batcom-color-link-list-title: var(--batcom-color-link-list-title-inverted);
}
.batcom-linklist.batcom-linklist--horizontal {
  margin-bottom: 0;
  padding: 20px 0 30px;
}
.batcom-linklist .batcom-linklist__title {
  color: var(--batcom-color-link-list-title);
}
.batcom-linklist__wrapper {
  list-style-type: none;
  padding-left: 0;
}
.batcom-linklist--horizontal .batcom-linklist__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
  justify-content: center;
}
.batcom-linklist__wrapper-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 6px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .batcom-linklist__wrapper-item {
    flex-direction: row;
  }
  .columncontrol__column .batcom-linklist__wrapper-item {
    flex-direction: column;
  }
}
.batcom-linklist--horizontal .batcom-linklist__wrapper-item {
  margin: 7px 10px;
  width: auto;
}
.batcom-linklist__item-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
  */
  color: var(--batcom-color-link-list-text);
  font-size: 18px;
  margin-bottom: 18px;
}
.batcom-linklist__item-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;
  }
}
.batcom-linklist__item-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%;
}
.batcom-linklist__item-description .batcom--loading::before, .batcom-linklist__item-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;
}
.batcom-linklist__item-description .batcom--loading::before {
  animation-delay: 0.4s;
  left: -20px;
}
.batcom-linklist__item-description .batcom--loading::after {
  animation-delay: 1.2s;
  right: -20px;
}
.batcom-linklist__item-description .batcom-overlay__shorthand {
  position: relative;
  z-index: 0;
}
.batcom-linklist__item-description li {
  position: relative;
  padding: 4px 0 4px 23px;
  text-indent: -23px;
}
.batcom-linklist__item-description ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-block: 0 0;
}
.batcom-linklist__item-description ul li::marker {
  color: var(--batcom-color-miscellaneous-li-bullet);
}
.batcom-container--primary-dark .batcom-linklist__item-description ul li::marker, .batcom-container--secondary-dark .batcom-linklist__item-description ul li::marker {
  color: var(--batcom-color-miscellaneous-li-bullet-inverted);
}
.batcom-linklist__item-description ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-block: 0 0;
}
.batcom-linklist__item-description ol li::marker {
  color: var(--batcom-color-miscellaneous-li-number);
}
.batcom-container--primary-dark .batcom-linklist__item-description ol li::marker, .batcom-container--secondary-dark .batcom-linklist__item-description ol li::marker {
  color: var(--batcom-color-miscellaneous-li-number-inverted);
}
.batcom-linklist__item-description ol li ol li {
  text-indent: -18px;
}
.batcom-linklist__item-description ul:has(li .bullet-icon) {
  list-style-type: "→ ";
}
.batcom-linklist__item-link {
  color: var(--batcom-color-link-list-item-link);
  line-height: 2.5rem;
  text-decoration: none;
}
.batcom-linklist__item-link::before {
  display: none;
}
.batcom-linklist__item-link:hover, .batcom-linklist__item-link:visited {
  color: var(--batcom-color-link-list-item-link-hover);
}
.batcom-linklist__item-date {
  color: var(--batcom-color-link-list-text);
  display: flex;
  margin-bottom: 24px;
  margin-right: 5px;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.columncontrol__column .batcom-linklist__item-date {
  margin-bottom: 10px;
}
@media only screen and (max-width: 479px) {
  .batcom-linklist__item-date {
    margin-bottom: 10px;
  }
}
.batcom-linklist__item-link-wrapper {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
.batcom-linklist__description {
  color: var(--batcom-color-link-list-text);
  margin-bottom: 18px;
}
/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL3NyYy9tYWluL2pjcl9yb290L2FwcHMvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLWxpbmtsaXN0L2JhdGNvbS1saW5rbGlzdC5idW5kbGUuY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvYWJzdHJhY3RzL19ib2R5X25vc2Nyb2xsLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9hYnN0cmFjdHMvX2xvYWRpbmcuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fb3ZlcmxheV9zaG9ydGhhbmQuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Z1bmN0aW9ucy9fbm4tei1pbmRleC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19hcnJvdy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19jbGVhcmZpeC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19jb21wb25lbnQtbm9ybWFsaXplLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2ZvbnQuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9faGVhZGluZ3Muc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fdmlzaWJpbGl0eS5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19jb2x1bW5jb250cm9sLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX3JldmVyc2UtY29udGFpbmVyLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tbGlua2xpc3QvX2xpbmtsaXN0LXNvbGlkLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX21lZGlhcXVlcmllcy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19zZXBhcmF0b3Iuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvcHVibGlzaC9jb21wb25lbnRzL2JhdGNvbS1saW5rbGlzdC9fbGlua2xpc3QtZGlyZWN0b3J5LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tbGlua2xpc3QvX3NpZGUtbmF2aWdhdGlvbi5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLWxpbmtsaXN0L2JhdGNvbS1saW5rbGlzdC5jbGllbnRsaWJzLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvdGhlbWUvZ2xvYmFsc3R5bGVzL2dsb2JhbC1saXN0LWVsZW1lbnRzLXN0eWxlcy5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGdCQUFnQjtBQ01oQjtFQUNFLGdCQUFBO0VBQ0EsZUFBQTtFQUNBLFFBQUE7QURKRjs7QUVDQTtFQUNFO0lBQ0UsdUNBQUE7RUZFRjtFRUNBO0lBQ0UsdUNB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eEJNO0VBRUUsMkRBQUE7QW5CbXhCUjtBbUI1d0JBO0VBQ0Usd0JBQUE7RUFDQSwyQkFBQTtFQUNBLGlCQUFBO0FuQjh3QkY7QW1CM3dCSTtFQUNFLGtEQUFBO0FuQjZ3Qk47QW1CM3dCTTtFQUVFLDJEQUFBO0FuQjR3QlI7QW1CeHdCSTtFQUNFLGtCQUFBO0FuQjB3Qk47QW1CcHdCQTtFQUNFLHFCQUFBO0FuQnN3QkY7QWtCeHZCSTtFQUNFLDhDQUFBO0VBQ0EsbUJBQUE7RUFDQSxxQkFBQTtBbEIwdkJOO0FrQnh2Qk07RUFDRSxhQUFBO0FsQjB2QlI7QWtCdnZCTTtFQUVFLG9EQUFBO0FsQnd2QlI7QWtCcHZCSTtFQUNFLHlDQUFBO0VBQ0EsYUFBQTtFQUNBLG1CQUFBO0VBQ0EsaUJBQUE7RUFDQSwyQkFBQTtFQUFBLHNCQUFBO0FsQnN2Qk47QWtCcHZCTTtFQUNFLG1CQUFBO0FsQnN2QlI7QWN0ekJFO0VJd0RFO0lBWUksbUJBQUE7RWxCc3ZCTjtBQUNGO0FrQm52Qkk7RUFDRSx1QkFBQTtFQUNBLGFBQUE7RUFDQSxzQkFBQTtBbEJxdkJOO0FrQmp2QkU7RUFDRSx5Q0FBQTtFQUNBLG1CQUFBO0FsQm12QkoiLCJmaWxlIjoiLi4vc3JjL21haW4vamNyX3Jvb3QvYXBwcy9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tbGlua2xpc3QvYmF0Y29tLWxpbmtsaXN0LmJ1bmRsZS5jc3MifQ== */