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/>
*/
/*
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
*/
/* 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
*/
/* 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;
    }
  }
}
```
*/
/*
* 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.
*/
@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
*/
/**
* Reverse container
*/
@keyframes cmp-device-showcase-content-in {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cmp-device-showcase-active-pulse {
  0% {
    transform: scale(0.82);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.cmp-device-showcase {
  background: radial-gradient(20.81% 29.63% at 50% 31%, var(--batcom-color-vertical-tabs-section-overlay-glow) 0%, var(--batcom-color-vertical-tabs-section-overlay-bg) 100%);
  position: relative;
  width: 100%;
  color: var(--batcom-color-device-showcase-tab-text-active, #fff);
  overflow: hidden;
}
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  .cmp-device-showcase {
    background: radial-gradient(26.81% 26.63% at 50% 28%, var(--batcom-color-vertical-tabs-section-overlay-glow) 0%, var(--batcom-color-vertical-tabs-section-overlay-bg) 100%);
  }
}
@media only screen and (max-width: 1023px) {
  .cmp-device-showcase {
    background: radial-gradient(36.81% 24.63% at 50% 23%, var(--batcom-color-vertical-tabs-section-overlay-glow) 0%, var(--batcom-color-vertical-tabs-section-overlay-bg) 100%);
  }
}
@media only screen and (max-width: 767px) {
  .cmp-device-showcase {
    --batcom-color-device-showcase-slot-far-size: var(--batcom-color-device-showcase-slot-far-size-mobile, 40px);
    --batcom-color-device-showcase-slot-near-size: var(--batcom-color-device-showcase-slot-near-size-mobile, 50px);
    --batcom-color-device-showcase-slot-center-size: var(--batcom-color-device-showcase-slot-center-size-mobile, 65px);
    background: radial-gradient(53.81% 24.63% at 50% 23%, var(--batcom-color-vertical-tabs-section-overlay-glow) 0%, var(--batcom-color-vertical-tabs-section-overlay-bg) 100%);
  }
}
@media only screen and (max-width: 479px) {
  .cmp-device-showcase {
    --batcom-color-device-showcase-slot-far-size: 40px;
    --batcom-color-device-showcase-slot-near-size: 48px;
    --batcom-color-device-showcase-slot-center-size: 55px;
    --batcom-color-device-showcase-nav-size: 36px;
  }
}
.cmp-device-showcase__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, auto) minmax(0, 1fr);
  align-items: center;
  row-gap: 20px;
  padding: 64px 24px;
}
@media only screen and (max-width: 1023px) {
  .cmp-device-showcase__layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 16px;
  }
}
@media only screen and (max-width: 479px) {
  .cmp-device-showcase__layout {
    padding: 24px 12px;
  }
}
.cmp-device-showcase__card {
  min-height: 106px;
  background: var(--batcom-color-campaign-theme-gray-surface-semi, rgba(61, 61, 61, 0.5));
  backdrop-filter: blur(20px);
  box-shadow: 2px 4px 17px 0 var(--batcom-color-device-showcase-card-shadow-color, rgba(147, 132, 123, 0.4));
  border: 1px solid var(--batcom-color-device-showcase-card-border-color, rgba(255, 255, 255, 0.2));
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: height var(--batcom-color-device-showcase-card-transition-duration, 150ms) ease;
}
.cmp-device-showcase__card--left {
  transform: translate(20px, -9px);
  border-width: 0 1px;
  padding-right: 36px;
}
.cmp-device-showcase__card--right {
  transform: translate(-20px, 100px);
  border-width: 0 1px;
  padding-left: 36px;
}
@media only screen and (max-width: 767px) {
  .cmp-device-showcase__card {
    min-height: 84px;
  }
}
.cmp-device-showcase__card--hidden {
  min-height: 0;
  height: 0;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  visibility: hidden;
  pointer-events: none;
}
@media only screen and (max-width: 1023px) {
  .cmp-device-showcase__card--left {
    order: 2;
    transform: none;
    padding-right: 24px;
  }
}
@media only screen and (max-width: 1023px) {
  .cmp-device-showcase__card--right {
    order: 3;
    transform: none;
    padding-left: 24px;
  }
}
.cmp-device-showcase__card-text {
  margin: 0;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
}
.cmp-device-showcase__card-text--active {
  opacity: 1;
  transform: translateY(0);
  animation: cmp-device-showcase-content-in 280ms ease;
}
.cmp-device-showcase__center {
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
@media only screen and (max-width: 767px) {
  .cmp-device-showcase__center {
    order: 1;
    min-width: 0;
  }
}
.cmp-device-showcase__controls-row {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  position: static;
  z-index: 1;
}
@media only screen and (max-width: 1023px) {
  .cmp-device-showcase__controls-row {
    order: 4;
  }
}
.cmp-device-showcase__phone-stage {
  position: relative;
  width: min(100%, 294px);
  min-height: 415px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cmp-device-showcase__phone-content {
  position: relative;
  z-index: 2;
  width: 232px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
}
.cmp-device-showcase__phone-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .cmp-device-showcase__phone-frame--desktop {
    display: none;
  }
}
.cmp-device-showcase__phone-frame--mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .cmp-device-showcase__phone-frame--mobile {
    display: block;
  }
}
.cmp-device-showcase__media-stage {
  width: 232px;
  height: 266px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 2px;
  z-index: 1;
}
.cmp-device-showcase__media-item {
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 320ms ease, transform 320ms ease;
}
.cmp-device-showcase__media-item--active {
  opacity: 1;
  transform: translateY(0);
  animation: cmp-device-showcase-content-in 280ms ease;
}
.cmp-device-showcase__media {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cmp-device-showcase__logo {
  max-width: 74px;
  width: 100%;
  height: auto;
}
.cmp-device-showcase__label-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  min-height: 63px;
}
.cmp-device-showcase__label {
  width: 100%;
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  margin: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
}
.cmp-device-showcase__label--active {
  opacity: 1;
  transform: translateY(0);
  animation: cmp-device-showcase-content-in 280ms ease;
}
.cmp-device-showcase__label-icon {
  width: 63px;
  height: 63px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 63px;
  border-radius: 16px;
  background: var(--batcom-color-device-showcase-app-icon-bg, #0d0d0d);
  box-shadow: 0 4px 4px 0 var(--batcom-color-device-showcase-app-icon-shadow-color, rgba(0, 0, 0, 0.25));
  border: 0.5px solid var(--batcom-color-device-showcase-border-light, rgba(255, 255, 255, 0.1));
  position: relative;
  left: 10px;
  z-index: 2;
}
.cmp-device-showcase__label-icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.cmp-device-showcase__label-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 47px;
  width: 100%;
  border-radius: 20px;
  padding: 0 8px 0 20px;
  background: var(--batcom-color-device-showcase-app-label-bg, #0d0d0d);
  font-size: var(--batcom-typography-h4-size-desktop, 20px);
  position: relative;
  right: 10px;
  z-index: 1;
  letter-spacing: 2.08px;
}
.cmp-device-showcase__icon-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.cmp-device-showcase__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--batcom-color-device-showcase-slot-far-size, 50px);
  height: var(--batcom-color-device-showcase-slot-far-size, 50px);
  border: 0.5px solid var(--batcom-color-device-showcase-border-light, rgba(255, 255, 255, 0.1));
  backface-visibility: hidden;
  border-radius: 15px;
  background: radial-gradient(74% 74% at 50% 100%, var(--batcom-color-device-showcase-icon-bg-gradient-start, rgba(34, 41, 67, 0.42)) 0%, var(--batcom-color-device-showcase-icon-bg-gradient-end, rgba(9, 11, 18, 0.88)) 78%), var(--batcom-color-device-showcase-icon-bg-gradient-end, rgba(9, 11, 18, 0.88));
  transform: scale(1);
  box-shadow: 0 4px 4px 0 var(--batcom-color-device-showcase-icon-shadow-color, rgba(50, 50, 50, 0.25));
}
.cmp-device-showcase__icon-btn img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
.cmp-device-showcase__icon-btn--active {
  opacity: 1;
  filter: none;
  animation: cmp-device-showcase-active-pulse 280ms ease;
}
.cmp-device-showcase__icon-btn--slot-far-left {
  order: 1;
  width: var(--batcom-color-device-showcase-slot-far-size, 50px);
  height: var(--batcom-color-device-showcase-slot-far-size, 50px);
  transform: skewY(4deg);
}
.cmp-device-showcase__icon-btn--slot-far-left img {
  width: 24px;
  height: 24px;
}
.cmp-device-showcase__icon-btn--slot-near-left {
  order: 2;
  width: var(--batcom-color-device-showcase-slot-near-size, 60px);
  height: var(--batcom-color-device-showcase-slot-near-size, 60px);
  transform: skewY(2deg);
}
.cmp-device-showcase__icon-btn--slot-near-left img {
  width: 30px;
  height: 30px;
}
.cmp-device-showcase__icon-btn--slot-center {
  order: 3;
  width: var(--batcom-color-device-showcase-slot-center-size, 80px);
  height: var(--batcom-color-device-showcase-slot-center-size, 80px);
  opacity: 1;
  box-shadow: 0 4px 4px 0 var(--batcom-color-device-showcase-icon-active-glow-strong, rgb(216, 117, 0)), 0 4px 96px 0 var(--batcom-color-device-showcase-icon-active-glow-soft, rgba(255, 137, 4, 0.5));
}
.cmp-device-showcase__icon-btn--slot-center img {
  width: 36px;
  height: 36px;
}
.cmp-device-showcase__icon-btn--slot-near-right {
  order: 4;
  width: var(--batcom-color-device-showcase-slot-near-size, 60px);
  height: var(--batcom-color-device-showcase-slot-near-size, 60px);
  transform: skewY(-2deg);
}
.cmp-device-showcase__icon-btn--slot-near-right img {
  width: 30px;
  height: 30px;
}
.cmp-device-showcase__icon-btn--slot-far-right {
  order: 5;
  width: var(--batcom-color-device-showcase-slot-far-size, 50px);
  height: var(--batcom-color-device-showcase-slot-far-size, 50px);
  transform: skewY(-4deg);
}
.cmp-device-showcase__icon-btn--slot-far-right img {
  width: 24px;
  height: 24px;
}
.cmp-device-showcase__icon-btn--slot-hidden {
  display: none;
}
.cmp-device-showcase__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}
.cmp-device-showcase__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--batcom-color-device-showcase-tab-text, #d5d5d5);
}
.cmp-device-showcase__dot--slot-far-left {
  order: 1;
  width: 7px;
  height: 7px;
}
.cmp-device-showcase__dot--slot-near-left {
  order: 2;
  width: 9px;
  height: 9px;
}
.cmp-device-showcase__dot--slot-center {
  order: 3;
  width: 12px;
  height: 12px;
}
.cmp-device-showcase__dot--slot-near-right {
  order: 4;
  width: 9px;
  height: 9px;
}
.cmp-device-showcase__dot--slot-far-right {
  order: 5;
  width: 7px;
  height: 7px;
}
.cmp-device-showcase__dot--slot-extra-left, .cmp-device-showcase__dot--slot-extra-right {
  width: 5px;
  height: 5px;
}
.cmp-device-showcase__dot--slot-hidden {
  display: none;
}
.cmp-device-showcase__dot--active {
  background: var(--batcom-color-device-showcase-tab-underline-start, #ff7321);
  transform: scale(1.06);
  animation: cmp-device-showcase-active-pulse 280ms ease;
}
.cmp-device-showcase__navigation {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .cmp-device-showcase__navigation {
    width: 100%;
    gap: 10px;
  }
}
.cmp-device-showcase__nav-btn {
  width: var(--batcom-color-device-showcase-nav-size, 44px);
  height: var(--batcom-color-device-showcase-nav-size, 44px);
  border: 1px solid var(--batcom-color-device-showcase-border-light, rgba(255, 255, 255, 0.1));
  border-radius: 50%;
  background: linear-gradient(180deg, var(--batcom-color-device-showcase-nav-bg-start, rgba(255, 131, 0, 0.5)) 0%, var(--batcom-color-device-showcase-nav-bg-end, rgba(255, 63, 0, 0.5)) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cmp-device-showcase__nav-btn:focus-visible {
  outline: 2px solid var(--batcom-color-device-showcase-tab-underline-start, #ff7321);
  outline-offset: 2px;
}
.cmp-device-showcase__nav-btn--prev .cmp-device-showcase__nav-icon {
  transform: rotate(180deg);
}
.cmp-device-showcase__nav-icon {
  width: 10px;
  height: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (prefers-reduced-motion: reduce) {
  .cmp-device-showcase__card, .cmp-device-showcase__media-item, .cmp-device-showcase__icon, .cmp-device-showcase__icon-btn, .cmp-device-showcase__dot, .cmp-device-showcase__label, .cmp-device-showcase__card-text, .cmp-device-showcase__icon-rail, .cmp-device-showcase__dots {
    transition: none;
    animation: none;
  }
}