/*md
@no-stat

# Breakpoints

## Boilerplate breakpoints

Boilerplate 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

Boilerplate 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         |

*/
/*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: 1023px)',
	md-landscape:  'screen and (min-width: 1024) and (max-width: 1200)',
	lg: 'screen and (min-width: 1024px) and (max-width: 1366px)',
	xl: 'screen and (min-width: 1367px)',
	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: 1366px)'
);
```

## Usage

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

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

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

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

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

*/
/*md
@no-stat

# Colors

## Palette

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

* Palette is general set of colors.
* Applied colors designed as layer of abstraction to have ability to overwritten on brand level.

## Naming convention

Pattern: `<component-name>__<property>--<state>`

`<component-name>` refers to the name of the component or element that
the custom property is associated with.

`<property>` refers to the CSS property being defined, such as
`color`, `background`, `border`, `outline`, `fill`, etc.
Please don't use short names for property such as `bg` etc.

`<state>` term refers to the different states or conditions that a component might be in,
such as `hover`, `active`, `disabled`, `focus`, `invalid`, `error`, `placeholder` etc.

For example, if we have a button component, we might define custom properties for its text color and background color,
like this:

```scss
{$}color-primary-button__color: $color-white;
{$}color-primary-button__background: $color-blue-900;
```

If we want to define a variation of the button that has a different background color when it's in a hovered state,
we can add the state to the custom property name:

```scss
{$}color-primary-button__background--hover: $color-grey-900;
```
*/
/*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

# Rh (Indents rhythm)

This function is designed to keep consistency of vertical and horizontal indents in the project.

Not all values are identical in design, sometimes 20px become 21px, 19px, 22px etc. It does not make
any sense to implement it as is. To keep indents consistent we need to round this values to 4px steps.

Ex: in design 22px / 19px -> rh(5) => 20px; in design 23px -> rh(6) => 24px etc.

This is alternate approach to `$space-md: 10px; $space-lg: 20px;`.

Designers should use the rhythm in his work.

## Usage

```scss
.component {
	@include rh(2); // => 8px
	@include rh(2 4 0); // => 8px 16px 0
}
```
*/
/*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; }
```

*/
/* stylelint-disable-next-line */
/*md
@no-stat

# Grids

## How to setup grids config for project

### Several grid configs for project

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

### 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),
	)
);
```

### Grid-span configuration

Please see details [grid-span](01-core-functions-grid-span.html)

## Work with grids

### Development approaches

#### 1. Using `g-grid` mixin

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

#### 2. Using `grid-span` function

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.

### Get gaps / margin / column span

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.

### Examples of usage

Please see [ready-made tools](05-blocks-guide-l-cols.html) details.

*/
/*md
@no-stat

# grid-* (grid config get functions)

This functions designed to get parameters 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);
	}
}
```
*/
/* stylelint-disable-next-line */
/*md
@no-stat

# Icons variables

This is auto generated file. Please do not edit `_icons.scss`.

List of all icons is [here](./iconsl360.html)

Please see [icons](./01-core-mixins-doc-_icons.html) documentation for details.

*/
/*md
@no-stat

# grid-span

`grid-span` function returns value which could be used as **width, max-witdth, flex-basis, etc.**

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

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

# 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 loosing 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

# 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
@no-stat

# Icons

List of all icons is [here](./iconsl360.html)

Please see [icons](./01-core-mixins-doc-_icons.html) documentation for details.

*/
/*md
@no-stat

# Carousel slide dimension

This mixin calculates the max-width and min-width for carousel items
based on the number of slides to show and the gap between them.
It is designed to help create responsive carousel layouts by ensuring that the items adjust their sizes appropriately,
taking into account the specified gaps.

## Usage

```scss
.b-carousel-item {
	@include calculate-carousel-item(4, 20px);
}
```
*/
/*md

# g-button

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

*/
/*md

# g-button_iconed

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_iconed;
	}
}
```
*/
/*md

# g-radio

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

## 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).

## 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 xmlns="http://www.w3.org/2000/svg" focusable="false" role="presentation" width="16" height="16" viewBox="0 0 16 16">
		<path d="M15.5 3.5 5 14.1.5 9.5l1.1-1.1L5 11.9l9.5-9.5z"/>
	</svg>
	<label class="b-form_section-label" for="id-checkbox-1">Title</label>
</div>
```

## Checked
```html_example
<div class="b-checkbox">
	<input class="b-checkbox-input" type="checkbox" id="id-checkbox-2" checked/>
	<svg xmlns="http://www.w3.org/2000/svg" focusable="false" role="presentation" width="16" height="16" viewBox="0 0 16 16">
		<path d="M15.5 3.5 5 14.1.5 9.5l1.1-1.1L5 11.9l9.5-9.5z"/>
	</svg>
	<label class="b-form_section-label" for="id-checkbox-2">Title</label>
</div>
```

## Disabled unchecked
```html_example
<div class="b-checkbox">
	<input class="b-checkbox-input" type="checkbox" id="id-checkbox-3" disabled/>
	<svg xmlns="http://www.w3.org/2000/svg" focusable="false" role="presentation" width="16" height="16" viewBox="0 0 16 16">
		<path d="M15.5 3.5 5 14.1.5 9.5l1.1-1.1L5 11.9l9.5-9.5z"/>
	</svg>
	<label class="b-form_section-label" for="id-checkbox-3">Title</label>
</div>
```

## Disabled checked
```html_example
<div class="b-checkbox">
	<input class="b-checkbox-input" type="checkbox" id="id-checkbox-4" checked disabled/>
	<svg xmlns="http://www.w3.org/2000/svg" focusable="false" role="presentation" width="16" height="16" viewBox="0 0 16 16">
		<path d="M15.5 3.5 5 14.1.5 9.5l1.1-1.1L5 11.9l9.5-9.5z"/>
	</svg>
	<label class="b-form_section-label" for="id-checkbox-4">Title</label>
</div>
```

## Invalid unchecked
```html_example
<div class="b-checkbox">
	<input class="b-checkbox-input m-invalid" type="checkbox" id="id-checkbox-5"/>
	<svg xmlns="http://www.w3.org/2000/svg" focusable="false" role="presentation" width="16" height="16" viewBox="0 0 16 16">
		<path d="M15.5 3.5 5 14.1.5 9.5l1.1-1.1L5 11.9l9.5-9.5z"/>
	</svg>
	<label class="b-form_section-label" for="id-checkbox-5">Title</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 xmlns="http://www.w3.org/2000/svg" focusable="false" role="presentation" width="16" height="16" viewBox="0 0 16 16">
		<path d="M15.5 3.5 5 14.1.5 9.5l1.1-1.1L5 11.9l9.5-9.5z"/>
	</svg>
	<label class="b-form_section-label" for="id-checkbox-6">Title</label>
</div>

```

## Required checkbox
```html_example
<div class="b-checkbox">
	<input type="checkbox" class="b-checkbox-input" id="checkox1">
	<svg xmlns="http://www.w3.org/2000/svg" focusable="false" role="presentation" width="16" height="16" viewBox="0 0 16 16">
		<path stroke="currentColor" d="M15.5 3.5 5 14.1.5 9.5l1.1-1.1L5 11.9l9.5-9.5z"/>
	</svg>
	<span class="b-form_section-required">*</span>
	<label class="b-form_section-label" for="checkox1">
		By signing up, you agree to <a href="#" target="_blank" class="b-form_section-link">Privacy and Cookie Policies</a>
	</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

Designed to provide same styles of text-type links across different components.
For g-button with arrow icon please use next .isml templates:
<isinclude template="/common/icons/standalone/arrow-right" />
<isinclude template="/common/icons/standalone/arrow-left" />

There are some predefined parameters:
	$_mode: default,   // link variations
	$_type: primary,   // type
	$_font_size: 14px  //font size ( by default 14px )

## Usage

## Default link type

```html_example
<!--
Classes:
:disabled - Disabled
:hover - Hover
:active - Active
:focus - Focus
-->
<a href="#" class="b-link [modifier class]">
	I am a link
</a>
```

##  Primary link 1

```html_example
<!--
Classes:
.m-type_regular_underline - Regular underline
.m-type_regular - Regular
.m-type_light - Light
.m-type_regular_underline.m-big - Regular underline, big
.m-type_regular.m-big - Regular, big
-->
<a href="#" class="b-link m-primary [modifier class]">
	I am a link
</a>
```


## Secondary link 1

```html_example
<!--
Classes:
.m-type_regular_medium - Medium
.m-type_light - Light
.m-type_regular_big - Big
.m-type_bold - Bold
-->
<a href="#" class="b-link m-secondary [modifier class]">
	I am a link
</a>
```

## Icon link type

```html_example
<a href="#" class="b-link m-primary m-type_regular m-big m-icon">
	I am a link
	<svg viewBox="0 0 15 9" fill="none" xmlns="http://www.w3.org/2000/svg">
		<path d="M-7.32137e-07 3.93182L-7.81809e-07 5.06818L12.861 5.06818L9.79724 8.19318L10.5882 9L15 4.5L10.5882 7.6083e-07L9.79724 0.806819L12.861 3.93182L-7.32137e-07 3.93182Z" fill="currentColor"/>
	</svg>
</a>
```
*/
/*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_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_dialog;
	}
	// ...
}
```
*/
/*md

# g-dialog_backdrop

Dialog window backdrop styles that used in several component.

Designed to use same style of backdrop and logic in different components and on particular breakpoints.
Ex: b-dialog, b-menu_panel, b-refinements_panel, b-minicart_panel etc.

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

# g-section_holder

This is global component designed to hold some standalone section of the site
as it 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_fullbleed

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

This is global component designed to hold header of the site as it wrapped into
main container.

This common designs it could be removed and changed to `section_holder`.

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

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

# g-grid

Grid layout component based on CSS grid.

It is designed to easy use project defined grid into components where CSS grid is
applicable.

```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;
		}
	}
}
```
*/
/*md

# g-select

Designed to provide same styles of select across different components.

*/
.g-recaptcha {
  position: relative;
  z-index: 5;
}
.g-recaptcha .grecaptcha-badge {
  width: 70px !important;
  bottom: 20px !important;
  right: 0 !important;
  left: 0;
  transform: scale(0.7);
  transform-origin: 0 bottom;
  transition: width 0.3s ease 0s !important;
}
@media screen and (max-width: 1023px) {
  .g-recaptcha .grecaptcha-badge.grecaptcha-badge {
    overflow: hidden;
    box-shadow: grey 0px 0px 5px;
    visibility: visible !important;
  }
}
.g-recaptcha .grecaptcha-badge:hover {
  width: 256px !important;
}
.b-consent_tracking_visible .g-recaptcha .grecaptcha-badge {
  bottom: 155px !important;
}
@media screen and (min-width: 1024px) {
  .b-consent_tracking_visible .g-recaptcha .grecaptcha-badge {
    bottom: 90px !important;
  }
}

.ie-div-position-customer-chat .button-iframe-wrap {
  z-index: 5;
}
.ie-div-position-customer-chat .button-iframe-wrap .ie-chat-button-iframe-fixed-customer-chat {
  bottom: 20px;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .ie-div-position-customer-chat .button-iframe-wrap .ie-chat-button-iframe-fixed-customer-chat {
    right: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .b-buy_bar_float .ie-div-position-customer-chat .button-iframe-wrap .ie-chat-button-iframe-fixed-customer-chat {
    bottom: 90px;
  }
}
.b-consent_tracking_visible .ie-div-position-customer-chat .button-iframe-wrap .ie-chat-button-iframe-fixed-customer-chat, .b-buy_bar_stucks .ie-div-position-customer-chat .button-iframe-wrap .ie-chat-button-iframe-fixed-customer-chat {
  bottom: 90px;
}
.b-proceed_stucks .ie-div-position-customer-chat .button-iframe-wrap .ie-chat-button-iframe-fixed-customer-chat {
  bottom: 110px;
}
@media screen and (max-width: 1023px) {
  .b-proceed_stucks .ie-div-position-customer-chat .button-iframe-wrap .ie-chat-button-iframe-fixed-customer-chat {
    bottom: 130px;
  }
}
@media screen and (min-width: 1024px) {
  .b-consent_tracking_visible.b-buy_bar_stucks .ie-div-position-customer-chat .button-iframe-wrap .ie-chat-button-iframe-fixed-customer-chat {
    bottom: 165px;
  }
}
.b-consent_tracking_visible.b-proceed_stucks .ie-div-position-customer-chat .button-iframe-wrap .ie-chat-button-iframe-fixed-customer-chat {
  bottom: 265px;
}
@media screen and (min-width: 1024px) {
  .b-consent_tracking_visible.b-proceed_stucks .ie-div-position-customer-chat .button-iframe-wrap .ie-chat-button-iframe-fixed-customer-chat {
    bottom: 185px;
  }
}
@media screen and (max-width: 1023px) {
  .b-consent_tracking_visible .ie-div-position-customer-chat .button-iframe-wrap .ie-chat-button-iframe-fixed-customer-chat {
    bottom: 150px;
  }
}
@media screen and (max-width: 1023px) {
  .b-consent_tracking_visible.b-buy_bar_stucks .ie-div-position-customer-chat .button-iframe-wrap .ie-chat-button-iframe-fixed-customer-chat, .b-consent_tracking_visible.b-buy_bar_float .ie-div-position-customer-chat .button-iframe-wrap .ie-chat-button-iframe-fixed-customer-chat {
    bottom: 220px;
  }
}
@media screen and (min-width: 1024px) {
  .l-page-checkout .ie-div-position-customer-chat .button-iframe-wrap .ie-chat-button-iframe-fixed-customer-chat {
    bottom: 80px;
  }
}
.b-consent_tracking_visible.l-page-checkout .ie-div-position-customer-chat .button-iframe-wrap .ie-chat-button-iframe-fixed-customer-chat {
  bottom: 155px;
}
@media screen and (min-width: 1024px) {
  .b-consent_tracking_visible.l-page-checkout .ie-div-position-customer-chat .button-iframe-wrap .ie-chat-button-iframe-fixed-customer-chat {
    bottom: 165px;
  }
}
.ie-div-position-customer-chat .chat-iframe-wrap {
  bottom: 90px;
  height: calc(100% - 110px);
}
.b-consent_tracking_visible .ie-div-position-customer-chat .chat-iframe-wrap, .b-buy_bar_stucks .ie-div-position-customer-chat .chat-iframe-wrap {
  bottom: 160px;
  height: calc(100% - 185px);
}
.b-proceed_stucks .ie-div-position-customer-chat .chat-iframe-wrap {
  bottom: 180px;
  height: calc(100% - 200px);
}
.b-consent_tracking_visible.b-proceed_stucks .ie-div-position-customer-chat .chat-iframe-wrap {
  bottom: 255px;
  height: calc(100% - 270px);
}
.l-page-checkout .ie-div-position-customer-chat .chat-iframe-wrap {
  bottom: 150px;
  height: calc(100% - 170px);
}
.b-consent_tracking_visible.b-buy_bar_stucks .ie-div-position-customer-chat .chat-iframe-wrap, .b-consent_tracking_visible.l-page-checkout .ie-div-position-customer-chat .chat-iframe-wrap {
  bottom: 235px;
  height: calc(100% - 255px);
}

.g-header_privacy {
  color: #fff;
}
.b-header_stuck .g-header_privacy {
  display: none;
}
.l-header:hover .g-header_privacy {
  background-color: #000;
}
.g-header_privacy-outer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 14px;
}
@media screen and (max-width: 1023px) {
  .g-header_privacy-outer {
    font-size: 14px;
    font-family: "Quattrocento Sans", "Helvetica Neue", "Helvetica", "Arial", "Nimbus Sans L", "Liberation Sans", sans-serif;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: normal;
    align-items: flex-start;
    padding: 8px 14px 6px;
  }
}
@media screen and (min-width: 768px) {
  .g-header_privacy-outer div {
    flex-grow: 1;
    text-align: center;
  }
}
.g-header_privacy-outer.onetimenotice-hide {
  display: none;
}
.g-header_privacy-close {
  color: #fff;
  display: table;
  height: 13px;
  width: 13px;
}
@media screen and (max-width: 1023px) {
  .g-header_privacy-close {
    height: 10px;
    width: 10px;
  }
}
.g-header_privacy-close:hover {
  opacity: 0.8;
}
.g-header_privacy-close svg {
  fill: currentColor;
  max-width: 100%;
}

.l-storelocator {
  margin: 0 auto;
  max-width: 1440px;
  padding-left: 60px;
  padding-right: 60px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-storelocator {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .l-storelocator {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.l-storelocator.m-full {
  padding: 0;
}
.l-storelocator-results {
  display: grid;
  margin-top: 52px;
}
@media screen and (min-width: 1367px) {
  .l-storelocator-results {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .l-storelocator-results {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-storelocator-results {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (max-width: 767px) {
  .l-storelocator-results {
    grid-gap: 9px;
    grid-template-columns: [grid-start] repeat(6, 1fr) [grid-end];
  }
}
@media screen and (max-width: 1023px) {
  .l-storelocator-results {
    display: flex;
    flex-flow: column-reverse;
    grid-gap: 0;
    margin-top: 32px;
  }
}
@media screen and (max-width: 767px) {
  .l-storelocator-results {
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  .l-storelocator-results_content {
    grid-column: span 6;
  }
}
.l-storelocator-details {
  margin-top: 60px;
}
.l-storelocator-details_info {
  display: grid;
  margin-top: 32px;
}
@media screen and (min-width: 1367px) {
  .l-storelocator-details_info {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .l-storelocator-details_info {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-storelocator-details_info {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (max-width: 767px) {
  .l-storelocator-details_info {
    grid-gap: 9px;
    grid-template-columns: [grid-start] repeat(6, 1fr) [grid-end];
  }
}
@media screen and (max-width: 767px) {
  .l-storelocator-details_info {
    display: flex;
    flex-flow: column;
    grid-gap: 0;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-storelocator-details_info.m-bottom {
    margin-top: 56px;
  }
}
@media screen and (min-width: 1024px) {
  .l-storelocator-details_info.m-bottom {
    margin-top: 68px;
  }
}
@media screen and (max-width: 767px) {
  .l-storelocator-details_info_content {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .l-storelocator-details_info_content {
    grid-column: span 6;
  }
}
.l-storelocator-details_info_content.m-width_full {
  grid-column: span 12;
}
.l-storelocator-nearest_stores {
  margin: 36px 0;
}
@media screen and (min-width: 1024px) {
  .l-storelocator-nearest_stores {
    margin: 56px 0 40px;
  }
}

/*md

# Form

Form component designed to create an easy and versatile form layout system.

Forms are built with a combination of standard form elements with a `.b-form_section` wrapper to hold labels, errors and caption for each field.

Each line can hold from one to three form elements, it required only modifier to control that. Also it possible to use any form element inside lines

```html_example
<form class="b-form" autocomplete="on" novalidate="" data-widget="shippingForm" data-event-submit.prevent="handleSubmit" data-widget-event-updateshippingform="updateSummaryEv" data-address-selector="shippingAddressSelector" data-address-fields="dwfrm_shipping_shippingAddress_addressFields_firstName,dwfrm_shipping_shippingAddress_addressFields_lastName,dwfrm_shipping_shippingAddress_addressFields_address1,dwfrm_shipping_shippingAddress_addressFields_address2,dwfrm_shipping_shippingAddress_addressFields_country,dwfrm_shipping_shippingAddress_addressFields_states_stateCode,dwfrm_shipping_shippingAddress_addressFields_city,dwfrm_shipping_shippingAddress_addressFields_postalCode,dwfrm_shipping_shippingAddress_addressFields_phone" data-widget-event-submit="shippingSubmitted" data-select-shipping-method-url="https://zzrk-007.sandbox.us01.dx.commercecloud.salesforce.com/on/demandware.store/Sites-Boilerplate-NA-Site/en_US/CheckoutShippingServices-SelectShippingMethod" data-update-shipping-list-url="https://zzrk-007.sandbox.us01.dx.commercecloud.salesforce.com/on/demandware.store/Sites-Boilerplate-NA-Site/en_US/CheckoutShippingServices-UpdateShippingMethodsList" data-create-shipment-url="https://zzrk-007.sandbox.us01.dx.commercecloud.salesforce.com/on/demandware.store/Sites-Boilerplate-NA-Site/en_US/CheckoutAddressServices-CreateNewAddress" action="/on/demandware.store/Sites-Boilerplate-NA-Site/en_US/CheckoutShippingServices-SubmitShipping" data-address-mode="edit" data-form-definition-url="/on/demandware.store/Sites-Boilerplate-NA-Site/en_US/Forms-FormDefinition?form=shipping" name="dwfrm_shipping" id="dwfrm_shipping" data-address-autocomplete-enabled="false" data-initialized="1" aria-busy="false">

	<div class="b-form-message" role="alert" data-ref="errorMessageLabel">
		Form error message here <a class="b-form-message_link" href="#">Link</a>
	</div>

	<fieldset class="b-form-set" data-ref="addressForm">
		<legend class="b-form-set_label">
			Shipping address (form-set)
		</legend>

		<div class="b-form_section">
			<label class="b-form_section-label">
				First Name (form_section)
			</label>
			<input class="b-input" type="text" placeholder="First Name">
		</div>

		<div class="b-form-line m-equal">
			<div class="b-form_section">
				<label class="b-form_section-label">
					First Name (form-line equal)
				</label>
				<input class="b-input" type="text" placeholder="First Name">
			</div>

			<div class="b-form_section">
				<label class="b-form_section-label">
					Last Name (form-line)
				</label>
				<input class="b-input" type="text" placeholder="Last Name">
			</div>
		</div>

		<div class="b-form-line m-fixed_width">
			<div class="b-form_section">
				<label class="b-form_section-label">
					First Name (form-line fixed-width)
				</label>
				<input class="b-input" type="text" placeholder="First Name">
			</div>

			<div class="b-form_section">
				<label class="b-form_section-label">
					Last Name
				</label>
				<input class="b-input" type="text" placeholder="Last Name">
			</div>

			<div class="b-form_section">
				<label class="b-form_section-label">
					Phone Number
				</label>
				<input class="b-input" type="text" placeholder="Phone Number">
			</div>
		</div>
	</fieldset>
</form>
```

*/
.b-form.m-multiline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.b-form.m-visibility_hidden {
  visibility: hidden;
}
.b-form-title {
  font-size: 48px;
  font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -1px;
  text-transform: none;
  margin-bottom: 32px;
}
@media screen and (max-width: 1023px) {
  .b-form-title {
    font-size: 28px;
    font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -1px;
    text-transform: none;
  }
}
.b-form-description {
  margin-bottom: 20px;
  padding: 8px 0;
}
.b-form-message {
  font-size: 16px;
  font-family: "Quattrocento Sans", "Helvetica Neue", "Helvetica", "Arial", "Nimbus Sans L", "Liberation Sans", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: normal;
  background: #fce6e6;
  color: #951e0f;
  flex: 0 0 100%;
  font-weight: 300;
  margin-bottom: 25px;
  padding: 16px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .b-form-message {
    margin-bottom: 20px;
  }
}
.b-form-message_link {
  color: #000;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.4s;
  transition-property: color;
  color: inherit;
  font-variant-numeric: lining-nums;
  font-weight: 700;
  text-decoration: underline;
}
@media not all and (pointer: coarse) {
  .b-form-message_link:hover {
    text-decoration: none;
  }
}
.b-form-message_link > svg {
  height: 9px;
  width: 15px;
}
.b-form-message_link.b-button svg {
  width: 15px;
}
.b-form-message_link:disabled, .b-form-message_link.m-disabled {
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
@media not all and (pointer: coarse) {
  .b-form-message_link:hover {
    text-decoration: none;
  }
}
.b-form-error_feedback {
  color: #ed432c;
  font-size: 12px;
  margin-top: 20px;
}
.b-form-set {
  border: none;
  display: block;
  margin: 16px 0;
  min-width: 0;
  padding: 0;
  position: relative;
}
.b-form-set[hidden] {
  display: none;
}
.b-form-set_label {
  font-size: 28px;
  font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1px;
  text-transform: none;
  display: block;
  margin-bottom: 16px;
  max-width: 100%;
  padding: 0;
  white-space: normal;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .b-form-set_label {
    font-size: 24px;
    font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1px;
    text-transform: none;
  }
}
.b-form-set_label.m-wai {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  left: 0;
  max-height: 1px;
  max-width: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 0;
}
.b-form-line {
  display: flex;
  width: 100%;
}
.b-form-line.m-actions {
  margin-top: 48px;
}
.b-form-line[hidden] {
  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-form-line > .b-form_section {
  width: 100%;
}
.b-form-line.m-address_quick > .b-form_section {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .b-form-line.m-address_quick > .b-form_section {
    padding: 25px 15px;
  }
}
.b-form-line.m-equal {
  justify-content: space-between;
  width: calc(50% - 12px);
}
.b-form-line.m-equal-lg {
  justify-content: space-between;
  width: calc(50% - 12px);
}
@media screen and (max-width: 1023px) {
  .b-form-line.m-equal-lg {
    width: 100%;
  }
}
.b-form-line.m-third-lg {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .b-form-line.m-third-lg {
    justify-content: space-between;
    width: calc(33% - 12px);
  }
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .b-form-line.m-third-lg {
    width: 100%;
  }
}
.b-form-line.m-third {
  width: calc(33% - 12px);
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .l-checkout-main .b-form-line.m-third {
    width: calc(50% - 7px);
  }
}
@media screen and (max-width: 1023px) {
  .b-form-line.m-third.m-mobile_full_width {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .b-form-line.m-mobile_column {
    flex-flow: column;
  }
}
.b-form-line.m-column {
  flex-flow: column;
}
.b-form-line.m-column .b-button + .b-button {
  margin-top: 20px;
}
.b-form-line.m-card_expiration {
  flex-wrap: nowrap;
}
.b-options_group.m-account .b-form-line {
  flex-direction: column;
  padding-top: 20px;
}
.b-form-line_title {
  font-size: 18px;
  font-family: "Quattrocento Sans", "Helvetica Neue", "Helvetica", "Arial", "Nimbus Sans L", "Liberation Sans", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: normal;
  margin-bottom: 15px;
}
.b-form-line_divider {
  align-items: center;
  display: flex;
  font-size: 16px;
  font-weight: 300;
  height: 44px;
  margin: 0 16px;
}
.b-form-btn_save {
  margin-inline-end: 20px;
}
@media screen and (max-width: 767px) {
  .b-form-btn_save {
    margin: 0 0 20px;
  }
}
.b-form-btn_cancel {
  padding: 0 36px;
}
.b-form .m-checkout_shipping-new_address {
  margin-bottom: 25px;
}
.b-form .m-checkout_shipping-new_address .b-options_group-actions {
  margin-top: 25px;
}
.b-form .m-checkout_shipping-new_address .b-button.m-outline {
  padding: 8px 80px;
}
.b-form .m-checkout_shipping-new_address .b-form-line > .b-form_section,
.b-form .m-checkout_shipping-new_address .m-manual_block-show .b-swiching_form-manual {
  margin-bottom: 15px;
}
.b-form .m-checkout_shipping-new_address .b-swiching_form .b-form-line:last-child > .b-form_section {
  margin-bottom: 0;
}
.b-form .m-checkout_billing-new_address .b-options_group-actions {
  margin-top: 25px;
}
.b-form .m-checkout_billing-new_address .b-swiching_form .b-form-line:last-child > .b-form_section {
  margin-bottom: 0;
}
.b-form.m-coupons {
  margin: auto;
  max-width: 865px;
}
.b-form.m-coupons .b-button.m-default {
  margin: auto;
}
@media screen and (max-width: 767px) {
  .b-form.m-coupons .b-button.m-default {
    width: 100%;
  }
}

/*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;
}
.b-radio-input {
  height: 20px;
  left: 0;
  opacity: 0;
  position: absolute;
  width: 20px;
}
.b-radio-icon {
  -webkit-appearance: none;
          appearance: none;
  background: transparent;
  border: 1px solid #4d4d4d;
  border-radius: 20px;
  cursor: pointer;
  display: inline-block;
  height: 20px;
  margin-inline-end: 12px;
  min-height: 20px;
  min-width: 20px;
  position: relative;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.4s;
  transition-property: border, box-shadow;
  vertical-align: sub;
  width: 20px;
}
.b-radio-icon::-ms-check {
  display: none;
}
.b-radio-icon::before {
  background-color: #fff;
  border-radius: 12px;
  content: "";
  height: 12px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.4s;
  transition-property: transform;
  width: 12px;
}
.b-radio-input:active + .b-radio-icon {
  transform: scale(0.9);
}
.b-radio:hover + .b-radio-icon {
  border-color: #4d4d4d;
}
.b-radio-input:checked + .b-radio-icon {
  border-color: #22387c;
  border-width: 1px;
}
.b-radio-input:checked + .b-radio-icon::before {
  background-color: #22387c;
  transform: translate(-50%, -50%) scale(1);
}
.b-radio-input[disabled] + .b-radio-icon {
  background-color: #d9d9d9;
  border-color: #b3b3b3;
  cursor: default;
  transform: scale(1);
}
.b-radio-input[disabled] + .b-radio-icon::before {
  background-color: #d9d9d9;
}
.b-radio-input.m-invalid + .b-radio-icon {
  border-color: #ed432c;
}
.b-radio-input.m-invalid + .b-radio-icon::before {
  background-color: #ed432c;
}
.b-radio-label {
  font-size: 16px;
  font-family: "Quattrocento Sans", "Helvetica Neue", "Helvetica", "Arial", "Nimbus Sans L", "Liberation Sans", sans-serif;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.5px;
  cursor: pointer;
}

.b-storelocator_search {
  margin: 80px 0;
}
@media screen and (max-width: 1023px) {
  .b-storelocator_search {
    margin: 60px 0;
  }
}
.b-storelocator_search-content {
  display: grid;
  margin-top: 32px;
}
@media screen and (min-width: 1367px) {
  .b-storelocator_search-content {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .b-storelocator_search-content {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .b-storelocator_search-content {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (max-width: 767px) {
  .b-storelocator_search-content {
    grid-gap: 9px;
    grid-template-columns: [grid-start] repeat(6, 1fr) [grid-end];
  }
}
.b-storelocator_search-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .b-storelocator_search-top {
    align-items: flex-start;
    flex-flow: column;
  }
}
.b-storelocator_search-search_again {
  font-size: 80px;
  font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-transform: capitalize;
}
@media screen and (max-width: 1023px) {
  .b-storelocator_search-search_again {
    font-size: 40px;
    font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
}
.b-storelocator_search-link {
  color: #000;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.4s;
  transition-property: color;
}
@media not all and (pointer: coarse) {
  .b-storelocator_search-link:hover {
    text-decoration: none;
  }
}
.b-storelocator_search-link > svg {
  height: 9px;
  width: 15px;
}
.b-storelocator_search-link.b-button svg {
  width: 15px;
}
.b-storelocator_search-link:disabled, .b-storelocator_search-link.m-disabled {
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .b-storelocator_search-link {
    margin-top: 16px;
  }
}
.b-storelocator_search-section {
  border: 1px solid #d9d9d9;
  grid-column: span 6;
  padding: 48px 48px 36px;
}
@media screen and (max-width: 767px) {
  .b-storelocator_search-section {
    margin-bottom: 16px;
    padding: 48px 20px 64px;
  }
}
.b-storelocator_search-icon {
  color: #999;
  text-align: center;
}
.b-storelocator_search-title {
  font-size: 48px;
  font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -1px;
  text-transform: none;
  margin: 12px 0 24px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .b-storelocator_search-title {
    font-size: 28px;
    font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -1px;
    text-transform: none;
  }
}
@media screen and (max-width: 767px) {
  .b-storelocator_search-title {
    margin: 16px 0 28px;
  }
}
.b-storelocator_search-input_wrap {
  display: flex;
}

.b-storelocator_top {
  display: flex;
  justify-content: space-between;
  margin: 60px 0 0;
}
@media screen and (max-width: 767px) {
  .b-storelocator_top {
    flex-direction: column;
  }
}
@media screen and (max-width: 1023px) {
  .l-storelocator-details .b-storelocator_top {
    margin-top: 28px;
  }
}
.b-storelocator_top-info {
  width: 100%;
}
.b-storelocator_top-title {
  font-size: 80px;
  font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .b-storelocator_top-title {
    font-size: 40px;
    font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
}
.b-storelocator_top-subtitle {
  display: flex;
  font-size: 16px;
  font-weight: 300;
  justify-content: space-between;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .b-storelocator_top-subtitle {
    display: block;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .b-storelocator_top-actions {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
  }
}
.b-storelocator_top-link {
  color: #000;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.4s;
  transition-property: color;
  font-size: 14px;
}
@media not all and (pointer: coarse) {
  .b-storelocator_top-link:hover {
    text-decoration: none;
  }
}
.b-storelocator_top-link > svg {
  height: 9px;
  width: 15px;
}
.b-storelocator_top-link.b-button svg {
  width: 15px;
}
.b-storelocator_top-link:disabled, .b-storelocator_top-link.m-disabled {
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.b-storelocator_map-content {
  display: block;
  overflow: hidden;
  padding-bottom: 40%;
  position: relative;
  width: 100%;
  height: 144px;
  padding: 0;
  transition: height cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
}
@media screen and (min-width: 1024px) {
  .b-storelocator_map-content {
    height: 90vh;
  }
}
.b-storelocator_map-content.m-expanded {
  height: 500px;
}
.b-storelocator_map-expand {
  position: relative;
  text-align: center;
  top: -22px;
}
@media screen and (min-width: 1024px) {
  .b-storelocator_map-expand {
    display: none;
  }
}

.b-storelocator_banner-img {
  width: 100%;
}

.b-storelocator_results {
  box-shadow: inset 0 1px 0 0 #d9d9d9;
  margin-top: 8px;
}
@media screen and (min-width: 1024px) {
  .b-storelocator_results {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    max-height: 100%;
  }
}
.b-storelocator_results-list {
  position: relative;
}
@media screen and (max-width: 767px) {
  .b-storelocator_results-list {
    box-shadow: inset 0 -1px 0 0 #d9d9d9;
    padding: 0 8px 32px;
  }
}
@media screen and (min-width: 1024px) {
  .b-storelocator_results-list {
    flex-basis: 0;
    flex-grow: 1;
    overflow-y: auto;
  }
}
@media screen and (min-width: 1024px) {
  .l-storelocator-nearest_stores .b-storelocator_results-list {
    display: grid;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1367px) {
  .l-storelocator-nearest_stores .b-storelocator_results-list {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (min-width: 1024px) and (min-width: 1024px) and (max-width: 1366px) {
  .l-storelocator-nearest_stores .b-storelocator_results-list {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) and (max-width: 1023px) {
  .l-storelocator-nearest_stores .b-storelocator_results-list {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (min-width: 1024px) and (max-width: 767px) {
  .l-storelocator-nearest_stores .b-storelocator_results-list {
    grid-gap: 9px;
    grid-template-columns: [grid-start] repeat(6, 1fr) [grid-end];
  }
}
@media screen and (max-width: 767px) {
  .l-storelocator-nearest_stores .b-storelocator_results-list {
    box-shadow: none;
    padding: 0;
  }
}
.b-storelocator_results-load_more {
  margin-top: 24px;
  text-align: center;
}
.b-storelocator_results-load_more_btn {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .b-storelocator_results-load_more_btn {
    width: auto;
  }
}

.b-storelocator_no_results {
  margin-top: 32px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .b-storelocator_no_results {
    margin-top: 52px;
  }
}
.b-storelocator_no_results-title {
  font-size: 28px;
  font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1px;
  text-transform: none;
}
@media screen and (max-width: 1023px) {
  .b-storelocator_no_results-title {
    font-size: 24px;
    font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1px;
    text-transform: none;
  }
}
@media screen and (min-width: 768px) {
  .b-storelocator_no_results-title {
    display: flex;
    flex-flow: column;
  }
}
.b-storelocator_no_results-link {
  color: #000;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.4s;
  transition-property: color;
  display: inline-block;
  margin-top: 16px;
  transition: color cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
}
@media not all and (pointer: coarse) {
  .b-storelocator_no_results-link:hover {
    text-decoration: none;
  }
}
.b-storelocator_no_results-link > svg {
  height: 9px;
  width: 15px;
}
.b-storelocator_no_results-link.b-button svg {
  width: 15px;
}
.b-storelocator_no_results-link:disabled, .b-storelocator_no_results-link.m-disabled {
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.b-storelocator_result {
  padding: 36px 0 0;
}
@media screen and (min-width: 768px) {
  .b-storelocator_result {
    box-shadow: inset 0 -1px 0 0 #d9d9d9;
    padding: 36px 20px 28px;
  }
}
@media screen and (min-width: 768px) {
  .b-storelocator_result.m-selected {
    border: 1px solid #808080;
  }
}
.l-storelocator-details .b-storelocator_result {
  box-shadow: none;
  padding: 0;
}
.b-storelocator_result-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.b-storelocator_result-title {
  font-size: 28px;
  font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1px;
  text-transform: none;
}
@media screen and (max-width: 1023px) {
  .b-storelocator_result-title {
    font-size: 24px;
    font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1px;
    text-transform: none;
  }
}
.b-storelocator_result-distance {
  font-size: 16px;
  white-space: nowrap;
}
.b-storelocator_result-address {
  margin-top: 8px;
}
.b-storelocator_result-phone {
  margin-top: 16px;
}
.b-storelocator_result-schedule {
  display: inline-block;
  font-weight: 300;
  line-height: 1.6;
  margin-top: 28px;
}
@media screen and (max-width: 1023px) {
  .b-storelocator_result-schedule {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .b-storelocator_result-schedule {
    min-width: 324px;
  }
}
.b-storelocator_result-schedule td:first-child {
  padding-right: 24px;
}
.b-storelocator_result-schedule_title {
  font-size: 16px;
  margin-bottom: 8px;
}
.b-storelocator_result-full_list {
  color: #000;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.4s;
  transition-property: color;
}
@media not all and (pointer: coarse) {
  .b-storelocator_result-full_list:hover {
    text-decoration: none;
  }
}
.b-storelocator_result-full_list > svg {
  height: 9px;
  width: 15px;
}
.b-storelocator_result-full_list.b-button svg {
  width: 15px;
}
.b-storelocator_result-full_list:disabled, .b-storelocator_result-full_list.m-disabled {
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.b-storelocator_result-actions {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .b-storelocator_result-actions {
    display: flex;
    flex-flow: column;
  }
}
@media screen and (min-width: 768px) {
  .b-storelocator_result-details_btn {
    margin-inline-end: 20px;
  }
}
@media screen and (max-width: 767px) {
  .b-storelocator_result-details_btn {
    margin-bottom: 20px;
  }
}

.l-storelocator-nearest_stores .b-storelocator_result {
  padding: 32px 0;
}
@media screen and (min-width: 1024px) {
  .l-storelocator-nearest_stores .b-storelocator_result {
    box-shadow: none;
    grid-column: span 4;
  }
}
@media screen and (max-width: 767px) {
  .l-storelocator-nearest_stores .b-storelocator_result {
    box-shadow: inset 0 -1px 0 0 #d9d9d9;
    padding: 36px 0;
  }
}
.l-storelocator-nearest_stores .b-storelocator_result:last-child {
  box-shadow: none;
}
.l-storelocator-nearest_stores .b-storelocator_result-top {
  display: block;
}
.l-storelocator-nearest_stores .b-storelocator_result-distance {
  display: block;
  margin-top: 8px;
}
.l-storelocator-nearest_stores .b-storelocator_result-address {
  margin-top: 12px;
}
.l-storelocator-nearest_stores .b-storelocator_result-schedule {
  display: none;
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .l-storelocator-nearest_stores .b-storelocator_result-details_btn {
    margin-bottom: 12px;
    margin-inline-end: 0;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .l-storelocator-nearest_stores .b-storelocator_result-directions_btn {
    width: 100%;
  }
}

.b-storelocator_static_map {
  display: block;
}
.b-storelocator_static_map-picture {
  display: block;
}
.b-storelocator_static_map-img {
  display: block;
  width: 100%;
}

.b-storelocator_info_window {
  font-size: 14px;
}
.b-storelocator_info_window-title {
  font-size: 24px;
  font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  text-transform: none;
}
@media screen and (max-width: 1023px) {
  .b-storelocator_info_window-title {
    font-size: 21px;
    font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    text-transform: none;
  }
}
.b-storelocator_info_window-distance {
  margin-top: 8px;
}
.b-storelocator_info_window-address {
  font-size: 12px;
  font-weight: 400;
  margin-top: 12px;
}
.b-storelocator_info_window-actions {
  align-items: center;
  display: flex;
  flex-flow: column;
  margin-top: 20px;
}
.b-storelocator_info_window-details {
  height: 36px;
  width: 100%;
}
.b-storelocator_info_window-directions {
  color: #4d4d4d;
  font-weight: 700;
  margin: 16px 0 24px;
  text-transform: uppercase;
  transition: color cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
}
.b-storelocator_info_window-directions:hover {
  color: #000;
}

.gm-style-iw {
  padding: 24px 16px 0 !important;
  width: 290px;
}

.gm-style-iw-d {
  overflow: auto !important;
}

.gm-style-iw-t::after {
  display: none;
}

.gm-style .gm-style-iw-c {
  border-radius: 0;
}

.gm-ui-hover-effect {
  right: 8px !important;
  top: 4px !important;
}
.gm-ui-hover-effect img {
  height: 18px !important;
  width: 18px !important;
}

.l-storelocator-nearest_stores .b-storelocator_conveniences {
  display: none;
}
.b-storelocator_conveniences-title {
  font-size: 66px;
  font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .b-storelocator_conveniences-title {
    font-size: 36px;
    font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
}
.b-storelocator_conveniences-list {
  display: grid;
  margin-top: 36px;
}
@media screen and (min-width: 1367px) {
  .b-storelocator_conveniences-list {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .b-storelocator_conveniences-list {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .b-storelocator_conveniences-list {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (max-width: 767px) {
  .b-storelocator_conveniences-list {
    grid-gap: 9px;
    grid-template-columns: [grid-start] repeat(6, 1fr) [grid-end];
  }
}
@media screen and (min-width: 1024px) {
  .b-storelocator_conveniences-list {
    margin-top: 32px;
  }
}
.l-storelocator-details .b-storelocator_conveniences-list {
  display: block;
  margin-top: 28px;
}

.b-storelocator_convenience {
  align-items: center;
  display: flex;
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  .b-storelocator_convenience {
    grid-column: span 4;
  }
}
.b-storelocator_convenience.m-show_full {
  grid-column: span 12;
  margin-top: 12px;
}
.b-storelocator_convenience svg {
  color: #d9d9d9;
  margin-inline-end: 12px;
}
.b-storelocator_convenience-content {
  display: flex;
  flex: 1;
  flex-flow: column;
}
.b-storelocator_convenience-title {
  flex: 1;
}
.b-storelocator_convenience-text {
  font-weight: 300;
}

.l-storelocator-details .b-storelocator_convenience {
  align-items: flex-start;
  margin-bottom: 20px;
}
.l-storelocator-details .b-storelocator_convenience-title {
  line-height: 1.4;
  margin-bottom: 4px;
}

.b-storelocator_about_store-title {
  font-size: 66px;
  font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .b-storelocator_about_store-title {
    font-size: 36px;
    font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
}
.b-storelocator_about_store-description {
  margin-top: 28px;
}

.b-storelocator_nearest_stores-top {
  align-items: baseline;
  border-bottom: 1px solid #d9d9d9;
  display: flex;
  justify-content: space-between;
  padding-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .b-storelocator_nearest_stores-top {
    display: block;
  }
}
.b-storelocator_nearest_stores-title {
  font-size: 66px;
  font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .b-storelocator_nearest_stores-title {
    font-size: 36px;
    font-family: "minerva-modern", "Georgia", "DejaVu Serif", serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
}
.b-storelocator_nearest_stores-link {
  color: #000;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.4s;
  transition-property: color;
}
@media not all and (pointer: coarse) {
  .b-storelocator_nearest_stores-link:hover {
    text-decoration: none;
  }
}
.b-storelocator_nearest_stores-link > svg {
  height: 9px;
  width: 15px;
}
.b-storelocator_nearest_stores-link.b-button svg {
  width: 15px;
}
.b-storelocator_nearest_stores-link:disabled, .b-storelocator_nearest_stores-link.m-disabled {
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .b-storelocator_nearest_stores-link {
    display: inline-block;
    margin-top: 12px;
  }
}
.b-storelocator_nearest_stores-list {
  display: grid;
}
@media screen and (min-width: 1367px) {
  .b-storelocator_nearest_stores-list {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .b-storelocator_nearest_stores-list {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .b-storelocator_nearest_stores-list {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (max-width: 767px) {
  .b-storelocator_nearest_stores-list {
    grid-gap: 9px;
    grid-template-columns: [grid-start] repeat(6, 1fr) [grid-end];
  }
}
@media screen and (min-width: 768px) {
  .b-storelocator_nearest_stores-item {
    grid-column: span 4;
    margin-bottom: 0;
  }
}

.b-storelocator_alphabet {
  border-bottom: 1px solid #d9d9d9;
  border-top: 1px solid #d9d9d9;
  margin-top: 40px;
  padding: 8px 48px;
}
.b-storelocator_alphabet-ctrl.m-prev {
  left: auto;
  right: 100%;
}
.b-storelocator_alphabet-ctrl.m-next {
  left: 100%;
  right: auto;
}
@media screen and (max-width: 767px) {
  .b-carousel.m-inited .b-storelocator_alphabet-ctrl {
    display: block;
  }
}
.b-storelocator_alphabet-ctrl svg {
  height: 12px;
  width: 7px;
}
.b-storelocator_alphabet-item {
  align-items: center;
  display: flex;
  font-size: 18px;
  font-weight: 600;
  height: 48px;
  justify-content: center;
  min-width: 48px;
  width: 48px;
}
.b-storelocator_alphabet-item.m-disabled {
  color: rgba(153, 153, 153, 0.5);
  pointer-events: none;
}

.b-storelocator_locations {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .b-storelocator_locations {
    column-gap: 20px;
    columns: 2;
  }
}
.b-storelocator_locations-item {
  display: inline-block;
  margin-bottom: 16px;
  width: 100%;
}
.b-storelocator_locations-item_title {
  align-items: center;
  background-color: #f9f9f9;
  display: flex;
  font-size: 24px;
  font-weight: 700;
  min-height: 48px;
  padding: 0 20px;
}
.b-storelocator_locations-item_list {
  margin-top: 16px;
}
.b-storelocator_locations-item_location {
  align-items: center;
  display: flex;
  min-height: 48px;
  padding: 0 20px;
}
.b-storelocator_locations-item_city {
  font-weight: 700;
}

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

/*# sourceMappingURL=store-locator.css.map*/