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
*/
/* Custom styling for Algolia Autocomplete items */
:root {
  --aa-detached-modal-media-query: none;
}

.aa-Form {
  padding-inline: 24px;
}
@media only screen and (min-width: 768px) {
  .aa-Form {
    padding-inline: 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .aa-Form {
    padding-inline: 12px;
  }
}
.aa-Form:focus-within {
  box-shadow: none;
}
.aa-Autocomplete .aa-Form {
  width: 320px;
  border-width: 0 0 2px;
  border-color: var(--batcom-color-palette-border-strong-inverted, #fff);
  border-radius: 2px;
  background-color: transparent;
}
.aa-Autocomplete .aa-Form:not(:has(.aa-Input:-moz-placeholder)) .aa-InputWrapperPrefix {
  display: none;
}
.aa-Autocomplete .aa-Form:not(:has(.aa-Input:placeholder-shown)) .aa-InputWrapperPrefix {
  display: none;
}
.aa-Autocomplete .aa-Form:has(.aa-Input:-moz-placeholder) .aa-InputWrapperSuffix {
  display: none;
}
.aa-Autocomplete .aa-Form:has(.aa-Input:placeholder-shown) .aa-InputWrapperSuffix {
  display: none;
}
.aa-DetachedOverlay .aa-Form {
  border: 0;
  border-radius: 0;
  background-color: var(--batcom-color-palette-surface-neutral-option-3, #e4e3e3);
}
.aa-InputWrapper {
  padding-inline: 16px;
}
@media only screen and (min-width: 1024px) {
  .aa-InputWrapper {
    padding-inline: 0;
  }
}
@media only screen and (max-width: 767px) {
  .aa-Input {
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .aa-Input {
    font-size: var(--batcom-typography-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .aa-Input {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
.aa-Input {
  border: none;
  outline: none;
}
.aa-Autocomplete .aa-Input {
  background: transparent;
  color: var(--batcom-color-palette-text-title-inverted, #fff);
}
.aa-Autocomplete .aa-Input::-moz-placeholder {
  color: var(--batcom-color-form-text-placeholder);
}
.aa-Autocomplete .aa-Input::placeholder {
  color: var(--batcom-color-form-text-placeholder);
}
.aa-DetachedOverlay .aa-Input {
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
}
.aa-Autocomplete .aa-InputWrapperSuffix, .aa-Autocomplete .aa-InputWrapperPrefix {
  order: 4;
}
.aa-SubmitButton, .aa-LoadingIndicator {
  width: auto;
  padding: 0;
}
.aa-SubmitButton {
  background: none;
  border: none;
  cursor: pointer;
}
.aa-SubmitIcon {
  width: 16px;
  height: 16px;
}
.aa-Autocomplete .aa-ClearButton, .aa-Autocomplete .aa-Label svg, .aa-Autocomplete .aa-LoadingIndicator svg {
  color: var(--batcom-color-palette-icon-default-inverted, #fff);
}
.aa-DetachedOverlay .aa-ClearButton, .aa-DetachedOverlay .aa-Label svg, .aa-DetachedOverlay .aa-LoadingIndicator svg {
  color: var(--batcom-color-palette-icon-default, #2a2a2a);
}
.aa-ClearButton {
  padding: 0;
}
.aa-DetachedOverlay .aa-ClearButton svg {
  width: 28px;
  height: 28px;
}
.aa-Panel {
  --aa-panel-shadow: none;
  --aa-panel-max-height: 75vh;
  border-radius: 0;
  background-color: var(--batcom-color-palette-surface-neutral-option-1, #fff);
}
@media only screen and (min-width: 1024px) {
  .aa-Panel {
    width: calc(100vw - var(--batcom-layout-content-left-right-margin) * 2) !important; /* stylelint-disable-line */
    max-width: var(--batcom-layout-content-max-width) !important; /* stylelint-disable-line */
    margin: 16px auto 0;
  }
}
body:has(.aa-Panel):not(.aa-Detached) {
  height: 100vh;
  overflow: hidden;
}
body:has(.aa-Panel):not(.aa-Detached) .cmp-experiencefragment--header {
  position: relative;
  z-index: 10;
}
.aa-DetachedOverlay .aa-Panel {
  flex-grow: 0;
}
.aa-Panel .batcom-container {
  width: auto;
}
.aa-Overlay {
  position: fixed;
  inset: 0;
  background-color: var(--batcom-color-palette-interactive-overlay-default, rgba(15, 23, 42, 0.2392156863));
  z-index: 9;
}
.aa-PanelLayout {
  z-index: 11;
  padding: 0;
  background-color: transparent;
}
.aa-DetachedOverlay .aa-PanelLayout {
  position: static;
}
.aa-PanelLayoutContainer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background-color: var(--batcom-color-palette-surface-neutral-option-1, #fff);
}
@media only screen and (min-width: 768px) {
  .aa-PanelLayoutContainer {
    padding: 40px 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .aa-PanelLayoutContainer {
    gap: 32px;
    padding-inline: 64px;
  }
}
.aa-Autocomplete, .aa-DetachedFormContainer, .aa-Panel {
  font: inherit;
  color: inherit;
}
.aa-Autocomplete, .aa-DetachedOverlay {
  --aa-icon-size: 24px;
  --aa-input-icon-size: var(--aa-input-icon-size);
  --aa-icon-stroke-width: 1;
}
.aa-Autocomplete {
  --aa-search-input-height: 46px;
  border: none;
}
.aa-DetachedOverlay {
  --aa-search-input-height: 72px;
  background-color: transparent;
}
.aa-DetachedContainer {
  background-color: transparent;
  max-width: 100vw;
}
.aa-DetachedContainer .aa-Panel {
  background-color: transparent;
}
.aa-DetachedFormContainer {
  padding: 8px 24px 0;
  border: 0;
  background-color: var(--batcom-color-container-primary-dark-bg);
}
@media only screen and (min-width: 768px) {
  .aa-DetachedFormContainer {
    padding-inline: 48px;
  }
}
.aa-DetachedSearchButton {
  flex-direction: column;
  gap: 8px;
  height: auto;
  margin-block-start: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
}
.aa-DetachedSearchButtonIcon {
  color: var(--batcom-color-palette-icon-default-inverted, #fff);
}
@media only screen and (max-width: 767px) {
  .aa-DetachedSearchButtonPlaceholder {
    font-size: var(--batcom-typography-x-small-size-mobile);
    line-height: var(--batcom-typography-x-small-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .aa-DetachedSearchButtonPlaceholder {
    font-size: var(--batcom-typography-x-small-size-tablet);
    line-height: var(--batcom-typography-x-small-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .aa-DetachedSearchButtonPlaceholder {
    font-size: var(--batcom-typography-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
.aa-DetachedSearchButtonPlaceholder {
  color: var(--batcom-color-body-text-inverted);
}
.aa-DetachedSearchButtonPlaceholder[hidden] {
  display: block;
}
.aa-DetachedSearchButtonQuery {
  display: none;
}
.aa-DetachedCancelButton {
  margin: 0;
  padding-inline: 24px;
  border-radius: 0;
  background-color: var(--batcom-color-palette-surface-neutral-option-1, #fff);
}
@media only screen and (min-width: 768px) {
  .aa-DetachedCancelButton {
    padding-inline: 48px;
  }
}
.aa-Section--pages .aa-List {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) {
  .aa-Section--pages .aa-List {
    gap: 16px;
  }
}
.aa-Section--products .aa-List, .aa-Section--blogs .aa-List {
  --cols: 1;
  display: grid;
  grid-template-columns: repeat(var(--cols), 1fr);
}
@media only screen and (min-width: 768px) {
  .aa-Section--products .aa-List, .aa-Section--blogs .aa-List {
    --cols: 2;
  }
}
.aa-Section--products .aa-List {
  gap: 16px;
}
@media only screen and (min-width: 1024px) {
  .aa-Section--products .aa-List {
    --cols: 3;
    gap: 24px;
  }
}
@media only screen and (min-width: 768px) {
  .aa-Section--blogs .aa-List {
    --cols: 2;
    gap: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  .aa-Section--blogs .aa-List {
    gap: 56px;
  }
}
@media only screen and (max-width: 767px) {
  .aa-SourceHeader {
    font-size: var(--batcom-typography-hxs-size-mobile);
    line-height: var(--batcom-typography-hxs-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .aa-SourceHeader {
    font-size: var(--batcom-typography-hxs-size-tablet);
    line-height: var(--batcom-typography-hxs-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .aa-SourceHeader {
    font-size: var(--batcom-typography-hxs-size-desktop);
    line-height: var(--batcom-typography-hxs-line-height-desktop);
  }
}
.aa-SourceHeader {
  margin: 0 0 16px;
  font-weight: var(--batcom-typography-weight-bold);
  color: var(--batcom-color-body-text);
}
.aa-DetachedOverlay .aa-SourceHeader {
  margin: 0 0 16px;
}
.aa-Item {
  min-height: auto;
  padding: 0;
  border-radius: 0;
}
.aa-ItemLink {
  text-transform: none;
}
.aa-ItemLink, .aa-ItemLink:visited, .aa-ItemLink:hover {
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
  text-decoration: none;
}
.aa-ItemLink[aria-selected=true] {
  outline: 2px solid var(--batcom-color-button-outline, #000);
  background-color: var(--batcom-color-palette-surface-neutral-option-2, #f6f6f6);
  outline-offset: 2px;
}
.aa-ItemLink[aria-selected=true]:hover {
  outline: 0;
}
.aa-ItemPage, .aa-ItemProduct, .aa-ItemBlog {
  align-self: stretch;
  border-style: solid;
  border-color: var(--batcom-color-palette-border-default, #dedede);
}
.aa-ItemPage, .aa-ItemProduct {
  padding-block: 8px;
  border-width: 1px;
}
.aa-ItemPage {
  padding-inline: 16px;
}
.aa-ItemProduct {
  padding-inline: 8px;
}
@media only screen and (min-width: 768px) {
  .aa-ItemProduct {
    padding: 16px;
  }
}
.aa-ItemBlog {
  padding: 16px 8px;
  border-width: 1px 0;
}
@media only screen and (min-width: 768px) {
  .aa-ItemBlog {
    padding-inline: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .aa-ItemBlog {
    padding-inline-end: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .aa-Item + .aa-Item .aa-ItemBlog {
    border-top-width: 0;
  }
}
.aa-ItemContent mark {
  font-weight: var(--batcom-typography-weight-normal);
}
.aa-ItemProduct .aa-ItemContent, .aa-ItemBlog .aa-ItemContent {
  display: flex;
}
.aa-ItemProduct .aa-ItemContent {
  gap: 8px;
}
@media only screen and (min-width: 768px) {
  .aa-ItemProduct .aa-ItemContent {
    gap: 16px;
  }
}
.aa-ItemBlog .aa-ItemContent {
  gap: 24px;
}
.aa-ItemPicture {
  flex: 0 0 var(--image-width, 114px);
  aspect-ratio: var(--image-aspect-ratio, 1);
}
.aa-ItemPicture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aa-ItemBlog .aa-ItemPicture {
  --image-width: 120px;
  --image-aspect-ratio: 60 / 41;
}
.aa-ItemBody {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media only screen and (max-width: 767px) {
  .aa-ItemTitle, .aa-ItemPrice {
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .aa-ItemTitle, .aa-ItemPrice {
    font-size: var(--batcom-typography-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .aa-ItemTitle, .aa-ItemPrice {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
.aa-ItemTitle, .aa-ItemPrice {
  font-weight: var(--batcom-typography-weight-normal);
}
.aa-ItemPage .aa-ItemTitle {
  font-weight: var(--batcom-typography-weight-lighter);
}
.aa-ItemRating {
  --star-rating-size: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.aa-ItemRatingContainer {
  position: relative;
  display: inline-block;
  font-size: 0;
  width: calc(var(--star-rating-size) * 5);
  height: var(--star-rating-size);
  background: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/star-empty-plp.svg") repeat-x center/var(--star-rating-size);
}
.aa-ItemRatingFilled {
  position: absolute;
  top: 0;
  height: 100%;
  -webkit-mask: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/star-empty-plp.svg") repeat-x left/var(--star-rating-size);
          mask: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/star-empty-plp.svg") repeat-x left/var(--star-rating-size);
  background-color: var(--batcom-color-palette-interactive-primary-default, #1347d4);
}
.aa-ItemRatingReviews {
  font-size: 14px;
  line-height: 18px;
}
.aa-NoResults .columncontrol .columncontrol__base .columncontrol__column {
  margin-block-end: 8px;
}

/* Custom styling for Algolia Autocomplete items */
.aa-Panel {
  --aa-panel-max-height: 85vh;
}
.aa-PanelLayoutContainer {
  display: flex;
  flex-direction: column;
  gap: var(--batcom-layout-spacing-xl, 32px);
  background-color: var(--batcom-color-palette-surface-neutral-option-2, #f6f6f6);
  padding-bottom: 0;
}
@media only screen and (min-width: 1280px) {
  .aa-PanelLayoutContainer {
    flex-flow: row wrap;
    gap: var(--batcom-layout-spacing-l, 24px);
    padding: var(--batcom-layout-spacing-xl, 32px) 0 0 0;
  }
}
.aa-PanelLayoutLeftColumn, .aa-PanelLayoutRightColumn {
  display: flex;
  flex-direction: column;
  gap: var(--batcom-layout-spacing-l, 24px);
}
@media only screen and (min-width: 1280px) {
  .aa-PanelLayoutLeftColumn, .aa-PanelLayoutRightColumn {
    gap: var(--batcom-layout-spacing-xl, 32px);
  }
}
@media only screen and (min-width: 1280px) {
  .aa-PanelLayoutLeftColumn {
    flex: 0 0 287px;
    gap: var(--batcom-layout-spacing-4xl, 56px);
    padding-left: var(--batcom-layout-spacing-xl, 32px);
  }
}
@media only screen and (min-width: 1280px) {
  .aa-PanelLayoutRightColumn {
    flex: 1;
    padding-right: var(--batcom-layout-spacing-xl, 32px);
  }
}
.aa-PanelLayoutBrandsBlogsRow {
  display: flex;
  flex-direction: column;
  gap: var(--batcom-layout-spacing-xl, 32px);
  width: 100%;
  background: var(--batcom-color-palette-surface-neutral-option-3, #f1f1f1);
}
@media only screen and (min-width: 1280px) {
  .aa-PanelLayoutBrandsBlogsRow {
    flex-direction: row;
    align-items: stretch;
    padding: var(--batcom-layout-spacing-xl, 32px);
    gap: var(--batcom-layout-spacing-l, 24px);
    border-width: 1px 0;
    border-style: solid;
    border-color: var(--batcom-color-palette-border-default, #dedede);
  }
}
.aa-PanelLayoutBrandsBlogsRow--blogs-only .aa-Section--blogs {
  flex: 1 1 100%;
}
.aa-PanelLayoutBrandsBlogsRow--blogs-only .aa-Section--blogs .aa-List {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--batcom-layout-spacing-m, 16px);
}
@media only screen and (min-width: 1280px) {
  .aa-PanelLayoutBrandsBlogsRow--blogs-only .aa-Section--blogs .aa-List {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1280px) {
  .aa-Section--brands {
    flex: 0 0 calc(66.666% - var(--batcom-layout-spacing-xl, 32px) / 2);
  }
}
.aa-Section--brands .aa-PartnerBrandsGrid {
  display: grid;
  gap: var(--batcom-layout-spacing-xs, 8px);
}
@media only screen and (min-width: 1280px) {
  .aa-Section--brands .aa-PartnerBrandsGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--batcom-layout-spacing-s, 12px);
  }
}
@media only screen and (min-width: 1280px) {
  .aa-Section--blogs {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
}
.aa-Section--blogs .aa-List {
  display: flex;
  flex-direction: column;
  gap: var(--batcom-layout-spacing-s, 12px);
}
@media only screen and (min-width: 1280px) {
  .aa-Section--blogs .aa-List {
    flex-direction: row;
    flex: 1;
    align-items: stretch;
    gap: var(--batcom-layout-spacing-m, 16px);
  }
}
.aa-Section--blogs .aa-ItemTitle {
  font-family: var(--batcom-typography-body-family), sans-serif;
  font-size: var(--batcom-typography-hxs-size-mobile);
  line-height: var(--batcom-typography-hxs-line-height-mobile);
  letter-spacing: 0;
  font-weight: var(--batcom-typography-weight-normal);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
@media only screen and (min-width: 768px) {
  .aa-Section--blogs .aa-ItemTitle {
    -webkit-line-clamp: 3;
  }
}
@media only screen and (min-width: 1280px) {
  .aa-Section--blogs .aa-ItemTitle {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
    -webkit-line-clamp: 4;
  }
}
.aa-Section--blogs .aa-ItemPicture {
  --image-aspect-ratio: 16 / 9;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .aa-Section--blogs .aa-ItemPicture {
    flex: auto;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .aa-Section--blogs .aa-ItemPicture {
    height: 126px;
  }
}
@media only screen and (min-width: 1280px) {
  .aa-Section--blogs .aa-ItemPicture {
    --image-aspect-ratio: 60 / 41;
    height: 146px;
  }
}
.aa-Section--blogs .aa-ItemPicture img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
.aa-ItemProduct, .aa-ItemBlog, .aa-ItemPartnerProduct {
  border: 1px solid var(--batcom-color-palette-border-default, #dedede);
  background-color: var(--batcom-color-palette-surface-neutral-option-1, #fff);
}
.aa-ItemBlog {
  padding: 0;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .aa-ItemBlog {
    display: flex;
    justify-content: center;
  }
  .aa-ItemBlog .aa-ItemContent {
    width: 100%;
  }
}
.aa-ItemBlog .aa-ItemContent {
  gap: 0;
  flex-direction: column;
}
.aa-ItemBlog .aa-ItemContent .aa-ItemBody {
  width: 100%;
  padding: var(--batcom-layout-spacing-l, 24px);
}
@media only screen and (min-width: 1280px) {
  .aa-ItemBlog .aa-ItemContent .aa-ItemBody {
    padding: var(--batcom-layout-spacing-m, 16px);
  }
}
@media only screen and (min-width: 768px) {
  .aa-ItemBlog .aa-ItemContent {
    flex-direction: row;
  }
}
.aa-ItemPartnerProduct {
  display: block;
  text-decoration: none;
  color: inherit;
  align-self: stretch;
}
@media only screen and (min-width: 768px) {
  .aa-ItemPartnerProduct {
    padding: var(--batcom-layout-spacing-m, 16px);
  }
}
.aa-ItemPartnerProduct:hover, .aa-ItemPartnerProduct:focus {
  text-decoration: none;
}
.aa-ItemPartnerProduct .aa-ItemContent {
  display: flex;
  flex-direction: row;
  gap: var(--batcom-layout-spacing-xs, 8px);
}
@media only screen and (min-width: 768px) {
  .aa-ItemPartnerProduct .aa-ItemContent {
    gap: var(--batcom-layout-spacing-m, 16px);
  }
}
.aa-ItemPartnerProduct .aa-ItemPicture {
  flex: 0 0 var(--image-width, 114px);
  aspect-ratio: 1;
}
.aa-ItemPartnerProduct .aa-ItemPicture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.aa-ItemPartnerProduct .aa-ItemBody {
  display: flex;
  flex-direction: column;
  gap: var(--batcom-layout-spacing-xs, 8px);
}
.aa-ItemPartnerProduct .aa-ItemBrandInfo {
  display: flex;
  align-items: center;
  gap: var(--batcom-layout-spacing-xs, 8px);
  margin-bottom: var(--batcom-layout-spacing-xxs, 4px);
}
.aa-ItemPartnerProduct .aa-ItemBrandLogo img {
  max-height: 24px;
  width: auto;
}
@media only screen and (max-width: 767px) {
  .aa-ItemPartnerProduct .aa-ItemBrandTagline {
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .aa-ItemPartnerProduct .aa-ItemBrandTagline {
    font-size: var(--batcom-typography-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .aa-ItemPartnerProduct .aa-ItemBrandTagline {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
.aa-ItemPartnerProduct .aa-ItemBrandTagline {
  font-family: var(--batcom-typography-body-family), sans-serif;
  font-weight: var(--batcom-typography-weight-lighter);
}
@media only screen and (max-width: 767px) {
  .aa-ItemPartnerProduct .aa-ItemTitle {
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .aa-ItemPartnerProduct .aa-ItemTitle {
    font-size: var(--batcom-typography-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .aa-ItemPartnerProduct .aa-ItemTitle {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
.aa-ItemPartnerProduct .aa-ItemTitle {
  font-weight: var(--batcom-typography-weight-normal);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .aa-ItemPartnerProduct .aa-ItemPrice {
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .aa-ItemPartnerProduct .aa-ItemPrice {
    font-size: var(--batcom-typography-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .aa-ItemPartnerProduct .aa-ItemPrice {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
.aa-ItemPartnerProduct .aa-ItemPrice {
  font-weight: var(--batcom-typography-weight-normal);
}

.aa-PanelLayoutLeftColumn .aa-List {
  display: flex;
  flex-flow: column nowrap;
  gap: 15px;
}
@media only screen and (min-width: 1280px) {
  .aa-PanelLayoutLeftColumn .aa-List {
    gap: 10px;
  }
}
.aa-PanelLayoutLeftColumn .aa-List .aa-ItemLink {
  padding: 0;
  border: none;
}
@media only screen and (max-width: 767px) {
  .aa-PanelLayoutLeftColumn .aa-List .aa-ItemTitle {
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .aa-PanelLayoutLeftColumn .aa-List .aa-ItemTitle {
    font-size: var(--batcom-typography-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .aa-PanelLayoutLeftColumn .aa-List .aa-ItemTitle {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
.aa-PanelLayoutLeftColumn .aa-List .aa-ItemTitle {
  font-weight: var(--batcom-typography-weight-lighter);
  letter-spacing: 0;
  vertical-align: middle;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.aa-Section--top-results .aa-List {
  display: flex;
  flex-direction: column;
  gap: var(--batcom-layout-spacing-xs, 8px);
}
.aa-Section--top-results .aa-List .aa-ItemProduct {
  height: 125px;
}
@media only screen and (min-width: 1280px) {
  .aa-Section--top-results .aa-List .aa-ItemProduct {
    height: auto;
  }
}
.aa-Section--top-results .aa-List .aa-ItemTitle {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media only screen and (min-width: 1280px) {
  .aa-Section--top-results .aa-List {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--batcom-layout-spacing-s, 12px);
  }
  .aa-Section--top-results .aa-List .aa-ItemContent {
    display: flex;
    flex-flow: column nowrap;
  }
  .aa-Section--top-results .aa-List .aa-ItemBody {
    width: 100%;
  }
}

:root {
  --batcom-typography-hxs-size-mobile: 18px;
  --batcom-typography-hxs-size-tablet: var(--batcom-typography-hxs-size-mobile);
  --batcom-typography-hxs-size-desktop: 20px;
  --batcom-typography-hxs-line-height-mobile: 22px;
  --batcom-typography-hxs-line-height-tablet: var(--batcom-typography-hxs-line-height-mobile);
  --batcom-typography-hxs-line-height-desktop: 24px;
}

@media only screen and (min-width: 1280px) {
  .batcom-searchbar-multicat__wrapper {
    margin-inline-end: var(--batcom-layout-spacing-l, 24px);
  }
}
.batcom-searchbar-multicat__wrapper.cq-Editable-dom {
  min-width: 100px;
}
.batcom-searchbar-multicat__search-page-link {
  width: 100%;
  background-color: var(--batcom-color-button-primary-bg) !important;
}
.batcom-searchbar-multicat__search-page-link:hover {
  background-color: var(--batcom-button-bg-hover) !important;
  border: none !important;
}
.batcom-searchbar-multicat__search-page-link-container {
  background-color: var(--batcom-color-palette-surface-neutral-option-2, #f6f6f6);
  padding: var(--batcom-layout-spacing-xl, 32px) var(--batcom-layout-spacing-l, 24px);
}
@media only screen and (min-width: 1280px) {
  .batcom-searchbar-multicat__search-page-link-container {
    padding: var(--batcom-layout-spacing-l, 24px) var(--batcom-layout-spacing-xl, 32px);
  }
}