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
*/
@media only screen and (max-width: 767px) {
  .batcom-bff-productgallery {
    order: 1;
    margin-top: 24px;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-bff-productgallery {
    grid-row: 1/-1;
  }
}
.batcom-bff-productgallery--container {
  display: grid;
}
.batcom-bff-productgallery .swiper {
  width: 100%;
}
.batcom-bff-productgallery .swiper-main {
  position: relative;
}
.batcom-bff-productgallery .swiper-main--withCapsules {
  padding-bottom: 50px;
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-productgallery .swiper-main {
    height: 554px;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-bff-productgallery .swiper-main img {
    height: 100%;
  }
}
.batcom-bff-productgallery .swiper-main img {
  width: auto;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.batcom-bff-productgallery .swiper-button {
  font-size: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--batcom-color-palette-3-inverted);
  cursor: pointer;
}
@media only screen and (min-width: 480px) {
  .batcom-bff-productgallery .swiper-button {
    width: 40px;
    height: 40px;
  }
}
.batcom-bff-productgallery .swiper-button::after {
  display: inline-block;
  width: 50%;
  height: 50%;
  content: "";
  background-color: var(--batcom-color-palette-1);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.batcom-bff-productgallery .swiper-button:disabled {
  cursor: default;
}
.batcom-bff-productgallery .swiper-button:disabled::after {
  opacity: 0.2;
}
.batcom-bff-productgallery .swiper-button-prev {
  left: 20px;
}
@media only screen and (min-width: 480px) {
  .batcom-bff-productgallery .swiper-button-prev {
    left: 40px;
  }
}
.batcom-bff-productgallery .swiper-button-prev::after {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-left.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-left.svg");
  -webkit-mask-position: center left;
          mask-position: center left;
}
.batcom-bff-productgallery .swiper-button-next {
  right: 20px;
}
@media only screen and (min-width: 480px) {
  .batcom-bff-productgallery .swiper-button-next {
    right: 40px;
  }
}
.batcom-bff-productgallery .swiper-button-next::after {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-right.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-right.svg");
  -webkit-mask-position: center right;
          mask-position: center right;
}
.batcom-bff-productgallery .swiper-thumbs {
  display: none;
}
@media only screen and (min-width: 480px) {
  .batcom-bff-productgallery .swiper-thumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 96px;
    width: 400px;
    padding: 0 40px;
    margin-top: 40px;
    background: #fff;
  }
  .batcom-bff-productgallery .swiper-thumbs .swiper-wrapper {
    z-index: 1;
  }
  .batcom-bff-productgallery .swiper-thumbs-button-container {
    position: absolute;
    top: 0;
    height: 100%;
    width: 40px;
    z-index: 2;
    background-color: #fff;
  }
  .batcom-bff-productgallery .swiper-thumbs-button-container--prev {
    left: 0;
  }
  .batcom-bff-productgallery .swiper-thumbs-button-container--next {
    right: 0;
  }
  .batcom-bff-productgallery .swiper-thumbs-prev {
    top: 56px;
    left: 0;
    width: 24px;
    height: 24px;
  }
  .batcom-bff-productgallery .swiper-thumbs-next {
    top: 56px;
    right: 0;
    width: 24px;
    height: 24px;
  }
  .batcom-bff-productgallery .swiper-thumbs-slide {
    background-color: var(--batcom-color-product-gallery-thumb-img-bg);
  }
  .batcom-bff-productgallery .swiper-thumbs-slide img {
    height: 100%;
    width: auto;
    margin: 0 auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .batcom-bff-productgallery .swiper-thumbs .swiper-slide-thumb-active {
    color: aqua;
    border-top: 4px solid var(--batcom-color-product-gallery-thumb-active);
  }
}