/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./node_modules/string-replace-loader/index.js??ruleSet[1].rules[3]!./cartridges/app_vans/cartridge/client/default/scss/checkout-vans.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/*md
@no-stat

# Palette

This is palette settings for project/brand.
It divided into 2 main categories - palette and applied color.

* Palette is general set of colors. It could be used directly if you do not have themes.
* Applied colors designed as layer of abstraction to have ability to overwrite it on brand level.

All themes have individual logic so it almost impossible to implement some single
universal approach. Launch 360 provide basic tools for further customization
depending of your requirements.

Please see _colors.md for more information about themes.

*/
/*md
@no-stat

# Globals variables

This variables are set of different global settings that is used across sets of components.

It include:

* globals
* depth of components (box-shadow)
* motion of components

*/
/*md
@no-stat

# Breakpoints

## Launch 360 breakpoints

Launch 360 has 4 main breakpoints that targeted to [supported devices](https://confluence.ontrq.com/display/RSB/SFRA+BP+-+Supported+Browsers+and+Devices)
 - iPhone X, iPad, MS Windows desktop / Macbook Pro retina

** Please not iPad landscape - is LG breakpoint **

[See more info](https://confluence.ontrq.com/display/RSB/SFRA+-+Site+Layout+Conception)

## Supported screen resolutions

Launch 360 is come "Retina ready". It supports MDPI and XHDPI pixel density across all site.

| Device             | Screen Resolution, CSS pixels | Pixel density |
|--------------------|-------------------------------|---------------|
| Desktop Windows PC | 1920x1080                     | MDPI          |
| Macbook pro 13     | 1280x800 / 1440x900           | XHDPI         |
| iPad Air 2         | 1024x768                      | XHDPI         |
| iPhone X           | 375x812                       | XHDPI         |
| Samsung Galaxy S9  | 360x740                       | XHDPI         |

## Supported screen scaling

Launch 360 comes with support of 1:1, 1:1.25, 1.5, 1:2 screen scaling. To do so you need
to take care not only by whole pixel but pixel fractions that is used.

*/
/*md
@no-stat

# Media queries (breakpoints)

We have a `media` mixin for make it easier to implement responsive styling via media queries.

You can nest them right within other blocks of CSS,which puts the properties and values you are changing right next
to each other.
That creates an obvious connection between them, which is a much nicer authoring experience than trying to maintain
those changes separated by tons of other code or in a different file.

## Configuration

**Site Layout Conception** details with examples you can find [here](https://confluence.ontrq.com/display/RSB/SFRA+-+Site+Layout+Conception)

`media` mixin works with `$media` map where `media-name: media query`

This is how `$media` map looks:

```scss
$media: (
	sm: 'screen and (max-width: 767px)',
	md: 'screen and (min-width: 768px) and (max-width: 1199px)',
	lg: 'screen and (min-width: 1200px)',
	xl: 'screen and (min-width: 1201px)',
	md-up: 'screen and (min-width: 768px)',
	md-down: 'screen and (max-width: 1023px)',
	lg-up: 'screen and (min-width: 1024px)',
	lg-down: 'screen and (max-width: 1367px)'
);
```

## Usage

Here is how to use `media()` mixin:

```scss
.b-block {
	// styles outside of a media query

	@include media(md-up) {
		// styles for "m" and "l" viewports
	};

	@include media(sm) {
		// styles for "s" viewports
	};
}
```

Simply edit this file and add your own media queries to `$media` map.

*/
/*md
@no-stat

# Z-indexes

Z-index is an inherently tricky thing, and maintaining z-index order in a complex layout is difficult.
With different stacking orders and contexts, keeping track of them as their numbers increase can be hard.
<br />
<br />
We use sass function to help manage z-indexes from single place.
The most important requirement of this technique is sticking to it.
Any rogue hard-coded z-index values could compromise the integrity of those derived from your list.

## Usage

**We don't use hardcoded integer `z-index` values. Instead, we use indexes from the map `$z-indexes`**

### 1. Set up `$z-indexes` map
```scss
$z-indexes: (
    components: (
        component_name: (),
        checkbox: (
            before: (),
            after: (),
            icon: (),
        )
    ),
    content: (),
    popup-menu: ()
);
```

### 2. Add values in SCSS classes using `z()` function

#### Global components
```scss
.b-components { z-index: z(components); }
.b-content { z-index: z(content); }
.b-pop_up-menu { z-index: z(popup-menu); }
```

#### Inside a component
```scss
.b-component_name { z-index: z(components, component_name); }
.b-checkbox {
    &-before { z-index: z(components, checkbox, before); }
    &-after { z-index: z(components, checkbox, after); }
    &-icon { z-index: z(components, checkbox, icon); }
}
```

### 3. Get resulting CSS
```scss
.b-components { z-index: 1; }
.b-content { z-index: 2; }
.b-pop_up-menu { z-index: 3; }

.b-component_name { z-index: 1; }
.b-checkbox-before { z-index: 1; }
.b-checkbox-after { z-index: 2; }
.b-checkbox-icon { z-index: 3; }
```

*/
/*md
@no-stat

# Grids

## How to setup grids config for project

### Several grid configs for project

We can use several grid configs per project. To do this, we need to add a new grid name to the `$grids` map with settings.

```scss
$grids: (
	default: (
		//...
	),
	altered: (
		//...
	)
);
```

### Gaps / margin / column span configuration:

```scss
$grids: (
	default: (
		grid-columns: ('xl': 12,   'lg': 12,   'md': 12,   'sm': 6),
		grid-gutter:  ('xl': 20px, 'lg': 20px, 'md': 16px, 'sm': 9px),
		grid-margin:  ('xl': 88px, 'lg': 60px, 'md': 32px, 'sm': 15px),
	)
);
```

## Working with grids

### Development approaches

#### 1. Using `g-grid` mixin when css grid is applicable.

With features of `display: grid`. Please see [g-grid](02-components-g-grid.html) details.

#### 2. Using `grid-span` function to create custom layout based on (flex, float, inline-block, table etc.)

Could be used in conjunction with different display properties while maintaining their common features(floating, centering, etc.).
Please see [grid-span](01-core-functions-grid-span.html) details.

As example please see [flex based non semantic grid](05-blocks-guide-l-cols.html) like you could see before CSS grid era (Foundation, Bootstrap etc.).

#### 3. Get gaps / margin / column span to create your own grid layout system.

For that we have the next grid functions in `_grids_tools.scss`:
- grid-gutter
- grid-margin
- grid-columns

Please see [grid functions](00-configuration-grids_tools.html) details with usage examples.
*/
/*md
@no-stat

# grid-* (grid config get functions)

This functions designed to get data from grid configuration config and
use it for creating grids or reuse grid configuration into different components.

* `grid-gutter`
* `grid-columns`
* `grid-margin`

## Usage

```scss

// Configuration:

$grids: (
	default: (
		grid-columns: ('xl': 12,   'lg': 12,   'md': 12,   'sm': 6),
		grid-gutter:  ('xl': 20px, 'lg': 20px, 'md': 16px, 'sm': 9px),
		grid-margin:  ('xl': 88px, 'lg': 60px, 'md': 32px, 'sm': 15px),
	),
	altered: (
		grid-columns: ('xl': 10,   'lg': 10,   'md': 10,   'sm': 6),
		grid-gutter:  ('xl': 10px, 'lg': 10px, 'md': 10px, 'sm': 10px),
		grid-margin:  ('xl': 40px, 'lg': 30px, 'md': 30px, 'sm': 20px),
	)
);

// Usage:

.component {
	padding: grid-gutter('lg'); // => grids -> 'default' -> grid-gutter -> lg = 20px
	padding: grid-gutter('lg', 'altered'); // => => grids -> 'altered' -> grid-gutter -> lg = 10px
}

.component-b {
	margin: grid-margin('lg');
	margin: grid-margin('lg', 'altered');

	@include media(sm) {
		margin: grid-margin('sm');
	}
}

.component-c {
	width: percentage(grid-columns('lg') / 4);

	@include media(sm) {
		width: percentage(grid-columns('sm') / 2);
	}
}
```
*/
/*md
@no-stat

# adjust-color-to-bg

This function used to adjust color of some element depending on provided background color.
As basis function using luminance with human-perceived criteria as breakpoint for colors
[See more details](http://www.w3.org/TR/2008/REC-WCAG20-20081211/#relativeluminancedef).

It is especially useful for crating flexible themes.

## Arguments

```
$backgroundColor - bg color
$colorInverse - color if bg is dark. If not provided would return $color-white
$colorNormal - color if bg is light. If not provided would return $color-text

adjust-color-to-bg($backgroundColor, $colorInverse, $colorNormal)
```

## Usage

```scss
.component {
	color: adjust-color-to-bg($color-bg-header-line-1);

	// => results default 'white' if background dark
	// => results default 'black' if background is light
}

.component-custom-inverse-color {
	color: adjust-color-to-bg($color-bg-footer, grey);

	// => results 'grey' if background dark
	// => results default 'black' if background is light
}

.component-all-custom-colors {
	color: adjust-color-to-bg($color-bg-footer, green, red);

	// => result 'green' if background dark
	// => result 'red' if background is light
}
```

Based on Hugo Giraudel [work](https://css-tricks.com/snippets/sass/luminance-color-function/)
*/
/*md
@no-stat

# grid-span

`grid-span` function returns the width which 1 or several columns are takes (including inner gutters).

It returns value in percents.

This could be used for direct set to **width, max-width, flex-basis, etc.** to create
custom grid layout.

### Parameters

```scss
@function grid-span($column: 1, $break: 'lg', $with-gutter: false, $grid: 'default')
```

## Examples

### Flex-basis example

```scss
.b-grid {
	display: flex;

	.b-grid__item {
		flex-basis: grid-span($column: 3);
	}
}
```

### Floated items example

```scss
.b-grid {
	.b-grid__item {
		float: left;
		width: grid-span($column: 2);
	}
}
```

### Inline-block items example

```scss
.b-grid {
	.b-grid__item {
		display: inline-block;
		max-width: grid-span($column: 2);
	}
}
```

Please see [grid](00-configuration-grids.html) for more grid usage examples.

*/
/*md
@no-stat

# aspect-ratio

This function used to get percentage value of aspect ratio color to use in `padding` to
create container for images.

This technique used to prevent content bouncing during load and create layout shifts.

Calculation. 16:9 Aspect Ratio would result `(9 / 16) * 100 = 0.5625%`.

See proposed [specs](https://drafts.csswg.org/css-sizing-4/#aspect-ratio)

## Arguments

```
$width - width of element
$height - height of element

=> percentage

aspect-ratio($width, $height)
```

## Usage

```scss
.component {
	padding-bottom: aspect-ratio(16, 9);
	padding-bottom: aspect-ratio(1920, 1080);
	padding-bottom: aspect-ratio(1920px, 1080px);
}

.b-suggestions-item_image {
	@include g-image_container(_container, aspect-ratio(16, 9));

	img {
		@include g-image_container(_img);
	}
}
```

*/
/*md
@no-stat

# a11y-color

This function is used to adjust the text color contrast
based on the provided background color according to the WCAG AA contrast criteria (> 4.5)
*/
/*md
@no-stat

# Hide

This mixin is especially useful for hiding text
or visually hide needed elements

Here is a list of parameters you can use:

* text - helps to hide text without losing visibility for parsers
* visually - like for text but for the whole element

## Usage

```scss
.component {
	@include hide(visually);
}

.h-hide_vis {
	@include hide(visually, true);
}
```
*/
/*md
@no-stat

# Hover-supported

This mixin is designed to address iOS standard behavior of first tap - hover,
second tap - click that is engaged when control has hover styles applied.

This is critical for functionality like back-top-button. If we apply hover styles as is.
It would be activated only after second tap.

If rules are wrapped into this media it applied only in case if device have fine
pointer mechanism. [See more info](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/pointer).

Please note about mixed input devices - touch screen + mouse + touchpad,
touchpad + trackpoint, touch screen + stylus ("apple pencil") etc. -
sometimes browser do not report it properly, so logic should be builded around
exclusions.

## Usage

```scss
.component {
	@include hover-supported {
		&:hover {
			// Hover styles that should not be applied to touch
		}
	};
}
```
*/
/*md
@no-stat

# Icons from external SVG sprite (example)

`icon` mixin designed to insert an SVG icon symbol into `::before` or `::after` pseudo-elements.

Please pay attention that external SVG urls not supported in IE.

---

This mixin could come with JS automation of SVG preparation. Please ping **V.Ulanov** for details.

## Arguments

This mixin takes 4 arguments:

* icon name (ID attribute of a `<symbol/>` tag)
* icon width
* icon height
* position (before or after)

Also you can put a @content block for this mixin

## Usage

To add an icon:

* you have to manually add SVG to '../images/icons-sprite.svg' file as a symbol
* assign ID to the symbol
* add `<use/>` tag inside the sprite

To use an icon:

```scss
@include icon(icon-2);
```

Where icon name is a symbol ID in SVG sprite.

## SVG sprite template and example

```xml
<svg version="1.1" xmlns="http://www.w3.org/2000/svg">
	<symbol id="icon-1" viewBox="0 0 20 20">
		<line stroke="black" y1="10" x2="10" y2="0" />
		<line stroke="black" x1="0" y1="0" x2="10" y2="10" />
	</symbol>

	<symbol id="icon-2" viewBox="0 0 10 10" preserveAspectRatio="none">
		<g stroke="black" vector-effect="non-scaling-stroke">
			<line x1="0" y1="10" x2="10" y2="0" />
			<line x1="0" y1="0" x2="10" y2="10" />
		</g>
	</symbol>

	<!-- Preview of icons (optional) -->
	<defs><style>symbol:not(:target) { display: none; }</style></defs>
	<use x="0" y="0" href="#icon-1" />
	<use x="0" y="30" href="#icon-2" />
</svg>
```
*/
/*md
@no-stat

# RTL selector

This mixin is designed to alter styles for RTL languages.

It mostly needed for alter position:absolute left|right coords, but could be used
as facade for different selectors.

## Usage

```scss
.component {
	left: 0;
	@include rtl {
		left: initial;
		right: 0;
	};
}
```
*/
/*md

# text_overflow

This is global component designed to reduce text lines and add "..." in the end.

## Usage

```scss
.component-link {
	@include text_overflow;
}

.component-link {
	@include text_overflow(2);
}
```

*/
/*md

# g-button

Designed to provide same styles of buttons across different components.
It is possible to use with `<button>` or `<a>` elements

## First type button

```html_example
<button type="submit" class="b-button">
	Sign in
</button>
```

## First type disabled button

```html_example
<button type="submit" class="b-button m-disabled">
	Sign in
</button>
```

## First type, full width button

```html_example
<button type="submit" class="b-button m-width_full">
	Sign in
</button>
```

## Second type button

```html_example
<button type="submit" class="b-button m-secondary">
	Sign in
</button>
```

## Tertiary type button

```html_example
<button type="submit" class="b-button m-tertiary">
	Sign in
</button>
```

## Second type disabled button

```html_example
<button type="submit" class="b-button m-secondary m-disabled">
	Sign in
</button>
```

## Second type, full width button

```html_example
<button type="submit" class="b-button m-secondary m-width_full">
	Sign in
</button>
```

## CTA button

```html_example
<button type="submit" class="b-button m-cta">
	Sign in
</button>
```

## CTA button secondary

```html_example
<button type="submit" class="b-button m-cta-secondary">
	Sign in
</button>
```

## Link button

```html_example
<button type="submit" class="b-button m-link">
	Sign in
</button>
```

## Large height Link button

```html_example
<button type="submit" class="b-button m-link m-large">
	Sign in
</button>
```

## Small height Link button

```html_example
<button type="submit" class="b-button m-link m-small">
	Sign in
</button>
```

*/
/*md

# g-button_icon_only

Designed to provide same styles of buttons that contain only icon (without any text)
across different components without explicit CSS class.

It is used for header menubar icons, hamburger menu items and dialog close button.

```scss
.b-dialog {
	// ...
	&-close {
		@include g-button_icon_only;
	}
}
```
*/
/*md

# g-button_icon_round

Designed to provide same styles of round buttons that contain only icon (without any text)
across different components without explicit CSS class.

It is used for header menubar icons, hamburger menu items and dialog close button.

```scss
.b-dialog {
	// ...
	&-close {
		@include g-button_icon_round;
	}
}
```
*/
/*md

# g-input

Designed to provide same styles of inputs across different form elements.

```scss_example
.b-input {
	@include g-input {
		cursor: text;
	}

	@include hover-supported {
		&:hover {
			@include g-input(hover);
		}
	}

	&.m-invalid {
		@include g-input(error);
	}

	&:focus {
		@include g-input(focus);
	}

	&:disabled {
		@include g-input(disabled);
	}
}
```
*/
/*md

# g-radio

The component is generally used for choosing item which includes in the radio group.

It design to share same styles of radio across completely different
components:`b-payment_accordion`, `b-options_switch`, `b-refinement_radio`,
`b-variation_swatch`.

## Usage

Only one g-radio in a given group can be selected at the same time.

If user selects one option in the list that other options come to unselected.

`g-radio` has states: unchecked, checked, hover, disabled and invalid.

## Unchecked

```html_example
<div class="b-radio">
	<input type="radio" id="id-radio-2" class="b-radio-input"/>
	<div class="b-radio-icon"></div>
	<label class="b-radio-label" for="id-radio-2">Some text</label>
</div>
```

## Checked

```html_example
<div class="b-radio">
	<input type="radio" id="id-radio-3" class="b-radio-input" checked/>
	<div class="b-radio-icon"></div>
	<label class="b-radio-label" for="id-radio-3">Some text</label>
</div>
```

## Disabled unchecked

```html_example
<div class="b-radio">
	<input type="radio" id="id-radio-4" class="b-radio-input" disabled/>
	<div class="b-radio-icon"></div>
	<label class="b-radio-label" for="id-radio-4">Some text</label>
</div>
```

## Disabled checked

```html_example
<div class="b-radio">
	<input type="radio" id="id-radio-5" class="b-radio-input" checked disabled/>
	<div class="b-radio-icon"></div>
	<label class="b-radio-label" for="id-radio-5">Some text</label>
</div>
```

## Invalid unchecked

```html_example
<div class="b-radio">
	<input type="radio" id="id-radio-6" class="b-radio-input m-invalid"/>
	<div class="b-radio-icon"></div>
	<label class="b-radio-label" for="id-radio-6">Some text</label>
</div>
```

## Invalid checked

```html_example
<div class="b-radio">
	<input type="radio" id="id-radio-7" class="b-radio-input m-invalid" checked/>
	<div class="b-radio-icon"></div>
	<label class="b-radio-label" for="id-radio-7">Some text</label>
</div>
```

## Customization by SCSS

Radio button styles that used in several component.

Designed to use same style of radio in different components
ex: b-radio, b-payment_option, b-shipping_option, b-stores etc.

It provide styles only for icon element based on input node.

```scss
.b-option_switch {
	// ...
	&-input {
		@include g-radio(_input);
	}

	&-icon {
		@include g-radio(_icon);

		.b-option_switch-input:active + & {
			@include g-radio(_icon, m-active);
		}

		.b-option_switch-input:hover + & {
			@include g-radio(_icon, m-hover);
		}

		.b-option_switch-input:checked + & {
			@include g-radio(_icon, m-checked);
		}

		.b-option_switch-input[disabled] + & {
			@include g-radio(_icon, m-disabled);
		}
	}
}
```
*/
/*md

# g-checkbox

This component allows user to choose between two mutually exclusive state
(checked or unchecked).

It design to share same styles of radio across completely different
components: `b-refinements_checkbox`, `b-comparison_checkbox` etc.

## Usage

A `g-checkbox` is used for select or unselect action items.

It is always tied to `<label>` that describes two opposite states.

The component usually points to choose settings or preferences.

`g-checkbox` has states (unchecked, checked, hover, disabled and invalid).

## Unchecked
```html_example
<div class="b-checkbox">
	<input class="b-checkbox-input" type="checkbox" id="id-checkbox-1" />
	<svg class="b-checkbox-icon" width="22" height="22" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
		<path class="b-checkbox-icon_check" fill="none" stroke="currentColor" d="m5.2686 10.371 5.1528 6.9837 9.8939-11.913"/>
	</svg>
	<label class="b-checkbox-label" for="id-checkbox-1">Some text</label>
</div>
```

## Checked
```html_example
<div class="b-checkbox">
	<input class="b-checkbox-input" type="checkbox" id="id-checkbox-2" checked/>
	<svg class="b-checkbox-icon" width="22" height="22" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
		<path class="b-checkbox-icon_check" fill="none" stroke="currentColor" d="m5.2686 10.371 5.1528 6.9837 9.8939-11.913"/>
	</svg>
	<label class="b-checkbox-label" for="id-checkbox-2">Some text</label>
</div>
```

## Disabled unchecked
```html_example
<div class="b-checkbox">
	<input class="b-checkbox-input" type="checkbox" id="id-checkbox-3" disabled/>
	<svg class="b-checkbox-icon" width="22" height="22" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
		<path class="b-checkbox-icon_check" fill="none" stroke="currentColor" d="m5.2686 10.371 5.1528 6.9837 9.8939-11.913"/>
	</svg>
	<label class="b-checkbox-label" for="id-checkbox-3">Some text</label>
</div>
```

## Disabled checked
```html_example
<div class="b-checkbox">
	<input class="b-checkbox-input" type="checkbox" id="id-checkbox-4" checked disabled/>
	<svg class="b-checkbox-icon" width="22" height="22" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
		<path class="b-checkbox-icon_check" fill="none" stroke="currentColor" d="m5.2686 10.371 5.1528 6.9837 9.8939-11.913"/>
	</svg>
	<label class="b-checkbox-label" for="id-checkbox-4">Some text</label>
</div>
```

## Invalid unchecked
```html_example
<div class="b-checkbox">
	<input class="b-checkbox-input m-invalid" type="checkbox" id="id-checkbox-5"/>
	<svg class="b-checkbox-icon" width="22" height="22" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
		<path class="b-checkbox-icon_check" fill="none" stroke="currentColor" d="m5.2686 10.371 5.1528 6.9837 9.8939-11.913"/>
	</svg>
	<label class="b-checkbox-label" for="id-checkbox-5">Some text</label>
</div>
```

## Invalid checked
```html_example
<div class="b-checkbox">
	<input class="b-checkbox-input m-invalid" type="checkbox" id="id-checkbox-6" checked/>
	<svg class="b-checkbox-icon" width="22" height="22" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
		<path class="b-checkbox-icon_check" fill="none" stroke="currentColor" d="m5.2686 10.371 5.1528 6.9837 9.8939-11.913"/>
	</svg>
	<label class="b-checkbox-label" for="id-checkbox-6">Some text</label>
</div>

```

## Customization by SCSS

Checkbox styles that used in several component.

Designed to use same style of checkbox in different components without additional CSS class.
ex: `b-checkbox`, `b-refinement_checkbox`, `b-account_preference` etc.

It provide styles only for icon element based on SVG.

```scss
.b-refinement_checkbox {
	// ...
	&-icon {
		@include g-checkbox(_icon);

		.b-refinement_checkbox:active & {
			@include g-checkbox(_icon, m-active);
		}

		.b-refinement_checkbox.m-checked & {
			@include g-checkbox(_icon, m-checked);
		}

		.b-refinement_checkbox.m-disabled & {
			@include g-checkbox(_icon, m-disabled);
		}
	}
}
```
*/
/*md

# g-spinner

Global spinner component applied to different blocks that fetch data.

Designed to use same style of spinner in different components and on particular breakpoints.
Ex: `b-minicart_popup`, `b-suggestions`, `b-plp_grid`, `b-product_details`, `b-cart` etc.

```scss
.b-product_gallery {
	&.m-loading_long::before {
		@include g-spinner();
	}
	// ...
}
```
*/
/*md

# g-link

This component is designed to provide same styles of text-type links (hyperlinks)
across different components.

For UI type links see `g-link_ui`.

## Usage

```scss
// for regular cases
.b-user_content-link {
	@include g-link;
}

// for cases when text color is inverted (white, red etc) and action color will not
// be good (ex blue hover state on red alert banner)
.b-error_message-link {
	@include g-link(inherit);
}
```

*/
/*md

# g-link_ui

This component is designed to provide consistent styles of UI-type links across
different UI components. For example links in header or footer, that expected to be more
like buttons and do not have attributes that expected for text links (hyperlinks) -
to be underlined, have visited state etc.

## Usage

```scss
// for regular cases
.b-menu_bar-item {
	@include g-link_ui;
}

// for cases when text color is inverted (white, red etc) and action color will not
// be good (ex blue hover state on red alert banner)
.b-component-link {
	@include g-link_ui(inherit);
}
```

*/
/*md

# g-link_hamburger

Hamburger menu generic link that used in several component.

Designed to use same style of hamburger link in different components
ex: menu, account link, language switcher etc.

```scss
.b-menu {
	// ...
	&-item {
		@include media(sm) {
			@include g-link_hamburger;
		}
	}
}
```
*/
/*md

# g-image_container

This is global component designed to hold image in place and preventing from layout bouncing during page load.

It based on `padding-bottom` trick. `padding-bottom` and `padding-top` relative units are based
on parent element `width`. So if you had an element that is 500px wide, and padding-top of 100%,
the padding-top would be 500px. [More info](https://css-tricks.com/aspect-ratio-boxes/)

```scss
.b-suggestions-item_image {
	@include g-image_container(_container, 100%);

	img {
		@include g-image_container(_img);
	}
}

.b-suggestions-item_image {
	@include g-image_container(_container, 100%);

	img {
		@include g-image_container(_img);
	}
}
```

You could change aspect ration in mixin:

```scss
@include g-image_container(_container, 100%);   // 1:1
@include g-image_container(_container, 150%);   // 2:3
@include g-image_container(_container, 133%);   // 3:4
@include g-image_container(_container, 125%);   // 5:4
@include g-image_container(_container, 75%);    // 4:3
@include g-image_container(_container, 66.6%);  // 3:2
@include g-image_container(_container, 56.25%); // 16:9
```

But it is preferable to define only one aspect ration through all images and not change it.

*/
/*md

# g-snap_scroll

Components that apply snap scroll CSS rules to different components and cases.

Designed to use same snap scroll functionality in different components and/or on
particular breakpoints.
Ex: b-carousel, b-product_gallery, .b-product_slider etc.

```scss
.b-product_gallery {
	&-thumbs_track {
		@include g-snap_scroll($direction: y);
	}
	// ...
}
```

[Snap scroll MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Scroll_Snap)

*/
/*md

# g-backdrop_dialog

Dialog window backdrop styles that used in several components and particular breakpoints.

Serve as overlay and container to hold dialog box inside + provide scroll on overflow.
This is solution for large dialogs that scrolled inside viewport.

```scss
.b-menu_panel {
	@include media(sm) {
		@include g-backdrop_dialog;
	}
	// ...
}
```
*/
/*md

# g-backdrop_panel

Backdrop (overlay) for panels designed to handle swipe-to-close animation.

Serve as regular overlay.

```scss
.b-menu_panel {
	@include media(sm) {
		@include g-backdrop_panel;
	}
	// ...
}
```
*/
/*md

# g-section_holder

This is global component designed to hold some standalone section of the site
in the manner as it would be just wrapped into main container.

It could be used not only for standalone blocks, but also for page layouts.

```scss
.b-section {
	background: green;

	&-inner {
		@include g-section_holder;
	}
}
```
*/
/*md

# g-section_holder_header

Since header is differs from other container (g-section_holder)
we need special component with different `max-width` and `margin` than
`section_holder`.

This is global component designed to hold header of the site.

On projects it could be removed and changed to `section_holder`.

```scss
.l-header-inner {
	background: green;

	&-inner {
		@include g-section_holder_header;
	}
}
```
*/
/*md

# g-heading_*

Basic simple typography styles applied to different UI components.

This covers only very basic cases and should be extended on project.

```scss
.b-cart_empty {
	// ...

	&-title {
		@include g-heading_1;

		margin-bottom: 32px;
	}
}
```
*/
/* New style guide start */
/* New style guide end */
/*md

# g-accordion

Global accordion component

## Attributes

```
data-allow-toggle="true" - Flag that allows or disallows toggle
data-open-first="true" - Flag that open first item
data-allow-multiple="true" - Flag that allows or disallows multiple open items
```

## Simple accordion example

```html_example
<div
    data-id="descriptions"
    data-widget="accordion"
    data-allow-toggle="false"
    data-open-first="true"
    data-allow-multiple="false"
    class="b-accordion"
>
	<section
		data-widget="accordionItem"
		data-widget-event-closeallitems="closeItems"
		data-widget-event-accordionitemupdate="updateFocusedItem"
		class="b-accordion-item"
	>
		<h2>
			<button
				id="product-details-btn"
				data-ref="accordionItemBtn"
				data-event-click.prevent="togglePanel"
				data-event-keydown="handleKeydown"
				data-event-focus="handleFocus"
				class="b-accordion-button"
				type="button"
			>
				<span>Title 1</span>
				<span class="b-icon_chevron"></span>
			</button>
		</h2>
		<div
			id="product-details"
			data-ref="accordionItemPanel"
			class="b-accordion-content"
		>
			<div class="b-accordion-content_inner" data-ref="accordionItemPanelInner">
				<p>
					Long content for first item. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi dignissim bibendum neque in pellentesque. Nulla nunc sem, lacinia vitae sapien ac, blandit cursus odio. Praesent et elit condimentum, varius ligula id, ullamcorper neque.
				</p>
				<p>
					Vivamus in nulla quis nulla dapibus dictum. Aenean eu turpis et felis luctus eleifend. In ut pharetra metus. Praesent sed fringilla mauris. Donec dignissim, urna cursus euismod varius, nunc urna aliquam neque, eu posuere elit ex mollis enim. Nulla sollicitudin scelerisque faucibus. Donec porta vestibulum felis ac molestie.
				</p>
			</div>
		</div>
	</section>
	<section
		data-widget="accordionItem"
		data-widget-event-closeallitems="closeItems"
		data-widget-event-accordionitemupdate="updateFocusedItem"
		class="b-accordion-item"
	>
		<h2>
			<button
				id="delivery-and-returns-btn"
				data-ref="accordionItemBtn"
				data-event-click.prevent="togglePanel"
				data-event-keydown="handleKeydown"
				data-event-focus="handleFocus"
				class="b-accordion-button"
				type="button"
			>
				<span>Title 2</span>
				<span class="b-icon_chevron"></span>
			</button>
		</h2>
		<div
			id="delivery-and-returns"
			data-ref="accordionItemPanel"
			class="b-accordion-content"
		>
			<div class="b-accordion-content_inner" data-ref="accordionItemPanelInner">
				Content for second item
			</div>
		</div>
	</section>
	<section
		data-widget="accordionItem"
		data-widget-event-closeallitems="closeItems"
		data-widget-event-accordionitemupdate="updateFocusedItem"
		class="b-accordion-item"
	>
		<h2>
			<button
				id="delivery-and-returns-btn"
				data-ref="accordionItemBtn"
				data-event-click.prevent="togglePanel"
				data-event-keydown="handleKeydown"
				data-event-focus="handleFocus"
				class="b-accordion-button"
				type="button"
			>
				<span>Title 3</span>
				<span class="b-icon_chevron"></span>
			</button>
		</h2>
		<div
			id="delivery-and-returns"
			data-ref="accordionItemPanel"
			class="b-accordion-content"
		>
			<div class="b-accordion-content_inner" data-ref="accordionItemPanelInner">
				Content for third item
			</div>
		</div>
	</section>
</div>
```

## Accordion with multiple open items

```html_example
<div
    data-id="descriptions"
    data-widget="accordion"
    data-allow-toggle="true"
    data-open-first="false"
    data-allow-multiple="true"
    class="b-accordion"
>
	<section
		data-widget="accordionItem"
		data-widget-event-closeallitems="closeItems"
		data-widget-event-accordionitemupdate="updateFocusedItem"
		class="b-accordion-item"
	>
		<h2>
			<button
				id="product-details-btn"
				data-ref="accordionItemBtn"
				data-event-click.prevent="togglePanel"
				data-event-keydown="handleKeydown"
				data-event-focus="handleFocus"
				class="b-accordion-button"
				type="button"
			>
				<span>Title 1</span>
				<span class="b-icon_chevron"></span>
			</button>
		</h2>
		<div
			id="product-details"
			data-ref="accordionItemPanel"
			class="b-accordion-content"
		>
			<div class="b-accordion-content_inner" data-ref="accordionItemPanelInner">
				<p>
					Long content for first item. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi dignissim bibendum neque in pellentesque. Nulla nunc sem, lacinia vitae sapien ac, blandit cursus odio. Praesent et elit condimentum, varius ligula id, ullamcorper neque.
				</p>
				<p>
					Vivamus in nulla quis nulla dapibus dictum. Aenean eu turpis et felis luctus eleifend. In ut pharetra metus. Praesent sed fringilla mauris. Donec dignissim, urna cursus euismod varius, nunc urna aliquam neque, eu posuere elit ex mollis enim. Nulla sollicitudin scelerisque faucibus. Donec porta vestibulum felis ac molestie.
				</p>
			</div>
		</div>
	</section>
	<section
		data-widget="accordionItem"
		data-widget-event-closeallitems="closeItems"
		data-widget-event-accordionitemupdate="updateFocusedItem"
		class="b-accordion-item"
	>
		<h2>
			<button
				id="delivery-and-returns-btn"
				data-ref="accordionItemBtn"
				data-event-click.prevent="togglePanel"
				data-event-keydown="handleKeydown"
				data-event-focus="handleFocus"
				class="b-accordion-button"
				type="button"
			>
				<span>Title 2</span>
				<span class="b-icon_chevron"></span>
			</button>
		</h2>
		<div
			id="delivery-and-returns"
			data-ref="accordionItemPanel"
			class="b-accordion-content"
		>
			<div class="b-accordion-content_inner" data-ref="accordionItemPanelInner">
				Content for second item
			</div>
		</div>
	</section>
	<section
		data-widget="accordionItem"
		data-widget-event-closeallitems="closeItems"
		data-widget-event-accordionitemupdate="updateFocusedItem"
		class="b-accordion-item"
	>
		<h2>
			<button
				id="delivery-and-returns-btn"
				data-ref="accordionItemBtn"
				data-event-click.prevent="togglePanel"
				data-event-keydown="handleKeydown"
				data-event-focus="handleFocus"
				class="b-accordion-button"
				type="button"
			>
				<span>Title 3</span>
				<span class="b-icon_chevron"></span>
			</button>
		</h2>
		<div
			id="delivery-and-returns"
			data-ref="accordionItemPanel"
			class="b-accordion-content"
		>
			<div class="b-accordion-content_inner" data-ref="accordionItemPanelInner">
				Content for third item
			</div>
		</div>
	</section>
</div>
```

## Init accordion on sm, md & lg devices

### Attributes

```
.b-accordion
	data-widget="accordion" - init for all viewports
	data-widget.sm="accordion" - init for sm viewports
	data-widget.sm.md="accordion" - init for sm & md viewports
	data-widget.sm.md.lg="accordion" - init for sm & md & lg viewports
.b-accordion-item
	data-widget="accordionItem" - init for all viewports
	data-widget.sm="accordionItem" - init for sm viewports
	data-widget.sm.md="accordionItem" - init for sm & md viewports
	data-widget.sm.md.lg="accordionItem" - init for sm & md & lg viewports
```

```html_example
<div
    data-id="descriptions"
    data-widget.sm.md.lg="accordion"
    data-allow-toggle="true"
    data-open-first="true"
    data-allow-multiple="true"
    class="b-accordion"
>
	<section
		data-widget.sm.md.lg="accordionItem"
		data-widget-event-closeallitems.sm.md.lg="closeItems"
		data-widget-event-accordionitemupdate.sm.md.lg="updateFocusedItem"
		class="b-accordion-item"
	>
		<h2>
			<button
				id="product-details-btn"
				data-ref="accordionItemBtn"
				data-event-click.prevent.sm.md.lg="togglePanel"
				data-event-keydown.sm.md.lg="handleKeydown"
				data-event-focus.sm.md.lg="handleFocus"
				class="b-accordion-button"
				type="button"
			>
				<span>Title 1</span>
				<span class="b-icon_chevron"></span>
			</button>
		</h2>
		<div
			id="product-details"
			data-ref="accordionItemPanel"
			class="b-accordion-content"
		>
			<div class="b-accordion-content_inner" data-ref="accordionItemPanelInner">
				<p>
					Long content for first item. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi dignissim bibendum neque in pellentesque. Nulla nunc sem, lacinia vitae sapien ac, blandit cursus odio. Praesent et elit condimentum, varius ligula id, ullamcorper neque.
				</p>
				<p>
					Vivamus in nulla quis nulla dapibus dictum. Aenean eu turpis et felis luctus eleifend. In ut pharetra metus. Praesent sed fringilla mauris. Donec dignissim, urna cursus euismod varius, nunc urna aliquam neque, eu posuere elit ex mollis enim. Nulla sollicitudin scelerisque faucibus. Donec porta vestibulum felis ac molestie.
				</p>
			</div>
		</div>
	</section>
	<section
		data-widget.sm.md.lg="accordionItem"
		data-widget-event-closeallitems.sm.md.lg="closeItems"
		data-widget-event-accordionitemupdate.sm.md.lg="updateFocusedItem"
		class="b-accordion-item"
	>
		<h2>
			<button
				id="delivery-and-returns-btn"
				data-ref="accordionItemBtn"
				data-event-click.prevent.sm.md.lg="togglePanel"
				data-event-keydown.sm.md.lg="handleKeydown"
				data-event-focus.sm.md.lg="handleFocus"
				class="b-accordion-button"
				type="button"
			>
				<span>Title 2</span>
				<span class="b-icon_chevron"></span>
			</button>
		</h2>
		<div
			id="delivery-and-returns"
			data-ref="accordionItemPanel"
			class="b-accordion-content"
		>
			<div class="b-accordion-content_inner" data-ref="accordionItemPanelInner">
				Content for second item
			</div>
		</div>
	</section>
	<section
		data-widget.sm.md.lg="accordionItem"
		data-widget-event-closeallitems.sm.md.lg="closeItems"
		data-widget-event-accordionitemupdate.sm.md.lg="updateFocusedItem"
		class="b-accordion-item"
	>
		<h2>
			<button
				id="delivery-and-returns-btn"
				data-ref="accordionItemBtn"
				data-event-click.prevent.sm.md.lg="togglePanel"
				data-event-keydown.sm.md.lg="handleKeydown"
				data-event-focus.sm.md.lg="handleFocus"
				class="b-accordion-button"
				type="button"
			>
				<span>Title 3</span>
				<span class="b-icon_chevron"></span>
			</button>
		</h2>
		<div
			id="delivery-and-returns"
			data-ref="accordionItemPanel"
			class="b-accordion-content"
		>
			<div class="b-accordion-content_inner" data-ref="accordionItemPanelInner">
				Content for third item
			</div>
		</div>
	</section>
</div>
```

## Customization by SCSS

This implementation allow to use accordion for one viewport and any other component for rest viewports

```scss
.b-accordion {
	@include g-accordion;

	&-item {
		@include g-accordion(_item);
	}

	&-title {
		@include g-accordion(_control);
	}

	&-content {
		@include g-accordion(_content);

		&[aria-hidden='false'] {
			@include g-accordion(_content, expanded);
		}
	}

	&-content_inner {
		@include g-accordion(_content_inner);
	}
}
```
*/
/*md

# g-grid

g-grid is layout component based on CSS grid.

It is designed to use project defined grid (see _grids.scss) into components where CSS grid is
applicable.

As the result this component declare CSS grid configuration. Ex:

```
// scss
@include g-grid();
// css
grid-gap: 20px;
grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
```

And that it could be used to place items inside this declared grid. Ex:

```scss
.b-grid {
	@include g-grid();

	.b-columns__item {
		@include media(lg-up) {
			grid-column: 2 / span 4;
			grid-row: 1 / 2;
		}

		@include media(md-down) {
			grid-column: grid-start / span 7;
		}
	}
}
```

Please see [grid](00-configuration-grids.html) for more grid usage examples.

*/
/*md

# g-icon_chevron

Allows to use "chevron up/down" icon for "b-icon_chevron" component.

```scss
.b-footer_nav {
	@include media(sm) {
		@include g-icon_chevron;
	}
	// ...
}
```
*/
/*md

# g-icon_chevron_as_plus

Allows to use "plus/minus" icon instead of standard chevron for "b-icon_chevron" component.

```scss
.b-footer_nav {
	@include media(sm) {
		@include g-icon_chevron_as_plus;
	}
	// ...
}
```
*/
/*md

# g-selector_swatch

Global color swatch component.

```scss
.b-product_tile_swatches {
	&-swatch {
		@include g-selector_swatch(default, 32px);

		@include hover-supported {
			&:hover {
				@include g-selector_swatch(hover);
			}
		}

		&.m-selected {
			@include g-selector_swatch(selected);
		}
	}
	// ...
}
```
*/
/*md

# g-selector_tile

Global color swatch component.

```scss
.b-product_tile_swatches {
	&-swatch {
		@include g-selector_tile(default, 32px);

		@include hover-supported {
			&:hover {
				@include g-selector_tile(hover);
			}
		}

		&.m-selected {
			@include g-selector_tile(selected);
		}
	}
	// ...
}
```
*/
/*md

# g-slide_panel

```scss
.b-menu_panel {
	&-inner {
		@include media(sm) {
			@include g-slide_panel;
		}
	}
	// ...
}
```
*/
/*md

# g-message

Designed to provide same styles of messages and also alerts/notifications.

```scss_example
.b-message {
	@include g-message;

	&.m-success {
		@include g-message(success);
	}

	&.m-error {
		@include g-message(error);
	}

	&.m-warning {
		@include g-message(warning);
	}
}
```
*/
.l-checkout {
  min-height: calc(100vh - 288px);
}
.l-checkout::before {
  background: #ffffff;
  content: "";
  inset: 72px 0 0;
  position: fixed;
  z-index: 17;
}
.l-checkout::after {
  animation: 1s linear infinite rotate;
  border: 0.375em solid #262424;
  border-left-color: #f5f5f5;
  border-radius: 50%;
  border-top-color: #f5f5f5;
  content: "";
  display: block;
  height: 3em;
  margin: auto;
  pointer-events: none;
  position: relative;
  text-indent: -9999em;
  width: 3em;
  inset: calc(50% - 1.5em) auto auto calc(50% - 1.5em);
  position: fixed;
  z-index: 17;
}
.l-checkout[data-initialized]::before, .l-checkout[data-initialized]::after {
  opacity: 0;
  pointer-events: none;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s 0.4s;
  transition-property: opacity, visibility;
  visibility: hidden;
}
.l-checkout-title {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  left: 0;
  max-height: 1px;
  max-width: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 0;
}
.l-checkout-inner {
  padding-left: 80px;
  padding-right: 80px;
  margin: 0 auto;
  max-width: 1440px;
}
@media screen and (min-width: 1024px) and (max-width: 1366.9px) {
  .l-checkout-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .l-checkout-inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-checkout-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-checkout-content {
  justify-content: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .l-checkout-content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
}
.l-checkout-messages {
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .l-checkout-messages {
    margin-bottom: 32px;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .l-checkout-main {
    flex: 1;
  }
}
.l-cart.m-empty .l-checkout-main {
  min-width: 100%;
}
.l-checkout-steps_controls {
  margin-top: 16px;
}
@media screen and (min-width: 1024px) {
  .l-checkout-aside {
    margin-inline-start: 24px;
    width: 480px;
  }
}
@media screen and (max-width: 1023.9px) {
  .l-checkout-aside {
    margin-top: 60px;
  }
}
.l-order_confirmation {
  padding-left: 80px;
  padding-right: 80px;
  margin: 0 auto;
  max-width: 1440px;
}
@media screen and (min-width: 1024px) and (max-width: 1366.9px) {
  .l-order_confirmation {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .l-order_confirmation {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-order_confirmation {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-order_confirmation-inner {
  margin-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .l-order_confirmation-inner {
    display: grid;
    gap: 0 40px;
    grid-template-areas: "banner banner" "top    top" "main   aside";
    grid-template-columns: auto 480px;
  }
  .l-order_confirmation.m-guest .l-order_confirmation-inner {
    grid-template-areas: "banner banner" "top    login" "main   aside";
    grid-template-columns: auto 480px;
  }
}
@media screen and (min-width: 1367px) {
  .l-order_confirmation-inner {
    column-gap: 40px;
  }
}
.l-order_confirmation-banner {
  margin: 20px 0;
}
@media screen and (min-width: 1024px) {
  .l-order_confirmation-banner {
    grid-area: banner;
  }
}
.l-order_confirmation-top {
  margin-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .l-order_confirmation-top {
    grid-area: top;
    margin-bottom: 80px;
  }
}
.l-order_confirmation-login {
  margin-bottom: 64px;
}
@media screen and (min-width: 1024px) {
  .l-order_confirmation-login {
    grid-area: login;
    padding-top: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .l-order_confirmation-main {
    grid-area: main;
  }
}
@media screen and (min-width: 1024px) {
  .l-order_confirmation-aside {
    grid-area: aside;
    padding-top: 16px;
  }
}
@media screen and (max-width: 1023.9px) {
  .l-order_confirmation-aside_inner {
    border-top: 1px solid #cfcfcf;
    padding-top: 32px;
  }
}

/*md

# Form set

Form set is component that designed to style fieldset HTML element and divide form
to small subsets.

```
fieldset.b-form_set
	legend.b-form_set-label
```

```html_example
<form
	class="b-form"
	id="shipping"
>
	<div class="b-form-title">Form title</div>

	<fieldset class="b-form_set">
		<legend class="b-form_set-label">
			Address
		</legend>

		<div class="b-form_field">
			<label class="b-form_field-label" for="form-full-input-1">
				Town
			</label>
			<input class="b-input" type="text" placeholder="b-input" id="form-full-input-1">
		</div>

		<div class="b-form_field">
			<label class="b-form_field-label" for="form-full-input-2">
				Street
			</label>
			<input class="b-input" type="text" placeholder="b-input"  id="form-full-input-2">
		</div>
	</fieldset>
</form>
```

*/
.b-form_set {
  border: none;
  display: block;
  margin: 16px 0;
  min-width: 0;
  padding: 0;
  position: relative;
}
.b-form_set.m-shipping_method {
  margin: 28px 0 16px;
}
.b-form_set-label {
  font: 600 24px / 32px "FannDorenGrotesque", monospace;
  display: block;
  margin-bottom: 24px;
  max-width: 100%;
  padding: 0;
  white-space: normal;
  width: 100%;
}
.b-form_set-label.m-wai {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  left: 0;
  max-height: 1px;
  max-width: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 0;
}

/*md

# Form group (date)

This component is designed as special case for Date fields grouping. But it could
be used as base for different fields grouping.

```html_example
<fieldset class="b-form_group_date">
    <legend class="b-form_group_date-label">
        <span class="b-form_group_date-required_mark" aria-hidden="true">*</span>
        Card expiration date
    </legend>

    <div class="b-form_group_date-group">
		<div class="b-form_field">
			<div class="b-select">
				<select data-ref="field" class="b-select-input">
					<option value="US" data-id="02" selected="">January</option>
					<option value="CA" data-id="03">March</option>
				</select>
				<svg aria-hidden="true" class="b-select-icon" width="10" height="6" focusable="false">
					<use href="#arrow-down-small"></use>
				</svg>
			</div>
		</div>

        <div class="b-form_group_date-divider">/</div>

		<div class="b-form_field">
			<div class="b-select">
				<select data-ref="field" class="b-select-input">
					<option value="US" data-id="2015" selected="">2025</option>
					<option value="CA" data-id="2026">2026</option>
				</select>
				<svg aria-hidden="true" class="b-select-icon" width="10" height="6" focusable="false">
					<use href="#arrow-down-small"></use>
				</svg>
			</div>
		</div>
    </div>
</fieldset>
```

*/
.b-form_group_date {
  border: none;
  display: block;
  margin: 0;
  min-width: 0;
  padding: 0;
  position: relative;
}
.b-form_group_date-label {
  display: flex;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 8px;
  padding: 0;
  white-space: normal;
  width: 100%;
}
.b-form_group_date-required_mark {
  color: #a21a10;
  margin-inline-end: 4px;
}
.b-form_group_date-group {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.b-form_group_date-divider {
  align-items: center;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  height: 48px;
  margin: 0 16px;
}
.b-form_group_date .b-form_field {
  width: calc(50% - 10px);
}

.b-form_group_cvv {
  position: relative;
  width: 100%;
}
.b-form_group_cvv .b-input {
  width: calc(50% - 20px);
}
.b-form_group_cvv-image {
  align-items: center;
  display: flex;
  height: 48px;
  position: absolute;
  right: 0;
  top: 7px;
  width: 50%;
}
html[dir=rtl] .b-form_group_cvv-image {
  left: 0;
  right: initial;
}

/*md

# Textarea

Default textarea element

## Default

```html_example
	<textarea
		id=""
		class="b-textarea m-valid"
		data-ref="field"
		placeholder="Enter your text…"
		rows="5"
	></textarea>
```

## Invalid

```html_example
	<textarea
		id=""
		class="b-textarea m-invalid"
		data-ref="field"
		placeholder="Enter your text…"
		rows="5"
	></textarea>
```

*/
.b-textarea {
  font-size: 16px;
  -webkit-appearance: none;
          appearance: none;
  background: #ffffff;
  border: none;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px #cfcfcf;
  color: #000000;
  height: 48px;
  line-height: 48px;
  padding: 0 16px;
  scroll-margin-top: 150px;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: background-color, box-shadow;
  vertical-align: top;
  width: 100%;
  cursor: text;
  line-height: 1.5;
  max-width: 100%;
  min-height: 150px;
  min-width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
@media not all and (pointer: coarse) {
  .b-textarea {
    font-size: 14px;
  }
}
.b-textarea::placeholder {
  font-weight: 400;
}
.b-textarea.m-invalid {
  box-shadow: inset 0 0 0 1px var(--color-error, #a21a10);
}
.b-textarea:disabled {
  background-color: #eeeeee;
  box-shadow: inset 0 0 0 1px #cfcfcf;
  color: #757575;
  cursor: default;
  pointer-events: none;
}
.b-textarea.m-no_resize {
  resize: none;
}

/*md

# Radio

Please see [g-radio](02-components-g-radio.html) for details.

*/
.b-radio {
  align-items: center;
  display: flex;
  position: relative;
  -webkit-user-select: none;
          user-select: none;
  margin-bottom: 16px;
}
.b-radio-input {
  cursor: pointer;
  height: 20px;
  left: 0;
  opacity: 0;
  position: absolute;
  width: 20px;
  z-index: 1;
}
html[dir=rtl] .b-radio-input {
  left: initial;
  right: 0;
}
.b-radio-icon {
  background: transparent;
  border: 1px solid #cfcfcf;
  border-radius: 100%;
  cursor: pointer;
  height: 20px;
  margin-inline-end: 12px;
  min-width: 20px;
  position: relative;
  transition: border-color cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  width: 20px;
}
.b-radio-icon::-ms-check {
  display: none;
}
.b-radio-icon::before {
  background-color: #262424;
  border-radius: 100%;
  content: "";
  inset: 3px;
  margin: auto;
  position: absolute;
  transform: scale(0);
}
.b-radio-input:checked + .b-radio-icon {
  border-color: #262424;
}
.b-radio-input:checked + .b-radio-icon::before {
  transform: scale(1);
}
.b-radio-input[disabled] + .b-radio-icon {
  cursor: default;
  opacity: 0.2;
}
.b-radio-label {
  cursor: pointer;
  font-size: 12px;
  line-height: 16px;
}
.b-radio-input[disabled] ~ .b-radio-label {
  cursor: default;
  opacity: 0.2;
}

/*md

# Input password

Designed with possibility to `show/hide` masked text into input fields

```html_example
<div class="b-input_password" data-widget="inputPassword">
	<input data-ref="field" id="" type="password" class="b-input m-valid" aria-describedby="" placeholder="" name="" required="" value="" maxlength="64" aria-required="true" minlength="8" data-event-input="onPasswordInput" data-tau="" data-event-blur="validate">
	<button class="b-input_password-toggle_visibility" data-ref="showButton" data-event-click="toggleMask" data-button-text-show="Show" data-button-text-hide="Hide" aria-pressed="false" title="Toggle password field visibility" type="button">
		Show
	</button>
</div>
```

```html_example
<div class="b-input_password" data-widget="inputPassword">
	<input data-ref="field" id="" type="password" class="b-input m-valid" aria-describedby="" placeholder="" name="" required="" value="" maxlength="64" aria-required="true" minlength="8" data-event-input="onPasswordInput" data-tau="" data-event-blur="validate">
	<button class="b-input_password-toggle_visibility" data-ref="showButton" data-event-click="toggleMask" data-button-text-show="Show" data-button-text-hide="Hide" aria-pressed="false" title="Toggle password field visibility" type="button" hidden="hidden">
		Show
	</button>
</div>
```

## Error State

```html_example
<div class="b-input_password" data-widget="inputPassword">
	<input data-ref="field" id="" type="password" class="b-input m-invalid" aria-describedby="" placeholder="" name="" required="" value="" maxlength="64" aria-required="true" minlength="8" data-event-input="onPasswordInput" data-tau="" data-event-blur="validate">
	<button class="b-input_password-toggle_visibility" data-ref="showButton" data-event-click="toggleMask" data-button-text-show="Show" data-button-text-hide="Hide" aria-pressed="false" title="Toggle password field visibility" type="button" hidden="hidden">
		Show
	</button>
</div>
```
*/
.b-input_password {
  align-items: center;
  display: flex;
  position: relative;
}
.b-input_password-toggle_visibility {
  color: inherit;
  cursor: pointer;
  text-transform: none;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: opacity, color;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: max(0.1em, 1.5px);
  font-size: 12px;
  position: absolute;
  right: 16px;
}
@media not all and (pointer: coarse) {
  .b-input_password-toggle_visibility:hover {
    color: #757575;
  }
}
html[dir=rtl] .b-input_password-toggle_visibility {
  left: 16px;
  right: initial;
}
.b-input_password .b-input {
  padding-inline-end: 80px;
}
.b-input_password .b-input::-ms-reveal {
  display: none;
}

/*md

# Tabs (`b-tab_list` / `b-tab_panel`)

Tabs presents multiple mutually exclusive panes of content in the same area.
Includes a tabbed control(tab) and a content area. Clicking a tab displays its corresponding pane in the content area.

## Attributes

```
[boolean] - data-active-first - activate first tab and first tab panel
[string]  - data-active-panel - activate tab and tab panel by provided panel id
[boolean] - data-auto-activation - if tabs list should follow accessibility `Tabs with Automatic Activation` feature
```

## Usage

To get started with tabs we should link the tab and the content area.
We have a `data-panel-name` attribute on a tab and `id` attribute on the pane for that.

### Tabs with automatic activation (data-auto-activation="true")

The tab pane content will change just in case of using arrow keys.
With using just a Tab key, inactive tabs will be skipped by focus.
Click functionality works as usual.

```html_example
<div
    data-widget="tabs"
    data-auto-activation="true"
    data-active-panel="firstPanel"
    data-event-keydown="handleKeydown"
>
    <div data-ref="tablist" role="tablist" class="b-tab_list">
        <button aria-selected="true"
                class="b-tab_list-tab"
                data-panel-name="firstPanel"
                data-widget-event-click="handleTabClick"
                data-id="button-firstPanel"
                data-event-click.prevent="handleClick"
                data-widget="button"
                role="tab"
        >
            First tab
        </button>

        <button
                tabindex="-1"
                aria-selected="false"
                class="b-tab_list-tab"
                data-panel-name="secondPanel"
                data-widget-event-click="handleTabClick"
                data-id="button-secondPanel"
                data-event-click.prevent="handleClick"
                data-widget="button"
                role="tab"
        >
            Second tab
        </button>
    </div>

    <div
        role="tabpanel"
        aria-expanded="false"
        class="b-tab_panel"
        aria-labelledby="content-pane-tab"
        data-widget="tabPanel"
        id="firstPanel"
    >
        <h1>The content of a FIRST tab</h1>
        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore
            magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
            commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
            nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
            anim id est laborum.</p>
    </div>

    <div
        role="tabpanel"
        aria-expanded="false"
        class="b-tab_panel"
        aria-labelledby="content-pane-tab"
        data-widget="tabPanel"
        id="secondPanel"
    >
        <h1>The content of a SECOND tab</h1>
        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore
            magna aliqua.</p>
    </div>
</div>
```

### Tabs with manual activation (data-auto-activation="false")

The tab pane content will change just in case of using Enter/Space button on focused element.
Click functionality works as usual.

```html_example
<div
    data-widget="tabs"
    data-auto-activation="false"
    data-event-keydown="handleKeydown"
    data-active-panel="firstPanel"
>
    <div data-ref="tablist" role="tablist" class="b-tab_list">
        <button aria-selected="true"
                class="b-tab_list-tab"
                data-panel-name="firstPanel"
                data-widget-event-click="handleTabClick"
                data-id="button-firstPanel"
                data-event-click.prevent="handleClick"
                data-widget="button"
                role="tab"
        >
            First tab
        </button>

        <button
            aria-selected="false"
            class="b-tab_list-tab"
            data-panel-name="secondPanel"
            data-widget-event-click="handleTabClick"
            data-id="button-secondPanel"
            data-event-click.prevent="handleClick"
            data-widget="button"
            role="tab"
            tabindex="-1"
        >
            Second tab
        </button>
    </div>

    <div
        role="tabpanel"
        aria-expanded="false"
        class="b-tab_panel"
        aria-labelledby="content-pane-tab"
        data-widget="tabPanel"
        id="firstPanel"
    >
        <h1>The content of a FIRST tab</h1>
        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore
            magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
            commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
            nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
            anim id est laborum.</p>
    </div>

    <div
        role="tabpanel"
        aria-expanded="false"
        class="b-tab_panel"
        aria-labelledby="content-pane-tab"
        data-widget="tabPanel"
        id="secondPanel"
    >
        <h1>The content of a SECOND tab</h1>
        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore
            magna aliqua.</p>
    </div>
</div>
```

## SCSS Notes

We have two SCSS blocks for Tabs. The first is for tab controls `b-tab_list` , and the second is fortab content
areas `b-tab_panel`.
*/
.b-tab_list {
  align-items: flex-end;
  box-shadow: inset 0 -2px 0 0 #d9d9d9;
  display: flex;
  margin: 0 auto 32px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-user-select: none;
          user-select: none;
  width: 100%;
}
.b-tab_list::-webkit-scrollbar {
  display: none;
}
.b-tab_list-tab {
  -webkit-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin-inline-end: 40px;
  opacity: 0.6;
  padding: 0 0 14px;
  position: relative;
  text-decoration: none;
  text-transform: initial;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: border-color, opacity;
}
.b-tab_list-tab:last-child {
  margin-inline-end: 0;
}
.b-tab_list-tab.m-active {
  border-color: #000;
  opacity: 1;
}

.b-tab_panel {
  display: none;
  width: 100%;
}
.b-tab_panel.m-active {
  display: block;
}

.b-tab_list {
  box-shadow: inset 0 -1px 0 0 #d9d9d9;
}
@media screen and (max-width: 767.9px) {
  .b-tab_list {
    margin: 0 auto 16px;
  }
}
.b-tab_list.m-search {
  box-shadow: inset 0 -1px 0 0 #cfcfcf;
  margin: 0 auto 16px;
}
@media screen and (max-width: 767.9px) {
  .b-tab_list.m-search {
    margin: 0 auto 32px;
  }
}
.m-shop_the_look .b-tab_list {
  box-shadow: none;
  gap: 8px;
  margin: 0;
}
@media screen and (max-width: 767.9px) {
  .m-shop_the_look .b-tab_list {
    justify-content: center;
  }
}
.b-tab_list-tab {
  font-size: 16px;
  font-weight: 600;
  color: #757575;
  line-height: 1;
  opacity: 1;
  padding: 8px 0;
  transition: color cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
}
@media screen and (max-width: 767.9px) {
  .b-tab_list-tab {
    padding: 8px 0;
  }
}
.b-tab_list-tab:hover {
  color: #000000;
}
.b-tab_list-tab.m-active {
  border-color: #262424;
  color: #000000;
}
.m-shop_the_look .b-tab_list-tab.m-active {
  border-color: #262424;
}
.m-shop_the_look .b-tab_list-tab {
  border: 1px solid #cfcfcf;
  margin: 0;
  padding: 0;
}
.b-tab_list-image img {
  display: block;
  height: 62px;
  width: 62px;
}
@media screen and (max-width: 767.9px) {
  .b-tab_list-image img {
    height: 46px;
    width: 46px;
  }
}

.b-tooltip {
  display: inline-flex;
  position: relative;
  vertical-align: middle;
}
.b-tooltip.m-order_summary {
  margin-left: 2px;
}
.b-tooltip.m-pdp {
  flex: 1;
  position: static;
}
.b-tooltip-button {
  align-items: center;
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  display: flex;
  height: 24px;
  justify-content: center;
  position: relative;
  transition: opacity cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.4s;
  width: 24px;
}
.b-tooltip-button:hover, .b-tooltip-button:focus {
  opacity: 0.5;
}
.b-tooltip-button svg {
  height: 100%;
  width: 100%;
}
.b-tooltip.m-pdp .b-tooltip-button {
  color: #757575;
  margin-left: -2px;
}
.b-tooltip.m-pdp .b-tooltip-button::after {
  background-color: #f5f5f5;
  border: 1px solid #d9d9d9;
  border-style: solid none none solid;
  content: "";
  height: 20px;
  left: 6px;
  opacity: 0;
  position: absolute;
  top: calc(100% + 12px);
  transform: rotate(45deg);
  visibility: hidden;
  width: 20px;
  z-index: 3;
}
.b-tooltip.m-pdp .b-tooltip-button:hover, .b-tooltip.m-pdp .b-tooltip-button:focus {
  color: rgba(26, 26, 26, 0.3);
  opacity: 1;
}
.b-tooltip.m-pdp .b-tooltip-button:hover::after, .b-tooltip.m-pdp .b-tooltip-button:focus::after {
  opacity: 1;
  visibility: visible;
}
.m-pdp .b-tooltip-title {
  color: #757575;
  font-size: 12px;
  order: 1;
  text-wrap: nowrap;
}
.b-tooltip-container {
  font-size: 12px;
  line-height: 16px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
  opacity: 0;
  padding: 12px 16px;
  position: absolute;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.4s;
  transition-property: opacity, visibility;
  visibility: hidden;
  width: 180px;
  z-index: 2;
}
.b-tooltip-button:hover + .b-tooltip-container, .b-tooltip-button:focus + .b-tooltip-container {
  opacity: 1;
  visibility: visible;
}
.b-tooltip.m-large .b-tooltip-container {
  width: 250px;
}
.b-tooltip.m-right .b-tooltip-container {
  left: calc(100% + 8px);
  top: 0;
  transform: translateY(calc(12px - 50%));
}
.b-tooltip.m-top .b-tooltip-container {
  bottom: calc(100% + 8px);
  left: 0;
  transform: translateX(calc(12px - 50%));
}
.b-tooltip.m-bottom .b-tooltip-container {
  left: 0;
  top: calc(100% + 8px);
}
@media screen and (max-width: 767.9px) {
  .b-tooltip.m-bottom_mobile .b-tooltip-container {
    bottom: auto;
    left: 0;
    top: calc(100% + 8px);
    transform: translateX(calc(12px - 50%));
  }
}
@media screen and (max-width: 767.9px) {
  .b-tooltip.m-top_mobile .b-tooltip-container {
    bottom: calc(100% + 8px);
    left: 0;
    top: auto;
    transform: translateX(calc(12px - 50%));
  }
}
.b-tooltip.m-pdp .b-tooltip-container {
  background-color: #f5f5f5;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  box-shadow: none;
  color: #000;
  font-size: 13px;
  line-height: 21px;
  padding: 14px 16px 14px 18px;
  top: calc(100% + 22px);
  width: 100%;
}

/*md

# b-disclosure

This is basic show/hide (toggle) or show (show once) component that done by [W3C
specs](https://www.w3.org/WAI/ARIA/apg/patterns/disclosure/)

It used in explicitly on checkout address autocomplete fields disclosure and
implicitly on Cart Coupon code disclosure.

It intentionally aligned by structure with accordion component.

```html_example
<div
	class="b-disclosure"
    data-widget="disclosure"
    data-show-on-init="true"
    data-show-on-refresh="true"
>
    <button
        class="b-disclosure-button"
        type="button"
        data-event-click="toggleContent"
        aria-expanded="false"
        aria-controls="coupon-form"
        data-ref="disclosureButton"
    >
        Show more
    </button>
    <div
        class="b-disclosure-content"
        data-ref="disclosureContent"
        id="coupon-form"
        hidden="hidden"
    >
        <div class="b-disclosure-content_inner">
            ... content
        </div>
    </div>
</div>
```
*/
.b-disclosure {
  border-top: 1px solid #cfcfcf;
  margin-bottom: 16px;
  padding-top: 20px;
}
.b-disclosure-button {
  align-items: center;
  cursor: pointer;
  display: flex;
  padding: 22px 0;
  text-align: start;
  transition: opacity cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  width: 100%;
}
.b-disclosure-content {
  display: none;
  overflow: hidden;
  position: relative;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: height;
}
.b-disclosure-content[aria-hidden=false] {
  display: block;
}
.b-disclosure-content_inner {
  overflow: hidden;
  padding: 0 0 20px;
}

/*md

# b-button_multi_state

This button used to have several states, like:
"Add to cart" - "Processed" - "Added" and icon of busy state.
It currently used on PDP and Checkout with Adyen integration.

```html_example
<button class="b-button_multi_state m-processing b-button" type="button">
	<div class="b-button_multi_state-icon">
		<div class="b-button_multi_state-dot"></div>
		<div class="b-button_multi_state-dot"></div>
		<div class="b-button_multi_state-dot"></div>
	</div>
	<span>Processing...</span>
</button>
```

*/
.b-button_multi_state {
  display: inline-flex;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.b-button_multi_state:disabled, .b-button_multi_state.m-disabled {
  opacity: 1;
}
.b-button_multi_state:disabled:not(.m-processing), .b-button_multi_state.m-disabled:not(.m-processing) {
  background: #d9d9d9;
  border: #d9d9d9;
  color: #000;
}
.b-button_multi_state.m-processing {
  cursor: wait;
  pointer-events: none;
}
.b-button_multi_state.m-processing [data-ref=container] {
  display: none;
}
.b-button_multi_state-icon {
  align-items: center;
  display: none;
  gap: 4px;
  justify-content: center;
}
.b-button_multi_state.m-processing .b-button_multi_state-icon {
  display: flex;
}
.b-button_multi_state-dot {
  animation: dot-flashing 0.36s infinite ease alternate;
  background-color: #ffffff;
  border-radius: 50%;
  height: 8px;
  width: 8px;
}
.b-button_multi_state-dot:nth-child(1) {
  animation-delay: 0s;
}
.b-button_multi_state-dot:nth-child(2) {
  animation-delay: 0.12s;
}
.b-button_multi_state-dot:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes dot-flashing {
  0% {
    margin-bottom: 4px;
    opacity: 1;
  }
  90%, 100% {
    margin-bottom: 0;
    opacity: 0.5;
  }
}
/*md

# b-view_more

This is component similar to Disclosure, but folded content is focusable and once
it open it could not be closed again.

Since content always visible for screen readers component not required any roles or specific
a11y behaviour. But for keyboard users should be implemented additional behaviour:
a) When user focus some elements inside folded content should opens (in this case
button could be not tabbable)
b) or control button should be tabbable and unfold the content

It intentionally aligned by structure with accordion and disclosure component.

```html_example
<div
    class="b-view_more"
    data-widget="viewMore"
>
    Some content
    <div
        class="b-view_more-button"
        data-event-click="toggleContent"
        data-ref="viewMoreButton"
    >
        Show more
    </div>
    <div
        class="b-view_more-content"
        data-ref="viewMoreContent"
    >
        <div class="b-view_more-content_inner">
            ... some more content
        </div>
    </div>
</div>
```
*/
.b-view_more-button {
  align-items: center;
  cursor: pointer;
  display: flex;
  padding: 22px 0;
  text-align: start;
  transition: opacity cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  width: 100%;
  display: inline-flex;
  font-weight: 600;
  padding: 0 0 4px;
  position: relative;
  width: auto;
}
@media not all and (pointer: coarse) {
  .b-view_more-button:hover {
    opacity: 0.5;
  }
}
.b-view_more-button .b-icon_chevron {
  height: 10px;
  margin-inline-start: 8px;
  width: 10px;
}
.b-view_more-button .b-icon_chevron::before, .b-view_more-button .b-icon_chevron::after {
  width: 100%;
}
.b-view_more-button::after {
  background-color: #000;
  bottom: 0;
  content: "";
  height: 2px;
  position: absolute;
  width: 100%;
}
.b-view_more-content {
  height: 1px;
  overflow: hidden;
  position: relative;
}
.b-view_more-content:focus-within, .b-view_more-content.m-visible {
  height: auto;
}
.b-view_more-content_inner {
  overflow: hidden;
  padding: 0 0 20px;
  padding: 0;
}

/*md

# b-option_switch

This component allows user to choose one option for ex. shipping method, saved address etc.

```html_example
<div class="b-option_switch">
	<div class="b-option_switch-inner">
		<input id="shippingMethod-001" class="b-option_switch-input" name="dwfrm_shipping_shippingAddress_shippingMethodID" type="radio" value="001" data-value="001" data-ref="field" data-event-change="update">
		<div class="b-option_switch-icon"></div>
		<label class="b-option_switch-label" for="shippingMethod-001">
			<div class="b-option_switch-label_surface">
				<span class="b-option_switch-name">Ground</span>
				Free
			</div>
			<span class="b-option_switch-description">
				7-10 Business Days
			</span>
		</label>
	</div>
</div>
<div class="b-option_switch">
	<div class="b-option_switch-inner">
		<input id="shippingMethod-002" class="b-option_switch-input" name="dwfrm_shipping_shippingAddress_shippingMethodID" type="radio" value="002" data-value="002" data-ref="field" data-event-change="update" checked="">
		<div class="b-option_switch-icon"></div>
		<label class="b-option_switch-label" for="shippingMethod-002">
			<div class="b-option_switch-label_surface">
				<span class="b-option_switch-name">2-Day Express</span>
				$9.99
			</div>
			<span class="b-option_switch-description">
				2 Business Days
			</span>
		</label>
	</div>
</div>
```

*/
.b-option_switch {
  font-size: 12px;
  --option-indent: 24px;
  --option-icon-indent: 12px;
  padding: var(--option-indent);
  -webkit-user-select: none;
          user-select: none;
}
.b-option_switch + .b-option_switch {
  margin-top: 24px;
}
.b-option_switch-inner {
  display: flex;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .b-option_switch-inner {
    align-items: center;
  }
}
.b-option_switch-label {
  cursor: pointer;
  display: block;
  width: 100%;
}
.b-option_switch-label::before {
  border: 1px solid #cfcfcf;
  border-radius: 2px;
  bottom: calc(-1 * var(--option-indent));
  content: "";
  left: calc(-1 * var(--option-indent));
  margin-top: -1px;
  position: absolute;
  right: calc(-1 * var(--option-indent));
  top: calc(-1 * var(--option-indent));
}
.b-option_switch-input:checked ~ .b-option_switch-label::before {
  border-color: #757575;
  z-index: 1;
}
.b-option_switch-label_surface {
  align-items: flex-start;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: relative;
}
.b-option_switch-label_surface.m-center {
  align-items: center;
}
.b-option_switch-label_edit {
  margin-inline-start: 24px;
  z-index: 1;
}
.b-option_switch-input {
  cursor: pointer;
  height: 20px;
  left: 0;
  opacity: 0;
  position: absolute;
  width: 20px;
  z-index: 1;
}
html[dir=rtl] .b-option_switch-input {
  left: initial;
  right: 0;
}
.b-option_switch-icon {
  background: transparent;
  border: 1px solid #cfcfcf;
  border-radius: 100%;
  cursor: pointer;
  height: 20px;
  margin-inline-end: 12px;
  min-width: 20px;
  position: relative;
  transition: border-color cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  width: 20px;
  margin-inline-end: var(--option-icon-indent);
  position: relative;
  z-index: initial;
}
.b-option_switch-icon::-ms-check {
  display: none;
}
.b-option_switch-icon::before {
  background-color: #262424;
  border-radius: 100%;
  content: "";
  inset: 3px;
  margin: auto;
  position: absolute;
  transform: scale(0);
}
.b-option_switch-input:checked + .b-option_switch-icon {
  border-color: #262424;
}
.b-option_switch-input:checked + .b-option_switch-icon::before {
  transform: scale(1);
}
.b-option_switch-name {
  align-items: center;
  display: flex;
  flex: 1;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .b-option_switch-name {
    align-items: flex-start;
    flex-direction: column;
  }
}
.b-option_switch-display_name {
  flex: 1;
}
.b-option_switch-description {
  font-size: 12px;
  line-height: 16px;
  flex: 1;
  flex-basis: min-content;
  font-weight: initial;
}
.b-option_switch .b-price {
  flex-basis: 25%;
  font-weight: 500;
  justify-content: flex-end;
  margin-inline-start: 8px;
}
.b-option_switch.m-no_border {
  --option-indent: 0;
  --option-icon-indent: 24px;
}
.b-option_switch.m-no_border .b-option_switch-label::before {
  border: none;
}
.b-option_switch .b-summary_address {
  font-size: 14px;
}
.b-option_switch .b-summary_address-name {
  font-weight: 600;
}

/*md

# b-option_switch

This component allows user to choose one option for ex. shipping method, saved address etc.

```html_example
<div class="b-option_switch">
	<div class="b-option_switch-inner">
		<input id="shippingMethod-001" class="b-option_switch-input" name="dwfrm_shipping_shippingAddress_shippingMethodID" type="radio" value="001" data-value="001" data-ref="field" data-event-change="update">
		<div class="b-option_switch-icon"></div>
		<label class="b-option_switch-label" for="shippingMethod-001">
			<div class="b-option_switch-label_surface">
				<span class="b-option_switch-name">Ground</span>
				Free
			</div>
			<span class="b-option_switch-description">
				7-10 Business Days
			</span>
		</label>
	</div>
</div>
<div class="b-option_switch">
	<div class="b-option_switch-inner">
		<input id="shippingMethod-002" class="b-option_switch-input" name="dwfrm_shipping_shippingAddress_shippingMethodID" type="radio" value="002" data-value="002" data-ref="field" data-event-change="update" checked="">
		<div class="b-option_switch-icon"></div>
		<label class="b-option_switch-label" for="shippingMethod-002">
			<div class="b-option_switch-label_surface">
				<span class="b-option_switch-name">2-Day Express</span>
				$9.99
			</div>
			<span class="b-option_switch-description">
				2 Business Days
			</span>
		</label>
	</div>
</div>
```

*/
.b-option_switch-name {
  font-weight: 600;
}

.b-coupon_form-title {
  font-family: "FannDorenGrotesque", monospace;
  font-weight: 600;
  align-items: center;
  border-bottom: 2px solid currentcolor;
  cursor: pointer;
  display: inline-flex;
  padding-bottom: 4px;
}
.b-coupon_form-title .b-icon_chevron {
  height: 12px;
  margin-inline-start: 8px;
  width: 12px;
}
.b-coupon_form-content {
  display: none;
  overflow: hidden;
  position: relative;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: height;
  margin-top: 4px;
  visibility: visible;
}
.b-coupon_form-content[aria-hidden=false],
.b-coupon_form-content .b-coupon_form:not([data-initialized="1"]) {
  display: block;
}
.b-coupon_form-content_inner {
  overflow: hidden;
}
.b-coupon_form-error {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #a21a10;
  margin: 8px 0;
}

.b-coupon_form-title {
  font-size: 16px;
  line-height: 1.28;
  position: relative;
  width: 100%;
  border: none;
  padding-bottom: 0;
}
.b-coupon_form-title .b-icon_chevron {
  height: 16px;
  width: 16px;
}
.b-coupon_form-content {
  margin-top: 32px;
}
.b-coupon_form-content_inner {
  display: flex;
  gap: 8px;
}
.b-coupon_form .b-form_field.m-animated:not(.m-input_as_text) {
  padding-top: 0;
}

.b-coupon {
  font-size: 12px;
  margin-top: 20px;
}
.b-coupon + .b-coupon {
  margin-top: 8px;
}
.b-coupon-code {
  font-weight: 600;
}
.b-coupon-remove {
  color: inherit;
  cursor: pointer;
  text-transform: none;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: opacity, color;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: max(0.1em, 1.5px);
}
@media not all and (pointer: coarse) {
  .b-coupon-remove:hover {
    color: #757575;
  }
}

.b-need_help {
  margin-top: 48px;
}
@media screen and (max-width: 1023.9px) {
  .b-need_help {
    margin-top: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .b-need_help-list {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr 1fr;
  }
}
.b-need_help-title {
  font-size: 16px;
  font-weight: 600;
}
.b-need_help-description {
  margin-top: 12px;
}
.b-need_help-link {
  color: inherit;
  cursor: pointer;
  text-transform: none;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: opacity, color;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: max(0.1em, 1.5px);
  display: inline-block;
  margin-top: 8px;
}
@media not all and (pointer: coarse) {
  .b-need_help-link:hover {
    color: #757575;
  }
}
.b-need_help-item {
  display: flex;
  flex-basis: 50%;
  gap: 20px;
}
@media screen and (max-width: 1023.9px) {
  .b-need_help-item {
    margin-top: 48px;
  }
}
.b-need_help-item svg {
  min-width: 50px;
}

.b-reset_password {
  align-items: center;
  column-gap: 16px;
  display: grid;
  grid-template-columns: auto minmax(105px, 1fr);
  margin: 32px 0 24px;
  position: relative;
}
.b-reset_password-container {
  display: flex;
  justify-content: flex-end;
}
.b-reset_password-btn {
  color: inherit;
  cursor: pointer;
  text-transform: none;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: opacity, color;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: max(0.1em, 1.5px);
  font-size: 12px;
  line-height: 16px;
  text-align: end;
  vertical-align: top;
}
@media not all and (pointer: coarse) {
  .b-reset_password-btn:hover {
    color: #757575;
  }
}
.b-reset_password .b-form_field {
  margin: 0;
}

.b-order_details {
  margin: 0 auto;
  max-width: 1064px;
  width: 100%;
}
.b-order_details-message {
  margin-bottom: 16px;
}
.b-order_details-message:last-child {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .b-order_details-message:last-child {
    margin-bottom: 30px;
  }
}
.b-order_details-message.m-success {
  font-size: 18px;
  font-weight: 600;
}
.b-order_details-caption {
  font-weight: 600;
  font-size: 24px;
  border-bottom: 1px solid #cfcfcf;
  margin: 0 0 32px;
  padding-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .b-order_details-caption {
    font-size: 32px;
  }
}
.b-order_details-main {
  margin-bottom: 32px;
  width: 100%;
}
.b-order_details-title {
  font: 600 24px / 32px "FannDorenGrotesque", monospace;
  margin-bottom: 32px;
}
.b-order_details-bottom {
  margin-top: 32px;
}
@media screen and (max-width: 767.9px) {
  .b-order_details-bottom .b-button {
    width: 100%;
  }
}
.b-order_details-content {
  margin-top: 64px;
}
.b-order_details-aside {
  width: 100%;
}
.b-order_details-aside_inner {
  display: grid;
  gap: 24px 16px;
}
@media screen and (min-width: 768px) {
  .b-order_details-aside_inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1367px) {
  .b-order_details-aside_inner {
    grid-template-columns: 1fr repeat(3, min(21%, 200px));
  }
}
@media screen and (min-width: 1367px) {
  .b-order_details-aside_item {
    margin-top: 64px;
  }
}
@media screen and (min-width: 768px) {
  .b-order_details-aside_item:first-child {
    grid-column: 1/-1;
  }
}
@media screen and (min-width: 1367px) {
  .b-order_details-aside_item:first-child {
    grid-column: 1 span;
    margin-top: 0;
    max-width: 284px;
    width: 93%;
  }
}
.b-order_details-aside_item .b-order_details-title {
  display: none;
}
.b-order_details-aside_item:first-child .b-order_details-title {
  display: block;
}
.b-order_details-print_section {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .b-order_details-print_section {
    align-items: flex-start;
    display: flex;
    gap: 20px 32px;
    justify-content: space-between;
  }
}
.b-order_details-return_label_actions {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .b-order_details-return_label_actions {
    max-width: 336px;
  }
}
.b-order_details.m-checkout {
  background-color: #f3f3f3;
  padding: 16px;
}
.b-order_details.m-checkout .b-order_details-aside {
  padding: 0 16px;
}
.b-order_details.m-checkout .b-order_details-title {
  font-size: 16px;
  line-height: 1.28;
  font-weight: 600;
  margin-left: -16px;
  margin-right: -16px;
}

.b-payment_icon {
  background: url("./images/icons/payment-sprite.svg") no-repeat;
  background-size: cover;
  display: inline-block;
  flex-shrink: 0;
  height: 22px;
  width: 32px;
}
.b-payment_icon.m-payment_list {
  height: 37px;
  width: 54px;
}
.b-payment_icon.m-amex {
  background-position: 0% 0;
}
.b-payment_icon.m-discover {
  background-position: 16.6666666667% 0;
}
.b-payment_icon.m-visa {
  background-position: 33.3333333333% 0;
}
.b-payment_icon.m-mastercard, .b-payment_icon.m-master {
  background-position: 50% 0;
}
.b-payment_icon.m-diners, .b-payment_icon.m-dinersclub {
  background-position: 66.6666666667% 0;
}
.b-payment_icon.m-jcb, .b-payment_icon.m-japancreditbureau {
  background-position: 83.3333333333% 0;
}
.b-payment_icon.m-unionpay {
  background-position: 100% 0;
}

.b-login_email {
  position: relative;
}
.b-login_email-edit {
  color: inherit;
  cursor: pointer;
  text-transform: none;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: opacity, color;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: max(0.1em, 1.5px);
  font-size: 12px;
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 24px;
}
@media not all and (pointer: coarse) {
  .b-login_email-edit:hover {
    color: #757575;
  }
}
html[dir=rtl] .b-login_email-edit {
  left: 16px;
  right: initial;
}
.b-login_email .b-input {
  padding-inline-end: 80px;
}
.b-login_email .b-input[disabled] {
  background-color: #f5f5f5;
  opacity: 0.7;
}

.b-summary_order-item {
  color: #000000;
  margin-bottom: 24px;
}
.b-summary_order-item:last-child {
  margin: 0;
}
.b-summary_order-header {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
.b-summary_order-title {
  font: 600 24px / 32px "FannDorenGrotesque", monospace;
}

.b-checkout_accordion {
  border-top: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
  margin-bottom: 16px;
}
.b-checkout_accordion .b-icon_chevron::after, .b-checkout_accordion .b-icon_chevron::before {
  border-radius: 1px;
  width: 60%;
}
.b-checkout_accordion .b-icon_chevron::before {
  transform: translateX(-33%) rotate(45deg) scale(1, 0.8);
}
.b-checkout_accordion .b-icon_chevron::after {
  transform: translateX(33%) rotate(-45deg) scale(1, 0.8);
}
.b-checkout_accordion [data-expanded=true] ~ .b-icon_chevron::before,
.b-checkout_accordion [data-expanded=true] .b-icon_chevron::before {
  transform: translateX(-33%) rotate(-45deg) scale(1, 0.8);
}
.b-checkout_accordion [data-expanded=true] ~ .b-icon_chevron::after,
.b-checkout_accordion [data-expanded=true] .b-icon_chevron::after {
  transform: translateX(33%) rotate(45deg) scale(1, 0.8);
}
.b-checkout_accordion-head_container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.b-checkout_accordion-head_container a {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.b-checkout_accordion-item {
  padding: 0 16px;
}
.b-checkout_accordion-title {
  font-size: 18px;
  font-weight: 600;
}
.b-checkout_accordion-button {
  align-items: center;
  cursor: pointer;
  display: flex;
  padding: 22px 0;
  text-align: start;
  transition: opacity cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  width: 100%;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}
@media not all and (pointer: coarse) {
  .b-checkout_accordion-button:hover {
    opacity: 0.5;
  }
}
.b-checkout_accordion-button .b-icon_chevron {
  margin-left: 5px;
}
.b-checkout_accordion-content {
  display: none;
  overflow: hidden;
  position: relative;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: height;
}
.b-checkout_accordion-content[aria-hidden=false] {
  display: block;
}
.b-checkout_accordion-item:not([data-initialized="1"]) .b-checkout_accordion-content {
  display: block;
}
.b-checkout_accordion-content_inner {
  overflow: hidden;
  padding: 0 0 20px;
}
.b-checkout_accordion-edit_button_wrapper {
  text-align: center;
}
.b-checkout_accordion-edit_button {
  font-size: 12px;
  line-height: 1.28;
}

.b-checkout_accordion .b-icon_chevron::after, .b-checkout_accordion .b-icon_chevron::before {
  border-radius: 1px;
  width: 60%;
}
.b-checkout_accordion .b-icon_chevron::before {
  transform: translateX(-33%) rotate(45deg) scale(1, 0.8);
}
.b-checkout_accordion .b-icon_chevron::after {
  transform: translateX(33%) rotate(-45deg) scale(1, 0.8);
}
.b-checkout_accordion [data-expanded=true] ~ .b-icon_chevron::before,
.b-checkout_accordion [data-expanded=true] .b-icon_chevron::before {
  transform: translateX(-33%) rotate(-45deg) scale(1, 0.8);
}
.b-checkout_accordion [data-expanded=true] ~ .b-icon_chevron::after,
.b-checkout_accordion [data-expanded=true] .b-icon_chevron::after {
  transform: translateX(33%) rotate(45deg) scale(1, 0.8);
}
.b-checkout_accordion-button {
  padding: 24px 0;
}

.b-checkout_step {
  color: #000000;
}
.b-checkout_step + .b-checkout_step {
  border-top: 1px solid #cfcfcf;
  margin-top: 24px;
  padding-top: 24px;
}
.b-checkout_step-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .b-checkout_step-header .b-checkout_step-title {
    width: 50%;
  }
  .b-checkout_step-header .b-button {
    flex-basis: fit-content;
    text-align: end;
    width: 50%;
  }
}
.b-checkout_step-header.m-active {
  color: #000000;
}
.b-checkout_step-header.m-applied {
  color: #000000;
}
.b-checkout_step-title {
  font-size: 20px;
  line-height: 1.28;
  font-weight: 500;
  margin-bottom: 6px;
}
.b-checkout_step-saved_address_title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
}
.b-checkout_step-counter {
  align-items: center;
  border: 2px solid #d9d9d9;
  border-radius: 50%;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 16px;
  height: 30px;
  justify-content: center;
  margin-inline-end: 16px;
  width: 30px;
}
.b-checkout_step.m-active .b-checkout_step-counter {
  background-color: #000;
  border-color: #000;
  color: #ffffff;
}
.b-checkout_step-apply_icon {
  margin-inline-end: 16px;
}
.b-checkout_step-apply_icon svg {
  height: 30px;
  width: 30px;
}
.b-checkout_step-section {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .b-checkout_step-section {
    margin-bottom: 40px;
  }
}
.m-summary > .b-checkout_step-section {
  margin: 40px 0 0;
}
.b-checkout_step-content.m-summary {
  margin-bottom: 40px;
}
.b-checkout_step-controls {
  margin-top: 16px;
}
.b-checkout_step .icon-lock {
  margin-left: 16px;
  width: 20px;
}
.b-checkout_step .icon-lock .st-0 {
  stroke: rgba(26, 26, 26, 0.6);
}
.b-checkout_step .b-form_field-label {
  display: none;
}

.b-options_group label[for$=stateCode],
.b-checkout_step label[for$=stateCode] {
  display: block;
}
.b-options_group .m-valid label[for$=stateCode],
.b-checkout_step .m-valid label[for$=stateCode] {
  display: none;
}

.b-checkout-shipping_restrictions_dialog {
  border: 0;
  /* stylelint-disable-next-line order/order */
  /* stylelint-enable selector-class-pattern */
}
.b-checkout-shipping_restrictions_dialog a,
.b-checkout-shipping_restrictions_dialog button {
  margin: 0 0 16px 8px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .b-checkout-shipping_restrictions_dialog {
    /* stylelint-disable selector-class-pattern */
  }
  .b-checkout-shipping_restrictions_dialog a,
  .b-checkout-shipping_restrictions_dialog button {
    width: calc(50% - 16px);
  }
  .b-checkout-shipping_restrictions_dialog.inline a,
  .b-checkout-shipping_restrictions_dialog.inline button {
    width: calc(33% - 16px);
  }
}
.b-checkout-shipping_restrictions_dialog.inline {
  margin: 32px 0;
  /* stylelint-disable-next-line declaration-empty-line-before */
  padding: 24px;
}
.b-checkout-shipping_restrictions_dialog_container {
  display: flex;
  flex-flow: row;
  flex-wrap: nowrap;
  font-size: 14px;
  line-height: 21px;
}
.b-checkout-shipping_restrictions_dialog_container ul {
  font-weight: 600;
  list-style-type: disc;
  margin-left: 17px;
  padding: 24px 0;
}
.b-checkout-shipping_restrictions_dialog_icon {
  color: #a21a10;
  padding-right: 5px;
}
.b-checkout-shipping_restrictions_dialog_icon::before {
  background: var(--icon-color, currentColor);
  content: "";
  display: block;
  height: 24px;
  -webkit-mask-image: url("../images/icons-sprite.svg#error");
          mask-image: url("../images/icons-sprite.svg#error");
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  min-width: 24px;
  width: 24px;
}

.b-checkout_step-counter {
  display: none;
}
.b-checkout_step-saved_address_title {
  font-size: 14px;
  font-weight: 600;
}
.b-checkout_step-required {
  font-size: 12px;
  color: #757575;
}
.b-checkout_step-header {
  margin-top: 16px;
}
.b-checkout_step-header:first-child {
  margin-top: 0;
}
.b-checkout_step-edit_button {
  margin-top: 16px;
}
.b-checkout_step .b-form_field[data-widget=inputSelect].m-valid .b-form_field-label {
  display: block;
}
.b-checkout_step .b-form_field[data-widget=inputSelect].m-valid.m-interacted .b-form_field-label {
  display: none;
}

.b-billing {
  margin-top: 16px;
}
.b-billing-inner {
  border: none;
  margin: 0;
  padding: 0;
}
.b-billing-title {
  font: 600 24px / 32px "FannDorenGrotesque", monospace;
  display: block;
  margin-bottom: 16px;
}
.b-billing-description {
  font-weight: 400;
  margin-bottom: 32px;
}
.b-billing-summary .b-summary_address {
  font-size: 12px;
  margin-bottom: 24px;
}
.b-billing-use_provided {
  display: flex;
}

/*md

# b-options_group

This component designed to hold checkout section when one panel is list of something
(saved payments, saved addresses etc) and the other panel is new item form.

Currently it used only on checkout for Saved payments, saved addresses section on both steps.

```html_example
<fieldset class="b-options_group">
    <legend class="b-options_group-legend">
        Saved payments
    </legend>

    <div class="b-options_group-actions">
        <button
            class="b-options_group-control"
            data-event-click.prevent="backToAddresses"
            type="button"
        >
            <svg aria-hidden="true" width="12" height="12" viewBox="0 0 10 10" focusable="false">
				<path fill="currentColor" fill-rule="evenodd" d="M6 0v4h4v2H6v4H4V6H0V4h4V0h2z"></path>
			</svg>
            Add new payment card
        </button>
    </div>
    <div>
        List of saved payments here
    </div>
</fieldset>

<fieldset class="b-options_group">
    <legend class="b-options_group-legend">
        Add new payment
    </legend>

    <div class="b-options_group-actions">
        <button
            class="b-options_group-control"
            data-event-click.prevent="backToAddresses"
            type="button"
        >
            <svg width="10" height="17" focusable="false">
			    <path fill="currentColor" d="m7.828828,0.721626c0.39,-0.39 1.024,-0.39 1.414,0c0.39,0.39 0.39,1.024 0,1.414l-6.364,6.364l6.364,6.364c0.39,0.39 0.39,1.024 0,1.414c-0.39,0.391 -1.023,0.391 -1.414,0l-7.07,-7.07c-0.364,-0.363 -0.39,-0.935 -0.079,-1.328l0.078,-0.087l7.071,-7.07l0,-0.001z"></path>
			</svg>
            Back to saved payments
        </button>
    </div>
    <div>
        New payment card form here
    </div>
</fieldset>
```

*/
.b-options_group {
  border: none;
  margin: 24px 0 40px;
  padding: 0;
}
.b-options_group.m-payment {
  margin-bottom: 24px;
}
.b-options_group.m-payment_form {
  margin-bottom: 0;
}
.b-options_group-legend {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  left: 0;
  max-height: 1px;
  max-width: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 0;
}
.b-options_group-actions {
  margin: 20px 0 0;
}
.b-options_group-actions.m-top {
  margin: 0 0 20px;
}
.b-options_group-control {
  color: inherit;
  cursor: pointer;
  text-transform: none;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: opacity, color;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: max(0.1em, 1.5px);
  font-size: 12px;
  font-weight: 400;
  align-items: center;
  display: inline-flex;
}
@media not all and (pointer: coarse) {
  .b-options_group-control:hover {
    color: #757575;
  }
}
.b-options_group-control svg {
  display: inline-block;
  height: 14px;
  margin-inline-end: 8px;
  width: 14px;
}
.b-options_group-control.m-regular {
  font-size: 14px;
}
.b-options_group-saved_addresses {
  font-family: "FannDorenGrotesque", monospace;
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 16px;
}
.b-option_switch + .b-options_group-saved_addresses {
  margin-top: 24px;
}

.b-payment_option {
  margin-bottom: 20px;
  -webkit-user-select: none;
          user-select: none;
}
.b-payment_option-inner {
  padding: 24px;
  position: relative;
}
.b-payment_option-radio {
  -webkit-appearance: none;
          appearance: none;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.b-payment_option-label {
  align-items: center;
  cursor: pointer;
  display: flex;
  width: 100%;
}
.b-payment_option-label::before {
  border: 1px solid #cfcfcf;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.b-payment_option-radio:hover ~ .b-payment_option-label::before {
  border-color: #000000;
}
.b-payment_option-radio:checked ~ .b-payment_option-label::before {
  border-color: #000000;
}
.b-payment_option-inputs {
  display: none;
  margin-top: 16px;
}
.b-payment_option-radio:checked ~ .b-payment_option-label ~ .b-payment_option-inputs {
  display: block;
}
.b-payment_option-inputs .b-form_field {
  margin: 0;
}
.b-payment_option-inputs .b-form_field-caption {
  color: #757575;
}
.b-payment_option-details {
  font-size: 14px;
  margin-inline-start: 12px;
}
.b-payment_option-details_item {
  display: block;
}

.b-payment_accordion {
  margin-bottom: 24px;
}
.b-payment_accordion.m-zero_payment {
  border-top: 0;
  margin-bottom: -8px;
}
.b-payment_accordion-item {
  border: 1px solid #cfcfcf;
  margin-top: 24px;
}
.b-payment_accordion.m-zero_payment .b-payment_accordion-item {
  border: 0;
}
.b-payment_accordion-head {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  width: 100%;
}
.b-payment_accordion-label {
  font-size: 16px;
  font-weight: 500;
  flex-grow: 1;
  text-align: start;
}
.b-payment_accordion.m-zero_payment .b-payment_accordion-label {
  margin-bottom: 24px;
}
.b-payment_accordion-img {
  max-height: 20px;
  overflow: initial;
}
.b-payment_accordion-content {
  display: none;
  overflow: hidden;
  position: relative;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: height;
}
.b-payment_accordion-content[aria-hidden=false] {
  display: block;
}
.b-payment_accordion-content_inner {
  border-top: 1px solid #cfcfcf;
  margin: 0 24px;
  padding: 1px 0;
}
.b-payment_accordion.m-zero_payment .b-payment_accordion-content_inner {
  border: 0;
  margin: 0;
}
.b-payment_accordion-button {
  align-items: baseline;
  display: flex;
  padding: 24px;
  width: 100%;
}
.b-payment_accordion-icon {
  background: transparent;
  border: 1px solid #cfcfcf;
  border-radius: 100%;
  cursor: pointer;
  height: 20px;
  margin-inline-end: 12px;
  min-width: 20px;
  position: relative;
  transition: border-color cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  width: 20px;
  align-self: center;
  margin-inline-start: 2px;
  z-index: initial;
}
.b-payment_accordion-icon::-ms-check {
  display: none;
}
.b-payment_accordion-icon::before {
  background-color: #262424;
  border-radius: 100%;
  content: "";
  inset: 3px;
  margin: auto;
  position: absolute;
  transform: scale(0);
}
.b-payment_accordion-button[data-expanded=true] .b-payment_accordion-icon {
  border-color: #262424;
}
.b-payment_accordion-button[data-expanded=true] .b-payment_accordion-icon::before {
  transform: scale(1);
}

.b-payment_accordion-content[data-tau=payment-details-KLARNA--pay_over_time] {
  display: grid;
  grid-template-rows: 0fr;
  height: auto !important;
  transition: grid-template-rows cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
}
.b-payment_accordion-content[data-tau=payment-details-KLARNA--pay_over_time] .b-payment_accordion-content_inner {
  border-top: none;
  overflow: hidden;
  padding: 0;
}
.b-payment_accordion-content[data-tau=payment-details-KLARNA--pay_over_time][aria-hidden=false] {
  grid-template-rows: 1fr;
}
.b-payment_accordion-content[data-tau=payment-details-KLARNA--pay_over_time][aria-hidden=false] .b-payment_accordion-content_inner {
  border-top: 1px solid #cfcfcf;
  padding: 1px 0;
}

.b-payment_gift_certificate {
  margin-bottom: 32px;
}
.b-payment_gift_certificate-button {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  font-weight: 600;
  padding: 0 0 4px;
  position: relative;
  text-align: start;
  transition: opacity cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
}
@media not all and (pointer: coarse) {
  .b-payment_gift_certificate-button:hover {
    opacity: 0.5;
  }
}
.b-payment_gift_certificate-button::after {
  background-color: #000;
  bottom: 0;
  content: "";
  height: 2px;
  position: absolute;
  width: 100%;
}
.b-payment_gift_certificate-button .b-icon_chevron {
  height: 10px;
  margin-inline-start: 8px;
  width: 10px;
}
.b-payment_gift_certificate-button .b-icon_chevron::before, .b-payment_gift_certificate-button .b-icon_chevron::after {
  width: 100%;
}
.b-payment_gift_certificate-content {
  display: none;
  overflow: hidden;
  position: relative;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: height;
}
.b-payment_gift_certificate-content[aria-hidden=false], .b-payment_gift_certificate-item:not([data-initialized="1"]) .b-payment_gift_certificate-content {
  display: block;
}
.b-payment_gift_certificate-content_inner {
  overflow: hidden;
}
.b-payment_gift_certificate-caption {
  margin: 20px 0;
}
.b-payment_gift_certificate-applied_list_item {
  margin: 8px 0;
}
.b-payment_gift_certificate-applied_list_item:first-child {
  margin-top: 16px;
}
.b-payment_gift_certificate-applied_list_item:last-child {
  margin-bottom: 0;
}
.b-payment_gift_certificate-check_balance.b-button {
  font-family: "FannDorenGrotesque", monospace;
  font-weight: 600;
}
.b-payment_gift_certificate-apply {
  margin-bottom: 16px;
}
.b-payment_gift_certificate-balance:not(:empty) {
  margin-top: 20px;
}
.b-payment_gift_certificate-full_cover {
  margin: 24px 0 -16px;
}
.b-payment_gift_certificate-full_cover_message {
  font-weight: 600;
  margin-bottom: 16px;
}
.b-payment_gift_certificate-full_cover_email {
  font-weight: 600;
}

.b-payment_gift_card {
  display: flex;
  flex-direction: column;
  background-color: #f3f3f3;
  padding: 16px;
}
.b-payment_gift_card-button {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  justify-content: space-between;
  text-align: start;
  transition: opacity cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  width: 100%;
}
.b-payment_gift_card-button .b-icon_chevron {
  height: 10px;
  width: 10px;
}
.b-payment_gift_card-button .b-icon_chevron::before, .b-payment_gift_card-button .b-icon_chevron::after {
  width: 100%;
}
.b-payment_gift_card-content {
  display: none;
  overflow: hidden;
  position: relative;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: height;
}
.b-payment_gift_card-content[aria-hidden=false], .b-payment_gift_card-item:not([data-initialized="1"]) .b-payment_gift_card-content {
  display: block;
}
.b-payment_gift_card-content_inner {
  overflow: hidden;
  padding: 16px 0 0;
}
.b-payment_gift_card-info {
  margin-bottom: 16px;
}
.b-payment_gift_card-info_limit {
  margin: 0 0 4px;
  font-size: 14px;
}
.b-payment_gift_card-info_note {
  margin: 0;
  font-size: 14px;
  color: #757575;
}
.b-payment_gift_card-applied_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}
.b-payment_gift_card-applied_card {
  padding: 12px 0;
  min-width: 120px;
}
.b-payment_gift_card-applied_card_info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.b-payment_gift_card-applied_card_amount {
  font-weight: 600;
  font-size: 16px;
}
.b-payment_gift_card-applied_card_number {
  font-size: 14px;
  color: #757575;
}
.b-payment_gift_card-remove_link {
  display: inline;
  padding: 0;
  margin-top: 4px;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  color: #000000;
}
@media not all and (pointer: coarse) {
  .b-payment_gift_card-remove_link:hover {
    opacity: 0.7;
  }
}
.b-payment_gift_card-add_new {
  margin: 8px 0 16px;
}
.b-payment_gift_card-add_new_button {
  display: inline;
  padding: 0;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  color: #000000;
}
@media not all and (pointer: coarse) {
  .b-payment_gift_card-add_new_button:hover {
    opacity: 0.7;
  }
}
.b-payment_gift_card-form {
  display: flex;
  flex-direction: column;
}
.b-payment_gift_card-form_actions {
  margin-top: 16px;
  width: 100%;
}
.b-payment_gift_card-apply {
  width: 100%;
}
.b-payment_gift_card-balance:not(:empty) {
  margin-top: 20px;
}
.b-payment_gift_card .b-form_field {
  margin-bottom: 8px;
}

.b-privacy_check {
  margin-top: 24px;
}

.b-confirmation_create_account {
  font-size: 12px;
  width: 100%;
}
@media screen and (max-width: 1023.9px) {
  .b-confirmation_create_account {
    border-top: 1px solid #cfcfcf;
    padding-top: 32px;
  }
}
.b-confirmation_create_account-title {
  font: 600 24px / 32px "FannDorenGrotesque", monospace;
  margin-bottom: 16px;
}
.b-confirmation_create_account .b-content_asset {
  margin-bottom: 16px;
}

.b-confirmation_header-title, .b-confirmation_header-subtitle, .b-confirmation_header-caption {
  max-width: 848px;
}
.b-confirmation_header-title {
  font-size: 40px;
  line-height: 1.28;
  font-weight: 800;
  margin-bottom: 16px;
}
.b-confirmation_header-caption {
  font-size: 16px;
  line-height: 1.28;
  margin-bottom: 16px;
}
.b-confirmation_header-subtitle {
  font: 600 24px / 32px "FannDorenGrotesque", monospace;
  margin-bottom: 16px;
}
.b-confirmation_header-order_number {
  font-weight: 700;
}
.b-confirmation_header-email {
  text-decoration: underline;
}
.b-confirmation_header-details_item {
  text-align: start;
}
.b-confirmation_header-details_name {
  display: none;
  font-weight: 600;
  margin-bottom: 8px;
}
.b-confirmation_header-name {
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .b-confirmation_header-name {
    display: block;
  }
}
.b-confirmation_header-value.m-wrapped {
  word-break: break-word;
}
.b-confirmation_header-order_information_list {
  font-size: 16px;
  line-height: 1.28;
}
.b-confirmation_header-order_information_item_value {
  font-weight: 600;
}
.b-confirmation_header-shipping_method {
  font-size: 16px;
  line-height: 1.28;
  margin-bottom: 24px;
  margin-top: 32px;
  padding-top: 40px;
  border-top: 1px solid #757575;
}
.b-confirmation_header .b-checkout_products {
  margin-bottom: 40px;
}

.b-confirmation_summary-item {
  margin-bottom: 32px;
}

.b-confirmation_sms_subscribe {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .b-confirmation_sms_subscribe-button {
    width: 50%;
  }
}
.b-confirmation_sms_subscribe-caption {
  align-items: center;
  display: flex;
  font-weight: 600;
  margin-bottom: 32px;
}
@media screen and (max-width: 1023.9px) {
  .b-confirmation_sms_subscribe-caption {
    align-items: flex-start;
  }
}
.b-confirmation_sms_subscribe-caption svg {
  flex-shrink: 0;
  margin-right: 10px;
}
.b-confirmation_sms_subscribe-text {
  font-size: 12px;
  margin-bottom: 8px;
}
.b-confirmation_sms_subscribe-title {
  font: 600 24px / 32px "FannDorenGrotesque", monospace;
  margin-bottom: 32px;
}

@media screen and (min-width: 1024px) {
  .b-confirmation_sms_subscribe .b-form_field[data-widget=inputTel],
  .b-confirmation_sms_subscribe .b-confirmation_sms_subscribe-button {
    max-width: 420px;
  }
}

.b-checkout_products-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.b-summary_section {
  margin-bottom: 16px;
}
.b-summary_section.m-accepted_methods {
  margin-bottom: 0;
}
.b-summary_section-or {
  font-size: 12px;
  line-height: 16px;
  margin: 16px 0;
  text-align: center;
  text-transform: uppercase;
}
.b-summary_section-inner {
  background-color: #f3f3f3;
  padding: 16px;
}
.b-summary_section-header {
  font-size: 16px;
  line-height: 1.28;
  font-weight: 500;
}

.b-summary_table {
  font-size: 12px;
  width: 100%;
}
.b-summary_table-name, .b-summary_table-value {
  text-align: start;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 400;
  padding: 0;
}
.b-summary_table-name {
  font-weight: 500;
  padding-inline-end: 16px;
}
.b-summary_table-name.m-tooltip {
  align-items: center;
  display: flex;
}
.b-summary_table-name_details {
  display: none;
}
.b-summary_table-value {
  text-align: end;
  vertical-align: top;
  white-space: nowrap;
}
.b-summary_table-value.m-top_align {
  vertical-align: top;
}
.b-summary_table-item {
  display: table;
  width: 100%;
  border: none;
  margin-top: 12px;
}
.b-summary_table-item.m-total {
  border-top: 2px dashed #757575;
}
.b-summary_table-item.m-total .b-summary_table-name, .b-summary_table-item.m-total .b-summary_table-value {
  font-size: 20px;
  font-weight: 600;
  padding-top: 16px;
}
.b-summary_table-tax {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}
.b-summary_table .m-small {
  font-size: 12px;
  line-height: 16px;
}

.b-summary_address {
  word-break: break-word;
  border-radius: 4px;
  border: 1px solid #cfcfcf;
  padding: 16px;
}
.b-summary_address-default {
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  background: #d9d9d9;
  border-radius: 4px;
  margin-top: 8px;
  max-width: max-content;
  padding: 6px 8px;
  text-transform: uppercase;
}
.b-summary_address-name {
  font-size: 16px;
  line-height: 1.28;
  font-weight: 600;
}
.b-option_switch-label_surface .b-summary_address-name {
  font-weight: 600;
}

.b-summary_shipping {
  border-radius: 4px;
  border: 1px solid #cfcfcf;
  padding: 16px;
}
.b-summary_shipping-arrival_time {
  color: #757575;
  display: block;
}
.b-summary_shipping-cost {
  font-weight: 600;
  margin-inline-start: auto;
}

.b-summary_payment {
  border-radius: 4px;
  border: 1px solid #cfcfcf;
  padding: 16px;
}
.b-summary_payment-item {
  margin-bottom: 12px;
  word-wrap: break-word;
}
.b-summary_payment-item_title {
  font-weight: 600;
  margin-bottom: 12px;
}
.b-summary_payment-grouped {
  align-items: center;
  display: flex;
  gap: 8px;
  min-height: 20px;
}
.b-summary_payment-line {
  display: block;
}

.b-summary_group {
  margin-bottom: 24px;
}
.b-summary_group-item + .b-summary_group-item {
  margin-top: 16px;
}
.b-summary_group-email {
  font-weight: 400;
  word-wrap: break-word;
}
.b-summary_group-title {
  font-size: 20px;
  line-height: 1.28;
  font-weight: 600;
  margin-bottom: 16px;
}
.b-summary_group-label {
  font-weight: 600;
}
.b-summary_group-caption {
  color: #757575;
}
.b-summary_group-message {
  color: #457030;
  font-weight: 500;
  margin-top: 20px;
}

.b-summary_group.m-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.b-summary_group.m-columns .b-summary_group-item {
  margin-top: 0;
  width: calc(50% - 12px);
}
.b-summary_group.m-columns .b-summary_group-item.m-gift {
  margin-top: 24px;
  width: 100%;
}

.b-summary_email {
  font-size: 20px;
}

.b-matched_addresses-entry_title {
  font-weight: 600;
  margin-bottom: 16px;
}
.b-matched_addresses-footer {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .b-matched_addresses-footer {
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
  }
}
.b-matched_addresses .b-option_switch-name {
  font-weight: 600;
  margin-bottom: 8px;
}

.b-footer_simplified {
  background-color: #000;
  color: #ffffff;
  padding: 40px 0;
}
.b-footer_simplified-inner {
  padding-left: 80px;
  padding-right: 80px;
  margin: 0 auto;
  max-width: 1920px;
}
@media screen and (min-width: 1024px) and (max-width: 1366.9px) {
  .b-footer_simplified-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .b-footer_simplified-inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-footer_simplified-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.b-footer_simplified-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .b-footer_simplified-content {
    flex-direction: column;
  }
}
.b-footer_simplified-help {
  font-size: 18px;
  margin-bottom: 24px;
}
.b-footer_simplified-info {
  text-align: end;
}
@media screen and (max-width: 767.9px) {
  .b-footer_simplified-info {
    margin-top: 24px;
    text-align: start;
  }
}
.b-footer_simplified-list {
  display: flex;
  flex-wrap: wrap;
}
.b-footer_simplified-item {
  margin-inline-end: 24px;
}
.b-footer_simplified-link {
  color: inherit;
  cursor: pointer;
  text-transform: none;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: opacity, color;
  text-decoration: none;
}
@media not all and (pointer: coarse) {
  .b-footer_simplified-link:hover {
    color: #757575;
  }
}
.b-footer_simplified-security_shopping {
  margin-bottom: 24px;
}

/* stylelint-disable declaration-no-important */
.b-klarna_payment > div {
  min-width: 240px !important;
}

.adyen-checkout__store-details {
  display: none;
}

.adyen-checkout__card-input .adyen-checkout-input__inline-validation {
  display: none;
}
.adyen-checkout__card-input .adyen-checkout__label__text {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}
.adyen-checkout__card-input .adyen-checkout__label .adyen-checkout__label__text {
  color: inherit;
}
.adyen-checkout__card-input .adyen-checkout__error-text {
  color: #a21a10;
  font-size: 12px;
  margin-top: 8px;
}
.adyen-checkout__card-input .adyen-checkout__input {
  border: 0;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
  caret-color: auto;
  color: #000000;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  height: 48px;
  line-height: 48px;
  padding: 0;
  position: relative;
  vertical-align: baseline;
  width: 100%;
  -webkit-appearance: none;
}
.adyen-checkout__card-input .adyen-checkout__input::placeholder {
  color: #f5f5f5;
}
.adyen-checkout__card-input .adyen-checkout__input--focus:hover, .adyen-checkout__card-input .adyen-checkout__input:active, .adyen-checkout__card-input .adyen-checkout__input:active:hover, .adyen-checkout__card-input .adyen-checkout__input:focus, .adyen-checkout__card-input .adyen-checkout__input:focus:hover, .adyen-checkout__card-input .adyen-checkout__input:required {
  border: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}
.adyen-checkout__card-input .adyen-checkout__input--error, .adyen-checkout__card-input .adyen-checkout__input--error:hover, .adyen-checkout__card-input .adyen-checkout__input--invalid, .adyen-checkout__card-input .adyen-checkout__input--invalid:required {
  background: #ffdada;
  box-shadow: inset 0 0 0 2px #a21a10;
}
.adyen-checkout__card-input .adyen-checkout__input--disabled,
.adyen-checkout__card-input .adyen-checkout__input--text {
  padding: 0 16px;
}
.adyen-checkout__card-input .adyen-checkout__checkbox {
  border: 2px solid transparent;
}
.adyen-checkout__card-input .adyen-checkout__checkbox__label {
  font-size: 14px;
  padding-left: 34px;
}
.adyen-checkout__card-input .adyen-checkout__checkbox__input {
  width: 22px;
  height: 24px;
}
.adyen-checkout__card-input .adyen-checkout__checkbox__input + .adyen-checkout__checkbox__label:after,
.adyen-checkout__card-input .adyen-checkout__checkbox__input:focus + .adyen-checkout__checkbox__label:after {
  background: transparent;
  border: 1px solid #cfcfcf;
  border-radius: 2px;
  cursor: pointer;
  height: 20px;
  margin-inline-end: 12px;
  min-width: 20px;
  position: relative;
  transition: border-color cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  width: 20px;
  box-shadow: none;
  display: inline-block;
  height: 22px;
  left: 0;
  position: absolute;
  top: 0;
  width: 22px;
}
.adyen-checkout__card-input .adyen-checkout__checkbox__input + .adyen-checkout__checkbox__label:after path,
.adyen-checkout__card-input .adyen-checkout__checkbox__input:focus + .adyen-checkout__checkbox__label:after path {
  transform: scale(0);
  transform-origin: center center;
}
.adyen-checkout__card-input .adyen-checkout__checkbox__input:checked + .adyen-checkout__checkbox__label:after,
.adyen-checkout__card-input .adyen-checkout__checkbox__input:checked:hover + .adyen-checkout__checkbox__label:after {
  border: 2px solid #000;
  background-color: initial;
  box-shadow: none;
}
.adyen-checkout__card-input .adyen-checkout__checkbox__input[disabled] + .adyen-checkout__checkbox__label {
  color: #d9d9d9;
  cursor: default;
}
.adyen-checkout__card-input .adyen-checkout__checkbox__input[disabled] + .adyen-checkout__checkbox__label:after {
  border-color: #d9d9d9;
  cursor: default;
}
.adyen-checkout__card-input .adyen-checkout__checkbox__input[disabled] + .adyen-checkout__checkbox__label:before {
  border-color: transparent #d9d9d9 #d9d9d9 transparent;
}
.adyen-checkout__card-input .adyen-checkout__checkbox__input:hover:not(:focus) + .adyen-checkout__checkbox__label:after {
  border-color: #000;
}
.adyen-checkout__card-input .adyen-checkout__checkbox__input + .adyen-checkout__checkbox__label:before {
  border-color: transparent #000 #000 transparent;
  border-radius: 0 4px 0 3px;
  border-width: 2px;
  left: 2px;
  top: 2px;
  height: 14px;
  width: 9px;
}
.adyen-checkout__card-input .adyen-checkout__checkbox__input:hover:not(:focus) + .adyen-checkout__checkbox__label:after {
  border-color: initial;
  box-shadow: none;
}

.adyen-checkout__threeds2__challenge.adyen-checkout__threeds2__challenge {
  margin-top: 32px;
  min-height: 634px;
}

.b-payment_accordion-content .adyen-checkout__paypal__buttons .paypal-buttons-context-iframe {
  height: 48px !important;
}

body {
  overflow: auto;
  overflow-y: scroll;
  pointer-events: all;
  visibility: var(--page_visibility, hidden);
}

/*# sourceMappingURL=checkout-vans.css.map*/