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
*/
form.batcom-bff-address-book-details.cmp-form {
  float: left;
  max-width: 470px;
  margin-top: 24px;
}
form.batcom-bff-address-book-details.cmp-form label {
  font-family: var(--batcom-font-face-3-name), sans-serif;
  font-size: var(--batcom-typography-x-small-size-mobile);
  text-transform: uppercase;
}
form.batcom-bff-address-book-details.cmp-form label:not(.form-label) {
  margin-bottom: 8px;
}
form.batcom-bff-address-book-details.cmp-form input[type=text],
form.batcom-bff-address-book-details.cmp-form input[type=tel],
form.batcom-bff-address-book-details.cmp-form .form-select {
  min-height: 48px;
  border-radius: 2px;
  padding: 13px 16px;
  color: var(--batcom-color-form-input-text);
  background: var(--batcom-color-form-input-background);
}
form.batcom-bff-address-book-details.cmp-form input[type=text]:focus-visible,
form.batcom-bff-address-book-details.cmp-form input[type=tel]:focus-visible,
form.batcom-bff-address-book-details.cmp-form .form-select:focus-visible {
  border-radius: 8px;
  outline: 1px solid var(--batcom-color-form-input-focus);
  outline-offset: 4px;
}
form.batcom-bff-address-book-details.cmp-form input[type=text]:active,
form.batcom-bff-address-book-details.cmp-form input[type=tel]:active,
form.batcom-bff-address-book-details.cmp-form .form-select:active {
  outline: 0;
  border-radius: 0;
}
form.batcom-bff-address-book-details.cmp-form input[type=text].invalid-input,
form.batcom-bff-address-book-details.cmp-form input[type=tel].invalid-input,
form.batcom-bff-address-book-details.cmp-form .form-select.invalid-input {
  border-bottom: solid 2px var(--batcom-color-form-error, #991f39);
}
form.batcom-bff-address-book-details.cmp-form input[type=text]:disabled,
form.batcom-bff-address-book-details.cmp-form input[type=tel]:disabled,
form.batcom-bff-address-book-details.cmp-form .form-select:disabled {
  color: var(--batcom-color-login-form-input-placeholder);
}
form.batcom-bff-address-book-details.cmp-form .batcom-options,
form.batcom-bff-address-book-details.cmp-form .batcom-separator,
form.batcom-bff-address-book-details.cmp-form .batcom-text {
  margin-bottom: 24px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  form.batcom-bff-address-book-details.cmp-form .batcom-options,
  form.batcom-bff-address-book-details.cmp-form .batcom-separator,
  form.batcom-bff-address-book-details.cmp-form .batcom-text {
    margin-bottom: 32px;
  }
}
@media only screen and (min-width: 1024px) {
  form.batcom-bff-address-book-details.cmp-form .batcom-text + .batcom-separator {
    margin: 8px 0 32px;
  }
}
form.batcom-bff-address-book-details.cmp-form .form-field--select {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
}
form.batcom-bff-address-book-details.cmp-form .form-field--select::after {
  position: absolute;
  top: 12px;
  right: 20px;
  pointer-events: none;
  content: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-down.svg");
  display: inline-block;
}
form.batcom-bff-address-book-details.cmp-form .form-select {
  border: 0;
  background-image: none;
  min-height: 50px;
}
form.batcom-bff-address-book-details.cmp-form .form-select:hover {
  cursor: pointer;
}
form.batcom-bff-address-book-details.cmp-form input:disabled[value] {
  color: var(--batcom-color-login-form-input-placeholder);
}
form.batcom-bff-address-book-details.cmp-form .form-label,
form.batcom-bff-address-book-details.cmp-form label {
  color: var(--batcom-color-form-label);
}
form.batcom-bff-address-book-details.cmp-form .form-checkbox {
  width: 18px;
  height: 18px;
}
form.batcom-bff-address-book-details.cmp-form .form-checkbox ~ .form-label {
  font-family: var(--batcom-font-face-1-name), sans-serif;
}
form.batcom-bff-address-book-details.cmp-form .form-checkbox ~ .form-checkbox-icon {
  height: 18px;
  width: 18px;
  -webkit-mask-size: 18px;
          mask-size: 18px;
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-checkbox-multicat/checkbox-enabled-unselected.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-checkbox-multicat/checkbox-enabled-unselected.svg");
  background-color: var(--batcom-color-form-checkbox-border, #1d1d1b);
}
form.batcom-bff-address-book-details.cmp-form .form-checkbox:hover:not(:checked, :disabled) ~ .form-options-icon {
  background-color: var(--batcom-color-form-checkbox-border-hover, #636363);
}
form.batcom-bff-address-book-details.cmp-form .form-checkbox:checked ~ .form-checkbox-icon {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-checkbox-multicat/checkbox-enabled-selected.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/form-checkbox-multicat/checkbox-enabled-selected.svg");
}
form.batcom-bff-address-book-details.cmp-form .form-checkbox:checked ~ .form-checkbox-icon::before, form.batcom-bff-address-book-details.cmp-form .form-checkbox:checked ~ .form-checkbox-icon::after {
  content: "";
  position: absolute;
  display: inline-block;
  transform: rotate(45deg);
  border-radius: 1.25px;
}
form.batcom-bff-address-book-details.cmp-form .form-checkbox:checked ~ .form-checkbox-icon::before {
  height: 12px;
  width: 1.5px;
  background-color: var(--batcom-color-form-checkbox-check-mark, #f1f1f1);
  left: 10px;
  top: 3px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
form.batcom-bff-address-book-details.cmp-form .form-checkbox:checked ~ .form-checkbox-icon::after {
  height: 1.5px;
  width: 6px;
  background-color: var(--batcom-color-form-checkbox-check-mark, #f1f1f1);
  left: 2px;
  top: 11px;
}
form.batcom-bff-address-book-details.cmp-form .form-checkbox:checked:hover ~ .form-options-icon {
  background-color: var(--batcom-color-form-checkbox-checked-border-hover, #636363);
}
form.batcom-bff-address-book-details.cmp-form .form-checkbox[disabled] ~ .form-checkbox-icon {
  border: 1px solid #d5d5d5;
  background-color: #e4e3e3;
}
form.batcom-bff-address-book-details.cmp-form .form-checkbox[disabled]:checked ~ .form-checkbox-icon {
  border: none;
}
form.batcom-bff-address-book-details.cmp-form .form-checkbox[disabled]:checked ~ .form-checkbox-icon::before, form.batcom-bff-address-book-details.cmp-form .form-checkbox[disabled]:checked ~ .form-checkbox-icon::after {
  content: "";
  position: absolute;
  display: inline-block;
  transform: rotate(45deg);
  border-radius: 1.25px;
}
form.batcom-bff-address-book-details.cmp-form .form-checkbox[disabled]:checked ~ .form-checkbox-icon::before {
  height: 12px;
  width: 1.5px;
  background-color: #b3b0aa;
  left: 10px;
  top: 3px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
form.batcom-bff-address-book-details.cmp-form .form-checkbox[disabled]:checked ~ .form-checkbox-icon::after {
  height: 1.5px;
  width: 6px;
  background-color: #b3b0aa;
  left: 2px;
  top: 11px;
}
form.batcom-bff-address-book-details.cmp-form .form-checkbox[disabled]:hover ~ .form-options-icon {
  background-color: #e4e3e3;
}
form.batcom-bff-address-book-details.cmp-form .form-checkbox:hover ~ .form-hover-circle {
  display: none;
}
form.batcom-bff-address-book-details.cmp-form .form-checkbox:focus-visible {
  border-radius: 0;
  outline: 1px solid var(--batcom-color-form-input-focus);
  outline-offset: 2px;
}
form.batcom-bff-address-book-details.cmp-form .form-checkbox:active {
  outline: 0;
  border-radius: 0;
}
form.batcom-bff-address-book-details.cmp-form .form-field-group-checkbox:has(.form-checkbox) {
  padding: 20px 24px;
  border: 1px solid var(--batcom-color-form-checkbox-container-border);
}
form.batcom-bff-address-book-details.cmp-form .form-customError,
form.batcom-bff-address-book-details.cmp-form .form-text__fieldError {
  margin-top: 4px;
  color: var(--batcom-color-form-input-error, #be123c);
}
form.batcom-bff-address-book-details.cmp-form .batcom-separator + .batcom-text {
  font-family: var(--batcom-font-face-2-name), sans-serif;
  font-size: 18px;
}
form.batcom-bff-address-book-details.cmp-form .batcom-button .cmp-form-button.loading svg {
  display: none;
}
form.batcom-bff-address-book-details.cmp-form .batcom-button .cmp-form-button.loading > span {
  filter: blur(2px);
}
form.batcom-bff-address-book-details.cmp-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: var(--batcom-button-text);
  -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;
}
form.batcom-bff-address-book-details.cmp-form .batcom-button .cmp-form-button.loading {
  position: relative;
}
form.batcom-bff-address-book-details.cmp-form .batcom-button .cmp-form-button.batcom-is-success {
  position: relative;
}
form.batcom-bff-address-book-details.cmp-form .batcom-button .cmp-form-button.batcom-is-success > span {
  filter: blur(2px);
}
form.batcom-bff-address-book-details.cmp-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;
}

.batcom-icon:has(~ .batcom-bff-addressbookdetails) .batcom-icon__label {
  padding-left: 10px;
  margin: 20px 0;
}
.batcom-icon:has(~ .batcom-bff-addressbookdetails) .batcom-icon__label a:hover {
  text-decoration: none;
}
.batcom-icon:has(~ .batcom-bff-addressbookdetails) ~ .batcom-text h2 {
  font-size: 26px;
  margin: 20px 0;
}

.aem-AuthorLayer-Edit .batcom-text {
  display: block;
}

.batcom-button .yoti-ok.loading svg {
  display: none;
}
.batcom-button .yoti-ok.loading > span {
  filter: blur(2px);
}
.batcom-button .yoti-ok.loading::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  background-color: var(--batcom-button-text);
  -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-button .yoti-ok.loading {
  position: relative;
}