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-resetpassword .batcom-bff-reset-password-typ {
  margin: 24px auto;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-resetpassword .batcom-bff-reset-password-typ {
    margin: 80px auto;
  }
}
.batcom-bff-resetpassword .batcom-bff-resetpassword-form {
  margin: 24px auto;
  max-width: 100%;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-resetpassword .batcom-bff-resetpassword-form {
    max-width: 442px;
    margin: 80px auto;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-bff-resetpassword .batcom-bff-resetpassword-form {
    max-width: 470px;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-resetpassword .batcom-bff-resetpassword-form {
    margin: 64px auto;
  }
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .form-customError,
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .form-text__fieldError,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .form-customError,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .form-text__fieldError {
  display: none;
  color: #991f39;
  font-size: 14px;
  line-height: 18px;
  font-family: var(--batcom-font-face-1-name);
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .form-customError--active,
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .form-text__fieldError--active,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .form-customError--active,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .form-text__fieldError--active {
  display: block;
  margin-top: 4px;
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .form-customError.cmp-form-error__item,
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .form-text__fieldError.cmp-form-error__item,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .form-customError.cmp-form-error__item,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .form-text__fieldError.cmp-form-error__item {
  margin-bottom: 4px;
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ input,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form input {
  border-radius: 2px;
  border: solid 0 transparent;
  border-bottom: 2px;
  outline: none;
  box-shadow: none;
  background-color: var(--batcom-color-form-input-background);
  font-size: var(--batcom-typography-forms-size-desktop);
  line-height: var(--batcom-typography-forms-line-height-desktop);
  font-weight: var(--batcom-typography-weight-normal);
  font-family: var(--batcom-font-face-1-name);
  padding: 13px 16px;
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ input.has-left-icon,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form input.has-left-icon {
  padding-left: 48px;
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ input.has-right-icon,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form input.has-right-icon {
  padding-right: 48px;
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ input.invalid-input,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form input.invalid-input {
  border-color: var(--batcom-color-form-input-error);
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ input:-webkit-autofill,
.batcom-bff-resetpassword .batcom-bff-reset-password-typ input:-webkit-autofill:hover,
.batcom-bff-resetpassword .batcom-bff-reset-password-typ input:-webkit-autofill:focus,
.batcom-bff-resetpassword .batcom-bff-reset-password-typ input:-webkit-autofill:active,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form input:-webkit-autofill,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form input:-webkit-autofill:hover,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form input:-webkit-autofill:focus,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 40px var(--batcom-color-palette-5) inset !important; /* stylelint-disable-line */
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .batcom-title,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .batcom-title {
  text-align: center;
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .batcom-text .cmp-form-text label,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .batcom-text .cmp-form-text label {
  display: inline-block;
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .batcom-icon,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .batcom-icon {
  margin: 0 auto;
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .batcom-icon__wrapper,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .batcom-icon__wrapper {
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  .batcom-bff-resetpassword .batcom-bff-reset-password-typ .batcom-icon__label-wrapper,
  .batcom-bff-resetpassword .batcom-bff-resetpassword-form .batcom-icon__label-wrapper {
    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) {
  .batcom-bff-resetpassword .batcom-bff-reset-password-typ .batcom-icon__label-wrapper,
  .batcom-bff-resetpassword .batcom-bff-resetpassword-form .batcom-icon__label-wrapper {
    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) {
  .batcom-bff-resetpassword .batcom-bff-reset-password-typ .batcom-icon__label-wrapper,
  .batcom-bff-resetpassword .batcom-bff-resetpassword-form .batcom-icon__label-wrapper {
    font-size: var(--batcom-typography-x-small-size-desktop);
    line-height: var(--batcom-typography-x-small-line-height-desktop);
  }
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .batcom-icon__label-wrapper,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .batcom-icon__label-wrapper {
  letter-spacing: 1px;
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .batcom-button,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .batcom-button {
  margin: 24px auto;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-resetpassword .batcom-bff-reset-password-typ .batcom-button,
  .batcom-bff-resetpassword .batcom-bff-resetpassword-form .batcom-button {
    margin: 32px auto;
  }
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .batcom-button .cmp-form-button,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .batcom-button .cmp-form-button {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .batcom-button .cmp-form-button__text,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .batcom-button .cmp-form-button__text {
  font-family: var(--batcom-font-face-4-name);
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-body-size-mobile);
  font-weight: var(--batcom-typography-weight-bold);
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .batcom-button .cmp-form-button.loading svg,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .batcom-button .cmp-form-button.loading svg {
  display: none;
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .batcom-button .cmp-form-button.loading > span,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .batcom-button .cmp-form-button.loading > span {
  filter: blur(2px);
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .batcom-button .cmp-form-button.loading::after,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .batcom-button .cmp-form-button.loading::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  background-color: #000;
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/spinner.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/spinner.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  animation: spin 2s linear infinite;
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .batcom-button .cmp-form-button.loading,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .batcom-button .cmp-form-button.loading {
  position: relative;
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .batcom-button .cmp-form-button.batcom-is-success,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .batcom-button .cmp-form-button.batcom-is-success {
  position: relative;
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .batcom-button .cmp-form-button.batcom-is-success > span,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .batcom-button .cmp-form-button.batcom-is-success > span {
  filter: blur(2px);
}
.batcom-bff-resetpassword .batcom-bff-reset-password-typ .batcom-button .cmp-form-button.batcom-is-success::after,
.batcom-bff-resetpassword .batcom-bff-resetpassword-form .batcom-button .cmp-form-button.batcom-is-success::after {
  content: "";
  position: absolute;
  width: 45px;
  height: 45px;
  top: 50%;
  left: 50%;
  margin-top: -22.5px;
  margin-left: -22.5px;
  background-color: #000;
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/checkmark.gif");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/checkmark.gif");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}