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
*/
/*
* 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
*/
/* 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;
    }
  }
}
```
*/
.batcom-bff-paymentmethod-gmo-cc.cmp-form {
  max-width: 100%;
  margin: auto;
}
.batcom-bff-paymentmethod-gmo-cc.cmp-form .batcom-options .form-field--container .form-field-group-checkbox {
  font-size: 12px;
  line-height: 16px;
  font-family: var(--batcom-font-face-1-name);
  border: 2px solid var(--batcom-color-palette-border-default, #dedede);
  padding: 24px;
  margin-top: 16px;
}
.batcom-bff-paymentmethod-gmo-cc.cmp-form .batcom-options .form-field--container .form-options-icon {
  background-color: var(--batcom-color-palette-border-strong, #2a2a2a);
}
.batcom-bff-paymentmethod-gmo-cc.cmp-form .form-customError,
.batcom-bff-paymentmethod-gmo-cc.cmp-form .form-text__fieldError {
  display: none;
  color: var(--batcom-color-palette-text-critical, #be123c);
  font-size: 14px;
  line-height: 18px;
}
.batcom-bff-paymentmethod-gmo-cc.cmp-form .form-customError--active,
.batcom-bff-paymentmethod-gmo-cc.cmp-form .form-text__fieldError--active {
  display: block;
  margin-top: 4px;
}
.batcom-bff-paymentmethod-gmo-cc.cmp-form .form-customError.cmp-form-error__item,
.batcom-bff-paymentmethod-gmo-cc.cmp-form .form-text__fieldError.cmp-form-error__item {
  margin-bottom: 4px;
}
@media only screen and (max-width: 767px) {
  .batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input,
  .batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=text],
  .batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=email],
  .batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=password] {
    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-paymentmethod-gmo-cc.cmp-form .cmp-form-text input,
  .batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=text],
  .batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=email],
  .batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=password] {
    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-paymentmethod-gmo-cc.cmp-form .cmp-form-text input,
  .batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=text],
  .batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=email],
  .batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=password] {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
.batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input,
.batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=text],
.batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=email],
.batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=password] {
  height: auto;
  outline: none;
  box-shadow: none;
  border-radius: 2px;
  border: 0 solid transparent;
  border-bottom: 1px solid var(--batcom-color-palette-border-strong, #2a2a2a);
  background: var(--batcom-color-palette-surface-neutral-option-2, #f6f6f6);
  font-weight: var(--batcom-typography-weight-normal);
  font-family: var(--batcom-font-face-1-name);
  padding: 13px 16px;
}
.batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input::-moz-placeholder, .batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=text]::-moz-placeholder, .batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=email]::-moz-placeholder, .batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=password]::-moz-placeholder {
  color: var(--batcom-color-form-text-placeholder, #636363);
}
.batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input::placeholder,
.batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=text]::placeholder,
.batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=email]::placeholder,
.batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=password]::placeholder {
  color: var(--batcom-color-form-text-placeholder, #636363);
}
.batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input.invalid-input,
.batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=text].invalid-input,
.batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=email].invalid-input,
.batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input[type=password].invalid-input {
  border: 0 solid transparent;
  border-bottom: 2px solid var(--batcom-color-form-input-error, #f43f5e);
  box-shadow: none;
}
.batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text {
  /* stylelint-disable */
}
.batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input:-webkit-autofill,
.batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input:-webkit-autofill:hover,
.batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input:-webkit-autofill:focus,
.batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text input:-webkit-autofill:active {
  box-shadow: 0 0 0 40px var(--batcom-color-order-history-brand-bg) inset !important;
}
.batcom-bff-paymentmethod-gmo-cc.cmp-form .cmp-form-text {
  /* stylelint-enable */
}
.batcom-bff-paymentmethod-gmo-cc.cmp-form .batcom-icon__wrapper {
  gap: 4px;
}
.batcom-bff-paymentmethod-gmo-cc.cmp-form .batcom-button {
  margin: 24px 0;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-paymentmethod-gmo-cc.cmp-form .batcom-button .cmp-form-button {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
.batcom-bff-paymentmethod-gmo-cc.cmp-form .batcom-button .cmp-form-button__text {
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-body-size-mobile);
  font-weight: var(--batcom-typography-weight-normal);
  font-family: var(--batcom-font-face-1-name);
}
.batcom-bff-paymentmethod-gmo-cc.cmp-form .batcom-button .cmp-form-button.loading svg {
  display: none;
}
.batcom-bff-paymentmethod-gmo-cc.cmp-form .batcom-button .cmp-form-button.loading > span {
  filter: blur(2px);
}
.batcom-bff-paymentmethod-gmo-cc.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: #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-paymentmethod-gmo-cc.cmp-form .batcom-button .cmp-form-button.loading {
  position: relative;
}
.batcom-bff-paymentmethod-gmo-cc.cmp-form .batcom-button .cmp-form-button.batcom-is-success {
  position: relative;
}
.batcom-bff-paymentmethod-gmo-cc.cmp-form .batcom-button .cmp-form-button.batcom-is-success > span {
  filter: blur(2px);
}
.batcom-bff-paymentmethod-gmo-cc.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-bff-paymentmethod-gmo-cc .batcom-cc-text {
  margin-top: 16px;
}
.batcom-bff-paymentmethod-gmo-cc .batcom-cc-text .cmp-form-text label {
  font-size: 12px;
  line-height: 16px;
  font-weight: var(--batcom-typography-weight-normal);
  font-family: var(--batcom-font-face-1-name);
  margin-bottom: 8px;
}
.batcom-bff-paymentmethod-gmo-cc .batcom-cc-text .cmp-form-text input[data-prime-field-type=expiryDate],
.batcom-bff-paymentmethod-gmo-cc .batcom-cc-text .cmp-form-text input[data-prime-field-type=securityCode] {
  max-width: 160px;
}
.batcom-bff-paymentmethod-gmo-cc__accordion {
  position: relative;
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--batcom-color-palette-border-subdued, #b3b0aa);
  padding: 16px 12px;
  cursor: pointer;
}
.batcom-bff-paymentmethod-gmo-cc__accordion--loading ::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--batcom-color-palette-surface-neutral-option-2, #f6f6f6);
  border-top: none;
  pointer-events: none;
}
.batcom-bff-paymentmethod-gmo-cc__accordion--disabled {
  cursor: not-allowed;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .batcom-bff-paymentmethod-gmo-cc__title {
    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-paymentmethod-gmo-cc__title {
    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-paymentmethod-gmo-cc__title {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
.batcom-bff-paymentmethod-gmo-cc__title {
  color: var(--batcom-color-palette-text-functional, #000);
  font-family: var(--batcom-font-face-2-name);
  font-weight: 500;
}
.batcom-bff-paymentmethod-gmo-cc__title-icon {
  width: 25px;
  height: 24px;
}
.batcom-bff-paymentmethod-gmo-cc__text {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.batcom-bff-paymentmethod-gmo-cc__icon {
  background-color: var(--batcom-color-palette-text-functional, #000);
  display: inline-block;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/accordion-plus.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/accordion-plus.svg");
  flex-shrink: 0;
}
.batcom-bff-paymentmethod-gmo-cc__icon--expanded {
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/accordion-minus.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/accordion-minus.svg");
}
.batcom-bff-paymentmethod-gmo-cc__accordion--disabled-icon {
  display: none;
}
.batcom-bff-paymentmethod-gmo-cc__details-container {
  margin-top: 44px;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-paymentmethod-gmo-cc__details-container {
    margin-top: 24px;
  }
}
.batcom-bff-paymentmethod-gmo-cc__cardprovider-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 24px;
}
.batcom-bff-paymentmethod-gmo-cc__cardprovider-icon {
  width: 48px;
  height: 32px;
  filter: grayscale(100%) brightness(200%) contrast(100%);
}
.batcom-bff-paymentmethod-gmo-cc__cardprovider-icon.active {
  filter: none;
}
.batcom-bff-paymentmethod-gmo-cc {
  /* Chrome, Safari, Edge, Opera */
}
.batcom-bff-paymentmethod-gmo-cc input::-webkit-outer-spin-button,
.batcom-bff-paymentmethod-gmo-cc input::-webkit-inner-spin-button {
  -webkit-appearance: none; /* stylelint-disable-line */
  margin: 0;
}
.batcom-bff-paymentmethod-gmo-cc {
  /* Firefox */
}
.batcom-bff-paymentmethod-gmo-cc input[type=number] {
  -moz-appearance: textfield; /* stylelint-disable-line */
}

.batcom-bff-paymentmethod-gmo-cc__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  padding: 10px;
}
.batcom-bff-paymentmethod-gmo-cc__modal .batcom-content {
  width: auto;
  padding-top: 24px;
}
.batcom-bff-paymentmethod-gmo-cc__modal-container {
  background: var(--batcom-color-palette-surface-neutral);
  max-width: 765px;
  text-align: center;
  position: relative;
  box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.3);
  padding: 0 40px 40px;
}
.batcom-bff-paymentmethod-gmo-cc__modal-crossicon {
  position: absolute;
  top: 16px;
  right: 8px;
  cursor: pointer;
  border: none;
  background: none;
}
.batcom-bff-paymentmethod-gmo-cc__modal-crossicon img {
  width: 22px;
  height: 22px;
}
.batcom-bff-paymentmethod-gmo-cc__modal_content {
  margin-top: 24px;
  font-family: var(--batcom-font-face-1-name);
}
@media only screen and (max-width: 767px) {
  .batcom-bff-paymentmethod-gmo-cc__modal_content {
    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-paymentmethod-gmo-cc__modal_content {
    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-paymentmethod-gmo-cc__modal_content {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
.batcom-bff-paymentmethod-gmo-cc__modal_content {
  font-weight: 400;
}
.batcom-bff-paymentmethod-gmo-cc__modal_content .columncontrol__base {
  display: flex;
  justify-content: center;
  align-items: center;
}
.batcom-bff-paymentmethod-gmo-cc__modal_content .columncontrol__base .columncontrol__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-flow: nowrap;
  width: auto;
}
.batcom-bff-paymentmethod-gmo-cc__modal_content .columncontrol__base .columncontrol__wrapper .cmp-image__image {
  width: auto;
  height: 50px;
}
.batcom-bff-paymentmethod-gmo-cc__modal_content .cmp-text {
  margin: 20px 0;
}
.batcom-bff-paymentmethod-gmo-cc__modal-btn-container {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .batcom-bff-paymentmethod-gmo-cc__modal-btn-container {
    flex-direction: column;
  }
}
.batcom-bff-paymentmethod-gmo-cc__modal-btn {
  margin: 0;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .batcom-bff-paymentmethod-gmo-cc__modal-btn {
    max-width: 150px;
  }
}
.batcom-bff-paymentmethod-gmo-cc__modal-btn.batcom-button--primary:not(.active-btn) .cmp-button {
  background-color: var(--batcom-color-button-secondary-bg);
}
.batcom-bff-paymentmethod-gmo-cc__modal-btn.batcom-button--primary:not(.active-btn) .cmp-button__text {
  color: var(--batcom-color-button-secondary-text);
}
.batcom-bff-paymentmethod-gmo-cc__modal-btn .cmp-button {
  width: 100%;
  font-family: var(--batcom-font-face-4-name);
  font-weight: 500;
}
.batcom-bff-paymentmethod-gmo-cc__modal-btn .cmp-button:hover {
  background-color: var(--batcom-color-button-primary-bg);
}
.batcom-bff-paymentmethod-gmo-cc__modal-btn .cmp-button:hover .cmp-button__text {
  color: var(--batcom-color-button-primary-text);
}