/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/1774.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

# Hover-supported

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

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

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

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

## Usage

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

# RTL selector

This mixin is designed to alter styles for RTL languages.

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

## Usage

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

# 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

# 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;
}
```
*/
.b-button.m-primary_black_1774 {
  border-radius: 0;
  line-height: 48px;
  background: #282727;
  border-color: #ffffff;
  color: #ffffff;
}
@media not all and (pointer: coarse) {
  .b-button.m-primary_black_1774:hover {
    background: transparent;
    border-color: #282727;
    color: #282727;
  }
}
.b-button.m-primary_black_1774:active {
  background: transparent;
  border-color: #282727;
  color: #282727;
}
.b-button.m-primary_white_1774 {
  border-radius: 0;
  line-height: 48px;
  background: #ffffff;
  border-color: #ffffff;
  color: #282727;
}
@media not all and (pointer: coarse) {
  .b-button.m-primary_white_1774:hover {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
  }
}
.b-button.m-primary_white_1774:active {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.b-button.m-secondary_black_1774 {
  border-radius: 0;
  line-height: 48px;
  background: transparent;
  border-color: #282727;
  color: #282727;
}
@media not all and (pointer: coarse) {
  .b-button.m-secondary_black_1774:hover {
    background: #282727;
    border-color: #282727;
    color: #ffffff;
  }
}
.b-button.m-secondary_black_1774:active {
  background: #282727;
  border-color: #282727;
  color: #ffffff;
}
.b-button.m-secondary_white_1774 {
  border-radius: 0;
  line-height: 48px;
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
@media not all and (pointer: coarse) {
  .b-button.m-secondary_white_1774:hover {
    background: #ffffff;
    color: #282727;
  }
}
.b-button.m-secondary_white_1774:active {
  background: #ffffff;
  color: #282727;
}

.m-1774 .b-form_field-message {
  line-height: 1.5;
}
.m-1774 .b-form_field-label {
  margin-inline-start: 8px;
}
.m-1774 .b-footer .b-form_field-required_mark, .m-1774 .b-footer .b-form_field-message,
.m-1774 .b-header_dialog .b-form_field-required_mark,
.m-1774 .b-header_dialog .b-form_field-message {
  color: #ff9d9d;
}
.m-1774 .b-footer .b-form_field-message,
.m-1774 .b-header_dialog .b-form_field-message {
  margin-top: 10px;
}
.m-1774 .b-footer .b-form_field-message::before,
.m-1774 .b-header_dialog .b-form_field-message::before {
  background-image: url("./images/icons/1774/error.svg");
}
.m-1774 .b-input {
  border-bottom: 1px solid #d2d1d4;
  border-radius: 0;
  box-shadow: none;
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
  padding-inline-start: 8px;
}
.m-1774 .b-input.m-invalid {
  border-color: #ff9d9d;
}
.m-1774 .b-input:-internal-autofill-selected {
  background-color: transparent;
}
.m-1774 .b-checkbox-icon {
  border-radius: 0;
}
.m-1774 .b-checkbox-icon path {
  fill: #000;
}
.m-1774 .b-checkbox-input.m-invalid + .b-checkbox-icon {
  background-color: transparent;
  border-color: #ff9d9d;
}
.m-1774 .b-checkbox-input:checked + .b-checkbox-icon {
  background-color: #ffffff;
  border-color: #ffffff;
}
.m-1774 .b-checkbox-input:checked + .b-checkbox-icon path {
  transform: scale(1.6);
}
.m-1774 .b-checkbox-input:not([disabled]):not(.m-invalid):checked:hover + .b-checkbox-icon {
  background-color: #ffffff;
  border-color: #ffffff;
}
.m-1774 .b-select-input {
  border-bottom: 1px solid #a4a4aa;
  border-radius: 0;
  box-shadow: none;
  padding-inline-start: 8px;
}
.m-1774 .b-textarea {
  border-radius: 0;
}

@media screen and (min-width: 768px) {
  .m-1774 .b-footer-inner {
    padding-inline: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-footer-inner {
    padding-inline: 16px;
  }
}
.m-1774 .b-back_to_top,
.m-1774 .b-back_to_top svg {
  border-radius: 0;
}
@media not all and (pointer: coarse) {
  .m-1774 .b-back_to_top:hover svg {
    color: #ffffff;
  }
}
.m-1774 .b-back_to_top svg {
  background-color: #000;
}
.m-1774 .b-footer {
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-footer-newsletters {
    border-inline-end: 0.5px solid rgba(255, 255, 255, 0.5);
    flex-basis: 50%;
    max-width: 50%;
    padding: 90px 48px;
    width: 50%;
  }
}
@media screen and (max-width: 1179.9px) {
  .m-1774 .b-footer-newsletters {
    flex-basis: 100%;
    max-width: none;
    padding-inline: 0;
    width: 100%;
  }
}
.m-1774 .b-footer-newsletters_content {
  width: 100%;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-footer-newsletters_content {
    margin-inline: auto;
    max-width: 560px;
  }
}
.m-1774 .b-footer-region {
  background-color: #000;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-footer-region.m-1 {
    padding-block: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .m-1774 .b-footer-region.m-1 {
    padding: 48px 90px;
  }
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-footer-region.m-1 {
    padding-block: 40px;
  }
}
.m-1774 .b-footer-region.m-1 .b-footer-inner {
  border-top: 0.5px solid rgba(255, 255, 255, 0.5);
}
.m-1774 .b-footer-region.m-2 {
  display: none;
}
.m-1774 .b-footer-region.m-3 {
  border: none;
  padding: 0;
}
.m-1774 .b-footer-region.m-4 {
  padding-block: 0;
}
@media screen and (max-width: 1179.9px) {
  .m-1774 .b-footer-region.m-4 {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-footer-region.m-4 {
    padding-top: 40px;
  }
}
.m-1774 .b-footer-region.m-5 {
  border-bottom: 0;
  padding-bottom: 40px;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-footer-region.m-5 {
    padding-top: 24px;
  }
}
@media screen and (max-width: 1179.9px) {
  .m-1774 .b-footer-region.m-5 {
    padding-top: 54px;
  }
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-footer-region.m-5 {
    padding-top: 24px;
  }
}
.m-1774 .b-footer-content.m-1 {
  gap: 0;
}
@media screen and (max-width: 1179.9px) {
  .m-1774 .b-footer-content.m-1 {
    flex-direction: column;
  }
}
.m-1774 .b-footer-security_shopping {
  color: #ffffff;
  max-width: initial;
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-footer-security_shopping {
    flex-direction: row;
    max-width: initial;
    padding-block: 26px 8px;
    text-align: start;
  }
  .m-1774 .b-footer-security_shopping .b-footer_icon {
    margin-bottom: 0;
    margin-inline-end: 0;
  }
}
.m-1774 .b-footer-security_shopping .b-footer_icon {
  flex-basis: auto;
  margin-inline-end: 0;
}
.m-1774 .b-footer .b-icon_accordion::after {
  background: url("./images/icons/minus1774.svg") no-repeat;
}
.m-1774 .b-footer .b-icon_accordion::before {
  background: url("./images/icons/plus1774.svg") no-repeat;
}
.m-1774 .b-footer .b-footer_social-link {
  margin-top: -4px;
}
.m-1774 .b-footer .b-footer_social-items {
  margin: 0;
  vertical-align: text-bottom;
}
@media screen and (max-width: 1179.9px) {
  .m-1774 .b-footer .b-footer_social-items {
    padding: 0;
  }
  .m-1774 .b-footer.m-ca .b-footer-region.m-1 .b-footer_social-items, .m-1774 .b-footer.m-us .b-footer-region.m-1 .b-footer_social-items {
    padding: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-footer .b-country_selector {
    padding: 0;
  }
}
.m-1774 .b-footer .b-country_selector-chevron {
  margin-inline: 8px 0;
}
.m-1774 .b-footer .b-country_selector-chevron svg {
  height: 20px;
  width: 20px;
}
.m-1774 .b-footer .b-country_selector-icon {
  margin: 0;
  margin-inline-end: 20px;
  min-width: auto;
}
.m-1774 .b-footer .b-country_selector-inner {
  border: none;
  width: auto;
}
.m-1774 .b-footer .b-country_selector-locale {
  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;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  display: flex;
  flex-direction: row;
  font-family: "DIN Next Cyr", sans-serif;
}
.m-1774 .b-footer .b-country_selector-locale.m-disabled::after, .m-1774 .b-footer .b-country_selector-locale:disabled::after, .m-1774 .b-footer .b-country_selector-locale[disabled]::after {
  background: #898992;
}
.m-1774 .b-footer .b-country_selector-locale::after {
  background: currentcolor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  transition: transform ease-out 150ms;
  width: 100%;
  transform: scaleX(1);
}
.m-1774 .b-footer .b-country_selector-locale:hover::after, .m-1774 .b-footer .b-country_selector-locale:active::after {
  transform: scaleX(0);
}
.m-1774 .b-footer .b-country_selector-locale.m-disabled, .m-1774 .b-footer .b-country_selector-locale:disabled, .m-1774 .b-footer .b-country_selector-locale[disabled] {
  color: #898992;
  pointer-events: none;
}
html[dir=rtl] .m-1774 .b-footer .b-country_selector-locale {
  letter-spacing: 0;
}
.l-page.m-care_essentials .m-1774 .b-footer .b-country_selector-locale, .b-dialog.m-care_essentials-product .m-1774 .b-footer .b-country_selector-locale {
  letter-spacing: normal;
}
.m-1774 .b-footer .b-country_selector-locale_country, .m-1774 .b-footer .b-country_selector-locale_language {
  color: #ffffff;
  font-family: "DIN Next Cyr", sans-serif;
  font-size: 14px;
  width: auto;
}
.m-1774 .b-footer .b-country_selector-locale_country {
  position: relative;
}
.m-1774 .b-footer .b-country_selector-locale_country::after {
  content: "|";
  margin-inline-end: 4px;
}
.m-1774 .b-footer .b-input {
  color: #ffffff;
}
.m-1774 .b-footer_headline {
  display: inline-block;
}
.m-1774 .b-footer_headline-title {
  color: #ffffff;
  font-family: "DIN Next Cyr", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: initial;
}
.m-1774 .b-footer_headline-title.m-bigger {
  font-size: 20px;
  font-weight: 700;
}
.m-1774 .b-footer-logo {
  align-items: center;
  display: flex;
  justify-content: center;
  /* stylelint-disable order/order */
}
.m-1774 .b-footer-logo::before {
  background: url("./images/footer-icons1774.svg") no-repeat;
  content: "";
  display: block;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-footer-logo {
    padding-block: 140px;
  }
  .m-1774 .b-footer-logo::before {
    background-position: -96px -80px;
    height: 140px;
    width: 378px;
  }
}
@media screen and (max-width: 1179.9px) {
  .m-1774 .b-footer-logo {
    padding-block: 80px;
  }
  .m-1774 .b-footer-logo::before {
    background-position: -514px -80px;
    height: 80px;
    width: 218px;
  }
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-footer-logo {
    padding-block: 64px;
  }
  .m-1774 .b-footer-logo::before {
    background-position: -769px -80px;
    height: 64px;
    width: 175px;
  }
}
.m-1774 .b-footer_middle-block {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  font-size: 14px;
  gap: 16px;
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-footer_middle-block {
    align-items: center;
    flex-direction: row;
  }
}
.m-1774 .b-footer_middle-content {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-footer_middle-content {
    flex-direction: column;
    gap: 23px;
    padding-block: 30px;
  }
}
@media screen and (max-width: 1179.9px) {
  .m-1774 .b-footer_middle-content {
    padding-block: 32px;
  }
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-footer_middle-content {
    padding-block: 40px;
  }
}
.m-1774 .b-footer_middle-text {
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-footer_middle-text {
    margin-top: 3px;
  }
}
.m-1774 .b-footer_navigation {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 1179.9px) {
  .m-1774 .b-footer_navigation {
    flex-direction: column;
  }
}
.m-1774 .b-footer_navigation-col {
  flex: 1;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-footer_navigation-links {
    display: flex;
    flex: 1;
  }
}
@media screen and (max-width: 1179.9px) {
  .m-1774 .b-footer_navigation-links {
    border-top: 0.5px solid rgba(255, 255, 255, 0.5);
    margin-top: 48px;
  }
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-footer_navigation-links {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-footer_navigation-payment_methods {
    flex: 1;
  }
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-footer_nav {
    padding: 0;
  }
}
.m-1774 .b-footer_nav-button {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 1179.9px) {
  .m-1774 .b-footer_nav-column {
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
  }
  .m-1774 .b-footer_nav-column:first-child {
    border-top: none;
  }
}
.m-1774 .b-footer_nav-link {
  color: #bbbbbf;
  font-family: "DIN Next Cyr", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: initial;
}
.m-1774 .b-footer_nav-title {
  color: #ffffff;
  font-family: "DIN Next Cyr", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: initial;
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .m-1774 .b-footer_services {
    flex: 1;
  }
}
.m-1774 .b-footer_services.m-payments {
  margin-bottom: 0;
}
.m-1774 .b-footer_services-group {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-footer_services-group {
    gap: 64px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .m-1774 .b-footer_services-group {
    flex-direction: row;
  }
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-footer_services-group {
    gap: 32px;
  }
}
.m-1774 .b-footer-socials {
  display: flex;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-footer-socials {
    padding-block: 90px;
  }
}
@media screen and (max-width: 1179.9px) {
  .m-1774 .b-footer-socials {
    flex-direction: row;
  }
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-footer-socials {
    padding: 0;
  }
}
.m-1774 .b-footer-socials .b-footer_headline-title {
  letter-spacing: -0.02em;
  margin-bottom: 0;
  margin-inline-end: 8px;
}
.m-1774 .b-footer-socials_container {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1179.9px) {
  .m-1774 .b-footer-socials_container {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-footer-socials_container {
    padding-top: 16px;
  }
  .m-1774 .b-footer_info {
    align-items: flex-start;
    padding-top: 0;
  }
}
.m-1774 .b-copyright {
  font-weight: 400;
  padding: 5px 0 0;
}
.m-1774 .b-footer_copyright {
  color: #bbbbbf;
  font-size: 12px;
  margin-inline: auto;
  padding-block: 32px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-footer_copyright {
    padding-bottom: 36px;
    padding-top: 26px;
    text-align: start;
  }
}
.m-1774 .b-footer_copyright-text {
  margin-bottom: 4px;
}
.m-1774 .b-footer_copyright .m-accessibility_statement_1774 {
  color: #ffffff;
  margin: 5px auto 0;
  text-transform: uppercase;
}
.m-1774 .b-footer-legal {
  background-color: rgba(73, 73, 84, 0.3);
  border-radius: 4px;
  color: #bbbbbf;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
@media screen and (max-width: 1179.9px) {
  .m-1774.m-subscription_page .b-footer-socials_container {
    justify-content: center;
  }
}
@media screen and (max-width: 767.9px) {
  .m-1774.m-subscription_page .b-footer-socials_container {
    padding-top: 32px;
  }
}

.m-1774 .l-header {
  background-color: #000;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}
@media screen and (max-width: 1179.9px) {
  .m-1774 .l-header-inner {
    margin: 17px auto;
    padding-inline: 18px;
  }
}
@media screen and (max-width: 767.9px) {
  .m-1774 .l-header-inner {
    padding-inline: 0;
  }
}
@media screen and (min-width: 1180px) {
  .m-1774 .l-header-inner {
    position: relative;
  }
  .m-1774 .l-header-inner.m-usablenet {
    margin-top: 31px;
  }
}
.m-1774 .l-header-bottom_promo {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .m-1774 .l-header.m-simple .l-header-inner {
    padding-inline: 11px;
  }
}
.m-1774 .b-header_actions {
  color: #ffffff;
}
.m-1774 .b-header_actions-item {
  margin-inline-start: 18px;
}
@media screen and (max-width: 1179.9px) {
  .m-1774 .b-header_actions-item.m-storelocator, .m-1774 .b-header_actions-item.m-products_comparison, .m-1774 .b-header_actions-item.m-wishlist {
    margin-inline-start: 12px;
  }
  .m-1774 .b-header_actions-item.m-minicart {
    margin-inline-end: 14px;
    margin-inline-start: 5px;
  }
  .m-1774 .b-header_actions-item.m-wishlist {
    margin-inline-start: 7px;
  }
  .m-1774 .b-header_actions-item.m-hamburger {
    margin-inline-end: 3px;
    margin-inline-start: 12px;
  }
  html[dir=rtl] .m-1774 .b-header_actions-item.m-hamburger {
    transform: scaleX(-1);
  }
  .m-1774 .b-header_actions-item.m-account {
    margin-inline-start: 6px;
  }
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-header_actions-item.m-minicart {
    margin-inline-end: 9px;
  }
}
.m-1774 .b-header_actions-item.m-search {
  margin-inline: 0;
}
.m-1774 .b-header_actions-item:has(.b-header_dialog-container.m-opened) .b-header_login::before,
.m-1774 .b-header_actions-item:has(.b-header_dialog-container.m-opened) .b-header_wishlist::before,
.m-1774 .b-header_actions-item:has(.b-header_dialog-container.m-opened) .b-minicart_icon::before {
  background-color: #000;
  background-image: none;
  border: 1px solid #77767f;
  border-bottom-color: transparent;
  border-left-color: transparent;
  height: 22px;
  top: calc(100% + 24px);
  transform: translateY(-50%) translateX(-50%) rotate(-45deg);
  width: 22px;
}
.m-1774 .b-header_actions-item_text {
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-header_actions-item_text {
    font-size: 9px;
    margin-top: 1px;
    text-transform: uppercase;
  }
}
.m-1774 .b-header_login-inner svg {
  max-width: 25px;
}
.m-1774 .b-logo svg {
  height: 42px;
  width: 88px;
}
.m-1774 .b-minicart_icon-link:hover, .m-1774 .b-minicart_icon-link.m-hovered {
  color: inherit;
}
.m-1774 .b-minicart_icon-link svg {
  max-width: 24px;
}
.m-1774 .b-minicart_icon-qty {
  background-color: #ffffff;
  color: #000;
  font-size: 9px;
  font-weight: 700;
  line-height: 16px;
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-header_wishlist .b-minicart_icon-qty {
    padding-inline-end: 2px;
  }
  html[dir=rtl] .m-1774 .b-header_wishlist .b-minicart_icon-qty {
    padding-inline-end: 3px;
  }
}
.m-1774 .b-usablenet {
  bottom: 40px;
  color: #bbbbbf;
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
  inset-inline-start: 0;
  text-transform: uppercase;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-usablenet {
    align-items: center;
    display: flex;
  }
}
.m-1774 .b-usablenet.m-hamburger {
  color: #ffffff;
  text-transform: none;
}
.m-1774 .b-usablenet-link {
  color: inherit;
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
  font-size: 9px;
  margin-inline-end: 12px;
}
.m-1774 .b-product_wishlist-btn {
  border-radius: 0;
}
.m-1774 .b-menu_subpanel-container {
  background-color: #000;
  color: #ffffff;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-menu_bar {
    background-color: #000;
  }
}
.m-1774 .b-menu_bar-link {
  text-transform: uppercase;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-menu_bar-link {
    font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
    line-height: 1.36;
    font-weight: 400;
    font-size: 12px;
    color: #ffffff;
    font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
    letter-spacing: -0.02em;
    padding: 16px 12px;
  }
  html[dir=rtl] .m-1774 .b-menu_bar-link {
    letter-spacing: 0;
  }
  .l-page.m-care_essentials .m-1774 .b-menu_bar-link, .b-dialog.m-care_essentials-product .m-1774 .b-menu_bar-link {
    letter-spacing: normal;
  }
  .m-1774 .b-menu_bar-link[aria-expanded=true], .m-1774 .b-menu_bar-link:hover {
    background-color: transparent;
  }
}
.m-1774 .b-menu_bar-item {
  background-color: #000;
}
.m-1774 .b-menu_bar-item:hover .b-menu_bar-link {
  background-color: transparent;
}
.m-1774 .b-menu_bar-flyout {
  background-color: #000;
  border-top: 0.5px solid #77767f;
  color: #ffffff;
}
.m-1774 .b-menu_bar-flyout_promo_wrapper {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.m-1774 .b-menu_bar-flyout_inner {
  padding-bottom: 48px;
}
.m-1774 .b-menu_bar-flyout_1774_column {
  padding-inline: 40px 20px;
}
.m-1774 .b-menu_bar-flyout_promo {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0;
}
.m-1774 .b-menu_bar-flyout_promo img {
  max-height: 430px;
}
.m-1774 .b-menu_bar-menu_promo {
  flex-basis: auto;
  max-width: none;
}
@media screen and (max-width: 1179.9px) {
  .m-1774 .b-menu_bar-menu_promo {
    display: none;
  }
}
.m-1774 .b-promo_tiles_grid.m-custom_menu {
  width: auto;
}
.m-1774 .b-promo_tiles_grid.m-custom_menu .b-promo_tiles_grid-item {
  max-width: none;
  width: 250px;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-menu_item {
    text-transform: none;
  }
  .m-1774 .b-menu_item.m-view_all_top {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
    text-transform: uppercase;
  }
}
.m-1774 .b-menu_item-link {
  background-color: #000;
  font-weight: 400;
}
.m-1774 .b-menu_item-ling_icon svg {
  width: 18px;
}
.m-1774 .b-header-1774_home_link {
  position: relative;
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--care-essentials-font), "Arial", "Helvetica", sans-serif;
  letter-spacing: 0.07em;
  line-height: 1.36;
  font-weight: 400;
  color: #bbbbbf;
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
  font-size: 9px;
  text-decoration: none;
}
.m-1774 .b-header-1774_home_link.m-disabled::after, .m-1774 .b-header-1774_home_link:disabled::after, .m-1774 .b-header-1774_home_link[disabled]::after {
  background: #898992;
}
.m-1774 .b-header-1774_home_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);
}
.m-1774 .b-header-1774_home_link:hover::after, .m-1774 .b-header-1774_home_link:active::after {
  transform: scaleX(0);
}
.m-1774 .b-header-1774_home_link.m-disabled, .m-1774 .b-header-1774_home_link:disabled, .m-1774 .b-header-1774_home_link[disabled] {
  color: #898992;
  pointer-events: none;
}
html[dir=rtl] .m-1774 .b-header-1774_home_link {
  letter-spacing: 0;
}
.l-page.m-care_essentials .m-1774 .b-header-1774_home_link, .b-dialog.m-care_essentials-product .m-1774 .b-header-1774_home_link {
  letter-spacing: normal;
}
@media screen and (max-width: 1179.9px) {
  .m-1774 .b-header-1774_home_link {
    color: #ffffff;
    font-size: 16px;
    line-height: normal;
    text-transform: uppercase;
  }
  .m-1774 .b-header-1774_home_link.m-desktop-only {
    display: none;
  }
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-header-1774_home_link svg {
    margin: -2px -4px 1px;
    transform: scale(0.42);
  }
}
.m-1774 .b-header-1774_home_link::after {
  display: none;
}
.m-1774 .b-menu_panel-inner {
  background-color: #000;
}
.m-1774 .b-menu_panel-head {
  background-color: #000;
  border-color: #77767f;
  color: #ffffff;
  min-height: 82px;
}
.m-1774 .b-menu_panel-title {
  line-height: 1;
  text-transform: uppercase;
}
.m-1774 .b-menu_panel-footer {
  border-color: #77767f;
  border-width: 0.5px;
  margin-top: 5px;
  padding-top: 20px;
}
.m-1774 .b-menu_panel-footer:has(.m-hamburger-menu-promo_1774) {
  border-top: none;
}
.m-1774 .b-menu_panel-footer .m-hamburger-menu-promo_1774 {
  margin-bottom: 15px;
}
.m-1774 .b-menu_panel-footer .b-header_login-caption {
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}
.m-1774 .b-menu_panel-footer_item {
  align-items: center;
  display: flex;
  min-height: 50px;
}
.m-1774 .b-menu_panel-footer_item a {
  align-items: center;
  display: flex;
  text-decoration: none;
}
.m-1774 .b-menu_panel-footer_item a svg {
  margin-inline-end: 12px;
}
@media screen and (max-width: 767.9px) {
  .m-1774.m-header-scroll_up .b-header_actions-item.m-search.m-mobile {
    top: 0;
  }
  .m-1774.m-header-scroll_up .b-header_actions-item.m-search.m-mobile ~ .l-page-content .b-plp_actions.m-has_count {
    top: 45px;
  }
}

/* stylelint-disable selector-no-qualifying-type */
.m-footer-1774 {
  margin-top: 1px;
}
.l-page.m-1774:has(.l-pdp) .m-footer-1774 {
  margin-top: 48px;
}
@media screen and (min-width: 1180px) {
  .l-page.m-1774:has(.l-pdp) .m-footer-1774 {
    margin-top: 80px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .l-page.m-1774:has(.l-pdp) .m-footer-1774 {
    margin-top: 64px;
  }
}
.m-footer-1774 .b-footer_icon {
  background: url("./images/footer-icons1774.svg") no-repeat;
  display: block;
  filter: none;
  height: 25px;
  width: 36px;
}
.m-footer-1774 .b-footer_icon.m-box, .m-footer-1774 .b-footer_icon.m-footer_logo, .m-footer-1774 .b-footer_icon.m-instagram, .m-footer-1774 .b-footer_icon.m-invoice_payment {
  height: 33px;
  width: 33px;
}
.m-footer-1774 .b-footer_icon.m-instagram {
  background-position: -369px -486px;
  height: 33px;
  width: 24px;
}
.m-ca .m-footer-1774 .b-footer_icon.m-instagram, .m-us .m-footer-1774 .b-footer_icon.m-instagram {
  background-position: -369px -292px;
}
.m-jp .m-footer-1774 .b-footer_icon.m-instagram {
  background-position: -433px -486px;
}
.m-kr .m-footer-1774 .b-footer_icon.m-instagram, .m-mea .m-footer-1774 .b-footer_icon.m-instagram {
  background-position: -369px -389px;
}
.m-sea .m-footer-1774 .b-footer_icon.m-instagram {
  background-position: -433px -390px;
}
.m-footer-1774 .b-footer_icon.m-line {
  background-position: -305px -486px;
}
.m-footer-1774 .b-footer_icon.m-youtube {
  background-position: -495px -486px;
  height: 32px;
  width: 27px;
}
.m-ca .m-footer-1774 .b-footer_icon.m-youtube, .m-us .m-footer-1774 .b-footer_icon.m-youtube {
  background-position: -495px -292px;
}
.m-kr .m-footer-1774 .b-footer_icon.m-youtube {
  background-position: -433px -390px;
}
.m-sea .m-footer-1774 .b-footer_icon.m-youtube {
  background-position: -369px -389px;
}
.m-mea .m-footer-1774 .b-footer_icon.m-snapchat {
  background-position: -427px -392px;
}
.m-mea .m-footer-1774 .b-footer_icon.m-tick_tok {
  background-position: -490px -393px;
}
.m-footer-1774 .b-footer_icon.m-pinterest {
  background-position: -435px -486px;
  height: 32px;
  width: 20px;
}
.m-ca .m-footer-1774 .b-footer_icon.m-pinterest, .m-us .m-footer-1774 .b-footer_icon.m-pinterest {
  background-position: -435px -292px;
}
.m-footer-1774 .b-footer_icon.m-facebook {
  background-position: -307px -486px;
  width: 20px;
}
.m-ca .m-footer-1774 .b-footer_icon.m-facebook, .m-us .m-footer-1774 .b-footer_icon.m-facebook {
  background-position: -307px -292px;
}
.m-jp .m-footer-1774 .b-footer_icon.m-facebook {
  background-position: -369px -486px;
}
.m-kr .m-footer-1774 .b-footer_icon.m-facebook {
  background-position: -305px -389px;
}
.m-mea .m-footer-1774 .b-footer_icon.m-facebook {
  background-position: -305px -393px;
}
.m-footer-1774 .b-footer_icon.m-x {
  background-position: -497px -486px;
  height: 33px;
  width: 33px;
}
.m-footer-1774 .b-footer_icon.m-footer_logo {
  background-position: -95px -486px;
}
.m-ca .m-footer-1774 .b-footer_icon.m-footer_logo, .m-us .m-footer-1774 .b-footer_icon.m-footer_logo {
  background-position: -95px -292px;
}
.m-kr .m-footer-1774 .b-footer_icon.m-footer_logo, .m-mea .m-footer-1774 .b-footer_icon.m-footer_logo, .m-sea .m-footer-1774 .b-footer_icon.m-footer_logo {
  background-position: -95px -389px;
}
.m-footer-1774 .b-footer_icon.m-box {
  background-position: -165px -486px;
}
.m-ca .m-footer-1774 .b-footer_icon.m-box, .m-us .m-footer-1774 .b-footer_icon.m-box {
  background-position: -165px -292px;
}
.m-kr .m-footer-1774 .b-footer_icon.m-box, .m-mea .m-footer-1774 .b-footer_icon.m-box, .m-sea .m-footer-1774 .b-footer_icon.m-box {
  background-position: -165px -388px;
}
.m-footer-1774 .b-footer_icon.m-invoice_payment {
  background-position: -233px -486px;
}
.m-ca .m-footer-1774 .b-footer_icon.m-invoice_payment, .m-us .m-footer-1774 .b-footer_icon.m-invoice_payment {
  background-position: -233px -292px;
}
.m-kr .m-footer-1774 .b-footer_icon.m-invoice_payment, .m-mea .m-footer-1774 .b-footer_icon.m-invoice_payment, .m-sea .m-footer-1774 .b-footer_icon.m-invoice_payment {
  background-position: -233px -388px;
}
.m-footer-1774 .b-footer_icon.m-visa {
  background-position: -96px -292px;
}
.m-mea .m-footer-1774 .b-footer_icon.m-visa {
  background-position: -249px -594px;
}
.m-footer-1774 .b-footer_icon.m-mc {
  background-position: -142px -292px;
}
.m-mea .m-footer-1774 .b-footer_icon.m-mc {
  background-position: -300px -594px;
}
.m-footer-1774 .b-footer_icon.m-amex {
  background-position: -188px -292px;
}
.m-mea .m-footer-1774 .b-footer_icon.m-amex {
  background-position: -96px -594px;
}
.m-footer-1774 .b-footer_icon.m-paypal {
  background-position: -234px -292px;
}
.m-footer-1774 .b-footer_icon.m-klarna {
  background-position: -280px -292px;
}
.m-footer-1774 .b-footer_icon.m-ideal {
  background-position: -326px -292px;
}
.m-footer-1774 .b-footer_icon.m-applepay {
  background-position: -372px -292px;
}
.m-mea .m-footer-1774 .b-footer_icon.m-applepay {
  background-position: -147px -594px;
}
.m-footer-1774 .b-footer_icon.m-blik {
  background-position: -418px -292px;
}
.m-footer-1774 .b-footer_icon.m-diners {
  background-position: -464px -292px;
}
.m-jp .m-footer-1774 .b-footer_icon.m-diners {
  background-position: -280px -292px;
}
.m-mea .m-footer-1774 .b-footer_icon.m-diners {
  background-position: -198px -594px;
}
.m-sea .m-footer-1774 .b-footer_icon.m-diners {
  background-position: -280px -292px;
}
html[data-locale=en_HK] .m-sea .m-footer-1774 .b-footer_icon.m-diners {
  background-position: -372px -292px;
}
.m-footer-1774 .b-footer_icon.m-tabby {
  background-position: -351px -594px;
}
.m-footer-1774 .b-footer_icon.m-discover {
  background-position: -402px -594px;
}
.m-footer-1774 .b-footer_icon.m-k_net {
  background-position: -452px -594px;
}
.m-footer-1774 .b-footer_icon.m-benefit_pay {
  background-position: -504px -594px;
}
.m-footer-1774 .b-footer_icon.m-g_pay {
  background-position: -555px -594px;
}
.m-kr .m-footer-1774 .b-footer_icon.m-naver_pay {
  background-position: -96px -292px;
}
.m-kr .m-footer-1774 .b-footer_icon.m-kcp {
  background-position: -142px -292px;
}
.m-kr .m-footer-1774 .b-footer_icon.m-kakao_pay {
  background-position: -188px -292px;
}
.m-footer-1774 .b-footer_icon.m-cash_on_delivery {
  background-position: -326px -292px;
}
.m-sea .m-footer-1774 .b-footer_icon.m-duit_now {
  background-position: -326px -292px;
}
.m-sea .m-footer-1774 .b-footer_icon.m-touch_n_go {
  background-position: -372px -292px;
}
.m-footer-1774 .b-footer_icon.m-jcb {
  background-position: -234px -292px;
}
.m-sea .m-footer-1774 .b-footer_icon.m-jcb {
  background-position: -418px -292px;
}
html[data-locale=en_HK] .m-sea .m-footer-1774 .b-footer_icon.m-jcb {
  background-position: -280px -292px;
}
.m-sea .m-footer-1774 .b-footer_icon.m-atome {
  background-position: -464px -292px;
}
.m-sea .m-footer-1774 .b-footer_icon.m-grab_pay {
  background-position: -786px -292px;
}
.m-sea .m-footer-1774 .b-footer_icon.m-grab_pay_later {
  background-position: -740px -292px;
}
.m-sea .m-footer-1774 .b-footer_icon.m-fpx {
  background-position: -694px -292px;
}
.m-sea .m-footer-1774 .b-footer_icon.m-union_pay {
  background-position: -648px -292px;
}
html[data-locale=en_HK] .m-sea .m-footer-1774 .b-footer_icon.m-union_pay {
  background-position: -326px -292px;
}
.m-footer-1774 .b-footer_icon.m-ali_pay {
  background-position: -418px -292px;
}
.m-sea .m-footer-1774 .b-footer_icon.m-pay_now {
  background-position: -602px -292px;
}
.m-sea .m-footer-1774 .b-footer_icon.m-g_cash {
  background-position: -556px -292px;
}
.m-sea .m-footer-1774 .b-footer_icon.m-we_chat_pay {
  background-position: -510px -292px;
}
.m-footer-1774 .b-footer_icon.m-ups {
  background-position: -96px -388px;
}
.m-footer-1774 .b-footer_icon.m-naqel {
  background-position: -96px -292px;
}
.m-footer-1774 .b-footer_icon.m-austrian_post {
  background-position: -142px -388px;
}
.m-footer-1774 .b-footer_icon.m-bpost {
  background-position: -188px -388px;
}
.m-footer-1774 .b-footer_icon.m-postnord {
  background-position: -234px -388px;
}
.m-footer-1774 .b-footer_icon.m-posti {
  background-position: -280px -388px;
}
.m-footer-1774 .b-footer_icon.m-la_poste {
  background-position: -326px -388px;
}
.m-footer-1774 .b-footer_icon.m-colissimo {
  background-position: -372px -388px;
}
.m-footer-1774 .b-footer_icon.m-colis_prive {
  background-position: -418px -388px;
}
.m-footer-1774 .b-footer_icon.m-dhl {
  background-position: -464px -388px;
}
.m-footer-1774 .b-footer_icon.m-hermes {
  background-position: -510px -388px;
}
.m-footer-1774 .b-footer_icon.m-postnl {
  background-position: -556px -388px;
}
.m-footer-1774 .b-footer_icon.m-bring {
  background-position: -602px -388px;
}
.m-footer-1774 .b-footer_icon.m-poczta_polska {
  background-position: -648px -388px;
}
.m-footer-1774 .b-footer_icon.m-correos {
  background-position: -694px -388px;
}
.m-footer-1774 .b-footer_icon.m-swiss_post {
  background-position: -786px -388px;
}
.m-footer-1774 .b-footer_icon.m-evri {
  background-position: -832px -388px;
}
.m-footer-1774 .b-footer_icon.m-poste_italiane {
  background-position: -878px -388px;
}
.m-footer-1774 .b-footer_icon.m-parcel_force {
  background-position: -924px -388px;
}
.m-footer-1774 .b-footer_icon.m-gls {
  background-position: -740px -388px;
}
.m-footer-1774 .b-footer_icon.m-sagawa {
  background-position: -96px -388px;
}
.m-footer-1774 .b-footer_icon.m-ssl {
  background-position: -96px -588px;
  height: 32px;
  width: 83px;
}
.m-kr .m-footer-1774 .b-footer_icon.m-ssl, .m-mea .m-footer-1774 .b-footer_icon.m-ssl, .m-sea .m-footer-1774 .b-footer_icon.m-ssl {
  background-position: -96px -491px;
}
html[lang=en] .m-eu .m-footer-1774 .b-footer_icon.m-ssl {
  background-position: -217px -588px;
}
html[lang=da] .m-eu .m-footer-1774 .b-footer_icon.m-ssl {
  background-position: -334px -588px;
}
html[lang=fr] .m-eu .m-footer-1774 .b-footer_icon.m-ssl {
  background-position: -456px -588px;
}
html[lang=it] .m-eu .m-footer-1774 .b-footer_icon.m-ssl {
  background-position: -577px -588px;
}
html[lang=nl] .m-eu .m-footer-1774 .b-footer_icon.m-ssl {
  background-position: -690px -588px;
}
html[lang=es] .m-eu .m-footer-1774 .b-footer_icon.m-ssl {
  background-position: -812px -588px;
  width: 86px;
}
html[lang=sv] .m-eu .m-footer-1774 .b-footer_icon.m-ssl {
  background-position: -929px -588px;
}

.m-1774 .b-newsletters::after {
  display: none;
}
.m-1774 .b-newsletters-optout_title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
.m-1774 .b-newsletters-optout_text {
  font-size: 14px;
  font-weight: 400;
}
.m-1774 .b-newsletters-message_title {
  margin-bottom: 0;
  margin-top: 0;
}
.m-1774 .b-newsletters-message_body {
  margin-inline-start: 30px;
}
.m-1774 .b-newsletters-message_container {
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}
.m-1774 .b-newsletters-message_container.m-error, .m-1774 .b-newsletters-message_container.m-success {
  border: 1px solid transparent;
  font-size: 14px;
  padding: 16px;
}
.m-1774 .b-newsletters-message_container.m-error {
  border-color: #ff9d9d;
  color: #ff9d9d;
}
.m-1774 .b-newsletters-message_container.m-error .b-newsletters-message_title {
  color: inherit;
}
.m-1774 .b-newsletters-message_container.m-error .b-newsletters-message_title::before {
  background-image: url("./images/icons/1774/error.svg");
  height: 22px;
  width: 22px;
}
.m-1774 .b-newsletters-message_container.m-success {
  border-color: #71d471;
  color: #71d471;
}
.m-1774 .b-newsletters-message_container.m-success .b-newsletters-message_title {
  color: inherit;
}
.m-1774 .b-newsletters-message_container.m-success .b-newsletters-message_title::before {
  background-image: url("./images/icons/1774/tick.svg");
}
.m-1774.m-subscription_page .b-footer-socials {
  padding-block: 0;
}
.m-1774.m-subscription_page .b-newsletters .b-form_field-label.m-select:not(.m-focus) {
  color: transparent;
}
.m-1774.m-subscription_page .b-newsletters .b-select-input.m-empty {
  color: #60606a;
  padding-top: 0;
}
.m-1774.m-subscription_page .b-newsletters .l-newsletter-title {
  font-size: 32px;
}
.m-1774.m-subscription_page .b-newsletters-optout_header_text {
  margin-top: 16px;
}
.m-1774 .b-footer .b-tab_panel .b-drawer-close {
  color: #ffffff;
  inset-inline-end: 0;
}
.m-1774 .b-footer .b-tab_panel .b-drawer-close svg {
  height: 29px;
  width: 29px;
}
.m-1774 .b-footer .b-newsletters .b-form_field {
  max-width: none;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-footer .b-newsletters .b-form_field {
    max-width: 560px;
  }
}
.m-1774 .b-footer .b-newsletters .b-form_field-label {
  color: #ffffff;
}
.m-1774 .b-footer .b-newsletters .b-form_field-caption {
  color: #ffffff;
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}
.m-1774 .b-footer .b-newsletters .b-form_field.m-email {
  position: relative;
}
.m-1774 .b-footer .b-newsletters .b-form_field.m-email .b-form_field-label {
  margin-inline-start: 0;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-footer .b-newsletters .b-form_field.m-first_name, .m-1774 .b-footer .b-newsletters .b-form_field.m-last_name {
    flex: 1;
  }
}
.m-1774 .b-footer .b-newsletters .b-form_field .m-agree_to_privacy {
  text-align: justify;
}
.m-1774 .b-footer .b-newsletters-message_container {
  margin-top: 12px;
}
.m-1774 .b-footer .b-newsletters-message_container.m-info {
  border: 1px solid transparent;
  color: #ffffff;
  font-size: 14px;
  padding: 0;
}
.m-1774 .b-footer .b-newsletters-message_container.m-info .b-newsletters-message_body {
  margin-inline-start: 0;
}
.m-1774 .b-footer .b-newsletters .b-select-input {
  background-color: #000;
  color: #ffffff;
}
.m-1774 .b-footer .b-newsletters .b-form_set-required {
  color: #ffffff;
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}
.m-1774 .b-footer .b-newsletters.m-open::after {
  display: none;
}
.m-1774 .b-footer .b-newsletters.m-open .b-form_field.m-email::after {
  display: none;
}
.m-1774 .b-footer .b-newsletters.m-open .b-form_field.m-email .b-form_field-label {
  margin-inline-start: 8px;
}
.m-1774 .b-footer .b-newsletters-privacy {
  max-width: none;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-footer .b-newsletters-privacy {
    display: flex;
    flex-wrap: wrap;
    gap: 3px 24px;
  }
}
.m-1774 .b-footer .b-newsletters-submit, .m-1774 .b-footer .b-newsletters-toggle_form {
  border-radius: 0;
  line-height: 48px;
  background: #ffffff;
  border-color: #ffffff;
  color: #282727;
}
@media not all and (pointer: coarse) {
  .m-1774 .b-footer .b-newsletters-submit:hover, .m-1774 .b-footer .b-newsletters-toggle_form:hover {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
  }
}
.m-1774 .b-footer .b-newsletters-submit:active, .m-1774 .b-footer .b-newsletters-toggle_form:active {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.m-1774 .b-footer .b-newsletters .b-checkbox-label {
  color: #ffffff;
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}
.m-1774 .b-footer .b-newsletters .b-input:-webkit-autofill {
  caret-color: #ffffff;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
  -webkit-text-fill-color: #ffffff;
}
.m-1774 .b-footer .b-newsletters .b-input.m-valid:not(.m-empty) {
  background-image: url("./images/icons/1774/tick.svg");
  padding-inline-start: 8px;
}
.m-1774 .b-footer .b-newsletters .b-input.m-valid:not(.m-empty):-internal-autofill-selected, .m-1774 .b-footer .b-newsletters .b-input.m-valid:not(.m-empty):-webkit-autofill {
  background-image: url("./images/icons/1774/tick.svg");
}
.m-1774 .b-footer .b-newsletters .showless-button,
.m-1774 .b-footer .b-newsletters .showmore-button {
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}
.m-1774 .b-newsletters-caption .b-footer_headline-copy {
  color: #ffffff;
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 13px;
  max-width: 550px;
}

.b-newsletter_flyin_1774-header_img {
  max-height: 200px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .b-newsletter_flyin_1774-header_img {
    display: none;
  }
}
.b-newsletter_flyin_1774-button_close {
  letter-spacing: 0.07em;
  margin: 15px auto 0;
}
.b-newsletter_flyin_1774-button_close.m-hide_on_submit {
  display: block;
}
.m-submitted .b-newsletter_flyin_1774-button_close.m-hide_on_submit {
  display: none;
}
.b-newsletter_flyin_1774-button_close.m-show_on_submit {
  display: none;
}
.m-submitted .b-newsletter_flyin_1774-button_close.m-show_on_submit {
  display: block;
}
.b-newsletter_flyin_1774-button_close.b-button {
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}
.b-newsletter_flyin_1774-footer_btn {
  padding-inline: 16px;
}
@media screen and (min-width: 768px) {
  .b-newsletter_flyin_1774-footer_btn {
    padding-inline: 32px;
  }
  .m-submitted .b-newsletter_flyin_1774-footer_btn {
    padding-bottom: 32px;
  }
}
.m-submitted .b-newsletter_flyin_1774-footer_btn {
  padding-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  .b-newsletter_flyin_1774 .b-drawer .b-drawer-container {
    bottom: 0;
    min-height: auto;
    top: auto;
  }
}
@media screen and (min-width: 768px) {
  .b-newsletter_flyin_1774 .b-drawer .b-drawer-container {
    max-width: 400px;
  }
}
.b-newsletter_flyin_1774 .b-drawer-content {
  padding: 0;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .b-newsletter_flyin_1774 .b-drawer-content {
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 768px) {
  .b-newsletter_flyin_1774 .b-drawer-content {
    padding-bottom: 32px;
  }
}
.b-newsletter_flyin_1774 .b-drawer-inner {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .b-newsletter_flyin_1774 .b-drawer-inner {
    height: 100%;
  }
}
.b-newsletter_flyin_1774 .b-drawer-close {
  height: 40px;
  inset-inline-end: 0;
  justify-content: center;
  position: absolute;
  width: 40px;
}
@media screen and (min-width: 768px) {
  .b-newsletter_flyin_1774 .b-drawer-close {
    background-color: #ffffff;
  }
}
@media screen and (max-width: 767.9px) {
  .b-newsletter_flyin_1774 .b-drawer-close {
    inset-inline-end: 8px;
    top: 18px;
  }
}
.b-newsletter_flyin_1774-inner {
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .b-newsletter_flyin_1774-inner {
    padding: 0 32px;
  }
}
.b-newsletter_flyin_1774 .b-newsletters-submit {
  border-radius: 0;
  line-height: 48px;
  background: #282727;
  border-color: #ffffff;
  color: #ffffff;
  margin-top: 10px;
}
@media not all and (pointer: coarse) {
  .b-newsletter_flyin_1774 .b-newsletters-submit:hover {
    background: transparent;
    border-color: #282727;
    color: #282727;
  }
}
.b-newsletter_flyin_1774 .b-newsletters-submit:active {
  background: transparent;
  border-color: #282727;
  color: #282727;
}
.b-newsletter_flyin_1774 .b-newsletters-signup_top {
  padding: 28px 0 18px;
}
.b-newsletter_flyin_1774 .b-newsletters-signup_text {
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-align: start;
}
.b-newsletter_flyin_1774 .b-newsletters-signup_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;
  margin-bottom: 16px;
  text-align: start;
}
@media screen and (max-width: 1179.9px) {
  .b-newsletter_flyin_1774 .b-newsletters-signup_title {
    font-size: 24px;
    line-height: 1.02;
  }
}
html[dir=rtl] .b-newsletter_flyin_1774 .b-newsletters-signup_title {
  letter-spacing: 0;
}
.b-newsletter_flyin_1774 .b-newsletters-message_container {
  border: 1px solid transparent;
  color: #000;
  font-size: 14px;
}
@media screen and (max-width: 767.9px) {
  .b-newsletter_flyin_1774 .b-newsletters-message_container {
    margin-top: 0;
  }
}
.b-newsletter_flyin_1774 .b-newsletters-message_container.m-success, .b-newsletter_flyin_1774 .b-newsletters-message_container.m-info, .b-newsletter_flyin_1774 .b-newsletters-message_container.m-error {
  color: #000;
}
.b-newsletter_flyin_1774 .b-newsletters-message_container.m-success {
  background-color: #ebf6eb;
  border-color: #008a00;
}
.b-newsletter_flyin_1774 .b-newsletters-message_container.m-success .b-newsletters-message_title {
  align-items: center;
}
.b-newsletter_flyin_1774 .b-newsletters-message_container.m-success .b-newsletters-message_title::before {
  background-image: url("./images/icons/1774/tickBright.svg");
  margin-inline-end: 7px;
}
.b-newsletter_flyin_1774 .b-newsletters-message_container.m-info {
  background-color: transparent;
  border-color: #000;
  padding: 16px;
}
.b-newsletter_flyin_1774 .b-newsletters-message_container.m-info .b-newsletters-message_body {
  position: relative;
}
.b-newsletter_flyin_1774 .b-newsletters-message_container.m-info .b-newsletters-message_body::before {
  background-image: url("./images/icons/1774/infoBlack.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: inline-flex;
  flex-shrink: 0;
  height: 22px;
  inset-inline-start: -30px;
  margin-inline-end: 8px;
  position: absolute;
  width: 22px;
}
.b-newsletter_flyin_1774 .b-newsletters-message_container.m-error {
  background-color: #fbeded;
}
.b-newsletter_flyin_1774 .b-newsletters-message_container.m-error .b-newsletters-message_title::before {
  background-image: url("./images/icons/1774/errorBright.svg");
}
.b-newsletter_flyin_1774 .b-form_set-required {
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
  margin-bottom: 4px;
}
.b-newsletter_flyin_1774 .b-form_field-required_mark, .b-newsletter_flyin_1774 .b-form_field-message {
  color: #d01d1b;
}
.b-newsletter_flyin_1774 .b-form_field-message::before {
  background-image: url("./images/icons/1774/errorBright.svg");
}
.b-newsletter_flyin_1774 .b-form_field-required_mark {
  display: inline;
}
.b-newsletter_flyin_1774 .b-form_field.m-agree_to_privacy {
  margin-top: 20px;
}
.b-newsletter_flyin_1774 .b-input {
  color: #000;
}
.b-newsletter_flyin_1774 .b-input:-webkit-autofill {
  caret-color: #000;
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
  -webkit-text-fill-color: #000;
}
.b-newsletter_flyin_1774 .b-input.m-valid:not(.m-empty) {
  padding-inline-start: 8px;
}
.b-newsletter_flyin_1774 .b-input.m-invalid {
  border-color: #d01d1b;
}
.b-newsletter_flyin_1774 .b-checkbox-label {
  color: #000;
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}
.b-newsletter_flyin_1774 .b-checkbox-icon {
  border-radius: 0;
}
.b-newsletter_flyin_1774 .b-checkbox-icon path {
  fill: #ffffff;
}
.b-newsletter_flyin_1774 .b-checkbox-input.m-invalid + .b-checkbox-icon {
  border-color: #d01d1b;
}
.b-newsletter_flyin_1774 .b-checkbox-input:checked + .b-checkbox-icon {
  background-color: #000;
  border-color: #000;
}
.b-newsletter_flyin_1774 .b-checkbox-input:not([disabled]):not(.m-invalid):checked:hover + .b-checkbox-icon {
  background-color: #000;
  border-color: #000;
}

.m-1774 .b-minicart {
  background-color: #000;
  border: 0.5px solid #77767f;
  border-radius: 0;
  color: #ffffff;
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
  top: 58px;
}
.m-1774 .b-minicart-content::-webkit-scrollbar {
  width: 4px;
}
.m-1774 .b-minicart-content::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 0;
}
.m-1774 .b-minicart-content::-webkit-scrollbar-track {
  background: transparent;
  border-left: 1.5px solid transparent;
  border-radius: 0;
  border-right: 1.5px solid transparent;
  box-shadow: inset 0 0 5px #a4a4aa;
}
.m-1774 .b-minicart-empty_content {
  font-size: 14px;
  font-weight: 400;
}
.m-1774 .b-minicart-title {
  font-size: 32px;
}
.m-1774 .b-minicart-actions_bag {
  border-radius: 0;
  line-height: 48px;
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
@media not all and (pointer: coarse) {
  .m-1774 .b-minicart-actions_bag:hover {
    background: #ffffff;
    color: #282727;
  }
}
.m-1774 .b-minicart-actions_bag:active {
  background: #ffffff;
  color: #282727;
}
.m-1774 .b-minicart-actions_checkout {
  border-radius: 0;
  line-height: 48px;
  background: #ffffff;
  border-color: #ffffff;
  color: #282727;
}
@media not all and (pointer: coarse) {
  .m-1774 .b-minicart-actions_checkout:hover {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
  }
}
.m-1774 .b-minicart-actions_checkout:active {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.m-1774 .b-minicart .b-button_apple_pay:not(:empty) {
  outline: 1px solid #ffffff;
}
.m-1774 .b-minicart:not(.m-loading_long)::before {
  background-color: #000;
  background-image: none;
  border: 1px solid #77767f;
  border-bottom-color: transparent;
  border-left-color: transparent;
  height: 22px;
  inset-inline-end: 24px;
  top: 0;
  transform: translateY(-50%) rotate(-45deg);
  width: 22px;
}
.m-1774 .b-minicart.m-loading_long::before {
  background: transparent;
}
.m-1774 .b-minicart .b-message {
  background-color: transparent;
  border-color: #ffffff;
  border-radius: 0;
  border-top-width: 0.5px;
  color: #ffffff;
  width: 100%;
}
.m-1774 .b-minicart .b-message::before {
  content: url("./images/icons/1774/info.svg");
}
.m-1774 .b-minicart .b-message.m-error {
  border-color: #ff9d9d;
  color: #ff9d9d;
}
.m-1774 .b-minicart .b-message.m-error::before {
  content: url("./images/icons/1774/error.svg");
  margin-top: -2px;
}
.m-1774 .b-minicart .b-message.m-success {
  border-color: #71d471;
}
.m-1774 .b-minicart .b-message.m-success::before {
  content: url("./images/icons/1774/tick.svg");
}
.m-1774 .b-minicart .b-message.m-warning {
  border-color: #ffffff;
}
.m-1774 .b-minicart .b-message.m-warning::before {
  content: url("./images/icons/1774/info.svg");
}
.m-1774 .b-minicart h4 {
  font-size: 28px;
  font-weight: 700;
}
.m-1774 .b-minicart .b-drawer-close svg {
  color: #ffffff;
}
.m-1774 .b-minicart .b-minicart_icon-qty {
  top: -3px;
}
.m-1774 .b-minicart .b-stepper {
  border-radius: 0;
}
@media not all and (pointer: coarse) {
  .m-1774 .b-minicart .b-stepper:hover {
    box-shadow: inset 0 0 0 1px #bbbbbf;
  }
}
.m-1774 .b-minicart .b-product_line {
  border-top: 1px solid #77767f;
}
.m-1774 .b-minicart .b-product_line:first-child, .m-1774 .b-minicart .b-product_line.m-bonus:not(.m-bonus_order_level) {
  border-top: none;
}
.m-1774 .b-minicart .b-product_line-subtitle {
  color: #bbbbbf;
  font-size: 14px;
  font-weight: 400;
}
.m-1774 .b-minicart .b-product_line-title {
  margin-bottom: 6px;
}
.m-1774 .b-minicart .b-product_line-title a:hover {
  color: #ffffff;
}
.m-1774 .b-minicart .b-product_line-attribute {
  color: #bbbbbf;
  font-weight: 400;
}
.m-1774 .b-minicart .b-product_line-message {
  padding: 14.5px 16px;
}
.m-1774 .b-minicart .b-summary_table-tax {
  color: #ffffff;
}
.m-1774 .b-minicart .b-minicart-summary .b-payment_total-name {
  font-size: 14px;
}
.m-1774 .b-minicart .b-minicart-summary .b-payment_total-tax {
  color: #bbbbbf;
}
.m-1774 .b-minicart .b-minicart-summary .b-payment_total-value {
  font-size: 20px;
}
.m-1774 .b-minicart .b-promotion-message {
  background-color: transparent;
  border-color: #ffffff;
  border-radius: 0;
  color: #ffffff;
}
.m-1774 .b-minicart-footer {
  border-top: 0.5px solid #a4a4aa;
}
.m-1774 .b-price-badge {
  background-color: transparent;
  border-color: #ffffff;
  border-radius: 0;
  color: #ffffff;
}
.m-1774 .b-price-item.m-free {
  color: #71d471;
}

.m-1774 .b-login_register.m-mini {
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
  line-height: 1;
}
.m-1774 .b-login_register.m-mini-title {
  letter-spacing: -0.02rem;
}
.m-1774 .b-login_register.m-mini-button {
  border-radius: 0;
  line-height: 48px;
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
@media not all and (pointer: coarse) {
  .m-1774 .b-login_register.m-mini-button:hover {
    background: #ffffff;
    color: #282727;
  }
}
.m-1774 .b-login_register.m-mini-button:active {
  background: #ffffff;
  color: #282727;
}
.m-1774 .b-login_register.m-mini .b-form_set-required,
.m-1774 .b-login_register.m-mini .b-reset_password,
.m-1774 .b-login_register.m-mini .b-reset_password-btn {
  color: #ffffff;
}
.m-1774 .b-login_register.m-mini .b-checkbox-label {
  align-self: center;
  line-height: 1.5;
}
.m-1774 .b-login_register.m-mini .b-checkbox-icon {
  background-color: #000;
}
.m-1774 .b-login_register.m-mini .b-form_field-label {
  color: #ffffff;
}
.m-1774 .b-login_register.m-mini .b-form_field-caption {
  color: #ffffff;
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}
.m-1774 .b-login_register.m-mini .b-form_actions-button_first {
  border-radius: 0;
  line-height: 48px;
  background: #ffffff;
  border-color: #ffffff;
  color: #282727;
}
@media not all and (pointer: coarse) {
  .m-1774 .b-login_register.m-mini .b-form_actions-button_first:hover {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
  }
}
.m-1774 .b-login_register.m-mini .b-form_actions-button_first:active {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.m-1774 .b-login_register.m-mini .b-input {
  background: transparent;
  border-bottom: 1px solid #d2d1d4;
  border-radius: 0;
  box-shadow: none;
  color: #ffffff;
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
  padding-inline-start: 8px;
}
.m-1774 .b-login_register.m-mini .b-input.m-invalid {
  border-color: #ff9d9d;
}
.m-1774 .b-login_register.m-mini .b-input:-internal-autofill-selected {
  background-color: transparent;
}
.m-1774 .b-login_register.m-mini .b-input:-webkit-autofill {
  caret-color: #ffffff;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
  -webkit-text-fill-color: #ffffff;
}
.m-1774 .b-login_register.m-mini .b-input_password-toggle_visibility {
  color: #ffffff;
}
.m-1774 .b-login_register.m-mini .b-input_password-toggle_visibility:hover {
  color: #d2d1d4;
}
.m-1774 .b-login_register.m-mini .b-account_benefits-item::before {
  content: url("./images/icons/1774/listTick.svg");
}

.m-1774 .b-product_gallery-zoom, .m-1774 .b-product_gallery-thumb,
.m-1774 .b-product_gallery .m-current::after {
  border-radius: 0;
}
.m-1774 .b-product_slider-ctrl {
  border-radius: 0;
}
.m-1774 .b-promotion-message {
  border-radius: 0;
  display: none;
}
.m-1774 .b-product_details-netcontent,
.m-1774 .b-availability,
.m-1774 .b-variations_item-empty_value {
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}
.m-1774 .b-product_details-price {
  margin-top: 14px;
}
.m-1774 .b-product_details-bottom_promotions .b-promotion-message {
  border-color: #000;
  color: #000;
}
.m-1774 .b-product_details .b-availability {
  justify-content: center;
}
.m-1774 .b-variation_swatch-value,
.m-1774 .b-variations_item.m-swatchable .b-variation_swatch-value {
  border-radius: 0;
  font-weight: 400;
}
.m-1774 .b-variations_item.m-width .b-variation_swatch-value {
  letter-spacing: 0.07em;
}
.m-active_variation .m-1774 .b-variations_item.m-width, .m-active_variation[dir=rtl] .m-1774 .b-variations_item.m-width {
  /* stylelint-disable no-descending-specificity */
  /* stylelint-enable no-descending-specificity */
}
.m-active_variation .m-1774 .b-variations_item.m-width .b-variation_swatch-value, .m-active_variation .m-1774 .b-variations_item.m-width .b-variation_swatch[aria-checked=false] + .b-variation_swatch[aria-checked=false] .b-variation_swatch-value, .m-active_variation .m-1774 .b-variations_item.m-width .b-variation_swatch:first-child[aria-checked=false] .b-variation_swatch-value, .m-active_variation[dir=rtl] .m-1774 .b-variations_item.m-width .b-variation_swatch-value, .m-active_variation[dir=rtl] .m-1774 .b-variations_item.m-width .b-variation_swatch[aria-checked=false] + .b-variation_swatch[aria-checked=false] .b-variation_swatch-value, .m-active_variation[dir=rtl] .m-1774 .b-variations_item.m-width .b-variation_swatch:first-child[aria-checked=false] .b-variation_swatch-value {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.m-active_variation .m-1774 .b-variations_item.m-width .b-variation_swatch[aria-checked=true] .b-variation_swatch-value,
.m-active_variation .m-1774 .b-variations_item.m-width .b-variation_swatch[aria-checked=true] + .b-variation_swatch[aria-checked=false] .b-variation_swatch-value, .m-active_variation[dir=rtl] .m-1774 .b-variations_item.m-width .b-variation_swatch[aria-checked=true] .b-variation_swatch-value,
.m-active_variation[dir=rtl] .m-1774 .b-variations_item.m-width .b-variation_swatch[aria-checked=true] + .b-variation_swatch[aria-checked=false] .b-variation_swatch-value {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.m-active_variation .m-1774 .b-variations_item.m-size, .m-active_variation[dir=rtl] .m-1774 .b-variations_item.m-size {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.m-1774 .b-button_apple_pay {
  border-radius: 0;
}
.m-1774 .gpay-card-info-container {
  border-radius: 0;
}
.m-1774 .b-width_guide-icon {
  color: #000;
}
.m-1774 .b-button_multi_state {
  border-radius: 0;
}
.m-1774 .b-variations_item-tab_container {
  border-radius: 0;
}
.b-variations_item.m-size .m-1774 .b-variations_item-tab_item, .m-1774 .b-variations_item-tab_item.m-size {
  border-radius: 0;
}
.m-1774 .b-variations_item-label {
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}
.m-1774 .b-variations_item.m-size .b-variations_item-tab_item,
.m-1774 .b-variations_item-tab_item.m-size {
  border-radius: 0;
}
.m-1774 .b-product_notify_me-form .b-input, .m-1774 .b-product_notify_me-newsletter .b-input {
  border-color: #a4a4aa;
  color: #000;
}
.m-1774 .b-product_notify_me-form .b-input.m-valid:not(.m-empty), .m-1774 .b-product_notify_me-newsletter .b-input.m-valid:not(.m-empty) {
  padding-inline-start: 8px;
}
.m-1774 .b-product_notify_me-form .b-checkbox-input:checked + .b-checkbox-icon,
.m-1774 .b-product_notify_me-form .b-checkbox-input:not([disabled]):not(.m-invalid):checked:hover + .b-checkbox-icon, .m-1774 .b-product_notify_me-newsletter .b-checkbox-input:checked + .b-checkbox-icon,
.m-1774 .b-product_notify_me-newsletter .b-checkbox-input:not([disabled]):not(.m-invalid):checked:hover + .b-checkbox-icon {
  border-color: #282727;
}
.m-1774 .b-product_notify_me-form .b-form_set-required, .m-1774 .b-product_notify_me-newsletter .b-form_set-required {
  margin-bottom: 0;
}
.m-1774 .b-product_notify_me-submit {
  border-radius: 0;
}
.m-1774 .b-newsletters-submit {
  border-radius: 0;
}
.m-1774 .b-badges-item {
  border-radius: 0;
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
  padding-bottom: 1px;
  padding-top: 2px;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-drawer.m-width_guide .b-drawer-content {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.m-1774 .b-product_sticky_panel-image {
  border-radius: 0;
}

.m-1774 .b-country_selector-submit {
  border-radius: 0;
  line-height: 48px;
  background: #282727;
  border-color: #ffffff;
  color: #ffffff;
}
@media not all and (pointer: coarse) {
  .m-1774 .b-country_selector-submit:hover {
    background: transparent;
    border-color: #282727;
    color: #282727;
  }
}
.m-1774 .b-country_selector-submit:active {
  background: transparent;
  border-color: #282727;
  color: #282727;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-drawer-header {
    padding-bottom: 20px;
    padding-inline-end: 24px;
    padding-inline-start: 32px;
  }
  .m-1774 .b-drawer-body {
    line-height: 1.36em;
    margin-bottom: 24px;
  }
  .m-1774 .b-drawer.m-hamburger_menu .b-drawer-header {
    padding: 0 38px 22px 22px;
  }
  .m-1774 .b-drawer.m-cart_overlay .b-drawer-header {
    padding-inline-end: 32px;
  }
  .m-1774 .b-drawer.m-size_guide .b-drawer-title, .m-1774 .b-drawer.m-width_guide .b-drawer-title {
    font-size: 28px;
  }
  .m-1774 .b-drawer.m-size_guide .l-static_page, .m-1774 .b-drawer.m-width_guide .l-static_page {
    margin-top: 10px;
  }
}
.m-1774 .b-drawer-title {
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}
.m-1774 .b-drawer-container {
  border-radius: 0;
}
.m-1774 .b-drawer.m-hamburger_menu .b-drawer-title {
  line-height: 1;
}
.m-1774 .b-drawer .b-form_field {
  margin-bottom: 13px;
}
.m-1774 .b-drawer .b-form_field-label {
  margin-inline-start: 9px;
}
.m-1774 .b-drawer .b-form_field-label.m-focus, .m-1774 .b-drawer .b-form_field-label.m-select {
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}
.m-1774 .b-drawer .b-form_actions {
  margin-top: 22px;
}
.m-1774 .b-drawer .b-select-input {
  background-color: transparent;
  border-bottom: 1px solid #a4a4aa;
  border-radius: 0;
  box-shadow: none;
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
  padding-inline-start: 8px;
}
.m-1774 .b-drawer.m-country_selector, .m-1774 .b-drawer.m-country_selector_sl {
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}
.m-1774 .b-drawer.m-country_selector.m-black_1774 .b-drawer-container, .m-1774 .b-drawer.m-country_selector_sl.m-black_1774 .b-drawer-container {
  background-color: #000;
  color: #ffffff;
  max-width: 100%;
}
.m-1774 .b-drawer.m-country_selector.m-black_1774 .b-drawer-header, .m-1774 .b-drawer.m-country_selector_sl.m-black_1774 .b-drawer-header {
  border-color: #77767f;
}
.m-1774 .b-drawer.m-country_selector.m-black_1774 .b-icon_accordion::before, .m-1774 .b-drawer.m-country_selector_sl.m-black_1774 .b-icon_accordion::before {
  background: url("./images/icons/plus1774.svg") no-repeat;
}
.m-1774 .b-drawer.m-country_selector.m-black_1774 .b-icon_accordion::after, .m-1774 .b-drawer.m-country_selector_sl.m-black_1774 .b-icon_accordion::after {
  background: url("./images/icons/minus1774.svg") no-repeat;
}
.m-1774 .b-drawer.m-country_selector.m-black_1774 .b-accordion, .m-1774 .b-drawer.m-country_selector_sl.m-black_1774 .b-accordion {
  box-shadow: none;
}
.m-1774 .b-drawer.m-country_selector.m-black_1774 .b-accordion-item, .m-1774 .b-drawer.m-country_selector_sl.m-black_1774 .b-accordion-item {
  border-bottom: 1px solid #d2d1d4;
  box-shadow: none;
}
.m-1774 .b-drawer.m-country_selector.m-black_1774 .b-accordion-item:first-child, .m-1774 .b-drawer.m-country_selector_sl.m-black_1774 .b-accordion-item:first-child {
  border-top: 1px solid #d2d1d4;
}
.m-1774 .b-drawer.m-country_selector.m-black_1774 .b-accordion-button:hover, .m-1774 .b-drawer.m-country_selector_sl.m-black_1774 .b-accordion-button:hover {
  color: #ffffff;
}
.m-1774 .b-drawer.m-country_selector.m-black_1774 .b-drawer-close, .m-1774 .b-drawer.m-country_selector_sl.m-black_1774 .b-drawer-close {
  color: #ffffff;
}
.m-1774 .b-drawer.m-country_selector.m-black_1774 .b-country_selector-submit, .m-1774 .b-drawer.m-country_selector_sl.m-black_1774 .b-country_selector-submit {
  border-radius: 0;
  line-height: 48px;
  background: #ffffff;
  border-color: #ffffff;
  color: #282727;
}
@media not all and (pointer: coarse) {
  .m-1774 .b-drawer.m-country_selector.m-black_1774 .b-country_selector-submit:hover, .m-1774 .b-drawer.m-country_selector_sl.m-black_1774 .b-country_selector-submit:hover {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
  }
}
.m-1774 .b-drawer.m-country_selector.m-black_1774 .b-country_selector-submit:active, .m-1774 .b-drawer.m-country_selector_sl.m-black_1774 .b-country_selector-submit:active {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.m-1774 .b-drawer.m-country_selector.m-black_1774 .b-select-input, .m-1774 .b-drawer.m-country_selector_sl.m-black_1774 .b-select-input {
  color: #ffffff;
}
.m-1774 .b-drawer.m-country_selector.m-black_1774 .b-form_field-label, .m-1774 .b-drawer.m-country_selector_sl.m-black_1774 .b-form_field-label {
  color: #d2d1d4;
}

.m-1774 .b-header_dialog .b-message,
.m-1774 .b-minicart .b-message {
  background-color: transparent;
  border-radius: 0;
  border-top-width: 0.5px;
  color: #ffffff;
  width: 100%;
}
.m-1774 .b-header_dialog .b-message.m-error,
.m-1774 .b-minicart .b-message.m-error {
  border-color: #ff9d9d;
  color: #ff9d9d;
}
.m-1774 .b-header_dialog .b-message.m-error::before,
.m-1774 .b-minicart .b-message.m-error::before {
  content: url("./images/icons/1774/error.svg");
  margin-top: -2px;
}
.m-1774 .b-header_dialog .b-message.m-success,
.m-1774 .b-minicart .b-message.m-success {
  border-color: #71d471;
}
.m-1774 .b-header_dialog .b-message.m-success::before,
.m-1774 .b-minicart .b-message.m-success::before {
  content: url("./images/icons/1774/tick.svg");
}
.m-1774 .b-header_dialog .b-message.m-warning,
.m-1774 .b-minicart .b-message.m-warning {
  border-color: #ffffff;
}
.m-1774 .b-header_dialog .b-message.m-warning::before,
.m-1774 .b-minicart .b-message.m-warning::before {
  content: url("./images/icons/1774/info.svg");
}
.m-1774 .b-header_dialog {
  background-color: #000;
  border: 0.5px solid #77767f;
  border-radius: 0;
  color: #ffffff;
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
  top: 58px;
}
.m-1774 .b-header_dialog:not(.m-loading_long)::after {
  width: 190px;
}
.m-1774 .b-header_dialog.m-loading_long::before {
  background: transparent;
}
.m-1774 .b-header_dialog-header .b-modal-close svg {
  color: #ffffff;
}
.m-1774 .b-header_dialog-title {
  font-size: 28px;
  font-weight: 700;
}
.m-1774 .b-header_dialog-empty_content {
  font-weight: 400;
}
.m-1774 .b-header_dialog-content::-webkit-scrollbar {
  width: 4px;
}
.m-1774 .b-header_dialog-content::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 0;
}
.m-1774 .b-header_dialog-content::-webkit-scrollbar-track {
  background: transparent;
  border-left: 1.5px solid transparent;
  border-radius: 0;
  border-right: 1.5px solid transparent;
  box-shadow: inset 0 0 5px #a4a4aa;
}
.m-1774 .b-header_dialog .b-product_line {
  border-top: 1px solid #77767f;
  padding-bottom: 10px;
}
.m-1774 .b-header_dialog .b-product_line:first-child {
  border-top: none;
  padding-top: 0;
}
.m-1774 .b-header_dialog .b-product_line-subtitle {
  color: #bbbbbf;
  font-size: 14px;
  font-weight: 400;
}
.m-1774 .b-header_dialog .b-product_line-title {
  margin-bottom: 6px;
}
.m-1774 .b-header_dialog .b-product_line-title a:hover {
  color: #ffffff;
}
.m-1774 .b-header_dialog .b-product_line-info {
  margin-top: 0;
}
.m-1774 .b-header_dialog .b-product_line-attribute {
  color: #bbbbbf;
  font-weight: 400;
}
.m-1774 .b-header_dialog .b-product_line-message {
  padding: 14.5px 16px;
}
.m-1774 .b-header_dialog-messages {
  border-bottom: none;
}
.m-1774 .b-header_dialog-footer {
  border-color: #77767f;
}
.m-1774 .b-header_dialog .b-user_greeting {
  border-color: #77767f;
}
.m-1774 .b-header_dialog .b-account_nav {
  overflow: visible;
}
.m-1774 .b-header_dialog .b-account_nav-item:not(.m-logout):hover {
  border-radius: 4px;
  color: #ffffff;
  outline: 1px solid #ffffff;
}
.m-1774 .b-header_dialog .b-account_nav-item.m-logout {
  border-color: #77767f;
}
.m-1774 .b-header_dialog .b-account_nav-item.m-logout:hover, .m-1774 .b-header_dialog .b-account_nav-item.m-logout:hover .b-link {
  color: #ffffff;
}

.m-1774 .b-search_toggle {
  height: 36px;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-search_toggle {
    border: 0.5px solid #898992;
    padding-inline-end: 10px;
    padding-inline-start: 12px;
    width: 215px;
  }
  .m-1774 .b-search_toggle-text {
    color: #898992;
    font-size: 9px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
  }
}
.m-1774 .b-search_toggle:hover .b-search_toggle-icon {
  color: #ffffff;
}
.m-1774 .b-search_input-submit {
  border-radius: 0;
}
.m-1774 .b-search_input-submit.m-active {
  background: #000;
}
.m-1774 .b-search_input-submit.m-active:hover {
  color: #ffffff;
}
.m-1774 .b-search_input-after {
  background: #000;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-search_input-input {
    font-size: 32px;
  }
}
.m-1774 .b-popular_searches-option {
  border-radius: 0;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-suggestions-content {
    width: auto;
  }
  .m-1774 .b-suggestions-container_scroll {
    justify-content: space-between;
  }
  .m-1774 .b-suggestions-container_scroll.m-products_empty {
    display: flex;
  }
  .m-1774 .b-suggestions-container_scroll.m-products_empty .b-suggestions-content {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .m-1774 .b-suggestions-option:first-child {
    margin-top: 20px;
  }
  .m-1774 .b-suggestions-option:last-child {
    margin-bottom: 16px;
  }
}
.m-1774 .b-suggestions_product-title {
  font-size: 14px;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}
.m-1774 .b-suggestions_product:hover .b-suggestions_product-title, .m-1774 .b-suggestions_product.m-focused .b-suggestions_product-title {
  color: #000;
}
.m-1774 .b-suggestions_product-picture_wrap {
  margin-inline-end: 16px;
}
.m-1774 .b-header_search-wrap, .m-1774 .b-header_search-title, .m-1774 .b-header_search-title_no_results {
  text-align: center;
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-header_search-title_no_results {
    font-size: 56px;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1439.9px), screen and (min-width: 768px) and (max-width: 1179.9px) {
  .m-1774 .b-header_search.m-only_products {
    margin-bottom: -41px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 1179.9px) {
  .m-1774 .b-header_search.m-only_products {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .m-1774 .b-header_search-suggestion {
    margin-top: 24px;
  }
}
.m-1774 .b-header_search-keywords {
  text-decoration: none;
}
.m-1774 .b-search_noresults {
  margin-inline: auto;
}
.m-1774 .b-tab_list.m-search {
  justify-content: center;
}
.m-1774 .b-content_item-highlight {
  background: #ebebea;
}
.m-1774 .b-search_incorrect-list {
  font-size: 14px;
}
.m-1774 .b-search_incorrect-item::before {
  background-color: #000;
}

@media screen and (min-width: 1180px) {
  .m-1774 .l-plp {
    margin-top: 90px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .m-1774 .l-plp {
    margin-top: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .m-1774 .l-plp {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .m-1774 .l-plp-refinement {
    width: 22.0833333333%;
  }
}
.m-1774 .l-search .b-carousel-title {
  font-size: 32px;
}
.m-1774 .b-breadcrumbs-item:last-child .b-breadcrumbs-link {
  pointer-events: none;
}
.m-1774 .b-applied_filters-item {
  border-radius: 0;
}
.m-1774 .b-applied_filters-color_icon {
  border-radius: 100%;
}
@media screen and (max-width: 1439.9px) {
  .m-1774 .b-plp_actions {
    align-items: center;
    column-gap: 40px;
    display: flex;
    flex-wrap: wrap;
    top: 123px;
  }
  .m-1774 .b-plp_actions:not(.m-has_count) {
    justify-content: space-between;
  }
}
.m-1774 .b-plp_actions-results_count {
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
  font-size: 16px;
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-plp_actions-results_count {
    width: 100%;
  }
}
.m-1774 .b-plp_actions-refinements_toggle, .m-1774 .b-plp_actions-sorting_label,
.m-1774 .b-plp_actions .b-select-input {
  border: 0;
  border-radius: 0;
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 1439.9px) {
  .m-1774 .b-plp_actions-refinements_toggle, .m-1774 .b-plp_actions-sorting_label,
  .m-1774 .b-plp_actions .b-select-input {
    box-shadow: none;
    height: auto;
    padding: 0;
    text-transform: none;
  }
}
.m-1774 .b-plp_actions-refinements_toggle {
  width: auto;
}
.m-1774 .b-plp_actions-refinements_toggle:active {
  background: transparent;
  color: initial;
}
@media screen and (max-width: 1439.9px) {
  .m-1774 .b-plp_actions-sorting_label {
    height: 100%;
    position: static;
    width: auto;
  }
  .m-1774 .b-plp_actions-sorting_label svg {
    width: 20px;
  }
}
.m-1774 .b-plp_actions-sorting {
  height: auto;
  width: auto;
}
@media screen and (max-width: 1439.9px) {
  .m-1774 .b-plp_actions-sorting .b-select {
    position: absolute;
  }
  .m-1774 .b-plp_actions-sorting {
    margin-inline-start: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-plp_actions-sorting {
    margin-inline-start: auto;
  }
}
.m-1774 .b-plp_actions-refinements_icon svg {
  height: 20px;
  width: 20px;
}
@media screen and (max-width: 1439.9px) {
  .m-1774 .b-plp_actions.m-has_count .b-plp_actions-refinements_toggle {
    margin-inline-end: 0;
    margin-inline-start: auto;
  }
}
@media screen and (max-width: 767.9px) {
  .m-1774 .b-plp_actions.m-has_count .b-plp_actions-refinements_toggle {
    margin-inline-start: 0;
  }
}
.m-1774 .b-refinement_swatch {
  font-weight: 400;
}
.m-1774 .b-refinement_swatch.m-swatch .b-refinement_swatch-value {
  border-radius: 100%;
  box-shadow: 0 0 0 0.5px #898992;
  height: 20px;
  width: 20px;
}
.m-1774 .b-refinement_swatch[aria-checked=true] .b-refinement_swatch-value_overlay {
  border-radius: 0;
}
.m-1774 .b-refinement-list.m-wide_swatches .b-refinement_swatch, .m-1774 .b-refinement-list.m-color .b-refinement_swatch {
  border-radius: 0;
  box-shadow: inset 0 0 0 1px #d2d1d4;
}
@media not all and (pointer: coarse) {
  .m-1774 .b-refinement-list.m-wide_swatches .b-refinement_swatch:hover, .m-1774 .b-refinement-list.m-color .b-refinement_swatch:hover {
    box-shadow: inset 0 0 0 1px #282727;
  }
}
.m-1774 .b-refinement-list.m-wide_swatches .b-refinement_swatch[aria-checked=true], .m-1774 .b-refinement-list.m-color .b-refinement_swatch[aria-checked=true] {
  box-shadow: inset 0 0 0 1px #282727;
}
.m-1774 .b-refinement-list.m-name_size .b-refinement_swatch-value {
  border-radius: 0;
  box-shadow: inset 0 0 0 1px #d2d1d4;
}
@media not all and (pointer: coarse) {
  .m-1774 .b-refinement-list.m-name_size .b-refinement_swatch-value:hover {
    box-shadow: inset 0 0 0 1px #282727;
  }
}
.m-1774 .b-refinement-list.m-name_size .b-refinement_swatch[aria-checked=true] .b-refinement_swatch-value {
  border-radius: 0;
  box-shadow: inset 0 0 0 1px #282727;
}
.m-1774 .b-refinement-list.m-boolean {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.m-1774 .b-refinement-list.m-boolean .b-refinement_checkbox-icon {
  border-color: #898992;
  border-radius: 0;
  border-width: 1px;
}
.m-1774 .b-refinement-list.m-boolean .b-refinement_checkbox[aria-checked=true] .b-refinement_checkbox-icon path {
  transform: scale(1.2);
}
.m-1774 .b-refinement-list.m-boolean .b-refinement-list_item {
  width: calc(50% - 3px);
}
.m-1774 .b-refinement-list.m-boolean .b-refinement-list_item.m-refinement_checkbox {
  width: 100%;
}
.m-1774 .b-refinement_range-field {
  border-radius: 0;
}
.m-1774 .b-button.m-outline {
  border-radius: 0;
}
.m-1774 .b-load_more-button {
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}
.m-1774 .l-plp_grid .b-load_more-button {
  line-height: 100%;
  max-width: max-content;
  min-width: 240px;
}
.m-1774 .l-plp_grid-tiles {
  column-gap: 4px;
}
.m-1774 .b-load_progress-description {
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}
.m-1774 .b-load_progress-indicator {
  max-width: 380px;
}
.m-1774 .b-product_tile-title {
  font-size: 14px;
  letter-spacing: 0.07em;
}
.m-1774 .b-product_tile-no_available, .m-1774 .b-product_tile-quick_view {
  color: #282727;
}
.m-1774 .b-product_tile_swatches-swatch {
  border-radius: 100%;
  height: 20px;
  min-width: auto;
  width: 20px;
}
.m-1774 .b-product_tile_swatches-swatch_image {
  border-radius: 100%;
}
.m-1774 .b-variation_swatch-value,
.m-1774 .b-variations_item.m-swatchable .b-variation_swatch-value {
  border-radius: 0;
  font-weight: 400;
}
.m-1774 .b-variations_item-tab_container {
  border-radius: 0;
}
.b-variations_item.m-size .m-1774 .b-variations_item-tab_item, .m-1774 .b-variations_item-tab_item.m-size {
  border-radius: 0;
}
.m-1774 .b-product_tile-aux_name,
.m-1774 .b-price {
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}

.m-1774 {
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}
.m-1774 .b-button_multi_state {
  border-radius: 0;
  line-height: 48px;
  background: #282727;
  border-color: #ffffff;
  color: #ffffff;
}
@media not all and (pointer: coarse) {
  .m-1774 .b-button_multi_state:hover {
    background: transparent;
    border-color: #282727;
    color: #282727;
  }
}
.m-1774 .b-button_multi_state:active {
  background: transparent;
  border-color: #282727;
  color: #282727;
}
@media screen and (max-width: 1439.9px) {
  .m-1774 .l-header.m-usablenet ~ .l-page-content .b-plp_actions {
    top: 123px;
  }
}
@media screen and (max-width: 1179.9px) {
  .m-1774 .l-header.m-usablenet ~ .l-page-content .b-plp_actions {
    top: 81px;
  }
}
@media screen and (max-width: 767.9px) {
  .m-1774 .l-header.m-usablenet ~ .l-page-content .b-plp_actions.m-has_count {
    top: 45px;
  }
}
@media screen and (min-width: 1180px) {
  .m-1774 .b-menu_bar {
    background-color: #000;
  }
  .m-1774 .b-menu_bar-link {
    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: #ffffff;
    font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
    padding: 16px 12px;
    text-transform: uppercase;
  }
  html[dir=rtl] .m-1774 .b-menu_bar-link {
    letter-spacing: 0;
  }
  .l-page.m-care_essentials .m-1774 .b-menu_bar-link, .b-dialog.m-care_essentials-product .m-1774 .b-menu_bar-link {
    letter-spacing: normal;
  }
  .m-1774 .b-menu_bar-link[aria-expanded=true], .m-1774 .b-menu_bar-link:hover, .m-1774 .b-menu_bar-item:hover .m-1774 .b-menu_bar-link {
    background-color: transparent;
  }
}
.m-1774 .b-refinement_swatch {
  font-weight: 400;
}
.m-1774 .b-refinement_swatch.m-swatch .b-refinement_swatch-value {
  border-radius: 100%;
  box-shadow: 0 0 0 0.5px #898992;
  height: 20px;
  width: 20px;
}
.m-1774 .b-refinement_swatch[aria-checked=true] .b-refinement_swatch-value_overlay {
  border-radius: 0;
}
.m-1774 .b-refinement-list.m-wide_swatches .b-refinement_swatch {
  border-radius: 0;
}
.m-1774 .b-refinement-list.m-color .b-refinement_swatch {
  border-radius: 0;
}
.m-1774 .b-refinement-list.m-color .b-refinement_swatch-value {
  box-shadow: inset 0 0 0 1px #d2d1d4;
}
.m-1774 .b-product_tile_swatches-swatch {
  border-radius: 100%;
  height: 20px;
  width: 20px;
}
.m-1774 .b-product_tile-aux_name,
.m-1774 .b-price {
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
}
.m-1774 .b-country_selector-locale_language {
  color: #bbbbbf;
}
.m-1774 .collaboration-banner-1774 img {
  width: 100%;
}
.m-1774 .ossf-intro {
  color: #59453e;
  font-family: "DIN Next CYR", "Arial", "Helvetica", sans-serif;
  font-weight: bold;
  width: 100%;
}
.m-1774 .ossf-intro-text {
  font-size: 20px;
  line-height: 30px;
  width: 70%;
}
@media screen and (max-width: 767.9px) {
  .m-1774 .ossf-intro-text {
    font-size: 16px;
    line-height: 22px;
    width: 90%;
  }
}
.m-1774 .ossf-intro-headline {
  font-size: 24px;
  width: 70%;
}
@media screen and (max-width: 767.9px) {
  .m-1774 .ossf-intro-headline {
    font-size: 18px;
    line-height: 22px;
    width: 90%;
  }
}
.m-1774 .include-product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-start;
  max-width: 1000px;
}
@media screen and (min-width: 1024px) {
  .m-1774 .include-product-list {
    gap: 15px 20px;
    padding-bottom: 15px;
  }
}
.m-1774 .include-product-list p {
  margin-bottom: 0;
}
.m-1774 .include-product-list .b-product_tile-title {
  color: #282727;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 12px 0 3px;
}
.m-1774 .include-product-item {
  color: #282727;
  text-align: start;
  width: calc(50% - 2px);
}
@media screen and (min-width: 1024px) {
  .m-1774 .include-product-item {
    width: 32%;
  }
}
.m-1774 .swiper-content_gallery {
  padding-top: 54px;
}
.m-1774 .swiper-content_gallery:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
}
@media screen and (min-width: 768px) and (max-width: 1179.9px) {
  .m-1774 .swiper-content_gallery:not(.swiper-initialized) .swiper-slide {
    max-width: 33%;
  }
}
@media screen and (min-width: 1180px) {
  .m-1774 .swiper-content_gallery:not(.swiper-initialized) .swiper-slide {
    max-width: 20%;
  }
}
@media screen and (max-width: 767.9px) {
  .m-1774 .swiper-content_gallery img {
    width: 100%;
  }
}
.m-1774 .swiper-content_gallery .swiper-button {
  color: #000;
  height: 36px;
  margin: 0;
  position: absolute;
  top: 0;
  width: 36px;
}
.m-1774 .swiper-content_gallery .swiper-button-next {
  inset-inline-end: 32px;
}
@media screen and (max-width: 767.9px) {
  .m-1774 .swiper-content_gallery .swiper-button-next {
    inset-inline-end: 6px;
  }
}
.m-1774 .swiper-content_gallery .swiper-button-next::after {
  content: none;
}
.m-1774 .swiper-content_gallery .swiper-button-prev {
  inset-inline-end: 68px;
  left: auto;
}
@media screen and (max-width: 767.9px) {
  .m-1774 .swiper-content_gallery .swiper-button-prev {
    inset-inline-end: 42px;
  }
}
.m-1774 .swiper-content_gallery .swiper-button-prev::after {
  content: none;
}
.m-1774 .video-teaser video {
  display: block;
}
.m-1774 .l-section {
  margin-block: 0;
}
.m-1774 .l-section.m-full_bleed {
  max-width: none;
}

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