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
*/
.batcom-carousel .cmp-carousel {
  --spacing-between-slides: var(--batcom-layout-carousel-spacing-between-slides, 0);
}
.batcom-carousel .cmp-carousel__content {
  position: relative;
}
.batcom-container--full-page-width .batcom-carousel .batcom-image,
.batcom-container--full-page-width .batcom-carousel .batcom-teaser-horizontal,
.batcom-container--full-page-width .batcom-carousel .batcom-teaser-stage {
  margin-left: 0;
  margin-right: 0;
}
.batcom-carousel .swiper-button-next, .batcom-carousel .swiper-button-prev {
  content: "";
  position: absolute;
  inset: auto auto 8px;
  width: 20px;
  height: 20px;
  -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-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--batcom-color-carousel-button);
}
.batcom-container--primary-dark .batcom-carousel .swiper-button-next, .batcom-container--secondary-dark .batcom-carousel .swiper-button-next, .batcom-container--primary-dark .batcom-carousel .swiper-button-prev, .batcom-container--secondary-dark .batcom-carousel .swiper-button-prev {
  background-color: var(--batcom-color-carousel-button-inverted);
}
.batcom-carousel .swiper-button-next {
  right: 0;
  -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");
}
.batcom-carousel .swiper-button-prev {
  right: 30px;
  -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");
}
.batcom-carousel--space-between-small {
  --batcom-layout-carousel-spacing-between-slides: 8px;
}
.batcom-carousel--space-between-medium {
  --batcom-layout-carousel-spacing-between-slides: 16px;
}
.batcom-carousel--space-between-big {
  --batcom-layout-carousel-spacing-between-slides: 24px;
}
.batcom-carousel--arrows .swiper-button-prev {
  left: 35%;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .batcom-carousel--arrows .swiper-button-prev {
    left: 0;
    margin-left: 20px;
  }
}
.batcom-carousel--arrows .swiper-button-next {
  left: auto;
  right: 35%;
}
@media only screen and (max-width: 767px) {
  .batcom-carousel--arrows .swiper-button-next {
    right: 0;
    margin-right: 20px;
  }
}
.batcom-carousel--arrows .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}
.batcom-carousel--arrows .swiper-pagination-bullet-active {
  background: var(--batcom-color-palette-1-inverted);
}
@media only screen and (min-width: 768px) {
  .batcom-carousel--arrows .cmp-carousel .swiper-wrapper {
    align-items: baseline;
  }
}

.batcom-container--primary-dark .batcom-carousel--arrows .swiper-button-prev, .batcom-container--primary-dark .batcom-carousel--arrows .swiper-button-next {
  background-color: var(--batcom-color-palette-1-inverted);
}

.batcom-carousel {
  position: relative;
}

.batcom-carousel-v2 {
  position: relative;
}
.batcom-carousel-v2 .cmp-carousel__content {
  position: relative;
  margin-top: 32px;
}
.batcom-carousel-v2--space-between-small {
  --batcom-layout-carousel-spacing-between-slides: 8px;
}
.batcom-carousel-v2--space-between-medium {
  --batcom-layout-carousel-spacing-between-slides: 16px;
}
.batcom-carousel-v2--space-between-big {
  --batcom-layout-carousel-spacing-between-slides: 24px;
}
.batcom-carousel-v2--global-arrow-top .batcom-carousel-v2__controls.swiper-button-next, .batcom-carousel-v2--global-arrow-top .batcom-carousel-v2__controls.swiper-button-prev {
  top: 22px;
  right: 0;
  width: 30px;
  height: 30px;
  bottom: auto;
  border-radius: 50%;
  background-color: #2b2b2b;
  -webkit-mask-image: url("../../../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-right-circle.svg");
          mask-image: url("../../../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-right-circle.svg");
}
.batcom-carousel-v2--global-arrow-top .batcom-carousel-v2__controls.swiper-button-prev {
  right: 46px;
  transform: rotate(180deg);
  transform-origin: 50% 50%;
}
@media only screen and (min-width: 768px) {
  .batcom-carousel-v2--global-arrow-middle {
    padding: 0 64px;
  }
}
.batcom-carousel-v2--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-next, .batcom-carousel-v2--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-prev {
  top: 22px;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: #2b2b2b;
  -webkit-mask-image: url("../../../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-right-circle.svg");
          mask-image: url("../../../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-right-circle.svg");
}
@media only screen and (min-width: 768px) {
  .batcom-carousel-v2--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-next, .batcom-carousel-v2--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-prev {
    top: calc(50% + 32px);
    width: 40px;
    height: 40px;
    bottom: auto;
    right: auto;
    transform: translateY(-50%);
    -webkit-mask-image: url("../../../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-right-circle.svg");
            mask-image: url("../../../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-right-circle.svg");
  }
}
.batcom-carousel-v2--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-next {
  right: 0;
}
.batcom-carousel-v2--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-next::after {
  content: "";
}
.batcom-carousel-v2--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-prev {
  right: 46px;
  transform: rotate(180deg);
}
.batcom-carousel-v2--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-prev::after {
  content: "";
}
@media only screen and (min-width: 768px) {
  .batcom-carousel-v2--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-prev {
    left: 0;
    right: auto;
    transform-origin: 50% 25%;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-carousel-v2--global-arrow-middle .cmp-carousel__title {
    margin-left: -64px;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-carousel-v2--global-arrow-middle .cmp-carousel__title + .batcom-carousel-v2__controls.swiper-button-next, .batcom-carousel-v2--global-arrow-middle .cmp-carousel__title + .batcom-carousel-v2__controls.swiper-button-prev {
    top: calc(50% + 40px);
  }
}
@media only screen and (max-width: 767px) {
  .batcom-carousel-v2.cmp-carousel--enable-next-slides-mobile {
    --batcom-layout-carousel-spacing-between-slides: 8px;
    padding-inline: 20px;
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-carousel-v2--hide-title-desktop .cmp-carousel__title {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
  .batcom-carousel-v2--hide-title-desktop .batcom-carousel-v2__controls.swiper-button-next, .batcom-carousel-v2--hide-title-desktop .batcom-carousel-v2__controls.swiper-button-prev {
    top: calc(50% + 24px);
  }
}
@media only screen and (max-width: 767px) {
  .batcom-carousel-v2--vuse-pro-carousel {
    margin: auto -20px;
  }
}
@media only screen and (max-width: 767px) {
  .batcom-carousel-v2--vuse-pro-carousel .cmp-carousel {
    --batcom-layout-carousel-spacing-between-slides: 0;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-carousel-v2--vuse-pro-carousel .cmp-carousel {
    --batcom-layout-carousel-spacing-between-slides: 30px;
  }
}
.batcom-carousel-v2--vuse-pro-carousel .cmp-carousel__content {
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .batcom-carousel-v2--vuse-pro-carousel .cmp-carousel__content {
    margin-top: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .batcom-carousel-v2--vuse-pro-carousel .cmp-carousel .swiper-slide .cmp-teaser__image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    inset: 0;
    z-index: -1;
    left: -1%;
    top: 1%;
    background: radial-gradient(circle at center, rgb(95, 227, 250) 0, rgb(95, 227, 250) 58%, rgba(95, 227, 250, 0) 63%);
    transform: scale(2);
    opacity: 0;
    transition: none;
    pointer-events: none;
    background-blend-mode: screen;
    filter: blur(3px);
  }
  .batcom-carousel-v2--vuse-pro-carousel .cmp-carousel .swiper-slide-prev .cmp-teaser__image {
    transform: translateX(90px) scale(0.384);
    transition: transform 0.4s ease;
  }
  .batcom-carousel-v2--vuse-pro-carousel .cmp-carousel .swiper-slide-prev .cmp-teaser__content {
    opacity: 0;
  }
  .batcom-carousel-v2--vuse-pro-carousel .cmp-carousel .swiper-slide-next .cmp-teaser__image {
    transform: translateX(-90px) scale(0.384);
    transition: transform 0.4s ease;
  }
  .batcom-carousel-v2--vuse-pro-carousel .cmp-carousel .swiper-slide-next .cmp-teaser__content {
    opacity: 0;
  }
  .batcom-carousel-v2--vuse-pro-carousel .cmp-carousel .swiper-slide-active .cmp-teaser__image {
    transform: scale(1.08);
    transition: transform 0.4s ease;
    position: relative;
    width: 100%;
    overflow: visible;
  }
  .batcom-carousel-v2--vuse-pro-carousel .cmp-carousel .swiper-slide-active .cmp-teaser__image::before {
    opacity: 1;
    transform: scale(1);
    transition: transform 0.45s ease, opacity 0.45s ease;
  }
  .batcom-carousel-v2--vuse-pro-carousel .cmp-carousel .swiper-slide-active .cmp-teaser__image::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    inset: 0;
    z-index: -1;
    left: -1%;
    top: 1%;
    background: radial-gradient(circle at center, rgb(227, 251, 255) 0, rgb(249, 254, 255) 58%, rgba(95, 227, 250, 0) 58%);
    transition: none;
    pointer-events: none;
  }
}
@media only screen and (max-width: 767px) {
  .batcom-carousel-v2--vuse-pro-carousel .swiper-pagination {
    bottom: 17%;
    padding: 5px 0;
  }
}
.batcom-carousel-v2--vuse-pro-carousel .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}
.batcom-carousel-v2--vuse-pro-carousel .swiper-pagination-bullet {
  background: #325a77;
}
.batcom-carousel-v2--vuse-pro-carousel .swiper-pagination-bullet-active {
  background: #5fe3fa;
}
.batcom-carousel-v2--vuse-pro-carousel .swiper-button-next, .batcom-carousel-v2--vuse-pro-carousel .swiper-button-prev {
  top: 30%;
  width: 13%;
  height: 24%;
  background: transparent;
}
@media only screen and (min-width: 768px) {
  .batcom-carousel-v2--vuse-pro-carousel .swiper-button-next, .batcom-carousel-v2--vuse-pro-carousel .swiper-button-prev {
    display: none;
  }
}
.batcom-carousel-v2--vuse-pro-carousel .swiper-button-prev {
  left: 0;
}

.batcom-carousel-v3--global-arrow-middle {
  padding-bottom: 40px;
  --swiper-slides-count: 3; /* fallback */
  --batcom-layout-carousel-spacing-between-slides: 4px;
  --swiper-pagination-bullet-horizontal-gap: 8px;
  --swiper-pagination-bullet-size: 12px;
  --swiper-pagination-color: var(--batcom-color-palette-interactive-primary-default, #1347d4);
}
@media only screen and (min-width: 768px) {
  .batcom-carousel-v3--global-arrow-middle {
    --batcom-layout-carousel-spacing-between-slides: 8px;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-carousel-v3--global-arrow-middle {
    --batcom-layout-carousel-spacing-between-slides: 16px;
  }
}
.batcom-carousel-v3--global-arrow-middle .swiper-slide {
  opacity: 0.4;
}
.batcom-carousel-v3--global-arrow-middle .swiper-slide-active {
  opacity: 1;
}
.batcom-carousel-v3--global-arrow-middle {
  /* prettier-ignore-start */
}
.batcom-carousel-v3--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-next, .batcom-carousel-v3--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-prev {
  --buttons-side-spacing: 8px;
  --buttons-size: 32px;
}
@media only screen and (min-width: 768px) {
  .batcom-carousel-v3--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-next, .batcom-carousel-v3--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-prev {
    --buttons-side-spacing: 64px;
    --buttons-size: 48px;
  }
}
.batcom-carousel-v3--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-next, .batcom-carousel-v3--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-prev {
  /* stylelint-disable scss/operator-no-newline-after */
}
@media only screen and (min-width: 1024px) {
  .batcom-carousel-v3--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-next, .batcom-carousel-v3--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-prev {
    --number-of-slides-on-the-side: calc((var(--swiper-slides-count) - 1) / 2);
    --buttons-side-spacing:
    calc(
               ((100% / var(--swiper-slides-count)) * var(--number-of-slides-on-the-side)) - var(--batcom-layout-carousel-spacing-between-slides) - var(
                   --buttons-size
                 ) -
                 23px
             );
  }
}
.batcom-carousel-v3--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-next, .batcom-carousel-v3--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-prev {
  /* stylelint-enable scss/operator-no-newline-after */
  width: var(--buttons-size);
  height: var(--buttons-size);
  top: calc(50% + var(--buttons-size) / 2);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: var(--batcom-color-palette-surface-neutral-option-8, #272626);
  -webkit-mask-image: none;
          mask-image: none;
  margin: 0;
}
.batcom-carousel-v3--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-next::after, .batcom-carousel-v3--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-prev::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 15px;
  -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-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  margin-top: 3px;
  margin-left: 3px;
  background-color: var(--batcom-color-palette-surface-neutral, #fff);
}
.batcom-carousel-v3--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-next {
  right: var(--buttons-side-spacing);
}
.batcom-carousel-v3--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-next::after {
  content: "";
}
.batcom-carousel-v3--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-prev {
  left: var(--buttons-side-spacing);
  transform: rotate(180deg);
  transform-origin: 50% 25%;
}
.batcom-carousel-v3--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-prev::after {
  content: "";
}
.batcom-carousel-v3--global-arrow-middle {
  /* prettier-ignore-end */
}

.batcom-carousel-v4--global-arrow-middle {
  --button-size: 40px;
  --button-side-offset: 8px;
}
@media only screen and (min-width: 1024px) {
  .batcom-carousel-v4--global-arrow-middle {
    --button-size: 48px;
    --button-side-offset: 16px;
  }
}
.batcom-carousel-v4--global-arrow-middle .cmp-carousel__content {
  margin-top: 0;
}
.batcom-carousel-v4--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-next, .batcom-carousel-v4--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-prev {
  width: var(--button-size);
  height: var(--button-size);
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: var(--batcom-color-carousel-button-overlay, rgba(39, 38, 38, 0.2392156863));
  -webkit-mask-image: none;
          mask-image: none;
  margin: 0;
}
.batcom-carousel-v4--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-next::after, .batcom-carousel-v4--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-prev::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 15px;
  -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-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--batcom-color-carousel-button-overlay-icon, #fff);
}
.batcom-carousel-v4--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-next {
  right: var(--button-side-offset);
}
.batcom-carousel-v4--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-prev {
  left: var(--button-side-offset);
}
.batcom-carousel-v4--global-arrow-middle .batcom-carousel-v2__controls.swiper-button-prev::after {
  transform: rotate(180deg);
}
.batcom-carousel-v4--global-arrow-middle .swiper-pagination {
  --swiper-pagination-bottom: 12px;
  --swiper-pagination-bullet-size: 12px;
  --swiper-pagination-bullet-horizontal-gap: 3px;
  --swiper-pagination-bullet-inactive-color: var(--batcom-color-carousel-indicator, #d5d5d5);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-color: var(--batcom-color-carousel-indicator-active, #668fff);
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .batcom-carousel-v4--global-arrow-middle .swiper-pagination {
    --swiper-pagination-bottom: 32px;
    --swiper-pagination-bullet-horizontal-gap: 5px;
  }
}
.batcom-carousel-v4--global-arrow-middle .swiper-pagination-bullet:hover {
  background-color: var(--swiper-pagination-color);
}

.cmp-carousel__title {
  line-height: 2rem;
  width: calc(100% - 84px);
}