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__loading-container {
  position: relative;
}
.batcom__loading-container .batcom--loading {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.batcom__loading-container.loading {
  pointer-events: none;
  opacity: 0.3;
}
.batcom__loading-container.loading .batcom--loading {
  display: inline-block;
}

.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 set styles for elements according to typography in their respective viewport.
* It uses the variables defined in the typography
* @include typography("button") will enable the font size and lineheight according to typography button tokens in all the 3 viewports
*/
/*
* 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
*/
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*
* This mixin is used to set styles for name, price, button label elements in:
* batcom-algolia-bw-productsearch.clientlibs.scss
* batcom-bff-dynamiclist.clientlibs.scss
* product-list.clientlibs.scss
*/
.search {
  position: relative;
  display: flex !important;
  justify-content: flex-end;
  width: 100%;
  min-height: 45px;
}
@media only screen and (max-width: 1023px) {
  .search {
    margin-bottom: 0;
  }
}

.cmp-search {
  position: relative;
}
.batcom-container--primary-dark .cmp-search, .batcom-container--secondary-dark .cmp-search {
  --batcom-color-search-icon: var(--batcom-color-search-icon-inverted);
  --batcom-color-search-text: var(--batcom-color-search-text-inverted);
  --batcom-color-search-link: var(--batcom-color-search-link-inverted);
  --batcom-color-search-box-shadow: var(--batcom-color-search-box-shadow-inverted);
}
.batcom-container--primary-light .cmp-search {
  --batcom-color-search-bg: var(--batcom-color-container-primary-light-bg);
  --batcom-color-search-border: var(--batcom-color-search-border-inverted);
}
.batcom-container--primary-dark .cmp-search {
  --batcom-color-search-bg: var(--batcom-color-container-primary-dark-bg);
}
.batcom-container--secondary-light .cmp-search {
  --batcom-color-search-bg: var(--batcom-color-container-secondary-light-bg);
  --batcom-color-search-border: var(--batcom-color-search-border-inverted);
}
.batcom-container--secondary-dark .cmp-search {
  --batcom-color-search-bg: var(--batcom-color-container-secondary-dark-bg);
}
.batcom-container--primary-dark .cmp-search__toggle, .batcom-container--secondary-dark .cmp-search__toggle {
  --batcom-color-search-icon: var(--batcom-color-search-icon-inverted);
}
.cmp-search__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;
}
.cmp-search__toggle::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.cmp-search__toggle {
  display: block;
  height: 27px;
  width: 24px;
  cursor: pointer;
  color: var(--batcom-color-search-icon);
}
.cmp-search__toggle svg,
.cmp-search__toggle g,
.cmp-search__toggle path,
.cmp-search__toggle mask {
  stroke: currentColor;
  fill: none;
}
.cmp-search__toggle.hidden {
  display: none;
}
.cmp-search__menu {
  display: none;
  width: 100%;
}
.cmp-search__menu.open {
  display: block;
  z-index: 2;
}
.cmp-experiencefragment--footer .cmp-search__menu.open {
  z-index: 1;
}
@media only screen and (max-width: 1023px) {
  .search .cmp-search__menu.open {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.search .cmp-search__form {
  border-bottom: 1px solid var(--batcom-color-search-border);
}
@media only screen and (min-width: 1024px) {
  .search .cmp-search__form {
    padding-bottom: 16px;
  }
}
.cmp-search__field {
  position: relative;
  height: auto;
}
.cmp-search__icon, .cmp-search__loading-indicator, .cmp-search__clear-icon {
  position: absolute;
  top: 0;
  height: 20px;
  width: 20px;
}
.cmp-search__icon {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/search.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-image: none;
  background-color: var(--batcom-color-search-icon);
  left: 0;
}
.cmp-search__loading-indicator {
  left: 0;
}
.cmp-search__clear {
  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;
}
.cmp-search__clear::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.cmp-search__clear {
  right: 0;
  height: 20px;
  width: 20px;
  top: 0;
  cursor: pointer;
  color: var(--batcom-color-search-icon);
}
.cmp-search__clear svg,
.cmp-search__clear g,
.cmp-search__clear path,
.cmp-search__clear mask {
  stroke: currentColor;
  fill: none;
}
.cmp-search__clear.open {
  display: block !important; /* stylelint-disable-line */
  position: absolute;
  top: 0;
  right: 0;
}
.cmp-search__input {
  height: auto;
  border: none;
  padding-bottom: 16px;
  padding-left: 30px;
  background-color: var(--batcom-color-search-bg);
  color: var(--batcom-color-search-text);
}
@media only screen and (min-width: 1024px) {
  .cmp-search__input {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 44px;
  }
}
.cmp-search__input:focus {
  border: 0;
}
.cmp-search__input::-moz-placeholder {
  color: var(--batcom-color-search-text);
}
.cmp-search__input::placeholder {
  color: var(--batcom-color-search-text);
}
.cmp-search__results {
  display: none;
  max-height: 450px;
  border: 0;
  background: none;
  position: relative;
  top: auto;
  left: auto;
  z-index: auto;
}
@media only screen and (max-width: 1023px) {
  .cmp-search__results {
    background-color: var(--batcom-color-search-bg);
  }
  .cmp-search__results-container.visible .cmp-search__results {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .cmp-search__results {
    max-height: 300px;
  }
}
.cmp-search__results a:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (min-width: 1024px) {
  .cmp-search__results-container {
    display: none;
    position: absolute;
    width: 100%;
    padding: 30px 40px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top: 0;
    background-color: var(--batcom-color-search-bg);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, var(--batcom-color-search-box-shadow));
  }
}
.cmp-search__results-container.visible {
  display: block;
}
@media only screen and (max-width: 1023px) {
  .search .cmp-search__results-container.visible {
    background-color: var(--batcom-color-search-bg);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top: 0;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    margin-bottom: 40px;
    padding: 10px;
  }
}
.cmp-search__results-found {
  display: none;
  position: relative;
  border-bottom: 1px solid var(--batcom-color-search-border);
  padding-top: 16px;
  padding-bottom: 16px;
}
@media only screen and (min-width: 1024px) {
  .cmp-search__results-found {
    margin-bottom: 30px;
    padding-top: 0;
  }
}
.cmp-search__results-found.visible {
  display: flex;
  justify-content: space-between;
}
.cmp-search__results-none {
  display: none;
  padding-top: 16px;
}
@media only screen and (min-width: 1024px) {
  .cmp-search__results-none {
    padding-top: 0;
  }
}
.cmp-search__results-none.visible {
  display: block;
}
.cmp-search__results-wrapper {
  display: none;
}
.cmp-search__results-wrapper.visible {
  display: block;
}
.cmp-search__results-wrapper.visible .cmp-search__results {
  display: block !important; /* stylelint-disable-line */
}
.cmp-search__item {
  display: table;
  margin: 7px;
}
.cmp-search__item-title {
  text-decoration: underline;
}
.cmp-search__item-mark {
  background-color: transparent;
  color: inherit;
}