@charset "UTF-8";
/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
/**
* Селекторы для таргетинга на конкретные браузеры без влияния на специфику или
* ограничение использования в медиа-запросах
*
* Плюсы:
* - Работает с медиа-запросами
*
* Минусы:
* - Не может использоваться с @extend, так как это приведет к недействительности других селекторов
*/
/**
* Целевой Internet Explorer, но не Edge
*
* @demo
*	div {
*		@include browser-ie () {
*			// ...
*		}
*	}
*/
/**
* Target IE-Edge
*/
/**
* Target Firefox
*/
/**
* Target Safari
*/
/**
* Target all WebKit browsers
*/
/**
* Remove the unit of a length
*
* @param {Number} $number - Number to remove unit from
* @return {Number} - Unitless number
*/
/**
* Returns nth property from css property list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$bottom-margin: css-nth(10px 20px 30px 40px, 3); // 30px
*	$bottom-margin: css-nth(10px 20px, 3); // 10px
*/
/**
* Remove nth elements from the list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$list: remove-nth(10px 20px 30px 40px, 3); // 10px 20px 40px
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for one in $index position
*
* 'inherit' value when used with 'margins' or 'paddings' mixin will not produce any output
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-only: breakpointPickCssNth($spacer, 1);
* => (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
*	@include margins($spacer-top-only);
*
*	$spacer-bottom-only: breakpointPickCssNth($spacer, 3);
* => (xs: inherit inherit 12px inherit, md: inherit inherit 20px inherit)
*	@include paddings($spacer-bottom-only);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for top (first) and bottom (third) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-bottom: breakpoint-pick-top-bottom($spacer);
* => (xs: 10px inherit 12px inherit, md: 20px inherit 20px inherit)
*	@include margins($spacer-top-bottom);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for right (second) and left (fourth) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-left-right: breakpoint-pick-top-bottom($spacer);
* => (xs: inherit 11px inherit 13px, md: inherit 0 inherit 0)
*	@include margins($spacer-left-right);
*/
/**
* In each $list pair of $breakpoint: $value merges all values skipping 'inherit'
*
* @example
*	$list-a: (xs: 10px inherit 20px inherit, md: 30px inherit);
*	$list-b: (xs: 40px inherit inherit inherit, md: inherit 50px);
*
*	$list-result: breakpointMapMerge($list-a, $list-b);
*	// (xs: 40px inherit 20px inherit, md: 30px 50px);
*/
/**
* Returns deeply nested property from a map
*
* @function mapGetDeep Deep get for sass maps
* @author https://css-tricks.com/snippets/sass/deep-getset-maps/
* @param {Map} $map - Map
* @param {Arglist} $keys - Key chain
*
* @example
*	$paddings: mapGetDeep($grid-containers, default, paddings, xs);
*/
/**
* Mixin for object-fit plugin
*
* @see https://github.com/bfred-it/object-fit-images
* @see components/_background.scss
* @example
*	@include object-fit(contain);
*	@include object-fit(cover, top);
*/
/**
* Split string into a list
*
* @property {string} $string String
* @property {string} $separator Separator
*
* @example
*	$list: str-split("hello+world", "+"); // (hello, world)
*/
/**
* Converts SVG into data url so that this SVG could be used as a
* background image
*
* @example
*	background-image: svgtodataurl("<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">...</svg>");
*/
/**
* Remove keys from the map
*
* @param {Map} $map - Map from which to remove items
* @param {List} $keys - List of keys which to remove
* @return {Map} - Map without the specified keys
*/
/**
* Качество рендеринга изображений
* В Chrome качество фонового изображения не самое лучшее при использовании background-size
*/
@font-face {
  src: url("../fonts/Roboto-Regular.woff") format("woff");
  font-family: "Roboto";
  font-weight: 400;
  font-style: normal; }

@font-face {
  src: url("../fonts/Inter-Regular.woff") format("woff");
  font-family: "Inter";
  font-weight: 400;
  font-style: normal; }

@font-face {
  src: url("../fonts/Montserrat-Regular.woff") format("woff");
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal; }

@font-face {
  src: url("../fonts/Inter-Medium.woff") format("woff");
  font-family: "Inter";
  font-weight: 500;
  font-style: normal; }

@font-face {
  src: url("../fonts/Montserrat-Medium.woff") format("woff");
  font-family: "Montserrat";
  font-weight: 500;
  font-style: normal; }

@font-face {
  src: url("../fonts/Inter-SemiBold.woff") format("woff");
  font-family: "Inter";
  font-weight: 600;
  font-style: normal; }

@font-face {
  src: url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-family: "Montserrat";
  font-weight: 600;
  font-style: normal; }

@font-face {
  src: url("../fonts/Montserrat-Bold.woff") format("woff");
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal; }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/**
 * Swiper 11.0.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 24, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal; }

:root {
  --swiper-theme-color:#007aff; }

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1; }

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block; }

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0); }

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y; }

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x; }

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto; }

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height,-webkit-transform;
  transition-property: height,-webkit-transform;
  transition-property: transform,height;
  transition-property: transform,height,-webkit-transform; }

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px; }

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px; }

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none; }

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none; }

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start; }

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory; }

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory; }

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none; }

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none; }

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999; }

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always; }

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before); }

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after); }

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before); }

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after); }

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15); }

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent; }

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear; }

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff; }

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000; }

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0); }

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none; }

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size); }

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size); }

:root {
  --swiper-navigation-size:44px; }

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size)/ 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color)); }

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none; }

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important; }

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center; }

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg); }

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto; }

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto; }

.swiper-button-lock {
  display: none; }

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1; }

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: 'prev'; }

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto; }

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: 'next'; }

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: .3s opacity;
  transition: .3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important; }

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%; }

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
  position: relative; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33); }

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2); }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet:only-child {
  display: none !important; }

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color)); }

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0); }

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block; }

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px; }

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: .2s transform,.2s top;
  transition: .2s transform,.2s top; }

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px); }

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap; }

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: .2s transform,.2s left;
  transition: .2s transform,.2s left; }

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: .2s transform,.2s right;
  transition: .2s transform,.2s right; }

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit); }

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute; }

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top; }

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top; }

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0; }

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-lock {
  display: none; }

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
      touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1)); }

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important; }

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%)); }

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%)); }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-scrollbar-lock {
  display: none; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center; }

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
      touch-action: none; }

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out; }

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity; }

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-fade .swiper-slide-active {
  pointer-events: auto; }

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-cube {
  overflow: visible; }

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0; }

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible; }

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: .6;
  z-index: 0; }

.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px); }

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-flip {
  overflow: visible; }

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity,height,-webkit-transform;
  transition-property: opacity,height,-webkit-transform;
  transition-property: transform,opacity,height;
  transition-property: transform,opacity,height,-webkit-transform; }

.swiper-cards {
  overflow: visible; }

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden; }

@font-face {
  font-family: 'lg';
  src: url("../fonts/lightgallery/lg.woff2?io9a6k") format("woff2"), url("../fonts/lightgallery/lg.ttf?io9a6k") format("truetype"), url("../fonts/lightgallery/lg.woff?io9a6k") format("woff"), url("../fonts/lightgallery/lg.svg?io9a6k#lg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block; }

.lg-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'lg' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.lg-container {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; }

.lg-next,
.lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1084;
  outline: none;
  border: none; }
  .lg-next.disabled,
  .lg-prev.disabled {
    opacity: 0 !important;
    cursor: default; }
  .lg-next:hover:not(.disabled),
  .lg-prev:hover:not(.disabled) {
    color: #fff; }
  .lg-single-item .lg-next, .lg-single-item
  .lg-prev {
    display: none; }

.lg-next {
  right: 20px; }
  .lg-next:before {
    content: '\e095'; }

.lg-prev {
  left: 20px; }
  .lg-prev:after {
    content: '\e094'; }

@-webkit-keyframes lg-right-end {
  0% {
    left: 0; }
  50% {
    left: -30px; }
  100% {
    left: 0; } }

@keyframes lg-right-end {
  0% {
    left: 0; }
  50% {
    left: -30px; }
  100% {
    left: 0; } }

@-webkit-keyframes lg-left-end {
  0% {
    left: 0; }
  50% {
    left: 30px; }
  100% {
    left: 0; } }

@keyframes lg-left-end {
  0% {
    left: 0; }
  50% {
    left: 30px; }
  100% {
    left: 0; } }

.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative; }

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative; }

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%; }
  .lg-media-overlap .lg-toolbar {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)); }
  .lg-toolbar .lg-icon {
    color: #999;
    cursor: pointer;
    float: right;
    font-size: 24px;
    height: 47px;
    line-height: 27px;
    padding: 10px 0;
    text-align: center;
    width: 50px;
    text-decoration: none !important;
    outline: medium none;
    will-change: color;
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
    background: none;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none; }
    .lg-toolbar .lg-icon.lg-icon-18 {
      font-size: 18px; }
    .lg-toolbar .lg-icon:hover {
      color: #fff; }
  .lg-toolbar .lg-close:after {
    content: '\e070'; }
  .lg-toolbar .lg-maximize {
    font-size: 22px; }
    .lg-toolbar .lg-maximize:after {
      content: '\e90a'; }
  .lg-toolbar .lg-download:after {
    content: '\e0f2'; }

.lg-sub-html {
  color: #eee;
  font-size: 16px;
  padding: 10px 40px;
  text-align: center;
  z-index: 1080;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out 0s;
  transition: opacity 0.2s ease-out 0s; }
  .lg-sub-html h4 {
    margin: 0;
    font-size: 13px;
    font-weight: bold; }
  .lg-sub-html p {
    font-size: 12px;
    margin: 5px 0 0; }
  .lg-sub-html a {
    color: inherit; }
    .lg-sub-html a:hover {
      text-decoration: underline; }
  .lg-media-overlap .lg-sub-html {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6)); }
  .lg-item .lg-sub-html {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0; }

.lg-error-msg {
  font-size: 14px;
  color: #999; }

.lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  height: 47px;
  vertical-align: middle; }

.lg-closing .lg-toolbar,
.lg-closing .lg-prev,
.lg-closing .lg-next,
.lg-closing .lg-sub-html {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -webkit-transition: opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s; }

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont {
  opacity: 0;
  -ms-transform: scale3d(0.5, 0.5, 0.5);
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important; }

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont {
  opacity: 1;
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1); }

.lg-icon:focus-visible {
  color: #fff;
  border-radius: 3px;
  outline: 1px dashed rgba(255, 255, 255, 0.6); }

.lg-toolbar .lg-icon:focus-visible {
  border-radius: 8px;
  outline-offset: -5px; }

.lg-outer .lg-thumb-outer {
  background-color: #0d0a0a;
  width: 100%;
  max-height: 350px;
  overflow: hidden;
  float: left; }
  .lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab; }
  .lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing; }
  .lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
    -webkit-transition-duration: 0s !important;
    transition-duration: 0s !important; }
  .lg-outer .lg-thumb-outer.lg-rebuilding-thumbnails .lg-thumb {
    -webkit-transition-duration: 0s !important;
    transition-duration: 0s !important; }
  .lg-outer .lg-thumb-outer.lg-thumb-align-middle {
    text-align: center; }
  .lg-outer .lg-thumb-outer.lg-thumb-align-left {
    text-align: left; }
  .lg-outer .lg-thumb-outer.lg-thumb-align-right {
    text-align: right; }

.lg-outer.lg-single-item .lg-thumb-outer {
  display: none; }

.lg-outer .lg-thumb {
  padding: 5px 0;
  height: 100%;
  margin-bottom: -5px;
  display: inline-block;
  vertical-align: middle; }
  @media (min-width: 768px) {
    .lg-outer .lg-thumb {
      padding: 10px 0; } }

.lg-outer .lg-thumb-item {
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border-radius: 2px;
  margin-bottom: 5px;
  will-change: border-color; }
  @media (min-width: 768px) {
    .lg-outer .lg-thumb-item {
      border-radius: 4px;
      border: 2px solid #fff;
      -webkit-transition: border-color 0.25s ease;
      transition: border-color 0.25s ease; } }
  .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #a90707; }
  .lg-outer .lg-thumb-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block; }

.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0; }

.lg-outer .lg-toggle-thumb:after {
  content: '\e1ff'; }

.lg-outer.lg-animate-thumb .lg-thumb {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.lg-outer .lg-video-cont {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  position: relative; }
  .lg-outer .lg-video-cont .lg-object {
    width: 100% !important;
    height: 100% !important; }

.lg-outer .lg-has-iframe .lg-video-cont {
  -webkit-overflow-scrolling: touch;
  overflow: auto; }

.lg-outer .lg-video-object {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: 3; }

.lg-outer .lg-video-poster {
  z-index: 1; }

.lg-outer .lg-has-video .lg-video-object {
  opacity: 0;
  will-change: opacity;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in; }

.lg-outer .lg-has-video.lg-video-loaded .lg-video-poster,
.lg-outer .lg-has-video.lg-video-loaded .lg-video-play-button {
  opacity: 0 !important; }

.lg-outer .lg-has-video.lg-video-loaded .lg-video-object {
  opacity: 1; }

@-webkit-keyframes lg-play-stroke {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0; }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px; }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px; } }

@keyframes lg-play-stroke {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0; }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px; }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px; } }

@-webkit-keyframes lg-play-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes lg-play-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.lg-video-play-button {
  width: 18%;
  max-width: 140px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  will-change: opacity, transform;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s;
  -webkit-transition: opacity 0.1s, -webkit-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28);
  transition: opacity 0.1s, -webkit-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28);
  transition: transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s;
  transition: transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s, -webkit-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28); }
  .lg-video-play-button:hover .lg-video-play-icon-bg,
  .lg-video-play-button:hover .lg-video-play-icon {
    opacity: 1; }

.lg-video-play-icon-bg {
  fill: none;
  stroke-width: 3%;
  stroke: #fcfcfc;
  opacity: 0.6;
  will-change: opacity;
  -webkit-transition: opacity 0.12s ease-in;
  transition: opacity 0.12s ease-in; }

.lg-video-play-icon-circle {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  fill: none;
  stroke-width: 3%;
  stroke: rgba(30, 30, 30, 0.9);
  stroke-opacity: 1;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200; }

.lg-video-play-icon {
  position: absolute;
  width: 25%;
  max-width: 120px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  opacity: 0.6;
  will-change: opacity;
  -webkit-transition: opacity 0.12s ease-in;
  transition: opacity 0.12s ease-in; }
  .lg-video-play-icon .lg-video-play-icon-inner {
    fill: #fcfcfc; }

.lg-video-loading .lg-video-play-icon-circle {
  -webkit-animation: lg-play-rotate 2s linear 0.25s infinite, lg-play-stroke 1.5s ease-in-out 0.25s infinite;
          animation: lg-play-rotate 2s linear 0.25s infinite, lg-play-stroke 1.5s ease-in-out 0.25s infinite; }

.lg-video-loaded .lg-video-play-button {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0.7);
      -ms-transform: translate(-50%, -50%) scale(0.7);
          transform: translate(-50%, -50%) scale(0.7); }

.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1083;
  opacity: 0;
  will-change: opacity;
  -webkit-transition: opacity 0.08s ease 0s;
  transition: opacity 0.08s ease 0s; }
  .lg-progress-bar .lg-progress {
    background-color: #a90707;
    height: 5px;
    width: 0; }
  .lg-progress-bar.lg-start .lg-progress {
    width: 100%; }
  .lg-show-autoplay .lg-progress-bar {
    opacity: 1; }

.lg-autoplay-button:after {
  content: '\e01d'; }
  .lg-show-autoplay .lg-autoplay-button:after {
    content: '\e01a'; }

.lg-single-item .lg-autoplay-button {
  opacity: 0.75;
  pointer-events: none; }

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition-duration: 0ms !important;
  transition-duration: 0ms !important; }

.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  will-change: transform;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
  transition: -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
  transition: transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
  transition: transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s; }

.lg-outer.lg-use-transition-for-zoom.lg-zoom-drag-transition .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  will-change: transform;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: -webkit-transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s; }

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s !important;
  -webkit-transition: opacity 0.15s, -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s !important;
  transition: opacity 0.15s, -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s !important;
  transition: transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s !important;
  transition: transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s, -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.no-transition,
  .lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.no-transition {
    -webkit-transition: none !important;
    transition: none !important; }
  .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition,
  .lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition {
    -webkit-transform: scale3d(1, 1, 1) translate3d(-50%, -50%, 0px) !important;
            transform: scale3d(1, 1, 1) translate3d(-50%, -50%, 0px) !important;
    max-width: none !important;
    max-height: none !important;
    top: 50% !important;
    left: 50% !important; }
  .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-x,
  .lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-x {
    -webkit-transform: scale3d(1, 1, 1) translate3d(-50%, 0, 0px) !important;
            transform: scale3d(1, 1, 1) translate3d(-50%, 0, 0px) !important;
    top: 0 !important;
    left: 50% !important;
    max-width: none !important;
    max-height: none !important; }
  .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-y,
  .lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-y {
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, -50%, 0px) !important;
            transform: scale3d(1, 1, 1) translate3d(0, -50%, 0px) !important;
    top: 50% !important;
    left: 0% !important;
    max-width: none !important;
    max-height: none !important; }

.lg-icon.lg-zoom-in:after {
  content: '\e311'; }

.lg-actual-size .lg-icon.lg-zoom-in {
  opacity: 0.5;
  pointer-events: none; }

.lg-icon.lg-actual-size {
  font-size: 20px; }
  .lg-icon.lg-actual-size:after {
    content: '\e033'; }

.lg-icon.lg-zoom-out {
  opacity: 0.5;
  pointer-events: none; }
  .lg-icon.lg-zoom-out:after {
    content: '\e312'; }
  .lg-zoomed .lg-icon.lg-zoom-out {
    opacity: 1;
    pointer-events: auto; }

.lg-outer[data-lg-slide-type='video'] .lg-zoom-in,
.lg-outer[data-lg-slide-type='video'] .lg-actual-size,
.lg-outer[data-lg-slide-type='video'] .lg-zoom-out, .lg-outer[data-lg-slide-type='iframe'] .lg-zoom-in,
.lg-outer[data-lg-slide-type='iframe'] .lg-actual-size,
.lg-outer[data-lg-slide-type='iframe'] .lg-zoom-out, .lg-outer.lg-first-slide-loading .lg-zoom-in,
.lg-outer.lg-first-slide-loading .lg-actual-size,
.lg-outer.lg-first-slide-loading .lg-zoom-out {
  opacity: 0.75;
  pointer-events: none; }

.lg-outer .lg-pager-outer {
  text-align: center;
  z-index: 1080;
  height: 10px;
  margin-bottom: 10px; }
  .lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
    overflow: visible; }

.lg-outer.lg-single-item .lg-pager-outer {
  display: none; }

.lg-outer .lg-pager-cont {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  margin: 0 5px; }
  .lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  .lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
    -webkit-box-shadow: 0 0 0 2px white inset;
            box-shadow: 0 0 0 2px white inset; }

.lg-outer .lg-pager-thumb-cont {
  background-color: #fff;
  color: #fff;
  bottom: 100%;
  height: 83px;
  left: 0;
  margin-bottom: 20px;
  margin-left: -60px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  width: 120px;
  border-radius: 3px;
  will-change: transform, opacity;
  -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0); }
  .lg-outer .lg-pager-thumb-cont img {
    width: 100%;
    height: 100%; }

.lg-outer .lg-pager {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
          box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  display: block;
  height: 12px;
  -webkit-transition: box-shadow 0.3s ease 0s;
  -webkit-transition: -webkit-box-shadow 0.3s ease 0s;
  transition: -webkit-box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
  width: 12px; }
  .lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
    -webkit-box-shadow: 0 0 0 8px white inset;
            box-shadow: 0 0 0 8px white inset; }

.lg-outer .lg-caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px dashed;
  bottom: -10px;
  display: inline-block;
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  vertical-align: middle;
  width: 0; }

.lg-fullscreen:after {
  content: "\e20c"; }
  .lg-fullscreen-on .lg-fullscreen:after {
    content: "\e20d"; }

.lg-outer .lg-dropdown-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
  cursor: default;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1081;
  opacity: 0;
  visibility: hidden;
  will-change: visibility, opacity;
  -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s; }

.lg-outer.lg-dropdown-active .lg-dropdown,
.lg-outer.lg-dropdown-active .lg-dropdown-overlay {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -ms-transform: translate3d(0, 0px, 0);
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
  opacity: 1;
  visibility: visible; }

.lg-outer.lg-dropdown-active .lg-share {
  color: #fff; }

.lg-outer .lg-dropdown {
  background-color: #fff;
  border-radius: 2px;
  font-size: 14px;
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  -ms-transform: translate3d(0, 5px, 0);
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  will-change: visibility, opacity, transform;
  -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -webkit-transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
  transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s; }
  .lg-outer .lg-dropdown:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    border: 8px solid transparent;
    border-bottom-color: #fff;
    right: 16px;
    top: -16px; }
  .lg-outer .lg-dropdown > li:last-child {
    margin-bottom: 0px; }
  .lg-outer .lg-dropdown > li:hover a {
    color: #333; }
  .lg-outer .lg-dropdown a {
    color: #333;
    display: block;
    white-space: pre;
    padding: 4px 12px;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px; }
    .lg-outer .lg-dropdown a:hover {
      background-color: rgba(0, 0, 0, 0.07); }
  .lg-outer .lg-dropdown .lg-dropdown-text {
    display: inline-block;
    line-height: 1;
    margin-top: -3px;
    vertical-align: middle; }
  .lg-outer .lg-dropdown .lg-icon {
    color: #333;
    display: inline-block;
    float: none;
    font-size: 20px;
    height: auto;
    line-height: 1;
    margin-right: 8px;
    padding: 0;
    vertical-align: middle;
    width: auto; }

.lg-outer .lg-share {
  position: relative; }
  .lg-outer .lg-share:after {
    content: '\e80d'; }

.lg-outer .lg-share-facebook .lg-icon {
  color: #3b5998; }
  .lg-outer .lg-share-facebook .lg-icon:after {
    content: '\e904'; }

.lg-outer .lg-share-twitter .lg-icon {
  color: #00aced; }
  .lg-outer .lg-share-twitter .lg-icon:after {
    content: '\e907'; }

.lg-outer .lg-share-pinterest .lg-icon {
  color: #cb2027; }
  .lg-outer .lg-share-pinterest .lg-icon:after {
    content: '\e906'; }

.lg-comment-box {
  width: 420px;
  max-width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  background-color: #fff;
  will-change: transform;
  -ms-transform: translate3d(100%, 0, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s; }
  .lg-comment-box .lg-comment-title {
    margin: 0;
    color: #fff;
    font-size: 18px; }
  .lg-comment-box .lg-comment-header {
    background-color: #000;
    padding: 12px 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0; }
  .lg-comment-box .lg-comment-body {
    height: 100% !important;
    padding-top: 43px !important;
    width: 100% !important; }
  .lg-comment-box .fb-comments {
    height: 100%;
    width: 100%;
    background: url("../images/lightgallery/loading.gif") no-repeat scroll center center #fff;
    overflow-y: auto;
    display: inline-block; }
    .lg-comment-box .fb-comments[fb-xfbml-state='rendered'] {
      background-image: none; }
    .lg-comment-box .fb-comments > span {
      max-width: 100%; }
  .lg-comment-box .lg-comment-close {
    position: absolute;
    right: 5px;
    top: 12px;
    cursor: pointer;
    font-size: 20px;
    color: #999;
    will-change: color;
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear; }
    .lg-comment-box .lg-comment-close:hover {
      color: #fff; }
    .lg-comment-box .lg-comment-close:after {
      content: '\e070'; }
  .lg-comment-box iframe {
    max-width: 100% !important;
    width: 100% !important; }
  .lg-comment-box #disqus_thread {
    padding: 0 20px; }

.lg-outer .lg-comment-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
  cursor: default;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1081;
  opacity: 0;
  visibility: hidden;
  will-change: visibility, opacity;
  -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s; }

.lg-outer .lg-comment-toggle:after {
  content: '\e908'; }

.lg-outer.lg-comment-active .lg-comment-overlay {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -ms-transform: translate3d(0, 0px, 0);
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
  opacity: 1;
  visibility: visible; }

.lg-outer.lg-comment-active .lg-comment-toggle {
  color: #fff; }

.lg-outer.lg-comment-active .lg-comment-box {
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.lg-outer .lg-img-rotate {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s; }

.lg-outer[data-lg-slide-type='video'] .lg-rotate-left,
.lg-outer[data-lg-slide-type='video'] .lg-rotate-right,
.lg-outer[data-lg-slide-type='video'] .lg-flip-ver,
.lg-outer[data-lg-slide-type='video'] .lg-flip-hor, .lg-outer[data-lg-slide-type='iframe'] .lg-rotate-left,
.lg-outer[data-lg-slide-type='iframe'] .lg-rotate-right,
.lg-outer[data-lg-slide-type='iframe'] .lg-flip-ver,
.lg-outer[data-lg-slide-type='iframe'] .lg-flip-hor {
  opacity: 0.75;
  pointer-events: none; }

.lg-outer .lg-img-rotate:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.lg-rotate-left:after {
  content: '\e900'; }

.lg-rotate-right:after {
  content: '\e901'; }

.lg-icon.lg-flip-hor, .lg-icon.lg-flip-ver {
  font-size: 26px; }

.lg-flip-ver:after {
  content: '\e903'; }

.lg-flip-hor:after {
  content: '\e902'; }

.lg-medium-zoom-item {
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.lg-medium-zoom .lg-outer {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }
  .lg-medium-zoom .lg-outer.lg-grab img.lg-object {
    cursor: -webkit-zoom-out;
    cursor: zoom-out; }
  .lg-medium-zoom .lg-outer.lg-grabbing img.lg-object {
    cursor: -webkit-zoom-out;
    cursor: zoom-out; }

.lg-relative-caption .lg-outer .lg-sub-html {
  white-space: normal;
  bottom: auto;
  padding: 0;
  background-image: none; }

.lg-relative-caption .lg-outer .lg-relative-caption-item {
  opacity: 0;
  padding: 16px 0;
  -webkit-transition: 0.5s opacity ease;
  transition: 0.5s opacity ease; }

.lg-relative-caption .lg-outer .lg-show-caption .lg-relative-caption-item {
  opacity: 1; }

.lg-group:after {
  content: '';
  display: table;
  clear: both; }

.lg-container {
  display: none;
  outline: none; }
  .lg-container.lg-show {
    display: block; }

.lg-on {
  scroll-behavior: unset; }

.lg-overlay-open {
  overflow: hidden; }

.lg-toolbar,
.lg-prev,
.lg-next,
.lg-pager-outer,
.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -webkit-transition: opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s; }

.lg-show-in .lg-toolbar,
.lg-show-in .lg-prev,
.lg-show-in .lg-next,
.lg-show-in .lg-pager-outer {
  opacity: 1; }

.lg-show-in.lg-hide-sub-html .lg-sub-html {
  opacity: 1; }

.lg-show-in .lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0); }

.lg-show-in .lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0); }

.lg-show-in .lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0); }

.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0); }

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: 0.001;
  outline: none;
  will-change: auto;
  overflow: hidden;
  -webkit-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s; }
  .lg-outer * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .lg-outer.lg-zoom-from-image {
    opacity: 1; }
  .lg-outer.lg-visible {
    opacity: 1; }
  .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current {
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important; }
  .lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
    -webkit-transition-duration: 0s !important;
    transition-duration: 0s !important;
    opacity: 1; }
  .lg-outer.lg-grab img.lg-object {
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab; }
  .lg-outer.lg-grabbing img.lg-object {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing; }
  .lg-outer .lg-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .lg-outer .lg-inner {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: opacity 0s;
    transition: opacity 0s;
    white-space: nowrap; }
  .lg-outer .lg-item {
    display: none !important; }
    .lg-outer .lg-item:not(.lg-start-end-progress) {
      background: url("../images/lightgallery/loading.gif") no-repeat scroll center center transparent; }
  .lg-outer.lg-css3 .lg-prev-slide,
  .lg-outer.lg-css3 .lg-current,
  .lg-outer.lg-css3 .lg-next-slide {
    display: inline-block !important; }
  .lg-outer.lg-css .lg-current {
    display: inline-block !important; }
  .lg-outer .lg-item,
  .lg-outer .lg-img-wrap {
    display: inline-block;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%; }
    .lg-outer .lg-item:before,
    .lg-outer .lg-img-wrap:before {
      content: '';
      display: inline-block;
      height: 100%;
      vertical-align: middle; }
  .lg-outer .lg-img-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    white-space: nowrap;
    font-size: 0; }
  .lg-outer .lg-item.lg-complete {
    background-image: none; }
  .lg-outer .lg-item.lg-current {
    z-index: 1060; }
  .lg-outer .lg-object {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    position: relative; }
  .lg-outer .lg-empty-html.lg-sub-html,
  .lg-outer .lg-empty-html .lg-sub-html {
    display: none; }
  .lg-outer.lg-hide-download .lg-download {
    opacity: 0.75;
    pointer-events: none; }
  .lg-outer .lg-first-slide .lg-dummy-img {
    position: absolute;
    top: 50%;
    left: 50%; }
  .lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
    -webkit-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0);
    opacity: 1; }
  .lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
    opacity: 1;
    -webkit-transition: opacity 0.2s ease-out 0.15s;
    transition: opacity 0.2s ease-out 0.15s; }

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  will-change: auto;
  -webkit-transition: opacity 333ms ease-in 0s;
  transition: opacity 333ms ease-in 0s; }
  .lg-backdrop.in {
    opacity: 1; }

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important; }

.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.lg-css3.lg-fade .lg-item {
  opacity: 0; }
  .lg-css3.lg-fade .lg-item.lg-current {
    opacity: 1; }
  .lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
    -webkit-transition: opacity 0.1s ease 0s;
    transition: opacity 0.1s ease 0s; }

.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s; }

.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s; }

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0; }
  .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; }
  .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s; }

.lg-container {
  display: none; }
  .lg-container.lg-show {
    display: block; }
  .lg-container.lg-dragging-vertical .lg-backdrop {
    -webkit-transition-duration: 0s !important;
    transition-duration: 0s !important; }
  .lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
    -webkit-transition-duration: 0s !important;
    transition-duration: 0s !important;
    opacity: 1; }

.lg-inline .lg-backdrop,
.lg-inline .lg-outer {
  position: absolute; }

.lg-inline .lg-backdrop {
  z-index: 1; }

.lg-inline .lg-outer {
  z-index: 2; }

.lg-inline .lg-maximize:after {
  content: '\e909'; }

.lg-components {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.35s ease-out 0s;
  transition: -webkit-transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s, -webkit-transform 0.35s ease-out 0s;
  z-index: 1080;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0; }

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit; }

html {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow-x: hidden;
  min-width: 360px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  scroll-behavior: smooth; }
  html.has-cursor,
  html.has-cursor * {
    cursor: none !important; }
  html.is-lock-scroll,
  html.is-lock-scroll body {
    overflow: hidden; }

body {
  position: relative;
  overflow: hidden; }

main {
  margin: 194px 0 0 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }
  @media (max-width: 992px) {
    main {
      margin: 0; } }

h1, h2, h3, h4, h5 {
  margin: 0; }

p {
  margin: 0; }

a,
button {
  outline: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer; }

a {
  text-decoration: none;
  color: currentColor; }

svg {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  height: 100%;
  fill: currentColor; }

figure,
picture {
  display: inline-block;
  margin: 0;
  line-height: 0; }
  figure img,
  picture img {
    width: 100%; }

img {
  vertical-align: top;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

img[draggable="false"] {
  pointer-events: none;
  -webkit-user-drag: none; }

fieldset {
  margin: 0;
  border: 0;
  padding: 0; }

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

video {
  outline: none;
  width: 100%;
  height: 100%; }

iframe {
  display: block; }

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  border: 0;
  padding: 0;
  text-align: center;
  background-color: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 12px; }
  .btn__content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 100%;
    color: currentColor;
    -webkit-transform: translateZ(0);
            transform: translateZ(0); }

.btn-dark {
  background-color: #393185; }
  .btn-dark:hover {
    background-color: #1E2152; }

.btn-light {
  border: 1px solid #C5CAD3;
  background: #fff; }
  .btn-light:hover {
    background: #E5E7EA;
    -webkit-box-shadow: 0 4px 20px 0 rgba(45, 47, 56, 0.08);
            box-shadow: 0 4px 20px 0 rgba(45, 47, 56, 0.08); }

.btn-l {
  width: 100%;
  max-width: 226px;
  padding: 20px 72px; }
  @media (max-width: 1025px) {
    .btn-l {
      padding: 14px 20px; } }

.btn-m {
  width: 100%;
  max-width: 115px;
  padding: 14px 20px; }

.btn-s {
  width: 100%;
  max-width: 100px;
  padding: 8px 16px; }

.color-indigo {
  background-color: #5057F7; }

.color-orange {
  background-color: #F7A050; }

.color-french-pink {
  background-color: #F7508C; }

.color-purple {
  background-color: #AE50F7; }

.color-aquamarine {
  background-color: #14BDAA; }

.color-soft-red {
  background-color: #F75050; }

.color-blue {
  background-color: #50A7F7; }

.color-fuchsia {
  background-color: #F750DC; }

.color-yellow {
  background-color: #F7BE50; }

.color-green {
  background-color: #5ECE2A; }

.slider--hover-arrows {
  opacity: 0;
  visibility: hidden; }

.main-page__banner-body:hover .slider--hover-arrows {
  visibility: visible;
  opacity: 1; }

.swiper-button-next:hover + .main-page__banner-slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(57, 49, 133, 0.2);
  z-index: 1; }

.products__slider:hover .slider--hover-arrows {
  visibility: visible;
  opacity: 1; }

.js-lazy-load:not(.is-loaded) {
  max-height: 50vh; }

.container {
  position: relative;
  margin: 0 auto;
  padding: 0 56px;
  width: 100%;
  max-width: 1800px; }
  @media (max-width: 768px) {
    .container {
      padding: 0 16px; } }

.site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  min-height: var(--vh); }

/* stylelint-disable */
/*
* Немедленно переместите любую анимацию в конечную точку, если пользователь установил свое устройство в положение "prefers reduced motion".
* Это может привести к плохим(непреднамеренным) последствиям. Удалите по мере необходимости и напишите свой собственный код для prefers-reduced-motion.
*/
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    -webkit-animation-duration: 0.001s !important;
            animation-duration: 0.001s !important;
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
    -webkit-transition-duration: 0.001s !important;
            transition-duration: 0.001s !important;
    -webkit-transition-delay: 0s !important;
            transition-delay: 0s !important; } }

/* stylelint-enable */
.is-hidden {
  display: none !important; }

.is-hide {
  opacity: 0; }

@media (max-width: 1024px) {
  .for-desktop {
    display: none !important; } }

@media (max-width: 1025px) {
  .for-tablet {
    display: none !important; } }

@media (max-width: 564px) {
  .for-tablet {
    display: none !important; } }

@media (max-width: 1025px) {
  .for-mobile {
    display: none !important; } }

@media (max-width: 768px) {
  .for-mobile {
    display: none !important; } }

@media (max-width: 1025px) {
  .for-devices {
    display: none !important; } }

.clearfix {
  overflow: auto; }
  .clearfix::after {
    content: "";
    display: table;
    clear: both; }

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0); }

/* stylelint-disable */
.dont-break-out {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto; }

/* stylelint-enable */
.h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.16; }

.h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25; }
  @media (max-width: 564px) {
    .h2 {
      font-size: 18px; } }

.h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.33; }

.h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25; }

.h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.14; }

.text-16 {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25; }

.text-16-long {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75; }
  @media (max-width: 1440px) {
    .text-16-long {
      font-size: 14px; } }

.text-14 {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.14; }

.text-14-long {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42; }

.caption-12 {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0.24px; }

.button-16 {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.32px; }
  @media (max-width: 1025px) {
    .button-16 {
      font-size: 14px; } }

.button-14 {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0.28px; }

.button-12 {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: 0.36px; }

.price-l {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.14; }

.price-m {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.16; }

.price-s {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.33; }
  @media (max-width: 564px) {
    .price-s {
      font-size: 14px;
      font-weight: 500;
      line-height: 1.14; } }

.header {
  position: fixed;
  background-color: #fff;
  width: 100vw;
  padding: 35px 0 24px;
  z-index: 20; }
  @media (max-width: 992px) {
    .header {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: #fff;
      -webkit-box-shadow: 0 8px 32px 0 rgba(45, 47, 56, 0.08);
              box-shadow: 0 8px 32px 0 rgba(45, 47, 56, 0.08);
      padding: 20px 0; } }
  @media (max-width: 564px) {
    .header {
      padding: 12px 0; } }
  @media (max-width: 992px) {
    .header__top {
      display: none; } }
  .header__top-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .header__top-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 56px;
    padding: 10px 0; }
    @media (max-width: 1200px) {
      .header__top-left {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        gap: 15px; } }
  .header__top-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 56px; }
    @media (max-width: 1200px) {
      .header__top-right {
        gap: 15px; } }
  .header__city {
    cursor: pointer;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px; }
    .header__city.active span svg {
      -webkit-transform: rotate(-270deg);
          -ms-transform: rotate(-270deg);
              transform: rotate(-270deg);
      fill: #393185; }
    .header__city-name {
      display: block;
      color: #393185;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 1.25;
      letter-spacing: 0.32px; }
    .header__city-arrow svg {
      width: 6px;
      height: 10px;
      -webkit-transform: rotate(-90deg);
          -ms-transform: rotate(-90deg);
              transform: rotate(-90deg);
      fill: #C5CAD3;
      -webkit-transition: fill 0.3s, -webkit-transform 0.3s;
      transition: fill 0.3s, -webkit-transform 0.3s;
      transition: transform 0.3s, fill 0.3s;
      transition: transform 0.3s, fill 0.3s, -webkit-transform 0.3s; }
    .header__city-choise {
      position: absolute;
      z-index: 25;
      top: 25px;
      left: 30px;
      border-radius: 8px;
      overflow: hidden;
      background: #fff;
      min-width: 280px;
      -webkit-box-shadow: 0 4px 20px 0 rgba(45, 47, 56, 0.08);
              box-shadow: 0 4px 20px 0 rgba(45, 47, 56, 0.08);
      opacity: 0;
      visibility: hidden; }
      .header__city-choise.show {
        opacity: 1;
        visibility: visible; }
      .header__city-choise-list li {
        cursor: pointer;
        padding: 16px;
        color: #000C1A;
        -webkit-transition: color 0.3s, background-color 0.3s;
        transition: color 0.3s, background-color 0.3s; }
        .header__city-choise-list li:hover, .header__city-choise-list li.active {
          background-color: #F3F4F6;
          color: #393185; }
  .header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px; }
  .header__nav-elem a {
    color: #717C8D;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: 0.28px; }
    .header__nav-elem a:hover {
      color: #393185; }
  .header__phone {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px; }
    .header__phone-tel {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 4px; }
      .header__phone-tel a {
        color: #393185; }
      .header__phone-tel span {
        color: #717C8D;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.14; }
    .header__phone-arrow {
      cursor: pointer; }
      .header__phone-arrow svg {
        width: 6px;
        height: 10px;
        -webkit-transform: rotate(270deg);
            -ms-transform: rotate(270deg);
                transform: rotate(270deg);
        fill: #C5CAD3;
        -webkit-transition: fill 0.3s, -webkit-transform 0.3s;
        transition: fill 0.3s, -webkit-transform 0.3s;
        transition: transform 0.3s, fill 0.3s;
        transition: transform 0.3s, fill 0.3s, -webkit-transform 0.3s; }
      .header__phone-arrow.active svg {
        -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
                transform: rotate(90deg);
        fill: #393185; }
    .header__phone-choise {
      position: absolute;
      z-index: 25;
      top: 45px;
      right: -5px;
      border-radius: 8px;
      overflow: hidden;
      background: #fff;
      min-width: 280px;
      -webkit-box-shadow: 0 4px 20px 0 rgba(45, 47, 56, 0.08);
              box-shadow: 0 4px 20px 0 rgba(45, 47, 56, 0.08);
      opacity: 0;
      visibility: hidden; }
      .header__phone-choise.show {
        opacity: 1;
        visibility: visible; }
      .header__phone-choise-list li {
        cursor: pointer;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 4px;
        padding: 16px;
        color: #000C1A;
        -webkit-transition: color 0.3s, background-color 0.3s;
        transition: color 0.3s, background-color 0.3s; }
        .header__phone-choise-list li:hover {
          background-color: #F3F4F6;
          color: #393185; }
        .header__phone-choise-list li span {
          color: #717C8D; }
  .header__user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    padding: 4px;
    color: #393185; }
    .header__user:hover .header__user-logo svg {
      fill: #596476; }
    .header__user-logo svg {
      width: 24px;
      height: 24px;
      fill: #7D8899;
      -webkit-transition: fill 0.3s;
      transition: fill 0.3s; }
    .header__user:hover {
      color: #1E2152; }
  .header__bottom-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 56px;
    padding: 16px 0; }
    @media (max-width: 992px) {
      .header__bottom-body {
        gap: 20px;
        padding: 0; } }
  .header__bottom-left {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 56px; }
    @media (max-width: 1025px) {
      .header__bottom-left {
        gap: 15px; } }
    @media (max-width: 564px) {
      .header__bottom-left {
        padding: 12px;
        gap: 0; } }
  .header__logo {
    display: block; }
    @media (max-width: 768px) {
      .header__logo {
        padding: 0 10px 0 0; } }
    .header__logo svg {
      width: 140px;
      height: 58px; }
      @media (max-width: 768px) {
        .header__logo svg {
          width: 64px;
          height: 27px; } }
  .header__search-mobile {
    display: none;
    position: relative;
    padding: 10px; }
    .header__search-mobile .header__search-icon {
      position: relative;
      right: 0;
      width: 24px;
      height: 24px; }
    @media (max-width: 564px) {
      .header__search-mobile {
        display: block; } }
  .header__search {
    position: relative;
    width: 100%;
    max-width: 720px; }
    @media (max-width: 564px) {
      .header__search {
        display: none; } }
    .header__search input {
      border-radius: 12px;
      padding: 14px 48px 14px 24px;
      background: #F3F4F6;
      border: 1px solid #F3F4F6;
      width: 100%;
      outline: none;
      -webkit-transition: background 0.3s, border 0.3s;
      transition: background 0.3s, border 0.3s; }
      .header__search input:hover {
        background: #E5E7EA; }
      .header__search input:focus {
        border: 1px solid #C5CAD3;
        background: #fff;
        -webkit-box-shadow: 0 4px 20px 0 rgba(45, 47, 56, 0.08);
                box-shadow: 0 4px 20px 0 rgba(45, 47, 56, 0.08); }
    .header__search-icon {
      opacity: 0;
      cursor: pointer;
      position: absolute;
      width: 20px;
      height: 20px;
      top: 0;
      right: 24px;
      bottom: 0;
      margin: auto 0;
      -webkit-transition: opacity 0.3s;
      transition: opacity 0.3s; }
      .header__search-icon.active {
        opacity: 1; }
      .header__search-icon svg {
        fill: #7D8899; }
    .header__search-icon-clear {
      opacity: 0;
      cursor: pointer;
      position: absolute;
      width: 20px;
      height: 20px;
      top: 0;
      right: 50px;
      bottom: 0;
      margin: auto 0;
      -webkit-transition: opacity 0.3s;
      transition: opacity 0.3s; }
      .header__search-icon-clear.active {
        opacity: 1; }
      .header__search-icon-clear svg {
        fill: #7D8899; }
  .header__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px; }
    @media (max-width: 564px) {
      .header__buttons {
        gap: 24px; } }
  .header__menu {
    position: fixed;
    top: 194px;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: #fff;
    -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: top;
        -ms-transform-origin: top;
            transform-origin: top;
    -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, -webkit-transform 0.3s; }
    @media (max-width: 992px) {
      .header__menu {
        top: 98px; } }
    @media (max-width: 564px) {
      .header__menu {
        padding: 16px 0 0 0;
        top: 0; } }
    .header__menu.active {
      -webkit-transform: scaleY(1);
          -ms-transform: scaleY(1);
              transform: scaleY(1);
      opacity: 1;
      visibility: visible; }
    .header__menu-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1;
      background-color: white;
      display: none;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 24px 16px;
      margin: 0 0 24px 0; }
      @media (max-width: 564px) {
        .header__menu-header {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-shadow: 0 8px 32px 0 rgba(45, 47, 56, 0.08);
                  box-shadow: 0 8px 32px 0 rgba(45, 47, 56, 0.08);
          margin: 0 0 10px 0; } }
      @media (max-width: 400px) {
        .header__menu-header {
          padding: 16px; } }
      .header__menu-header-close {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding: 4px; }
        .header__menu-header-close svg {
          width: 24px;
          height: 24px;
          fill: #7D8899; }
    .header__menu-body {
      padding: 20px 0 0 0;
      height: calc(100vh - 210px);
      overflow-y: scroll; }
      .header__menu-body::-webkit-scrollbar {
        width: 0;
        height: 0; }
      @media (max-width: 564px) {
        .header__menu-body {
          margin: 90px 0 0 0;
          height: calc(100vh - 170px); } }
    .header__menu-top {
      position: relative;
      padding: 8px 16px;
      border-radius: 12px;
      background: #F3F4F6;
      margin: 0 0 40px 0; }
      .header__menu-top-items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        gap: 12px; }
        @media (max-width: 992px) {
          .header__menu-top-items {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center; } }
        .header__menu-top-items-links {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          gap: 12px;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; }
          @media (max-width: 1800px) {
            .header__menu-top-items-links {
              gap: 6px; } }
          @media (max-width: 992px) {
            .header__menu-top-items-links {
              display: -ms-grid;
              display: grid;
              -ms-grid-columns: 1fr 1fr 1fr;
              grid-template-columns: 1fr 1fr 1fr; } }
          @media (max-width: 564px) {
            .header__menu-top-items-links {
              -ms-grid-columns: 1fr;
              grid-template-columns: 1fr; } }
      .header__menu-top-item {
        padding: 16px 24px;
        color: #717C8D; }
        @media (max-width: 1800px) {
          .header__menu-top-item {
            padding: 16px; } }
        @media (max-width: 992px) {
          .header__menu-top-item {
            text-align: center; } }
        .header__menu-top-item:hover {
          color: #393185;
          border-radius: 8px;
          background: rgba(57, 49, 133, 0.1); }
        @media (max-width: 1700px) {
          .header__menu-top-item-hide:last-child {
            display: none; } }
        @media (max-width: 1500px) {
          .header__menu-top-item-hide:nth-last-child(-n+2) {
            display: none; } }
        @media (max-width: 1200px) {
          .header__menu-top-item-hide:nth-last-child(-n+3) {
            display: none; } }
        @media (max-width: 992px) {
          .header__menu-top-item-hide:nth-last-child(-n+3) {
            display: block; } }
      .header__menu-top-more {
        width: 132px; }
        .header__menu-top-more.active {
          border-radius: 8px;
          background: rgba(57, 49, 133, 0.1); }
          .header__menu-top-more.active span svg {
            fill: #393185; }
        .header__menu-top-more:hover span svg {
          fill: #393185; }
        .header__menu-top-more span {
          display: block; }
          .header__menu-top-more span svg {
            margin: 0 auto;
            width: 27px;
            height: 20px;
            -webkit-transform: rotate(-90deg);
                -ms-transform: rotate(-90deg);
                    transform: rotate(-90deg);
            fill: #7D8899;
            -webkit-transition: fill 0.3s;
            transition: fill 0.3s; }
    .header__menu-grid {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: auto 40px 248px 40px 248px;
      grid-template-columns: auto 248px 248px;
      grid-auto-columns: 1fr;
      gap: 20px 40px;
          grid-template-areas: "categories brands coloring"; }
      @media (max-width: 1500px) {
        .header__menu-grid {
          -ms-grid-columns: 540px 248px 248px;
          grid-template-columns: 540px 248px 248px; } }
      @media (max-width: 1200px) {
        .header__menu-grid {
          -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
          grid-template-columns: 1fr 1fr 1fr;
          grid-auto-rows: -webkit-min-content;
          grid-auto-rows: min-content;
          gap: 40px;
          -ms-grid-rows: auto 40px auto 40px auto 40px auto 40px auto 40px auto;
              grid-template-areas: "categories categories categories"
 "categories categories categories"
 "categories categories categories"
 "categories categories categories"
 "brands brands brands"
 "coloring coloring ."; } }
      @media (max-width: 564px) {
        .header__menu-grid {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column; } }
    .header__menu-categories {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
      grid-area: categories;
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 248px 40px 248px 40px 248px 40px 248px;
      grid-template-columns: repeat(4, 248px);
      -webkit-column-gap: 40px;
         -moz-column-gap: 40px;
              column-gap: 40px;
      row-gap: 40px; }
      @media (max-width: 1800px) {
        .header__menu-categories {
          -ms-grid-columns: (248px)[3];
          grid-template-columns: repeat(3, 248px); } }
      @media (max-width: 1500px) {
        .header__menu-categories {
          -ms-grid-columns: (248px)[2];
          grid-template-columns: repeat(2, 248px); } }
      @media (max-width: 1200px) {
        .header__menu-categories {
          -ms-grid-columns: (1fr)[4];
          grid-template-columns: repeat(4, 1fr);
          grid-auto-rows: -webkit-min-content;
          grid-auto-rows: min-content; } }
      @media (max-width: 992px) {
        .header__menu-categories {
          -ms-grid-columns: (1fr)[3];
          grid-template-columns: repeat(3, 1fr); } }
      @media (max-width: 564px) {
        .header__menu-categories {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column; } }
    .header__menu-category-title {
      display: block;
      margin: 0 0 16px 0; }
      .header__menu-category-title:hover {
        color: #393185; }
    .header__menu-category-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 16px; }
    .header__menu-category-item-more.active a {
      color: #1E2152; }
      .header__menu-category-item-more.active a span svg {
        -webkit-transform: rotate(-270deg);
            -ms-transform: rotate(-270deg);
                transform: rotate(-270deg);
        fill: #1E2152; }
    .header__menu-category-item-more a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 8px;
      color: #393185; }
      .header__menu-category-item-more a span svg {
        width: 10px;
        height: 10px;
        -webkit-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
                transform: rotate(-90deg);
        fill: #C5CAD3;
        -webkit-transition: fill 0.3s, -webkit-transform 0.3s;
        transition: fill 0.3s, -webkit-transform 0.3s;
        transition: fill 0.3s, transform 0.3s;
        transition: fill 0.3s, transform 0.3s, -webkit-transform 0.3s; }
    .header__menu-brands {
      -ms-grid-row: 1;
      -ms-grid-column: 3;
      grid-area: brands; }
    .header__menu-coloring {
      -ms-grid-row: 1;
      -ms-grid-column: 5;
      grid-area: coloring; }
    @media (max-width: 1200px){
        .header__menu-categories {
    -ms-grid-row: 1;
    -ms-grid-row-span: 7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5; }
        .header__menu-brands {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5; }
        .header__menu-coloring {
    -ms-grid-row: 11;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3; } }

.menu__more {
  position: absolute;
  width: 280px;
  top: 65px;
  right: 16px;
  z-index: 21;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, -webkit-transform 0.3s; }
  @media (max-width: 992px) {
    .menu__more {
      top: 97%;
      right: 0;
      left: 0;
      margin: 0 auto; } }
  @media (max-width: 564px) {
    .menu__more {
      position: fixed;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      left: 0;
      top: auto;
      bottom: -999%;
      width: 100%;
      height: 100%;
      background-color: rgba(57, 49, 133, 0.75);
      z-index: 5;
      -webkit-transform-origin: bottom;
          -ms-transform-origin: bottom;
              transform-origin: bottom; } }
  .menu__more.active {
    -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
    visibility: visible; }
    @media (max-width: 564px) {
      .menu__more.active {
        bottom: 0; } }
  .menu__more-header {
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 16px;
    margin: 0 0 16px 0; }
    @media (max-width: 564px) {
      .menu__more-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
    .menu__more-header span svg {
      width: 24px;
      height: 24px;
      fill: #7D8899; }
  .menu__more-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 4px 0;
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 4px 20px 0 rgba(45, 47, 56, 0.08);
            box-shadow: 0 4px 20px 0 rgba(45, 47, 56, 0.08); }
    @media (max-width: 564px) {
      .menu__more-body {
        width: 100%;
        margin: auto 0 0 0;
        border-radius: 8px 8px 0 0;
        padding: 24px 0 72px; } }
  .menu__more-item a {
    display: block;
    padding: 16px;
    color: #000C1A; }
    .menu__more-item a:hover {
      color: #393185;
      background-color: #F3F4F6; }
  .menu__more-item:nth-last-child(-n+3) {
    display: none; }
  @media (max-width: 1700px) {
    .menu__more-item:nth-last-child(1) {
      display: block; } }
  @media (max-width: 1500px) {
    .menu__more-item:nth-last-child(2) {
      display: block; } }
  @media (max-width: 1200px) {
    .menu__more-item:nth-last-child(-n+3) {
      display: block; } }
  @media (max-width: 992px) {
    .menu__more-item:nth-last-child(-n+3) {
      display: none; } }

.header-button {
  display: block;
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 40px;
  background-color: #F3F4F6; }
  .header-button:hover .header-button__icon svg {
    fill: #393185; }
  .header-button__icon {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto; }
    .header-button__icon svg {
      fill: #7D8899;
      -webkit-transition: fill 0.3s;
      transition: fill 0.3s; }
  .header-button__counter {
    position: absolute;
    top: -12px;
    right: -15px;
    border-radius: 40px;
    border: 4px solid #fff;
    color: #fff;
    background: #E40038; }
    .header-button__counter span {
      padding: 2px 6px;
      font-size: 14px !important; }

@media (max-width: 992px) {
  .header-button-compare,
  .header-button-favourites {
    display: none; } }

.header-button-more {
  display: none; }
  @media (max-width: 992px) {
    .header-button-more {
      display: block; } }

.footer__top {
  background-color: #F3F4F6;
  padding: 40px 0px; }
  @media (max-width: 564px) {
    .footer__top {
      padding: 24px 0px; } }
  .footer__top-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px; }
    @media (max-width: 1440px) {
      .footer__top-items {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    @media (max-width: 768px) {
      .footer__top-items {
        gap: 8px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .footer__top-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    border-radius: 16px;
    padding: 24px 32px; }
    @media (max-width: 768px) {
      .footer__top-item {
        width: 100%;
        gap: 12px; } }
    .footer__top-item:nth-child(1) {
      background: -webkit-gradient(linear, left top, right top, from(#2564B8), to(#3A75C4));
      background: linear-gradient(90deg, #2564B8 0%, #3A75C4 100%); }
    .footer__top-item:nth-child(2) {
      background: -webkit-gradient(linear, left top, right top, from(#704EB5), to(#8566C2));
      background: linear-gradient(90deg, #704EB5 0%, #8566C2 100%);
      -webkit-box-shadow: 0px 4px 20px 0px rgba(45, 47, 56, 0.08);
              box-shadow: 0px 4px 20px 0px rgba(45, 47, 56, 0.08); }
    .footer__top-item:nth-child(3) {
      background: -webkit-gradient(linear, left top, right top, color-stop(0.01%, #A63A94), to(#B351A3));
      background: linear-gradient(90deg, #A63A94 0.01%, #B351A3 100%); }
  .footer__top-item-icon {
    width: 36px;
    height: 36px; }
  .footer__top-item-text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    color: #fff; }
  .footer__top-item-arrow svg {
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    fill: #F3F4F6; }

.footer__bottom {
  background-color: #394353;
  padding: 48px 0; }
  .footer__bottom-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px; }
  .footer__bottom-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 144px; }
    @media (max-width: 1440px) {
      .footer__bottom-columns {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        gap: 30px; } }
    @media (max-width: 650px) {
      .footer__bottom-columns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    @media (max-width: 1200px) {
      .footer__bottom-columns {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
  .footer__bottom-column-title {
    color: #fff;
    margin: 0 0 16px 0; }
  .footer__bottom-column-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px; }
    .footer__bottom-column-list a {
      color: #E5E7EA; }
  .footer__bottom-about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px; }
    .footer__bottom-about-text {
      color: #C5CAD3;
      max-width: 225px; }
  .footer__bottom-middle-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 120px; }
    @media (max-width: 564px) {
      .footer__bottom-middle-columns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 32px; } }
  .footer__bottom-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 144px;
    color: #C5CAD3; }
    @media (max-width: 1025px) {
      .footer__bottom-info {
        gap: 40px; } }
    @media (max-width: 768px) {
      .footer__bottom-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
    .footer__bottom-info-pay {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 16px; }
      @media (max-width: 768px) {
        .footer__bottom-info-pay {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-align: start;
              -ms-flex-align: start;
                  align-items: flex-start;
          gap: 22px; } }
      .footer__bottom-info-pay-logos {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 16px; }
      .footer__bottom-info-pay-logo svg {
        width: 30px;
        height: 30px; }

.footer__logo {
  width: 180px;
  height: 75px; }
  @media (max-width: 564px) {
    .footer__logo {
      width: 90px;
      height: 38px; } }

.footer__bottom-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .footer__bottom-contacts-address {
    color: #E5E7EA;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.55;
    margin: 0 0 16px 0; }
  .footer__bottom-contacts-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px; }
    @media (max-width: 1650px) {
      .footer__bottom-contacts-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 24px; } }
  .footer__bottom-contacts-phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px; }
    .footer__bottom-contacts-phone a {
      color: #fff; }
  .footer__bottom-contacts-more {
    width: 10px;
    height: 10px;
    cursor: pointer; }
    .footer__bottom-contacts-more svg {
      -webkit-transform: rotate(-90deg);
          -ms-transform: rotate(-90deg);
              transform: rotate(-90deg);
      fill: #7D8899; }
  .footer__bottom-contacts-mail a {
    color: #fff; }
  .footer__bottom-contacts-allContacts {
    margin: 24px 0 0 0; }
    .footer__bottom-contacts-allContacts a {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 8px;
      color: #C5CAD3; }
    .footer__bottom-contacts-allContacts svg {
      width: 6px;
      height: 10px;
      fill: #7D8899;
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg); }

.catalog-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
  border-radius: 12px;
  border: 2px solid #393185;
  padding: 14px 42px;
  max-width: 187px; }
  @media (max-width: 992px) {
    .catalog-button {
      border: 0;
      padding: 0 10px; } }
  .catalog-button:hover {
    background-color: #E5E7EA; }
    @media (max-width: 992px) {
      .catalog-button:hover {
        background: none; } }
  .catalog-button.active {
    background-color: #393185; }
    @media (max-width: 992px) {
      .catalog-button.active {
        background-color: transparent; } }
  .catalog-button__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px; }
  .catalog-button__icon {
    position: relative;
    width: 20px;
    height: 20px; }
    @media (max-width: 992px) {
      .catalog-button__icon {
        width: 24px;
        height: 24px; } }
    .catalog-button__icon svg {
      width: 20px;
      height: 20px; }
      @media (max-width: 992px) {
        .catalog-button__icon svg {
          width: 24px;
          height: 24px; } }
  .catalog-button__text {
    color: #393185; }
    @media (max-width: 992px) {
      .catalog-button__text {
        display: none; } }
  .catalog-button--default {
    display: block; }
    @media (max-width: 564px) {
      .catalog-button--default {
        display: none; } }
  .catalog-button--mobile {
    display: none; }
    @media (max-width: 564px) {
      .catalog-button--mobile {
        display: block; } }
  .catalog-button--default, .catalog-button--mobile {
    opacity: 1; }
    .catalog-button--default svg, .catalog-button--mobile svg {
      fill: #7D8899; }
  .catalog-button--active {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  .catalog-button.active .catalog-button__text {
    color: #fff; }
  .catalog-button.active .catalog-button--default,
  .catalog-button.active .catalog-button--mobile {
    opacity: 0; }
  .catalog-button.active .catalog-button--active {
    opacity: 1; }
    .catalog-button.active .catalog-button--active svg {
      fill: #fff; }
      @media (max-width: 992px) {
        .catalog-button.active .catalog-button--active svg {
          fill: #393185; } }

.mobile--products-cards {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 36px; }
  @media (max-width: 768px) {
    .mobile--products-cards {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

.mobile--products-cards .product-card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 48%;
          flex: 1 1 48%; }
  @media (max-width: 564px) {
    .mobile--products-cards .product-card {
      -webkit-box-flex: 1;
          -ms-flex: 1 1 47%;
              flex: 1 1 47%; } }

.product-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  height: 100%;
  padding: 24px;
  -webkit-transition: background-color 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s, background-color 0.3s, border-radius 0.3s;
  transition: box-shadow 0.3s, background-color 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s; }
  @media (max-width: 564px) {
    .product-card {
      padding: 0; } }
  .product-card:hover {
    border-radius: 12px;
    background-color: #fff;
    -webkit-box-shadow: 0 8px 32px 0 rgba(45, 47, 56, 0.08);
            box-shadow: 0 8px 32px 0 rgba(45, 47, 56, 0.08); }
    .product-card:hover .product-card__name-link {
      height: 100px;
      background-color: #fff; }
      .product-card:hover .product-card__name-link:after {
        display: none; }
      @media (max-width: 564px) {
        .product-card:hover .product-card__name-link {
          height: 60px; }
          .product-card:hover .product-card__name-link:after {
            display: block; } }
    @media (max-width: 564px) {
      .product-card:hover {
        -webkit-box-shadow: none;
                box-shadow: none; } }
  .product-card__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px; }
  .product-card__image {
    margin: 0 auto; }
  .product-card__name {
    position: relative; }
    .product-card__name-link {
      display: block;
      color: #000C1A;
      overflow: hidden;
      position: relative;
      max-width: 330px;
      min-height: 60px;
      height: 60px;
      -webkit-transition: height 0.3s;
      transition: height 0.3s; }
      .product-card__name-link:after {
        opacity: 1;
        content: "";
        text-align: right;
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        height: 1.2em;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 100%);
        pointer-events: none;
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s; }
      @media (max-width: 564px) {
        .product-card__name-link {
          overflow: hidden;
          display: -webkit-box;
          -webkit-line-clamp: 3;
          -webkit-box-orient: vertical;
          font-size: 14px; } }
  .product-card__info {
    display: none; }
    .product-card__info-available {
      color: #00AB5B;
      margin: 0 0 16px 0; }
      .product-card__info-available span {
        margin: 0 5px; }
    .product-card__info-about-block {
      max-height: 0;
      overflow: hidden;
      -webkit-transition: max-height 0.3s;
      transition: max-height 0.3s; }
    .product-card__info-about-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      gap: 16px;
      padding: 0 0 16px 0; }
    .product-card__info-about-item {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      width: 100%;
      gap: 10px; }
      .product-card__info-about-item:after {
        content: "";
        position: absolute;
        width: 80%;
        height: 15px;
        left: 25px;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        background-image: radial-gradient(circle, #D5D9DF 1px, transparent 0);
        background-position: bottom;
        background-size: .8ex 2.7px;
        background-repeat: space no-repeat; }
      @media (max-width: 1400px) {
        .product-card__info-about-item {
          -webkit-box-align: start;
              -ms-flex-align: start;
                  align-items: flex-start;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          gap: 5px; }
          .product-card__info-about-item:after {
            display: none; } }
    .product-card__info-about-name {
      background-color: #fff;
      white-space: nowrap;
      color: #717C8D; }
    .product-card__info-about-description {
      background-color: #fff;
      margin: 0 0 0 auto;
      white-space: nowrap; }
      @media (max-width: 1400px) {
        .product-card__info-about-description {
          margin: 0; } }
    .product-card__info-about-button {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 8px; }
      .product-card__info-about-button.active span svg {
        -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
                transform: rotate(90deg); }
      .product-card__info-about-button p {
        color: #393185; }
      .product-card__info-about-button span svg {
        width: 10px;
        height: 10px;
        fill: #C5CAD3;
        -webkit-transform: rotate(270deg);
            -ms-transform: rotate(270deg);
                transform: rotate(270deg);
        -webkit-transition: -webkit-transform 0.3s;
        transition: -webkit-transform 0.3s;
        transition: transform 0.3s;
        transition: transform 0.3s, -webkit-transform 0.3s; }
    .product-card__info-footer {
      margin: 32px 0 0 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 24px; }
      .product-card__info-footer-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 8px;
        color: #393185; }
        .product-card__info-footer-button:hover span svg {
          fill: #393185; }
        .product-card__info-footer-button span svg {
          width: 20px;
          height: 20px;
          fill: #7D8899;
          -webkit-transition: fill 0.3s;
          transition: fill 0.3s; }
  .product-card__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    margin: 0 0 16px 0; }
    @media (max-width: 564px) {
      .product-card__price {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        gap: 4px; } }
    .product-card__price-current {
      white-space: nowrap;
      color: #000C1A; }
    .product-card__price-old {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 4px 0;
      color: #717C8D;
      font-family: "Montserrat", sans-serif;
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      height: 25px;
      line-height: 1.14;
      text-decoration: line-through; }
  .product-card__footer {
    margin: auto 0 0 0; }
    .product-card__footer-price {
      display: none; }
  .product-card__btn {
    color: #fff;
    border-radius: 8px;
    max-height: 44px;
    height: 100%; }

  .product-card__btn:hover {
      color:white;
  }

    @media (max-width: 564px) {
      .product-card__btn {
        padding: 8px 16px;
        font-size: 12px;
        max-width: 95px; } }
  .product-card__labels {
    position: absolute;
    top: 15px;
    left: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 564px) {
      .product-card__labels {
        top: 0;
        gap: 5px;
        left: 0; } }
  .product-card__label-discount {
    color: #fff;
    padding: 8px 18px;
    border-radius: 24px;
    background: #E55C00; }
    @media (max-width: 564px) {
      .product-card__label-discount {
        padding: 8px 10px; } }
  .product-card__label-status {
    color: #fff;
    padding: 8px 18px;
    border-radius: 24px;
    background: #00AB5B; }
    @media (max-width: 564px) {
      .product-card__label-status {
        padding: 8px 10px; } }

.card-column--view .product-card {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.card-column--view .product-card__body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.card-row--view .product-card {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }

.card-row--view .product-card__body {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }

.breadcrumbs {
  margin: 24px 0; }
  .breadcrumbs__list {
    position: relative;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    list-style-type: none;
    font-size: 14px;
    line-height: 1;
    color: #7A7E84; }
    @media (max-width: 1025px) {
      .breadcrumbs__list {
        padding-bottom: 10px; } }
  .breadcrumbs__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .breadcrumbs__link {
    color: inherit;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    white-space: nowrap; }
    .breadcrumbs__link:hover {
      color: #000; }
  .breadcrumbs__current {
    white-space: nowrap; }
  .breadcrumbs__devider {
    position: relative;
    width: 10px;
    margin: 0 12px; }
    .breadcrumbs__devider::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      width: 10px;
      height: 10px;
      background-image: url("../images/sprites/svg/arrow-crumbs.svg");
      background-repeat: no-repeat; }

.left-bar {
  border-radius: 12px;
  background: #fff;
  border: 1px solid #E5E7EA;
  overflow: hidden; }
  .left-bar__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .left-bar__item-link {
    color: #393185;
    display: block;
    padding: 16px 24px; }
    .left-bar__item-link:hover {
      background-color: rgba(57, 49, 133, 0.1); }
    .left-bar__item-link.active {
      background-color: #393185;
      color: #fff; }

.page {
  padding: 0 0 115px 0; }
  @media (max-width: 992px) {
    .page {
      margin: 120px 0 0 0; } }
  @media (max-width: 564px) {
    .page {
      padding: 0 0 24px 0; } }

.page--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #000C1A;
  margin: 0 0 24px 0; }

.page--grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 392px 40px auto;
  grid-template-columns: 392px calc(100% - 433px);
  gap: 40px; }
  @media (max-width: 1025px) {
    .page--grid {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 32px; } }
  .page--grid-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px; }
  .page--grid-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px; }

@media (max-width: 1025px) {
  .grid--reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 32px; } }

.default--view {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 32px;
  margin: 0 0 32px 0; }
  @media (min-width: 1026px) and (max-width: 1650px) {
    .default--view {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 1025px) {
    .default--view {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }

.row--view {
  display: -ms-grid;
  display: grid; }
  @media (min-width: 1200px) {
    .row--view {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      row-gap: 32px; } }
  @media (max-width: 1025px) {
    .row--view {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }
  .row--view .catalog--card .product-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px; }
    .row--view .catalog--card .product-card .product-card__body {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      width: 100%; }
      .row--view .catalog--card .product-card .product-card__body .product-card__info {
        display: block; }
      .row--view .catalog--card .product-card .product-card__body .product-card__name {
        -webkit-box-flex: 0;
            -ms-flex: 0 1 560px;
                flex: 0 1 560px; }
      .row--view .catalog--card .product-card .product-card__body .product-card__name-link {
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 1.33;
        height: auto;
        margin: 0 0 16px 0; }
        .row--view .catalog--card .product-card .product-card__body .product-card__name-link:after {
          display: none; }
      .row--view .catalog--card .product-card .product-card__body .product-card__image {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 180px;
                flex: 0 0 180px;
        max-width: 180px;
        max-height: 180px;
        -o-object-fit: contain;
           object-fit: contain;
        margin: 0; }
      .row--view .catalog--card .product-card .product-card__body .product-card__price {
        display: none; }
    .row--view .catalog--card .product-card .product-card__footer {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      gap: 24px;
      margin: 0 0 0 auto; }
      .row--view .catalog--card .product-card .product-card__footer .product-card__footer-price {
        display: block; }

.default--view {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 32px;
  margin: 0 0 32px 0; }
  @media (min-width: 1026px) and (max-width: 1650px) {
    .default--view {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 1025px) {
    .default--view {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }

.modal-bg {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(57, 49, 133, 0.75);
  z-index: 35;
  -webkit-transition: all .3s;
  transition: all .3s; }

.modal-bg.active {
  opacity: 1;
  visibility: visible; }

.custom--slider-arrows {
  position: absolute;
  top: 300px;
  left: 0;
  width: 100%; }
  @media (max-width: 768px) {
    .custom--slider-arrows {
      display: none; } }
  .custom--slider-arrows .swiper-button-next {
    right: -20px; }
  .custom--slider-arrows .swiper-button-prev {
    left: -20px; }
  .custom--slider-arrows .swiper-button-prev,
  .custom--slider-arrows .swiper-button-next {
    width: 46px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #F3F4F6;
    background-color: #F3F4F6;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s; }
  .custom--slider-arrows .swiper-button-prev:hover,
  .custom--slider-arrows .swiper-button-next:hover {
    border: 2px solid #fff;
    background-color: #393185; }
  .custom--slider-arrows .swiper-button-prev::after,
  .custom--slider-arrows .swiper-button-next::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-image: url("../images/sprites/svg/arrow-slider.svg");
    background-position: center;
    background-size: contain;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s; }
  .custom--slider-arrows .swiper-button-prev:hover::after,
  .custom--slider-arrows .swiper-button-next:hover::after {
    background-image: url("../images/sprites/svg/arrow-slider-hover.svg"); }
  .custom--slider-arrows .swiper-button-next::after,
  .custom--slider-arrows .swiper-button-next:hover::after {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg); }
  .custom--slider-arrows .swiper-button-disabled {
    opacity: 0;
    visibility: hidden; }

.custom--slider-banner {
  top: 50%; }

.text__block-hiddenText {
  display: block; }
  .text__block-hiddenText:not(:last-child) {
    margin: 0 0 15px 0; }
  .text__block-hiddenText.active {
    display: none; }

.text__block-btn {
  margin: 8px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #393185; }
  .text__block-btn.hidden {
    display: none; }
  .text__block-btn.active span svg {
    -webkit-transform: rotate(-270deg);
        -ms-transform: rotate(-270deg);
            transform: rotate(-270deg); }
  .text__block-btn span svg {
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    fill: #C5CAD3;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s; }

.page-mobile-filter {
  display: none;
  margin: 0 0 24px 0; }
  @media (max-width: 1025px) {
    .page-mobile-filter {
      display: block; } }

.coloring {
  border-radius: 16px;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, from(#2564B8), to(#3A75C4));
  background: linear-gradient(90deg, #2564B8 0%, #3A75C4 100%);
  padding: 32px 24px; }
  .coloring__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px; }
  .coloring__image svg {
    width: 36px;
    height: 36px; }
  .coloring__text {
    color: #fff; }
    .coloring__text h2 {
      font-size: 32px;
      margin: 0 0 12px 0; }
  .coloring__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px; }
    .coloring__link p {
      color: #fff; }
    .coloring__link span svg {
      width: 6px;
      height: 10px;
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg);
      fill: #C5CAD3; }

.brand-mini-card__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 24px;
  border-radius: 12px;
  background-color: #fff;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s; }
  .brand-mini-card__body:hover {
    -webkit-box-shadow: 0px 4px 20px 0px rgba(45, 47, 56, 0.08);
            box-shadow: 0px 4px 20px 0px rgba(45, 47, 56, 0.08); }
  @media (max-width: 564px) {
    .brand-mini-card__body {
      padding: 8px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; } }

.brand-mini-card__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  position: relative;
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #D5D9DF; }
  @media (max-width: 564px) {
    .brand-mini-card__image {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 80px;
              flex: 0 0 80px;
      width: 80px;
      height: 80px; } }
  .brand-mini-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 120px;
    height: 120px;
    -o-object-fit: contain;
       object-fit: contain; }
    @media (max-width: 564px) {
      .brand-mini-card__image img {
        width: 80px;
        height: 80px; } }

.brand-mini-card__label {
  position: absolute;
  top: 9px;
  left: 9px;
  padding: 8px 18px;
  color: #fff;
  border-radius: 24px; }
  @media (max-width: 564px) {
    .brand-mini-card__label {
      left: auto;
      top: 14px;
      right: 14px; } }

.brand-mini-card .label--green {
  background-color: #00AB5B; }

.brand-mini-card .label--orange {
  background-color: #E55C00; }

.brand-mini-card__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 0; }

.brand-mini-card__name {
  color: #000C1A;
  margin: 0 0 8px 0; }

.brand-mini-card__about {
  color: #717C8D; }
  @media (max-width: 564px) {
    .brand-mini-card__about {
      margin: 0 0 16px 0; } }

.brand-mini-card__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #393185;
  margin: auto 0 0 0; }
  .brand-mini-card__count p {
    padding: 0 10px 0 0; }
  .brand-mini-card__count svg {
    width: 10px;
    height: 10px; }

.categories {
  border-radius: 12px;
  border: 1px solid #E5E7EA; }
  .categories__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 24px; }
    @media (max-width: 1025px) {
      .categories__title {
        padding: 16px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
    .categories__title.opened span svg {
      -webkit-transform: rotate(-270deg);
          -ms-transform: rotate(-270deg);
              transform: rotate(-270deg); }
    .categories__title span svg {
      width: 10px;
      height: 10px;
      -webkit-transform: rotate(-90deg);
          -ms-transform: rotate(-90deg);
              transform: rotate(-90deg);
      fill: #7D8899;
      -webkit-transition: -webkit-transform 0.3s ease-in;
      transition: -webkit-transform 0.3s ease-in;
      transition: transform 0.3s ease-in;
      transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in; }
    .categories__title h4 {
      color: #000C1A; }
  .categories__content {
    padding: 0 24px 0 24px;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease-in, visibility 0.3s ease-in, -webkit-transform 0.3s ease-in;
    transition: max-height 0.3s ease-in, visibility 0.3s ease-in, -webkit-transform 0.3s ease-in;
    transition: max-height 0.3s ease-in, transform 0.3s ease-in, visibility 0.3s ease-in;
    transition: max-height 0.3s ease-in, transform 0.3s ease-in, visibility 0.3s ease-in, -webkit-transform 0.3s ease-in; }
  .categories__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px; }
  .categories__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
    padding: 8px; }
    .categories__item-link {
      color: #000C1A; }
    .categories__item-count {
      color: #717C8D; }
  .categories__all-link {
    padding: 8px 0 24px 0; }
    .categories__all-link a {
      color: #393185; }

:root {
  --ss-primary-color: #5897fb;
  --ss-bg-color: #ffffff;
  --ss-font-color: #4d4d4d;
  --ss-font-placeholder-color: #8d8d8d;
  --ss-disabled-color: #dcdee2;
  --ss-border-color: #dcdee2;
  --ss-highlight-color: #fffb8c;
  --ss-success-color: #00b755;
  --ss-error-color: #dc3545;
  --ss-main-height: 50px;
  --ss-content-height: 300px;
  --ss-spacing-l: 7px;
  --ss-spacing-m: 5px;
  --ss-spacing-s: 17px;
  --ss-animation-timing: 0.2s;
  --ss-border-radius: 4px
; }

@-webkit-keyframes ss-valueIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }

@keyframes ss-valueIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }

@-webkit-keyframes ss-valueOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0; } }

@keyframes ss-valueOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0; } }

.ss-hide {
  display: none !important; }

.ss-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: var(--ss-font-color);
  min-height: var(--ss-main-height);
  width: 100%;
  padding: 13px 30px 13px 20px;
  cursor: pointer;
  border: 1px solid #F3F4F6;
  border-radius: 8px;
  background-color: #F3F4F6;
  font-size: 16px;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background-color var(--ss-animation-timing);
  transition: background-color var(--ss-animation-timing);
  overflow: hidden; }

.ss-main.ss-disabled {
  background-color: var(--ss-disabled-color);
  cursor: not-allowed; }

.ss-main.ss-disabled .ss-values .ss-disabled {
  color: var(--ss-font-color); }

.ss-main.ss-disabled .ss-values .ss-value .ss-value-delete {
  cursor: not-allowed; }

.ss-main .ss-values {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--ss-spacing-m);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%; }

.ss-main .ss-values .ss-placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--ss-spacing-s) var(--ss-spacing-m) var(--ss-spacing-s) var(--ss-spacing-m);
  margin: auto 0px auto 0px;
  line-height: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  color: var(--ss-font-placeholder-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.ss-main .ss-values .ss-max {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  color: #fff;
  line-height: 1;
  padding: var(--ss-spacing-s) var(--ss-spacing-m);
  background-color: var(--ss-primary-color);
  border-radius: var(--ss-border-radius); }

.ss-main .ss-values .ss-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000C1A; }

.ss-main .ss-values .ss-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--ss-primary-color);
  border-radius: var(--ss-border-radius);
  -webkit-animation-name: ss-valueIn;
          animation-name: ss-valueIn;
  -webkit-animation-duration: var(--ss-animation-timing);
          animation-duration: var(--ss-animation-timing);
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.ss-main .ss-values .ss-value.ss-value-out {
  -webkit-animation-name: ss-valueOut;
          animation-name: ss-valueOut;
  -webkit-animation-duration: var(--ss-animation-timing);
          animation-duration: var(--ss-animation-timing);
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out; }

.ss-main .ss-values .ss-value .ss-value-text {
  font-size: 12px;
  color: #fff;
  line-height: 1;
  padding: var(--ss-spacing-s) var(--ss-spacing-m); }

.ss-main .ss-values .ss-value .ss-value-delete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: var(--ss-spacing-l);
  width: var(--ss-spacing-l);
  padding: var(--ss-spacing-s) var(--ss-spacing-m);
  cursor: pointer;
  border-left: solid 1px #fff;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

.ss-main .ss-values .ss-value .ss-value-delete svg {
  height: var(--ss-spacing-l);
  width: var(--ss-spacing-l); }

.ss-main .ss-values .ss-value .ss-value-delete svg path {
  fill: none;
  stroke: #fff;
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round; }

.ss-main .ss-deselect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 8px;
  height: 8px;
  margin: 0 var(--ss-spacing-m) 0 var(--ss-spacing-m); }

.ss-main .ss-deselect svg {
  width: 8px;
  height: 8px; }

.ss-main .ss-deselect svg path {
  fill: none;
  stroke: var(--ss-font-color);
  stroke-width: 20;
  stroke-linecap: round;
  stroke-linejoin: round; }

.ss-main .ss-arrow {
  position: absolute;
  right: 10px;
  top: 18px;
  width: 10px;
  height: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin: auto var(--ss-spacing-m) auto var(--ss-spacing-m); }

.ss-main .ss-arrow path {
  fill: none;
  stroke: #7D8899;
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transition: var(--ss-animation-timing);
  transition: var(--ss-animation-timing); }

.ss-content {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: auto;
  max-height: var(--ss-content-height);
  padding-top: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: opacity var(--ss-animation-timing), -webkit-transform var(--ss-animation-timing);
  transition: opacity var(--ss-animation-timing), -webkit-transform var(--ss-animation-timing);
  transition: transform var(--ss-animation-timing), opacity var(--ss-animation-timing);
  transition: transform var(--ss-animation-timing), opacity var(--ss-animation-timing), -webkit-transform var(--ss-animation-timing);
  opacity: 0;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: center top;
      -ms-transform-origin: center top;
          transform-origin: center top;
  overflow: hidden;
  z-index: 10000; }

.ss-content.ss-relative {
  position: relative;
  height: 100%; }

.ss-content.ss-open-above {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  opacity: 1;
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
  border-top-left-radius: var(--ss-border-radius);
  border-top-right-radius: var(--ss-border-radius); }

.ss-content.ss-open-below {
  opacity: 1;
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: center top;
      -ms-transform-origin: center top;
          transform-origin: center top; }

.ss-content .ss-search {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: var(--ss-spacing-l) var(--ss-spacing-l) var(--ss-spacing-m) var(--ss-spacing-l); }

.ss-content .ss-search input {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: inherit;
  line-height: inherit;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  min-width: 0px;
  padding: var(--ss-spacing-m) var(--ss-spacing-l);
  margin: 0;
  border: 1px solid var(--ss-border-color);
  border-radius: var(--ss-border-radius);
  background-color: #fff;
  outline: 0;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.ss-content .ss-search input::-webkit-input-placeholder {
  color: var(--ss-font-placeholder-color);
  vertical-align: middle; }

.ss-content .ss-search input::-moz-placeholder {
  color: var(--ss-font-placeholder-color);
  vertical-align: middle; }

.ss-content .ss-search input:-ms-input-placeholder {
  color: var(--ss-font-placeholder-color);
  vertical-align: middle; }

.ss-content .ss-search input::-ms-input-placeholder {
  color: var(--ss-font-placeholder-color);
  vertical-align: middle; }

.ss-content .ss-search input::placeholder {
  color: var(--ss-font-placeholder-color);
  vertical-align: middle; }

.ss-content .ss-search input:focus {
  -webkit-box-shadow: 0 0 5px var(--ss-primary-color);
          box-shadow: 0 0 5px var(--ss-primary-color); }

.ss-content .ss-search .ss-addable {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: auto;
  margin: 0 0 0 var(--ss-spacing-m);
  border: 1px solid var(--ss-border-color);
  border-radius: var(--ss-border-radius); }

.ss-content .ss-search .ss-addable svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 12px;
  height: 12px;
  margin: auto var(--ss-spacing-m) auto var(--ss-spacing-m); }

.ss-content .ss-search .ss-addable svg path {
  fill: none;
  stroke: var(--ss-font-color);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round; }

.ss-content .ss-list {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid #EAEDF1;
  border-radius: 8px;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); }

.ss-content .ss-list .ss-error {
  color: var(--ss-error-color);
  padding: var(--ss-spacing-l); }

.ss-content .ss-list .ss-searching {
  color: var(--ss-font-color);
  padding: var(--ss-spacing-l); }

.ss-content .ss-list .ss-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 20px;
  color: #7A7E84;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 16px; }

.ss-content .ss-list .ss-option:hover {
  color: #000C1A;
  background-color: #F3F4F6; }

.ss-content .ss-list .ss-option.ss-highlighted, .ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
  color: #000C1A;
  background-color: #F3F4F6; }

.ss-content .ss-list .ss-option.ss-disabled {
  cursor: not-allowed;
  background-color: var(--ss-disabled-color); }

.ss-content .ss-list .ss-option.ss-disabled:hover {
  color: var(--ss-font-color); }

.ss-content .ss-list .ss-option .ss-search-highlight {
  background-color: var(--ss-highlight-color); }

.show-more-btn__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #E5E7EA;
  background: #fff;
  -webkit-transition: background 0.3s, border 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, border 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, border 0.3s, box-shadow 0.3s;
  transition: background 0.3s, border 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s; }
  .show-more-btn__body:hover {
    border: 1px solid #C5CAD3;
    background: #E5E7EA;
    -webkit-box-shadow: 0 4px 20px 0 rgba(45, 47, 56, 0.08);
            box-shadow: 0 4px 20px 0 rgba(45, 47, 56, 0.08); }
  .show-more-btn__body span svg {
    width: 24px;
    height: 24px; }
  .show-more-btn__body p {
    color: #000C1A; }

.pagination {
	padding: 20px 0;
	max-width: 460px;
	margin: 0 auto; }
.pagination__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 12px; }
.pagination__item {
	height: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	padding: 12px 20px;
	border-radius: 8px;
	border: 1px solid #E5E7EA;
	background: #fff; }
@media (max-width: 564px) {
	.pagination__item:nth-child(4), .pagination__item:nth-child(5), .pagination__item:nth-child(6) {
		display: none; } }
.pagination__btn {
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s; }
.pagination__btn-next svg {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg); }
.pagination__btn:hover {
	background-color: #393185; }
.pagination__btn:hover span svg {
	fill: #fff; }
.pagination__btn span svg {
	width: 10px;
	height: 10px;
	fill: #7D8899;
	-webkit-transition: fill 0.3s;
	transition: fill 0.3s; }
.pagination__btn-prev {
	/*display: none;*/ }
.pagination--num {
	-webkit-transition: background 0.3s, color 0.3s;
	transition: background 0.3s, color 0.3s; }
.pagination--num:hover {
	background: #393185;
	color: #fff; }
.pagination--num.active {
	background: #393185;
	color: #fff; }
.pagination--separator {
	cursor: default;
	border: none;
	padding: 0; }
.pagination--separator span {
	display: block; }
.pagination--separator span svg {
	width: 24px;
	height: 40px;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg); }

.filter {
  background-color: #fff; }
  @media (max-width: 1025px) {
    .filter {
      position: fixed;
      left: -999px;
      top: 0;
      width: 360px;
      height: 100vh;
      z-index: 40;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: left 0.3s;
      transition: left 0.3s; }
      .filter.active {
        left: 0;
        opacity: 1;
        visibility: visible; }
        .filter.active .filter__header {
          left: 0;
          opacity: 1; }
        .filter.active .filter__footer {
          left: 0;
          opacity: 1; } }
  .filter__header {
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 16px;
    -webkit-box-shadow: 0 8px 32px 0 rgba(45, 47, 56, 0.08);
            box-shadow: 0 8px 32px 0 rgba(45, 47, 56, 0.08); }
    @media (max-width: 1025px) {
      .filter__header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: fixed;
        width: 360px;
        top: 0;
        left: -999px;
        opacity: 0;
        -webkit-transition: opacity 0.3s, left 0.3s;
        transition: opacity 0.3s, left 0.3s; } }
    .filter__header span svg {
      width: 24px;
      height: 24px;
      fill: #7D8899; }
  @media (max-width: 1025px) {
    .filter__bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: transparent;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
      transition: opacity 0.3s, visibility 0.3s, background-color 0.3s; } }
  .filter__inner {
    position: relative;
    background-color: #fff; }
    @media (max-width: 1025px) {
      .filter__inner {
        height: 100vh;
        margin: 56px 0 0 0; } }
  .filter__body {
    border-radius: 12px;
    border: 1px solid #E5E7EA;
    padding: 0 0 24px 0; }
    @media (max-width: 1025px) {
      .filter__body {
        border: none;
        padding: 0;
        margin: 0 0 70px 0;
        border-radius: 0;
        height: calc(100vh - 200px);
        overflow-y: scroll; } }
  .filter__category-header .filter__category-separator {
    opacity: 1;
    margin: 0 24px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s; }
  .filter__category-header.opened .filter__category-title span svg {
    -webkit-transform: rotate(-270deg);
        -ms-transform: rotate(-270deg);
            transform: rotate(-270deg); }
  .filter__category-header.opened .filter__category-separator {
    opacity: 0; }
  .filter__category-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    padding: 20px 24px 16px 24px;
    cursor: pointer; }
    .filter__category-title span svg {
      width: 10px;
      height: 10px;
      fill: #7D8899;
      -webkit-transform: rotate(-90deg);
          -ms-transform: rotate(-90deg);
              transform: rotate(-90deg);
      -webkit-transition: -webkit-transform 0.3s;
      transition: -webkit-transform 0.3s;
      transition: transform 0.3s;
      transition: transform 0.3s, -webkit-transform 0.3s; }
    .filter__category-title h4 {
      color: #000C1A; }
  .filter__category-list {
    padding: 0 24px; }
  .filter__category-data {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s, opacity 0.3s;
    transition: max-height 0.3s, opacity 0.3s; }
    .filter__category-data .filter__category-separator {
      height: 20px;
      opacity: 0;
      -webkit-transition: height 0.3s, opacity 0.3s;
      transition: height 0.3s, opacity 0.3s; }
    .filter__category-data.show {
      opacity: 1;
      overflow: visible;
      margin: 0 0 10px 0; }
      .filter__category-data.show .filter__category-separator {
        opacity: 1; }
  .filter__category-slider {
    padding: 0 24px; }
  .filter__category-elem {
    padding: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px; }
    .filter__category-elem-checkbox {
      position: relative;
      cursor: pointer;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
      padding: 0 0 0 25px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .filter__category-elem-checkbox input {
        display: none; }
      .filter__category-elem-checkbox input[type=checkbox] ~ span::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 1px;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        display: inline-block;
        width: 16px;
        height: 16px;
        border-radius: 2px;
        border: 1px solid #D5D9DF;
        background: #fff;
        z-index: 3; }
      .filter__category-elem-checkbox input[type=checkbox]:checked ~ span::before {
        z-index: 10;
        background: #393185 url(../images/sprites/svg/check.svg) no-repeat 1px 4px;
        border: 1px solid #393185; }
      .filter__category-elem-checkbox input[type=radio] ~ span::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 1px;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        display: inline-block;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        border: 1px solid #C5CAD3;
        background: #fff;
        z-index: 3; }
      .filter__category-elem-checkbox input[type=radio]:checked ~ span::before {
        z-index: 10;
        background: #393185 url(../images/sprites/svg/radio.svg) no-repeat center;
        border: 1px solid #393185; }
    .filter__category-elem-count {
      color: #717C8D; }
  .filter__category-link {
    margin: 8px 0 0 0;
    padding: 0 24px;
    color: #393185; }
  .filter__category-separator {
    display: block;
    margin: 0 24px;
    border-bottom: 1px solid #E5E7EA; }
  .filter__footer {
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 12px; }
    @media (max-width: 1025px) {
      .filter__footer {
        position: fixed;
        width: 360px;
        bottom: 0;
        opacity: 0;
        left: -999px;
        -webkit-transition: opacity 0.3s, left 0.3s;
        transition: opacity 0.3s, left 0.3s; } }
    .filter__footer-btn {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 50%;
              flex: 0 1 50%; }
    .filter__footer button, .filter__footer input {
      max-width: none; }
    .filter__footer-btn-show {
      color: #fff; }
      .filter__footer-btn-show span {
        margin: 0 0 0 7px; }
    .filter__footer-btn-reset {
      cursor: pointer; }

.range-slider__wrapper {
  margin: 0 0 10px 0; }

.range-slider__priceInput {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 30px 0; }

.range-slider__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  background: #F3F4F6;
  padding: 12px 16px; }
  .range-slider__field span {
    color: #717C8D; }
  .range-slider__field input {
    width: 100%;
    height: 100%;
    outline: none;
    margin-left: 6px;
    border-radius: 5px;
    border: none;
    background: none;
    -moz-appearance: textfield; }
    .range-slider__field input::-webkit-outer-spin-button, .range-slider__field input::-webkit-inner-spin-button {
      -webkit-appearance: none; }

.range-slider__separator {
  margin: 0 8px;
  width: 40px;
  height: 1px;
  background-color: #C5CAD3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 19px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.range-slider__slider {
  height: 4px;
  position: relative;
  background: #393185;
  opacity: 0.5;
  border-radius: 5px; }
  .range-slider__slider-progress {
    height: 100%;
    left: 0;
    right: 0;
    position: absolute;
    border-radius: 4px; }

.range-slider__rangeInput {
  position: relative; }
  .range-slider__rangeInput input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none; }
    .range-slider__rangeInput input::-webkit-slider-thumb {
      height: 24px;
      width: 24px;
      border-radius: 50%;
      background: #fff;
      border: 4px solid #393185;
      background: #FFF;
      pointer-events: auto;
      -webkit-appearance: none; }
    .range-slider__rangeInput input::-moz-range-thumb {
      height: 24px;
      width: 24px;
      border-radius: 50%;
      background: #fff;
      border: 4px solid #393185;
      background: #FFF;
      pointer-events: auto;
      -moz-appearance: none; }

.mobile-filter-btn {
  padding: 16px 0; }
  .mobile-filter-btn__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .mobile-filter-btn__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px; }
  .mobile-filter-btn__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px; }
    .mobile-filter-btn__right-count h3 {
      line-height: 1; }
    .mobile-filter-btn__right-clear {
      cursor: pointer;
      padding: 2px; }
      .mobile-filter-btn__right-clear svg {
        fill: #7D8899; }
  .mobile-filter-btn span svg {
    width: 20px;
    height: 20px;
    fill: #7D8899; }
  .mobile-filter-btn p {
    color: #393185; }

.brands-block-title {
  margin: 0 0 24px 0; }

.brands-block__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px; }
  @media (max-width: 1650px) {
    .brands-block__items {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }

.brands-block__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 268px;
          flex: 0 1 268px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  border-radius: 12px;
  background: #F3F4F6;
  padding: 16px;
  height: 72px;
  min-width: 240px; }
  @media (max-width: 1650px) {
    .brands-block__item {
      -webkit-box-flex: 1;
          -ms-flex: 1 1 268px;
              flex: 1 1 268px; } }
  .brands-block__item:hover {
    border-radius: 12px;
    background: #fff;
    -webkit-box-shadow: 0 4px 20px 0 rgba(45, 47, 56, 0.08);
            box-shadow: 0 4px 20px 0 rgba(45, 47, 56, 0.08); }
  .brands-block__item-logo img {
    width: 40px;
    height: 40px; }
  .brands-block__item-name {
    color: #393185; }

.brands-block__all-brands {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px; }
  .brands-block__all-brands p {
    color: #393185; }
  .brands-block__all-brands span {
    color: #717C8D;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px; }
    .brands-block__all-brands span svg {
      width: 10px;
      height: 10px;
      fill: #C5CAD3;
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg); }

.brands--menu .brands-block__items {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (max-width: 1200px) {
    .brands--menu .brands-block__items {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }

.brands--menu .brands-block__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 72px;
          flex: 0 0 72px; }
  @media (max-width: 1200px) {
    .brands--menu .brands-block__item {
      -webkit-box-flex: 1;
          -ms-flex: 1 1 320px;
              flex: 1 1 320px; } }

.brands--menu .brands-block__all-brands p {
  color: #000C1A; }

.categories-cloud__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px; }
  @media (max-width: 564px) {
    .categories-cloud__items {
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      overflow-x: scroll; }
      .categories-cloud__items::-webkit-scrollbar {
        width: 0;
        height: 0; } }

.categories-cloud__item {
  max-width: none;
  width: auto; }
  .categories-cloud__item.hidden {
    display: none; }
    @media (max-width: 564px) {
      .categories-cloud__item.hidden {
        display: block; } }
  @media (max-width: 564px) {
    .categories-cloud__item {
      white-space: nowrap;
      padding: 12px 20px; } }

.categories-cloud__item-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background-color: #E5E7EA; }
  @media (max-width: 564px) {
    .categories-cloud__item-all {
      display: none; } }
  .categories-cloud__item-all.active span svg {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg); }
  .categories-cloud__item-all p {
    color: #393185; }
  .categories-cloud__item-all:hover p {
    color: #1E2152; }
  .categories-cloud__item-all span svg {
    width: 10px;
    height: 10px;
    fill: #393185;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s; }

@media (max-width: 1200px) {
  .switch-buttons {
    display: none; } }

.switch-buttons__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px; }

.switch-buttons__button {
  outline: none;
  border-radius: 8px;
  border: 1px solid #E5E7EA;
  background-color: #fff;
  padding: 8px;
  -webkit-transition: background-color 0.3s, border 0.3s;
  transition: background-color 0.3s, border 0.3s; }
  .switch-buttons__button.active {
    background-color: #393185;
    border: 1px solid #393185; }
    .switch-buttons__button.active svg {
      fill: #fff; }
  .switch-buttons__button svg {
    pointer-events: none;
    width: 24px;
    height: 24px;
    fill: #7D8899;
    -webkit-transition: fill 0.3s;
    transition: fill 0.3s; }

.product-characteristics__category {
  color: #717C8D;
  margin: 0 0 12px 0; }

.product-characteristics__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px; }
  @media (max-width: 564px) {
    .product-characteristics__items {
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      overflow-x: scroll; }
      .product-characteristics__items::-webkit-scrollbar {
        width: 0;
        height: 0; } }

.product-characteristics__item {
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 8px; }
  @media (max-width: 564px) {
    .product-characteristics__item {
      white-space: nowrap; } }
  .product-characteristics__item.active {
    border-color: #393185;
    background-color: #393185;
    color: #fff; }
  .product-characteristics__item input {
    display: none; }

.modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px;
  -webkit-box-shadow: 0 8px 32px 0 rgba(45, 47, 56, 0.08);
          box-shadow: 0 8px 32px 0 rgba(45, 47, 56, 0.08); }
  .modal__header span svg {
    width: 24px;
    height: 24px;
    fill: #7D8899; }

.modal-filter {
  position: fixed;
  top: 0;
  opacity: 0;
  left: -999%;
  width: 360px;
  height: 100%;
  overflow-y: hidden;
  z-index: 45;
  background-color: #fff;
  -webkit-transition: left 0.3s, opacity 0.3s;
  transition: left 0.3s, opacity 0.3s; }
  @media (max-width: 564px) {
    .modal-filter {
      width: 100%; } }
  .modal-filter.active {
    opacity: 1;
    left: 0; }
  .modal-filter .filter__body {
    border: none;
    padding: 0;
    margin: 0 0 100px 0;
    border-radius: 0; }
  .modal-filter .filter__body {
    height: 100%;
    max-height: 530px;
    padding: 0 0 50px 0;
    overflow-y: scroll; }
  .modal-filter .filter__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    z-index: 8;
    background-color: #fff; }
  .modal-filter__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 16px;
    -webkit-box-shadow: 0 8px 32px 0 rgba(45, 47, 56, 0.08);
            box-shadow: 0 8px 32px 0 rgba(45, 47, 56, 0.08); }
    .modal-filter__header span svg {
      width: 24px;
      height: 24px;
      fill: #7D8899; }

.modal-header-more {
  position: fixed;
  left: 0;
  bottom: -999%;
  width: 100%;
  height: 100vh;
  background-color: rgba(57, 49, 133, 0.75);
  z-index: 25;
  -webkit-transition: background-color 0.3s, bottom 0.3s;
  transition: background-color 0.3s, bottom 0.3s; }
  .modal-header-more.active {
    bottom: 0; }
  .modal-header-more__body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow-y: scroll;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #fff;
    border-radius: 12px 12px 0 0;
    padding: 24px 0 40px; }
    .modal-header-more__body::-webkit-scrollbar {
      width: 0;
      height: 0; }
  .modal-header-more__header {
    padding: 0 16px;
    margin: 0 0 16px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .modal-header-more__header span svg {
      width: 24px;
      height: 24px;
      fill: #7D8899; }
  .modal-header-more__info-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .modal-header-more__info-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    padding: 16px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s; }
    .modal-header-more__info-button:hover {
      background-color: #F3F4F6; }
      .modal-header-more__info-button:hover span svg {
        fill: #393185; }
      .modal-header-more__info-button:hover p {
        color: #393185; }
    .modal-header-more__info-button span svg {
      width: 24px;
      height: 24px;
      fill: #7D8899; }
    .modal-header-more__info-button p {
      color: #000C1A; }
    .modal-header-more__info-button-counter {
      position: absolute;
      right: 16px;
      margin: auto 0;
      border-radius: 40px;
      border: 4px solid #fff;
      background: #E40038; }
      .modal-header-more__info-button-counter span {
        padding: 2px 6px;
        color: #fff; }
  .modal-header-more__footer {
    margin: 16px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px; }
    .modal-header-more__footer-about-header {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      gap: 12px;
      padding: 0 16px; }
      .modal-header-more__footer-about-header.active span svg {
        fill: #393185;
        -webkit-transform: rotate(-270deg);
            -ms-transform: rotate(-270deg);
                transform: rotate(-270deg); }
      .modal-header-more__footer-about-header-text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 4px; }
        .modal-header-more__footer-about-header-text a {
          display: inline-block;
          color: #393185; }
        .modal-header-more__footer-about-header-text span {
          color: #717C8D; }
      .modal-header-more__footer-about-header span svg {
        width: 10px;
        height: 10px;
        fill: #C5CAD3;
        -webkit-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
                transform: rotate(-90deg);
        -webkit-transition: fill 0.3s, -webkit-transform 0.3s;
        transition: fill 0.3s, -webkit-transform 0.3s;
        transition: fill 0.3s, transform 0.3s;
        transition: fill 0.3s, transform 0.3s, -webkit-transform 0.3s; }
    .modal-header-more__footer-about-bottom {
      margin: 8px 0 0 0;
      max-height: 0;
      overflow: hidden;
      -webkit-transition: max-height 0.3s;
      transition: max-height 0.3s; }
    .modal-header-more__footer-about-list {
      margin: 8px 0 0 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 8px; }
      .modal-header-more__footer-about-list li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 4px;
        padding: 8px 16px;
        -webkit-transition: background-color 0.3s;
        transition: background-color 0.3s; }
        .modal-header-more__footer-about-list li.active {
          background-color: #F3F4F6; }
        .modal-header-more__footer-about-list li:hover {
          background-color: #F3F4F6; }
        .modal-header-more__footer-about-list li a {
          color: #393185; }
        .modal-header-more__footer-about-list li span {
          color: #717C8D; }

.main-page {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	margin: 24px 0 120px; }
@media (max-width: 992px) {
	.main-page {
		margin: 120px 0 0 0; } }
.main-page__banner {
	position: relative; }
.main-page__banner-slider {
	position: relative;
	border-radius: 16px;
	overflow: hidden; }
.main-page__banner-slide {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 78px; }
@media (max-width: 1025px) {
	.main-page__banner-slide {
		gap: 25px; } }
@media (max-width: 768px) {
	.main-page__banner-slide {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column; } }
@media (max-width: 564px) {
	.main-page__banner-slide {
		gap: 0;
		height: 445px; } }
.main-page__banner-slide-image {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 47%;
	flex: 0 1 47%; }
@media (max-width: 1025px) {
	.main-page__banner-slide-image {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 47%;
		flex: 0 0 47%; } }
.main-page__banner-slide-about {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding: 32px 40px;
	max-width: 590px;
	z-index: 1; }
@media (max-width: 1025px) {
	.main-page__banner-slide-about {
		padding: 16px 16px 40px 16px; } }
@media (max-width: 768px) {
	.main-page__banner-slide-about {
		max-width: none; } }
@media (max-width: 564px) {
	.main-page__banner-slide-about {
		position: absolute;
		bottom: 25px;
		left: 0;
		right: 0;
		gap: 8px;
		margin: 0 auto;
		padding: 16px; } }
.main-page__banner-slide-title {
	color: #fff; }
@media (max-width: 564px) {
	.main-page__banner-slide-title {
		font-size: 18px; } }
.main-page__banner-slide-text {
	color: #fff;
	max-width: 530px; }
.main-page__banner-slide-btn {
	margin: 16px 0 0 0;
	color: #000C1A; }
@media (max-width: 564px) {
	.main-page__banner-slide-btn {
		margin: 32px auto 0 auto;
		max-width: -webkit-fill-available; } }
.main-page__stocks-title {
	margin: 0 0 5px 0; }
.main-page__stocks-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 24px;
	padding: 20px 0; }
.main-page__stocks-item {
	border-radius: 16px;
	height: 264px;
	overflow: hidden;
	padding: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column; }
@media (max-width: 564px) {
	.main-page__stocks-item {
		padding: 16px;
		height: 200px; } }
.main-page__stocks-item:hover {
	background: #fff;
	-webkit-box-shadow: 0 8px 32px 0 rgba(45, 47, 56, 0.08);
	box-shadow: 0 8px 32px 0 rgba(45, 47, 56, 0.08); }
.main-page__stocks-item:hover .main-page__stocks-item-text {
	color: #393185; }
.main-page__stocks-item:hover .main-page__stocks-item-image svg {
	fill: #14BDAA; }
.main-page__stocks-item:hover .main-page__stocks-item-date {
	color: #596476; }
.main-page__stocks-item-image {
	margin: 0 0 48px 0; }
@media (max-width: 564px) {
	.main-page__stocks-item-image {
		margin: 0 0 32px 0; } }
.main-page__stocks-item-image svg {
	width: 36px;
	height: 36px;
	fill: #fff;
	-webkit-transition: fill 0.3s;
	transition: fill 0.3s; }
.main-page__stocks-item-text {
	color: #fff;
	-webkit-transition: color 0.3s;
	transition: color 0.3s; }
.main-page__stocks-item-date {
	margin: auto 0 0 0;
	color: #fff;
	-webkit-transition: color 0.3s;
	transition: color 0.3s; }
.main-page__stocks-all-stocks {
	margin: 5px 0 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	border-radius: 12px;
	background: #F3F4F6;
	padding: 24px;
	color: #393185; }
.main-page__stocks-all-stocks:hover {
	color: #1E2152; }
.main-page__stocks-all-stocks span svg {
	width: 10px;
	height: 10px;
	fill: #C5CAD3;
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg); }
.main-page__popular-title {
	margin: 0 0 5px 0; }
.main-page__popular-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 20px 0; }
.main-page__popular-item {
	display: block;
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: #F3F4F6;
	height: 180px;
	padding: 24px; }
@media (max-width: 564px) {
	.main-page__popular-item {
		height: 140px; } }
.main-page__popular-item:hover {
	background: #fff;
	-webkit-box-shadow: 0 4px 20px 0 rgba(45, 47, 56, 0.08);
	box-shadow: 0 4px 20px 0 rgba(45, 47, 56, 0.08); }
.main-page__popular-item-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	height: 100%;
	z-index: 1; }
.main-page__popular-item-name {
	color: #393185;
	max-width: 152px; }
.main-page__popular-item-count {
	color: #596476; }
.main-page__popular-item-image {
	position: absolute;
	right: 0;
	bottom: -17px;
	width: 174px;
	height: 174px;
	-o-object-fit: contain;
	object-fit: contain; }
.main-page__sale {
	position: relative; }
.main-page__sale-title {
	margin: 0 0 5px 0; }
@media (max-width: 768px) {
	.main-page__sale-title {
		margin: 0 0 24px 0; } }
.main-page__sale-cards {
	padding: 20px 0; }
@media (max-width: 768px) {
	.main-page__sale .desctop--products-cards {
		display: none; } }
.main-page__brands-title {
	margin: 0 0 24px 0;
	font-size: 32px; }
.main-page__brands-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px; }
@media (max-width: 1650px) {
	.main-page__brands-items {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap; } }
.main-page__brands-item {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 268px;
	flex: 0 1 268px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	border-radius: 12px;
	background: #F3F4F6;
	padding: 16px;
	height: 72px;
	min-width: 240px; }
@media (max-width: 1650px) {
	.main-page__brands-item {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 268px;
		flex: 1 1 268px; } }
.main-page__brands-item:hover {
	border-radius: 12px;
	background: #fff;
	-webkit-box-shadow: 0 4px 20px 0 rgba(45, 47, 56, 0.08);
	box-shadow: 0 4px 20px 0 rgba(45, 47, 56, 0.08); }
.main-page__brands-item-logo img {
	width: 40px;
	height: 40px; }
.main-page__brands-item-name {
	color: #393185; }
.main-page__brands-all-brands {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 15px; }
.main-page__brands-all-brands p {
	color: #393185; }
.main-page__brands-all-brands span {
	color: #717C8D;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px; }
.main-page__brands-all-brands span svg {
	width: 10px;
	height: 10px;
	fill: #C5CAD3;
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg); }
.main-page__about {
	margin: 44px 0 0 0;
	padding: 56px;
	border-radius: 16px;
	background-color: #393185;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 56px; }
@media (max-width: 768px) {
	.main-page__about {
		padding: 24px 16px; } }
@media (max-width: 564px) {
	.main-page__about {
		gap: 24px; } }
.main-page__about-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 32px; }
@media (max-width: 768px) {
	.main-page__about-header {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		gap: 16px; } }
.main-page__about-logo svg {
	width: 172px;
	height: 72px; }
@media (max-width: 564px) {
	.main-page__about-logo svg {
		width: 90px;
		height: 38px; } }
.main-page__about-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
	color: #fff; }
@media (max-width: 564px) {
	.main-page__about-title {
		gap: 4px; } }
.main-page__about-cards {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 32px; }
@media (max-width: 1440px) {
	.main-page__about-cards {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start; } }
@media (max-width: 1025px) {
	.main-page__about-cards {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column; } }
.main-page__about-card {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 24px; }
@media (max-width: 564px) {
	.main-page__about-card {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start; } }
.main-page__about-card-icon {
	border-radius: 32px;
	background-color: rgba(255, 255, 255, 0.2);
	padding: 12px; }
.main-page__about-card-icon svg {
	height: 36px;
	width: 36px;
	fill: #fff; }
.main-page__about-card-about {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px; }
.main-page__about-card-about h4, .main-page__about-card-about p {
	color: #fff; }
.main-page__about-text {
	max-width: 720px; }
.main-page__about-text p {
	color: #fff; }
.main-page__about-text p:not(:last-child) {
	margin: 0 0 20px 0; }
.main-page__about-btn {
	margin: 24px 0 0 0;
	color: #000C1A; }
@media (max-width: 768px) {
	.main-page__about-btn {
		max-width: none; } }

.banner--pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 12px;
  border: 3px solid #fff; }

.banner--pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1; }

.brands__left-bar {
  margin: 0 0 32px 0; }

.brands__right-text {
  margin: 0 0 32px 0; }
  .brands__right-text p:not(:last-child) {
    margin: 0 0 24px 0; }

.brands__right-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 32px; }
  @media (max-width: 1650px) {
    .brands__right-cards {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr; } }

@media (max-width: 564px) {
  .brand {
    padding: 0 0 24px 0; } }

.brand__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px; }
  @media (max-width: 1025px) {
    .brand__left-categories {
      display: none; } }
  @media (max-width: 1025px) {
    .brand__left-coloring {
      display: none; } }

.brand__right-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin: 0 0 34px 0; }
  @media (max-width: 768px) {
    .brand__right-header {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 12px; } }
  .brand__right-header-image img {
    max-width: 160px;
    max-height: 160px;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: 12px; }
    @media (max-width: 768px) {
      .brand__right-header-image img {
        max-width: 80px;
        max-height: 80px; } }
  .brand__right-header-text {
    padding: 3px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .brand__right-header-hide {
    display: inline-block; }
    .brand__right-header-hide a {
      color: #393185; }

.brand__catalog-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 34px 0; }
  @media (max-width: 1650px) {
    .brand__catalog-header {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media (max-width: 1025px) {
    .brand__catalog-header h2 {
      display: none; } }

.brand__catalog-sort {
  max-width: 320px;
  width: 100%; }
  @media (max-width: 1650px) {
    .brand__catalog-sort {
      max-width: none; } }

.brand__catalog-categories {
  display: none;
  margin: 0 0 24px 0; }
  @media (max-width: 1025px) {
    .brand__catalog-categories {
      display: block; } }

.brand__catalog-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px; }

@media (max-width: 1025px) {
  .category__left-coloring {
    display: none; } }

.category__catalog-cloud {
  margin: 0 0 32px 0; }

.category__catalog-sort {
  max-width: 320px;
  margin: 0 0 32px 0; }

@media (max-width: 992px) {
  .product {
    margin: 120px 0 0 0; } }

.product__info {
  margin: 0 0 24px 0; }
  .product__info-title {
    margin: 0 0 40px 0; }
    @media (max-width: 992px) {
      .product__info-title {
        margin: 0 0 24px 0; } }
    @media (max-width: 768px) {
      .product__info-title {
        font-size: 32px; } }
  .product__info-color {
    margin: 0 0 32px 0; }
  .product__info-packing {
    margin: 0 0 40px 0; }
    @media (max-width: 992px) {
      .product__info-packing {
        margin: 0 0 24px 0; } }
  .product__info-available {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
    margin: 0 0 40px 0; }
    @media (max-width: 992px) {
      .product__info-available {
        margin: 0 0 24px 0; } }
    .product__info-available-now {
      display: none;
      color: #00AB5B; }
      .product__info-available-now-count {
        padding: 0 5px; }
    .product__info-available-not {
      color: #717C8D; }
    .product__info-available-future-count {
      padding: 0 5px; }
    .product__info-available-future-date {
      padding: 0 5px; }
  .product__info-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    margin: 0 0 32px 0; }
    @media (max-width: 564px) {
      .product__info-price {
        gap: 12px; } }
    .product__info-price-top {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 16px; }
      @media (max-width: 564px) {
        .product__info-price-top {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-align: start;
              -ms-flex-align: start;
                  align-items: flex-start;
          gap: 12px; } }
    .product__info-price-old {
      display: none;
      color: #717C8D;
      font-family: "Montserrat", sans-serif;
      font-size: 18px;
      font-style: normal;
      font-weight: 600;
      line-height: 1.3;
      text-decoration-line: line-through; }
    .product__info-price-discount {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 8px; }
      .product__info-price-discount h3 {
        color: #717C8D;
        line-height: 1;
        white-space: nowrap; }
      .product__info-price-discount span {
        cursor: pointer; }
        .product__info-price-discount span:hover svg {
          fill: #393185; }
        .product__info-price-discount span svg {
          width: 24px;
          height: 24px;
          fill: #7D8899;
          -webkit-transition: fill 0.3s;
          transition: fill 0.3s; }
      .product__info-price-discount-note {
        position: absolute;
        left: 150px;
        bottom: 34px;
        max-width: 236px;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        border-radius: 6px;
        -webkit-box-shadow: 0 4px 20px 0 rgba(45, 47, 56, 0.08);
                box-shadow: 0 4px 20px 0 rgba(45, 47, 56, 0.08);
        background-color: #fff; }
        @media (max-width: 564px) {
          .product__info-price-discount-note {
            border-radius: 0;
            position: fixed;
            z-index: 40;
            width: 100%;
            height: 100vh;
            background-color: rgba(57, 49, 133, 0.75);
            left: 0;
            bottom: -999px;
            max-width: none;
            -webkit-transition: background-color 0.3s, bottom 0.3s, opacity 0.3s, visibility 0.3s;
            transition: background-color 0.3s, bottom 0.3s, opacity 0.3s, visibility 0.3s; }
            .product__info-price-discount-note.active {
              bottom: 0; }
            .product__info-price-discount-note::after {
              display: none; }
            .product__info-price-discount-note-body {
              position: absolute;
              width: 100%;
              left: 0;
              bottom: 0;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-orient: vertical;
              -webkit-box-direction: normal;
                  -ms-flex-direction: column;
                      flex-direction: column;
              background-color: #fff;
              overflow: hidden;
              border-radius: 12px 12px 0 0;
              padding: 0 0 72px 0; } }
        .product__info-price-discount-note::after {
          content: '';
          position: absolute;
          bottom: -7px;
          left: 0;
          width: 236px;
          height: 8px;
          z-index: 2;
          background-image: url("../images/sprites/svg/triangle.svg");
          background-repeat: no-repeat; }
        .product__info-price-discount-note.active {
          opacity: 1;
          visibility: visible; }
        .product__info-price-discount-note-title {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          padding: 5px 16px;
          -webkit-box-shadow: 0px -1px 0px 0px #F0F0F0 inset;
                  box-shadow: 0px -1px 0px 0px #F0F0F0 inset; }
          @media (max-width: 564px) {
            .product__info-price-discount-note-title {
              -webkit-box-shadow: none;
                      box-shadow: none;
              padding: 24px 16px 16px 16px; }
              .product__info-price-discount-note-title h5 {
                font-size: 18px; } }
        .product__info-price-discount-note-close {
          display: none; }
          .product__info-price-discount-note-close svg {
            fill: #7D8899; }
          @media (max-width: 564px) {
            .product__info-price-discount-note-close {
              display: block; } }
        .product__info-price-discount-note-text {
          padding: 12px 16px; }
          @media (max-width: 564px) {
            .product__info-price-discount-note-text {
              padding: 0 16px; } }
    .product__info-price-economy {
      border-radius: 24px;
      background: #E55C00;
      padding: 8px 18px; }
      .product__info-price-economy p {
        color: #fff; }
  .product__info-basket-btn {
    margin: 0 0 40px 0; }
    @media (max-width: 992px) {
      .product__info-basket-btn {
        margin: 0 0 24px 0; } }
    @media (max-width: 564px) {
      .product__info-basket-btn button {
        max-width: none; } }
    .product__info-basket-btn button {
      color: #fff; }
  .product__info-what-need {
    margin: 0 0 24px 0; }
    @media (max-width: 992px) {
      .product__info-what-need {
        margin: 0 0 16px 0; } }
    .product__info-what-need__row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      gap: 24px;
      padding: 16px 32px; }
      @media (max-width: 1440px) {
        .product__info-what-need__row {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-align: start;
              -ms-flex-align: start;
                  align-items: flex-start;
          gap: 8px; } }
      @media (max-width: 992px) {
        .product__info-what-need__row {
          padding: 12px 0; } }
      .product__info-what-need__row-text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 4px; }
        .product__info-what-need__row-text p {
          color: #717C8D; }
      .product__info-what-need__row-link {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 8px; }
        .product__info-what-need__row-link:hover p {
          color: #1E2152; }
        .product__info-what-need__row-link p {
          color: #393185; }
        .product__info-what-need__row-link span svg {
          width: 10px;
          height: 10px;
          fill: #C5CAD3;
          -webkit-transform: rotate(180deg);
              -ms-transform: rotate(180deg);
                  transform: rotate(180deg); }
    .product__info-what-need__separator {
      width: 100%;
      height: 1px;
      background-color: #E5E7EA;
      margin: 8px 0; }
  .product__info-discount {
    border-radius: 12px;
    border: 1px solid #E5E7EA;
    padding: 24px 32px; }
    .product__info-discount__body {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 16px; }
    .product__info-discount__img svg {
      width: 24px;
      height: 24px;
      fill: #393185; }
    .product__info-discount__text {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 4px; }
      .product__info-discount__text p {
        color: #717C8D; }
  .product__info-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px; }
    @media (max-width: 1200px) {
      .product__info-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    @media (max-width: 992px) {
      .product__info-top {
        gap: 24px; } }
    .product__info-top-left {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 968px;
              flex: 0 1 968px; }
      @media (max-width: 1200px) {
        .product__info-top-left {
          -webkit-box-flex: 0;
              -ms-flex: 0 1 auto;
                  flex: 0 1 auto; } }
    .product__info-top-right {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 680px;
              flex: 0 1 680px; }
      @media (max-width: 1200px) {
        .product__info-top-right {
          -webkit-box-flex: 0;
              -ms-flex: 0 1 auto;
                  flex: 0 1 auto; } }

.product__compare {
  position: relative;
  padding: 24px 0; }
  .product__compare-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    margin: 0 0 4px 0; }
    @media (max-width: 768px) {
      .product__compare-header {
        margin: 0 0 24px 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
  .product__compare-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px; }
    .product__compare-link:hover span svg {
      fill: #393185; }
    .product__compare-link span svg {
      width: 20px;
      height: 20px;
      fill: #7D8899;
      -webkit-transition: fill 0.3s;
      transition: fill 0.3s; }
    .product__compare-link p {
      color: #393185; }
  .product__compare-slider {
    padding: 20px 0; }
    @media (max-width: 768px) {
      .product__compare-slider {
        display: none; } }
  .product__compare-grid {
    display: none; }
    @media (max-width: 768px) {
      .product__compare-grid {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 40px 1fr;
        grid-template-columns: repeat(2, 1fr);
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
        row-gap: 32px; } }

.product__viewed {
  position: relative;
  padding: 24px 0; }
  .product__viewed-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    margin: 0 0 4px 0; }
    @media (max-width: 768px) {
      .product__viewed-header {
        margin: 0 0 24px 0; } }
  .product__viewed-slider {
    padding: 20px 0; }
    @media (max-width: 768px) {
      .product__viewed-slider {
        display: none; } }
  .product__viewed-grid {
    display: none; }
    @media (max-width: 768px) {
      .product__viewed-grid {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 40px 1fr;
        grid-template-columns: repeat(2, 1fr);
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
        row-gap: 32px; } }

.product__gallery {
  border-radius: 12px;
  border: 1px solid #E5E7EA;
  padding: 32px;
  margin: 0 0 32px 0; }
  @media (max-width: 992px) {
    .product__gallery {
      margin: 0;
      padding: 16px; } }
  .product__gallery .swiper-wrapper {
    padding: 0 0 32px 0; }
  .product__gallery .swiper-pagination {
    bottom: 0; }
  .product__gallery .swiper-pagination-bullet {
    background-color: #D5D9DF;
    opacity: 1; }
  .product__gallery .swiper-pagination-bullet-active {
    background-color: #596476; }
  .product__gallery-slider {
    margin: 0 0 48px 0; }
    @media (max-width: 768px) {
      .product__gallery-slider {
        margin: 0 0 16px 0; } }
    @media (max-width: 564px) {
      .product__gallery-slider {
        margin: 0; } }
  .product__gallery-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .product__gallery-slide img {
      width: 100%;
      height: 100%;
      max-height: 480px;
      max-width: 480px;
      -o-object-fit: contain;
         object-fit: contain; }
  .product__gallery-thumbs {
    position: relative;
    margin: 0 auto;
    max-width: 400px; }
    @media (max-width: 564px) {
      .product__gallery-thumbs {
        display: none; } }
    .product__gallery-thumbs-slide {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      height: 100%;
      max-height: 88px; }
      .product__gallery-thumbs-slide img {
        border-radius: 16px;
        background: #F3F4F6;
        width: 88px;
        height: 88px;
        -o-object-fit: contain;
           object-fit: contain; }
    .product__gallery-thumbs .swiper-slide {
      border: 1px solid transparent;
      border-radius: 16px; }
    .product__gallery-thumbs .swiper-slide-thumb-active {
      border: 1px solid #e0e0e0; }

.product__header-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin: 0 0 40px 0; }
  @media (max-width: 992px) {
    .product__header-buttons {
      margin: 0 0 24px 0;
      overflow-x: scroll; }
      .product__header-buttons::-webkit-scrollbar {
        width: 0;
        height: 0; } }

.product__header-button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px; }
  .product__header-button:hover span svg {
    fill: #393185; }
  .product__header-button span svg {
    width: 24px;
    height: 24px;
    fill: #7D8899;
    -webkit-transition: fill 0.3s;
    transition: fill 0.3s; }
  .product__header-button p {
    color: #393185; }

.product__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px; }
  @media (max-width: 768px) {
    .product__links {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 8px; } }
  .product__links--desctop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 992px) {
      .product__links--desctop {
        display: none; } }
  .product__links--mobile {
    display: none;
    margin: 24px 0 0 0; }
    @media (max-width: 992px) {
      .product__links--mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }

.product__link {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 24px;
  border-radius: 12px;
  background: #F3F4F6; }
  .product__link:hover {
    background-color: #E5E7EA; }
    .product__link:hover .product__link-arrow svg {
      fill: #596476; }
  @media (max-width: 768px) {
    .product__link {
      width: 100%;
      -webkit-box-flex: 1;
          -ms-flex: 1 1 50%;
              flex: 1 1 50%;
      padding: 16px; } }
  .product__link-img {
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .product__link-img img {
      -o-object-fit: contain;
         object-fit: contain; }
  .product__link-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px; }
    .product__link-text span {
      color: #717C8D; }
  .product__link-arrow {
    margin: 0 0 0 auto; }
    .product__link-arrow svg {
      fill: #C5CAD3;
      width: 10px;
      height: 10px;
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg);
      -webkit-transition: fill 0.3s;
      transition: fill 0.3s; }

@media (max-width: 992px) {
  .product__about {
    display: none; } }

.product__about-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #E5E7EA;
  margin: 44px 0 36px 0; }

.product__about-button {
  position: relative;
  padding: 15px 24px;
  outline: none;
  background: none;
  border: none;
  color: #717C8D; }
  .product__about-button:hover {
    color: #000C1A; }
  .product__about-button.active {
    color: #000C1A;
    -webkit-transition: width 0.3s, background-color 0.3s;
    transition: width 0.3s, background-color 0.3s; }
    .product__about-button.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: #393185; }

.product__about-text p:not(:last-child) {
  margin: 0 0 15px 0; }

.product__about-mobile {
  display: none;
  border-radius: 8px;
  background: #F3F4F6;
  margin: 24px 0 0 0; }
  @media (max-width: 992px) {
    .product__about-mobile {
      display: block; } }
  .product__about-mobile-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .product__about-mobile-row {
    padding: 24px 16px; }
    .product__about-mobile-row.active span svg {
      -webkit-transform: rotate(-270deg);
          -ms-transform: rotate(-270deg);
              transform: rotate(-270deg); }
    .product__about-mobile-row-title {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      gap: 4px; }
      .product__about-mobile-row-title span svg {
        width: 10px;
        height: 10px;
        fill: #C5CAD3;
        -webkit-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
                transform: rotate(-90deg);
        -webkit-transition: -webkit-transform 0.3s;
        transition: -webkit-transform 0.3s;
        transition: transform 0.3s;
        transition: transform 0.3s, -webkit-transform 0.3s; }
    .product__about-mobile-row-text {
      max-height: 0;
      overflow: hidden;
      -webkit-transition: max-height 0.3s;
      transition: max-height 0.3s; }
    .product__about-mobile-row-text-block {
      padding: 24px 0 0 0; }
      .product__about-mobile-row-text-block p:not(:last-child) {
        margin: 0 0 10px 0; }
  .product__about-mobile-separator {
    background-color: #E5E7EA;
    height: 1px;
    width: 100%; }

.payment-banner {
  border-radius: 12px;
  border: 1px solid #E5E7EA;
  padding: 32px;
  margin: 0 0 24px 0; }
  @media (max-width: 992px) {
    .payment-banner {
      margin: 0 0 16px 0; } }
  @media (max-width: 768px) {
    .payment-banner {
      padding: 16px; } }
  .payment-banner__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px; }
    @media (max-width: 768px) {
      .payment-banner__body {
        gap: 16px; } }
  .payment-banner__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px; }
    .payment-banner__row-img svg {
      width: 20px;
      height: 20px;
      fill: #393185; }
    .payment-banner__row-text {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 4px; }
      .payment-banner__row-text p {
        color: #717C8D; }
  .payment-banner .payment-banner__row--green {
    color: #00AB5B; }
  .payment-banner__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px; }
    .payment-banner__link:hover p {
      color: #1E2152; }
    .payment-banner__link p {
      color: #393185; }
    .payment-banner__link span svg {
      width: 10px;
      height: 10px;
      fill: #C5CAD3;
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); }

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