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
*/
@keyframes rotate-geoloc {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(90deg);
  }
}
.batcom-storelocator--container {
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .batcom-storelocator--container {
    display: grid;
    grid-template-columns: 472px 1fr;
    grid-template-rows: min-content 1fr;
  }
}
.batcom-storelocator--search {
  padding: 32px 0 24px;
}
@media only screen and (min-width: 1024px) {
  .batcom-storelocator--search {
    padding: 56px 40px 32px 0;
    grid-row: 1;
  }
}
.batcom-storelocator--title {
  font-size: 26px;
  margin: 0 0 32px;
}
@media only screen and (min-width: 1024px) {
  .batcom-storelocator--title {
    margin: 0 0 16px;
  }
}
.batcom-storelocator--subtitle {
  font-size: 18px;
  margin: 12px 0;
  text-transform: initial;
  font-weight: 400;
  font-family: var(--batcom-typography-body-family);
}
@media only screen and (min-width: 1024px) {
  .batcom-storelocator--subtitle {
    margin-top: 20px;
  }
}
.batcom-storelocator .mapboxgl-ctrl-geocoder,
.batcom-storelocator .mapboxgl-ctrl-geocoder .suggestions {
  background-color: var(--batcom-color-palette-whisper-grey, #f1f4f8);
  border-radius: 14px;
}
@media only screen and (min-width: 480px) {
  .batcom-storelocator .mapboxgl-ctrl-geocoder {
    width: 100%;
    max-width: initial;
  }
}
.batcom-storelocator .mapboxgl-ctrl-geocoder--icon-search {
  left: auto;
  right: 12px;
}
.batcom-storelocator .mapboxgl-ctrl-geocoder--input {
  padding-left: 12px;
  font-family: var(--batcom-typography-body-family);
}
.batcom-storelocator .mapboxgl-ctrl-geocoder .suggestions > .active > a, .batcom-storelocator .mapboxgl-ctrl-geocoder .suggestions > li > a:hover {
  background-color: #d2d2d2;
}
.batcom-storelocator .mapboxgl-ctrl-geocoder--pin-right > .mapboxgl-ctrl-geocoder--button {
  top: 10px;
  width: 18px;
  height: 18px;
  right: 54px;
  background-color: transparent;
}
.batcom-storelocator .mapboxgl-ctrl-geocoder--pin-right > .mapboxgl-ctrl-geocoder--button svg {
  margin-top: 0;
}
.batcom-storelocator .mapboxgl-ctrl-geocoder--pin-right > .mapboxgl-ctrl-geocoder--button:hover {
  background-color: var(--batcom-color-palette-whisper-grey, #f1f4f8);
}
.batcom-storelocator .mapboxgl-ctrl-geocoder--pin-right > .mapboxgl-ctrl-geocoder--button:hover .mapboxgl-ctrl-geocoder--icon-close {
  fill: #000;
}
.batcom-storelocator .mapboxgl-ctrl-geocoder.mapboxgl-ctrl {
  box-shadow: none;
  border-radius: 2px;
  font-family: var(--batcom-font-face-1-name);
  border-bottom: 1px solid var(--batcom-color-body-text);
}
.batcom-storelocator .mapboxgl-ctrl-geocoder--icon-loading {
  right: 15px;
}
.batcom-storelocator .mapboxgl-ctrl-geocoder--icon-search {
  fill: transparent;
  background-color: var(--batcom-color-body-text);
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/search-location.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/search-location.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  top: 10px;
  right: 20px;
  cursor: pointer;
}
.batcom-storelocator .mapboxgl-ctrl-geocoder--input {
  padding: 10px 82px 10px 20px;
  font-size: var(--batcom-typography-body-base-size);
  height: -moz-fit-content;
  height: fit-content;
  color: var(--batcom-color-body-text);
  line-height: 1.5rem;
}
.batcom-storelocator--getloc {
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 400;
  padding: 9px 6px;
  cursor: pointer;
}
.batcom-storelocator--getloc-icon {
  margin-right: 10px;
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/location.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/location.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  width: 24px;
  height: 24px;
  background-color: var(--batcom-color-body-text);
}
.batcom-storelocator--getloc-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.56px;
  line-height: 1.25rem;
}
.batcom-storelocator--getloc.batcom-storelocator--loading .batcom-storelocator--getloc-icon {
  animation: 0.4s infinite linear rotate-geoloc;
}
.batcom-storelocator--map {
  height: 330px;
}
.batcom-storelocator--map.mapboxgl-map {
  overflow: visible;
}
.batcom-storelocator--map canvas:focus-visible {
  outline: 2px solid var(--batcom-button-outline, #0761cd);
  outline-offset: 4px;
}
@media only screen and (max-width: 767px) {
  .batcom-storelocator--map {
    width: 100vw;
    left: -20px;
  }
  .batcom-storelocator--map .mapboxgl-canvas {
    width: 100vw !important;
    height: auto !important;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-storelocator--map {
    height: 600px;
    grid-row: 1/3;
  }
}
.batcom-storelocator--viewbox {
  position: relative;
  grid-row: 2;
}
@media only screen and (min-width: 1024px) {
  .batcom-storelocator--viewbox {
    width: calc(100% - 40px);
  }
}
.batcom-storelocator--listing {
  padding: 0 24px;
  list-style: none;
  margin-top: 14px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 12px, black calc(100% - 12px), transparent);
          mask-image: linear-gradient(to bottom, transparent, black 12px, black calc(100% - 12px), transparent);
}
@media only screen and (min-width: 1024px) {
  .batcom-storelocator--listing {
    position: absolute;
    inset: 0;
    overflow-y: auto;
  }
}
.batcom-storelocator--listing .item {
  display: flex;
  flex-direction: column;
  gap: 13px;
  background-color: var(--batcom-color-container-secondary-light-bg, #fff);
  box-sizing: border-box;
  padding: 20px;
  margin-bottom: 24px;
  border: 2px solid var(--batcom-color-palette-pale-grey, #e9ecf0);
  cursor: pointer;
}
.batcom-storelocator--listing .item:first-child {
  margin-top: 24px;
}
@media only screen and (min-width: 1024px) {
  .batcom-storelocator--listing .item:first-child {
    margin-top: 10px;
  }
  .batcom-storelocator--listing .item:last-child {
    margin-bottom: 10px;
  }
}
.batcom-storelocator--listing .item.active {
  background-color: var(--batcom-color-container-primary-light-bg, #e6f6f9);
  border-color: var(--batcom-color-container-primary-light-bg, #e6f6f9);
}
.batcom-storelocator--listing .item .title {
  flex: 1;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.batcom-storelocator--listing .item .title:hover {
  text-decoration: none;
}
.batcom-storelocator--listing .item .title h3 {
  color: var(--batcom-color-body-text);
  margin-bottom: 6px;
  font-size: var(--batcom-typography-body-base-size);
  font-weight: var(--batcom-typography-h3-weight);
  line-height: 1.5rem;
  grid-column: 1/3;
  word-break: break-word;
}
.batcom-storelocator--listing .item .title p {
  color: var(--batcom-color-palette-dark-grey, #5d5f63);
  margin: 0;
  line-height: 1.375rem;
  grid-column: 1/4;
  grid-row: 2/3;
}
.batcom-storelocator--listing .item .title p:nth-child(3) {
  grid-row: 3/3;
}
.batcom-storelocator--listing .item .title .distance {
  grid-column: 3;
  grid-row: 1;
  width: -moz-max-content;
  width: max-content;
  justify-self: right;
  color: var(--batcom-color-palette-dark-grey, #5d5f63);
  font-family: var(--batcom-font-face-2-name);
  text-transform: none;
  font-size: 0.75rem;
  font-weight: 700;
}
.batcom-storelocator--listing .item .title > * {
  pointer-events: none;
}
.batcom-storelocator--listing .item .buttons {
  align-self: flex-start;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .batcom-storelocator--listing .item .buttons {
    width: auto;
  }
}
.batcom-storelocator--listing .item .button {
  display: inline-block;
  box-sizing: border-box;
  fill: #fff;
  line-height: 0;
  padding: 8px 35px;
  text-decoration: none;
  border-radius: 100px;
  border: 2px solid var(--batcom-color-button-secondary-border, #254aa2);
  font-family: var(--batcom-font-face-2-name), sans-serif;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .batcom-storelocator--listing .item .button {
    width: auto;
  }
}
.batcom-storelocator--listing .item .button:hover {
  border-color: var(--batcom-color-button-secondary-border-hover, #01567e);
}
.batcom-storelocator--listing .item .button::after {
  content: attr(title);
  color: var(--batcom-color-body-text);
  display: block;
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .batcom-storelocator--listing .item .button::after {
    width: -moz-max-content;
    width: max-content;
  }
}
.batcom-storelocator .mapboxgl-popup-content {
  padding: 20px;
  box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.3);
}
.batcom-storelocator .mapboxgl-popup-content h4 {
  margin-bottom: 6px;
  font-size: 1rem;
  padding-right: 20px;
}
@media only screen and (min-width: 1024px) {
  .batcom-storelocator .mapboxgl-popup-content h4 {
    line-height: 1.25rem;
  }
}
.batcom-storelocator .mapboxgl-popup-content p {
  margin: 0;
  line-height: 1.57;
  font-size: 14px;
  color: var(--batcom-color-palette-dark-grey);
  text-transform: none;
}
@media only screen and (min-width: 1024px) {
  .batcom-storelocator .mapboxgl-popup-content p {
    line-height: 1.25rem;
  }
}
.batcom-storelocator .mapboxgl-popup-content .blue-link {
  display: none;
}
.batcom-storelocator .mapboxgl-popup-close-button {
  right: 12px;
  top: 12px;
  width: 16px;
  height: 16px;
  font-size: 24px;
  display: flex;
  padding: 0;
  align-items: center;
}
.batcom-storelocator .mapboxgl-popup-close-button:hover {
  background-color: transparent;
}
.batcom-storelocator .mapboxgl-control-container .mapboxgl-ctrl-compass,
.batcom-storelocator .mapboxgl-control-container .mapboxgl-ctrl-bottom-right .mapboxgl-ctrl-attrib:not(.mapboxgl-compact) {
  display: none;
}