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-checkoutaddress {
  margin-bottom: 2rem;
}
.batcom-bff-checkoutaddress__container {
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
}
.batcom-bff-checkoutaddress__name {
  font-family: var(--batcom-font-face-2-name);
  font-weight: var(--batcom-typography-weight-normal, 500);
}
@media only screen and (max-width: 767px) {
  .batcom-bff-checkoutaddress .batcom-icon__label {
    font-size: var(--batcom-typography-button-size-mobile);
    line-height: var(--batcom-typography-button-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .batcom-bff-checkoutaddress .batcom-icon__label {
    font-size: var(--batcom-typography-button-size-tablet);
    line-height: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-checkoutaddress .batcom-icon__label {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
.batcom-bff-checkoutaddress .batcom-icon__label {
  font-family: var(--batcom-font-face-2-name);
  font-weight: var(--batcom-typography-weight-normal, 500);
  letter-spacing: 1px;
}
@media only screen and (max-width: 767px) {
  .batcom-bff-checkoutaddress__name, .batcom-bff-checkoutaddress__address, .batcom-bff-checkoutaddress__contact {
    font-size: var(--batcom-typography-small-size-mobile);
    line-height: var(--batcom-typography-small-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .batcom-bff-checkoutaddress__name, .batcom-bff-checkoutaddress__address, .batcom-bff-checkoutaddress__contact {
    font-size: var(--batcom-typography-small-size-tablet);
    line-height: var(--batcom-typography-small-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-checkoutaddress__name, .batcom-bff-checkoutaddress__address, .batcom-bff-checkoutaddress__contact {
    font-size: var(--batcom-typography-small-size-desktop);
    line-height: var(--batcom-typography-small-line-height-desktop);
  }
}
.batcom-bff-checkoutaddress-icon {
  margin-top: 4px;
}
.batcom-bff-checkoutaddress-icon .batcom-icon i {
  max-width: 24px;
  margin-left: 8px;
}
.batcom-bff-checkoutaddress-icon .batcom-icon a {
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
}
.batcom-bff-checkoutaddress-icon .batcom-icon a.batcom-is-success {
  position: relative;
}
.batcom-bff-checkoutaddress-icon .batcom-icon a.batcom-is-success > span {
  filter: blur(2px);
}
.batcom-bff-checkoutaddress-icon .batcom-icon a.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-bff-checkoutaddress-icon .batcom-icon a.loading svg {
  display: none;
}
.batcom-bff-checkoutaddress-icon .batcom-icon a.loading > span {
  filter: blur(2px);
}
.batcom-bff-checkoutaddress-icon .batcom-icon a.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-checkoutaddress-icon .batcom-icon a.loading {
  position: relative;
}
.batcom-bff-checkoutaddress__modal {
  width: 360px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  display: none;
}
.batcom-bff-checkoutaddress__modal.open {
  display: block;
}
.batcom-bff-checkoutaddress__modal-backdrop {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--batcom-color-palette-interactive-overlay-default, rgba(15, 23, 42, 0.2392156863));
}
.batcom-bff-checkoutaddress__modal-crossicon {
  cursor: pointer;
  max-width: 18px;
  position: absolute;
  top: 15px;
  right: 15px;
  border: 0;
  padding: 0;
  background: transparent;
}
.batcom-bff-checkoutaddress__modal-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 24px;
  background: var(--batcom-color-palette-surface-neutral-option-2, #f6f6f6);
  box-shadow: 2px -4px 12px 10px rgba(15, 23, 42, 0.06), 0 10px 24px -4px rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  width: 360px;
  height: 802px;
  max-height: 90vh;
}
.batcom-bff-checkoutaddress__modal-content:has(.batcom-bff-addressbook__modal.open) {
  height: auto;
  width: 312px;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-checkoutaddress__modal-content:has(.batcom-bff-addressbook__modal.open) {
    width: 442px;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-checkoutaddress__modal-content:has(.batcom-bff-addressbook__modal.open) {
    width: 588px;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-bff-checkoutaddress__modal-content {
    width: 442px;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-checkoutaddress__modal-content {
    width: 588px;
    padding: 56px;
    height: auto;
  }
}
.batcom-bff-checkoutaddress__modal .batcom-bff-checkoutaddress__adresslist,
.batcom-bff-checkoutaddress__modal .batcom-bff-checkoutaddress__addressdetail,
.batcom-bff-checkoutaddress__modal .batcom-bff-checkoutaddress__adresslist .batcom-container,
.batcom-bff-checkoutaddress__modal .batcom-bff-checkoutaddress__addressdetail .batcom-container {
  width: 100%;
}
.batcom-bff-checkoutaddress__modal:has(.batcom-bff-addressbook__modal.open) .batcom-bff-checkoutaddress__modal-crossicon,
.batcom-bff-checkoutaddress__modal:has(.batcom-bff-addressbook__modal.open) .batcom-bff-checkoutaddress__modal-title,
.batcom-bff-checkoutaddress__modal:has(.batcom-bff-addressbook__modal.open) .batcom-bff-checkoutaddress__modal-btn--add,
.batcom-bff-checkoutaddress__modal:has(.batcom-bff-addressbook__modal.open) .batcom-bff-checkoutaddress__modal-btn-container {
  display: none;
}
.batcom-bff-checkoutaddress__modal .batcom-bff-checkoutaddress__adresslist {
  height: 584px;
  overflow-y: auto;
}
.batcom-bff-checkoutaddress__modal .batcom-bff-checkoutaddress__adresslist:has(.batcom-bff-addressbook__modal.open) {
  height: auto;
  width: 312px;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-checkoutaddress__modal .batcom-bff-checkoutaddress__adresslist:has(.batcom-bff-addressbook__modal.open) {
    width: 442px;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-checkoutaddress__modal .batcom-bff-checkoutaddress__adresslist:has(.batcom-bff-addressbook__modal.open) {
    width: 588px;
  }
}
.batcom-bff-checkoutaddress__modal .batcom-bff-checkoutaddress__adresslist:not(button).loading {
  background-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/spinner.svg");
  background-repeat: no-repeat;
  background-position: center;
  animation: spin 2s linear infinite;
}
.batcom-bff-checkoutaddress__modal .batcom-bff-checkoutaddress__adresslist:not(button).loading .batcom-bff-addressbook {
  display: none;
}
.batcom-bff-checkoutaddress__modal .batcom-bff-checkoutaddress__adresslist .batcom-bff-addressbook__user-address-container, .batcom-bff-checkoutaddress__modal .batcom-bff-checkoutaddress__adresslist .batcom-bff-addressbook__address--delivery, .batcom-bff-checkoutaddress__modal .batcom-bff-checkoutaddress__adresslist .batcom-bff-addressbook__address--billing {
  flex-basis: 100%;
}
.batcom-bff-checkoutaddress__modal .batcom-bff-checkoutaddress__addressdetail {
  height: 630px;
  overflow-y: scroll;
}
.batcom-bff-checkoutaddress__modal .batcom-bff-checkoutaddress__addressdetail .batcom-bff-addressbookdetails .batcom-button {
  display: none;
}
.batcom-bff-checkoutaddress__modal-title, .batcom-bff-checkoutaddress__modal-btn {
  align-self: center;
}
.batcom-bff-checkoutaddress__modal-title .cmp-button.batcom-is-success, .batcom-bff-checkoutaddress__modal-btn .cmp-button.batcom-is-success {
  position: relative;
}
.batcom-bff-checkoutaddress__modal-title .cmp-button.batcom-is-success > span, .batcom-bff-checkoutaddress__modal-btn .cmp-button.batcom-is-success > span {
  filter: blur(2px);
}
.batcom-bff-checkoutaddress__modal-title .cmp-button.batcom-is-success::after, .batcom-bff-checkoutaddress__modal-btn .cmp-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-bff-checkoutaddress__modal-title .cmp-button.loading svg, .batcom-bff-checkoutaddress__modal-btn .cmp-button.loading svg {
  display: none;
}
.batcom-bff-checkoutaddress__modal-title .cmp-button.loading > span, .batcom-bff-checkoutaddress__modal-btn .cmp-button.loading > span {
  filter: blur(2px);
}
.batcom-bff-checkoutaddress__modal-title .cmp-button.loading::after, .batcom-bff-checkoutaddress__modal-btn .cmp-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-checkoutaddress__modal-title .cmp-button.loading, .batcom-bff-checkoutaddress__modal-btn .cmp-button.loading {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .batcom-bff-checkoutaddress__modal-title {
    font-size: var(--batcom-typography-h4-size-mobile);
    line-height: var(--batcom-typography-h4-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .batcom-bff-checkoutaddress__modal-title {
    font-size: var(--batcom-typography-h4-size-tablet);
    line-height: var(--batcom-typography-h4-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-checkoutaddress__modal-title {
    font-size: var(--batcom-typography-h4-size-desktop);
    line-height: var(--batcom-typography-h4-line-height-desktop);
  }
}
.batcom-bff-checkoutaddress__modal-title {
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
  font-family: var(--batcom-font-face-3-name);
  margin-bottom: 8px;
}
.batcom-bff-checkoutaddress__modal-btn {
  width: 100%;
}
.batcom-bff-checkoutaddress__modal-btn button {
  width: 100%;
}
.batcom-bff-checkoutaddress .batcom-bff-addressbook {
  margin-bottom: 0;
}
.batcom-bff-checkoutaddress .batcom-bff-addressbook__user-address-container, .batcom-bff-checkoutaddress .batcom-bff-addressbook__address--delivery, .batcom-bff-checkoutaddress .batcom-bff-addressbook__address--billing {
  flex-basis: 100%;
}
.batcom-bff-checkoutaddress .batcom-bff-addressbook__address-container--default {
  margin-bottom: 1rem;
}
.batcom-bff-checkoutaddress .batcom-bff-addressbook__address--billing {
  display: none;
}
.batcom-bff-checkoutaddress .batcom-bff-addressbook__user-address-container:has(.batcom-bff-addressbook__selected-address:checked) {
  border-color: var(--batcom-color-palette-border-accent-1, #f8ab28);
}
@media only screen and (max-width: 767px) {
  .batcom-bff-checkoutaddress .batcom-bff-addressbook__user-address-container {
    font-size: var(--batcom-typography-body-size-mobile);
    line-height: var(--batcom-typography-body-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .batcom-bff-checkoutaddress .batcom-bff-addressbook__user-address-container {
    font-size: var(--batcom-typography-body-size-tablet);
    line-height: var(--batcom-typography-body-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-checkoutaddress .batcom-bff-addressbook__user-address-container {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
.batcom-bff-checkoutaddress .batcom-bff-addressbook:has(.batcom-bff-addressbook__modal.open) .batcom-bff-addressbook__address-container--default,
.batcom-bff-checkoutaddress .batcom-bff-addressbook:has(.batcom-bff-addressbook__modal.open) .batcom-bff-addressbook__address-container--other {
  display: none;
}
.batcom-bff-checkoutaddress .batcom-bff-addressbook:has(.batcom-bff-addressbook__modal.open) .batcom-bff-addressbook__modal-content,
.batcom-bff-checkoutaddress .batcom-bff-addressbook:has(.batcom-bff-addressbook__modal.open) .batcom-bff-addressbook__modal-backdrop {
  width: 312px;
  height: auto;
  max-width: none;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-checkoutaddress .batcom-bff-addressbook:has(.batcom-bff-addressbook__modal.open) .batcom-bff-addressbook__modal-content,
  .batcom-bff-checkoutaddress .batcom-bff-addressbook:has(.batcom-bff-addressbook__modal.open) .batcom-bff-addressbook__modal-backdrop {
    width: 442px;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-checkoutaddress .batcom-bff-addressbook:has(.batcom-bff-addressbook__modal.open) .batcom-bff-addressbook__modal-content,
  .batcom-bff-checkoutaddress .batcom-bff-addressbook:has(.batcom-bff-addressbook__modal.open) .batcom-bff-addressbook__modal-backdrop {
    width: 588px;
  }
}
.batcom-bff-checkoutaddress .batcom-bff-addressbook .batcom-bff-addressbook__user-address-container {
  min-height: 184px;
}
.batcom-bff-checkoutaddress .billing_address .batcom-bff-addressbook__address--delivery {
  display: none;
}
.batcom-bff-checkoutaddress .billing_address .batcom-bff-addressbook__address--billing {
  display: block;
}
.batcom-bff-checkoutaddress__modal-btn-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-checkoutaddress__modal-btn-container {
    flex-direction: row;
    gap: 0.75rem;
  }
  .batcom-bff-checkoutaddress__modal-btn-container .batcom-button--primary .cmp-button {
    padding: 10px 0;
  }
}
.batcom-bff-checkoutaddress__add-new-address-label, .batcom-bff-checkoutaddress__edit-address-label {
  text-align: center;
  margin-bottom: 1.5rem;
  width: 100%;
}
.batcom-bff-checkoutaddress__modal--addressbookdetail .batcom-bff-checkoutaddress__add-new-address-label {
  display: none;
}
.batcom-bff-checkoutaddress__modal--addressbookdetail.add-address-block .batcom-bff-checkoutaddress__add-new-address-label {
  display: block;
}
.batcom-bff-checkoutaddress__modal--addressbookdetail.add-address-block .batcom-bff-checkoutaddress__edit-address-label {
  display: none;
}
.batcom-bff-checkoutaddress__modal--addressbookdetail form.batcom-bff-address-book-details.cmp-form {
  margin-top: 0;
}
.batcom-bff-checkoutaddress__modal--addressbookdetail form.batcom-bff-address-book-details.cmp-form input[type=text],
.batcom-bff-checkoutaddress__modal--addressbookdetail form.batcom-bff-address-book-details.cmp-form input[type=tel],
.batcom-bff-checkoutaddress__modal--addressbookdetail form.batcom-bff-address-book-details.cmp-form .form-select {
  background: transparent;
  height: 48px;
  border-bottom: 1px solid var(--batcom-color-palette-border-strong, #1d1d1b);
  border-radius: 2px;
  outline: transparent;
}
.batcom-bff-checkoutaddress__modal--addressbookdetail form.batcom-bff-address-book-details.cmp-form input[type=text]:focus-visible,
.batcom-bff-checkoutaddress__modal--addressbookdetail form.batcom-bff-address-book-details.cmp-form input[type=tel]:focus-visible,
.batcom-bff-checkoutaddress__modal--addressbookdetail form.batcom-bff-address-book-details.cmp-form .form-select:focus-visible {
  border: none;
  border-bottom: 2px solid var(--batcom-color-palette-border-strong, #1d1d1b);
  outline: transparent;
}
.batcom-bff-checkoutaddress__modal--addressbookdetail form.batcom-bff-address-book-details.cmp-form label:not(.form-label) {
  margin-bottom: 4px;
}
.batcom-bff-checkoutaddress__modal--addressbookdetail form.batcom-bff-address-book-details.cmp-form .batcom-text {
  margin-bottom: 1rem;
}
.batcom-bff-checkoutaddress__modal--addressbookdetail form.batcom-bff-address-book-details.cmp-form .batcom-separator {
  display: none;
}
.batcom-bff-checkoutaddress__modal--addressbookdetail form.batcom-bff-address-book-details.cmp-form .batcom-options,
.batcom-bff-checkoutaddress__modal--addressbookdetail form.batcom-bff-address-book-details.cmp-form .batcom-separator {
  margin-bottom: 0;
}
.batcom-bff-checkoutaddress__modal--addressbookdetail form.batcom-bff-address-book-details.cmp-form .form-checkbox {
  height: 1.5rem;
  width: 1.5rem;
}
.batcom-bff-checkoutaddress__modal--addressbookdetail form.batcom-bff-address-book-details.cmp-form .form-checkbox ~ .form-checkbox-icon {
  height: 1.5rem;
  width: 1.5rem;
  -webkit-mask-size: 1.5rem;
          mask-size: 1.5rem;
}
.batcom-bff-checkoutaddress__modal--addressbookdetail form.batcom-bff-address-book-details.cmp-form .form-checkbox[disabled]:checked ~ .form-checkbox-icon, .batcom-bff-checkoutaddress__modal--addressbookdetail form.batcom-bff-address-book-details.cmp-form .form-checkbox:checked ~ .form-checkbox-icon {
  height: 1.5rem;
  width: 1.5rem;
  -webkit-mask-size: 5rem;
          mask-size: 5rem;
}
.batcom-bff-checkoutaddress__modal--addressbookdetail form.batcom-bff-address-book-details.cmp-form .form-checkbox[disabled]:checked ~ .form-checkbox-icon::before, .batcom-bff-checkoutaddress__modal--addressbookdetail form.batcom-bff-address-book-details.cmp-form .form-checkbox:checked ~ .form-checkbox-icon::before {
  height: 12px;
  width: 1.5px;
  left: 14px;
  top: 6px;
}
.batcom-bff-checkoutaddress__modal--addressbookdetail form.batcom-bff-address-book-details.cmp-form .form-checkbox[disabled]:checked ~ .form-checkbox-icon::after, .batcom-bff-checkoutaddress__modal--addressbookdetail form.batcom-bff-address-book-details.cmp-form .form-checkbox:checked ~ .form-checkbox-icon::after {
  height: 1.5px;
  width: 6px;
  left: 6px;
  top: 14px;
}
.batcom-bff-checkoutaddress__modal--addressbookdetail :not(button).loading {
  background-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/spinner.svg");
  background-repeat: no-repeat;
  background-position: center;
  animation: spin 2s linear infinite;
  height: 630px;
  overflow: hidden;
}
.batcom-bff-checkoutaddress__modal--addressbookdetail :not(button).loading .batcom-bff-addressbookdetails {
  display: none;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.batcom-bff-checkoutaddress__modal--addressbookdetail .batcom-bff-checkoutaddress__modal-content {
  gap: 0;
  justify-content: space-between;
}
.batcom-bff-checkoutaddress__modal--addressbookdetail .batcom-bff-checkoutaddress__modal-btn-container {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-checkoutaddress__modal--addressbookdetail .batcom-bff-checkoutaddress__modal-btn-container {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.batcom-bff-checkoutaddress__no-address {
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
}
@media only screen and (max-width: 767px) {
  .batcom-bff-checkoutaddress__no-address-link {
    font-size: var(--batcom-typography-button-size-mobile);
    line-height: var(--batcom-typography-button-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .batcom-bff-checkoutaddress__no-address-link {
    font-size: var(--batcom-typography-button-size-tablet);
    line-height: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-checkoutaddress__no-address-link {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
.batcom-bff-checkoutaddress__no-address-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--batcom-color-palette-interactive-link-default, #1d1d1b);
  text-decoration: underline;
  cursor: pointer;
}
.batcom-bff-checkoutaddress__no-address-link:hover {
  color: var(--batcom-color-palette-interactive-link-hover, #1d1d1b);
}
@media only screen and (max-width: 767px) {
  .batcom-bff-checkoutaddress__mandatory-text {
    font-size: var(--batcom-typography-small-size-mobile);
    line-height: var(--batcom-typography-small-line-height-mobile);
  }
}
@media only screen and (min-width: 768px) {
  .batcom-bff-checkoutaddress__mandatory-text {
    font-size: var(--batcom-typography-small-size-tablet);
    line-height: var(--batcom-typography-small-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-checkoutaddress__mandatory-text {
    font-size: var(--batcom-typography-small-size-desktop);
    line-height: var(--batcom-typography-small-line-height-desktop);
  }
}
.batcom-bff-checkoutaddress__mandatory-text {
  margin-top: 0.5rem;
  color: var(--batcom-color-palette-text-functional, #1d1d1b);
}
.batcom-bff-checkoutaddress__modal--noaddress {
  width: 360px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  display: none;
}
.batcom-bff-checkoutaddress__modal--noaddress.open {
  display: block;
}
.batcom-bff-checkoutaddress__modal--noaddress .batcom-bff-checkoutaddress__modal-backdrop {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--batcom-color-palette-interactive-overlay-default, rgba(15, 23, 42, 0.2392156863));
}
.batcom-bff-checkoutaddress__modal--noaddress .batcom-bff-checkoutaddress__modal-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  justify-content: space-between;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 24px;
  background: var(--batcom-color-palette-surface-neutral-option-2, #f6f6f6);
  box-shadow: 2px -4px 12px 10px rgba(15, 23, 42, 0.06), 0 10px 24px -4px rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  width: 360px;
  max-height: 90vh;
  overflow-y: auto;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-checkoutaddress__modal--noaddress .batcom-bff-checkoutaddress__modal-content {
    width: 442px;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-bff-checkoutaddress__modal--noaddress .batcom-bff-checkoutaddress__modal-content {
    width: 588px;
    padding: 56px;
  }
}
.batcom-bff-checkoutaddress__modal--noaddress .batcom-bff-checkoutaddress__modal-crossicon {
  cursor: pointer;
  max-width: 18px;
  position: absolute;
  top: 15px;
  right: 15px;
  border: 0;
  padding: 0;
  background: transparent;
}
.batcom-bff-checkoutaddress__modal--noaddress .batcom-bff-checkoutaddress__add-new-address-label {
  align-self: center;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}
.batcom-bff-checkoutaddress__modal--noaddress .batcom-bff-checkoutaddress__addressdetail {
  width: 100%;
  height: 630px;
  overflow-y: scroll;
}
.batcom-bff-checkoutaddress__modal--noaddress .batcom-bff-checkoutaddress__addressdetail:not(button).loading {
  background-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/spinner.svg");
  background-repeat: no-repeat;
  background-position: center;
  animation: spin 2s linear infinite;
  overflow: hidden;
}
.batcom-bff-checkoutaddress__modal--noaddress .batcom-bff-checkoutaddress__addressdetail:not(button).loading .batcom-bff-addressbookdetails {
  display: none;
}
.batcom-bff-checkoutaddress__modal--noaddress .batcom-bff-checkoutaddress__modal-btn-container {
  margin-top: 1.5rem;
  width: 100%;
}
.batcom-bff-checkoutaddress__modal--noaddress form.batcom-bff-address-book-details.cmp-form {
  margin-top: 0;
}
.batcom-bff-checkoutaddress__modal--noaddress form.batcom-bff-address-book-details.cmp-form input[type=text],
.batcom-bff-checkoutaddress__modal--noaddress form.batcom-bff-address-book-details.cmp-form input[type=tel],
.batcom-bff-checkoutaddress__modal--noaddress form.batcom-bff-address-book-details.cmp-form .form-select {
  background: transparent;
  height: 48px;
  border-bottom: 1px solid var(--batcom-color-palette-border-strong, #1d1d1b);
  border-radius: 2px;
  outline: transparent;
}
.batcom-bff-checkoutaddress__modal--noaddress form.batcom-bff-address-book-details.cmp-form input[type=text]:focus-visible,
.batcom-bff-checkoutaddress__modal--noaddress form.batcom-bff-address-book-details.cmp-form input[type=tel]:focus-visible,
.batcom-bff-checkoutaddress__modal--noaddress form.batcom-bff-address-book-details.cmp-form .form-select:focus-visible {
  border: none;
  border-bottom: 2px solid var(--batcom-color-palette-border-strong, #1d1d1b);
  outline: transparent;
}
.batcom-bff-checkoutaddress__modal--noaddress form.batcom-bff-address-book-details.cmp-form label:not(.form-label) {
  margin-bottom: 4px;
}
.batcom-bff-checkoutaddress__modal--noaddress form.batcom-bff-address-book-details.cmp-form .batcom-text {
  margin-bottom: 1rem;
}
.batcom-bff-checkoutaddress__modal--noaddress form.batcom-bff-address-book-details.cmp-form .batcom-separator {
  display: none;
}
.batcom-bff-checkoutaddress__modal--noaddress form.batcom-bff-address-book-details.cmp-form .batcom-options,
.batcom-bff-checkoutaddress__modal--noaddress form.batcom-bff-address-book-details.cmp-form .batcom-separator {
  margin-bottom: 0;
}

body:has(.batcom-bff-checkoutaddress__modal--noaddress.open) {
  overflow: hidden;
}

.batcom-bff-paymentmethodcod__billing-address .js-batcom-bff-checkoutaddress .batcom-bff-addressbook__address--billing {
  display: none;
}

body:has(.batcom-bff-checkoutaddress__modal.open) {
  overflow: hidden;
}