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-bff-genericdatatable {
  font-family: var(--batcom-font-face-1-name), sans-serif;
}
.batcom-bff-genericdatatable__pagination {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 2rem 0;
  justify-content: center;
  gap: 4px;
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-genericdatatable__pagination {
    justify-content: flex-start;
  }
}
.batcom-bff-genericdatatable__pagination button {
  padding: 8px 12px;
  border: 0;
  color: var(--batcom-color-body-text);
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
  height: 40px;
  width: 40px;
  font-size: 0.75rem;
  line-height: 1rem;
}
.batcom-bff-genericdatatable__pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.batcom-bff-genericdatatable__pagination button.active {
  color: var(--batcom-color-body-text-inverted);
  background: var(--batcom-color-order-history-pagination-active, #e2e2e2);
  border-color: var(--batcom-color-order-history-pagination-active, #e2e2e2);
  border-radius: 50%;
  opacity: 1;
}
.batcom-bff-genericdatatable__pagination button.next::after, .batcom-bff-genericdatatable__pagination button.prev::after {
  display: inline-block;
  width: 50%;
  height: 50%;
  content: "";
  background-color: var(--batcom-color-button-link-text, #2a2a2a);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.batcom-bff-genericdatatable__pagination 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-genericdatatable__pagination 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-genericdatatable__pagination span {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.batcom-bff-genericdatatable__table-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-genericdatatable__table-container {
    flex-flow: row wrap;
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-bff-genericdatatable__item-container {
    flex-basis: calc(50% - 6px);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-genericdatatable__item-container {
    flex-basis: 100%;
  }
}
.batcom-bff-genericdatatable__item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  border: 2px solid #d5d5d5;
  flex: none;
  order: 0;
  flex-grow: 0;
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-genericdatatable__item-wrapper {
    flex-direction: row;
  }
}
.batcom-bff-genericdatatable__brand-wrapper, .batcom-bff-genericdatatable__item-content {
  display: flex;
  align-self: stretch;
  flex-grow: 1;
}
.batcom-bff-genericdatatable__brand-wrapper {
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 4px;
  flex: none;
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-genericdatatable__brand-wrapper {
    display: none;
  }
}
.batcom-bff-genericdatatable__brand {
  display: flex;
  justify-content: space-around;
  width: 100%;
  gap: 4px;
}
.batcom-bff-genericdatatable__brand-icons {
  background: var(--batcom-color-order-history-brand-bg);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
}
.batcom-bff-genericdatatable__brand-icon {
  display: flex;
}
.batcom-bff-genericdatatable__item-content {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.batcom-bff-genericdatatable__item-content p {
  display: flex;
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.batcom-bff-genericdatatable__item-content strong {
  font-family: var(--batcom-font-face-1-name), sans-serif;
  width: 120px;
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-genericdatatable__item-content {
    flex-basis: calc(75% - 8px);
  }
}
.batcom-bff-genericdatatable__item-content .batcom-additional-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.batcom-bff-genericdatatable__columns-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 8px;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-genericdatatable__columns-container {
    flex-flow: column nowrap;
  }
}
.batcom-bff-genericdatatable__column {
  display: grid;
  grid-column: span 2;
  grid-template-columns: subgrid;
  grid-template-rows: subgrid;
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-genericdatatable__column--cta {
    flex-basis: auto;
    min-width: 120px;
  }
}
.batcom-bff-genericdatatable__header-cell {
  font-family: var(--batcom-font-face-1-name), sans-serif;
  font-size: var(--batcom-typography-body-size-mobile);
  line-height: var(--batcom-typography-body-line-height-mobile);
  font-weight: var(--batcom-typography-weight-bold);
}
.batcom-bff-genericdatatable__data-cell {
  font-family: var(--batcom-font-face-1-name), sans-serif;
  font-size: var(--batcom-typography-body-size-mobile);
  line-height: var(--batcom-typography-body-line-height-mobile);
  font-weight: var(--batcom-typography-weight-normal);
}
.batcom-bff-genericdatatable__item-cta {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-evenly;
  gap: 8px;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-genericdatatable__item-cta {
    flex-flow: row-reverse wrap;
  }
}
.batcom-bff-genericdatatable__item-cta .batcom-button {
  width: 100%;
}
.batcom-bff-genericdatatable__item-cta .batcom-button .cmp-button {
  width: 100%;
}
.batcom-bff-genericdatatable__additional-fields {
  width: auto;
}
.batcom-bff-genericdatatable__additional-fields .batcom-additional-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.batcom-bff-genericdatatable__button-section {
  width: 100%;
  margin-top: 16px;
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-genericdatatable__button-section {
    align-self: stretch;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
    max-width: 360px;
  }
}
.batcom-bff-genericdatatable__button-section .batcom-bff-genericdatatable__brand-wrapper {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-genericdatatable__button-section .batcom-bff-genericdatatable__brand-wrapper {
    display: flex;
  }
}
.batcom-bff-genericdatatable__skeleton {
  width: 100%;
}
.batcom-bff-genericdatatable__no-record {
  font-size: 14px;
  line-height: 18px;
}
.batcom-bff-genericdatatable__item-skeleton-container {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-genericdatatable__item-skeleton-container {
    flex-flow: row wrap;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-bff-genericdatatable__item-skeleton {
    flex-basis: calc(50% - 6px);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-genericdatatable__item-skeleton {
    flex-basis: 100%;
  }
}
.batcom-bff-genericdatatable__item-skeleton {
  background-color: #f5f5f5;
  border-radius: 4px;
  height: 150px;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.6;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-genericdatatable--table .batcom-bff-genericdatatable__table-container {
    width: 100%;
    margin-bottom: 1.5rem;
    border-collapse: collapse;
    border-spacing: 0;
    gap: 0;
  }
  .batcom-bff-genericdatatable--table .batcom-bff-genericdatatable__header-cell {
    width: 100%;
    height: 56px;
    padding: 16px;
    font-weight: 500;
    letter-spacing: 0;
    vertical-align: middle;
    background-color: #f1f1f1;
    border-bottom: 2px solid #2a2a2a;
  }
  .batcom-bff-genericdatatable--table .batcom-bff-genericdatatable__item-container {
    display: flex;
    border-bottom: 1px solid #f1f1f1;
    border-top: none;
    margin-bottom: 0;
  }
  .batcom-bff-genericdatatable--table .batcom-bff-genericdatatable__item-container:not(:first-child) .batcom-bff-genericdatatable__header-cell {
    display: none;
  }
  .batcom-bff-genericdatatable--table .batcom-bff-genericdatatable__item-wrapper {
    display: flex;
    flex: 1;
    border: none;
    padding: 0;
  }
  .batcom-bff-genericdatatable--table .batcom-bff-genericdatatable__item-wrapper:has(.batcom-bff-genericdatatable__button-section.batcom-hide) .batcom-bff-genericdatatable__column:last-child .batcom-bff-genericdatatable__header-cell {
    border-top-right-radius: 8px;
  }
  .batcom-bff-genericdatatable--table .batcom-bff-genericdatatable__item-content {
    display: flex;
  }
  .batcom-bff-genericdatatable--table .batcom-bff-genericdatatable__columns-container {
    display: flex;
    flex-flow: row nowrap;
    gap: 0;
  }
  .batcom-bff-genericdatatable--table .batcom-bff-genericdatatable__column {
    flex: 1;
    flex-flow: column nowrap;
    vertical-align: middle;
    text-align: left;
  }
  .batcom-bff-genericdatatable--table .batcom-bff-genericdatatable__column:first-child .batcom-bff-genericdatatable__header-cell {
    border-top-left-radius: 8px;
  }
  .batcom-bff-genericdatatable--table .batcom-bff-genericdatatable__data-cell {
    padding: 16px;
    text-align: left;
    word-break: break-word;
    height: 64px;
    display: flex;
    align-items: center;
    font-weight: 400;
    letter-spacing: 0;
    vertical-align: middle;
  }
  .batcom-bff-genericdatatable--table .batcom-bff-genericdatatable__button-section {
    padding: 0;
    display: flex;
    flex-direction: column;
    vertical-align: middle;
    text-align: center;
    min-width: 150px;
    white-space: nowrap;
  }
  .batcom-bff-genericdatatable--table .batcom-bff-genericdatatable__button-section > *:not(.batcom-bff-genericdatatable__header-cell) {
    padding: 12px;
  }
  .batcom-bff-genericdatatable--table .batcom-bff-genericdatatable__button-section .batcom-bff-genericdatatable__header-cell {
    text-align: center;
    border-bottom: 2px solid #2a2a2a;
    border-top-right-radius: 8px;
  }
  .batcom-bff-genericdatatable--table .batcom-bff-genericdatatable__button-section .batcom-bff-genericdatatable__item-cta {
    display: flex;
    flex-direction: row-reverse;
    gap: 8px;
  }
  .batcom-bff-genericdatatable--table .batcom-bff-genericdatatable__button-section .batcom-bff-genericdatatable__item-cta .batcom-button {
    width: auto;
  }
  .batcom-bff-genericdatatable--table .batcom-bff-genericdatatable__additional-fields {
    display: none;
  }
  .batcom-bff-genericdatatable--table .batcom-bff-genericdatatable__brand-wrapper {
    display: none;
  }
}

.columncontrol--home .columncontrol__column .batcom-cc-container > .cmp-container:has(.batcom-bff-genericdatatable) {
  justify-content: flex-start;
}