/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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_custom_core/cartridge/client/default/scss/common_critical.scss ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*md
@no-stat

# Breakpoints

## Birkenstock breakpoints

Read more about [supported devices] https://confluence.birkenstock.com/display/LP/09.05+-+Test+Plan - iPhone 12, Samsung Galaxy S22 , IPad Air, iPad Pro 11'', 13'', Samsung Galaxy Tab A9 11'', Samsung Galaxy Tab S9+ 12.4', MS Windows desktop , Macbook Pro/ Macbook Air retina

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

## 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         |
| Samsung Galaxy Tab S9 12.4'         | 1024x768                      | XHDPI         |
| iPad Pro 13''                       | 1366x1024                     | XHDPI         |
| iPad Pro 11''                       | 1194x834                      | XHDPI         |
| iPad Air 2                          | 1024x768                      | XHDPI         |
| iPhone 12                           | 390x844                       | XHDPI         |
| Samsung Galaxy S22                  | 360x780                       | 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: 1179px)',
	lg: 'screen and (min-width: 1180px) and (max-width: 1439px)',
	xl: 'screen and (min-width: 1440px)',
	md-up: 'screen and (min-width: 768px)',
	md-down: 'screen and (max-width: 1179px)',
	lg-up: 'screen and (min-width: 1180px)',
	lg-down: 'screen and (max-width: 1439px)'
);
```

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

# 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

# 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

# opposite-position

This function returns the opposite direction of each direction in a list
$directions - List of initial directions

 ```scss
.b-component {
	border-opposite-position(top): $size solid $color;

	// ...
}
```

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

# 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

# Triangle helper mixin

$direction - Triangle direction, either `top`, `right`, `bottom` or `left`
$color - Triangle color
$size - Triangle size

 ```scss
.b-component {
	@include triangle(top, $color-primary, 12px);

	// ...
}
```

*/
/*md

# Shorthand mixin for offset positioning

$position - Either `relative`, `absolute` or `fixed`
$top - Top offset
$right - Right offset
$bottom - Bottom offset
$left - Left offset

 ```scss
.b-component {
	@include position(absolute, -8px, null, null, 12px);

	// ...
}
```

*/
/*md

# text_overflow

This is global mixin 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

This component is designed to provide same styles of buttons
across different components.

## Usage

```scss
// for regular cases
.b-user_content-btn {
	@include g-button(primary_inverted);
}
```

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

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

*/
/*md

# g-checkbox

This component is designed to provide same styles of checkboxes across different components.

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

```
*/
/*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::after {
		@include g-spinner();
	}
	// ...
}
```
*/
/*md

# g-text*

Some basic simple typography applied to different UI components.

This covers only very basic cases and could be extended.

```scss
.b-cart {
	// ...

	&-description {
		@include g-text_state;
	}
}
```
*/
/*md

# g-link

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

## Usage

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

*/
/*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-image_example {
	&.m-1-1 {
		@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.

Example of usage:
## 1:1

```html_example
<div style="width: 500px">
	<picture class="b-image_example m-1-1">
		<img
			loading="lazy"
			src="../images/guide/examples/guide_image_example.jpg?$staticlink$"
			alt="Some dummy alternative text for image."
		/>
	</picture>
</div>
```

## 4:3

```html_example
<div style="width: 500px">
	<picture class="b-image_example m-4-3">
		<img
			loading="lazy"
			src="../images/guide/examples/guide_image_example.jpg?$staticlink$"
			alt="Some dummy alternative text for image."
		/>
	</picture>
</div>
```

## 3:4

```html_example
<div style="width: 500px">
	<picture class="b-image_example m-3-4">
		<img
			loading="lazy"
			src="../images/guide/examples/guide_image_example.jpg?$staticlink$"
			alt="Some dummy alternative text for image."
		/>
	</picture>
</div>
```

## 3:2

```html_example
<div style="width: 500px">
	<picture class="b-image_example m-3-2">
		<img
			loading="lazy"
			src="../images/guide/examples/guide_image_example.jpg?$staticlink$"
			alt="Some dummy alternative text for image."
		/>
	</picture>
</div>
```

## 2:3

```html_example
<div style="width: 500px">
	<picture class="b-image_example m-2-3">
		<img
			loading="lazy"
			src="../images/guide/examples/guide_image_example.jpg?$staticlink$"
			alt="Some dummy alternative text for image."
		/>
	</picture>
</div>
```
*/
.b-image_example.m-1-1 {
  display: block;
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
  width: 100%;
}
.b-image_example.m-4-3 {
  display: block;
  overflow: hidden;
  padding-bottom: 75%;
  position: relative;
  width: 100%;
}
.b-image_example.m-3-4 {
  display: block;
  overflow: hidden;
  padding-bottom: 133%;
  position: relative;
  width: 100%;
}
.b-image_example.m-3-2 {
  display: block;
  overflow: hidden;
  padding-bottom: 66.6%;
  position: relative;
  width: 100%;
}
.b-image_example.m-2-3 {
  display: block;
  overflow: hidden;
  padding-bottom: 150%;
  position: relative;
  width: 100%;
}
.b-image_example img {
  border: none;
  bottom: 0;
  color: #ebebea;
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

/*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_dialog;
	}
	// ...
}
```
*/
/*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_narrow

Expected to use on checkout and shopping cart.
Need update in future.
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 narrow content of the site.

It could be removed and changed to `section_holder`.

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

	&-inner {
		@include g-section_holder_narrow;
	}
}
```
*/
/*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;
	}
}
```
*/
/*md

# g-accordion

Global accordion component

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

This component is designed to provide same styles of popup(drawer)

*/
/*md

# g-scrollbar

Designed to modify the look of the browser's scrollbar.
Customization applies for Chrome, Edge, Safari and Opera browsers.
Firefox doesn't support full customization.

On storefront you can see the result on the minicart.

```scss
.b-components {
	@include g-scrollbar;
}
```
*/
body {
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
}

.b-header_utility,
.l-header,
.b-menu_panel {
  pointer-events: all;
  visibility: visible;
}

/* stylelint-disable selector-max-universal */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/* stylelint-enable */
a {
  background-color: transparent;
}

ul,
ol,
p {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  margin: 0;
}

figure {
  margin: 0;
}

img {
  border: none;
  height: auto;
  max-width: 100%;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

[hidden] {
  display: none !important;
}

html {
  background: #ffffff;
  color: #282727;
  direction: ltr;
  font: 16px / 1.4 var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-bottom: 80px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

@supports (font-variation-settings: normal) {
  html {
    font-family: "Arial", "Helvetica", sans-serif;
  }
}
body {
  box-sizing: border-box;
  margin: 0;
  min-width: 360px;
  overflow-y: scroll;
  padding: 0.01px 0 0;
}
html[dir=rtl] body {
  direction: rtl;
  letter-spacing: 0;
}
body.m-care_essentials {
  font-family: var(--care-essentials-font);
}

a {
  color: inherit;
}
@media not all and (pointer: coarse) {
  a:hover {
    color: inherit;
  }
}

button {
  appearance: none;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
}

img {
  overflow: hidden;
}

:target::before {
  content: "";
  display: block;
  height: 80px;
  margin-top: -80px;
  visibility: hidden;
}

.b-sr_only {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  left: 0;
  max-height: 1px;
  max-width: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 0;
}

form input:-webkit-autofill {
  animation: autofill-start 1ms linear;
}
form input:not(:-webkit-autofill) {
  animation: autofill-end 1ms linear;
}

fieldset {
  border: 0;
  margin: 0;
  min-inline-size: 0;
  padding: 0;
}

@keyframes autofill-start {
  from {
    /* intentionally empty */
  }
  to {
    /* intentionally empty */
  }
}
@keyframes autofill-end {
  from {
    /* intentionally empty */
  }
  to {
    /* intentionally empty */
  }
}
.m-has_dialog .l-page {
  overflow: hidden;
}
.m-has_dialog .l-page-content, .m-has_dialog .l-page-footer {
  overflow-y: clip;
}
@media not all and (pointer: coarse) {
  .m-has_dialog .l-page-content, .m-has_dialog .l-page-footer {
    padding-right: 15px;
  }
}
.m-has_dialog.m-mac_os .l-page-content, .m-has_dialog.m-mac_os .l-page-footer {
  padding-right: 0;
}
.l-page.m-checkout-login {
  display: grid;
  grid-template-areas: "header" "body" "footer";
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}
.l-page.m-checkout-login .l-header {
  grid-area: header;
}
.l-page.m-checkout-login .l-page-content {
  grid-area: body;
}
.l-page.m-checkout-login .l-page-footer {
  grid-area: footer;
}

.l-header {
  background: #ffffff;
  border-bottom: 1px solid #d2d1d4;
  padding: 1px 0;
  position: sticky;
  top: 0;
  z-index: 20;
}
@media screen and (max-width: 1179.9px) {
  .l-header {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60px;
  }
  .l-header.m-search_mobile {
    border: none;
  }
  .m-header-scroll_down .l-header.m-search_mobile {
    border-bottom: 1px solid #d2d1d4;
  }
}
@media screen and (min-width: 1180px) {
  @media not all and (pointer: coarse) {
    .m-has_dialog:not(.m-mac_os) .l-header {
      overflow-y: scroll;
    }
  }
  .m-has_dialog:not(.m-mac_os) .l-header::-webkit-scrollbar {
    background: transparent;
  }
}
.l-header-inner {
  margin: 0 auto;
  max-width: 1920px;
  padding-left: 40px;
  padding-right: 40px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 20px auto 0;
  width: 100%;
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  .l-header-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-header-inner {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-header-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 1180px) {
  .l-header-inner {
    position: relative;
  }
}
@media screen and (max-width: 1179.9px) {
  .l-header-inner {
    margin: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .l-header-inner {
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media screen and (min-width: 1180px) {
  .l-header-inner.m-usablenet {
    margin-top: 35px;
  }
}
.l-header-left {
  order: 1;
  position: relative;
  width: 50%;
}
.l-header-left .b-header_actions-item.m-storelocator, .l-header-left .b-header_actions-item.m-wishlist {
  margin-inline-start: 0;
}
.l-header-middle {
  order: 2;
}
.l-header-right {
  display: flex;
  justify-content: flex-end;
  order: 3;
  width: 50%;
}
@media screen and (min-width: 1180px) {
  .l-header-right {
    margin-top: -7px;
  }
}
.l-header-bottom_promo {
  background-color: #282727;
}
.l-header-bottom_promo .b-hero_carousel {
  margin: 0 auto;
  max-width: 1920px;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  .l-header-bottom_promo .b-hero_carousel {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-header-bottom_promo .b-hero_carousel {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-header-bottom_promo .b-hero_carousel {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-header-bottom_promo .b-hero_carousel-ctrl {
  color: #ffffff;
}

@media screen and (max-width: 1179.9px) {
  .l-header.m-simple {
    position: initial;
  }
}
@media screen and (max-width: 767.9px) {
  .l-header.m-simple {
    margin-bottom: 44px;
    position: relative;
  }
}
.l-header.m-simple .l-header-inner {
  margin: 18px auto;
}
@media screen and (min-width: 1180px) {
  .l-header.m-simple .l-header-inner {
    margin: 19px auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-header.m-simple .l-header-inner {
    padding-inline: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-header.m-simple .l-header-inner {
    padding-inline: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-header.m-simple .l-header-left {
    width: 50%;
  }
}
@media screen and (max-width: 767.9px) {
  .l-header.m-simple .l-header-left {
    bottom: -44px;
    left: 10px;
    position: absolute;
    width: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-header.m-simple .l-header-right {
    width: 50%;
  }
}

.b-header_utility {
  background-color: #ffffff;
  border-bottom: 1px solid #282727;
  color: #282727;
  display: flex;
}
@media screen and (min-width: 1180px) {
  @media not all and (pointer: coarse) {
    .m-has_dialog:not(.m-mac_os) .b-header_utility {
      overflow-y: scroll;
    }
  }
  .m-has_dialog:not(.m-mac_os) .b-header_utility::-webkit-scrollbar {
    background: transparent;
  }
}
.b-header_utility-inner {
  margin: 0 auto;
  max-width: 1920px;
  padding-left: 40px;
  padding-right: 40px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 40px;
  width: 100%;
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  .b-header_utility-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-header_utility-inner {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-header_utility-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.b-header_utility-item.m-promo_slot {
  font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
  letter-spacing: 0.07em;
  line-height: 1.36;
  font-weight: 400;
  font-size: 14px;
  margin: auto;
}
html[dir=rtl] .b-header_utility-item.m-promo_slot {
  letter-spacing: 0;
}
.l-page.m-care_essentials .b-header_utility-item.m-promo_slot, .b-dialog.m-care_essentials-product .b-header_utility-item.m-promo_slot {
  letter-spacing: normal;
}
.m-care_essentials .b-header_utility-item.m-promo_slot {
  letter-spacing: normal;
  font-weight: 300;
}

.b-logo {
  color: #282727;
  display: block;
  margin: auto;
  text-align: center;
}
@media screen and (min-width: 1180px) {
  .b-logo {
    max-width: 237px;
    min-width: 237px;
  }
  .b-header_stuck .b-logo {
    color: #282727;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  .b-logo {
    max-width: 211px;
    min-width: 211px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-logo {
    max-width: 180px;
    min-width: 180px;
  }
}
@media screen and (min-width: 768px) {
  .b-logo.m-hamburger {
    display: none;
  }
}
.b-logo svg {
  height: 26px;
  width: 160px;
}
@media screen and (max-width: 1179.9px) {
  .b-logo svg {
    height: auto;
    width: 140px;
  }
}

.b-logo_sticky {
  display: none;
  position: absolute;
  top: 24px;
}
@media screen and (min-width: 1180px) {
  .b-header_stuck .b-logo_sticky {
    animation: fade-in ease-out 150ms;
    display: block;
  }
}

.b-header_actions {
  color: #282727;
  display: flex;
}
@media screen and (max-width: 1439.9px) {
  .b-header_actions {
    align-items: center;
  }
}
.b-header_actions-item {
  margin-inline-start: 15px;
}
@media screen and (min-width: 1180px) {
  .b-header_actions-item.m-search {
    margin-inline-end: 8px;
    margin-inline-start: 0;
    max-width: 260px;
    width: 100%;
  }
  .b-header_stuck .b-header_actions-item.m-search {
    margin: 0;
    width: auto;
  }
}
@media screen and (max-width: 1179.9px) {
  .b-header_actions-item.m-search {
    margin-inline-start: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .b-header_actions-item.m-search.m-mobile_hide {
    display: none;
  }
}
.b-header_actions-item.m-search.m-mobile {
  background: #ffffff;
  margin-bottom: 0;
  padding: 0 15px 16px;
  position: sticky;
  top: 0;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  z-index: 17;
}
@media screen and (min-width: 768px) {
  .b-header_actions-item.m-search.m-mobile {
    display: none;
  }
}
.m-header-scroll_up .b-header_actions-item.m-search.m-mobile {
  position: sticky;
  top: 55px;
}
@media screen and (max-width: 767.9px) {
  .m-header-scroll_up .b-header_actions-item.m-search.m-mobile ~ .l-page-content .b-plp_actions {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    top: 95px;
  }
  .m-header-scroll_up .b-header_actions-item.m-search.m-mobile ~ .l-page-content .b-plp_actions.m-has_count {
    top: 70px;
  }
}
.b-header_actions-item.m-search.m-mobile .b-search_toggle {
  border-bottom: 1px solid #a4a4aa;
  font-size: 16px;
  height: 40px;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 1179.9px) {
  .b-header_actions-item.m-search.m-mobile .b-search_toggle {
    font-size: 14px;
  }
  .b-header_actions-item.m-search.m-mobile .b-search_toggle-icon {
    justify-content: end;
  }
  .b-header_actions-item.m-storelocator, .b-header_actions-item.m-account, .b-header_actions-item.m-products_comparison, .b-header_actions-item.m-wishlist, .b-header_actions-item.m-minicart {
    margin-inline-start: 8px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-header_actions-item.m-storelocator.m-desktop, .b-header_actions-item.m-account.m-desktop, .b-header_actions-item.m-products_comparison.m-desktop, .b-header_actions-item.m-wishlist.m-desktop, .b-header_actions-item.m-minicart.m-desktop {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .b-header_actions-item.m-storelocator.m-tablet_mobile, .b-header_actions-item.m-account.m-tablet_mobile, .b-header_actions-item.m-products_comparison.m-tablet_mobile, .b-header_actions-item.m-wishlist.m-tablet_mobile, .b-header_actions-item.m-minicart.m-tablet_mobile {
    display: none;
  }
}
.b-header_actions-item.m-hamburger {
  margin-inline-end: 16px;
  margin-inline-start: -6px;
}
@media screen and (min-width: 1180px) {
  .b-header_actions-item.m-hamburger {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-header_actions-item.m-hamburger {
    margin-inline-end: 8px;
    margin-inline-start: -7px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-header_actions-item.m-hamburger {
    margin-inline-end: 8px;
    margin-inline-start: 5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-header_actions-item.m-minicart {
    margin-inline-end: -7px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-header_actions-item.m-minicart {
    padding-inline-end: 5px;
  }
}
.b-header_actions-item:has(.b-header_dialog-container.m-opened) .b-header_login::before,
.b-header_actions-item:has(.b-header_dialog-container.m-opened) .b-header_wishlist::before,
.b-header_actions-item:has(.b-header_dialog-container.m-opened) .b-minicart_icon::before {
  background: url("./images/icons/dropdown-triangle.svg") no-repeat center center;
  background-size: contain;
  content: "";
  display: block;
  height: 17px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 31px);
  transform: translateY(-100%) translateX(-50%);
  width: 32px;
  z-index: 23;
}
.b-header_actions-item_text {
  display: none;
  font-size: 10px;
  text-align: center;
}
@media screen and (min-width: 1180px) {
  .b-header_actions-item_text {
    display: block;
    margin-top: 2px;
  }
}
.m-care_essentials .b-header_actions-item_text {
  letter-spacing: normal;
  font-weight: 300;
}
@media screen and (max-width: 767.9px) {
  .b-header_actions .b-header_dialog-panel {
    display: none;
  }
}

.l-header-right .b-header_actions {
  justify-content: flex-end;
}

@media screen and (min-width: 1180px) {
  .b-header_stuck .b-header_actions_sticky {
    animation: fade-in ease-out 150ms;
    color: #282727;
    position: fixed;
    top: 16px;
    width: auto;
    z-index: 19;
  }
}
.b-header_button {
  align-items: center;
  appearance: none;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 24px;
  justify-content: center;
  min-width: 40px;
  text-align: center;
  text-decoration: none;
  flex-direction: column;
}
@media screen and (max-width: 1179.9px) {
  .b-header_button {
    min-height: 44px;
    min-width: 24px;
  }
}
.b-header_button:hover {
  color: #001489;
}
.m-care_essentials .b-header_button:hover, .m-1774 .b-header_button:hover {
  color: inherit;
}
@media screen and (min-width: 1180px) {
  .b-header_button {
    height: 35px;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 1179.9px) {
  .b-header_button {
    height: 36px;
    width: 36px;
  }
}
.b-header_button-text {
  display: none;
}

.b-header_login {
  position: relative;
}
@media screen and (max-width: 1179.9px) {
  .b-header_login {
    position: relative;
    border-radius: 4px;
    display: inline-flex;
    font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
    letter-spacing: 0.07em;
    line-height: 1.36;
    font-weight: 700;
    align-items: center;
    cursor: pointer;
    display: flex;
    min-height: 44px;
    padding: 0 16px;
    text-decoration: none;
    width: 100%;
    box-shadow: none;
    font-size: 14px;
    padding: 0;
  }
  .b-header_login.m-disabled::after, .b-header_login:disabled::after, .b-header_login[disabled]::after {
    background: #898992;
  }
  .b-header_login::after {
    background: currentcolor;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    transition: transform ease-out 150ms;
    width: 100%;
    transform: scaleX(1);
  }
  .b-header_login:hover::after, .b-header_login:active::after {
    transform: scaleX(0);
  }
  .b-header_login.m-disabled, .b-header_login:disabled, .b-header_login[disabled] {
    color: #898992;
    pointer-events: none;
  }
  html[dir=rtl] .b-header_login {
    letter-spacing: 0;
  }
  .l-page.m-care_essentials .b-header_login, .b-dialog.m-care_essentials-product .b-header_login {
    letter-spacing: normal;
  }
  html[dir=rtl] .b-header_login {
    letter-spacing: 0;
  }
  .l-page.m-care_essentials .b-header_login, .b-dialog.m-care_essentials-product .b-header_login {
    letter-spacing: normal;
  }
  .m-care_essentials .b-header_login {
    letter-spacing: normal;
    font-weight: 400;
  }
  .b-header_login::after {
    display: none;
  }
}
.b-header_login-inner svg {
  display: block;
  max-width: 20px;
}
.b-header_login-icon {
  align-items: center;
  appearance: none;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 24px;
  justify-content: center;
  min-width: 40px;
  text-align: center;
  text-decoration: none;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 1179.9px) {
  .b-header_login-icon {
    min-height: 44px;
    min-width: 24px;
  }
}
.b-header_login-icon:hover {
  color: #001489;
}
.m-care_essentials .b-header_login-icon:hover, .m-1774 .b-header_login-icon:hover {
  color: inherit;
}
@media screen and (min-width: 1180px) {
  .b-header_login-icon {
    height: 35px;
    justify-content: flex-start;
    z-index: 27;
  }
}
@media screen and (max-width: 1179.9px) {
  .b-header_login-icon {
    height: 36px;
    width: 36px;
  }
}
.b-header_login-caption {
  display: none;
}
.b-header_login-divider {
  margin: 0 4px;
}
.b-header_login-link {
  color: inherit;
  white-space: nowrap;
}
.b-header_login-text {
  display: none;
}

.b-minicart_icon {
  position: relative;
}
.b-minicart_icon-link {
  position: relative;
}
@media screen and (min-width: 1180px) {
  .b-minicart_icon-link {
    z-index: 27;
  }
}
.b-minicart_icon-link:hover, .b-minicart_icon-link.m-hovered {
  color: #001489;
}
.m-care_essentials .b-minicart_icon-link:hover, .m-care_essentials .b-minicart_icon-link.m-hovered {
  color: inherit;
}
.b-minicart_icon-link svg {
  display: block;
  max-width: 20px;
}
html[dir=rtl] .b-minicart_icon-link svg {
  transform: scaleX(-1);
}
.b-minicart_icon-qty {
  background-color: #001489;
  border-radius: 7.5px;
  color: #ffffff;
  font-size: 10px;
  height: 15px;
  line-height: 15px;
  min-width: 15px;
  padding: 0 3px;
  position: absolute;
  text-align: center;
  top: -4px;
  transform: translateX(1px);
}
@media screen and (max-width: 1179.9px) {
  .b-minicart_icon-qty {
    top: 6px;
  }
}
.m-care_essentials .b-minicart_icon-qty {
  background-color: #282727;
}
.b-header_wishlist .b-minicart_icon-qty {
  transform: translateX(10px);
}
html[dir=rtl] .b-header_wishlist .b-minicart_icon-qty {
  transform: translateX(-11px);
}
@media screen and (max-width: 1179.9px) {
  .b-header_wishlist .b-minicart_icon-qty {
    transform: translateX(12px);
  }
}
.b-menu_panel-footer .b-minicart_icon-qty {
  inset-inline-end: auto;
  inset-inline-start: 4px;
  top: 8px;
}
@media screen and (max-width: 1179.9px) {
  .m-search_mobile .b-header_wishlist .b-minicart_icon-qty {
    transform: translateX(10px);
  }
}

.b-search_toggle {
  font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
  letter-spacing: 0.07em;
  line-height: 1.36;
  font-weight: 400;
  font-size: 14px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid #a4a4aa;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: space-between;
  line-height: 40px;
  text-align: start;
  width: 240px;
}
html[dir=rtl] .b-search_toggle {
  letter-spacing: 0;
}
.l-page.m-care_essentials .b-search_toggle, .b-dialog.m-care_essentials-product .b-search_toggle {
  letter-spacing: normal;
}
@media screen and (max-width: 1179.9px) {
  .b-search_toggle {
    border-bottom: none;
    box-shadow: none;
    font-size: 0;
    height: 36px;
    justify-content: center;
    width: 36px;
  }
}
.m-care_essentials .b-search_toggle {
  letter-spacing: normal;
  font-weight: 300;
}
.b-header_stuck .b-search_toggle {
  border-bottom: none;
  box-shadow: none;
  font-size: 0;
}
.b-search_toggle-icon {
  align-items: center;
  appearance: none;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  min-width: 40px;
  text-align: center;
  text-decoration: none;
  height: 24px;
  margin-inline-end: 5px;
  width: 24px;
}
@media screen and (max-width: 1179.9px) {
  .b-search_toggle-icon {
    min-height: 44px;
    min-width: 24px;
  }
}
.b-search_toggle-icon:hover {
  color: #001489;
}
.m-care_essentials .b-search_toggle-icon:hover, .m-1774 .b-search_toggle-icon:hover {
  color: inherit;
}
@media screen and (max-width: 1179.9px) {
  .b-search_toggle-icon {
    height: 34px;
    margin: 0;
    width: 34px;
  }
  .b-search_toggle-icon svg {
    max-width: 20px;
  }
}
.b-search_toggle:hover .b-search_toggle-icon {
  color: #001489;
}
@media screen and (min-width: 1180px) {
  .b-header_actions-item .b-search_toggle-icon {
    justify-content: end;
    margin-inline-end: 0;
  }
  .b-header_actions-item .b-search_toggle-icon svg {
    max-width: 20px;
  }
}
.b-search_toggle-text {
  color: rgba(0, 0, 0, 0.54);
}

.b-brands_switcher {
  background-color: #494954;
  color: #ffffff;
  display: none;
}
@media screen and (max-width: 1179.9px) {
  .b-brands_switcher {
    display: none;
  }
}
.b-menu_bar-container .b-brands_switcher {
  display: none;
}
@media screen and (max-width: 1179.9px) {
  .b-menu_bar-container .b-brands_switcher {
    display: none;
  }
}
.b-brands_switcher-title {
  align-items: center;
  background-color: #494954;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  height: 54px;
  line-height: 1;
  padding: 4px 16px 0;
}
@media screen and (min-width: 1180px) {
  .b-brands_switcher-title {
    display: none;
  }
}
.b-brands_switcher-list {
  display: flex;
  padding: 8px 0;
}
@media screen and (min-width: 1180px) {
  .b-brands_switcher-list {
    margin: 0 auto;
    max-width: 1920px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1180px) and (min-width: 1180px) and (max-width: 1439.9px) {
  .b-brands_switcher-list {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1180px) and (min-width: 768px) and (max-width: 1179.9px) {
  .b-brands_switcher-list {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (min-width: 1180px) and (max-width: 767.9px) {
  .b-brands_switcher-list {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 1179.9px) {
  .b-brands_switcher-list {
    padding: 0 0 12px;
  }
}
.b-menu_bar-container .b-brands_switcher-list {
  flex-flow: column;
  width: 100%;
}
.b-brands_switcher-link {
  align-items: center;
  color: #a4a4aa;
  display: flex;
  font-size: 12px;
  font-weight: 500;
  height: 48px;
  letter-spacing: 1px;
  line-height: 1;
  padding: 0 16px;
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (min-width: 1180px) {
  .b-brands_switcher-link {
    border-left: 1px solid #a4a4aa;
    height: 26px;
    padding: 0 28px;
  }
  .b-brands_switcher-item:first-child .b-brands_switcher-link {
    border-left: none;
    margin-left: -14px;
  }
}
.b-brands_switcher-link.m-active {
  color: #ffffff;
  cursor: default;
  font-weight: 600;
}

@media screen and (min-width: 1180px) {
  .b-menu_bar {
    background-color: #ffffff;
    color: #282727;
    position: relative;
    transition: background-color ease-out 150ms;
  }
  .b-menu_bar-container {
    margin: 0 auto;
    max-width: 1920px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1180px) and (min-width: 1180px) and (max-width: 1439.9px) {
  .b-menu_bar-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1180px) and (min-width: 768px) and (max-width: 1179.9px) {
  .b-menu_bar-container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (min-width: 1180px) and (max-width: 767.9px) {
  .b-menu_bar-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 1180px) {
  .b-menu_bar-inner {
    display: flex;
    justify-content: center;
  }
  .b-menu_bar-item.m-pipe {
    align-self: center;
    background: #282727;
    height: 13px;
    margin: 0 12px;
    width: 1.6px;
  }
  .b-menu_bar-link {
    font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
    letter-spacing: 0.07em;
    line-height: 1.36;
    font-weight: 700;
    font-size: 14px;
    color: inherit;
    display: block;
    padding: 20px 12px;
    position: relative;
    text-decoration: none;
  }
  html[dir=rtl] .b-menu_bar-link {
    letter-spacing: 0;
  }
  .l-page.m-care_essentials .b-menu_bar-link, .b-dialog.m-care_essentials-product .b-menu_bar-link {
    letter-spacing: normal;
  }
  .b-menu_bar-link:visited {
    color: inherit;
  }
  .b-menu_bar-link::before {
    border-top: 2px solid;
    bottom: -1px;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    transition: width ease-out 150ms;
    width: 0;
  }
  .m-care_essentials .b-menu_bar-link {
    letter-spacing: normal;
    font-weight: 300;
  }
  .b-menu_bar-link[aria-expanded=true], .b-menu_bar-link:hover, .b-menu_bar-item:hover .b-menu_bar-link {
    background-color: #ffffff;
    position: relative;
    text-decoration: none;
    z-index: 1;
  }
  .b-menu_bar-link[aria-expanded=true]::before, .b-menu_bar-link:hover::before, .b-menu_bar-item:hover .b-menu_bar-link::before {
    width: 100%;
  }
  .m-care_essentials .b-menu_bar-link[aria-expanded=true], .m-care_essentials .b-menu_bar-link:hover, .m-care_essentials .b-menu_bar-item:hover .b-menu_bar-link {
    letter-spacing: normal;
    font-weight: 700;
  }
  .b-menu_bar-link.m-highlight {
    color: #001489;
  }
  .m-care_essentials .b-menu_bar-link.m-highlight {
    letter-spacing: normal;
    font-weight: 700;
    color: #282727;
    letter-spacing: 0;
  }
  .m-care_essentials .b-menu_bar-link_highlight {
    letter-spacing: normal;
  }
  .b-menu_bar-flyout {
    background-color: #ffffff;
    border-top: 1px solid #d2d1d4;
    box-shadow: 0 50vh 0 50vh rgba(0, 0, 0, 0.4);
    color: #282727;
    display: none;
    left: 0;
    max-height: 80vh;
    min-height: 300px;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 100%;
  }
  .b-menu_bar-flyout::-webkit-scrollbar {
    height: 4px;
    width: 4px;
  }
  .b-menu_bar-flyout::-webkit-scrollbar-thumb {
    background: #282727;
    border-radius: 11px;
  }
  .b-menu_bar-flyout::-webkit-scrollbar-track {
    background: #ebebea;
    border-radius: 11px;
  }
  .b-menu_bar-flyout[aria-hidden=false] {
    display: block;
  }
  .b-menu_bar-flyout_inner {
    margin: 0 auto;
    max-width: 1920px;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: flex-start;
    padding: 40px 40px 22px;
    position: relative;
  }
}
@media screen and (min-width: 1180px) and (min-width: 1180px) and (max-width: 1439.9px) {
  .b-menu_bar-flyout_inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1180px) and (min-width: 768px) and (max-width: 1179.9px) {
  .b-menu_bar-flyout_inner {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (min-width: 1180px) and (max-width: 767.9px) {
  .b-menu_bar-flyout_inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 1180px) {
  .b-menu_bar-flyout_inner .b-content_asset {
    width: 100%;
  }
  .b-menu_bar-flyout_column {
    flex-basis: 20.8333333333%;
    padding-right: 20px;
  }
  .b-menu_bar-flyout_column.m-menu_promo {
    flex-basis: 25%;
    flex-grow: 1;
    margin-left: auto;
    max-width: 32.5%;
    min-width: 25%;
    padding-right: 0;
  }
  html[dir=rtl] .b-menu_bar-flyout_column.m-menu_promo {
    margin-left: 0;
    margin-right: auto;
  }
  .b-menu_bar-flyout_promo {
    display: block;
    margin-bottom: 18px;
  }
  .b-menu_bar-flyout_promo picture {
    display: block;
  }
  .b-menu_bar-flyout_promo img {
    display: block;
  }
  .b-menu_bar-flyout_close {
    align-items: center;
    appearance: none;
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    height: 24px;
    justify-content: center;
    min-width: 40px;
    text-align: center;
    text-decoration: none;
    display: none;
    position: absolute;
    right: 40px;
    top: 20px;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1179.9px) {
  .b-menu_bar-flyout_close {
    min-height: 44px;
    min-width: 24px;
  }
}
@media screen and (min-width: 1180px) {
  .b-menu_bar-flyout_close:hover {
    color: #001489;
  }
  .m-care_essentials .b-menu_bar-flyout_close:hover, .m-1774 .b-menu_bar-flyout_close:hover {
    color: inherit;
  }
  html[dir=rtl] .b-menu_bar-flyout_close {
    left: 40px;
    right: initial;
  }
  .b-menu_bar-flyout_bot {
    border-top: 1px solid #d2d1d4;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  .m-care_essentials .b-menu_bar {
    padding-left: 24px;
    padding-right: 24px;
  }
  .b-header_stuck .b-menu_bar-link {
    font-size: 16px;
    padding: 0 12px 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .m-care_essentials .b-menu_bar {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media screen and (max-width: 1179.9px) {
  .b-menu_bar {
    padding: 0 16px;
  }
  .b-menu_bar-inner {
    margin: 0;
  }
  .b-menu_bar-flyout_inner {
    width: 100%;
  }
  .b-menu_bar-item {
    background-color: #ffffff;
  }
  .b-menu_bar-item.m-pipe {
    background: #d2d1d4;
    height: 1px;
    margin: 5px 0;
    width: 100%;
  }
  .b-menu_bar-link {
    position: relative;
    border-radius: 4px;
    display: inline-flex;
    font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
    letter-spacing: 0.07em;
    line-height: 1.36;
    font-weight: 700;
    font-size: 20px;
    align-items: center;
    cursor: pointer;
    display: flex;
    padding: 0 16px;
    text-decoration: none;
    width: 100%;
    min-height: 55px;
    padding: 0;
  }
  .b-menu_bar-link.m-disabled::after, .b-menu_bar-link:disabled::after, .b-menu_bar-link[disabled]::after {
    background: #898992;
  }
  .b-menu_bar-link::after {
    background: currentcolor;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    transition: transform ease-out 150ms;
    width: 100%;
    transform: scaleX(1);
  }
  .b-menu_bar-link:hover::after, .b-menu_bar-link:active::after {
    transform: scaleX(0);
  }
  .b-menu_bar-link.m-disabled, .b-menu_bar-link:disabled, .b-menu_bar-link[disabled] {
    color: #898992;
    pointer-events: none;
  }
  html[dir=rtl] .b-menu_bar-link {
    letter-spacing: 0;
  }
  .l-page.m-care_essentials .b-menu_bar-link, .b-dialog.m-care_essentials-product .b-menu_bar-link {
    letter-spacing: normal;
  }
  html[dir=rtl] .b-menu_bar-link {
    letter-spacing: 0;
  }
  .l-page.m-care_essentials .b-menu_bar-link, .b-dialog.m-care_essentials-product .b-menu_bar-link {
    letter-spacing: normal;
  }
  .m-care_essentials .b-menu_bar-link {
    letter-spacing: normal;
    font-weight: 400;
  }
  .b-menu_bar-link::after {
    display: none;
  }
  .b-menu_bar-link_highlight {
    color: #001489;
  }
  .m-care_essentials .b-menu_bar-link_highlight {
    letter-spacing: normal;
    font-weight: 700;
    color: #282727;
  }
  .b-menu_bar-flyout_promo, .b-menu_bar-flyout_bot {
    display: none;
  }
  .b-menu_bar .b-country_selector-locale_language {
    margin: 0;
  }
  .b-menu_item {
    width: 100%;
  }
}
@media screen and (min-width: 1180px) {
  .b-menu_item {
    max-width: 210px;
  }
  .b-menu_bar-flyout_column > .b-menu_item + .b-menu_item {
    margin-top: 16px;
  }
}
.b-menu_item.m-view_all_bottom {
  display: none;
}
@media screen and (max-width: 1179.9px) {
  .b-menu_item.m-view_all_top {
    width: 100%;
  }
}
@media screen and (min-width: 1180px) {
  .b-menu_item.m-view_all_top {
    line-height: 1;
  }
}
.b-menu_item.m-view_all_top.m-empty_sub_cat {
  display: none;
}
@media screen and (max-width: 1179.9px) {
  .b-menu_item.m-image_view {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    padding: 0 15px;
    text-align: center;
    width: 50%;
  }
}
.b-menu_item-link {
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  text-decoration: none;
  font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
  letter-spacing: 0.07em;
  line-height: 1.36;
  font-weight: 400;
  font-size: 14px;
  background-color: #ffffff;
  display: inline-block;
  margin-bottom: 16px;
  position: relative;
}
.b-menu_item-link.m-disabled, .b-menu_item-link:disabled, .b-menu_item-link[disabled] {
  color: #898992;
  pointer-events: none;
}
html[dir=rtl] .b-menu_item-link {
  letter-spacing: 0;
}
.l-page.m-care_essentials .b-menu_item-link, .b-dialog.m-care_essentials-product .b-menu_item-link {
  letter-spacing: normal;
}
@media screen and (max-width: 1179.9px) {
  .b-menu_item-link {
    position: relative;
    border-radius: 4px;
    display: inline-flex;
    font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
    letter-spacing: 0.07em;
    line-height: 1.36;
    font-weight: 700;
    font-size: 20px;
    align-items: center;
    cursor: pointer;
    display: flex;
    padding: 0 16px;
    text-decoration: none;
    width: 100%;
    margin-bottom: 0;
    min-height: 55px;
  }
  .b-menu_item-link.m-disabled::after, .b-menu_item-link:disabled::after, .b-menu_item-link[disabled]::after {
    background: #898992;
  }
  .b-menu_item-link::after {
    background: currentcolor;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    transition: transform ease-out 150ms;
    width: 100%;
    transform: scaleX(1);
  }
  .b-menu_item-link:hover::after, .b-menu_item-link:active::after {
    transform: scaleX(0);
  }
  .b-menu_item-link.m-disabled, .b-menu_item-link:disabled, .b-menu_item-link[disabled] {
    color: #898992;
    pointer-events: none;
  }
  html[dir=rtl] .b-menu_item-link {
    letter-spacing: 0;
  }
  .l-page.m-care_essentials .b-menu_item-link, .b-dialog.m-care_essentials-product .b-menu_item-link {
    letter-spacing: normal;
  }
  html[dir=rtl] .b-menu_item-link {
    letter-spacing: 0;
  }
  .l-page.m-care_essentials .b-menu_item-link, .b-dialog.m-care_essentials-product .b-menu_item-link {
    letter-spacing: normal;
  }
  .m-care_essentials .b-menu_item-link {
    letter-spacing: normal;
    font-weight: 400;
  }
  .b-menu_item-link::after {
    display: none;
  }
}
.m-care_essentials .b-menu_item-link {
  letter-spacing: normal;
  font-weight: 400;
}
@media screen and (min-width: 1180px) {
  .m-care_essentials .b-menu_item-link {
    margin-bottom: 13px;
  }
  .b-menu_item-link.m-has-submenu, .b-menu_item-link.m-bold {
    font-weight: 700;
    text-transform: uppercase;
  }
  .m-care_essentials .b-menu_item-link.m-has-submenu, .m-care_essentials .b-menu_item-link.m-bold {
    letter-spacing: normal;
    font-weight: 700;
    text-transform: none;
  }
}
@media screen and (min-width: 1180px) and (min-width: 1180px) {
  .m-care_essentials .b-menu_item-link.m-has-submenu, .m-care_essentials .b-menu_item-link.m-bold {
    margin-bottom: 20px;
  }
}
.b-menu_item-link.m-highlight {
  color: #001489;
}
.b-menu_item-link.m-highlight::after {
  background-color: #001489;
}
.b-menu_item-link.m-highlight:hover {
  color: #001489;
}
.b-menu_item-link.m-all_link {
  position: relative;
}
.b-menu_item-link.m-all_link.m-disabled::after, .b-menu_item-link.m-all_link:disabled::after, .b-menu_item-link.m-all_link[disabled]::after {
  background: #898992;
}
.b-menu_item-link.m-all_link::after {
  background: currentcolor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  transition: transform ease-out 150ms;
  width: 100%;
  transform: scaleX(1);
}
.b-menu_item-link.m-all_link:hover::after, .b-menu_item-link.m-all_link:active::after {
  transform: scaleX(0);
}
@media screen and (min-width: 1180px) {
  .b-menu_item-link.m-all_link {
    margin-bottom: 24px;
  }
  .m-care_essentials .b-menu_item-link.m-all_link {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1179.9px) {
  .m-care_essentials .b-menu_item-link.m-all_link {
    letter-spacing: normal;
    font-weight: 700;
  }
  .m-level_2_content .b-menu_item-link.m-regular:not(.m-all_link):not(.m-all_link_2nd) {
    font-weight: 400;
  }
}
.b-menu_item-link:not(.m-all_link) {
  position: relative;
}
.b-menu_item-link:not(.m-all_link).m-disabled::after, .b-menu_item-link:not(.m-all_link):disabled::after, .b-menu_item-link:not(.m-all_link)[disabled]::after {
  background: #898992;
}
.b-menu_item-link:not(.m-all_link)::after {
  background: currentcolor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  transition: transform ease-out 150ms;
  width: 100%;
  transform: scaleX(0);
}
.b-menu_item-link:not(.m-all_link):hover::after, .b-menu_item-link:not(.m-all_link):active::after {
  transform: scaleX(1);
}
@media screen and (min-width: 1180px) {
  .b-menu_item-link.m-all_link_2nd {
    display: none;
  }
}
@media screen and (max-width: 1179.9px) {
  .b-menu_item-link.m-image_link {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
  }
}
.b-menu_item-image_type {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.b-menu_item-submenu {
  line-height: 29px;
}
.b-menu_item-link_text {
  margin: 0 12px;
}
.b-menu_item-link_icon {
  margin-inline-start: auto;
}
@media screen and (min-width: 1180px) {
  .b-menu_item-link_icon {
    display: none;
  }
}
.b-menu_bar-link.m-custom_menu .b-menu_item-link_icon {
  display: none;
}
.b-menu_item-image_wrap {
  display: none;
}
@media screen and (max-width: 1179.9px) {
  .b-menu_item-image_wrap {
    align-items: center;
    display: flex;
    height: 120px;
    margin-bottom: 5px;
    max-width: 120px;
  }
  .b-menu_item-category_name {
    font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
    letter-spacing: 0.07em;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
  }
  html[dir=rtl] .b-menu_item-category_name {
    letter-spacing: 0;
  }
  .l-page.m-care_essentials .b-menu_item-category_name, .b-dialog.m-care_essentials-product .b-menu_item-category_name {
    letter-spacing: normal;
  }
  .m-care_essentials .b-menu_item-category_name {
    letter-spacing: normal;
    font-weight: 300;
  }
  .b-menu_item-content_desktop {
    display: none;
  }
}
@media screen and (min-width: 1180px) {
  .b-menu_item-content_mobile {
    display: none;
  }
}

@media screen and (max-width: 1179.9px) {
  .b-menu_panel-wrapper::before {
    backdrop-filter: blur(2px);
    background-color: rgba(0, 0, 0, 0.1);
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.5s;
    transition-property: visibility, opacity;
    visibility: hidden;
    z-index: 22;
  }
  .b-menu_panel-wrapper.m-opened::before, .b-menu_panel-wrapper.m-active::before {
    opacity: var(--backdrop-opacity);
    transition: none;
    visibility: visible;
  }
  .b-menu_panel-inner {
    background-color: #ffffff;
    bottom: 0;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    transform: translateX(-100%);
    transition-property: transform;
    visibility: hidden;
    width: 400px;
    z-index: 22;
  }
  html[dir=rtl] .b-menu_panel-inner {
    left: initial;
    right: 0;
    transform: translateX(100%);
  }
  .b-menu_panel-inner.m-closed {
    transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.5s;
  }
  .b-menu_panel-inner.m-opened {
    border-radius: 0.1px;
    transform: translateX(0);
    transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.5s;
    visibility: visible;
  }
  html[dir=rtl] .b-menu_panel-inner.m-opened {
    transform: translateX(0);
  }
  .b-menu_panel-inner.m-no_transition {
    transition: none !important;
  }
}
@media screen and (max-width: 767.9px) {
  .b-menu_panel-inner {
    width: 100vw;
  }
}
.b-menu_panel-head {
  display: none;
}
@media screen and (max-width: 1179.9px) {
  .b-menu_panel-head {
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid #d2d1d4;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    min-height: 60px;
    padding: 8px 20px;
    position: relative;
  }
}
.m-care_essentials .b-menu_panel-head {
  padding-inline: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .m-care_essentials .b-menu_panel-head {
    padding-inline: 24px;
  }
}
.b-menu_panel-content {
  align-items: center;
  display: flex;
}
.b-menu_panel-title {
  font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
  letter-spacing: 0.07em;
  line-height: 1.36;
  font-weight: 400;
  font-size: 20px;
}
html[dir=rtl] .b-menu_panel-title {
  letter-spacing: 0;
}
.l-page.m-care_essentials .b-menu_panel-title, .b-dialog.m-care_essentials-product .b-menu_panel-title {
  letter-spacing: normal;
}
.b-menu_panel-back {
  align-items: center;
  appearance: none;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 24px;
  justify-content: center;
  min-width: 40px;
  text-align: center;
  text-decoration: none;
  margin-inline-end: 12px;
}
@media screen and (max-width: 1179.9px) {
  .b-menu_panel-back {
    min-height: 44px;
    min-width: 24px;
  }
}
.b-menu_panel-back:hover {
  color: #001489;
}
.m-care_essentials .b-menu_panel-back:hover, .m-1774 .b-menu_panel-back:hover {
  color: inherit;
}
html[dir=rtl] .b-menu_panel-back {
  transform: scaleX(-1);
}
.b-menu_panel-back_text {
  display: none;
}
.b-menu_panel-footer {
  display: none;
  padding-top: 12px;
}
@media screen and (max-width: 1179.9px) {
  .b-menu_panel-footer {
    border-top: 1px solid #d2d1d4;
    display: block;
    padding: 25px 0 15px;
  }
  .m-care_essentials .b-menu_panel-footer {
    margin-top: 20px;
  }
}
.b-menu_panel-footer .b-header_wishlist-copy,
.b-menu_panel-footer .b-menu_panel-footer_caption,
.b-menu_panel-footer .b-header_actions-item_text,
.b-menu_panel-footer .b-header_login-caption {
  font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
  letter-spacing: 0.07em;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  display: inline-block;
}
html[dir=rtl] .b-menu_panel-footer .b-header_wishlist-copy,
html[dir=rtl] .b-menu_panel-footer .b-menu_panel-footer_caption,
html[dir=rtl] .b-menu_panel-footer .b-header_actions-item_text,
html[dir=rtl] .b-menu_panel-footer .b-header_login-caption {
  letter-spacing: 0;
}
.l-page.m-care_essentials .b-menu_panel-footer .b-header_wishlist-copy, .b-dialog.m-care_essentials-product .b-menu_panel-footer .b-header_wishlist-copy,
.l-page.m-care_essentials .b-menu_panel-footer .b-menu_panel-footer_caption,
.b-dialog.m-care_essentials-product .b-menu_panel-footer .b-menu_panel-footer_caption,
.l-page.m-care_essentials .b-menu_panel-footer .b-header_actions-item_text,
.b-dialog.m-care_essentials-product .b-menu_panel-footer .b-header_actions-item_text,
.l-page.m-care_essentials .b-menu_panel-footer .b-header_login-caption,
.b-dialog.m-care_essentials-product .b-menu_panel-footer .b-header_login-caption {
  letter-spacing: normal;
}
.m-care_essentials .b-menu_panel-footer .b-header_wishlist-copy,
.m-care_essentials .b-menu_panel-footer .b-menu_panel-footer_caption,
.m-care_essentials .b-menu_panel-footer .b-header_actions-item_text,
.m-care_essentials .b-menu_panel-footer .b-header_login-caption {
  letter-spacing: normal;
  font-weight: 300;
}
.b-menu_panel-footer .b-header_login,
.b-menu_panel-footer .b-header_wishlist,
.b-menu_panel-footer .b-find_store,
.b-menu_panel-footer .b-header_track_order,
.b-menu_panel-footer .b-customer_service_link {
  min-height: 50px;
  padding: 0;
}
.b-menu_panel-footer .b-header_login-icon,
.b-menu_panel-footer .b-header_wishlist-icon,
.b-menu_panel-footer .b-find_store-icon,
.b-menu_panel-footer .b-header_track_order-icon,
.b-menu_panel-footer .b-customer_service_link-icon {
  display: block;
  height: 24px;
  margin-inline-end: 12px;
  min-height: 0;
  min-width: 0;
  width: 24px;
}
.b-menu_panel-footer .b-header_login-icon svg,
.b-menu_panel-footer .b-header_wishlist-icon svg,
.b-menu_panel-footer .b-find_store-icon svg,
.b-menu_panel-footer .b-header_track_order-icon svg,
.b-menu_panel-footer .b-customer_service_link-icon svg {
  max-width: none;
}
.b-menu_panel-footer .b-country_selector {
  margin-top: 15px;
}
.b-menu_panel-footer .b-header_login-divider {
  margin: 0;
}
.b-menu_panel-close {
  align-items: center;
  appearance: none;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 24px;
  justify-content: center;
  min-width: 40px;
  text-align: center;
  text-decoration: none;
  inset-inline-end: 16px;
  position: absolute;
  top: calc(50% - 22px);
}
@media screen and (max-width: 1179.9px) {
  .b-menu_panel-close {
    min-height: 44px;
    min-width: 24px;
  }
}
.b-menu_panel-close:hover {
  color: #001489;
}
.m-care_essentials .b-menu_panel-close:hover, .m-1774 .b-menu_panel-close:hover {
  color: inherit;
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .m-care_essentials .b-menu_panel-close {
    inset-inline-end: 24px;
  }
}
@media screen and (max-width: 1179.9px) {
  .b-menu_panel-link {
    position: relative;
    border-radius: 4px;
    display: inline-flex;
    font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
    letter-spacing: 0.07em;
    line-height: 1.36;
    font-weight: 700;
    font-size: 20px;
    align-items: center;
    cursor: pointer;
    display: flex;
    min-height: 44px;
    padding: 0 16px;
    text-decoration: none;
    width: 100%;
  }
  .b-menu_panel-link.m-disabled::after, .b-menu_panel-link:disabled::after, .b-menu_panel-link[disabled]::after {
    background: #898992;
  }
  .b-menu_panel-link::after {
    background: currentcolor;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    transition: transform ease-out 150ms;
    width: 100%;
    transform: scaleX(1);
  }
  .b-menu_panel-link:hover::after, .b-menu_panel-link:active::after {
    transform: scaleX(0);
  }
  .b-menu_panel-link.m-disabled, .b-menu_panel-link:disabled, .b-menu_panel-link[disabled] {
    color: #898992;
    pointer-events: none;
  }
  html[dir=rtl] .b-menu_panel-link {
    letter-spacing: 0;
  }
  .l-page.m-care_essentials .b-menu_panel-link, .b-dialog.m-care_essentials-product .b-menu_panel-link {
    letter-spacing: normal;
  }
  html[dir=rtl] .b-menu_panel-link {
    letter-spacing: 0;
  }
  .l-page.m-care_essentials .b-menu_panel-link, .b-dialog.m-care_essentials-product .b-menu_panel-link {
    letter-spacing: normal;
  }
  .m-care_essentials .b-menu_panel-link {
    letter-spacing: normal;
    font-weight: 400;
  }
  .b-menu_panel-link::after {
    display: none;
  }
}
.b-menu_panel li {
  list-style: none;
}

@media screen and (max-width: 1179.9px) {
  .b-menu_subpanel {
    display: flex;
    height: 100%;
    transition: transform cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.5s;
  }
  .b-menu_subpanel.m-active_level_1 {
    transform: translateX(0);
  }
  .m-drawer_open .b-menu_subpanel, .b-menu_subpanel.m-active_level_2 {
    transform: translateX(-100%);
  }
  html[dir=rtl] .m-drawer_open .b-menu_subpanel, html[dir=rtl] .b-menu_subpanel.m-active_level_2 {
    transform: translateX(100%);
  }
  .m-drawer_open[dir=rtl] .b-menu_subpanel {
    transform: translateX(100%);
  }
  .b-menu_subpanel.m-active_level_3 {
    transform: translateX(-200%);
  }
  html[dir=rtl] .b-menu_subpanel.m-active_level_3 {
    transform: translateX(200%);
  }
  .b-menu_subpanel-container {
    background-color: #ffffff;
    min-width: 100%;
    overflow-y: auto;
  }
  .m-care_essentials .b-menu_subpanel-container.m-level_2 .b-menu_item-link {
    letter-spacing: normal;
    font-weight: 700;
  }
}
@media screen and (max-width: 1179.9px) and (min-width: 768px) and (max-width: 1179.9px) {
  .m-care_essentials .b-menu_subpanel-container.m-level_2 .b-menu_item-link {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 1179.9px) {
  .b-menu_subpanel-container.m-level_2 .b-menu_panel-back, .b-menu_subpanel-container.m-level_3 .b-menu_panel-back {
    transform: scaleX(1);
  }
  .b-menu_subpanel-content.m-level_2_content {
    display: flex;
    flex-wrap: wrap;
  }
  .b-menu_subpanel-container.m-level_1 .b-menu_subpanel-content.m-level_2_content, .b-menu_subpanel-container.m-level_2 .b-menu_subpanel-content.m-level_3_content {
    display: none;
  }
}
.b-menu_models {
  margin: 0 auto;
  max-width: 1920px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-bottom: 32px;
  padding-top: 32px;
  position: relative;
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  .b-menu_models {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-menu_models {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-menu_models {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.b-menu_models-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  width: 100%;
}
.b-menu_models-title {
  font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
  letter-spacing: 0.07em;
  line-height: 1.36;
  font-weight: 700;
  font-size: 14px;
}
html[dir=rtl] .b-menu_models-title {
  letter-spacing: 0;
}
.l-page.m-care_essentials .b-menu_models-title, .b-dialog.m-care_essentials-product .b-menu_models-title {
  letter-spacing: normal;
}
.b-menu_models-tile {
  display: block;
  text-align: center;
}
.b-menu_models-tile_image {
  display: block;
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
  width: 100%;
}
.b-menu_models-tile_image img {
  border: none;
  bottom: 0;
  color: #ebebea;
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.b-menu_models-link {
  position: relative;
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  text-decoration: none;
  font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
  letter-spacing: 0.07em;
  line-height: 1.36;
  font-weight: 400;
  font-size: 14px;
}
.b-menu_models-link.m-disabled::after, .b-menu_models-link:disabled::after, .b-menu_models-link[disabled]::after {
  background: #898992;
}
.b-menu_models-link::after {
  background: currentcolor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  transition: transform ease-out 150ms;
  width: 100%;
  transform: scaleX(1);
}
.b-menu_models-link:hover::after, .b-menu_models-link:active::after {
  transform: scaleX(0);
}
.b-menu_models-link.m-disabled, .b-menu_models-link:disabled, .b-menu_models-link[disabled] {
  color: #898992;
  pointer-events: none;
}
html[dir=rtl] .b-menu_models-link {
  letter-spacing: 0;
}
.l-page.m-care_essentials .b-menu_models-link, .b-dialog.m-care_essentials-product .b-menu_models-link {
  letter-spacing: normal;
}
.b-menu_models-tile_title {
  position: relative;
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  text-decoration: none;
  font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
  letter-spacing: 0.07em;
  line-height: 1.36;
  font-weight: 400;
  font-size: 14px;
}
.b-menu_models-tile_title.m-disabled::after, .b-menu_models-tile_title:disabled::after, .b-menu_models-tile_title[disabled]::after {
  background: #898992;
}
.b-menu_models-tile_title::after {
  background: currentcolor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  transition: transform ease-out 150ms;
  width: 100%;
  transform: scaleX(1);
}
.b-menu_models-tile_title:hover::after, .b-menu_models-tile_title:active::after {
  transform: scaleX(0);
}
.b-menu_models-tile_title.m-disabled, .b-menu_models-tile_title:disabled, .b-menu_models-tile_title[disabled] {
  color: #898992;
  pointer-events: none;
}
html[dir=rtl] .b-menu_models-tile_title {
  letter-spacing: 0;
}
.l-page.m-care_essentials .b-menu_models-tile_title, .b-dialog.m-care_essentials-product .b-menu_models-tile_title {
  letter-spacing: normal;
}

.b-skip_to {
  background-color: #ebedf6;
  box-shadow: 0 3px 5px hsla(0deg, 0%, 0%, 0.3);
  color: #282727;
  display: block;
  left: 0;
  margin: 0 auto;
  max-width: 320px;
  overflow: hidden;
  padding: 12px 48px;
  position: absolute;
  right: 0;
  text-align: center;
  text-decoration: none;
  top: 8px;
  transition: ease-out 150ms;
  transition-property: opacity, clip;
  visibility: hidden;
  width: 100%;
  z-index: 25;
}
.b-skip_to:focus {
  animation: makeVisible 0s 0.3s forwards;
}

.b-header_message {
  font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
  letter-spacing: 0.07em;
  line-height: 1.36;
  font-weight: 400;
  font-size: 14px;
  background-color: #ebedf6;
  border: 1px solid #001489;
  border-radius: 4px;
  margin: 0 auto;
  align-items: center;
  color: #282727;
  cursor: default;
  display: flex;
  border: none;
  visibility: visible;
}
html[dir=rtl] .b-header_message {
  letter-spacing: 0;
}
.l-page.m-care_essentials .b-header_message, .b-dialog.m-care_essentials-product .b-header_message {
  letter-spacing: normal;
}
.b-header_message::before {
  content: url("./images/icons/info.svg");
  height: 24px;
  margin-bottom: auto;
  margin-inline-end: 12px;
  width: 24px;
}
.b-header_message.m-error {
  background-color: #fbeded;
  border-color: #d01d1b;
  visibility: visible;
}
.b-header_message.m-error::before {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.0002 2.79995C6.91918 2.79995 2.8002 6.91893 2.8002 12C2.8002 17.081 6.91918 21.2 12.0002 21.2C17.0812 21.2 21.2002 17.081 21.2002 12C21.2002 6.91893 17.0812 2.79995 12.0002 2.79995ZM1.2002 12C1.2002 6.03528 6.03552 1.19995 12.0002 1.19995C17.9649 1.19995 22.8002 6.03528 22.8002 12C22.8002 17.9646 17.9649 22.7999 12.0002 22.7999C6.03552 22.7999 1.2002 17.9646 1.2002 12Z' fill='%23d01d1b'/%3E%3Cpath d='M12.025 18.65C11.45 18.65 11 18.2 11 17.625C11 17.05 11.45 16.6 12.025 16.6C12.575 16.6 13.05 17.083 13.05 17.625C13.05 18.192 12.6 18.65 12.025 18.65Z' fill='%23d01d1b'/%3E%3Cpath d='M11.9932 14.317C11.5352 14.317 11.1602 13.942 11.1602 13.484V5.63403C11.1602 5.17603 11.5352 4.80103 11.9932 4.80103C12.4512 4.80103 12.8262 5.17603 12.8262 5.63403V13.484C12.8262 13.942 12.4512 14.317 11.9932 14.317Z' fill='%23d01d1b'/%3E%3C/svg%3E%0A");
}
.b-header_message.m-error::before, .b-header_message::before {
  content: none;
}
.b-header_message-inner {
  font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
  letter-spacing: 0.07em;
  line-height: 1.36;
  font-weight: 400;
  font-size: 14px;
  background-color: #ebedf6;
  border: 1px solid #001489;
  border-radius: 4px;
  align-items: center;
  color: #282727;
  cursor: default;
  display: flex;
  max-width: 1920px;
  padding-left: 40px;
  padding-right: 40px;
  background: none;
  border: none;
  margin: 0 auto;
  padding-bottom: 16px;
  padding-top: 16px;
  width: 100%;
}
html[dir=rtl] .b-header_message-inner {
  letter-spacing: 0;
}
.l-page.m-care_essentials .b-header_message-inner, .b-dialog.m-care_essentials-product .b-header_message-inner {
  letter-spacing: normal;
}
.b-header_message-inner::before {
  content: url("./images/icons/info.svg");
  height: 24px;
  margin-bottom: auto;
  margin-inline-end: 12px;
  width: 24px;
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  .b-header_message-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-header_message-inner {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-header_message-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.b-header_message.m-error .b-header_message-inner::before {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjRDAxRDFCIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMiAyLjhhOS4yIDkuMiAwIDEgMCAwIDE4LjQgOS4yIDkuMiAwIDAgMCAwLTE4LjRaTTEuMiAxMkMxLjIgNi4wMzUgNi4wMzQgMS4yIDEyIDEuMmM1Ljk2NCAwIDEwLjggNC44MzUgMTAuOCAxMC44IDAgNS45NjUtNC44MzYgMTAuOC0xMC44IDEwLjgtNS45NjUgMC0xMC44LTQuODM1LTEwLjgtMTAuOFoiIGNsaXAtcnVsZT0iZXZlbm9kZCIvPjxwYXRoIGZpbGw9IiNEMDFEMUIiIGQ9Ik0xMi4wMjUgMTguNjVjLS41NzUgMC0xLjAyNS0uNDUtMS4wMjUtMS4wMjVzLjQ1LTEuMDI1IDEuMDI1LTEuMDI1Yy41NSAwIDEuMDI1LjQ4MyAxLjAyNSAxLjAyNSAwIC41NjctLjQ1IDEuMDI1LTEuMDI1IDEuMDI1Wk0xMS45OTMgMTQuMzE3YS44MzYuODM2IDAgMCAxLS44MzMtLjgzM3YtNy44NWMwLS40NTguMzc1LS44MzMuODMzLS44MzMuNDU4IDAgLjgzMy4zNzUuODMzLjgzM3Y3Ljg1YS44MzYuODM2IDAgMCAxLS44MzMuODMzWiIvPjwvc3ZnPg==");
}
.b-header_message a {
  position: relative;
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  text-decoration: none;
}
.b-header_message a.m-disabled::after, .b-header_message a:disabled::after, .b-header_message a[disabled]::after {
  background: #898992;
}
.b-header_message a::after {
  background: currentcolor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  transition: transform ease-out 150ms;
  width: 100%;
  transform: scaleX(1);
}
.b-header_message a:hover::after, .b-header_message a:active::after {
  transform: scaleX(0);
}
.b-header_message a.m-disabled, .b-header_message a:disabled, .b-header_message a[disabled] {
  color: #898992;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .b-find_store {
    cursor: pointer;
    text-decoration: none;
  }
  @media not all and (pointer: coarse) {
    .b-find_store:hover {
      color: #001489;
    }
  }
}
@media screen and (min-width: 1180px) {
  .b-find_store {
    align-items: center;
    appearance: none;
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    min-width: 40px;
    text-align: center;
    text-decoration: none;
    flex-direction: column;
    height: 35px;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1179.9px) {
  .b-find_store {
    min-height: 44px;
    min-width: 24px;
  }
}
@media screen and (min-width: 1180px) {
  .b-find_store:hover {
    color: #001489;
  }
  .m-care_essentials .b-find_store:hover, .m-1774 .b-find_store:hover {
    color: inherit;
  }
  .b-find_store-icon {
    align-items: center;
    appearance: none;
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    height: 24px;
    justify-content: center;
    min-width: 40px;
    text-align: center;
    text-decoration: none;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1179.9px) {
  .b-find_store-icon {
    min-height: 44px;
    min-width: 24px;
  }
}
@media screen and (min-width: 1180px) {
  .b-find_store-icon:hover {
    color: #001489;
  }
  .m-care_essentials .b-find_store-icon:hover, .m-1774 .b-find_store-icon:hover {
    color: inherit;
  }
}
.b-find_store-icon svg {
  margin-bottom: 1px;
  max-width: 20px;
}
.b-menu_panel-footer .b-find_store {
  align-items: center;
  border: none;
  box-shadow: none;
  display: flex;
  font-size: 14px;
  justify-content: flex-start;
  text-decoration: none;
}
.b-menu_panel-footer .b-find_store-icon {
  display: inline-block;
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-header_actions-item.m-storelocator .b-find_store {
    align-items: center;
    display: flex;
    height: 36px;
    justify-content: center;
    width: 36px;
  }
}

.b-usablenet {
  bottom: 45px;
  position: absolute;
}
@media screen and (max-width: 1179.9px) {
  .b-usablenet {
    display: none;
  }
  .b-usablenet.m-hamburger {
    display: block;
    position: static;
  }
}
.b-usablenet-checkout {
  display: block;
  padding: 0 16px;
  position: static;
}
.b-usablenet-link {
  position: relative;
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  text-decoration: none;
  font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
  letter-spacing: 0.07em;
  line-height: 1.36;
  font-weight: 400;
  font-size: 12px;
  color: #60606a;
}
.b-usablenet-link.m-disabled::after, .b-usablenet-link:disabled::after, .b-usablenet-link[disabled]::after {
  background: #898992;
}
.b-usablenet-link::after {
  background: currentcolor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  transition: transform ease-out 150ms;
  width: 100%;
  transform: scaleX(1);
}
.b-usablenet-link:hover::after, .b-usablenet-link:active::after {
  transform: scaleX(0);
}
.b-usablenet-link.m-disabled, .b-usablenet-link:disabled, .b-usablenet-link[disabled] {
  color: #898992;
  pointer-events: none;
}
html[dir=rtl] .b-usablenet-link {
  letter-spacing: 0;
}
.l-page.m-care_essentials .b-usablenet-link, .b-dialog.m-care_essentials-product .b-usablenet-link {
  letter-spacing: normal;
}
.m-care_essentials .b-usablenet-link {
  letter-spacing: normal;
  font-weight: 300;
  color: #60606a;
}
.b-usablenet.m-hamburger .b-usablenet-link {
  font-size: 14px;
}

.b-badges {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  inset-inline-start: 24px;
  max-width: calc(100% - 156px);
  position: absolute;
  top: 24px;
  z-index: 1;
}
@media screen and (max-width: 1179.9px) {
  .b-badges {
    inset-inline-start: 16px;
    top: 16px;
  }
}
.b-badges-item {
  font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
  letter-spacing: 0.07em;
  line-height: 1.36;
  font-weight: 400;
  font-size: 12px;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #001489;
  padding: 3px 6px;
  word-break: break-word;
}
html[dir=rtl] .b-badges-item {
  letter-spacing: 0;
}
.l-page.m-care_essentials .b-badges-item, .b-dialog.m-care_essentials-product .b-badges-item {
  letter-spacing: normal;
}
.l-page.m-care_essentials .b-badges-item {
  border: none;
  letter-spacing: normal;
  line-height: 1.05;
}
.b-product_line .b-badges, .b-product_tile .b-badges, .b-carousel .b-badges {
  inset-inline-start: 8px;
  max-width: calc(100% - 68px);
  top: 8px;
}
.b-wishlist_tile .b-badges {
  display: none;
}

/*md

# b-carousel (based on scroll)

## Carousel examples

### 1. Hero carousel

```html_example
<div data-widget="carousel" class="b-carousel m-hero">
    <button class="b-carousel-ctrl m-prev" tabindex="-1" aria-hidden="true" title="Previous" data-ref="elemPrevButton" data-event-click="scrollToPrevPage">
        <svg width="40" height="40" viewBox="2 1 40 40" aria-hidden="true" focusable="false">
            <path d="m26.541 8.3536-12.728 12.728 12.728 12.728" fill="none" stroke="currentColor" stroke-width="2"></path>
        </svg>
    </button>
    <button class="b-carousel-ctrl m-next" tabindex="-1" aria-hidden="true" title="Next" data-ref="elemNextButton" data-event-click="scrollToNextPage">
        <svg width="40" height="40" viewBox="-1 1 40 40" aria-hidden="true" focusable="false">
            <path d="m13.459 8.3536 12.728 12.728-12.728 12.728" fill="none" stroke="currentColor" stroke-width="2"></path>
        </svg>
    </button>
    <div class="b-carousel-track" data-ref="elemCarouselTrack" data-event-scroll.passive="onScroll" data-event-touchstart="onScroll" data-event-mousedown.prevent="onMouseDown" data-event-mouseup="onMouseUp">
        <div class="b-carousel-item">
            <figure class="b-promo_box m-full_bleed m-caption_offcenter">
                <picture class="b-promo_box-picture">
                    <img src="../images/guide/examples/hero-carousel-banner-1.jpg?$staticlink$" alt="Girl stand on the beach." loading="eager" width="1600" height="800">
                </picture>
                <figcaption class="b-promo_box-inner">
                    <div class="b-promo_box-caption b-promo_caption">
                        <h2 class="b-promo_caption-title">Carousel first slide</h2>
                        <p class="b-promo_caption-subtitle">Everyone's fallen for boilerplate so we added to her games repertoire.</p>
                        <div class="b-promo_caption-actions">
                            <a class="b-button" href="#" aria-label="Shop new season at boilerplate">Shop New Season</a>
                        </div>
                    </div>
                </figcaption>
            </figure>
        </div>
        <div class="b-carousel-item">
            <figure class="b-promo_box m-full_bleed m-caption_offcenter">
                <picture class="b-promo_box-picture">
                    <img src="../images/guide/examples/hero-carousel-banner-2.jpg?$staticlink$" alt="Girl with khaki panama." loading="lazy" width="1600" height="800">
                </picture>
                <figcaption class="b-promo_box-inner">
                    <div class="b-promo_box-caption b-promo_caption">
                        <h2 class="b-promo_caption-title">Carousel second slide</h2>
                        <p class="b-promo_caption-subtitle">New playful styles inspired by darts and that staple of a British pub - the fruit machine.</p>
                        <div class="b-promo_caption-actions">
                            <a class="b-button" href="#" aria-label="Shop new Collection at boilerplate">Shop New Collection</a>
                        </div>
                    </div>
                </figcaption>
            </figure>
        </div>
        <div class="b-carousel-item">
            <figure class="b-promo_box m-full_bleed m-caption_offcenter">
                <picture class="b-promo_box-picture">
                    <img src="../images/guide/examples/hero-carousel-banner-3.jpg?$staticlink$" alt="Girl stand in cloak." loading="lazy" width="1600" height="800">
                </picture>
                <figcaption class="b-promo_box-inner">
                    <div class="b-promo_box-caption b-promo_caption">
                        <h2 class="b-promo_caption-title">Carousel third slide</h2>
                        <div class="b-promo_caption-actions">
                            <a class="b-button" href="#" aria-label="Shop new Season at boilerplate">Shop New Season</a>
                        </div>
                    </div>
                </figcaption>
            </figure>
        </div>
    </div>
    <div aria-hidden="true" class="b-carousel-pagination" data-ref="pagination">
        <button class="b-carousel-page" data-page="0" tabindex="-1" data-event-click.prevent="handlePaginationClick"></button>
        <button class="b-carousel-page" data-page="1" tabindex="-1" data-event-click.prevent="handlePaginationClick"></button>
        <button class="b-carousel-page" data-page="2" tabindex="-1" data-event-click.prevent="handlePaginationClick"></button>
    </div>
</div>
```

### 2. Products carousel

```html_example
<section data-widget="carousel" class="b-carousel m-products">
    <h2 class="b-carousel-title">Look what's new</h2>
    <button class="b-carousel-ctrl m-prev" tabindex="-1" aria-hidden="true" title="Previous" data-ref="elemPrevButton" data-event-click="scrollToPrevPage">
        <svg width="40" height="40" viewBox="2 1 40 40" aria-hidden="true" focusable="false">
            <path d="m26.541 8.3536-12.728 12.728 12.728 12.728" fill="none" stroke="currentColor" stroke-width="2"></path>
        </svg>
    </button>
    <button class="b-carousel-ctrl m-next" tabindex="-1" aria-hidden="true" title="Next" data-ref="elemNextButton" data-event-click="scrollToNextPage">
        <svg width="40" height="40" viewBox="-1 1 40 40" aria-hidden="true" focusable="false">
            <path d="m13.459 8.3536 12.728 12.728-12.728 12.728" fill="none" stroke="currentColor" stroke-width="2"></path>
        </svg>
    </button>
    <div class="b-carousel-track" data-ref="elemCarouselTrack" data-event-scroll.passive="onScroll" data-event-touchstart="onScroll" data-event-mousedown.prevent="onMouseDown" data-event-mouseup="onMouseUp">
        <div class="b-carousel-item">
            <section class="b-product_tile">
                <img src="../images/guide/examples/product-carousel-image.png?$staticlink$" width="260" height="346">
            </section>
        </div>
        <div class="b-carousel-item">
            <section class="b-product_tile">
                <img src="../images/guide/examples/product-carousel-image.png?$staticlink$" width="260" height="346">
            </section>
        </div>
        <div class="b-carousel-item">
            <section class="b-product_tile">
                <img src="../images/guide/examples/product-carousel-image.png?$staticlink$" width="260" height="346">
            </section>
        </div>
        <div class="b-carousel-item">
            <section class="b-product_tile">
                <img src="../images/guide/examples/product-carousel-image.png?$staticlink$" width="260" height="346">
            </section>
        </div>
        <div class="b-carousel-item">
            <section class="b-product_tile">
                <img src="../images/guide/examples/product-carousel-image.png?$staticlink$" width="260" height="346">
            </section>
        </div>
        <div class="b-carousel-item">
            <section class="b-product_tile">
                <img src="../images/guide/examples/product-carousel-image.png?$staticlink$" width="260" height="346">
            </section>
        </div>
        <div class="b-carousel-item">
            <section class="b-product_tile">
                <img src="../images/guide/examples/product-carousel-image.png?$staticlink$" width="260" height="346">
            </section>
        </div>
        <div class="b-carousel-item">
            <section class="b-product_tile">
                <img src="../images/guide/examples/product-carousel-image.png?$staticlink$" width="260" height="346">
            </section>
        </div>
        <div class="b-carousel-item">
            <section class="b-product_tile">
                <img src="../images/guide/examples/product-carousel-image.png?$staticlink$" width="260" height="346">
            </section>
        </div>
        <div class="b-carousel-item">
            <section class="b-product_tile">
                <img src="../images/guide/examples/product-carousel-image.png?$staticlink$" width="260" height="346">
            </section>
        </div>
    </div>
</section>
<svg height="0" width="0" style="position:absolute" viewBox="0 0 0 0" xmlns="http://www.w3.org/2000/svg">
    <symbol id="star">
        <path d="m13.344 15.662-5.0953-2.6691-5.0873 2.6842 0.96393-5.6707-4.1249-4.0089 5.691-0.83558 2.538-5.1618 2.5533 5.1543 5.6935 0.81868-4.113 4.0211z"></path>
    </symbol>
</svg>
```
*/
.b-carousel {
  position: relative;
}
.b-carousel-title {
  font-family: var(--care-essentials-font, "DIN Next CYR", "Arial", "Helvetica", sans-serif);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.96;
  margin-bottom: 32px;
}
@media screen and (max-width: 1179.9px) {
  .b-carousel-title {
    font-size: 32px;
    line-height: 0.98;
  }
}
html[dir=rtl] .b-carousel-title {
  letter-spacing: 0;
}
@media screen and (max-width: 767.9px) {
  .b-carousel-title {
    font-size: 24px;
  }
}
.m-care_essentials .b-carousel-title {
  font-weight: 400;
  letter-spacing: 0;
}
.b-drawer:not(.m-cart_overlay) .b-carousel-title {
  font-family: var(--care-essentials-font, "DIN Next CYR", "Arial", "Helvetica", sans-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
html[dir=rtl] .b-drawer:not(.m-cart_overlay) .b-carousel-title {
  letter-spacing: 0;
}
.b-carousel-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;
}
.b-carousel-track::-webkit-scrollbar {
  display: none;
}
.b-carousel-track.m-mousemove_navigation {
  scroll-snap-type: unset;
}
.b-carousel-track.m-grabbing {
  cursor: grab;
  scroll-behavior: auto;
  -webkit-user-select: none;
          user-select: none;
}
.b-carousel-track.m-grabbing::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
}
.b-carousel-item {
  scroll-snap-align: start;
}
.b-carousel-ctrl_container {
  margin: 0 auto;
  max-width: 1920px;
  padding-left: 40px;
  padding-right: 40px;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  .b-carousel-ctrl_container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-carousel-ctrl_container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-carousel-ctrl_container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.b-carousel-ctrl {
  appearance: none;
  border: none;
  color: #282727;
  cursor: pointer;
  display: none;
  height: 24px;
  margin-top: -12px;
  position: absolute;
  text-align: center;
  top: 50%;
  transition: ease-out 150ms;
  transition-property: background-color, opacity;
  -webkit-user-select: none;
          user-select: none;
  width: 24px;
  z-index: 3;
}
@media not all and (pointer: coarse) {
  .b-carousel-ctrl:hover svg {
    transform: scale(1.2);
  }
}
.b-carousel-ctrl svg {
  transform: scale(1);
  transition: ease-out 150ms;
  transition-property: transform;
}
.b-carousel.m-inited .b-carousel-ctrl {
  display: block;
}
.b-carousel-ctrl[disabled] {
  color: #bbbbbf;
}
.b-carousel.m-no_scroll .b-carousel-ctrl {
  opacity: 0;
  z-index: -1;
}
@media not all and (pointer: coarse) {
  .b-carousel.m-no_scroll .b-carousel-ctrl:hover {
    color: inherit;
  }
}
.b-carousel-ctrl.m-prev {
  left: 0;
}
.b-carousel-ctrl.m-next {
  right: 0;
}
.b-carousel-pagination {
  bottom: 16px;
  display: none;
  justify-content: center;
  left: 10px;
  position: absolute;
  right: 10px;
  z-index: 3;
}
@media screen and (max-width: 767.9px) {
  .b-carousel-pagination {
    justify-content: flex-start;
  }
}
.b-carousel.m-inited .b-carousel-pagination {
  display: flex;
}
.b-carousel.m-no_scroll .b-carousel-pagination {
  display: none;
}
.b-carousel-page {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: block;
  height: 20px;
  line-height: 20px;
  position: relative;
  text-align: center;
  width: 20px;
}
.b-carousel-page::before {
  background-color: #282727;
  border: 1px solid #ffffff;
  border-radius: 8px;
  content: "";
  display: inline-block;
  height: 8px;
  left: 50%;
  margin-inline-start: -4px;
  margin-top: -4px;
  position: absolute;
  top: 50%;
  transition: ease-out 150ms;
  transition-property: width, height, margin;
  width: 8px;
}
.b-carousel-page.m-current::before {
  background-color: #001489;
  content: "";
  height: 14px;
  margin-inline-start: -7px;
  margin-top: -7px;
  width: 14px;
}

.b-carousel.m-hero {
  margin: 0 auto;
  max-width: 1920px;
}
.b-carousel.m-hero .b-carousel-ctrl.m-prev {
  left: 40px;
}
.b-carousel.m-hero .b-carousel-ctrl.m-next {
  right: 40px;
}
.b-carousel.m-hero .b-carousel-item {
  max-width: 100%;
  min-width: 100%;
}

.b-carousel.m-models {
  max-width: 100%;
  padding: 0 34px;
  width: 100%;
}
.b-carousel.m-models .b-carousel-item {
  max-width: 12.5%;
  min-width: 12.5%;
  padding: 0 40px;
}

.b-carousel.m-products,
.b-carousel.m-recently_viewed_products {
  margin: 40px 0;
  margin-inline: -40px;
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  .b-carousel.m-products,
  .b-carousel.m-recently_viewed_products {
    margin-inline: -40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-carousel.m-products,
  .b-carousel.m-recently_viewed_products {
    margin-inline: -32px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-carousel.m-products,
  .b-carousel.m-recently_viewed_products {
    margin-inline: -16px;
  }
}
@media screen and (min-width: 1440px) {
  .l-plp_grid-recommendations .b-carousel.m-products,
  .l-plp_grid-recommendations .b-carousel.m-recently_viewed_products {
    margin-inline-start: 0;
  }
}
.l-pdp-slots .b-carousel.m-products,
.l-pdp-slots .b-carousel.m-recently_viewed_products {
  margin: 30px 0;
  margin-inline: 0;
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-pdp-slots .b-carousel.m-products,
  .l-pdp-slots .b-carousel.m-recently_viewed_products {
    margin: 52px 0;
  }
}
@media screen and (min-width: 1180px) {
  .l-pdp-slots .b-carousel.m-products,
  .l-pdp-slots .b-carousel.m-recently_viewed_products {
    margin: 75px auto;
    max-width: 1920px;
  }
}
.l-order_confirmation .b-carousel.m-products,
.l-order_confirmation .b-carousel.m-recently_viewed_products {
  margin-bottom: 0;
}
.l-account-recommendations .b-carousel.m-products, .l-account-membership .b-carousel.m-products,
.l-account-recommendations .b-carousel.m-recently_viewed_products,
.l-account-membership .b-carousel.m-recently_viewed_products {
  margin-bottom: 0;
  margin-top: 0;
}
.b-cart_empty .b-carousel.m-products,
.b-cart_empty .b-carousel.m-recently_viewed_products {
  margin-inline: 0;
}
@media screen and (min-width: 1180px) {
  .b-cart_empty .b-carousel.m-products,
  .b-cart_empty .b-carousel.m-recently_viewed_products {
    margin-left: auto;
    margin-right: auto;
    max-width: 1920px;
  }
}
.b-drawer .b-carousel.m-products,
.b-drawer .b-carousel.m-recently_viewed_products {
  margin-bottom: 0;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .b-drawer .b-carousel.m-products,
  .b-drawer .b-carousel.m-recently_viewed_products {
    margin-inline: -32px;
  }
}
.b-drawer .b-carousel.m-products .b-product_tile,
.b-drawer .b-carousel.m-recently_viewed_products .b-product_tile {
  padding: 0 6px;
}
.b-drawer .b-carousel.m-products .b-product_tile-top,
.b-drawer .b-carousel.m-recently_viewed_products .b-product_tile-top {
  margin-inline: 0;
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-page.m-care_essentials .b-carousel.m-products,
  .l-page.m-care_essentials .b-carousel.m-recently_viewed_products {
    margin-top: 64px;
  }
}
.b-carousel.m-products .b-carousel-header,
.b-carousel.m-recently_viewed_products .b-carousel-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0 40px 32px;
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  .b-carousel.m-products .b-carousel-header,
  .b-carousel.m-recently_viewed_products .b-carousel-header {
    padding: 0 40px 32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-carousel.m-products .b-carousel-header,
  .b-carousel.m-recently_viewed_products .b-carousel-header {
    padding: 0 32px 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-carousel.m-products .b-carousel-header,
  .b-carousel.m-recently_viewed_products .b-carousel-header {
    padding: 0 16px 24px;
  }
}
.b-carousel-hardcoded .b-carousel.m-products .b-carousel-header,
.b-carousel-hardcoded .b-carousel.m-recently_viewed_products .b-carousel-header {
  padding: 0;
}
@media screen and (min-width: 1440px) {
  .l-plp_grid-recommendations .b-carousel.m-products .b-carousel-header,
  .l-plp_grid-recommendations .b-carousel.m-recently_viewed_products .b-carousel-header {
    padding-inline-start: 0;
  }
}
.b-drawer .b-carousel.m-products .b-carousel-header,
.b-drawer .b-carousel.m-recently_viewed_products .b-carousel-header {
  padding-bottom: 12px;
}
@media screen and (min-width: 1180px) {
  .b-drawer .b-carousel.m-products .b-carousel-header,
  .b-drawer .b-carousel.m-recently_viewed_products .b-carousel-header {
    padding: 0 32px 12px;
  }
}
.b-carousel.m-products .b-carousel-title,
.b-carousel.m-recently_viewed_products .b-carousel-title {
  margin: 0;
  word-break: normal;
}
.b-cart_empty .b-carousel.m-products .b-carousel-title, .l-pdp-slots .b-carousel.m-products .b-carousel-title,
.b-cart_empty .b-carousel.m-recently_viewed_products .b-carousel-title,
.l-pdp-slots .b-carousel.m-recently_viewed_products .b-carousel-title {
  font-family: var(--care-essentials-font, "DIN Next CYR", "Arial", "Helvetica", sans-serif);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.96;
}
@media screen and (max-width: 1179.9px) {
  .b-cart_empty .b-carousel.m-products .b-carousel-title, .l-pdp-slots .b-carousel.m-products .b-carousel-title,
  .b-cart_empty .b-carousel.m-recently_viewed_products .b-carousel-title,
  .l-pdp-slots .b-carousel.m-recently_viewed_products .b-carousel-title {
    font-size: 32px;
    line-height: 0.98;
  }
}
html[dir=rtl] .b-cart_empty .b-carousel.m-products .b-carousel-title, html[dir=rtl] .l-pdp-slots .b-carousel.m-products .b-carousel-title,
html[dir=rtl] .b-cart_empty .b-carousel.m-recently_viewed_products .b-carousel-title,
html[dir=rtl] .l-pdp-slots .b-carousel.m-recently_viewed_products .b-carousel-title {
  letter-spacing: 0;
}
.b-carousel.m-products .b-carousel-subtitle,
.b-carousel.m-recently_viewed_products .b-carousel-subtitle {
  font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
  letter-spacing: 0.07em;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  margin-top: 2px;
}
html[dir=rtl] .b-carousel.m-products .b-carousel-subtitle,
html[dir=rtl] .b-carousel.m-recently_viewed_products .b-carousel-subtitle {
  letter-spacing: 0;
}
.l-page.m-care_essentials .b-carousel.m-products .b-carousel-subtitle, .b-dialog.m-care_essentials-product .b-carousel.m-products .b-carousel-subtitle,
.l-page.m-care_essentials .b-carousel.m-recently_viewed_products .b-carousel-subtitle,
.b-dialog.m-care_essentials-product .b-carousel.m-recently_viewed_products .b-carousel-subtitle {
  letter-spacing: normal;
}
.b-error_page-recommendations .b-carousel.m-products .b-carousel-subtitle,
.b-error_page-recommendations .b-carousel.m-recently_viewed_products .b-carousel-subtitle {
  font-size: 20px;
}
.b-carousel.m-products .b-carousel-nav,
.b-carousel.m-recently_viewed_products .b-carousel-nav {
  display: flex;
  gap: 4px;
  margin-inline-start: 24px;
}
.b-carousel.m-products .b-carousel-ctrl,
.b-carousel.m-recently_viewed_products .b-carousel-ctrl {
  height: 36px;
  margin: 0;
  position: initial;
  width: 36px;
}
.b-carousel.m-products .b-carousel-item,
.b-carousel.m-recently_viewed_products .b-carousel-item {
  max-width: 22%;
  min-width: 22%;
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-carousel.m-products .b-carousel-item,
  .b-carousel.m-recently_viewed_products .b-carousel-item {
    max-width: 28%;
    min-width: 28%;
  }
}
@media screen and (max-width: 767.9px) {
  .b-carousel.m-products .b-carousel-item,
  .b-carousel.m-recently_viewed_products .b-carousel-item {
    max-width: 78%;
    min-width: 78%;
  }
}
.b-drawer .b-carousel.m-products .b-carousel-item,
.b-drawer .b-carousel.m-recently_viewed_products .b-carousel-item {
  max-width: 49.5%;
  min-width: 49.5%;
}
@media screen and (max-width: 767.9px) {
  .b-drawer .b-carousel.m-products .b-carousel-item,
  .b-drawer .b-carousel.m-recently_viewed_products .b-carousel-item {
    max-width: 51%;
    min-width: 51%;
  }
}
@media screen and (min-width: 768px) {
  .l-account-recommendations .b-carousel.m-products .b-carousel-item, .l-account-membership .b-carousel.m-products .b-carousel-item,
  .l-account-recommendations .b-carousel.m-recently_viewed_products .b-carousel-item,
  .l-account-membership .b-carousel.m-recently_viewed_products .b-carousel-item {
    max-width: 28%;
    min-width: 28%;
  }
}
.b-carousel.m-products .b-carousel-item:first-child,
.b-carousel.m-recently_viewed_products .b-carousel-item:first-child {
  max-width: calc(22% + 40px);
  min-width: calc(22% + 40px);
  padding-inline-start: 40px;
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  .b-carousel.m-products .b-carousel-item:first-child,
  .b-carousel.m-recently_viewed_products .b-carousel-item:first-child {
    max-width: calc(22% + 40px);
    min-width: calc(22% + 40px);
    padding-inline-start: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-carousel.m-products .b-carousel-item:first-child,
  .b-carousel.m-recently_viewed_products .b-carousel-item:first-child {
    max-width: calc(28% + 32px);
    min-width: calc(28% + 32px);
    padding-inline-start: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-carousel.m-products .b-carousel-item:first-child,
  .b-carousel.m-recently_viewed_products .b-carousel-item:first-child {
    max-width: calc(78% + 16px);
    min-width: calc(78% + 16px);
    padding-inline-start: 16px;
  }
}
@media screen and (min-width: 1180px) {
  .l-account-recommendations .b-carousel.m-products .b-carousel-item:first-child, .l-account-membership .b-carousel.m-products .b-carousel-item:first-child,
  .l-account-recommendations .b-carousel.m-recently_viewed_products .b-carousel-item:first-child,
  .l-account-membership .b-carousel.m-recently_viewed_products .b-carousel-item:first-child {
    max-width: calc(28% + 40px);
    min-width: calc(28% + 40px);
    padding-inline-start: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .l-plp_grid-recommendations .b-carousel.m-products .b-carousel-item:first-child,
  .l-plp_grid-recommendations .b-carousel.m-recently_viewed_products .b-carousel-item:first-child {
    max-width: 22%;
    min-width: 22%;
    padding-inline-start: 0;
  }
}
.b-drawer .b-carousel.m-products .b-carousel-item:first-child,
.b-drawer .b-carousel.m-recently_viewed_products .b-carousel-item:first-child {
  max-width: calc(49.5% + 26px);
  min-width: calc(49.5% + 26px);
  padding-inline-start: 26px;
}
@media screen and (max-width: 767.9px) {
  .b-drawer .b-carousel.m-products .b-carousel-item:first-child,
  .b-drawer .b-carousel.m-recently_viewed_products .b-carousel-item:first-child {
    max-width: calc(51% + 10px);
    min-width: calc(51% + 10px);
    padding-inline-start: 10px;
  }
}
.b-carousel.m-products .b-carousel-item:last-child,
.b-carousel.m-recently_viewed_products .b-carousel-item:last-child {
  max-width: calc(22% + 40px);
  min-width: calc(22% + 40px);
  padding-inline-end: 40px;
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  .b-carousel.m-products .b-carousel-item:last-child,
  .b-carousel.m-recently_viewed_products .b-carousel-item:last-child {
    max-width: calc(22% + 40px);
    min-width: calc(22% + 40px);
    padding-inline-end: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-carousel.m-products .b-carousel-item:last-child,
  .b-carousel.m-recently_viewed_products .b-carousel-item:last-child {
    max-width: calc(28% + 32px);
    min-width: calc(28% + 32px);
    padding-inline-end: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-carousel.m-products .b-carousel-item:last-child,
  .b-carousel.m-recently_viewed_products .b-carousel-item:last-child {
    max-width: calc(78% + 16px);
    min-width: calc(78% + 16px);
    padding-inline-end: 16px;
  }
}
.b-drawer .b-carousel.m-products .b-carousel-item:last-child,
.b-drawer .b-carousel.m-recently_viewed_products .b-carousel-item:last-child {
  max-width: calc(49.5% + 26px);
  min-width: calc(49.5% + 26px);
  padding-inline-end: 10px;
}
@media screen and (max-width: 767.9px) {
  .b-drawer .b-carousel.m-products .b-carousel-item:last-child,
  .b-drawer .b-carousel.m-recently_viewed_products .b-carousel-item:last-child {
    max-width: calc(51% + 10px);
    min-width: calc(51% + 10px);
    padding-inline-end: 10px;
  }
}
@media screen and (min-width: 1180px) {
  .l-account-recommendations .b-carousel.m-products .b-carousel-item:last-child, .l-account-membership .b-carousel.m-products .b-carousel-item:last-child,
  .l-account-recommendations .b-carousel.m-recently_viewed_products .b-carousel-item:last-child,
  .l-account-membership .b-carousel.m-recently_viewed_products .b-carousel-item:last-child {
    max-width: calc(28% + 40px);
    min-width: calc(28% + 40px);
    padding-inline-end: 40px;
  }
}
.b-carousel.m-products .b-carousel-item + .b-carousel-item,
.b-carousel.m-recently_viewed_products .b-carousel-item + .b-carousel-item {
  margin-inline-start: 8px;
}
.m-1774 .b-carousel.m-products .b-carousel-item + .b-carousel-item,
.m-1774 .b-carousel.m-recently_viewed_products .b-carousel-item + .b-carousel-item {
  margin-inline-start: 4px;
}
.b-drawer .b-carousel.m-products .b-carousel-item + .b-carousel-item,
.b-drawer .b-carousel.m-recently_viewed_products .b-carousel-item + .b-carousel-item {
  margin-inline-start: 0;
}

.b-carousel.b-carousel-universal .b-carousel-item + .b-carousel-item {
  margin-inline-start: 0;
  padding-inline-start: 8px;
}
.l-pdp .b-carousel.b-carousel-universal, .l-section.m-full_bleed .b-carousel.b-carousel-universal, .b-carousel.b-carousel-universal.b-carousel-universal_plp, .l-hp .b-carousel.b-carousel-universal:not(.l-section .b-carousel.b-carousel-universal) {
  margin: 0 auto;
  margin-bottom: 64px;
  margin-top: 64px;
  max-width: 1920px;
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-pdp .b-carousel.b-carousel-universal, .l-section.m-full_bleed .b-carousel.b-carousel-universal, .b-carousel.b-carousel-universal.b-carousel-universal_plp, .l-hp .b-carousel.b-carousel-universal:not(.l-section .b-carousel.b-carousel-universal) {
    margin-bottom: 44px;
    margin-top: 44px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-pdp .b-carousel.b-carousel-universal, .l-section.m-full_bleed .b-carousel.b-carousel-universal, .b-carousel.b-carousel-universal.b-carousel-universal_plp, .l-hp .b-carousel.b-carousel-universal:not(.l-section .b-carousel.b-carousel-universal) {
    margin-bottom: 12px;
    margin-inline: 0;
    margin-top: 12px;
    padding-inline: 0;
  }
}

.b-carousel.b-carousel-hardcoded .b-carousel-title {
  font-size: 20px;
}
.b-carousel.b-carousel-hardcoded .b-product_tile-shortname {
  margin-bottom: 2px;
}

.b-hero_carousel {
  margin: 0 auto;
  max-width: 1920px;
  overflow: hidden;
  position: relative;
}
.b-hero_carousel-track {
  display: flex;
  overflow: hidden;
}
.b-hero_carousel-track.m-grabbing {
  cursor: grab;
  -webkit-user-select: none;
          user-select: none;
}
.b-hero_carousel-track.m-grabbing::before,
.b-hero_carousel-track .b-promo_box-picture::before {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
}
.b-hero_carousel-item {
  height: 100%;
  left: 0;
  max-width: 100%;
  min-width: 100%;
  top: 0;
  width: 100%;
  will-change: transform;
  z-index: 1;
}
.b-hero_carousel-item:not(:first-child) {
  visibility: hidden;
}
.b-hero_carousel.m-initialized .b-hero_carousel-item {
  overflow: hidden;
  position: absolute;
  transition: cubic-bezier(0.56, 0.03, 0.47, 0.98) 0.8s;
  transition-property: transform, visibility;
  visibility: hidden;
}
.b-hero_carousel.m-initialized .b-hero_carousel-item.m-prev {
  transform: translateX(-100%);
}
.b-hero_carousel.m-initialized .b-hero_carousel-item.m-next {
  transform: translateX(100%);
}
.b-hero_carousel.m-initialized .b-hero_carousel-item.m-current {
  position: static;
  transform: translateX(0);
  visibility: visible;
}
.b-hero_carousel-ctrl {
  appearance: none;
  border: none;
  color: #282727;
  cursor: pointer;
  display: none;
  height: 24px;
  margin-top: -12px;
  position: absolute;
  text-align: center;
  top: 50%;
  transition: ease-out 150ms;
  transition-property: background-color, opacity;
  -webkit-user-select: none;
          user-select: none;
  width: 24px;
  z-index: 3;
}
@media not all and (pointer: coarse) {
  .b-hero_carousel-ctrl:hover svg {
    transform: scale(1.2);
  }
}
.b-hero_carousel-ctrl svg {
  transform: scale(1);
  transition: ease-out 150ms;
  transition-property: transform;
}
.b-hero_carousel.m-initialized .b-hero_carousel-ctrl {
  display: block;
}
.b-hero_carousel-ctrl.m-prev {
  left: 40px;
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  .b-hero_carousel-ctrl.m-prev {
    left: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-hero_carousel-ctrl.m-prev {
    left: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-hero_carousel-ctrl.m-prev {
    left: 16px;
  }
}
html[dir=rtl] .b-hero_carousel-ctrl.m-prev {
  left: auto;
  right: 40px;
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  html[dir=rtl] .b-hero_carousel-ctrl.m-prev {
    right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  html[dir=rtl] .b-hero_carousel-ctrl.m-prev {
    right: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  html[dir=rtl] .b-hero_carousel-ctrl.m-prev {
    right: 16px;
  }
}
.b-hero_carousel-ctrl.m-next {
  right: 40px;
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  .b-hero_carousel-ctrl.m-next {
    right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-hero_carousel-ctrl.m-next {
    right: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-hero_carousel-ctrl.m-next {
    right: 16px;
  }
}
html[dir=rtl] .b-hero_carousel-ctrl.m-next {
  left: 40px;
  right: auto;
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  html[dir=rtl] .b-hero_carousel-ctrl.m-next {
    left: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  html[dir=rtl] .b-hero_carousel-ctrl.m-next {
    left: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  html[dir=rtl] .b-hero_carousel-ctrl.m-next {
    left: 16px;
  }
}
.b-hero_carousel-pagination {
  bottom: 8px;
  display: none;
  justify-content: center;
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%);
  transition: opacity ease-out 150ms;
  visibility: hidden;
  z-index: 3;
}
@media screen and (max-width: 767.9px) {
  .b-hero_carousel-pagination {
    left: 16px;
    transform: none;
  }
}
.b-hero_carousel-pagination.m-initialized {
  opacity: 1;
  visibility: visible;
}
.b-hero_carousel-pagination_content {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 27px;
  display: flex;
  padding: 8px;
}
.b-hero_carousel-pagination_dots {
  display: flex;
  margin: 0 4px 0 0;
}
.b-hero_carousel-pagination_dot {
  border: none;
  color: transparent;
  cursor: pointer;
  display: block;
  fill: #3e3e3e;
  height: 34px;
  margin-inline-end: 6px;
  padding: 0;
  position: relative;
  width: 34px;
}
@media not all and (pointer: coarse) {
  .b-hero_carousel-pagination_dot:hover {
    fill: #373737;
  }
}
.b-hero_carousel-pagination_dot.m-current {
  fill: #001489;
}
.b-hero_carousel-pagination_dot:last-child {
  margin-inline-end: 0;
}
.b-hero_carousel-pagination_dot[aria-disabled=true] {
  cursor: initial;
}
.b-hero_carousel-pagination_svg_dot_outline {
  stroke: white;
  stroke-width: 5;
  transition: 0.4s ease;
  transition-property: stroke-width;
}
@media not all and (pointer: coarse) {
  .b-hero_carousel-pagination_dot:not(.m-current):hover .b-hero_carousel-pagination_svg_dot_outline {
    stroke-width: 20;
  }
}
.b-hero_carousel-autoplay {
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  margin-inline-end: 4px;
  padding: 0;
}
.b-hero_carousel-autoplay.m-initialized {
  display: block;
}
.b-hero_carousel-autoplay.m-animated {
  animation: hero-carousel-progress linear;
}
.b-hero_carousel-autoplay_svg {
  fill: transparent;
  stroke-linecap: round;
  stroke-width: 1;
}
.b-hero_carousel-autoplay_progress {
  stroke: white;
  stroke-width: 3;
}
.b-hero_carousel-autoplay.m-animated .b-hero_carousel-autoplay_progress {
  stroke: #001489;
}
.b-hero_carousel-autoplay_progress_back {
  stroke: white;
  stroke-width: 3;
}
.b-hero_carousel-autoplay_play, .b-hero_carousel-autoplay_pause {
  display: block;
  fill: #001489;
  opacity: 1;
  stroke: #001489;
  transition: opacity ease 0.2s;
}
.b-hero_carousel-autoplay[aria-pressed=false] .b-hero_carousel-autoplay_play {
  opacity: 0;
}
.b-hero_carousel-autoplay_pause {
  stroke-width: 3;
}
.b-hero_carousel-autoplay[aria-pressed=true] .b-hero_carousel-autoplay_pause {
  opacity: 0;
}

.b-dialog {
  visibility: hidden;
}

/*md

# b-breadcrumbs

Breadcrumbs navigation is represented as a list of links.

The last item of breadcrumbs list (e.g. "Level 4" link) is hidden. It links to the current page and is only needed for accessibility purposes.

```html_example
<nav class="b-breadcrumbs" aria-label="Breadcrumbs">
	<ul class="b-breadcrumbs-list">
		<li class="b-breadcrumbs-item">
			<a class="b-breadcrumbs-link" href="">Level 1</a>
		</li>
		<li class="b-breadcrumbs-item">
			<svg class="b-breadcrumbs-icon" aria-hidden="true" width="9" height="9" viewBox="0 0 10 6" focusable="false">
				<path fill="currentColor" d="m 1.9976617,2.9971396 c 0,-0.256 0.098,-0.512 0.293,-0.707 l 4,-4 c 0.39,-0.39 1.023,-0.39 1.414,0 0.39,0.391 0.39,1.02300005 0,1.41400005 l -3.305,3.30499995 3.3230429,3.293 c 0.383,0.4 0.372,1.03 -0.025,1.414 -0.397,0.384 -1.031,0.373 -1.414,-0.024 l -4.0050429,-4 c -0.188,-0.195 -0.281,-0.445 -0.281,-0.695"></path>
			</svg>
			<a class="b-breadcrumbs-link" href="">Level 2</a>
		</li>
		<li class="b-breadcrumbs-item">
			<svg class="b-breadcrumbs-icon" aria-hidden="true" width="9" height="9" viewBox="0 0 10 6" focusable="false">
				<path fill="currentColor" d="m 1.9976617,2.9971396 c 0,-0.256 0.098,-0.512 0.293,-0.707 l 4,-4 c 0.39,-0.39 1.023,-0.39 1.414,0 0.39,0.391 0.39,1.02300005 0,1.41400005 l -3.305,3.30499995 3.3230429,3.293 c 0.383,0.4 0.372,1.03 -0.025,1.414 -0.397,0.384 -1.031,0.373 -1.414,-0.024 l -4.0050429,-4 c -0.188,-0.195 -0.281,-0.445 -0.281,-0.695"></path>
			</svg>
			<a class="b-breadcrumbs-link" href="">Level 3</a>
		</li>
		<li class="b-breadcrumbs-item">
			<svg class="b-breadcrumbs-icon" aria-hidden="true" width="9" height="9" viewBox="0 0 10 6" focusable="false">
				<path fill="currentColor" d="m 1.9976617,2.9971396 c 0,-0.256 0.098,-0.512 0.293,-0.707 l 4,-4 c 0.39,-0.39 1.023,-0.39 1.414,0 0.39,0.391 0.39,1.02300005 0,1.41400005 l -3.305,3.30499995 3.3230429,3.293 c 0.383,0.4 0.372,1.03 -0.025,1.414 -0.397,0.384 -1.031,0.373 -1.414,-0.024 l -4.0050429,-4 c -0.188,-0.195 -0.281,-0.445 -0.281,-0.695"></path>
			</svg>
			<a class="b-breadcrumbs-link" href="">Level 4</a>
		</li>
	</ul>
</nav>
```
*/
.b-breadcrumbs {
  color: #282727;
  overflow-x: auto;
  scrollbar-width: none;
}
.b-breadcrumbs::-webkit-scrollbar {
  display: none;
}
.b-breadcrumbs-list {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
}
.b-breadcrumbs-link {
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  text-decoration: none;
  font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
  letter-spacing: 0.07em;
  line-height: 1.36;
  font-weight: 400;
  font-size: 14px;
  position: relative;
  color: #60606a;
  display: inline;
  white-space: nowrap;
}
.b-breadcrumbs-link.m-disabled, .b-breadcrumbs-link:disabled, .b-breadcrumbs-link[disabled] {
  color: #898992;
  pointer-events: none;
}
html[dir=rtl] .b-breadcrumbs-link {
  letter-spacing: 0;
}
.l-page.m-care_essentials .b-breadcrumbs-link, .b-dialog.m-care_essentials-product .b-breadcrumbs-link {
  letter-spacing: normal;
}
.b-breadcrumbs-link.m-disabled::after, .b-breadcrumbs-link:disabled::after, .b-breadcrumbs-link[disabled]::after {
  background: #898992;
}
.b-breadcrumbs-link::after {
  background: currentcolor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  transition: transform ease-out 150ms;
  width: 100%;
  transform: scaleX(0);
}
.b-breadcrumbs-link:hover::after, .b-breadcrumbs-link:active::after {
  transform: scaleX(1);
}
.b-breadcrumbs-last {
  font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
  letter-spacing: 0.07em;
  line-height: 1.36;
  font-weight: 400;
  font-size: 14px;
}
html[dir=rtl] .b-breadcrumbs-last {
  letter-spacing: 0;
}
.l-page.m-care_essentials .b-breadcrumbs-last, .b-dialog.m-care_essentials-product .b-breadcrumbs-last {
  letter-spacing: normal;
}
.b-breadcrumbs-item {
  display: inline;
  margin-inline-end: 12px;
  white-space: nowrap;
}
.b-breadcrumbs-item:last-child .b-breadcrumbs-link {
  color: #282727;
  cursor: auto;
}
.b-breadcrumbs-item:last-child .b-breadcrumbs-link::after {
  display: none;
}
.b-breadcrumbs-icon {
  font-size: 0;
  margin-inline-end: 16px;
  position: relative;
}
.b-breadcrumbs-icon::after {
  background-color: #282727;
  content: "";
  display: inline-block;
  height: 9px;
  width: 1px;
}

.b-nav_aux {
  margin: 0 auto;
  max-width: 1920px;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 24px;
  margin-top: 40px;
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  .b-nav_aux {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-nav_aux {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-nav_aux {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 1179.9px) {
  .b-nav_aux {
    margin-bottom: 24px;
    margin-top: 20px;
  }
}
.b-nav_aux.m-cart {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .b-nav_aux.m-cart {
    margin-bottom: 16px;
    margin-top: 22px;
  }
}
@media screen and (min-width: 1180px) {
  .b-nav_aux.m-cart {
    margin-bottom: 20px;
    margin-top: 38px;
  }
}
.b-nav_aux.m-pdp {
  max-width: 1360px;
}
@media screen and (min-width: 768px) {
  .b-nav_aux.m-pdp {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-nav_aux.m-pdp {
    border-bottom: 1px solid #d2d1d4;
    border-top: 1px solid #d2d1d4;
    margin: 0;
    padding-bottom: 21px;
    padding-top: 21px;
  }
}
.b-nav_aux.m-pdp .b-breadcrumbs {
  overflow: hidden;
}
@media screen and (min-width: 1440px) {
  .b-nav_aux.m-pdp .b-breadcrumbs {
    margin-inline: -40px;
  }
}
.b-nav_aux.m-pdp .b-breadcrumbs-list {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
}
.b-nav_aux.m-pdp .b-breadcrumbs-item {
  display: inline;
  margin-inline-end: 4px;
}
.b-nav_aux.m-pdp .b-breadcrumbs-link {
  display: inline;
  text-decoration: none;
}
.b-nav_aux.m-pdp .b-breadcrumbs-icon {
  color: transparent;
  font-size: inherit;
  margin-inline-end: 10px;
}
.b-nav_aux.m-account {
  margin-top: 24px;
}
@media screen and (min-width: 1180px) {
  .b-nav_aux.m-account {
    display: none;
  }
}
.b-nav_aux.m-account .b-breadcrumbs-icon {
  margin-inline-end: 8px;
}
.b-nav_aux.m-storelocator {
  max-width: 1210px;
}
.b-nav_aux.m-store_list {
  max-width: 900px;
}
.b-nav_aux.m-faq_section {
  margin-bottom: 24px;
}
@media screen and (min-width: 1180px) {
  .b-nav_aux.m-faq_section {
    margin-left: 364px;
    margin-top: 32px;
  }
}
.b-nav_aux.m-content_page {
  margin-bottom: 44px;
  margin-top: 24px;
}
@media screen and (min-width: 1180px) {
  .b-nav_aux.m-content_page {
    margin-top: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-nav_aux.m-content_page .b-breadcrumbs-item:last-child {
    align-items: center;
    display: flex;
    margin-inline-end: 0;
    min-width: 0;
  }
  .b-nav_aux.m-content_page .b-breadcrumbs-item:last-child .b-breadcrumbs-link {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/*md

# b-promo_line

Promo-line is classic text banner. It placed right under the header and stretched to full viewport width.

It consist from several elements, but has only one to place text into it - `b-promo_line-inner`.

It could consist inline images, rich formatting text (`strong`, `em`) or links.

## Example

```html_example
<div class="b-promo_line m-header">
	<p class="b-promo_line-inner">
		Get 20% off everything with code: <strong>ILOVE20</strong> <a href="$url('Product-Show', 'pid', 'product-1')$">Buy now</a>
	</p>
</div>
```

*/
.b-promo_line {
  font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
  letter-spacing: 0.07em;
  line-height: 1.36;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  padding: 9.5px 0;
  text-align: center;
}
html[dir=rtl] .b-promo_line {
  letter-spacing: 0;
}
.l-page.m-care_essentials .b-promo_line, .b-dialog.m-care_essentials-product .b-promo_line {
  letter-spacing: normal;
}
@media screen and (max-width: 767.9px) {
  .b-promo_line {
    padding: 12px 0;
  }
}
.b-promo_line.m-search_results {
  background-color: rgba(235, 246, 235, 0.03);
  color: #008a00;
}
@media screen and (max-width: 767.9px) {
  .b-promo_line.m-search_results {
    display: none;
  }
}
@media screen and (min-width: 1180px) {
  @media not all and (pointer: coarse) {
    .m-has_dialog:not(.m-mac_os) .b-promo_line.m-header {
      overflow-y: scroll;
    }
  }
  .m-has_dialog:not(.m-mac_os) .b-promo_line.m-header::-webkit-scrollbar {
    background: transparent;
  }
}
@media screen and (max-width: 767.9px) {
  .b-promo_line-inner {
    margin: 0 auto;
    max-width: 73%;
  }
}
@media screen and (min-width: 768px) {
  .b-promo_line-inner {
    line-height: 1.5;
  }
}
.m-care_essentials .b-promo_line-inner {
  letter-spacing: normal;
  font-weight: 300;
}
.b-promo_line a {
  position: relative;
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  text-decoration: none;
  font-weight: 700;
}
.b-promo_line a.m-disabled::after, .b-promo_line a:disabled::after, .b-promo_line a[disabled]::after {
  background: #898992;
}
.b-promo_line a::after {
  background: currentcolor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  transition: transform ease-out 150ms;
  width: 100%;
  transform: scaleX(1);
}
.b-promo_line a:hover::after, .b-promo_line a:active::after {
  transform: scaleX(0);
}
.b-promo_line a.m-disabled, .b-promo_line a:disabled, .b-promo_line a[disabled] {
  color: #898992;
  pointer-events: none;
}
@media screen and (max-width: 767.9px) {
  .b-promo_line a {
    text-decoration: underline;
  }
  .b-promo_line a::after {
    display: none;
  }
}
.m-care_essentials .b-promo_line a {
  letter-spacing: normal;
  font-weight: 400;
}

/*md

# b-promo_tile

This is kind of small banners that used in Page designer as ImageTiles

This is special type of banners that designed to be used in different layout arrangement.

## With caption

```html_example
<figure class="b-promo_tile" style="width: 300px">
	<picture class="b-promo_tile-picture">
		<img
			loading="lazy"
			src="../images/guide/examples/banner-3x4-1.jpg?$staticlink$"
			alt="Just dummy image."
			width="336"
			height="420"
		/>
	</picture>
	<figcaption class="b-promo_tile-caption">
		<p class="b-promo_tile-title">
			New in
		</p>
	</figcaption>
</figure>
```

## Without caption

```html_example
<div class="b-promo_tile" style="width: 300px">
	<picture class="b-promo_tile-picture">
		<img
			loading="lazy"
			src="../images/guide/examples/banner-3x4-4.jpg?$staticlink$"
			alt="Just dummy image."
			width="336"
			height="420"
		/>
	</picture>
</div>
```

*/
.b-promo_tile {
  display: grid;
  height: 100%;
}
.b-promo_tile-picture {
  display: block;
  overflow: hidden;
  padding-bottom: 133%;
  position: relative;
  width: 100%;
  grid-column: 1/2;
  grid-row: 1/2;
}
.b-promo_tile-picture img {
  border: none;
  bottom: 0;
  color: #ebebea;
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.m-returns .b-promo_tile-picture {
  padding-bottom: 100%;
}
.b-promo_tile-caption {
  align-items: flex-start;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  grid-column: 1/2;
  grid-row: 1/2;
  justify-content: flex-end;
  padding: 24px;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .b-promo_tile-caption {
    padding-bottom: 36px;
    padding-top: 36px;
  }
}
.b-promo_tile.m-caption_below .b-promo_tile-caption {
  grid-row: 2/2;
  padding-bottom: 20px;
  padding-top: 20px;
}
.b-promo_tile-caption .b-button {
  margin-top: 20px;
}
.m-care_essentials .b-promo_tile-caption .b-button {
  letter-spacing: 0.03em;
  margin-top: 16px;
}
.b-promo_tile-title {
  font-family: var(--care-essentials-font, "DIN Next CYR", "Arial", "Helvetica", sans-serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.98;
}
@media screen and (max-width: 1179.9px) {
  .b-promo_tile-title {
    font-size: 24px;
    line-height: 1.02;
  }
}
html[dir=rtl] .b-promo_tile-title {
  letter-spacing: 0;
}
.m-care_essentials .b-promo_tile-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (max-width: 1179.9px) {
  .m-care_essentials .b-promo_tile-title {
    font-size: 24px;
    line-height: 1.24;
  }
}
.m-care_essentials .b-promo_tile-subtitle {
  letter-spacing: normal;
  font-weight: 300;
  margin-top: 8px;
}

/*md

# b-promo_tiles_grid

This component designed to be starting point for developing different kind of
symmetrical and asymmetrical banner layouts.

It used in Page Designer as tilesGrid. See tilesGrid.isml and imageTile.isml for details.

## Basic component implementation with caption and item link

```html_example
<section class="b-promo_tiles_grid">
	<h2 class="b-promo_tiles_grid-title">
		Top Categories
	</h2>
	<div class="b-promo_tiles_grid-content">
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-1')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-1.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							New in
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-2')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-2.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							Women
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-3')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-3.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							Inspiration
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-4')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-4.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							Inspiration
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
	</div>
</section>
```

## Basic component implementation without caption and with item link

```html_example
<section class="b-promo_tiles_grid">
	<h2 class="b-promo_tiles_grid-title">
		Top Categories
	</h2>
	<div class="b-promo_tiles_grid-content">
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-1')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-1.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-2')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-2.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-3')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-3.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-4')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-4.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
				</figure>
			</a>
		</div>
	</div>
</section>
```

## Basic component implementation without caption and without item link

```html_example
<section class="b-promo_tiles_grid">
	<h2 class="b-promo_tiles_grid-title">
		Top Categories
	</h2>
	<div class="b-promo_tiles_grid-content">
		<div class="b-promo_tiles_grid-item">
			<figure class="b-promo_tile">
				<picture class="b-promo_tile-picture">
					<img
						loading="lazy"
						src="../images/guide/examples/banner-3x4-1.jpg?$staticlink$"
						alt="Just dummy image."
						width="336"
						height="420"
					/>
				</picture>
			</figure>
		</div>
		<div class="b-promo_tiles_grid-item">
			<figure class="b-promo_tile">
				<picture class="b-promo_tile-picture">
					<img
						loading="lazy"
						src="../images/guide/examples/banner-3x4-2.jpg?$staticlink$"
						alt="Just dummy image."
						width="336"
						height="420"
					/>
				</picture>
			</figure>
		</div>
		<div class="b-promo_tiles_grid-item">
			<figure class="b-promo_tile">
				<picture class="b-promo_tile-picture">
					<img
						loading="lazy"
						src="../images/guide/examples/banner-3x4-3.jpg?$staticlink$"
						alt="Just dummy image."
						width="336"
						height="420"
					/>
				</picture>
			</figure>
		</div>
		<div class="b-promo_tiles_grid-item">
			<figure class="b-promo_tile">
				<picture class="b-promo_tile-picture">
					<img
						loading="lazy"
						src="../images/guide/examples/banner-3x4-4.jpg?$staticlink$"
						alt="Just dummy image."
						width="336"
						height="420"
					/>
				</picture>
			</figure>
		</div>
	</div>
</section>
```

## Layouts

In Launch 360, as example, we provide with 5 basic layouts,
but it could be easily extended to different combinations and any client needs.

### lg-4 md-4 sm-2 - 4 on desktop, 4 on tablet, 2 on mobile

```html_example
<section class="b-promo_tiles_grid m-lg_4 m-md_4 m-sm_2">
	<h2 class="b-promo_tiles_grid-title">
		Top Categories
	</h2>
	<div class="b-promo_tiles_grid-content">
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-1')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-1.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							New in
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-2')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-2.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							Women
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-3')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-3.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							Inspiration
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-4')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-4.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
				</figure>
			</a>
		</div>
	</div>
</section>
```

### m-lg_4 m-md_4 m-sm_1 - 4 on desktop, 4 on tablet, 1 on mobile

```html_example
<section class="b-promo_tiles_grid m-lg_4 m-md_4 m-sm_1">
	<h2 class="b-promo_tiles_grid-title">
		Top Categories
	</h2>
	<div class="b-promo_tiles_grid-content">
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-1')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-1.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							New in
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-2')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-2.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							Women
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-3')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-3.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							Inspiration
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-4')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-4.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
				</figure>
			</a>
		</div>
	</div>
</section>
```

### m-lg_3 m-md_3 m-sm_2-1 - 3 on desktop, 3 on tablet, 2 on mobile

```html_example
<section class="b-promo_tiles_grid m-lg_3 m-md_3 m-sm_2-1">
	<h2 class="b-promo_tiles_grid-title">
		Top Categories
	</h2>
	<div class="b-promo_tiles_grid-content">
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-1')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-1.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							New in
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-2')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-2.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							Women
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-4')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-4.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
				</figure>
			</a>
		</div>
	</div>
</section>
```

### m-lg_3 m-md_3 m-sm_1 - 3 on desktop, 3 on tablet, 1 on mobile

```html_example
<section class="b-promo_tiles_grid m-lg_3 m-md_3 m-sm_1">
	<h2 class="b-promo_tiles_grid-title">
		Top Categories
	</h2>
	<div class="b-promo_tiles_grid-content">
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-1')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-1.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							New in
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-2')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-2.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							Women
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-3')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-3.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							Inspiration
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
	</div>
</section>
```

### m-lg_2 m-md_2 m-sm_2 - 2 on desktop, 2 on tablet, 2 on mobile

```html_example
<section class="b-promo_tiles_grid m-lg_2 m-md_2 m-sm_2">
	<h2 class="b-promo_tiles_grid-title">
		Top Categories
	</h2>
	<div class="b-promo_tiles_grid-content">
		<div class="b-promo_tiles_grid-item">
			<figure class="b-promo_tile">
				<picture class="b-promo_tile-picture">
					<img
						loading="lazy"
						src="../images/guide/examples/banner-3x4-3.jpg?$staticlink$"
						alt="Just dummy image."
						width="336"
						height="420"
					/>
				</picture>
			</figure>
		</div>
		<div class="b-promo_tiles_grid-item">
			<figure class="b-promo_tile">
				<picture class="b-promo_tile-picture">
					<img
						loading="lazy"
						src="../images/guide/examples/banner-3x4-4.jpg?$staticlink$"
						alt="Just dummy image."
						width="336"
						height="420"
					/>
				</picture>
			</figure>
		</div>
	</div>
</section>
```

### m-lg_2 m-md_2 m-sm_1 - 2 on desktop, 2 on tablet, 1 on mobile

```html_example
<section class="b-promo_tiles_grid m-lg_2 m-md_2 m-sm_1">
	<h2 class="b-promo_tiles_grid-title">
		Top Categories
	</h2>
	<div class="b-promo_tiles_grid-content">
		<div class="b-promo_tiles_grid-item">
			<figure class="b-promo_tile">
				<picture class="b-promo_tile-picture">
					<img
						loading="lazy"
						src="../images/guide/examples/banner-3x4-3.jpg?$staticlink$"
						alt="Just dummy image."
						width="336"
						height="420"
					/>
				</picture>
			</figure>
		</div>
		<div class="b-promo_tiles_grid-item">
			<figure class="b-promo_tile">
				<picture class="b-promo_tile-picture">
					<img
						loading="lazy"
						src="../images/guide/examples/banner-3x4-4.jpg?$staticlink$"
						alt="Just dummy image."
						width="336"
						height="420"
					/>
				</picture>
			</figure>
		</div>
	</div>
</section>
```

## Amount for image tiles

Technically it holds unlimited amount of imageTiles (b-promo_tile).

```html_example
<section class="b-promo_tiles_grid m-lg_3 m-md_3 m-sm_2-1">
	<h2 class="b-promo_tiles_grid-title">
		Top Categories
	</h2>
	<div class="b-promo_tiles_grid-content">
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-1')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-1.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							New in
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-2')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-2.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							Women
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-3')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-3.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							Inspiration
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-4')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-4.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-1')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-1.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							New in
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-2')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-2.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							Women
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-3')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-3.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							Inspiration
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-4')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-4.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
				</figure>
			</a>
		</div>
		<div class="b-promo_tiles_grid-item">
			<a
				class="b-promo_tiles_grid-item_link"
				href="$url('Search-Show', 'cgid', 'subcategory-2-3')$"
			>
				<figure class="b-promo_tile">
					<picture class="b-promo_tile-picture">
						<img
							loading="lazy"
							src="../images/guide/examples/banner-3x4-3.jpg?$staticlink$"
							alt="Just dummy image."
							width="336"
							height="420"
						/>
					</picture>
					<figcaption class="b-promo_tile-caption">
						<p class="b-promo_tile-title">
							Inspiration
						</p>
					</figcaption>
				</figure>
			</a>
		</div>
	</div>
</section>
```

*/
.b-promo_tiles_grid-title {
  font-family: var(--care-essentials-font, "DIN Next CYR", "Arial", "Helvetica", sans-serif);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.92;
  margin: 96px 0 40px;
  text-align: center;
}
@media screen and (max-width: 1179.9px) {
  .b-promo_tiles_grid-title {
    font-size: 40px;
    line-height: 0.96;
  }
}
html[dir=rtl] .b-promo_tiles_grid-title {
  letter-spacing: 0;
}
@media screen and (max-width: 767.9px) {
  .b-promo_tiles_grid-title {
    margin-top: 48px;
  }
}
.b-promo_tiles_grid-content {
  display: grid;
}
@media screen and (min-width: 1440px) {
  .b-promo_tiles_grid-content {
    grid-gap: 20px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  .b-promo_tiles_grid-content {
    grid-gap: 20px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-promo_tiles_grid-content {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (max-width: 767.9px) {
  .b-promo_tiles_grid-content {
    grid-gap: 10px;
    grid-template-columns: [grid-start] repeat(6, 1fr) [grid-end];
  }
}
.b-promo_tiles_grid.m-returns .b-promo_tiles_grid-content {
  grid-gap: 34px 8px;
}
.b-promo_tiles_grid-item {
  display: block;
  grid-column: span 3;
}
@media screen and (min-width: 768px) {
  .b-promo_tiles_grid.m-lg_2 .b-promo_tiles_grid-item {
    grid-column: span 6;
  }
  .b-promo_tiles_grid.m-lg_3 .b-promo_tiles_grid-item {
    grid-column: span 4;
  }
}
@media screen and (max-width: 767.9px) {
  .b-promo_tiles_grid-item {
    grid-column: span 3;
  }
  .b-promo_tiles_grid.m-sm_1 .b-promo_tiles_grid-item {
    grid-column: span 6;
  }
  .b-promo_tiles_grid.m-sm_2_1 .b-promo_tiles_grid-item:nth-child(3n) {
    grid-column: span 6;
  }
}
.b-promo_tiles_grid-item_link {
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  text-decoration: none;
  font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
  letter-spacing: 0.07em;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  display: block;
  overflow: hidden;
}
.b-promo_tiles_grid-item_link.m-disabled, .b-promo_tiles_grid-item_link:disabled, .b-promo_tiles_grid-item_link[disabled] {
  color: #898992;
  pointer-events: none;
}
html[dir=rtl] .b-promo_tiles_grid-item_link {
  letter-spacing: 0;
}
.l-page.m-care_essentials .b-promo_tiles_grid-item_link, .b-dialog.m-care_essentials-product .b-promo_tiles_grid-item_link {
  letter-spacing: normal;
}
.b-promo_tiles_grid.m-returns .b-promo_tiles_grid-item_link {
  border-radius: 0;
  margin-bottom: 16px;
}

.b-promo_tiles_grid.m-custom_menu {
  width: 100%;
}
.b-promo_tiles_grid.m-custom_menu .b-promo_tiles_grid-content {
  display: flex;
  grid-gap: 16px;
  justify-content: center;
}
.b-promo_tiles_grid.m-custom_menu .b-promo_tiles_grid-item {
  max-width: 25%;
  width: 25%;
}

.b-header_actions {
  color: #282727;
  display: flex;
}
@media screen and (max-width: 1439.9px) {
  .b-header_actions {
    align-items: center;
  }
}
.b-header_actions-item {
  margin-inline-start: 15px;
}
@media screen and (min-width: 1180px) {
  .b-header_actions-item.m-search {
    margin-inline-end: 8px;
    margin-inline-start: 0;
    max-width: 260px;
    width: 100%;
  }
  .b-header_stuck .b-header_actions-item.m-search {
    margin: 0;
    width: auto;
  }
}
@media screen and (max-width: 1179.9px) {
  .b-header_actions-item.m-search {
    margin-inline-start: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .b-header_actions-item.m-search.m-mobile_hide {
    display: none;
  }
}
.b-header_actions-item.m-search.m-mobile {
  background: #ffffff;
  margin-bottom: 0;
  padding: 0 15px 16px;
  position: sticky;
  top: 0;
  transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) 0.2s;
  z-index: 17;
}
@media screen and (min-width: 768px) {
  .b-header_actions-item.m-search.m-mobile {
    display: none;
  }
}
.m-header-scroll_up .b-header_actions-item.m-search.m-mobile {
  position: sticky;
  top: 55px;
}
@media screen and (max-width: 767.9px) {
  .m-header-scroll_up .b-header_actions-item.m-search.m-mobile ~ .l-page-content .b-plp_actions {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    top: 95px;
  }
  .m-header-scroll_up .b-header_actions-item.m-search.m-mobile ~ .l-page-content .b-plp_actions.m-has_count {
    top: 70px;
  }
}
.b-header_actions-item.m-search.m-mobile .b-search_toggle {
  border-bottom: 1px solid #a4a4aa;
  font-size: 16px;
  height: 40px;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 1179.9px) {
  .b-header_actions-item.m-search.m-mobile .b-search_toggle {
    font-size: 14px;
  }
  .b-header_actions-item.m-search.m-mobile .b-search_toggle-icon {
    justify-content: end;
  }
  .b-header_actions-item.m-storelocator, .b-header_actions-item.m-account, .b-header_actions-item.m-products_comparison, .b-header_actions-item.m-wishlist, .b-header_actions-item.m-minicart {
    margin-inline-start: 8px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-header_actions-item.m-storelocator.m-desktop, .b-header_actions-item.m-account.m-desktop, .b-header_actions-item.m-products_comparison.m-desktop, .b-header_actions-item.m-wishlist.m-desktop, .b-header_actions-item.m-minicart.m-desktop {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .b-header_actions-item.m-storelocator.m-tablet_mobile, .b-header_actions-item.m-account.m-tablet_mobile, .b-header_actions-item.m-products_comparison.m-tablet_mobile, .b-header_actions-item.m-wishlist.m-tablet_mobile, .b-header_actions-item.m-minicart.m-tablet_mobile {
    display: none;
  }
}
.b-header_actions-item.m-hamburger {
  margin-inline-end: 16px;
  margin-inline-start: -6px;
}
@media screen and (min-width: 1180px) {
  .b-header_actions-item.m-hamburger {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-header_actions-item.m-hamburger {
    margin-inline-end: 8px;
    margin-inline-start: -7px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-header_actions-item.m-hamburger {
    margin-inline-end: 8px;
    margin-inline-start: 5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-header_actions-item.m-minicart {
    margin-inline-end: -7px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-header_actions-item.m-minicart {
    padding-inline-end: 5px;
  }
}
.b-header_actions-item:has(.b-header_dialog-container.m-opened) .b-header_login::before,
.b-header_actions-item:has(.b-header_dialog-container.m-opened) .b-header_wishlist::before,
.b-header_actions-item:has(.b-header_dialog-container.m-opened) .b-minicart_icon::before {
  background: url("./images/icons/dropdown-triangle.svg") no-repeat center center;
  background-size: contain;
  content: "";
  display: block;
  height: 17px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 31px);
  transform: translateY(-100%) translateX(-50%);
  width: 32px;
  z-index: 23;
}
.b-header_actions-item_text {
  display: none;
  font-size: 10px;
  text-align: center;
}
@media screen and (min-width: 1180px) {
  .b-header_actions-item_text {
    display: block;
    margin-top: 2px;
  }
}
.m-care_essentials .b-header_actions-item_text {
  letter-spacing: normal;
  font-weight: 300;
}
@media screen and (max-width: 767.9px) {
  .b-header_actions .b-header_dialog-panel {
    display: none;
  }
}

.l-header-right .b-header_actions {
  justify-content: flex-end;
}

.b-header_wishlist {
  display: block;
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 1180px) {
  .b-header_wishlist {
    align-items: center;
    appearance: none;
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    min-width: 40px;
    text-align: center;
    text-decoration: none;
    flex-direction: column;
    height: 35px;
    justify-content: flex-start;
    z-index: 27;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1179.9px) {
  .b-header_wishlist {
    min-height: 44px;
    min-width: 24px;
  }
}
@media screen and (min-width: 1180px) {
  .b-header_wishlist:hover {
    color: #001489;
  }
  .m-care_essentials .b-header_wishlist:hover, .m-1774 .b-header_wishlist:hover {
    color: inherit;
  }
}
@media screen and (max-width: 1179.9px) {
  .b-header_wishlist {
    position: relative;
    border-radius: 4px;
    display: inline-flex;
    font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
    letter-spacing: 0.07em;
    line-height: 1.36;
    font-weight: 700;
    align-items: center;
    cursor: pointer;
    display: flex;
    min-height: 44px;
    text-decoration: none;
    width: 100%;
    box-shadow: none;
    font-size: 14px;
    padding: 0 4px;
    z-index: 20;
  }
  .b-header_wishlist.m-disabled::after, .b-header_wishlist:disabled::after, .b-header_wishlist[disabled]::after {
    background: #898992;
  }
  .b-header_wishlist::after {
    background: currentcolor;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    transition: transform ease-out 150ms;
    width: 100%;
    transform: scaleX(1);
  }
  .b-header_wishlist:hover::after, .b-header_wishlist:active::after {
    transform: scaleX(0);
  }
  .b-header_wishlist.m-disabled, .b-header_wishlist:disabled, .b-header_wishlist[disabled] {
    color: #898992;
    pointer-events: none;
  }
  html[dir=rtl] .b-header_wishlist {
    letter-spacing: 0;
  }
  .l-page.m-care_essentials .b-header_wishlist, .b-dialog.m-care_essentials-product .b-header_wishlist {
    letter-spacing: normal;
  }
  html[dir=rtl] .b-header_wishlist {
    letter-spacing: 0;
  }
  .l-page.m-care_essentials .b-header_wishlist, .b-dialog.m-care_essentials-product .b-header_wishlist {
    letter-spacing: normal;
  }
  .m-care_essentials .b-header_wishlist {
    letter-spacing: normal;
    font-weight: 400;
  }
  .b-header_wishlist::after {
    display: none;
  }
}
.b-header_wishlist-icon {
  align-items: center;
  appearance: none;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 24px;
  justify-content: center;
  min-width: 40px;
  text-align: center;
  text-decoration: none;
  fill: none;
}
@media screen and (max-width: 1179.9px) {
  .b-header_wishlist-icon {
    min-height: 44px;
    min-width: 24px;
  }
}
.b-header_wishlist-icon:hover {
  color: #001489;
}
.m-care_essentials .b-header_wishlist-icon:hover, .m-1774 .b-header_wishlist-icon:hover {
  color: inherit;
}
.b-header_wishlist-icon svg {
  max-width: 20px;
}
.b-header_wishlist.m-animated .b-header_wishlist-icon {
  animation: heart-bit ease-out 1s;
  animation-delay: 2s;
}
.b-header_wishlist-copy {
  display: none;
}
.b-menu_panel .b-header_wishlist-copy {
  display: block;
}
@media screen and (max-width: 1179.9px) {
  .b-header_actions-item.m-wishlist .b-header_wishlist {
    height: 36px;
    justify-content: center;
    padding: 0;
    width: 36px;
  }
}

/*md

# g-text_overflow

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

## Usage

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

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

*/
.l-grid_layout {
  margin: 0 auto;
  max-width: 1920px;
  padding-left: 40px;
  padding-right: 40px;
  background-color: var(--bg-layout-color);
  background-position: var(--bg-image-position);
  background-repeat: var(--bg-image-repeat);
  background-size: var(--bg-image-size);
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  .l-grid_layout {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-grid_layout {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-grid_layout {
    padding-left: 16px;
    padding-right: 16px;
  }
  .l-grid_layout.m-padding_top-sm {
    padding-top: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-grid_layout.m-padding_top-sm {
    padding-top: 12px;
  }
}
@media screen and (min-width: 1180px) {
  .l-grid_layout.m-padding_top-sm {
    padding-top: 12px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-grid_layout.m-padding_top-md {
    padding-top: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-grid_layout.m-padding_top-md {
    padding-top: 52px;
  }
}
@media screen and (min-width: 1180px) {
  .l-grid_layout.m-padding_top-md {
    padding-top: 52px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-grid_layout.m-padding_top-lg {
    padding-top: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-grid_layout.m-padding_top-lg {
    padding-top: 44px;
  }
}
@media screen and (min-width: 1180px) {
  .l-grid_layout.m-padding_top-lg {
    padding-top: 64px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-grid_layout.m-padding_top-xl {
    padding-top: 48px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-grid_layout.m-padding_top-xl {
    padding-top: 44px;
  }
}
@media screen and (min-width: 1180px) {
  .l-grid_layout.m-padding_top-xl {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-grid_layout.m-padding_bottom-sm {
    padding-bottom: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-grid_layout.m-padding_bottom-sm {
    padding-bottom: 12px;
  }
}
@media screen and (min-width: 1180px) {
  .l-grid_layout.m-padding_bottom-sm {
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-grid_layout.m-padding_bottom-md {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-grid_layout.m-padding_bottom-md {
    padding-bottom: 52px;
  }
}
@media screen and (min-width: 1180px) {
  .l-grid_layout.m-padding_bottom-md {
    padding-bottom: 52px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-grid_layout.m-padding_bottom-lg {
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-grid_layout.m-padding_bottom-lg {
    padding-bottom: 44px;
  }
}
@media screen and (min-width: 1180px) {
  .l-grid_layout.m-padding_bottom-lg {
    padding-bottom: 64px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-grid_layout.m-padding_bottom-xl {
    padding-bottom: 48px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-grid_layout.m-padding_bottom-xl {
    padding-bottom: 44px;
  }
}
@media screen and (min-width: 1180px) {
  .l-grid_layout.m-padding_bottom-xl {
    padding-bottom: 80px;
  }
  .l-grid_layout {
    background-image: var(--bg-image-desktop);
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-grid_layout {
    background-image: var(--bg-image-tablet);
  }
}
@media screen and (max-width: 767.9px) {
  .l-grid_layout {
    background-image: var(--bg-image-mobile);
  }
}
.l-grid_layout.m-full_bleed, .l-grid_layout.m-full_with_centered {
  max-width: 1920px;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 767.9px) {
  .l-grid_layout.m-2_8_2 .l-grid_layout-item.m-lg_2 {
    display: none;
  }
}
.l-grid_layout-content {
  display: grid;
}
@media screen and (min-width: 1440px) {
  .l-grid_layout-content {
    grid-gap: 20px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  .l-grid_layout-content {
    grid-gap: 20px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-grid_layout-content {
    grid-gap: 16px;
    grid-template-columns: [grid-start] repeat(12, 1fr) [grid-end];
  }
}
@media screen and (max-width: 767.9px) {
  .l-grid_layout-content {
    grid-gap: 10px;
    grid-template-columns: [grid-start] repeat(6, 1fr) [grid-end];
  }
}
.m-full_with_centered .l-grid_layout-content {
  margin: 0 auto;
  max-width: 1920px;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  .m-full_with_centered .l-grid_layout-content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .m-full_with_centered .l-grid_layout-content {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .m-full_with_centered .l-grid_layout-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-grid_layout-content.m-hide_gutters {
  grid-gap: 0;
}
.l-grid_layout-item {
  max-width: 100%;
}
.l-grid_layout-item.m-horizontal_left, .l-grid_layout-item.m-horizontal_center, .l-grid_layout-item.m-horizontal_right {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.l-grid_layout-item.m-horizontal_left {
  justify-content: flex-start;
}
.l-grid_layout-item.m-horizontal_center {
  justify-content: center;
}
.l-grid_layout-item.m-horizontal_right {
  justify-content: flex-end;
}
.l-grid_layout-item.m-vertical_top {
  align-self: flex-start;
}
.l-grid_layout-item.m-vertical_middle {
  align-self: center;
}
.l-grid_layout-item.m-vertical_bottom {
  align-self: flex-end;
}
@media screen and (max-width: 767.9px) {
  .l-grid_layout-item.m-margin_bottom-sm .l-grid_layout-item_in {
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-grid_layout-item.m-margin_bottom-sm .l-grid_layout-item_in {
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 1180px) {
  .l-grid_layout-item.m-margin_bottom-sm .l-grid_layout-item_in {
    margin-bottom: 12px;
  }
}
.l-grid_layout-item.m-margin_bottom-sm .l-grid_layout-item_in:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767.9px) {
  .l-grid_layout-item.m-margin_bottom-md .l-grid_layout-item_in {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-grid_layout-item.m-margin_bottom-md .l-grid_layout-item_in {
    margin-bottom: 52px;
  }
}
@media screen and (min-width: 1180px) {
  .l-grid_layout-item.m-margin_bottom-md .l-grid_layout-item_in {
    margin-bottom: 52px;
  }
}
.l-grid_layout-item.m-margin_bottom-md .l-grid_layout-item_in:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767.9px) {
  .l-grid_layout-item.m-margin_bottom-lg .l-grid_layout-item_in {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-grid_layout-item.m-margin_bottom-lg .l-grid_layout-item_in {
    margin-bottom: 44px;
  }
}
@media screen and (min-width: 1180px) {
  .l-grid_layout-item.m-margin_bottom-lg .l-grid_layout-item_in {
    margin-bottom: 64px;
  }
}
.l-grid_layout-item.m-margin_bottom-lg .l-grid_layout-item_in:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767.9px) {
  .l-grid_layout-item.m-margin_bottom-xl .l-grid_layout-item_in {
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-grid_layout-item.m-margin_bottom-xl .l-grid_layout-item_in {
    margin-bottom: 44px;
  }
}
@media screen and (min-width: 1180px) {
  .l-grid_layout-item.m-margin_bottom-xl .l-grid_layout-item_in {
    margin-bottom: 80px;
  }
}
.l-grid_layout-item.m-margin_bottom-xl .l-grid_layout-item_in:last-child {
  margin-bottom: 0;
}
.l-grid_layout-item_in {
  display: flex;
}
.l-grid_layout-item_in > div,
.l-grid_layout-item_in > section {
  width: 100%;
}
.l-grid_layout-item_in:only-child {
  height: 100%;
}
.l-grid_layout-item[data-items=one] {
  align-self: auto;
}
.l-grid_layout-item.m-title {
  grid-column: span 6;
  order: -2;
}
@media screen and (min-width: 768px) {
  .l-grid_layout-item.m-title {
    grid-column: span 12;
  }
}
.l-grid_layout-item.m-fade_in > div, .l-grid_layout-item.m-fade_in > section {
  opacity: 0;
  transform: translateY(10%);
  transition: 1.2s ease-out;
  transition-property: transform, opacity;
}
.l-grid_layout-item.m-bounce {
  overflow: hidden;
}
.l-grid_layout-item.m-bounce > div, .l-grid_layout-item.m-bounce > section {
  opacity: 0;
  transform: scale(0.8);
}
.l-grid_layout-item.m-fade_in.m-animated > div, .l-grid_layout-item.m-fade_in.m-animated > section {
  opacity: 1;
  transform: translateY(0);
}
.l-grid_layout-item.m-bounce.m-animated > div, .l-grid_layout-item.m-bounce.m-animated > section {
  animation-duration: 1.2s;
  animation-fill-mode: both;
  animation-name: growIn;
}
.l-grid_layout-item.m-sm_6 {
  grid-column: span 6;
}
.l-grid_layout-item.m-sm_5 {
  grid-column: span 5;
}
.l-grid_layout-item.m-sm_4 {
  grid-column: span 4;
}
.l-grid_layout-item.m-sm_3 {
  grid-column: span 3;
}
.l-grid_layout-item.m-sm_2 {
  grid-column: span 2;
}
.l-grid_layout-item.m-sm_1 {
  grid-column: span 1;
}
@media screen and (min-width: 768px) {
  .l-grid_layout-item.m-md_12 {
    grid-column: span 12;
  }
  .l-grid_layout-item.m-md_11 {
    grid-column: span 11;
  }
  .l-grid_layout-item.m-md_10 {
    grid-column: span 10;
  }
  .l-grid_layout-item.m-md_9 {
    grid-column: span 9;
  }
  .l-grid_layout-item.m-md_8 {
    grid-column: span 8;
  }
  .l-grid_layout-item.m-md_7 {
    grid-column: span 7;
  }
  .l-grid_layout-item.m-md_6 {
    grid-column: span 6;
  }
  .l-grid_layout-item.m-md_5 {
    grid-column: span 5;
  }
  .l-grid_layout-item.m-md_4 {
    grid-column: span 4;
  }
  .l-grid_layout-item.m-md_3 {
    grid-column: span 3;
  }
  .l-grid_layout-item.m-md_2 {
    grid-column: span 2;
  }
  .l-grid_layout-item.m-md_1 {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1180px) {
  .l-grid_layout-item.m-lg_12 {
    grid-column: span 12;
  }
  .l-grid_layout-item.m-lg_11 {
    grid-column: span 11;
  }
  .l-grid_layout-item.m-lg_10 {
    grid-column: span 10;
  }
  .l-grid_layout-item.m-lg_9 {
    grid-column: span 9;
  }
  .l-grid_layout-item.m-lg_8 {
    grid-column: span 8;
  }
  .l-grid_layout-item.m-lg_7 {
    grid-column: span 7;
  }
  .l-grid_layout-item.m-lg_6 {
    grid-column: span 6;
  }
  .l-grid_layout-item.m-lg_5 {
    grid-column: span 5;
  }
  .l-grid_layout-item.m-lg_4 {
    grid-column: span 4;
  }
  .l-grid_layout-item.m-lg_3 {
    grid-column: span 3;
  }
  .l-grid_layout-item.m-lg_2 {
    grid-column: span 2;
  }
  .l-grid_layout-item.m-lg_1 {
    grid-column: span 1;
  }
}
.l-grid_layout-item_title {
  padding-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .l-grid_layout-item_title {
    padding-bottom: 16px;
  }
}
.l-grid_layout.m-full_bleed .l-grid_layout-item_title {
  margin: 0 auto;
  max-width: 1920px;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px) {
  .l-grid_layout.m-full_bleed .l-grid_layout-item_title {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-grid_layout.m-full_bleed .l-grid_layout-item_title {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .l-grid_layout.m-full_bleed .l-grid_layout-item_title {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-static_page:not(.m-full_width) .l-grid_layout.m-full_bleed .l-grid_layout-item_title {
  padding-left: 0;
  padding-right: 0;
}
.l-grid_layout.m-custom .l-grid_layout-item {
  display: flex;
}
.l-grid_layout.m-custom .l-grid_layout-item > div {
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .l-grid_layout.m-mobile_reversed .l-grid_layout-item:last-child {
    order: -1;
  }
  .l-grid_layout.m-3_9 .l-grid_layout-item:last-child, .l-grid_layout.m-4_8 .l-grid_layout-item:last-child, .l-grid_layout.m-3_3_6 .l-grid_layout-item:last-child {
    order: -1;
  }
}
.l-grid_layout.m-3_9.m-mobile_reversed .l-grid_layout-item:last-child, .l-grid_layout.m-4_8.m-mobile_reversed .l-grid_layout-item:last-child, .l-grid_layout.m-3_3_6.m-mobile_reversed .l-grid_layout-item:last-child {
  order: 1;
}

.b-text_block {
  background-color: var(--bg-text-block, transparent);
  width: 100%;
}
.b-text_block.m-vertical_top {
  align-items: flex-start;
}
.b-text_block.m-vertical_middle {
  align-items: center;
}
.b-text_block.m-vertical_bottom {
  align-items: flex-end;
}
.b-text_block.m-vertical_fill {
  align-self: stretch;
}
.b-text_block.m-horizontal_left, .b-text_block.m-horizontal_center, .b-text_block.m-horizontal_right {
  display: flex;
  flex-wrap: wrap;
}
.b-text_block.m-horizontal_left {
  justify-content: flex-start;
}
.b-text_block.m-horizontal_center {
  justify-content: center;
}
.b-text_block.m-horizontal_right {
  justify-content: flex-end;
}
.b-text_block h1,
.b-text_block .title-h1 {
  font-family: var(--care-essentials-font, "DIN Next CYR", "Arial", "Helvetica", sans-serif);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.9;
}
@media screen and (max-width: 1179.9px) {
  .b-text_block h1,
  .b-text_block .title-h1 {
    font-size: 48px;
    line-height: 0.92;
  }
}
html[dir=rtl] .b-text_block h1,
html[dir=rtl] .b-text_block .title-h1 {
  letter-spacing: 0;
}
.b-text_block h2 {
  font-family: var(--care-essentials-font, "DIN Next CYR", "Arial", "Helvetica", sans-serif);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.92;
}
@media screen and (max-width: 1179.9px) {
  .b-text_block h2 {
    font-size: 40px;
    line-height: 0.96;
  }
}
html[dir=rtl] .b-text_block h2 {
  letter-spacing: 0;
}
.b-text_block h3 {
  font-family: var(--care-essentials-font, "DIN Next CYR", "Arial", "Helvetica", sans-serif);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.96;
}
@media screen and (max-width: 1179.9px) {
  .b-text_block h3 {
    font-size: 32px;
    line-height: 0.98;
  }
}
html[dir=rtl] .b-text_block h3 {
  letter-spacing: 0;
}
.b-text_block h4 {
  font-family: var(--care-essentials-font, "DIN Next CYR", "Arial", "Helvetica", sans-serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.98;
}
@media screen and (max-width: 1179.9px) {
  .b-text_block h4 {
    font-size: 24px;
    line-height: 1.02;
  }
}
html[dir=rtl] .b-text_block h4 {
  letter-spacing: 0;
}
.b-text_block h5 {
  font-family: var(--care-essentials-font, "DIN Next CYR", "Arial", "Helvetica", sans-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
html[dir=rtl] .b-text_block h5 {
  letter-spacing: 0;
}
.b-text_block h1,
.b-text_block .title-h1,
.b-text_block h2,
.b-text_block h3,
.b-text_block h4,
.b-text_block h5 {
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .b-text_block h1,
  .b-text_block .title-h1,
  .b-text_block h2,
  .b-text_block h3,
  .b-text_block h4,
  .b-text_block h5 {
    margin-bottom: 12px;
  }
}
.b-text_block ul,
.b-text_block ol {
  display: block;
  margin-bottom: 16px;
  padding-left: 20px;
}
.b-text_block li {
  display: list-item;
  margin-bottom: 4px;
}
.b-text_block ul {
  list-style: disc outside;
}
.b-text_block ol {
  list-style: decimal outside;
}
.b-text_block p {
  font-weight: 500;
  margin-bottom: 16px;
}
.b-text_block blockquote {
  border-left: 4px solid hsl(0deg, 0%, 73%);
  font-style: italic;
  margin: 0 0 16px;
  padding: 0 0 0 20px;
}
.b-text_block a:hover {
  color: #001489;
}
.b-text_block *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767.9px) {
  .b-text_block.m-padding_top_sm .b-text_block-container {
    padding-top: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-text_block.m-padding_top_sm .b-text_block-container {
    padding-top: 12px;
  }
}
@media screen and (min-width: 1180px) {
  .b-text_block.m-padding_top_sm .b-text_block-container {
    padding-top: 12px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-text_block.m-padding_top_md .b-text_block-container {
    padding-top: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-text_block.m-padding_top_md .b-text_block-container {
    padding-top: 52px;
  }
}
@media screen and (min-width: 1180px) {
  .b-text_block.m-padding_top_md .b-text_block-container {
    padding-top: 52px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-text_block.m-padding_top_lg .b-text_block-container {
    padding-top: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-text_block.m-padding_top_lg .b-text_block-container {
    padding-top: 44px;
  }
}
@media screen and (min-width: 1180px) {
  .b-text_block.m-padding_top_lg .b-text_block-container {
    padding-top: 64px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-text_block.m-padding_top_xl .b-text_block-container {
    padding-top: 48px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-text_block.m-padding_top_xl .b-text_block-container {
    padding-top: 44px;
  }
}
@media screen and (min-width: 1180px) {
  .b-text_block.m-padding_top_xl .b-text_block-container {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-text_block.m-padding_right_sm .b-text_block-container {
    padding-right: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-text_block.m-padding_right_sm .b-text_block-container {
    padding-right: 12px;
  }
}
@media screen and (min-width: 1180px) {
  .b-text_block.m-padding_right_sm .b-text_block-container {
    padding-right: 12px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-text_block.m-padding_right_md .b-text_block-container {
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-text_block.m-padding_right_md .b-text_block-container {
    padding-right: 52px;
  }
}
@media screen and (min-width: 1180px) {
  .b-text_block.m-padding_right_md .b-text_block-container {
    padding-right: 52px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-text_block.m-padding_right_lg .b-text_block-container {
    padding-right: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-text_block.m-padding_right_lg .b-text_block-container {
    padding-right: 44px;
  }
}
@media screen and (min-width: 1180px) {
  .b-text_block.m-padding_right_lg .b-text_block-container {
    padding-right: 64px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-text_block.m-padding_right_xl .b-text_block-container {
    padding-right: 48px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-text_block.m-padding_right_xl .b-text_block-container {
    padding-right: 44px;
  }
}
@media screen and (min-width: 1180px) {
  .b-text_block.m-padding_right_xl .b-text_block-container {
    padding-right: 80px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-text_block.m-padding_bottom_sm .b-text_block-container {
    padding-bottom: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-text_block.m-padding_bottom_sm .b-text_block-container {
    padding-bottom: 12px;
  }
}
@media screen and (min-width: 1180px) {
  .b-text_block.m-padding_bottom_sm .b-text_block-container {
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-text_block.m-padding_bottom_md .b-text_block-container {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-text_block.m-padding_bottom_md .b-text_block-container {
    padding-bottom: 52px;
  }
}
@media screen and (min-width: 1180px) {
  .b-text_block.m-padding_bottom_md .b-text_block-container {
    padding-bottom: 52px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-text_block.m-padding_bottom_lg .b-text_block-container {
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-text_block.m-padding_bottom_lg .b-text_block-container {
    padding-bottom: 44px;
  }
}
@media screen and (min-width: 1180px) {
  .b-text_block.m-padding_bottom_lg .b-text_block-container {
    padding-bottom: 64px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-text_block.m-padding_bottom_xl .b-text_block-container {
    padding-bottom: 48px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-text_block.m-padding_bottom_xl .b-text_block-container {
    padding-bottom: 44px;
  }
}
@media screen and (min-width: 1180px) {
  .b-text_block.m-padding_bottom_xl .b-text_block-container {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-text_block.m-padding_left_sm .b-text_block-container {
    padding-left: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-text_block.m-padding_left_sm .b-text_block-container {
    padding-left: 12px;
  }
}
@media screen and (min-width: 1180px) {
  .b-text_block.m-padding_left_sm .b-text_block-container {
    padding-left: 12px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-text_block.m-padding_left_md .b-text_block-container {
    padding-left: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-text_block.m-padding_left_md .b-text_block-container {
    padding-left: 52px;
  }
}
@media screen and (min-width: 1180px) {
  .b-text_block.m-padding_left_md .b-text_block-container {
    padding-left: 52px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-text_block.m-padding_left_lg .b-text_block-container {
    padding-left: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-text_block.m-padding_left_lg .b-text_block-container {
    padding-left: 44px;
  }
}
@media screen and (min-width: 1180px) {
  .b-text_block.m-padding_left_lg .b-text_block-container {
    padding-left: 64px;
  }
}
@media screen and (max-width: 767.9px) {
  .b-text_block.m-padding_left_xl .b-text_block-container {
    padding-left: 48px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-text_block.m-padding_left_xl .b-text_block-container {
    padding-left: 44px;
  }
}
@media screen and (min-width: 1180px) {
  .b-text_block.m-padding_left_xl .b-text_block-container {
    padding-left: 80px;
  }
}
.b-text_block-container {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .b-text_block-container {
    width: var(--width, auto);
  }
}
.b-text_block-container *:last-child {
  margin-bottom: 0;
}
.b-text_block pre {
  white-space: pre-line;
}
@media screen and (min-width: 1180px) {
  .b-text_block .hidden-lg {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .b-text_block .hidden-md {
    display: none;
  }
}
@media screen and (max-width: 767.9px) {
  .b-text_block .hidden-sm {
    display: none;
  }
}

/*# sourceMappingURL=common_critical.css.map*/