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
*/
.batcom-bff-trialorderhistory .batcom-bff-genericdatatable__column:first-child {
  flex: 2;
}
.batcom-bff-trialorderhistory .batcom-bff-genericdatatable__data-cell {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 14px;
}
.batcom-bff-trialorderhistory .batcom-bff-genericdatatable__data-cell[class$=device_trial_status] {
  display: flex;
}
.batcom-bff-trialorderhistory__status {
  border-radius: 80px;
  white-space: nowrap;
  padding: 4px 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}
.batcom-bff-trialorderhistory__status:hover {
  white-space: normal;
  overflow: visible;
  position: absolute;
  padding: 4px 8px;
}
.batcom-bff-trialorderhistory__trial-order-placed {
  background-color: #e4e3e3;
}
.batcom-bff-trialorderhistory__trial-in-progress {
  background-color: #f1f1f1;
}
.batcom-bff-trialorderhistory__trial-expired {
  background-color: #fef3c7;
}
.batcom-bff-trialorderhistory__trial-purchased {
  background-color: #edf3e7;
}
.batcom-bff-trialorderhistory__trial-returned {
  background-color: #d9edf8;
}
.batcom-bff-trialorderhistory__trial-canceled {
  background-color: #ffe4e6;
}
.batcom-bff-trialorderhistory__keep-cta, .batcom-bff-trialorderhistory__return-cta {
  height: 40px;
}
.batcom-bff-trialorderhistory__keep-cta span, .batcom-bff-trialorderhistory__return-cta span {
  pointer-events: none;
}
.batcom-bff-genericdatatable .batcom-button .batcom-bff-trialorderhistory__review-cta {
  width: auto;
  letter-spacing: 1px;
  gap: 10px;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.batcom-bff-genericdatatable .batcom-button .batcom-bff-trialorderhistory__review-cta span {
  -webkit-text-decoration: underline 1px solid var(--batcom-color-button-secondary-text);
          text-decoration: underline 1px solid var(--batcom-color-button-secondary-text);
  text-underline-offset: 8px;
}
.batcom-bff-genericdatatable .batcom-button .batcom-bff-trialorderhistory__review-cta::after {
  content: "";
  width: 24px;
  height: 24px;
  margin-top: 5px;
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-right.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-right.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--batcom-color-button-secondary-text);
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-trialorderhistory .batcom-bff-genericdatatable__button-section {
    max-width: 25%;
  }
  .batcom-bff-trialorderhistory .batcom-bff-genericdatatable__item-cta {
    justify-content: center;
  }
  .batcom-bff-trialorderhistory .batcom-bff-genericdatatable--table .batcom-bff-genericdatatable__header-cell, .batcom-bff-trialorderhistory .batcom-bff-genericdatatable--table .batcom-bff-genericdatatable__data-cell {
    padding: 16px 9px;
  }
  .batcom-bff-trialorderhistory .batcom-bff-genericdatatable__data-cell.batcom-bff-genericdatatable__data-cell[class$=device_trial_status] {
    padding-bottom: 1.5rem;
  }
  .batcom-bff-trialorderhistory .batcom-bff-genericdatatable__data-cell.batcom-bff-genericdatatable__data-cell[class$=device_trial_product_name] {
    height: 54px;
  }
}

.batcom-bff-trialorderhistory__card-container {
  display: grid;
  gap: 24px;
}
.batcom-bff-trialorderhistory-card__item-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 12px;
}
.batcom-bff-trialorderhistory-card__item-subtitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}
.batcom-bff-trialorderhistory-card__item-details {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  max-width: 540px;
  max-height: 429px;
  padding: 16px;
  background: #f6f6f6;
}
.batcom-bff-trialorderhistory-card__item-details:has(.order-placed, .canceled) {
  padding-bottom: 24px;
}
@media only screen and (max-width: 479px) {
  .batcom-bff-trialorderhistory-card__item-details {
    display: block;
    position: relative;
  }
}
.batcom-bff-trialorderhistory-card__item-info {
  width: 100%;
}
@media only screen and (max-width: 479px) {
  .batcom-bff-trialorderhistory-card__item-info {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
.batcom-bff-trialorderhistory-card__item-image-wrapper {
  max-width: 184px;
  max-height: 226px;
}
@media only screen and (max-width: 479px) {
  .batcom-bff-trialorderhistory-card__item-image-wrapper {
    position: absolute;
    width: 74px;
    height: 101px;
    right: 16px;
    top: 16px;
  }
}
.batcom-bff-trialorderhistory-card__item-image-wrapper img {
  width: 100%;
  height: 100%;
}
.batcom-bff-trialorderhistory-card__trial-list-item {
  list-style: disc;
  width: 100%;
  height: 30px;
  padding-top: 2px;
  padding-bottom: 4px;
}
.batcom-bff-trialorderhistory-card__trial-list-container {
  /* stylelint-disable-next-line declaration-no-important */
  padding-top: 6px !important;
  /* stylelint-disable-next-line declaration-no-important */
  padding-left: 24px !important;
}
.batcom-bff-trialorderhistory-card__trial-status {
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 80px;
  min-width: 103px;
  width: auto;
  display: inline-grid;
  place-content: center;
}
.batcom-bff-trialorderhistory-card__trial-status.order-placed {
  background-color: #e4e3e3;
  color: #272626;
}
.batcom-bff-trialorderhistory-card__trial-status.in-progress {
  background-color: #e0f2fe;
  color: #0369a1;
}
.batcom-bff-trialorderhistory-card__trial-status.expired {
  background-color: #ffe4e6;
  color: #be123c;
}
.batcom-bff-trialorderhistory-card__trial-status.purchased {
  background-color: #ddf3f1;
  color: #04695d;
}
.batcom-bff-trialorderhistory-card__trial-status.returned {
  background-color: #fef3c7;
  color: #b45309;
}
.batcom-bff-trialorderhistory-card__trial-status.canceled {
  background-color: #ffe4e6;
}
.batcom-bff-trialorderhistory-card__item-price {
  font-weight: 700;
  font-size: 20px;
  margin-block: 16px;
}
.batcom-bff-trialorderhistory-card__expired-banner {
  max-width: 540px;
  height: 116px;
  margin-bottom: 24px;
}
.batcom-bff-trialorderhistory-card__expired-banner-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.batcom-bff-trialorderhistory-card__trial-review-cta a {
  width: auto;
  justify-content: center;
  gap: 10px;
  letter-spacing: 1px;
  background: transparent;
  /* stylelint-disable-next-line declaration-no-important */
  border: 0 !important;
  border-radius: 0;
  padding: 0;
  margin-top: 16px;
}
@media only screen and (max-width: 479px) {
  .batcom-bff-trialorderhistory-card__trial-review-cta a {
    justify-content: flex-start;
  }
}
.batcom-bff-trialorderhistory-card__trial-review-cta a:hover {
  background: transparent;
}
.batcom-bff-trialorderhistory-card__trial-review-cta a:hover span {
  color: #272626;
}
.batcom-bff-trialorderhistory-card__trial-review-cta a::after {
  content: "";
  width: 24px;
  height: 24px;
  margin-top: 5px;
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-right.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-right.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #272626;
}
.batcom-bff-trialorderhistory-card__trial-review-cta a span {
  color: #272626;
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-trialorderhistory-card__button-section .batcom-bff-genericdatatable__item-cta {
    flex-flow: column-reverse;
    margin-inline: 20%;
    width: auto;
  }
}
.batcom-bff-trialorderhistory .batcom-button {
  margin: 0;
}
.batcom-bff-trialorderhistory .review-cta {
  margin-top: 16px;
}