@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-shareprice {
  color: var(--batcom-color-link-list-text);
}
.batcom-container--primary-dark .batcom-shareprice, .batcom-container--secondary-dark .batcom-shareprice {
  --batcom-color-link-list-text: var(--batcom-color-link-list-text-inverted);
}
.batcom-shareprice__currency {
  font-size: var(--batcom-typography-h2-size-mobile);
  white-space: pre;
}
.batcom-shareprice__datetime {
  font-size: var(--batcom-typography-x-small-size-mobile);
  font-weight: 300;
  line-height: 2;
}

.batcom-shareprice--footer .batcom-shareprice__market, .batcom-shareprice--footer .batcom-shareprice__change, .batcom-shareprice--footer .batcom-shareprice__price {
  margin-bottom: 24px;
  font-size: var(--batcom-typography-h4-size-mobile);
  line-height: 1.1;
}
.batcom-shareprice--footer .batcom-shareprice__change, .batcom-shareprice--footer .batcom-shareprice__market {
  font-weight: 500;
}
.batcom-shareprice--footer .batcom-shareprice__price {
  font-size: 2.25rem;
  font-weight: 700;
}

.batcom-shareprice--home .batcom-shareprice__wrapper {
  display: flex;
  justify-content: space-between;
  font-size: var(--batcom-typography-h4-size-mobile);
  line-height: 2;
}
.batcom-shareprice--home .batcom-shareprice__change, .batcom-shareprice--home .batcom-shareprice__price {
  font-size: var(--batcom-typography-h4-size-mobile);
}
.batcom-shareprice--home .batcom-shareprice__market {
  font-size: var(--batcom-typography-x-x-small-size-mobile);
  font-weight: 500;
  line-height: 1.1;
  margin: 5px 0 12px;
}
@media only screen and (min-width: 768px) {
  .batcom-shareprice--home .batcom-shareprice__market {
    font-size: var(--batcom-typography-x-small-size-mobile);
  }
}
.batcom-shareprice--home .batcom-shareprice__change {
  font-weight: 500;
  margin-top: 6px;
  line-height: 1.1;
}
@media only screen and (min-width: 768px) {
  .batcom-shareprice--home .batcom-shareprice__change {
    font-size: var(--batcom-typography-h4-size-mobile);
  }
}
.batcom-shareprice--home .batcom-shareprice__price {
  font-weight: 300;
  flex: 1;
}
.batcom-shareprice--home .batcom-shareprice__price::before {
  content: "•";
  display: inline-block;
  margin: 0 10px;
}

.batcom-shareprice--investor {
  padding: 10px;
}
.batcom-shareprice--investor .batcom-shareprice__wrapper {
  display: flex;
}
.batcom-shareprice--investor .batcom-shareprice__city, .batcom-shareprice--investor .batcom-shareprice__datetime, .batcom-shareprice--investor .batcom-shareprice__change {
  font-size: var(--batcom-typography-x-small-size-mobile);
  line-height: 1.4;
}
.batcom-shareprice--investor .batcom-shareprice__currency, .batcom-shareprice--investor .batcom-shareprice__market, .batcom-shareprice--investor .batcom-shareprice__price {
  font-size: var(--batcom-typography-quote-size-desktop);
  line-height: 1.1;
}
.batcom-shareprice--investor .batcom-shareprice__market {
  font-weight: 700;
  margin-bottom: 16px;
}
.batcom-shareprice--investor .batcom-shareprice__change {
  font-weight: 500;
}
.batcom-shareprice--investor .batcom-shareprice__price {
  font-weight: 700;
  text-align: right;
  margin-right: 10px;
  margin-top: 10px;
  flex: 1;
}
.batcom-shareprice--investor .batcom-shareprice__city {
  font-weight: 700;
}
.batcom-shareprice--investor .batcom-shareprice__city, .batcom-shareprice--investor .batcom-shareprice__datetime {
  margin-right: 5px;
  margin-bottom: 36px;
}
/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL3NyYy9tYWluL2pjcl9yb290L2FwcHMvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLXNoYXJlcHJpY2UvYmF0Y29tLXNoYXJlcHJpY2UuYnVuZGxlLmNzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fYm9keV9ub3Njcm9sbC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvYWJzdHJhY3RzL19sb2FkaW5nLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9hYnN0cmFjdHMvX292ZXJsYXlfc2hvcnRoYW5kLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9mdW5jdGlvbnMvX25uLXotaW5kZXguc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fYXJyb3cuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fY2xlYXJmaXguc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fY29tcG9uZW50LW5vcm1hbGl6ZS5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19mb250LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2hlYWRpbmdzLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX3Zpc2liaWxpdHkuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fY29sdW1uY29udHJvbC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19yZXZlcnNlLWNvbnRhaW5lci5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLXNoYXJlcHJpY2UvYmF0Y29tLXNoYXJlcHJpY2UuY2xpZW50bGlicy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19tZWRpYXF1ZXJpZXMuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxnQkFBZ0I7QUNNaEI7RUFDRSxnQkFBQTtFQUNBLGVBQUE7RUFDQSxRQUFBO0FESkY7O0FFQ0E7RUFDRTtJQUNFLHVDQUFBO0VGRUY7RUVDQTtJQUNFLHVDQUFBO0VGQ0Y7RUVFQTtJQUNFLHlCQUFBO0VGQUY7QUFDRjtBRUdBO0VBQ0UscUJBQUE7RUFDQSxXQUFBO0VBQ0EsWUFBQTtFQUNBLGtCQUFBO0VBQ0Esc0JBQUE7RUFDQSxzQ0FBQTtFQUNBLHFCQUFBO0VBQ0Esa0JBQUE7QUZERjtBRUdFO0VBRUUsa0JBQUE7RUFDQSxXQUFBO0VBQ0EscUJBQUE7RUFDQSxrQkFBQTtFQUNBLFdBQUE7RUFDQSxZQUFBO0VBQ0EseUJBQUE7RUFDQSxzQ0FBQTtBRkZKO0FFS0U7RUFDRSxxQkFBQTtFQUNBLFdBQUE7QUZISjtBRU1FO0VBQ0UscUJBQUE7RUFDQSxZQUFBO0FGSko7O0FHM0NBO0VBQ0Usa0JBQUE7RUFDQSxVQUFBO0FIOENGOztBSWxEQTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Q0FBQTtBQ0FBOztDQUFBO0FDQUE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Q0FBQTtBQ0FBOzs7Ozs7O0NBQUE7QUNBQSx3Q0FBQTtBQUNBLDBEQUFBO0FBRUE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Q0FBQTtBQ0hBOzs7Ozs7OztDQUFBO0FDQUE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Q0FBQTtBQ0FBOzs7Ozs7Ozs7O0NBQUE7QUNDQTs7Q0FBQTtBQ0dBO0VBQ0UseUNBQUE7QWJzTkY7QWFwTkU7RUFFRSwwRUFBQTtBYnFOSjtBYWxORTtFQUNFLGtEQUFBO0VBQ0EsZ0JBQUE7QWJvTko7QWFqTkU7RUFDRSx1REFBQTtFQUNBLGdCQUFBO0VBQ0EsY0FBQTtBYm1OSjs7QWE1TUk7RUFHRSxtQkFBQTtFQUNBLGtEQUFBO0VBQ0EsZ0JBQUE7QWI2TU47QWExTUk7RUFFRSxnQkFBQTtBYjJNTjtBYXhNSTtFQUNFLGtCQUFBO0VBQ0EsZ0JBQUE7QWIwTU47O0Fhbk1FO0VBQ0UsYUFBQTtFQUNBLDhCQUFBO0VBQ0Esa0RBQUE7RUFDQSxjQUFBO0Fic01KO0FhbE1JO0VBRUUsa0RBQUE7QWJtTU47QWFoTUk7RUFDRSx5REFBQTtFQUNBLGdCQUFBO0VBQ0EsZ0JBQUE7RUFDQSxrQkFBQTtBYmtNTjtBY2hORTtFRFVFO0lBT0ksdURBQUE7RWJtTU47QUFDRjtBYWhNSTtFQUNFLGdCQUFBO0VBQ0EsZUFBQTtFQUNBLGdCQUFBO0Fia01OO0FjMU5FO0VEcUJFO0lBTUksa0RBQUE7RWJtTU47QUFDRjtBYWhNSTtFQUNFLGdCQUFBO0VBQ0EsT0FBQTtBYmtNTjtBYWhNTTtFQUNFLFlBQUE7RUFDQSxxQkFBQTtFQUNBLGNBQUE7QWJrTVI7O0FhM0xBO0VBQ0UsYUFBQTtBYjhMRjtBYTVMRTtFQUNFLGFBQUE7QWI4TEo7QWExTEk7RUFHRSx1REFBQTtFQUNBLGdCQUFBO0FiMExOO0FhdkxJO0VBR0Usc0RBQUE7RUFDQSxnQkFBQTtBYnVMTjtBYXBMSTtFQUNFLGdCQUFBO0VBQ0EsbUJBQUE7QWJzTE47QWFuTEk7RUFDRSxnQkFBQTtBYnFMTjtBYWxMSTtFQUNFLGdCQUFBO0VBQ0EsaUJBQUE7RUFDQSxrQkFBQTtFQUNBLGdCQUFBO0VBQ0EsT0FBQTtBYm9MTjtBYWpMSTtFQUNFLGdCQUFBO0FibUxOO0FhaExJO0VBRUUsaUJBQUE7RUFDQSxtQkFBQTtBYmlMTiIsImZpbGUiOiIuLi9zcmMvbWFpbi9qY3Jfcm9vdC9hcHBzL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvcHVibGlzaC9jb21wb25lbnRzL2JhdGNvbS1zaGFyZXByaWNlL2JhdGNvbS1zaGFyZXByaWNlLmJ1bmRsZS5jc3MifQ== */