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
*/
.cmp-batcom-agegate {
  display: flex;
  visibility: visible;
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  background: var(--batcom-color-age-gate-bg-gradient);
  background-color: var(--batcom-color-age-gate-bg);
}

.batcom-agegate__content {
  display: block;
  position: relative;
  flex: 0 1 auto;
  max-width: 668px;
  width: calc(100% - var(--batcom-layout-content-left-right-margin));
  max-height: calc(100dvh - var(--batcom-layout-content-left-right-margin));
}
@media only screen and (min-width: 768px) {
  .batcom-agegate__content {
    width: 100%;
  }
}
.batcom-agegate__content-data {
  padding: 2rem;
  overflow: auto;
  max-height: calc(100dvh - var(--batcom-layout-content-left-right-margin));
  background: var(--batcom-color-palette-3);
  text-align: center;
  box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.12);
}
.batcom-agegate__logo {
  width: 100%;
  max-width: 160px;
  margin: 0 auto 1rem;
}
.batcom-agegate__provinces-select {
  height: 2.5rem;
  padding: 0.5rem 1rem;
  width: 100%;
  margin: 0.5rem 0 1.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.5rem;
  background: var(--batcom-color-form-select-input) url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-down.svg") no-repeat center right 1rem;
  border: 2px solid var(--batcom-color-form-select-border);
  color: var(--batcom-color-body-text);
}
@media only screen and (min-width: 768px) {
  .batcom-agegate__provinces-select {
    width: 300px;
  }
}
.batcom-agegate__provinces-select:focus {
  outline: none;
}
.batcom-agegate__provinces-select:focus-visible {
  outline: 1px auto var(--batcom-color-button-outline);
  outline-offset: 4px;
}
.batcom-container--primary-dark .batcom-agegate__provinces-select:focus-visible, .batcom-container--secondary-dark .batcom-agegate__provinces-select:focus-visible, .batcom-container--tertiary-dark .batcom-agegate__provinces-select:focus-visible {
  --batcom-color-button-outline: var(--batcom-color-button-outline-inverted);
}
.batcom-agegate__heading {
  margin-bottom: 0.75rem;
}
.batcom-agegate__text {
  margin-bottom: var(--batcom-layout-spacing-xl, 32px);
  font-size: 1rem;
  line-height: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .batcom-agegate__text {
    margin-bottom: var(--batcom-layout-spacing-l, 24px);
  }
}
.batcom-agegate__text {
  display: flex;
  flex-direction: column;
  gap: var(--batcom-layout-spacing-s, 12px);
}
@media only screen and (max-width: 1023px) {
  .batcom-agegate__languagenavigation {
    display: block;
  }
}
.batcom-agegate__languagenavigation .batcom-languagenavigation__container {
  display: block;
  width: auto;
}
.batcom-agegate__languagenavigation .batcom-languagenavigation__buttons {
  display: flex;
  justify-content: space-evenly;
  flex-flow: row wrap;
}
@media only screen and (max-width: 767px) {
  .batcom-agegate__languagenavigation .batcom-languagenavigation__buttons .batcom-agegate__languagenavigation-button.cmp-button {
    padding: 8px;
    margin-bottom: 10px;
  }
}
.batcom-agegate__languagenavigation .batcom-languagenavigation__toggle {
  display: none;
}
.batcom-agegate__buttons {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.batcom-agegate__buttons .batcom-button {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .batcom-agegate__buttons .batcom-button {
    width: 100%;
  }
}
.batcom-agegate__buttons .batcom-button.batcom-agegate__button-over-age .cmp-button {
  --batcom-button-text: var(--batcom-color-button-primary-text);
  --batcom-button-text-hover: var(--batcom-color-button-primary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-primary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-primary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-primary-border);
  --batcom-button-border-hover: var(--batcom-color-button-primary-border-hover);
  --batcom-button-icon: var(--batcom-color-button-primary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-primary-text-hover);
}
.batcom-agegate__footnote {
  font-size: 0.75rem;
  line-height: 1.125rem;
}
@media only screen and (max-width: 767px) {
  .batcom-agegate__bg-image-desktop {
    /* stylelint-disable */
    display: none !important;
    visibility: hidden !important;
    /* stylelint-enable */
  }
}
.batcom-agegate__bg-image-desktop {
  position: absolute;
  z-index: -1;
}
.batcom-agegate__bg-image-desktop .cmp-image {
  width: 100vw;
  height: 100vh;
}
.batcom-agegate__bg-image-desktop .cmp-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (min-width: 768px) {
  .batcom-agegate__bg-image-mobile {
    /* stylelint-disable */
    display: none !important;
    visibility: hidden !important;
    /* stylelint-enable */
  }
}
.batcom-agegate__bg-image-mobile .cmp-image__image {
  position: fixed;
  min-width: 100vw;
  min-height: 100vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}

.batcom-canada .batcom-agegate__buttons .batcom-button.batcom-agegate__button-over-age .cmp-button {
  --batcom-button-text: var(--batcom-color-button-teal-text, #fff);
  --batcom-button-text-hover: var(--batcom-color-button-teal-text-hover, #fff);
  --batcom-button-bg: var(--batcom-color-button-teal-bg, #027f9c);
  --batcom-button-bg-hover: var(--batcom-color-button-teal-bg, #027f9c);
  --batcom-button-border: var(--batcom-color-button-teal-bg, #027f9c);
  --batcom-button-border-hover: var(--batcom-color-button-teal-bg, #027f9c);
  --batcom-button-icon: var(--batcom-color-button-primary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-primary-text-hover);
}
.batcom-canada .batcom-agegate__buttons .batcom-button.batcom-button--secondary .cmp-button {
  --batcom-button-text: var(--batcom-color-button-teal-secondary-text, #027f9c);
  --batcom-button-text-hover: var(--batcom-color-button-teal-secondary-text-hover, #027f9c);
  --batcom-button-bg: var(--batcom-color-button-teal-secondary-bg, transparent);
  --batcom-button-bg-hover: var(--batcom-color-button-teal-secondary-bg, transparent);
  --batcom-button-border: var(--batcom-color-button-teal-secondary-bg, #027f9c);
  --batcom-button-border-hover: var(--batcom-color-button-teal-secondary-bg, #027f9c);
}

/* Prevent the Age Gate to be shown in Editor Mode in content pages */
html.aem-AuthorLayer-Edit .batcom-experiencefragment .cmp-batcom-agegate {
  /* stylelint-disable */
  display: none !important;
  visibility: hidden !important;
  /* stylelint-enable */
}

.zoki {
  color: red;
}