<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">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 {
    &amp;__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
---
&lt;https://css-tricks.com/snippets/css/clear-fix/&gt;
*/
/* 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 {
  &amp;__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
*/
@media only screen and (max-width: 1023px) {
  .corp-search-bar {
    margin-bottom: 0;
  }
}
.corp-search-bar__toggle {
  overflow: visible;
  width: auto;
  padding: 0;
  border: none;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  color: inherit;
  font: inherit;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  line-height: normal;
  line-height: 0;
  color: var(--batcom-color-search-icon);
  cursor: pointer;
}
.corp-search-bar__toggle::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.batcom-container--primary-dark .corp-search-bar__toggle, .batcom-container--secondary-dark .corp-search-bar__toggle {
  --batcom-color-search-icon: var(--batcom-color-search-icon-inverted);
}
.corp-search-bar__toggle:hover, .corp-search-bar__toggle:focus {
  color: var(--batcom-color-search-link);
}
.batcom-header-default--corp .corp-search-bar__toggle {
  color: var(--batcom-color-palette-1);
  vertical-align: top;
}
.batcom-header-default--corp .corp-search-bar__toggle svg {
  width: 19px;
  height: auto;
}
@media only screen and (min-width: 1024px) {
  .batcom-header-default--corp .corp-search-bar__toggle svg {
    width: 15px;
    color: var(--batcom-color-palette-1-inverted);
  }
}
.batcom-header--sticky .batcom-header-default--corp .corp-search-bar__toggle svg, .batcom-evergreenpage .batcom-header-default--corp .corp-search-bar__toggle svg, .batcom-header:hover .batcom-header-default--corp .corp-search-bar__toggle svg, .noScroll .batcom-header-default--corp .corp-search-bar__toggle svg {
  color: var(--batcom-color-palette-1);
}
.corp-search-bar__modal {
  position: fixed;
  inset: 128px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--batcom-color-search-bg) no-repeat 50%/cover;
  background-image: var(--bgimage-mobile);
  z-index: 3;
}
@media only screen and (min-width: 1024px) {
  .corp-search-bar__modal {
    background-image: var(--bgimage-desktop);
  }
}
.corp-search-bar__modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--batcom-color-search-bg);
  opacity: 0.85;
}
.corp-search-bar__modal.hidden {
  display: none;
  visibility: hidden;
}
.corp-search-bar__modal .corp-quicksearch__form {
  position: relative;
  margin: -6vh var(--batcom-layout-container-padding-mobile) 0;
}
@media only screen and (min-width: 1024px) {
  .corp-search-bar__modal .corp-quicksearch__form {
    margin: -6vh var(--batcom-layout-container-padding-desktop) 0;
  }
}
.corp-search-bar__close {
  overflow: visible;
  width: auto;
  padding: 0;
  border: none;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  color: inherit;
  font: inherit;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  line-height: normal;
  position: absolute;
  top: 60px;
  right: calc(0.5 * var(--batcom-layout-content-left-right-margin));
  cursor: pointer;
  color: var(--batcom-color-search-icon-inverted);
}
.corp-search-bar__close::-moz-focus-inner {
  padding: 0;
  border: 0;
}
@media only screen and (min-width: 1024px) {
  .corp-search-bar__close {
    right: var(--batcom-layout-content-left-right-margin);
  }
}
.corp-search-bar__close:hover, .corp-search-bar__close:focus {
  color: var(--batcom-color-search-link);
}
/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fYm9keV9ub3Njcm9sbC5zY3NzIiwiLi4vc3JjL21haW4vamNyX3Jvb3QvYXBwcy9iYXRjb20vYnJhbmRzL2NsaWVudGxpYnMvY29ycC9jb21wb25lbnRzL2NvcnAtc2VhcmNoLWJhci9jb3JwLXNlYXJjaC1iYXIuYnVuZGxlLmNzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fbG9hZGluZy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvYWJzdHJhY3RzL19vdmVybGF5X3Nob3J0aGFuZC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvZnVuY3Rpb25zL19ubi16LWluZGV4LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2Fycm93LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2NsZWFyZml4LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2NvbXBvbmVudC1ub3JtYWxpemUuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fZm9udC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19oZWFkaW5ncy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL192aXNpYmlsaXR5LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2NvbHVtbmNvbnRyb2wuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fcmV2ZXJzZS1jb250YWluZXIuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fbWVkaWFxdWVyaWVzLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYnJhbmRzL2NsaWVudGxpYnMvY29ycC9jb21wb25lbnRzL2NvcnAtc2VhcmNoLWJhci9jb3JwLXNlYXJjaC1iYXIuY2xpZW50bGlicy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19idXR0b25zLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBTUE7RUFDRSxnQkFBQTtFQUNBLGVBQUE7RUFDQSxRQUFBO0FDTEY7O0FDRUE7RUFDRTtJQUNFLHVDQUFBO0VEQ0Y7RUNFQTtJQUNFLHVDQUFBO0VEQUY7RUNHQTtJQUNFLHlCQUFBO0VEREY7QUFDRjtBQ0lBO0VBQ0UscUJBQUE7RUFDQSxXQUFBO0VBQ0EsWUFBQTtFQUNBLGtCQUFBO0VBQ0Esc0JBQUE7RUFDQSxzQ0FBQTtFQUNBLHFCQUFBO0VBQ0Esa0JBQUE7QURGRjtBQ0lFO0VBRUUsa0JBQUE7RUFDQSxXQUFBO0VBQ0EscUJBQUE7RUFDQSxrQkFBQTtFQUNBLFdBQUE7RUFDQSxZQUFBO0VBQ0EseUJBQUE7RUFDQSxzQ0FBQTtBREhKO0FDTUU7RUFDRSxxQkFBQTtFQUNBLFdBQUE7QURKSjtBQ09FO0VBQ0UscUJBQUE7RUFDQSxZQUFBO0FETEo7O0FFMUNBO0VBQ0Usa0JBQUE7RUFDQSxVQUFBO0FGNkNGOztBR2pEQTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Q0FBQTtBQ0FBOztDQUFBO0FDQUE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Q0FBQTtBQ0FBOzs7Ozs7O0NBQUE7QUNBQSx3Q0FBQTtBQUNBLDBEQUFBO0FBRUE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Q0FBQTtBQ0hBOzs7Ozs7OztDQUFBO0FDQUE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Q0FBQTtBQ0FBOzs7Ozs7Ozs7O0NBQUE7QUNDQTs7Q0FBQTtBQzBERTtFQ3hERjtJQUVJLGdCQUFBO0Vic05GO0FBQ0Y7QWFwTkU7RUNQQSxpQkFBQTtFQUNBLFdBQUE7RUFDQSxVQUFBO0VBQ0EsWUFBQTtFQUNBLFNBQUE7RUFDQSx3QkFBQTtLQUFBLHFCQUFBO1VBQUEsZ0JBQUE7RUFDQSx1QkFBQTtFQUNBLGNBQUE7RUFDQSxhQUFBO0VBQ0EsK0JBQUE7RUFDQSxnQ0FBQTtFQUNBLG1CQUFBO0VESUUsY0FBQTtFQUNBLHNDQUFBO0VBQ0EsZUFBQTtBYjJOSjtBYy9ORTtFQUNFLFVBQUE7RUFDQSxTQUFBO0FkaU9KO0FhdE9JO0VBRUUsb0VBQUE7QWJ1T047QWFoT0k7RUFFRSxzQ0FBQTtBYmlPTjtBYTlOSTtFQUNFLG9DQUFBO0VBQ0EsbUJBQUE7QWJnT047QWE1Tk07RUFDRSxXQUFBO0VBQ0EsWUFBQTtBYjhOUjtBWXRMRTtFQzFDSTtJQUtJLFdBQUE7SUFDQSw2Q0FBQTtFYitOUjtBQUNGO0FhN05RO0VBSUUsb0NBQUE7QWI0TlY7QWF0TkU7RUFDRSxlQUFBO0VBQ0EsZ0JBQUE7RUFDQSxhQUFBO0VBQ0EsbUJBQUE7RUFDQSx1QkFBQTtFQUNBLDZEQUFBO0VBQ0EsdUNBQUE7RUFDQSxVQUFBO0Fid05KO0FZek1FO0VDdkJBO0lBV0ksd0NBQUE7RWJ5Tko7QUFDRjtBYXZOSTtFQUNJLFdBQUE7RUFDQSxrQkFBQTtFQUNBLFFBQUE7RUFDQSwrQ0FBQTtFQUNBLGFBQUE7QWJ5TlI7QWF0Tkk7RUpwQ0YsYUFBQTtFQUNBLGtCQUFBO0FUNlBGO0FhdE5JO0VBQ0Usa0JBQUE7RUFDQSw0REFBQTtBYndOTjtBWTdORTtFQ0dFO0lBS0ksNkRBQUE7RWJ5Tk47QUFDRjtBYXJORTtFQ3JGQSxpQkFBQTtFQUNBLFdBQUE7RUFDQSxVQUFBO0VBQ0EsWUFBQTtFQUNBLFNBQUE7RUFDQSx3QkFBQTtLQUFBLHFCQUFBO1VBQUEsZ0JBQUE7RUFDQSx1QkFBQTtFQUNBLGNBQUE7RUFDQSxhQUFBO0VBQ0EsK0JBQUE7RUFDQSxnQ0FBQTtFQUNBLG1CQUFBO0VENkVFLGtCQUFBO0VBQ0EsU0FBQTtFQUNBLGlFQUFBO0VBQ0EsZUFBQTtFQUNBLCtDQUFBO0FiaU9KO0FjaFRFO0VBQ0UsVUFBQTtFQUNBLFNBQUE7QWRrVEo7QVl6UEU7RUNhQTtJQVVJLHFEQUFBO0Vic09KO0FBQ0Y7QWFwT0k7RUFFRSxzQ0FBQTtBYnFPTiIsImZpbGUiOiIuLi9zcmMvbWFpbi9qY3Jfcm9vdC9hcHBzL2JhdGNvbS9icmFuZHMvY2xpZW50bGlicy9jb3JwL2NvbXBvbmVudHMvY29ycC1zZWFyY2gtYmFyL2NvcnAtc2VhcmNoLWJhci5idW5kbGUuY3NzIn0= */</pre></body></html>