/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/pdp-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-pdp {
  margin-top: 16px;
}
@media screen and (max-width: 1023.9px) {
  .l-pdp {
    margin-top: -64px;
  }
}
.m-quick_view .l-pdp {
  margin: 0;
}
.l-pdp-set_title {
  padding-left: 80px;
  padding-right: 80px;
  margin: 0 auto;
  max-width: 1440px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) and (max-width: 1366.9px) {
  .l-pdp-set_title {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .l-pdp-set_title {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-pdp-set_title {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-pdp-main {
  transition: opacity cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.4s;
}
.l-pdp-main.m-busy {
  cursor: wait;
}
.m-quick_view .l-pdp-main {
  padding: 0;
}
.l-pdp-top {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .l-pdp-top {
    align-items: start;
    display: grid;
    grid-template-columns: 1fr 416px;
    grid-template-rows: auto 1fr;
  }
}
.m-busy .l-pdp-top {
  opacity: 0.6;
  pointer-events: none;
}
.m-quick_view .l-pdp-top {
  align-items: center;
  border-bottom: 0;
  column-gap: 0;
  grid-template-rows: 100% 1fr;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .m-quick_view .l-pdp-top {
    padding: 0;
  }
}
@media screen and (max-width: 1023.9px) {
  .m-quick_view .l-pdp-top {
    padding-bottom: 0;
    padding-top: 0;
  }
}
@media screen and (max-width: 1023.9px) {
  .m-shop_the_look .l-pdp-top {
    padding-top: 154px;
  }
}
.l-pdp-details {
  position: relative;
}
@media screen and (max-width: 1023.9px) {
  .l-pdp-details {
    margin-top: 24px;
  }
}
.m-quick_view .l-pdp-details {
  display: flex;
  flex-flow: column;
}
@media screen and (max-width: 1023.9px) {
  .m-quick_view .l-pdp-details {
    margin-top: 12px;
    position: static;
  }
}
@media screen and (min-width: 1024px) {
  .m-quick_view .l-pdp-details {
    scrollbar-color: #000 var(--color-bg, #ffffff);
    scrollbar-width: thin;
    height: 640px;
    max-height: 640px;
    overflow-y: auto;
  }
  .m-quick_view .l-pdp-details::-webkit-scrollbar {
    height: 4px;
    width: 4px;
  }
  .m-quick_view .l-pdp-details::-webkit-scrollbar-thumb {
    background: #000;
  }
  .m-quick_view .l-pdp-details::-webkit-scrollbar-track {
    background: var(--color-bg, #ffffff);
  }
}
.l-pdp-full_details {
  margin-top: 24px;
  text-align: center;
}
.l-pdp-slots {
  padding-left: 80px;
  padding-right: 80px;
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
}
@media screen and (min-width: 1024px) and (max-width: 1366.9px) {
  .l-pdp-slots {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .l-pdp-slots {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-pdp-slots {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-pdp-slots .b-promo_info_box {
  margin: 80px 0;
}
@media screen and (max-width: 1023.9px) {
  .l-pdp-slots .b-promo_info_box {
    margin: 60px 0;
  }
}
.l-pdp-widget:not(:empty) {
  margin: 60px auto;
}
@media screen and (min-width: 1024px) {
  .l-pdp-widget:not(:empty) {
    margin: 80px auto;
  }
}
.l-pdp-review {
  padding-left: 80px;
  padding-right: 80px;
  margin: 0 auto;
  max-width: 1440px;
  margin: 25px auto;
}
@media screen and (min-width: 1024px) and (max-width: 1366.9px) {
  .l-pdp-review {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .l-pdp-review {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-pdp-review {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .l-pdp-review {
    margin: 80px auto;
  }
}
@media screen and (min-width: 1024px) {
  .l-pdp .b-shop_the_look {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767.9px) {
  .l-pdp-legacy {
    display: flex;
    flex-direction: column;
  }
  .l-pdp-legacy .l-pdp-image {
    order: 2;
  }
  .l-pdp-legacy .l-pdp-details {
    order: 1;
  }
}
.l-pdp-legacy .b-product_gallery-main {
  margin: 0;
}
.l-pdp-legacy .b-badges-item {
  background-color: #f5f5f5;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 13.8px;
  max-width: unset;
  padding: 3px 8px;
  text-transform: uppercase;
}
.l-pdp-legacy .b-product_legacy-callout {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 12px 0 32px;
}
.l-pdp-legacy .b-product_legacy-callout_title {
  font-weight: 600;
}

.l-pdp_no_ctx {
  display: flex;
}
@media screen and (max-width: 767.9px) {
  .l-pdp_no_ctx {
    flex-direction: column;
  }
}
.l-pdp_no_ctx-main {
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  grid-area: main;
  justify-content: center;
  min-height: 600px;
  padding: 32px;
}
.l-pdp_no_ctx-title, .l-pdp_no_ctx-rating {
  background: #f5f5f5;
  height: 50px;
}
.l-pdp_no_ctx-title {
  margin-bottom: 20px;
  width: 100%;
}
.l-pdp_no_ctx-rating {
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .l-pdp_no_ctx .b-product_gallery-thumbs {
    flex-direction: column;
  }
}

.l-section {
  padding-left: 80px;
  padding-right: 80px;
  margin: 0 auto;
  max-width: 1440px;
  margin-bottom: 64px;
  margin-top: 64px;
}
@media screen and (min-width: 1024px) and (max-width: 1366.9px) {
  .l-section {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .l-section {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .l-section {
    margin-bottom: 44px;
    margin-top: 44px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-section {
    margin-bottom: 12px;
    margin-top: 12px;
  }
}
.l-section.m-full_bleed {
  max-width: 1920px;
  padding-left: 0;
  padding-right: 0;
}
.l-clp > .l-section:first-of-type, .l-hp > .l-section:first-of-type, .l-clp > div:first-of-type .l-section, .l-hp > div:first-of-type .l-section {
  margin-top: 0;
}
.l-hp .l-section > .b-promo_box ~ .b-promo_box,
.l-hp .l-section > .b-promo_box ~ .b-promo_info_box {
  margin-bottom: 64px;
  margin-top: 64px;
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .l-hp .l-section > .b-promo_box ~ .b-promo_box,
  .l-hp .l-section > .b-promo_box ~ .b-promo_info_box {
    margin-bottom: 44px;
    margin-top: 44px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-hp .l-section > .b-promo_box ~ .b-promo_box,
  .l-hp .l-section > .b-promo_box ~ .b-promo_info_box {
    margin-bottom: 12px;
    margin-top: 12px;
  }
}

/*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

# 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;
}

.b-input_value_preset {
  border: none;
  display: block;
  margin: 16px 0;
  min-width: 0;
  padding: 0;
  position: relative;
}
.b-input_value_preset-legend {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  max-width: 100%;
  padding: 0;
  white-space: normal;
  width: 100%;
}
.b-input_value_preset-presets_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.b-input_value_preset-presets_item {
  position: relative;
}
.b-input_value_preset-presets_item input {
  cursor: pointer;
  height: 100%;
  opacity: 0;
  position: absolute;
  width: 100%;
}
.b-input_value_preset-button {
  font-size: 16px;
  font-weight: 600;
  align-items: center;
  background: #ffffff;
  border: 1px solid #949494;
  border-radius: 2px;
  color: #000000;
  display: flex;
  height: var(--swatch-size-tile, 44px);
  justify-content: center;
  min-width: 64px;
  overflow: hidden;
  padding: 4px 15px;
  position: relative;
  text-align: center;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: background-color, border-color, color;
  width: auto;
}
@media not all and (pointer: coarse) {
  .b-input_value_preset-presets_item input:hover + .b-input_value_preset-button {
    border-color: #000000;
    cursor: pointer;
  }
}
.b-input_value_preset-presets_item input:checked + .b-input_value_preset-button {
  border-color: #000000;
  border-width: 2px;
}
.b-input_value_preset-input {
  position: relative;
}
.b-input_value_preset-input input {
  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%;
  padding-left: 30px;
}
@media not all and (pointer: coarse) {
  .b-input_value_preset-input input {
    font-size: 14px;
  }
}
.b-input_value_preset-input input::placeholder {
  font-weight: 400;
}
[data-locale=en_CA] .b-input_value_preset-input input, [data-locale=fr_CA] .b-input_value_preset-input input {
  padding-left: 42px;
}
.b-input_value_preset-input input:focus {
  box-shadow: inset 0 0 0 1px #2a2a2a;
}
.b-input_value_preset-input_wrapper.m-invalid .b-input_value_preset-input input {
  box-shadow: inset 0 0 0 1px var(--color-error, #a21a10);
}
.b-input_value_preset-currency {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  height: 48px;
  line-height: 48px;
  padding: 1px 0 0 16px;
  position: absolute;
}
.b-input_value_preset-input_wrapper {
  margin-bottom: 16px;
  position: relative;
}
.b-input_value_preset-input_wrapper .b-form_field-label.m-text {
  font-size: 12px;
  font-weight: 400;
  background: #ffffff;
  color: #757575;
  left: 10px;
  padding: 0 5px;
  position: absolute;
  top: -8px;
  z-index: 1;
}

/*md

# b-scrollable_table

Mobile friendly tabular data component.

This table has an inner scroll on mobile devices with sticky cell headers. On desktop and tablet devices will be shown the usual table.

## Example
```html_example
<div class="b-scrollable_table">
	<div class="b-scrollable_table-content">
	    <table class="b-scrollable_table-table">
	        <tbody>
	            <tr>
	                <th scope="row">
	                    <strong>US</strong>
	                </th>
	                <td>
	                    <strong>2</strong>
	                </td>
	                <td>
	                    <strong>4</strong>
	                </td>
	                <td>
	                    <strong>6</strong>
	                </td>
	                <td>
	                    <strong>8</strong>
	                </td>
	                <td>
	                    <strong>10</strong>
	                </td>
	                <td>
	                    <strong>12</strong>
	                </td>
	            </tr>
	            <tr>
	                <th scope="row">
	                    <strong>EURO</strong>
	                </th>
	                <td>
	                    <strong>34</strong>
	                </td>
	                <td>
	                    <strong>36</strong>
	                </td>
	                <td>
	                    <strong>38</strong>
	                </td>
	                <td>
	                    <strong>40</strong>
	                </td>
	                <td>
	                    <strong>42</strong>
	                </td>
	                <td>
	                    <strong>44</strong>
	                </td>
	            </tr>
	            <tr>
	                <th scope="row">
	                    <strong>UK</strong>
	                </th>
	                <td>
	                    <strong>6</strong>
	                </td>
	                <td>
	                    <strong>8</strong>
	                </td>
	                <td>
	                    <strong>10</strong>
	                </td>
	                <td>
	                    <strong>12</strong>
	                </td>
	                <td>
	                    <strong>14</strong>
	                </td>
	                <td>
	                    <strong>16</strong>
	                </td>
	            </tr>
	            <tr>
	                <th scope="row">CHEST</th>
	                <td>80/31</td>
	                <td>80/32</td>
	                <td>86/34</td>
	                <td>91/36</td>
	                <td>96/38</td>
	                <td>101/40</td>
	            </tr>
	            <tr>
	                <th scope="row">WAIST</th>
	                <td>63/25</td>
	                <td>65/26</td>
	                <td>65/27</td>
	                <td>74/30</td>
	                <td>79/31</td>
	                <td>84/33</td>
	            </tr>
	            <tr>
	                <th scope="row">HIPS</th>
	                <td>89/35</td>
	                <td>91/36</td>
	                <td>94/37</td>
	                <td>99/39</td>
	                <td>104/41</td>
	                <td>109/43</td>
	            </tr>
	        </tbody>
	    </table>
	</div>
</div>
```
*/
.b-scrollable_table {
  margin: 16px 0;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .b-scrollable_table::after {
    background-color: #f5f5f5;
    bottom: 0;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
  }
}
.b-scrollable_table-content {
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .b-scrollable_table-content {
    border-left: 2px solid #f5f5f5;
    overflow: auto;
  }
}
.b-scrollable_table-table {
  border: 2px solid #f5f5f5;
  border-collapse: collapse;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .b-scrollable_table-table {
    border-left: 0;
  }
}
.b-scrollable_table th {
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  font-weight: normal;
  min-width: 70px;
  padding: 12px 8px;
  text-align: start;
  width: 1px;
}
@media screen and (min-width: 1024px) {
  .b-scrollable_table th {
    min-width: 110px;
    padding: 12px 24px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-scrollable_table th {
    background-clip: padding-box;
    border-left: 0;
    left: 0;
    position: sticky;
  }
}
@media screen and (max-width: 767.9px) {
  .b-scrollable_table th::after {
    background-color: #f5f5f5;
    bottom: 0;
    content: "";
    position: absolute;
    right: -1px;
    top: 0;
    width: 1px;
  }
}
.b-scrollable_table td {
  border: 1px solid #f5f5f5;
  min-width: 90px;
  padding: 12px 8px;
  text-align: center;
}
@media screen and (min-width: 1024px) and (max-width: 1366.9px) {
  .b-scrollable_table td {
    padding: 12px 24px;
  }
}

/*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-variation_swatch

This component designed to provide unified way to display different types of
product variation and categorization.

## Color swatch
```html_example
<button
	id="variation-swatch-button-Green"
	role="radio"
	class="b-variation_swatch m-swatch"
	aria-label="Color Black"
	title="Green"
	aria-checked="false"
	aria-disabled="false"
>
	<span data-attr-value="Black" class="b-variation_swatch-value">
		<span class="b-variation_swatch-color_value" style="background-color: #2e7d32"></span>
		<span class="b-variation_swatch-value_overlay"></span>
	</span>
	<span class="b-variation_swatch-name">Green</span>
</button>
```

## Color swatch selected
```html_example
<button
	id="variation-swatch-button-Green"
	role="radio"
	class="b-variation_swatch m-swatch"
	aria-label="Color Black"
	title="Green"
	aria-checked="true"
	aria-disabled="false"
>
	<span data-attr-value="Black" class="b-variation_swatch-value">
		<span class="b-variation_swatch-color_value" style="background-color: #2e7d32"></span>
		<span class="b-variation_swatch-value_overlay"></span>
	</span>
	<span class="b-variation_swatch-name">Green</span>
</button>
```

## Color swatch disabled
```html_example
<button
	id="variation-swatch-button-Green"
	role="radio"
	class="b-variation_swatch m-swatch m-disabled"
	aria-label="Color Black"
	title="Green (not available)"
	aria-checked="false"
	aria-disabled="true"
>
	<span data-attr-value="Black" class="b-variation_swatch-value">
		<span class="b-variation_swatch-color_value" style="background-color: #2e7d32"></span>
		<span class="b-variation_swatch-value_overlay"></span>
	</span>
	<span class="b-variation_swatch-name">Green</span>
</button>
```

## Size swatch
```html_example
<button
	id="variation-swatch-button-XSmall"
	role="radio"
	class="b-variation_swatch"
	aria-label="Size XS"
	title="XSmall"
	aria-checked="false"
	aria-disabled="false"
>
	<span class="b-variation_swatch-value">
		XS
		<span class="b-variation_swatch-value_overlay"></span>
	</span>
	<span class="b-variation_swatch-name">XSmall</span>
</button>
```

## Size swatch selected
```html_example
<button
	id="variation-swatch-button-XSmall"
	role="radio"
	class="b-variation_swatch"
	aria-label="Size XS"
	title="XSmall"
	aria-checked="true"
	aria-disabled="false"
>
	<span class="b-variation_swatch-value">
		XS
		<span class="b-variation_swatch-value_overlay"></span>
	</span>
	<span class="b-variation_swatch-name">XSmall</span>
</button>
```

## Size swatch disabled
```html_example
<button
	id="variation-swatch-button-XSmall"
	role="radio"
	class="b-variation_swatch m-disabled"
	aria-label="Size XS"
	title="XSmall (not available)"
	aria-checked="false"
	aria-disabled="true"
>
	<span class="b-variation_swatch-value">
		XS
		<span class="b-variation_swatch-value_overlay"></span>
	</span>
	<span class="b-variation_swatch-name">XSmall</span>
</button>
```

## Size swatch flex width
```html_example
<button
	id="variation-swatch-button-XSmall"
	role="radio"
	class="b-variation_swatch m-flex"
	aria-label="Size XS"
	title="XSmall"
	aria-checked="false"
	aria-disabled="false"
>
	<span class="b-variation_swatch-value">
		2-3 yrs
		<span class="b-variation_swatch-value_overlay"></span>
	</span>
	<span class="b-variation_swatch-name">XSmall</span>
</button>
```
*/
.b-variation_swatch {
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
  margin-inline-end: 8px;
  margin-top: 8px;
  -webkit-user-select: none;
          user-select: none;
  width: 5.2rem;
  height: 6.5rem;
}
.b-variation_swatch[data-attr-is-selected=true] {
  cursor: default;
}
.b-variation_swatch-name {
  background-color: #ffffff;
  display: none;
  left: 0;
  overflow: hidden;
  position: absolute;
  text-align: start;
  text-overflow: ellipsis;
  top: 0;
  white-space: nowrap;
  width: calc(100% - 100px);
  z-index: 1;
}
html[dir=rtl] .b-variation_swatch-name {
  left: initial;
  right: 0;
}
.b-variation_swatch[data-attr-is-selected=true] .b-variation_swatch-name {
  display: block;
}
@media not all and (pointer: coarse) {
  .b-variation_swatch:hover .b-variation_swatch-name {
    display: block;
    z-index: 2;
  }
}
.b-variation_swatch.m-attribute_color .b-variation_swatch-name {
  width: 100%;
}
.b-variation_swatch-name_label {
  font-size: 16px;
  font-weight: 600;
  margin-inline-end: 4px;
  text-transform: capitalize;
}
.b-variation_swatch-name_label::after {
  content: ":";
  font-size: 18px;
  line-height: 1;
}
.b-variation_swatch-value {
  border-radius: 5%;
  height: 100%;
}
.b-variation_swatch.m-swatch .b-variation_swatch-value {
  box-shadow: inset 0 0 0 var(--swatch-outline, 4px) #ffffff;
  display: flex;
  position: relative;
  transition: color cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
}
@media screen and (max-width: 767.9px) {
  .b-variation_swatch.m-swatch .b-variation_swatch-value {
    min-width: var(--swatch-size-sm, 40px);
  }
}
.m-quick_view .b-variation_swatch.m-swatch .b-variation_swatch-value {
  --swatch-size: 40px;
}
@media not all and (pointer: coarse) {
  .b-variation_swatch.m-swatch:hover .b-variation_swatch-value {
    border: 1px solid #000000;
  }
}
.b-variation_swatch.m-swatch[data-attr-is-selected=true] .b-variation_swatch-value {
  border: 1px solid #000000;
}
.b-variation_swatch.m-swatch.m-disabled .b-variation_swatch-value {
  opacity: 0.5;
}
.b-variation_swatch.m-swatch.m-disabled .b-variation_swatch-value::after {
  background: #949494;
  content: "";
  height: 8rem;
  inset: 0;
  margin: auto;
  position: absolute;
  transform: rotate(37deg);
  width: 1px;
}
.b-variation_swatch.m-tile .b-variation_swatch-value {
  font-size: 16px;
  font-weight: 600;
  align-items: center;
  background: #ffffff;
  border: 1px solid #949494;
  border-radius: 2px;
  color: #000000;
  display: flex;
  height: var(--swatch-size-tile, 44px);
  justify-content: center;
  min-width: 64px;
  overflow: hidden;
  padding: 4px 15px;
  position: relative;
  text-align: center;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: background-color, border-color, color;
  width: auto;
  --swatch-size: 40px;
}
@media not all and (pointer: coarse) {
  .b-variation_swatch.m-tile:hover .b-variation_swatch-value {
    border-color: #000000;
  }
}
.b-variation_swatch.m-tile[data-attr-is-selected=true] .b-variation_swatch-value {
  border: 1px solid #000000;
}
.b-variation_swatch.m-tile.m-disabled .b-variation_swatch-value {
  color: #949494;
}
.b-variation_swatch.m-tile.m-disabled .b-variation_swatch-value::after {
  background: linear-gradient(to bottom right, transparent calc(50% - 1px), #949494 calc(50% - 1px), #949494 50%, transparent 50%);
  content: "";
  display: block;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  width: 100%;
}
.b-variation_swatch.m-tile.m-disabled[data-attr-is-selected=true] .b-variation_swatch-value {
  border-color: #000000;
  border-width: 2px;
}
.b-variation_swatch.m-tile.m-disabled[data-attr-is-selected=true] .b-variation_swatch-value::before {
  background-color: #000000;
}
.b-variation_swatch.m-tile.m-disabled[data-attr-is-selected=true] .b-variation_swatch-value::after {
  background: linear-gradient(to bottom right, transparent calc(50% - 2px), #000000 calc(50% - 2px), #000000 50%, transparent 50%);
}
.b-variation_swatch.m-tile.m-length .b-variation_swatch-value {
  font-family: "FannDorenGrotesque", monospace;
  min-width: 90px;
}
.b-variation_swatch-value_overlay {
  display: none;
}
.b-variation_swatch-color_value {
  border-radius: 5%;
}
.b-variation_swatch-color_value img {
  border-radius: 5%;
  height: 100%;
}

/*md

# b-promo_info_box

This is type of container for banners that hold only text content. It do not have aspect ratio holder
and it stretched/pulled by text content.

So it could easily hold any amount of text content without issues on any breakpoints.

```html_example
<div class="b-promo_info_box">
	<div class="b-promo_info_box-caption b-promo_caption">
		<h2 class="b-promo_caption-title">
			Shop Now. Pay Later. <br/>
			Exclusively for Members
		</h2>
		<p class="b-promo_caption-subtitle">
			Join our Loyalty Program and try before you buy. Pay Later is available online and in-store with boilerplate app.
		</p>
		<div class="b-promo_caption-actions">
			<a class="m-outline b-button" href="$url('Search-Show', 'cgid', 'category-2')$">
				Join
			</a>
		</div>
	</div>
</div>
```

## Big amount of text

```html_example
<div class="b-promo_info_box">
	<div class="b-promo_info_box-caption b-promo_caption">
		<h2 class="b-promo_caption-title">
			Shop Now. Pay Later. <br/>
			Exclusively for Members <br/>
			But not
		</h2>
		<p class="b-promo_caption-subtitle">
			Join our Loyalty Program and try before you buy. Pay Later is available online and in-store with boilerplate app.
			<br/>
			Join our Loyalty Program and try before you buy. Pay Later is available online and in-store with boilerplate app.
			<br/>
			Join our Loyalty Program and try before you buy. Pay Later is available online and in-store with boilerplate app.
		</p>
		<div class="b-promo_caption-actions">
			<a class="m-outline b-button" href="$url('Search-Show', 'cgid', 'category-2')$">
				Join
			</a>
		</div>
	</div>
</div>
```

## Small amount of text

```html_example
<div class="b-promo_info_box">
	<div class="b-promo_info_box-caption b-promo_caption">
		<h2 class="b-promo_caption-title">
			Shop Now. Pay Later.
		</h2>
		<p class="b-promo_caption-subtitle">
			Join our Loyalty Program and try before you buy.
		</p>
		<div class="b-promo_caption-actions">
			<a class="m-outline b-button" href="$url('Search-Show', 'cgid', 'category-2')$">
				Join
			</a>
		</div>
	</div>
</div>
```

*/
.b-promo_info_box {
  display: grid;
  background: #f5f5f5;
  color: #000000;
}
@media screen and (min-width: 1367px) {
  .b-promo_info_box {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366.9px) {
  .b-promo_info_box {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .b-promo_info_box {
    grid-gap: 12px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (max-width: 767.9px) {
  .b-promo_info_box {
    grid-gap: 8px;
    grid-template-columns: [grid-start] repeat(4, 1fr) [grid-end];
  }
}
.b-promo_info_box-caption {
  grid-column: 1/grid-end;
  grid-row: 1/2;
  padding: 48px 16px;
  text-align: center;
}

/*md

# b-promo_caption

Promo caption is the content of promo components.

## Structure

`b-promo_caption` consist from 3 main elements:

* title
* subtitle
* actions container

All of this elements are optional.

## Variation

For sake of simpleness and robustness Launch 360 do not provide predefined sizes and styles
variations.

## Examples

### All elements

```html_example
<div class="b-promo_caption">
	<h2 class="b-promo_caption-title">
		Shop Now. Pay Later.
		Exclusively for Members
	</h2>
	<p class="b-promo_caption-subtitle">
		Join our Loyalty Program and try before you buy. Pay Later is available online and in-store with boilerplate app.
	</p>
	<div class="b-promo_caption-actions">
		<a
			class="b-button m-outline"
			href="$url('Search-Show', 'cgid', 'category-2')$"
		>
			Activate
		</a>
	</div>
</div>
```

### Different order

```html_example
<div class="b-promo_caption">
	<p class="b-promo_caption-subtitle">
		Join our Loyalty Program and try before you buy. Pay Later is available online and in-store with boilerplate app.
	</p>
	<h2 class="b-promo_caption-title">
		Shop Now. Pay Later.
		Exclusively for Members
	</h2>
	<div class="b-promo_caption-actions">
		<a
			class="b-button m-outline"
			href="$url('Search-Show', 'cgid', 'category-2')$"
		>
			Activate
		</a>
	</div>
</div>
```

### Only title and CTA

```html_example
<div class="b-promo_caption">
	<h2 class="b-promo_caption-title">
		Shop Now. Pay Later.
	</h2>
	<div class="b-promo_caption-actions">
		<a
			class="b-button m-outline"
			href="$url('Search-Show', 'cgid', 'category-2')$"
		>
			Join
		</a>
	</div>
</div>
```

### 2 CTA

```html_example
<div class="b-promo_caption">
	<h2 class="b-promo_caption-title">
		New spring collections
	</h2>
	<div class="b-promo_caption-actions">
		<a
			class="b-button m-outline"
			href="$url('Search-Show', 'cgid', 'category-2')$"
		>
			Men
		</a>
		<a
			class="b-button m-outline"
			href="$url('Search-Show', 'cgid', 'category-2')$"
		>
			Woman
		</a>
	</div>
</div>
```

### 3 CTA

```html_example
<div class="b-promo_caption">
	<h2 class="b-promo_caption-title">
		New spring collections
	</h2>
	<div class="b-promo_caption-actions">
		<a
			class="b-button m-outline"
			href="$url('Search-Show', 'cgid', 'category-2')$"
		>
			Men
		</a>
		<a
			class="b-button"
			href="$url('Search-Show', 'cgid', 'category-2')$"
		>
			Woman
		</a>
		<a
			class="b-button m-link"
			href="$url('Search-Show', 'cgid', 'category-2')$"
		>
			Kids
		</a>
	</div>
</div>
```

### Without CTA

```html_example
<a
	class="b-promo_caption"
	href="$url('Search-Show', 'cgid', 'category-2')$"
>
	<h2 class="b-promo_caption-title">
		New spring collections
	</h2>
	<p class="b-promo_caption-subtitle">
		Join our Loyalty Program and try before you buy. Pay Later is available online and in-store with boilerplate app.
	</p>
</a>
```

## Example in component

### b-promo_info_box

```html_example
<div class="b-promo_info_box">
	<div class="b-promo_info_box-caption b-promo_caption">
		<h2 class="b-promo_caption-title">
			Shop Now. Pay Later. <br/>
			Exclusively for Members
		</h2>
		<p class="b-promo_caption-subtitle">
			Join our Loyalty Program and try before you buy. Pay Later is available online and in-store with boilerplate app.
		</p>
		<div class="b-promo_caption-actions">
			<a class="m-outline b-button" href="$url('Search-Show', 'cgid', 'category-2')$">
				Join today
			</a>
		</div>
	</div>
</div>
```

### b-promo-box

```html_example
<figure class="b-promo_box">
	<picture class="b-promo_box-picture">
		<source type="image/jpeg" media="(max-width: 767px)"
				srcset="../images/guide/examples/banner-16x9-sm.jpg?$staticlink$, ../images/guide/examples/banner-16x9-sm@2x.jpg?$staticlink$ 2x" />
		<source type="image/jpeg" media="(min-width: 768px) and (max-width: 1024px)"
				srcset="../images/guide/examples/banner-16x9-md.jpg?$staticlink$, ../images/guide/examples/banner-16x9-md@2x.jpg?$staticlink$ 2x" />
		<source type="image/jpeg" media="(min-width: 1025px)"
				srcset="../images/guide/examples/banner-16x9-lg.jpg?$staticlink$, ../images/guide/examples/banner-16x9-lg@2x.jpg?$staticlink$2x" />
		<img
			loading="lazy"
			src="../images/guide/examples/banner-16x9-lg.jpg?$staticlink$"
			alt="Some dummy alternative text for image."
			width="1600"
			height="800"
		/>
	</picture>
	<figcaption class="b-promo_box-caption b-promo_caption">
		<h2 class="b-promo_caption-title">
			Explore More Possibilities
		</h2>
		<p class="b-promo_caption-subtitle">
			Join our Loyalty Program and try before you buy. Pay Later is available online and in-store with boilerplate app.
		</p>
		<div class="b-promo_caption-actions">
			<a
				class="b-button"
				href="$url('Search-Show', 'cgid', 'category-2')$"
			>
				Shop Now
			</a>
		</div>
	</figcaption>
</figure>
```

*/
.b-promo_caption {
  align-self: center;
}
.b-promo_caption-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}
.b-promo_caption-subtitle {
  font: 400 18px / 24px "FannDorenGrotesque", monospace;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.b-promo_caption-actions {
  align-items: baseline;
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0 -16px;
}
.b-promo_caption-actions a {
  margin: 16px 16px 0;
}

.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%;
}

.b-header-return_link {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 16px;
  width: 16px;
}
@media screen and (min-width: 1024px) {
  .b-header-return_link {
    height: initial;
    width: initial;
  }
}
.b-header-return_link:hover {
  text-decoration: underline;
}
.b-header-return_link_text {
  display: none;
}
@media screen and (min-width: 1024px) {
  .b-header-return_link_text {
    display: inline;
  }
}

.b-size_guide_link {
  font-size: 16px;
  font-weight: 400;
  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);
  border-bottom: 1px solid #000000;
  gap: 4px;
  line-height: 1;
  text-decoration: none;
}
@media not all and (pointer: coarse) {
  .b-size_guide_link:hover {
    color: #757575;
  }
}
@media not all and (pointer: coarse) {
  .b-size_guide_link:hover {
    background-color: initial;
  }
}
.b-size_guide_link svg {
  height: 16px;
  margin-bottom: 2px;
  width: 20px;
}

.b-measure_tips {
  align-content: start;
  display: grid;
  gap: 24px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .b-measure_tips {
    grid-template-columns: max-content 1fr;
  }
}
.b-measure_tips-title {
  grid-column: 1/-1;
}
.b-measure_tips-title, .b-user_content .b-measure_tips-title {
  font: 600 18px / 32px "FannDorenGrotesque", monospace;
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .b-measure_tips-title, .b-user_content .b-measure_tips-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
  }
}
.b-measure_tips-grid, .b-user_content .b-measure_tips-grid {
  align-content: start;
  display: grid;
  gap: 24px;
  list-style: none;
  max-width: 848px;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .b-measure_tips-grid, .b-user_content .b-measure_tips-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.b-measure_tips-subtitle {
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .b-measure_tips-subtitle {
    font: 600 24px / 32px "FannDorenGrotesque", monospace;
  }
}

.b-size_chart {
  margin-bottom: 40px;
}
.b-size_chart-caption {
  font-size: 18px;
  font-weight: 600;
}
.b-size_chart-caption span {
  font-size: 12px;
  font-weight: 400;
  display: block;
  margin-top: 8px !important; /* stylelint-disable declaration-no-important */
}
@media screen and (min-width: 768px) {
  .b-size_chart-caption span {
    display: inline;
    float: right;
  }
}
.b-size_chart-content {
  overflow: hidden;
}
.b-size_chart-legend {
  color: rgba(0, 0, 0, 0.6);
  display: grid;
  justify-content: end;
}
.b-size_chart-legend_item {
  align-items: center;
  display: flex;
}
.b-size_chart-measurement {
  display: flex !important;
  gap: 8px;
  list-style: none !important;
  padding-left: 0 !important;
}
.b-size_chart-measurement_btn {
  font-size: 16px;
  font-weight: 600;
  align-items: center;
  background: #ffffff;
  border: 1px solid #949494;
  border-radius: 2px;
  color: #000000;
  display: flex;
  height: 40px;
  justify-content: center;
  min-width: 64px;
  overflow: hidden;
  padding: 4px 15px;
  position: relative;
  text-align: center;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: background-color, border-color, color;
  width: auto;
  cursor: pointer;
  padding: 4px 16px;
}
@media not all and (pointer: coarse) {
  .b-size_chart-measurement_btn:hover {
    border-color: #000000;
  }
}
.b-size_chart-measurement_btn.m-active {
  border-color: #000000;
  border-width: 2px;
}
@media screen and (max-width: 767.9px) {
  .b-size_chart .b-table_scroll {
    margin-inline: 0;
    padding-inline: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .b-size_chart h3 {
    margin-bottom: 8px;
  }
}
.b-size_chart td {
  border: 0;
  min-width: 60px;
  text-align: center;
}
.b-size_chart th {
  font-size: 14px;
  font-weight: 600;
  border: 0;
  padding: 8px 32px;
}
@media screen and (min-width: 1024px) {
  .b-size_chart th {
    font-size: 14px;
    font-weight: 600;
  }
}
.b-size_chart tbody th {
  background: #ffffff;
  box-shadow: -1.5px 0 0 0 #cfcfcf inset;
  left: 0;
  position: sticky;
  text-align: center;
}
.b-size_chart tbody th:first-child {
  white-space: nowrap;
  width: 1%;
}
.b-size_chart tr:nth-child(odd), .b-size_chart tr:nth-child(odd) th {
  background: #f8f8f8;
}
.b-size_chart .m-highlight {
  box-shadow: 0 -3px 0 0 #e8ddc7 inset;
}

.b-size_chart-tables {
  margin-top: 32px;
}
.b-size_chart-highlight {
  height: 3px;
  margin-inline-end: 8px;
  width: 33px;
}
.b-size_chart-fit_grid {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .b-size_chart-fit_grid {
    gap: 16px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.b-size_chart-sock_guide_grid {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .b-size_chart-sock_guide_grid {
    gap: 16px;
    grid-template-columns: repeat(8, 1fr);
  }
}
.b-size_chart-sock_guide_cell {
  text-align: center;
}
.b-size_chart-sock_guide_cell p {
  font-weight: 600;
}
.b-size_chart-fit_image {
  margin: 8px 0;
}
@media screen and (min-width: 768px) {
  .b-size_chart-fit_image {
    margin: 16px 0;
  }
}
.b-size_chart .b-select {
  position: relative;
}
@media screen and (min-width: 768px) {
  .b-size_chart .b-select {
    max-width: 250px;
  }
}
.b-size_chart .b-select-icon {
  width: auto;
}
.b-size_chart .b-select label {
  background: #ffffff;
  color: #757575;
  font-size: 12px;
  left: 10px;
  line-height: 16px;
  padding: 0 4px;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.b-size_chart .b-measure_tips .t-title {
  grid-column: 1/-1;
}
@media screen and (min-width: 768px) {
  .b-size_chart .b-measure_tips-image {
    max-width: 480px;
  }
}
.b-size_chart .b-measure_tips p {
  padding: 8px 0;
}
.b-size_chart .h-size-table {
  display: none;
}
.b-size_chart .h-size-table.m-selected {
  display: block;
}

.b-delivery_details {
  margin-bottom: 8px;
}
.b-delivery_details svg {
  width: 24px;
}
.b-delivery_details-item {
  align-items: center;
  display: flex;
  margin-left: 4px;
}
.b-delivery_details-item + .b-delivery_details-item {
  margin-top: 10px;
}
.b-delivery_details-item.m-guarantee {
  margin-bottom: 32px;
  margin-left: 0;
}
.b-delivery_details-item.m-returns svg {
  margin-left: -4px;
  margin-right: 4px;
}
.b-delivery_details-item a {
  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-delivery_details-item a:hover {
    color: #757575;
  }
}
.b-delivery_details-guarantee {
  font-size: 18px;
  font-weight: 600;
  position: relative;
}
.b-delivery_details-guarantee.b-delivery_details-guarantee {
  text-decoration: none;
}
.b-delivery_details-guarantee::before {
  background: #b2bb1e;
  bottom: -5px;
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  width: 56px;
}

.b-product_wishlist {
  position: relative;
}
.b-product_wishlist-btn {
  font-size: 18px;
  height: 56px;
  padding: 0 15px;
  width: 100%;
}
@media not all and (pointer: coarse) {
  .b-product_wishlist-btn.m-added:hover use {
    color: #ffffff;
    fill: #ffffff;
  }
}
.b-product_wishlist-action {
  margin-top: 16px;
}
.b-product_wishlist-action.m-success {
  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-product_wishlist-action.m-error {
  color: #a21a10;
  font-weight: 700;
}

.b-product_gallery {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1023.9px) {
  .b-product_gallery-main {
    margin: 0 -16px;
  }
  .b-product_gallery-main .b-product_slider-count {
    padding: 0 16px;
  }
}
.b-product_gallery-image {
  border: 0;
  bottom: 0;
  color: #ffffff;
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.b-product_gallery-video {
  height: 100%;
  width: 100%;
  object-fit: fill;
}
.b-product_gallery-image_wrap {
  display: block;
}
.b-product_gallery-zoom {
  display: none;
}
@media screen and (min-width: 1024px) {
  .b-product_gallery-dots {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .b-photoswipe .b-product_gallery-dots {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .m-quick_view .b-product_gallery-dots {
    bottom: 8px;
    display: block;
    left: 50%;
    opacity: 1;
    position: absolute;
    transform: translateX(-50%);
  }
}
.b-product_gallery-dots_track {
  margin-top: 16px;
  text-align: center;
}
@media screen and (max-width: 1023.9px) {
  .b-product_gallery-dots_track {
    margin-top: 4px;
  }
}
@media screen and (max-width: 1023.9px) {
  .m-quick_view .b-product_gallery-dots_track {
    margin-top: 8px;
  }
}
.b-product_gallery-dot {
  display: inline-block;
  height: 24px;
  margin-inline-end: 0;
  position: relative;
  vertical-align: top;
  width: 10px;
}
.b-product_gallery-dot::before {
  background-color: #ffffff;
  border: 2px solid #cfcfcf;
  border-radius: 50%;
  bottom: 0;
  content: "";
  display: block;
  height: 8px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 8px;
}
.m-quick_view .b-product_gallery-dot::before {
  background-color: transparent;
  border: 1px solid #cfcfcf;
}
.b-product_gallery-dot.m-current::before {
  background-color: #000000;
  border-color: #000000;
}
.b-product_gallery-see_more {
  display: none;
}

.b-zoom_info {
  pointer-events: none;
}
.b-zoom_info-icon {
  align-items: center;
  -webkit-appearance: none;
          appearance: none;
  background: #ffffff;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 24px;
  justify-content: center;
  text-align: center;
  transition: opacity cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  width: 24px;
  border-radius: 100%;
}
@media not all and (pointer: coarse) {
  .b-zoom_info-icon:hover {
    color: #757575;
  }
}
.b-zoom_info-icon_sm {
  display: none;
}
.b-zoom_info-content {
  display: none;
}
.b-zoom_info-copy {
  display: none;
  margin-inline-end: 4px;
}
@media screen and (min-width: 1024px) {
  .b-zoom_info-copy.m-lg {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .b-zoom_info-copy.m-md {
    display: block;
  }
  .b-zoom_info-copy.m-wrapped_text {
    margin-inline-end: 0;
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .b-zoom_info-copy.m-sm {
    display: block;
  }
}

.b-product_image {
  background: #ffffff;
  border: 1px solid #cfcfcf;
  display: block;
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
  width: 100%;
}
.b-product_image.m-unavailable {
  opacity: 0.5;
}
.b-product_image-img {
  border: 0;
  bottom: 0;
  color: #ffffff;
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.b-product_slider {
  position: relative;
}
@media screen and (max-width: 1023.9px) {
  .m-quick_view .b-product_slider-holder {
    margin-inline-end: 0;
    overflow: hidden;
  }
}
.b-product_slider-track {
  display: flex;
  overflow: hidden;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  -ms-scroll-chaining: none;
  scrollbar-width: none;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  width: 100%;
}
.b-product_slider-track::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1023.9px) {
  .b-product_slider-track {
    gap: 4px;
    width: calc(100% + 4px);
  }
}
.b-product_slider-track.m-mousemove_navigation {
  scroll-snap-type: unset;
}
.b-product_slider-track.m-grabbing {
  cursor: grab;
  scroll-behavior: auto;
  -webkit-user-select: none;
          user-select: none;
}
.b-product_slider-track.m-grabbing::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}
@media screen and (max-width: 1023.9px) {
  .m-quick_view .b-product_slider-track {
    gap: 0;
    width: 100%;
  }
}
.b-product_slider-track .b-size_guide-info {
  grid-column: 1/span 1;
  grid-row: 2;
}
@media screen and (max-width: 1023.9px) {
  .b-product_slider-track .b-size_guide-info {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .b-product_slider-track .b-size_guide-info {
    grid-column: 1/span 2;
  }
}
.b-product_slider-item {
  min-width: 100%;
  position: relative;
  scroll-snap-align: center;
  width: 100%;
}
@media screen and (max-width: 1023.9px) {
  .b-product_slider-item {
    min-width: calc(100% - 4px);
    width: calc(100% - 4px);
  }
}
.m-quick_view .b-product_slider-item {
  border: none;
  min-width: 100%;
  width: 100%;
}
.b-product_slider-item:first-child:last-child {
  min-width: 100%;
  width: 100%;
}
.b-product_slider-item_icon {
  bottom: 16px;
  content: "";
  display: none;
  pointer-events: all;
  position: absolute;
  right: 16px;
  z-index: 2;
}
.m-quick_view .b-product_slider-item_icon {
  display: none;
}
.b-product_slider-item.m-video {
  overflow: hidden;
  padding: 0;
}
.b-product_slider-item[role=button] {
  cursor: zoom-in;
}
.b-product_slider-item .b-product_image-img {
  transition: opacity 200ms linear;
}
.b-product_slider-item .b-product_image-img.m-faded {
  opacity: 0;
}
.b-product_slider-item .b-product_image-zoom_overlay {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
}
.b-product_slider-item .b-product_image-zoom_img {
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 200ms linear, transform 200ms linear;
  width: 100%;
}
.b-product_slider-item.m-inline-zoomed {
  cursor: zoom-out;
  touch-action: none;
}
.b-product_slider-item.m-inline-zoomed .b-product_image-zoom_img {
  opacity: 1;
  transform: scale(2);
}
.b-product_slider-item .b-badges {
  display: none;
}
.b-product_slider-ctrl {
  align-items: center;
  -webkit-appearance: none;
          appearance: none;
  background: rgba(248, 248, 248, 0.9);
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  text-align: center;
  transition: opacity cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  width: 44px;
  border-radius: 100%;
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-user-select: none;
          user-select: none;
}
@media not all and (pointer: coarse) {
  .b-product_slider-ctrl:hover {
    color: #757575;
  }
}
.b-product_slider.m-inited .b-product_slider-ctrl {
  display: block;
}
@media screen and (max-width: 1023.9px) {
  .b-product_slider.m-inited .b-product_slider-ctrl {
    display: none;
  }
}
@media screen and (max-width: 1023.9px) {
  .m-quick_view .b-product_slider.m-inited .b-product_slider-ctrl {
    display: block;
  }
}
.b-product_slider-ctrl[disabled] {
  opacity: 0;
}
.b-product_slider-ctrl.m-prev {
  left: 12px;
}
.b-product_slider-ctrl.m-next {
  right: 12px;
}
.b-product_slider-count {
  display: none;
}
.b-product_slider-shop_the_look {
  bottom: 4px;
  left: 12px;
  position: absolute;
}
@media screen and (min-width: 1024px) {
  .b-product_slider-shop_the_look {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .b-product_slider.m-image_gallery .b-product_slider-track {
    display: grid;
    gap: 4px;
    overflow: visible;
    grid-template-columns: 1fr 1fr;
  }
  .m-quick_view .b-product_slider.m-image_gallery .b-product_slider-track {
    display: flex;
    gap: 0;
    overflow: hidden;
  }
}
@media screen and (min-width: 1024px) {
  .b-product_slider.m-image_gallery .b-product_slider-count {
    display: none;
  }
}
.b-product_slider .b-product_image {
  border: 0;
}
.b-product_slider .b-product_image.m-video {
  height: calc(100% + 2px);
  object-fit: none;
  width: calc(100% + 2px);
}

.b-product_details {
  color: #000000;
  padding: 24px 16px 0;
  position: sticky;
  top: 96px;
  /* Supports Big & Tall tooltip on PDP */
}
.m-quick_view .b-product_details-top {
  padding-inline-end: 40px;
}
.b-product_details-collections_link {
  display: none;
}
.b-product_details-name {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
}
.b-product_details-name a {
  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;
  font-weight: inherit;
}
@media not all and (pointer: coarse) {
  .b-product_details-name a:hover {
    color: #757575;
  }
}
.b-product_details-rating {
  align-items: center;
  display: flex;
  margin-top: 12px;
  width: 100%;
}
.b-product_details:not(.m-mobile) .b-product_details-rating {
  border-bottom: 1px solid #cfcfcf;
  padding-bottom: 20px;
}
.b-product_details-rating_ratio_value {
  font-size: 16px;
  font-weight: 600;
}
.b-product_details-rating_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;
  display: inline-block;
}
@media not all and (pointer: coarse) {
  .b-product_details-rating_link:hover {
    color: #757575;
  }
}
@media screen and (max-width: 767.9px) {
  .b-product_details-rating_link {
    font-size: 12px;
  }
}
.b-product_details-rating_link.m-reviews {
  margin-inline-end: 4px;
}
.b-product_details-rating_link.m-qa {
  margin-inline-start: 4px;
}
.b-product_details-discontinued_msg {
  font-size: 18px;
  font-weight: 600;
  margin-top: 16px;
}
.b-product_details-price {
  margin-top: 4px;
}
.b-product_details-price .b-price-item {
  font-size: 18px;
}
.b-product_details-price_container {
  align-items: flex-end;
  display: inline-flex;
  flex-flow: row wrap;
  position: relative;
  width: 100%;
}
.b-product_details-price_container .b-product_details-price {
  margin-right: 12px;
}
.b-product_details-egift_form {
  margin-top: 24px;
}
.b-product_details-description {
  margin: 24px 0;
}
.b-product_details-options {
  margin: 40px 0 8px;
}
.b-product_details-variations {
  margin-top: 4px;
  position: relative;
}
.b-product_details-shop_similar {
  align-content: center;
}
.b-product_details-truefit {
  width: 100%;
}
.b-product_details-availability {
  display: none;
}
.b-product_details-availability .b-availability {
  margin-inline-start: 4px;
}
.b-product_details-availability .b-availability:has(.b-availability-status) {
  margin-top: 24px;
}
.b-product_details-quantity {
  margin-bottom: 24px;
}
.b-product_details-model_info {
  font-size: 14px;
  background-color: #f8f8f8;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  padding: 12px 16px 10px;
}
.b-product_details-model_info b {
  line-height: 1;
}
.b-product_details-model_info_description {
  font-size: 12px;
}
.b-product_details-additional_details {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .b-product_details-additional_details {
    display: flex;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 767.9px) {
  .b-product_details-additional_details {
    text-align: center;
  }
}
.b-product_details-fit_meter {
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-top: 24px;
  overflow: hidden;
}
.b-product_details-size_fit {
  background-color: #f8f8f8;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  padding: 10px 16px;
}
.b-product_details-model_info + .b-product_details-size_fit {
  padding-top: 4px;
}
.b-product_details-form {
  margin-bottom: 24px;
}
.b-product_details-delivery_details {
  border-bottom: 1px solid #cfcfcf;
  border-top: 1px solid #cfcfcf;
  padding: 16px 2px 12px 0;
}
.b-product_details-whats_new {
  border-top: 1px solid #b8b8b8;
  margin-top: 20px;
  padding-top: 24px;
}
.b-product_details-skn {
  color: #000;
  font-weight: 500;
}
.b-product_details-full_info {
  margin: 16px 0 0;
}
.b-product_details-full_info_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);
}
@media not all and (pointer: coarse) {
  .b-product_details-full_info_link:hover {
    color: #757575;
  }
}
.b-product_details-share {
  display: inline-block;
}
.b-product_details-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.m-egift .b-product_details-actions {
  margin-top: 0;
}
.b-product_details-actions .b-button_multi_state {
  font-size: 18px;
  height: 56px;
}
.b-product_details-links {
  margin: 32px 0 40px;
}
.b-product_details-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);
  font-family: "FannDorenGrotesque", monospace;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 36px;
}
@media not all and (pointer: coarse) {
  .b-product_details-link:hover {
    color: #757575;
  }
}
@media screen and (min-width: 768px) {
  .b-product_details.m-position_static {
    position: static;
  }
}
.b-product_details.m-mobile {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .b-product_details.m-mobile {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .b-product_details.m-mobile .b-product_eyebrow,
  .b-product_details.m-mobile .b-product_details-name,
  .b-product_details.m-mobile .b-product_labels,
  .b-product_details.m-mobile .b-product_details-price,
  .b-product_details.m-mobile .b-product_details-rating {
    display: none;
  }
}
.b-product_details .b-product_eyebrow {
  margin-bottom: 16px;
}
.b-product_details .b-product_eyebrow-text {
  font-size: 12px;
  line-height: 1.5;
  color: #7f593b;
  font-weight: 600;
}
.b-product_details .b-product_labels {
  margin-top: 8px;
}
.b-product_details .b-product_labels-list {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  gap: 8px;
  position: static;
}
.b-product_details .b-product_labels-item {
  font-size: 12px;
  background-color: #e1e1e1;
  border-radius: 2px;
  color: #000000;
  letter-spacing: initial;
  margin: 0;
  padding: 4px 14px;
  position: static;
  text-transform: initial;
}
.b-product_details-pfa_alert {
  font-size: 16px;
  line-height: 21px;
  padding: 24px 0;
}
.b-product_details-pfa_alert svg {
  height: 16px;
  width: 16px;
}
.b-product_details-pfa_alert_label {
  padding-left: 8px;
}
.b-product_details-top_info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.b-product_details-short_description {
  color: #707070;
  font-size: 12px;
  line-height: 1.28;
}
.b-product_details .b-variations_item {
  margin-top: 0;
}
.b-product_details .b-variations_item.m-size {
  margin-top: 24px;
}
.b-product_details .b-variations_item-select {
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px #cfcfcf;
  height: 48px;
  line-height: 48px;
  padding: 0 16px;
  cursor: pointer;
}
.b-product_details .b-variations_item-content {
  position: relative;
}
.b-product_details .b-variations_item.m-color {
  padding-bottom: 20px;
}
.b-product_details .b-variations_item.m-color .b-variations_item-name {
  display: none;
}
.b-product_details .b-variations_item.m-color .b-variations_item-content {
  position: initial;
}
.b-product_details .b-variations_item.m-color .b-variation_swatch-name {
  bottom: 0;
}
.b-product_details .b-variations_item.m-color > div:first-child {
  position: initial;
}
.b-product_details .b-variation_swatch-name {
  top: initial;
  font-size: 12px;
}
.b-product_details .b-variation_swatch-name_label {
  color: #262424;
  font-size: 12px;
  margin-inline-end: 2px;
  font-weight: 400;
}
.b-product_details .b-variation_swatch-name_label::after {
  color: #262424;
  font-size: 12px;
}
.b-product_details-variations_items {
  position: relative;
  margin-top: 24px;
}
.b-product_details-variations_list {
  border-top: 1px solid #cfcfcf;
}
.b-product_details-variations_item {
  font-size: 16px;
  line-height: 1.28;
  border-bottom: 1px solid #cfcfcf;
  padding: 0 24px;
  height: 48px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.b-product_details-variations_item.m-active {
  background-color: #000;
  color: #ffffff;
}
.b-product_details-variations_item_button {
  width: 100%;
}
.b-product_details-variations_item_button_wrapper {
  padding: 16px 24px;
  border-top: 1px solid #cfcfcf;
}

@media screen and (min-width: 768px) {
  .m-quick_view .b-product_details {
    border-left: 1px solid #cfcfcf;
  }
}
.m-quick_view .b-product_details-wrap {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .m-quick_view .b-product_details-wrap {
    margin-top: 20px;
    padding-inline-end: 32px;
    padding-inline-start: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .m-quick_view .b-product_details-shop_the_look_wrap {
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.m-quick_view .b-product_details-shop_the_look {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .m-quick_view .b-product_details-shop_the_look {
    font-size: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .m-quick_view .b-product_details-shop_the_look {
    margin-bottom: 14px;
    margin-top: 32px;
    text-align: center;
  }
}
.m-quick_view .b-product_details-sticky_actions {
  align-items: center;
  background-color: #ffffff;
  bottom: 0;
  box-shadow: 0 -8px 4px 0 rgba(0, 0, 0, 0.1019607843);
  display: flex;
  flex-flow: column;
  margin-top: auto;
  padding-bottom: 20px;
  position: sticky;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .m-quick_view .b-product_details-sticky_actions {
    margin-left: -16px;
    width: calc(100% + 32px);
  }
}
.m-quick_view .b-product_details-name {
  font-weight: 600;
  font-size: 20px;
}
@media screen and (min-width: 1024px) {
  .m-quick_view .b-product_details-name {
    font-size: 24px;
  }
}
.m-quick_view .b-product_details-truefit {
  display: none;
}
.m-quick_view .b-product_details-quantity {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .m-quick_view .b-product_details-egift_form_inner {
    padding-inline-end: 32px;
    padding-inline-start: 32px;
  }
}
.m-quick_view .b-product_details-model_info {
  background: none;
  padding: 0;
}
.m-quick_view .b-product_details-size_fit {
  display: none;
}
.m-quick_view .b-product_details-form {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .m-quick_view .b-product_details-form {
    padding-inline-end: 32px;
    padding-inline-start: 32px;
  }
}
.m-quick_view .b-product_details-form.m-egift {
  padding: 0;
}
.m-quick_view .b-product_details-delivery_details {
  display: none;
}
.m-quick_view .b-product_details-actions {
  padding-inline-end: 16px;
  padding-inline-start: 16px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .m-quick_view .b-product_details-actions {
    padding-inline-end: 32px;
    padding-inline-start: 32px;
  }
}
.m-egift .m-quick_view .b-product_details-actions {
  margin-top: 16px;
}
.m-quick_view .b-product_details-actions .b-button_multi_state {
  height: 48px;
  margin-bottom: 16px;
}
.m-quick_view .b-product_details-inner_tabs {
  border-bottom: 1px solid #cfcfcf;
  margin-bottom: 20px;
  padding-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .m-quick_view .b-product_details-inner_tabs {
    margin-bottom: 0;
    padding-bottom: 16px;
  }
}
.m-quick_view .b-product_details-view_details {
  font-size: 16px;
  font-weight: 400;
}
.m-quick_view .b-product_details.m-mobile {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .m-quick_view .b-product_details:not(.m-mobile) .b-product_eyebrow,
  .m-quick_view .b-product_details:not(.m-mobile) .b-product_details-name,
  .m-quick_view .b-product_details:not(.m-mobile) .b-product_labels,
  .m-quick_view .b-product_details:not(.m-mobile) .b-product_details-price,
  .m-quick_view .b-product_details:not(.m-mobile) .b-product_details-rating {
    display: block;
  }
}

.b-product_share {
  align-items: center;
  display: flex;
}
.b-product_share-title {
  font-size: 16px;
  font-weight: 400;
  margin-inline-end: 16px;
}
.b-product_share-list {
  display: flex;
}
.b-product_share-link {
  align-items: center;
  -webkit-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 32px;
  justify-content: center;
  text-align: center;
  transition: opacity cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  width: 32px;
}
@media not all and (pointer: coarse) {
  .b-product_share-link:hover {
    color: #757575;
  }
}

.b-product_attributes-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.b-product_attributes-list {
  display: block;
}
.b-product_attributes-item {
  display: list-item;
}

.b-product_option {
  border: none;
  font-size: 14px;
  margin: 0;
  padding: 0;
  position: relative;
}
.b-product_option-heading {
  display: block;
  margin: 0 0 16px;
  padding: 0;
}
.b-product_option-name {
  font-size: 18px;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}
.b-product_option-description {
  display: block;
}
.b-product_option-content {
  position: relative;
}
.b-product_option-content.m-widget-loading::after {
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
  cursor: wait;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.b-product_option-item_name {
  unicode-bidi: isolate;
}
.b-product_option-item_value.m-highlight {
  color: #a21a10;
  font-weight: 500;
}
.b-product_option-item_custom_text {
  margin-top: 16px;
}
.b-product_option .b-form_field {
  margin-bottom: 0;
}

.b-product_addtocard_set {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .b-product_addtocard_set {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 768px) {
  .b-product_addtocard_set-button {
    width: 416px;
  }
}

.b-product_set {
  padding-left: 80px;
  padding-right: 80px;
  margin: 0 auto;
  max-width: 1440px;
}
@media screen and (min-width: 1024px) and (max-width: 1366.9px) {
  .b-product_set {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .b-product_set {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-product_set {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.b-product_set-header {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 32px;
}
.m-quick_view .b-product_set-header {
  margin-top: 16px;
}
.b-product_set-title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .b-product_set-title {
    font-size: 32px;
  }
}
.b-product_set-product {
  margin-bottom: 32px;
}
.b-product_set-actions {
  border-top: 1px solid #cfcfcf;
  margin-top: 16px;
  padding-top: 8px;
}
.b-product_set-price {
  font-size: 28px;
  font-weight: 600;
  margin: 24px 0;
}
.b-product_bundle {
  margin: 16px 0;
}
.b-product_bundle-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}
.b-product_bundle-item {
  display: flex;
  margin-bottom: 20px;
}
.b-product_bundle-item.m-variant .b-variation_swatch:not([data-attr-is-selected=true]) {
  display: none;
}
.b-product_bundle-item.m-variation_group .b-variation_swatch.m-attribute_color:not([data-attr-is-selected=true]) {
  display: none;
}
.b-product_bundle-item_name {
  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;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 4px;
}
@media not all and (pointer: coarse) {
  .b-product_bundle-item_name:hover {
    color: #757575;
  }
}
.b-product_bundle-item_image {
  margin-inline-end: 20px;
  min-width: 109px;
  position: relative;
}
.b-product_bundle-item_attributes .b-variations_item {
  position: relative;
}
.b-product_bundle-item_attributes .b-variations_item-label_link {
  bottom: auto;
  right: 0;
  top: 0;
}
.b-product_bundle-item_attribute {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
  margin-top: 8px;
}
.b-product_bundle-item_picture {
  background: #ffffff;
  border: 1px solid #cfcfcf;
  display: block;
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
  width: 100%;
}
.b-product_bundle-item_picture img {
  border: 0;
  bottom: 0;
  color: #ffffff;
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.b-product_actions {
  margin-top: 24px;
}
.m-quick_view .b-product_actions {
  display: none;
}
.b-product_actions-inner {
  width: 100%;
}
.b-product_actions-cta {
  width: 100%;
}
.b-product_actions-status {
  font-weight: 600;
  margin: 16px 0 0;
  width: 100%;
}
.m-quick_view .b-product_actions-status {
  margin-bottom: 12px;
  margin-top: 0;
  padding-inline-end: 16px;
  padding-inline-start: 16px;
}
@media screen and (min-width: 768px) {
  .m-quick_view .b-product_actions-status {
    padding-inline-end: 32px;
    padding-inline-start: 32px;
  }
}
.b-product_actions-success_msg {
  background: rgba(245, 166, 35, 0.1);
  font-weight: 400;
  padding: 16px;
}
.b-product_actions-success_title {
  font: 600 16px / 24px "FannDorenGrotesque", monospace;
  display: block;
  margin-bottom: 8px;
}
.b-product_actions-error_msg {
  color: #a21a10;
}

.b-product_notify_me {
  border: 1px solid #cfcfcf;
  font-size: 14px;
  margin: 20px 0 0;
  padding: 32px 20px 20px;
}
.b-product_notify_me.m-success {
  background-color: rgba(69, 112, 48, 0.1);
  border-color: rgba(69, 112, 48, 0.1);
}
.b-product_notify_me-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
}
.b-product_notify_me-form {
  margin-top: 16px;
}
.b-product_notify_me-form a {
  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-product_notify_me-form a:hover {
    color: #757575;
  }
}
.b-product_notify_me-field {
  margin: 16px 0;
}
.b-product_notify_me-actions {
  margin: 16px 0 12px;
}
@media screen and (min-width: 1024px) {
  .b-product_notify_me-actions {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1023.9px) {
  .b-product_notify_me-reset {
    width: 100%;
  }
}
.b-product_notify_me-submit {
  margin-bottom: 12px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .b-product_notify_me-submit {
    margin-bottom: 0;
    margin-inline-end: 12px;
  }
}
.b-product_notify_me .b-form_field-label {
  display: none !important;
}

.b-related_product {
  margin-top: 12px;
}
.b-related_product-details {
  font-size: 16px;
  font-weight: 400;
  align-items: center;
  display: inline-flex;
  gap: 4px;
}
.b-related_product-details_title {
  font-weight: 600;
}
.b-related_product-details_msg {
  display: inline-flex;
  position: relative;
}
.b-related_product-details_msg svg {
  width: 16px;
}
.b-related_product-links {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.b-related_product-link {
  font-size: 16px;
  font-weight: 600;
  align-items: center;
  background: #ffffff;
  border: 1px solid #949494;
  border-radius: 2px;
  color: #000000;
  display: flex;
  height: 40px;
  justify-content: center;
  min-width: 64px;
  overflow: hidden;
  padding: 4px 15px;
  position: relative;
  text-align: center;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: background-color, border-color, color;
  width: auto;
  text-decoration: none;
  text-transform: capitalize;
}
@media not all and (pointer: coarse) {
  .b-related_product-link:hover {
    border-color: #000000;
  }
}
.b-related_product-link.current-type {
  border-color: #000000;
  border-width: 2px;
  pointer-events: none;
}

.b-variations_item {
  margin-top: 20px;
  position: relative;
}
.b-variations_item-name_label {
  font-size: 16px;
  font-weight: 600;
  margin-inline-end: 4px;
  text-transform: capitalize;
}
.b-variations_item-name_label::after {
  content: ":";
  font-size: 18px;
  line-height: 1;
}
.b-variations_item.m-quantity .b-variations_item-name_label {
  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-variations_item-empty_value {
  left: 45px;
  position: absolute;
  text-align: start;
  top: 0;
}
.b-variations_item-label_link {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}
.b-variations_item-label_link.m-discontinued {
  margin-bottom: 20px;
}
.b-variations_item-content.m-list {
  display: flex;
  flex-wrap: wrap;
  scrollbar-width: none;
}
.b-variations_item-content.m-list::-webkit-scrollbar {
  display: none;
}
.b-variations_item-content.m-list_vertical {
  align-items: flex-start;
  display: flex;
  flex-flow: column;
  scrollbar-width: none;
}
.b-variations_item-content.m-list_vertical::-webkit-scrollbar {
  display: none;
}
.b-variations_item-subitem {
  margin-top: 24px;
}
.b-variations_item > div:first-child {
  position: relative;
}
.b-variations_item-label {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 16px;
  margin-inline-end: 4px;
}

.b-product_accordion {
  box-shadow: 0 1px 0 0 #cfcfcf;
  padding: 24px;
}
@media screen and (max-width: 1023.9px) {
  .b-product_accordion {
    box-shadow: none;
  }
}
.b-product_accordion-item {
  border-bottom: 1px solid #cfcfcf;
}
.b-product_accordion-title {
  font-size: 18px;
  font-weight: 600;
}
.b-product_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%;
}
@media not all and (pointer: coarse) {
  .b-product_accordion-button:hover {
    opacity: 0.5;
  }
}
.b-product_accordion-content {
  display: none;
  overflow: hidden;
  position: relative;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: height;
  position: static;
}
.b-product_accordion-content[aria-hidden=false] {
  display: block;
}
.b-product_accordion-item:not([data-initialized="1"]) .b-product_accordion-content {
  display: block;
}
.b-product_accordion-content_inner {
  overflow: hidden;
  padding: 0 0 20px;
}

.b-pdp_user_content .title-h1,
.b-pdp_user_content h1 {
  font-weight: 600;
  font-size: 24px;
}
@media screen and (min-width: 1024px) {
  .b-pdp_user_content .title-h1,
  .b-pdp_user_content h1 {
    font-size: 32px;
  }
}
.b-pdp_user_content .title-h2,
.b-pdp_user_content h2 {
  font-weight: 600;
  font-size: 20px;
}
@media screen and (min-width: 1024px) {
  .b-pdp_user_content .title-h2,
  .b-pdp_user_content h2 {
    font-size: 24px;
  }
}
.b-pdp_user_content .title-h3,
.b-pdp_user_content h3 {
  font-size: 18px;
  font-weight: 600;
}
.b-pdp_user_content .title-h4,
.b-pdp_user_content h4 {
  font-size: 16px;
  font-weight: 600;
}
.b-pdp_user_content .title-h5,
.b-pdp_user_content h5 {
  font-size: 14px;
  font-weight: 600;
}
.b-pdp_user_content ul,
.b-pdp_user_content ol {
  list-style: auto;
  padding-left: 22px;
}
.b-pdp_user_content ul {
  list-style: disc outside;
}
.b-pdp_user_content ol {
  list-style: decimal outside;
}
.b-pdp_user_content li {
  line-height: 21px;
  padding-left: 2px;
}
.b-pdp_user_content p.m-p1,
.b-pdp_user_content div.m-p1,
.b-pdp_user_content span.m-p1,
.b-pdp_user_content li.m-p1 {
  font: 600 18px / 32px "FannDorenGrotesque", monospace;
}
@media screen and (min-width: 1024px) {
  .b-pdp_user_content p.m-p1,
  .b-pdp_user_content div.m-p1,
  .b-pdp_user_content span.m-p1,
  .b-pdp_user_content li.m-p1 {
    font: 600 24px / 32px "FannDorenGrotesque", monospace;
  }
}
.b-pdp_user_content p.m-p2,
.b-pdp_user_content div.m-p2,
.b-pdp_user_content span.m-p2,
.b-pdp_user_content li.m-p2 {
  font-size: 18px;
  font: 600 24px / 30px "FannDorenGrotesque", monospace;
}
.b-pdp_user_content p.m-eyebrow,
.b-pdp_user_content div.m-eyebrow,
.b-pdp_user_content span.m-eyebrow,
.b-pdp_user_content li.m-eyebrow {
  font: 400 18px / 24px "FannDorenGrotesque", monospace;
  text-transform: uppercase;
}
.b-pdp_user_content p.m-large,
.b-pdp_user_content div.m-large,
.b-pdp_user_content span.m-large,
.b-pdp_user_content li.m-large {
  font-size: 18px;
}
.b-pdp_user_content p.m-regular,
.b-pdp_user_content div.m-regular,
.b-pdp_user_content span.m-regular,
.b-pdp_user_content li.m-regular {
  font-size: 14px;
}
.b-pdp_user_content p.m-smaller,
.b-pdp_user_content div.m-smaller,
.b-pdp_user_content span.m-smaller,
.b-pdp_user_content li.m-smaller {
  font-size: 12px;
}
.b-pdp_user_content p.m-small,
.b-pdp_user_content div.m-small,
.b-pdp_user_content span.m-small,
.b-pdp_user_content li.m-small {
  font-size: 12px;
  line-height: 16px;
}
.b-pdp_user_content .b-text_block p + h1, .b-pdp_user_content .b-text_block p + h2, .b-pdp_user_content .b-text_block p + h3, .b-pdp_user_content .b-text_block p + h4, .b-pdp_user_content .b-text_block p + h5, .b-pdp_user_content .b-text_block p + p, .b-pdp_user_content .b-text_block p + div:not(.b-actions-item), .b-pdp_user_content .b-text_block p + ol, .b-pdp_user_content .b-text_block p + ul, .b-pdp_user_content .b-text_block div + h1, .b-pdp_user_content .b-text_block div + h2, .b-pdp_user_content .b-text_block div + h3, .b-pdp_user_content .b-text_block div + h4, .b-pdp_user_content .b-text_block div + h5, .b-pdp_user_content .b-text_block div + p, .b-pdp_user_content .b-text_block div + div:not(.b-actions-item), .b-pdp_user_content .b-text_block div + ol, .b-pdp_user_content .b-text_block div + ul, .b-pdp_user_content .b-text_block ol + h1, .b-pdp_user_content .b-text_block ol + h2, .b-pdp_user_content .b-text_block ol + h3, .b-pdp_user_content .b-text_block ol + h4, .b-pdp_user_content .b-text_block ol + h5, .b-pdp_user_content .b-text_block ol + p, .b-pdp_user_content .b-text_block ol + div:not(.b-actions-item), .b-pdp_user_content .b-text_block ol + ol, .b-pdp_user_content .b-text_block ol + ul, .b-pdp_user_content .b-text_block ul + h1, .b-pdp_user_content .b-text_block ul + h2, .b-pdp_user_content .b-text_block ul + h3, .b-pdp_user_content .b-text_block ul + h4, .b-pdp_user_content .b-text_block ul + h5, .b-pdp_user_content .b-text_block ul + p, .b-pdp_user_content .b-text_block ul + div:not(.b-actions-item), .b-pdp_user_content .b-text_block ul + ol, .b-pdp_user_content .b-text_block ul + ul {
  margin-top: 1rem;
}
.b-pdp_user_content blockquote {
  border-left: 4px solid #d9d9d9;
  font-style: italic;
  margin: 0 0 16px;
  padding: 0 0 0 20px;
}
.b-pdp_user_content hr {
  background: #cfcfcf;
  border: 0;
  height: 1px;
  margin: 24px 0;
}
.b-pdp_user_content hr:first-child {
  margin-top: 0;
}
.b-pdp_user_content .b-table_scroll {
  margin: 24px 0;
  overflow: hidden;
  overflow-x: auto;
}
@media not all and (pointer: coarse) {
  .b-pdp_user_content .b-table_scroll {
    scrollbar-color: #000 var(--color-bg, #ffffff);
    scrollbar-width: thin;
    margin-bottom: 20px;
    padding-bottom: 4px;
  }
  .b-pdp_user_content .b-table_scroll::-webkit-scrollbar {
    height: 4px;
    width: 4px;
  }
  .b-pdp_user_content .b-table_scroll::-webkit-scrollbar-thumb {
    background: #000;
  }
  .b-pdp_user_content .b-table_scroll::-webkit-scrollbar-track {
    background: var(--color-bg, #ffffff);
  }
}
@media screen and (max-width: 767.9px) {
  .b-pdp_user_content .b-table_scroll {
    margin: 24px -16px;
    padding: 0 16px;
  }
}
.b-pdp_user_content table {
  float: none;
  margin: 24px 0;
  max-width: 100%;
  width: 100%;
}
.b-pdp_user_content caption {
  font-weight: 600;
  padding-bottom: 8px;
  text-align: inherit;
}
.b-pdp_user_content th,
.b-pdp_user_content td {
  border: 1px solid #f5f5f5;
  height: 58px;
  min-height: 58px;
  padding: 8px 16px;
  text-align: inherit;
}
.b-pdp_user_content th {
  font-weight: 500;
}
.b-pdp_user_content .m-table_small th,
.b-pdp_user_content .m-table_small td {
  padding: 8px 4px;
}
.b-pdp_user_content .m-table_large th,
.b-pdp_user_content .m-table_large td {
  padding: 24px 16px;
}
@media screen and (max-width: 767.9px) {
  .b-pdp_user_content .m-table_large th,
  .b-pdp_user_content .m-table_large td {
    padding: 16px 12px;
  }
}
.b-pdp_user_content .m-no_border th,
.b-pdp_user_content .m-no_border td {
  border-width: 0;
}
.b-pdp_user_content .m-auto_height th,
.b-pdp_user_content .m-auto_height td {
  height: auto;
  min-height: 0;
}
.b-pdp_user_content tbody th:first-child {
  padding: 8px 24px;
}
.b-pdp_user_content a:not(.b-button) {
  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-pdp_user_content a:not(.b-button):hover {
    color: #757575;
  }
}

.b-review {
  background-color: #f5f5f5;
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
  padding: 215px 0;
  text-align: center;
  text-transform: uppercase;
}

/* stylelint-disable declaration-no-important */
/* stylelint-disable no-descending-specificity */
/* stylelint-disable selector-class-pattern */
.b-photoswipe {
  background-color: #ffffff;
}
.b-photoswipe[aria-hidden=false] {
  display: block;
  opacity: 1;
  position: fixed;
}
.b-photoswipe.m-widget-loading::before {
  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;
  left: 50%;
  margin: -1em 0 0 -1em;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.b-photoswipe-close {
  align-items: center;
  -webkit-appearance: none;
          appearance: none;
  background: #f8f8f8;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  text-align: center;
  transition: opacity cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  width: 44px;
  border-radius: 100%;
  margin-inline-start: auto;
  z-index: 1;
}
@media not all and (pointer: coarse) {
  .b-photoswipe-close:hover {
    color: #757575;
  }
}
.b-photoswipe-close svg {
  height: 20px;
  width: 20px;
}
.b-photoswipe-info {
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .b-photoswipe-info {
    padding-left: 24px;
    padding-right: 24px;
    width: 100vh;
  }
}
@media screen and (min-height: 1200px) and (min-width: 768px) {
  .b-photoswipe-info {
    max-width: 1200px;
  }
}
@media screen and (min-height: 1200px) and (min-width: 768px) {
  .b-photoswipe-info {
    top: 50%;
    transform: translateY(-600px);
  }
}
.b-photoswipe .b-zoom_info {
  display: none;
}
.b-photoswipe.pswp--zoomed-in .b-zoom_info {
  opacity: 0;
}

.pswp {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: 0;
  overflow: hidden;
  position: absolute;
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
  top: 0;
  touch-action: none;
  width: 100%;
  z-index: 17;
}

.pswp img {
  max-width: none;
}

.pswp video {
  border: 1px solid #cfcfcf;
  height: auto;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .pswp video {
    left: 50%;
    margin: 24px 0;
    max-width: calc(100vh - 19px);
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767.9px) {
  .pswp video {
    max-width: 100vw;
    top: calc(50% - 10px);
    transform: translateY(-50%);
  }
}

.pswp--animate_opacity {
  opacity: 0.001;
  transition: opacity cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.4s;
  will-change: opacity;
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  cursor: url("./images/zoom-in.png"), zoom-in;
}

.pswp--zoomed-in .pswp__img {
  border: 0;
  cursor: url("./images/zoom-out.png"), zoom-out;
}

.pswp--dragging .pswp__img {
  cursor: grabbing;
}

.pswp__bg {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: #ffffff;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: translateZ(0);
  transition: opacity cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.4s;
  width: 100%;
  will-change: opacity;
}

.pswp__scroll-wrap {
  inset: -24px 0;
  overflow: hidden;
  position: absolute;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  touch-action: none;
}

.pswp__container,
.pswp__img {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
}

.pswp__zoom-wrap {
  bottom: 0;
  position: absolute;
  transform-origin: left top;
  transition: transform cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.4s;
  width: 100%;
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  transition: none;
}

.pswp__item {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}

.pswp__img {
  border: 1px solid #cfcfcf;
  height: auto;
  left: 0;
  position: absolute;
  top: 0;
  width: auto;
}

.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.pswp--ie .pswp__img {
  height: auto !important;
  left: 0;
  top: 0;
  width: 100% !important;
}

.pswp__error-msg {
  color: #a21a10;
  font-size: 14px;
  left: 0;
  line-height: 16px;
  margin-top: -8px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}

.pswp__error-msg a {
  color: #a21a10;
  text-decoration: underline;
}

.pswp__counter {
  display: none;
}

.pswp__navigation {
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100vw;
  align-items: center;
  display: flex;
  inset: 50% 0 auto;
  justify-content: space-between;
  pointer-events: none;
  position: absolute;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .pswp__navigation {
    padding-left: 24px;
    padding-right: 24px;
    width: 100vh;
  }
}
@media screen and (min-height: 1200px) and (min-width: 768px) {
  .pswp__navigation {
    max-width: 1200px;
  }
}

.pswp__button--arrow--left,
.pswp__button--arrow--right {
  align-items: center;
  -webkit-appearance: none;
          appearance: none;
  background: #f8f8f8;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  text-align: center;
  transition: opacity cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  width: 44px;
  border-radius: 100%;
  opacity: 0.9;
  pointer-events: initial;
}
@media not all and (pointer: coarse) {
  .pswp__button--arrow--left:hover,
  .pswp__button--arrow--right:hover {
    color: #757575;
  }
}
.pswp__button--arrow--left svg,
.pswp__button--arrow--right svg {
  height: 24px;
  width: 24px;
}
.pswp__button--arrow--left svg,
.pswp__button--arrow--right svg {
  pointer-events: none;
}
.pswp--zoomed-in .pswp__button--arrow--left,
.pswp--zoomed-in .pswp__button--arrow--right {
  opacity: 0;
  pointer-events: none;
}

.pswp__button--zoom {
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 40px;
  transform: translateX(-442px);
  transition: opacity cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.4s;
}
.pswp__button--zoom:focus {
  opacity: 1;
}

.pswp__ui--one-slide {
  display: none;
}

.pswp__caption {
  display: none;
}

.pswp__dots {
  left: 0;
  margin-top: 50vw;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .pswp__dots {
    bottom: 48px;
    margin-top: 0;
    top: auto;
  }
}
@media screen and (min-height: 1200px) and (min-width: 768px) {
  .pswp__dots {
    bottom: auto;
    margin-top: 0;
    top: 50%;
    transform: translateY(540px);
  }
}
.pswp--zoomed-in .pswp__dots {
  display: none;
}

.b-product_sticky_panel {
  background-color: #ffffff;
  border-top: 1px solid #cfcfcf;
  bottom: 0;
  left: 0;
  max-height: 30vh;
  overflow-y: auto;
  position: fixed;
  transform: translateY(100%);
  transition: transform cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.5s;
  width: 100%;
  z-index: 6;
}
.b-product_sticky_panel.m-opened {
  box-shadow: 0 -8px 4px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(0);
}
.b-product_sticky_panel.m-hidden {
  display: none;
}
.b-product_sticky_panel-inner {
  padding-left: 80px;
  padding-right: 80px;
  margin: 0 auto;
  max-width: 1440px;
  padding-block: 16px;
}
@media screen and (min-width: 1024px) and (max-width: 1366.9px) {
  .b-product_sticky_panel-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .b-product_sticky_panel-inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-product_sticky_panel-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 768px) {
  .b-product_sticky_panel-inner {
    align-items: center;
    display: grid;
    gap: 16px;
    grid-template-columns: 40px 1fr auto minmax(200px, max-content);
    padding-block: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .b-product_sticky_panel-inner {
    gap: 24px;
  }
}
.m-busy .b-product_sticky_panel-inner {
  opacity: 0.6;
  pointer-events: none;
}
.b-product_sticky_panel-name {
  font-size: 18px;
  overflow: hidden;
  word-break: break-all;
}
@media screen and (max-width: 767.9px) {
  .b-product_sticky_panel-name {
    display: none;
  }
}
.b-product_sticky_panel-image {
  border: 1px solid #cfcfcf;
  display: flex;
  font-size: 0;
}
@media screen and (max-width: 767.9px) {
  .b-product_sticky_panel-image {
    display: none;
  }
}
.b-product_sticky_panel .b-price {
  flex-wrap: nowrap;
}
@media screen and (max-width: 767.9px) {
  .b-product_sticky_panel .b-price {
    display: none;
  }
}
.b-product_sticky_panel .b-price-per_unit {
  display: none;
}
.b-product_sticky_panel .b-price-item {
  font-size: 18px;
}

.b-footer-content {
  padding-bottom: 92px;
}

.b-product_features {
  padding: 40px 0 0;
}
.b-product_features-list {
  display: grid;
  gap: 20px;
  grid-template-columns: auto 1fr auto;
}
@media screen and (max-width: 767.9px) {
  .b-product_features-list {
    gap: 20px 8px;
  }
}
.b-product_features-item {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-width: 100px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .b-product_features-item {
    min-width: 80px;
  }
}
.b-product_features-icon {
  height: 40px;
  width: 40px;
}
.b-product_features-title {
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

.b-product_snapshots {
  padding: 0 24px;
}
.b-product_snapshots-title {
  font-size: 32px;
  line-height: 1.28;
  margin-bottom: 8px;
  font-weight: 600;
}
.b-product_snapshots-subtitle {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.b-product_snapshots-list {
  cursor: pointer;
  display: grid;
  gap: 4px;
}
@media screen and (min-width: 1024px) {
  .b-product_snapshots-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1023.9px) {
  .b-product_snapshots-list {
    display: flex;
    overflow-x: auto;
  }
}
.b-product_snapshots-item {
  overflow: hidden;
}
@media screen and (max-width: 1366.9px) {
  .b-product_snapshots-item {
    width: 204px;
    flex-shrink: 0;
  }
}
.b-product_snapshots-image_wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}
.b-product_snapshots-image {
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  width: 100%;
}
.b-product_snapshots-label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .b-product_snapshots-label {
    font-size: 16px;
  }
}
.b-product_snapshots-background {
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.b-features_drawer {
  padding: 8px 0;
}
.b-features_drawer-item {
  margin-bottom: 16px;
}
.b-features_drawer-item:last-child {
  margin-bottom: 0;
}
.b-features_drawer-label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.28;
  margin: 0 0 4px;
}
.b-features_drawer-text {
  font-size: 16px;
  line-height: 1.28;
  margin: 0;
}

.b-dialog.m-features_drawer .b-dialog-window {
  animation: none;
  border-radius: 0;
  height: 100%;
  max-width: 420px;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .b-dialog.m-features_drawer .b-dialog-window {
    max-width: 100%;
  }
}
.b-dialog.m-features_drawer .b-dialog-header {
  border-bottom: 1px solid #f5f5f5;
}
.b-dialog.m-features_drawer .b-dialog-body {
  overflow-y: auto;
  padding: 24px 0;
}

.b-product_recommendations {
  padding-top: 55px;
}
@media screen and (max-width: 767.9px) {
  .b-product_recommendations {
    padding-top: 24px;
  }
}
.b-product_recommendations-title {
  font: 400 18px / 24px "FannDorenGrotesque", monospace;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.b-product_compare_modal {
  max-height: calc(100vh - 210px);
}
.b-product_compare_modal-title.b-product_compare_modal-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
}
@media screen and (min-width: 1024px) {
  .b-product_compare_modal-title.b-product_compare_modal-title {
    font-size: 24px;
  }
}
.b-product_compare_modal-description {
  margin-top: 12px;
}
@media screen and (min-width: 1024px) {
  .b-product_compare_modal-description {
    font-size: 18px;
    font-weight: 400;
    margin-top: 8px;
  }
}
.b-product_compare_modal-list {
  display: flex;
  flex-flow: column;
  gap: 8px;
  margin-top: 24px;
  padding-bottom: 20px;
}
.b-product_compare_modal-list.b-product_compare_modal-list {
  padding-left: 0;
}
.b-product_compare_modal-item {
  background-color: #f8f8f8;
  display: flex;
  gap: 16px;
  list-style: none;
}
.b-product_compare_modal-item.b-product_compare_modal-item {
  padding: 16px;
}
.b-product_compare_modal-item.m-selected {
  border-left: 4px solid #262424;
  padding-left: 12px;
}
.b-product_compare_modal-item_features {
  display: flex;
  flex-flow: column;
  gap: 4px;
  margin-top: 12px;
}
.b-product_compare_modal-item_features.b-product_compare_modal-item_features {
  padding-left: 0;
}
.b-product_compare_modal-item_features li {
  list-style: none;
  padding-left: 0;
}
.b-product_compare_modal-item_base_layer {
  color: #262424;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.b-product_compare_modal-item_title {
  line-height: 1;
}
.b-product_compare_modal-item_title.b-product_compare_modal-item_title {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.b-product_compare_modal-item_best_for {
  font-weight: 600;
}
.b-product_compare_modal-picture {
  flex-shrink: 0;
}
.b-product_compare_modal-footer {
  background-color: #ffffff;
  bottom: 0;
  box-shadow: 0 -8px 4px 0 rgba(0, 0, 0, 0.1019607843);
  display: flex;
  flex-flow: column;
  gap: 16px;
  left: 0;
  padding: 12px 32px 16px;
  position: absolute;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .b-product_compare_modal-footer {
    padding-inline-end: 16px;
    padding-inline-start: 16px;
  }
}

.b-product_compare_accordion {
  display: flex;
  gap: 16px;
}
.b-product_compare_accordion-picture {
  flex-shrink: 0;
}
.b-product_compare_accordion-title {
  line-height: 1;
}
.b-product_compare_accordion-description {
  margin-top: 8px;
}
.b-product_compare_accordion-link {
  display: inline-block;
  margin-top: 4px;
}

.b-size_guide_top {
  margin-bottom: 40px;
}
.b-size_guide_top-title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .b-size_guide_top-title {
    font-size: 32px;
  }
}
.b-size_guide_top-content {
  display: block;
  width: 100%;
}
.b-size_guide_top-content::after {
  clear: both;
  content: "";
  display: table;
  width: 100%;
}
.b-size_guide_top-image {
  display: block;
  float: left;
  height: 100px;
  margin-right: 16px;
  position: relative;
  width: 100px;
}
@media screen and (min-width: 768px) {
  .b-size_guide_top-image {
    height: 160px;
    width: 160px;
  }
}
.b-size_guide_top-image img {
  border: 0;
  bottom: 0;
  color: #ffffff;
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  border: 1px solid #cfcfcf;
}
.b-size_guide_top-name {
  font-size: 16px;
  font-weight: 600;
}
.b-size_guide_top-rating {
  white-space: nowrap;
}
.b-size_guide_top-info {
  float: left;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .b-size_guide_top-info {
    width: calc(100% - 220px);
  }
}
.b-size_guide_top-truefit {
  float: left;
  margin-top: 24px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .b-size_guide_top-truefit {
    width: auto;
  }
}
.b-size_guide_top-truefit .b-product_details-truefit {
  margin: 0;
  padding: 0;
}

/* stylelint-disable */
[data-widget=narvarEddWidget] {
  margin: 1rem auto 0;
  min-height: 64px;
  position: relative;
}
[data-widget=narvarEddWidget] > svg {
  height: 24px;
  left: 0;
  margin-top: 2px;
  position: absolute;
  top: 0;
  width: 24px;
}

[data-narvar-feature=eddCalculator] .bowHeW {
  display: none;
}
[data-narvar-feature=eddCalculator] [viewBox="0 0 16 11"] {
  display: none;
}
[data-narvar-feature=eddCalculator] [viewBox="0 0 11 11"] {
  display: none;
}
[data-narvar-feature=eddCalculator] form {
  margin-bottom: 20px;
}
[data-narvar-feature=eddCalculator] form > div {
  display: flex;
  margin: 0;
}
[data-narvar-feature=eddCalculator] form > div .ybekT {
  display: none;
}
[data-narvar-feature=eddCalculator] form > div div:first-child {
  height: 100%;
  padding: 0;
}
[data-narvar-feature=eddCalculator] form > div div:first-child input {
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #cfcfcf;
  border-radius: 0;
  height: 48px;
  padding: 0 16px;
}
[data-narvar-feature=eddCalculator] form > div div:first-child label {
  font-size: 14px;
  font-weight: 400;
  top: 50%;
}
[data-narvar-feature=eddCalculator] form > div div:last-child {
  padding: 0;
}
[data-narvar-feature=eddCalculator] form > div > div:last-of-type {
  max-width: 124px;
}
[data-narvar-feature=eddCalculator] form > div div:last-child button {
  font-size: 14px;
  font-weight: 700;
  background-color: #262424;
  border-radius: 0;
  cursor: pointer;
  height: 48px;
  letter-spacing: 2px;
  line-height: 1;
  padding-top: 8px;
  margin: 0;
}
[data-narvar-feature=eddCalculator] > div {
  font-weight: 600 !important;
  padding: 0 0 0 2rem !important;
}
[data-narvar-feature=eddCalculator] > div > div:first-child {
  font-weight: initial !important;
  margin-top: 0 !important;
}
[data-narvar-feature=eddCalculator] > div > div:first-child > div {
  font-size: 12px;
  margin: 0 !important;
}
[data-narvar-feature=eddCalculator] > div > button {
  cursor: pointer;
  font-size: 14px !important;
  margin-left: 4px;
  position: relative;
}
[data-narvar-feature=eddCalculator] > div > button:hover {
  color: #000000;
}
[data-narvar-feature=eddCalculator] > div > button::before {
  content: ":";
  left: -7px;
  position: absolute;
  top: 0;
}

/* stylelint-enable */
/* stylelint-disable */
.lcly-pdp-components a.lcly-primary-trigger {
  margin-top: 0;
}
@media not all and (pointer: coarse) {
  .lcly-pdp-components a.lcly-primary-trigger:hover span {
    color: #757575;
  }
}
.lcly-pdp-components a.lcly-primary-trigger span {
  align-items: center;
  color: #000000 !important;
  display: flex;
  font-size: 14px !important;
  font-weight: 400 !important;
  gap: 4px;
  height: auto;
  line-height: 1.8;
  text-decoration: underline;
}
.lcly-pdp-components div#lcly-button-0 {
  margin-top: 0;
}
.lcly-pdp-components svg.icon-locally-outline {
  background-image: url("../images/icons/pin.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 14px;
  content: "";
  height: 18px !important;
  width: 18px !important;
}
.lcly-pdp-components svg.icon-locally-outline use {
  display: none;
}

/* stylelint-enable */
.b-temperature_rating {
  padding: 20px 0;
}
.b-temperature_rating-details_title {
  font-weight: 600;
}
.b-temperature_rating-indicator {
  display: flex;
  gap: 1px;
  margin-top: 10px;
}
.b-temperature_rating-indicator_item {
  background-color: #e1e1e1;
  flex-basis: 0;
  flex-grow: 1;
  height: 18px;
}
.b-temperature_rating-indicator_item:first-child {
  border-bottom-left-radius: 100px;
  border-top-left-radius: 100px;
}
.b-temperature_rating-indicator_item:last-child {
  border-bottom-right-radius: 100px;
  border-top-right-radius: 100px;
}
.b-temperature_rating-indicator_item.m-selected {
  background-color: #525252;
}
.b-temperature_rating-bar {
  display: flex;
  margin-top: 6px;
}
.b-temperature_rating-bar_item {
  display: flex;
  flex-basis: 0;
  flex-flow: column;
  flex-grow: 1;
  line-height: 1;
  text-align: center;
}
.b-temperature_rating-bar_item:first-child {
  text-align: left;
}
.b-temperature_rating-bar_item:last-child {
  text-align: right;
}
.b-temperature_rating-bar_temperature {
  font-size: 12px;
  color: #757575;
  margin-top: 4px;
}

/* stylelint-disable selector-max-universal */
.b-klarna_placement {
  display: grid;
}
.b-klarna_placement::part(osm-cta), .b-klarna_placement::part(osm-container) {
  font-size: 14px;
  color: #000000;
  font-family: "FannDorenGrotesque", "Arial", sans-serif;
  letter-spacing: 0.01em;
  text-transform: capitalize;
}
.b-klarna_placement::part(osm-container) {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: start;
  z-index: 1;
}
.b-klarna_placement::part(osm-container)::before {
  background: #ffffff;
  bottom: -22px;
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.b-klarna_placement::part(osm-link), .b-klarna_placement::part(osm-cta) {
  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-klarna_placement::part(osm-link):hover, .b-klarna_placement::part(osm-cta):hover {
    color: #757575;
  }
}
.b-klarna_placement::part(osm-logo) {
  font-family: "FannDorenGrotesque", monospace;
  letter-spacing: 0;
}
.b-klarna_placement.m-header::part(osm-container), .b-klarna_placement.m-header::part(osm-cta) {
  font-size: 15px;
  font-weight: 600;
}
.b-klarna_placement.m-header::part(osm-container) {
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 8px;
  padding-top: 8px;
}
@media screen and (min-width: 1024px) and (max-width: 1366.9px) {
  .b-klarna_placement.m-header::part(osm-container) {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .b-klarna_placement.m-header::part(osm-container) {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-klarna_placement.m-header::part(osm-container) {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.b-klarna_placement.m-header::part(osm-cta) {
  font-family: "FannDorenGrotesque", monospace;
}
.m-transparent_header .b-klarna_placement.m-header {
  display: none;
}
.b-klarna_placement.m-cart {
  margin-top: 8px;
}
.b-klarna_placement.m-pdp {
  margin: 8px 0 20px;
}
.m-quick_view .b-klarna_placement.m-pdp {
  margin: 16px 0 0;
}

.b-shop_the_look {
  border-top: 1px solid #cfcfcf;
}
@media screen and (max-width: 767.9px) {
  .b-shop_the_look {
    display: none;
  }
}
.b-shop_the_look.m-carousel {
  border-top: 0;
  display: none;
}
@media screen and (max-width: 767.9px) {
  .b-shop_the_look.m-carousel {
    display: block;
    margin-bottom: 120px;
  }
}
.b-shop_the_look-title {
  font-weight: 600;
  font-size: 20px;
  margin: 32px 0 24px;
}
@media screen and (min-width: 1024px) {
  .b-shop_the_look-title {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .b-shop_the_look-title {
    margin: 26px 0 24px;
    text-align: center;
  }
}
.b-shop_the_look-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 767.9px) {
  .b-shop_the_look-list {
    display: flex;
    margin-inline-end: -16px;
    margin-inline-start: -16px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-shop_the_look-item {
    flex-shrink: 0;
    width: 244px;
  }
}
.b-shop_the_look-item_title {
  font-size: 18px;
  font-weight: 400;
  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;
  cursor: pointer;
  margin-bottom: 8px;
  text-align: center;
}
@media not all and (pointer: coarse) {
  .b-shop_the_look-item_title:hover {
    color: #757575;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .b-shop_the_look-item_title {
    font-size: 16px;
    font-weight: 400;
  }
}
.b-shop_the_look-product_inner {
  border: 1px solid #cfcfcf;
  cursor: pointer;
  padding: 8px;
}
.b-shop_the_look-btn {
  background: transparent;
  border: none;
  border-bottom: 2px solid;
  border-radius: 0;
  color: #262424;
  font-size: 16px;
  font-weight: 700;
  gap: 8px;
  height: 22px;
  line-height: 1;
  padding: 0;
  position: relative;
  text-transform: uppercase;
  transition: color cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  cursor: pointer;
  display: block;
  margin: 16px auto 0;
}
@media not all and (pointer: coarse) {
  .b-shop_the_look-btn:hover {
    background: transparent;
    border: none;
    border-bottom: 2px solid;
    color: #000000;
  }
}
.b-shop_the_look-btn:focus {
  background: transparent;
  border: none;
  border-bottom: 2px solid;
  color: #000000;
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .b-shop_the_look-btn {
    font-size: 12px;
  }
}

.b-breakdown {
  align-items: center;
  background-color: #f8f8f8;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 1023.9px) {
  .b-breakdown {
    flex-flow: column-reverse;
    gap: 36px;
    padding-bottom: 40px;
  }
}
.b-breakdown-item {
  flex-basis: 0;
  flex-grow: 1;
}
@media screen and (max-width: 1023.9px) {
  .b-breakdown-item {
    width: 100%;
  }
}
.b-breakdown-item.m-details {
  display: flex;
  justify-content: flex-end;
}
.b-breakdown-item_inner {
  max-width: calc(720px - 8px);
  padding-inline-start: 80px;
}
@media screen and (min-width: 1024px) and (max-width: 1366.9px) {
  .b-breakdown-item_inner {
    padding-inline-start: 40px;
  }
}
@media screen and (max-width: 1023.9px) {
  .b-breakdown-item_inner {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .b-breakdown-item_inner {
    padding-inline-end: 30px;
    padding-inline-start: 30px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-breakdown-item_inner {
    padding-inline-end: 16px;
    padding-inline-start: 16px;
  }
}
.b-breakdown-picture {
  display: flex;
  width: 100%;
}
.b-breakdown-picture img {
  width: 100%;
}
.b-breakdown-title {
  font-weight: 700;
  font-size: 28px;
}
@media screen and (min-width: 1024px) {
  .b-breakdown-title {
    font-size: 40px;
  }
}
.b-breakdown-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
@media screen and (max-width: 1023.9px) {
  .b-breakdown-details {
    margin-top: 12px;
  }
}
.b-breakdown-details_item {
  background-color: #ffffff;
  border: 1px solid #b8b8b8;
  padding: 12px 16px;
}
.b-breakdown-details_subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #262424;
  text-transform: uppercase;
}
.b-breakdown-details_title {
  font-size: 18px;
  font-weight: 700;
}
.b-breakdown-details_description {
  margin-top: 8px;
}
.b-breakdown-details_cta {
  margin-top: 16px;
}
.b-breakdown-ride_experience {
  flex-shrink: 0;
  padding: 12px 16px 16px;
  width: 100%;
}
.b-breakdown-cushion {
  max-height: 220px;
}
@media screen and (min-width: 768px) {
  .b-breakdown-cushion {
    flex-basis: 0;
    flex-grow: 1;
  }
}
@media screen and (max-width: 767.9px) {
  .b-breakdown-cushion {
    width: 100%;
  }
}
.b-breakdown-cushion_picture {
  display: flex;
  margin-top: 12px;
}
@media screen and (max-width: 767.9px) {
  .b-breakdown-cushion_picture {
    margin-top: 16px;
  }
}
.b-breakdown-cushion_picture img {
  height: 120px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .b-breakdown-specs {
    flex-basis: 0;
    flex-grow: 1;
  }
}
@media screen and (max-width: 767.9px) {
  .b-breakdown-specs {
    width: 100%;
  }
}
.b-breakdown-specs_item {
  border-bottom: 1px solid #b8b8b8;
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
.b-breakdown-specs_item:first-child {
  margin-top: 8px;
}
.b-breakdown-specs_item:last-child {
  border-bottom: none;
}
.b-breakdown-specs_item_title {
  align-items: center;
  display: flex;
  gap: 2px;
}
.b-breakdown-specs_item_title .b-tooltip-button {
  height: 20px;
  width: 20px;
}
.b-breakdown-specs_item_title .b-tooltip-container {
  z-index: 4;
}
.b-breakdown-specs_item_value {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.b-advantages {
  align-items: flex-start;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767.9px) {
  .b-advantages {
    flex-flow: column;
    gap: 44px;
  }
}
.b-advantages-item {
  flex-basis: 0;
  flex-grow: 1;
}
.b-advantages-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #262424;
  padding-top: 16px;
  text-transform: uppercase;
}
.b-advantages-title {
  font-weight: 700;
  font-size: 28px;
}
@media screen and (min-width: 1024px) {
  .b-advantages-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-advantages-title {
    margin-top: 4px;
  }
}
.b-advantages-list {
  margin-top: 28px;
}
@media screen and (max-width: 767.9px) {
  .b-advantages-list {
    margin-top: 36px;
  }
}
.b-advantages-list_item {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
@media screen and (max-width: 767.9px) {
  .b-advantages-list_item {
    margin-top: 16px;
  }
}
.b-advantages-list_picture {
  flex-shrink: 0;
}
.b-advantages-list_picture img {
  display: block;
}
.b-advantages-list_item_title {
  font-size: 16px;
  font-weight: 600;
}
.b-advantages-list_item_description {
  margin-top: 4px;
}
.b-advantages-picture {
  display: flex;
  width: 100%;
}
.b-advantages-picture img {
  width: 100%;
}

.b-sock_style {
  display: flex;
  flex-flow: column;
  gap: 16px;
}
@media screen and (max-width: 767.9px) {
  .b-sock_style {
    gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .b-sock_style {
    flex-flow: row;
  }
}
.b-sock_style-item {
  flex-basis: 0;
  flex-grow: 1;
}
@media screen and (max-width: 767.9px) {
  .b-sock_style-item.m-left {
    padding-left: 80px;
    padding-right: 80px;
    margin: 0 auto;
    max-width: 1440px;
  }
}
@media screen and (max-width: 767.9px) and (min-width: 1024px) and (max-width: 1366.9px) {
  .b-sock_style-item.m-left {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 767.9px) and (min-width: 768px) and (max-width: 1023.9px) {
  .b-sock_style-item.m-left {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .b-sock_style-item.m-left {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.b-sock_style-subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 17.5px;
  margin-bottom: 16px;
}
.b-sock_style-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  text-transform: capitalize;
}
.b-sock_style-description {
  margin-top: 40px;
}
.b-sock_style-cta {
  font-size: 14px;
  font-weight: 600;
  line-height: 16.1px;
  margin-top: 40px;
  text-transform: uppercase;
}
.b-sock_style-feature_cards {
  align-items: center;
  background-color: #f8f8f8;
  display: flex;
  gap: 16px;
  padding: 16px;
  text-decoration: none;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  transition-property: opacity, color;
}
.b-sock_style-feature_cards + .b-sock_style-feature_cards {
  margin-top: 8px;
}
.b-sock_style-feature_cards_img {
  flex-shrink: 0;
}
.b-sock_style-feature_cards_title {
  font-size: 18px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
}
.b-sock_style-feature_cards_description {
  font-size: 14px;
  line-height: 21px;
  margin-top: 16px;
}

.b-pdp-newer_product {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 24px;
  text-align: left;
}
.b-pdp-newer_product_details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 50%;
}
.b-pdp-newer_product_details_title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 20.7px;
}
.b-pdp-newer_product_details .b-price .b-price-item {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.b-pdp-newer_product_details_colors {
  color: #d9d9d9;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.b-pdp-newer_product_image {
  width: 50%;
}
.b-pdp-newer_product_link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 14px;
  text-transform: uppercase;
  width: 100%;
}

.b-pdp-cross_promo {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .b-pdp-cross_promo {
    flex-flow: row wrap;
    justify-content: space-between;
    text-align: left;
  }
}
.b-pdp-cross_promo_details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .b-pdp-cross_promo_details {
    width: 50%;
  }
}
.b-pdp-cross_promo_details_eyebrow {
  color: #262424;
  font-size: 16px;
  font-weight: 700;
  line-height: 18.4px;
  text-transform: uppercase;
}
.b-pdp-cross_promo_details_title {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.b-pdp-cross_promo_details_description {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.b-pdp-cross_promo_image {
  padding: 24px 0;
  width: auto;
}
@media screen and (min-width: 768px) {
  .b-pdp-cross_promo_image {
    padding: 0;
    width: 40%;
  }
}
.b-pdp-cross_promo_image img {
  max-height: 228px;
  width: auto;
}
.b-pdp-cross_promo_link {
  font-size: 16px;
  font-weight: 700;
  line-height: 18.4px;
  text-transform: uppercase;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .b-pdp-cross_promo_link {
    padding-top: 24px;
  }
}

.b-dialog.m-quick_view .b-dialog-body {
  display: initial;
}

.b-quick_buy-price, .b-quick_buy-price .b-price-item {
  font-size: 18px !important;
  font-weight: 400;
}

.b-size_drawer-trigger {
  align-items: center;
  background-color: #fff;
  border: 1px solid #d8d8d8;
  cursor: pointer;
  display: flex;
  font: inherit;
  justify-content: space-between;
  margin-top: 8px;
  padding: 12px 16px;
  width: 100%;
}
.b-size_drawer-trigger:hover, .b-size_drawer-trigger:focus-visible {
  border-color: #1a1a1a;
  outline: none;
}

.b-size_drawer-trigger_label {
  color: #1a1a1a;
  font-size: 14px;
}

.b-size_drawer-trigger_icon {
  display: flex;
  flex-shrink: 0;
  margin-inline-start: 8px;
}

.b-size_drawer-panel {
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.18);
}

.b-size_drawer-header {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #d8d8d8;
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  padding: 20px 24px;
}

.b-size_drawer-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.b-dialog-close {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 4px;
}

.b-size_drawer-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.b-size_drawer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.b-size_drawer-item {
  align-items: center;
  border-bottom: 1px solid #d8d8d8;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  transition: background-color 0.15s ease;
  -webkit-user-select: none;
          user-select: none;
}
.b-size_drawer-item:hover {
  background-color: #f5f5f5;
}
.b-size_drawer-item.m-selected {
  background-color: #1a1a1a;
  color: #fff;
  font-weight: 600;
}
.b-size_drawer-item.m-selected:hover {
  background-color: #1a1a1a;
}
.b-size_drawer-item.m-oos {
  cursor: pointer;
  opacity: 0.65;
}
.b-size_drawer-item.m-oos:hover {
  background-color: #f5f5f5;
}
.b-size_drawer-item.m-oos .b-size_drawer-item_label {
  color: #555;
}

.b-size_drawer-item_label {
  font-size: 14px;
  font-weight: 400;
}

.b-size_drawer-item_price {
  color: #555;
  font-size: 14px;
}

.b-size_drawer-item_oos {
  color: #9a9a9a;
  font-size: 12px;
  font-style: italic;
}

.b-size_drawer-footer {
  background: #fff;
  border-top: 1px solid #d8d8d8;
  flex-shrink: 0;
  padding: 16px 24px;
}
.b-size_drawer-footer.m-hidden {
  display: none;
}

.b-size_drawer-add_to_cart {
  background-color: #1a1a1a;
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 16px;
  text-transform: uppercase;
  width: 100%;
}
.b-size_drawer-add_to_cart:hover {
  background-color: #333;
}

.b-quick_buy-variations, .b-quick_buy-price, .b-quick_buy-options {
  margin-bottom: 16px;
}
.b-quick_buy-options {
  font-weight: 500;
}
.b-quick_buy-options a {
  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: block;
  margin-top: 8px;
}
@media not all and (pointer: coarse) {
  .b-quick_buy-options a:hover {
    color: #757575;
  }
}
.b-quick_buy-price, .b-quick_buy-price .b-price-item {
  font-size: 20px;
}
.b-quick_buy-link_wrap {
  padding: 16px 0;
  text-align: center;
}
.b-quick_buy-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);
}
@media not all and (pointer: coarse) {
  .b-quick_buy-link:hover {
    color: #757575;
  }
}
.b-quick_buy .b-variations_item {
  font-size: 14px;
  margin-bottom: 16px;
}

.b-product_wishlist {
  position: relative;
}
.b-product_wishlist-btn {
  width: 100%;
}
.b-product_wishlist-action {
  margin-top: 16px;
}
.b-product_wishlist-action.m-success {
  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-product_wishlist-action.m-error {
  color: #a21a10;
  font-weight: 600;
}

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

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