@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/CorsicaRamblerLX/CorsicaRamblerLX-Bold.woff2") format("woff2"), url("../fonts/CorsicaRamblerLX/CorsicaRamblerLX-Bold.woff") format("woff");
  font-family: "CorsicaRamblerLX";
  font-weight: 700;
  font-style: normal; }

@font-face {
  src: url("../fonts/CorsicaRamblerLX/CorsicaRamblerLX-BoldIt.woff2") format("woff2"), url("../fonts/CorsicaRamblerLX/CorsicaRamblerLX-BoldIt.woff") format("woff");
  font-family: "CorsicaRamblerLX";
  font-weight: 700;
  font-style: italic; }

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

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

@font-face {
  src: url("../fonts/CorsicaRamblerLX/CorsicaRamblerLX-MediumIt.woff2") format("woff2"), url("../fonts/CorsicaRamblerLX/CorsicaRamblerLX-MediumIt.woff") format("woff");
  font-family: "CorsicaRamblerLX";
  font-weight: 500;
  font-style: italic; }

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

@font-face {
  src: url("../fonts/CorsicaRamblerLX/CorsicaRamblerLX-Light.woff2") format("woff2"), url("../fonts/CorsicaRamblerLX/CorsicaRamblerLX-Light.woff") format("woff");
  font-family: "CorsicaRamblerLX";
  font-weight: 300;
  font-style: normal; }

@font-face {
  src: url("../fonts/CorsicaRamblerLX/CorsicaRamblerLX-Book.woff2") format("woff2"), url("../fonts/CorsicaRamblerLX/CorsicaRamblerLX-Book.woff") format("woff");
  font-family: "CorsicaRamblerLX";
  font-weight: 200;
  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; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

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

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before, .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
        transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
        transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
        transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.nativejs-select {
  width: 400px;
  margin: 0 auto;
  margin-top: 30px;
  position: relative;
  border: 1px solid #1d1d1d;
  border-radius: 3px;
  cursor: pointer; }

.nativejs-select__placeholder,
.nativejs-select__option {
  cursor: pointer;
  border: none;
  outline: none;
  text-align: left; }

.nativejs-select__placeholder {
  width: 100%;
  padding: 12px 15px;
  color: #ccc;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-color: #0c0c0c; }

.nativejs-select__placeholder:after {
  content: '';
  display: block;
  width: 0;
  border-top: 6px solid #7ca95c;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }

.nativejs-select__placeholder img {
  margin-right: 5px; }

.nativejs-select__placeholder_fixed {
  padding-right: 5px;
  color: #7ca95c; }

.nativejs-select__dropdown {
  margin: 0;
  padding: 0;
  width: 100%;
  position: absolute;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  left: -1px;
  right: 0;
  bottom: -1px;
  z-index: 5;
  display: none;
  border: 1px solid #1d1d1d; }

.nativejs-select__option {
  width: 100%;
  padding: 10px 15px;
  font-style: italic;
  color: #ccc;
  background-color: #0c0c0c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid transparent; }

.nativejs-select__option img {
  margin-right: 10px; }

.nativejs-select__option:hover {
  border-bottom: 1px solid #7ca95c; }

.nativejs-select_active {
  border-radius: 3px 3px 0 0; }

.nativejs-select_active .nativejs-select__placeholder:after {
  border-top: none;
  border-bottom: 6px solid #7ca95c;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent; }

.nativejs-select_active .nativejs-select__dropdown {
  display: block;
  border-radius: 0 0 3px 3px; }

.nativejs-select__search {
  padding: 5px; }

.nativejs-select__search-inp {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 30px; }

.nativejs-select__placeholder-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

:root {
  --balloon-border-radius: 2px;
  --balloon-color: rgba(16, 16, 16, 0.95);
  --balloon-text-color: #fff;
  --balloon-font-size: 12px;
  --balloon-move: 4px; }

button[aria-label][data-balloon-pos] {
  overflow: visible; }

[aria-label][data-balloon-pos] {
  position: relative;
  cursor: pointer; }

[aria-label][data-balloon-pos]:after {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.18s ease-out 0.18s;
  -o-transition: all 0.18s ease-out 0.18s;
  transition: all 0.18s ease-out 0.18s;
  text-indent: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: normal;
  font-style: normal;
  text-shadow: none;
  font-size: var(--balloon-font-size);
  background: var(--balloon-color);
  border-radius: 2px;
  color: var(--balloon-text-color);
  border-radius: var(--balloon-border-radius);
  content: attr(aria-label);
  padding: .5em 1em;
  position: absolute;
  white-space: nowrap;
  z-index: 10; }

[aria-label][data-balloon-pos]:before {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: var(--balloon-color);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.18s ease-out 0.18s;
  -o-transition: all 0.18s ease-out 0.18s;
  transition: all 0.18s ease-out 0.18s;
  content: "";
  position: absolute;
  z-index: 10; }

[aria-label][data-balloon-pos]:hover:before, [aria-label][data-balloon-pos]:hover:after, [aria-label][data-balloon-pos][data-balloon-visible]:before, [aria-label][data-balloon-pos][data-balloon-visible]:after, [aria-label][data-balloon-pos]:not([data-balloon-nofocus]):focus:before, [aria-label][data-balloon-pos]:not([data-balloon-nofocus]):focus:after {
  opacity: 1;
  pointer-events: none; }

[aria-label][data-balloon-pos].font-awesome:after {
  font-family: FontAwesome, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; }

[aria-label][data-balloon-pos][data-balloon-break]:after {
  white-space: pre; }

[aria-label][data-balloon-pos][data-balloon-break][data-balloon-length]:after {
  white-space: pre-line;
  word-break: break-word; }

[aria-label][data-balloon-pos][data-balloon-blunt]:before, [aria-label][data-balloon-pos][data-balloon-blunt]:after {
  -webkit-transition: none;
  -o-transition: none;
  transition: none; }

[aria-label][data-balloon-pos][data-balloon-pos="up"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="up"][data-balloon-visible]:after, [aria-label][data-balloon-pos][data-balloon-pos="down"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="down"][data-balloon-visible]:after {
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0); }

[aria-label][data-balloon-pos][data-balloon-pos="up"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="up"][data-balloon-visible]:before, [aria-label][data-balloon-pos][data-balloon-pos="down"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="down"][data-balloon-visible]:before {
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0); }

[aria-label][data-balloon-pos][data-balloon-pos*="-left"]:after {
  left: 0; }

[aria-label][data-balloon-pos][data-balloon-pos*="-left"]:before {
  left: 5px; }

[aria-label][data-balloon-pos][data-balloon-pos*="-right"]:after {
  right: 0; }

[aria-label][data-balloon-pos][data-balloon-pos*="-right"]:before {
  right: 5px; }

[aria-label][data-balloon-pos][data-balloon-po*="-left"]:hover:after, [aria-label][data-balloon-pos][data-balloon-po*="-left"][data-balloon-visible]:after, [aria-label][data-balloon-pos][data-balloon-pos*="-right"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos*="-right"][data-balloon-visible]:after {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0); }

[aria-label][data-balloon-pos][data-balloon-po*="-left"]:hover:before, [aria-label][data-balloon-pos][data-balloon-po*="-left"][data-balloon-visible]:before, [aria-label][data-balloon-pos][data-balloon-pos*="-right"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos*="-right"][data-balloon-visible]:before {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0); }

[aria-label][data-balloon-pos][data-balloon-pos^="up"]:before, [aria-label][data-balloon-pos][data-balloon-pos^="up"]:after {
  bottom: 100%;
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  -webkit-transform: translate(0, var(--balloon-move));
      -ms-transform: translate(0, var(--balloon-move));
          transform: translate(0, var(--balloon-move)); }

[aria-label][data-balloon-pos][data-balloon-pos^="up"]:after {
  margin-bottom: 10px; }

[aria-label][data-balloon-pos][data-balloon-pos="up"]:before, [aria-label][data-balloon-pos][data-balloon-pos="up"]:after {
  left: 50%;
  -webkit-transform: translate(-50%, var(--balloon-move));
      -ms-transform: translate(-50%, var(--balloon-move));
          transform: translate(-50%, var(--balloon-move)); }

[aria-label][data-balloon-pos][data-balloon-pos^="down"]:before, [aria-label][data-balloon-pos][data-balloon-pos^="down"]:after {
  top: 100%;
  -webkit-transform: translate(0, calc(var(--balloon-move) * -1));
      -ms-transform: translate(0, calc(var(--balloon-move) * -1));
          transform: translate(0, calc(var(--balloon-move) * -1)); }

[aria-label][data-balloon-pos][data-balloon-pos^="down"]:after {
  margin-top: 10px; }

[aria-label][data-balloon-pos][data-balloon-pos^="down"]:before {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-bottom-color: var(--balloon-color); }

[aria-label][data-balloon-pos][data-balloon-pos="down"]:after, [aria-label][data-balloon-pos][data-balloon-pos="down"]:before {
  left: 50%;
  -webkit-transform: translate(-50%, calc(var(--balloon-move) * -1));
      -ms-transform: translate(-50%, calc(var(--balloon-move) * -1));
          transform: translate(-50%, calc(var(--balloon-move) * -1)); }

[aria-label][data-balloon-pos][data-balloon-pos="left"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="left"][data-balloon-visible]:after, [aria-label][data-balloon-pos][data-balloon-pos="right"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="right"][data-balloon-visible]:after {
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%); }

[aria-label][data-balloon-pos][data-balloon-pos="left"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="left"][data-balloon-visible]:before, [aria-label][data-balloon-pos][data-balloon-pos="right"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="right"][data-balloon-visible]:before {
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%); }

[aria-label][data-balloon-pos][data-balloon-pos="left"]:after, [aria-label][data-balloon-pos][data-balloon-pos="left"]:before {
  right: 100%;
  top: 50%;
  -webkit-transform: translate(var(--balloon-move), -50%);
      -ms-transform: translate(var(--balloon-move), -50%);
          transform: translate(var(--balloon-move), -50%); }

[aria-label][data-balloon-pos][data-balloon-pos="left"]:after {
  margin-right: 10px; }

[aria-label][data-balloon-pos][data-balloon-pos="left"]:before {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left-color: var(--balloon-color); }

[aria-label][data-balloon-pos][data-balloon-pos="right"]:after, [aria-label][data-balloon-pos][data-balloon-pos="right"]:before {
  left: 100%;
  top: 50%;
  -webkit-transform: translate(calc(var(--balloon-move) * -1), -50%);
      -ms-transform: translate(calc(var(--balloon-move) * -1), -50%);
          transform: translate(calc(var(--balloon-move) * -1), -50%); }

[aria-label][data-balloon-pos][data-balloon-pos="right"]:after {
  margin-left: 10px; }

[aria-label][data-balloon-pos][data-balloon-pos="right"]:before {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-right-color: var(--balloon-color); }

[aria-label][data-balloon-pos][data-balloon-length]:after {
  white-space: normal; }

[aria-label][data-balloon-pos][data-balloon-length="small"]:after {
  width: 80px; }

[aria-label][data-balloon-pos][data-balloon-length="medium"]:after {
  width: 150px; }

[aria-label][data-balloon-pos][data-balloon-length="large"]:after {
  width: 260px; }

[aria-label][data-balloon-pos][data-balloon-length="xlarge"]:after {
  width: 380px; }

@media screen and (max-width: 768px) {
  [aria-label][data-balloon-pos][data-balloon-length="xlarge"]:after {
    width: 90vw; } }

[aria-label][data-balloon-pos][data-balloon-length="fit"]:after {
  width: 100%; }

/*!
 * jQuery mmenu v7.0.6
 * @requires jQuery 1.7.0 or later
 *
 * mmenu.frebsite.nl
 *	
 * Copyright (c) Fred Heusschen
 * www.frebsite.nl
 *
 * License: CC-BY-NC-4.0
 * http://creativecommons.org/licenses/by-nc/4.0/
 */
.mm-hidden {
  display: none !important; }

.mm-wrapper {
  overflow-x: hidden;
  position: relative; }

.mm-menu {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: inherit;
  display: block;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.mm-menu a, .mm-menu a:active, .mm-menu a:hover, .mm-menu a:link, .mm-menu a:visited {
  color: inherit;
  text-decoration: none; }

.mm-panels, .mm-panels > .mm-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0; }

.mm-panel, .mm-panels {
  background: inherit;
  border-color: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0; }

.mm-panels {
  overflow: hidden; }

.mm-panel {
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 20px;
  -webkit-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  transition: -webkit-transform .4s ease;
  -webkit-transition: -webkit-transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  transition: transform .4s ease,-webkit-transform .4s ease;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left; }

.mm-panel:not(.mm-hidden) {
  display: block; }

.mm-panel:after, .mm-panel:before {
  content: '';
  display: block;
  height: 20px; }

.mm-panel_has-navbar {
  padding-top: 40px; }

.mm-panel_opened {
  z-index: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-panel_opened-parent {
  -webkit-transform: translate(-30%, 0);
  -ms-transform: translate(-30%, 0);
  transform: translate(-30%, 0);
  -webkit-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0); }

.mm-panel_highest {
  z-index: 2; }

.mm-panel_noanimation {
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important; }

.mm-panel_noanimation.mm-panel_opened-parent {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-listitem_vertical > .mm-panel {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  display: none;
  padding: 10px 0 10px 10px; }

.mm-listitem_vertical > .mm-panel:after, .mm-listitem_vertical > .mm-panel:before {
  content: none;
  display: none; }

.mm-listitem_opened > .mm-panel {
  display: block; }

.mm-listitem_vertical > .mm-btn_next {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 40px;
  bottom: auto; }

.mm-listitem_vertical .mm-listitem:last-child:after {
  border-color: transparent; }

.mm-listitem_opened > .mm-btn_next:after {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  right: 19px; }

.mm-btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  z-index: 1; }

.mm-btn_fullwidth {
  width: 100%; }

.mm-btn_clear:after, .mm-btn_clear:before, .mm-btn_close:after, .mm-btn_close:before {
  content: '';
  border: 2px solid transparent;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: block;
  width: 5px;
  height: 5px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.mm-btn_clear:before, .mm-btn_close:before {
  border-right: none;
  border-bottom: none;
  right: 18px; }

.mm-btn_clear:after, .mm-btn_close:after {
  border-left: none;
  border-top: none;
  right: 25px; }

.mm-btn_next:after, .mm-btn_prev:before {
  content: '';
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0; }

.mm-btn_prev:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 23px;
  right: auto; }

.mm-btn_next:after {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 23px;
  left: auto; }

.mm-navbar {
  border-bottom: 1px solid;
  border-color: inherit;
  text-align: center;
  line-height: 20px;
  display: none;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  -webkit-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease; }

.mm-navbar > * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  padding: 10px 0; }

.mm-navbar a, .mm-navbar a:hover {
  text-decoration: none; }

.mm-navbar__title {
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden; }

.mm-navbar__btn:first-child {
  left: 0; }

.mm-navbar__btn:last-child {
  text-align: right;
  right: 0; }

.mm-panel_has-navbar .mm-navbar {
  display: block; }

.mm-listitem, .mm-listview {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0; }

.mm-listitem, .mm-listitem .mm-btn_next, .mm-listitem .mm-btn_next:before, .mm-listitem:after, .mm-listview {
  border-color: inherit; }

.mm-listview {
  font: inherit;
  line-height: 20px; }

.mm-panels > .mm-panel > .mm-listview {
  margin: 20px -20px; }

.mm-panels > .mm-panel > .mm-listview:first-child, .mm-panels > .mm-panel > .mm-navbar + .mm-listview {
  margin-top: -20px; }

.mm-listitem {
  position: relative; }

.mm-listitem:after {
  content: '';
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0; }

.mm-listitem:after {
  left: 20px; }

.mm-listitem a, .mm-listitem a:hover {
  text-decoration: none; }

.mm-listitem > a, .mm-listitem > span {
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: inherit;
  display: block;
  padding: 10px 10px 10px 20px;
  margin: 0; }

.mm-listitem .mm-btn_next {
  background: rgba(3, 2, 1, 0);
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2; }

.mm-listitem .mm-btn_next:before {
  content: '';
  border-left-width: 1px;
  border-left-style: solid;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0; }

.mm-listitem .mm-btn_next:not(.mm-btn_fullwidth) {
  width: 50px; }

.mm-listitem .mm-btn_next:not(.mm-btn_fullwidth) + a, .mm-listitem .mm-btn_next:not(.mm-btn_fullwidth) + span {
  margin-right: 50px; }

.mm-listitem .mm-btn_fullwidth:before {
  border-left: none; }

.mm-listitem .mm-btn_fullwidth + a, .mm-listitem .mm-btn_fullwidth + span {
  padding-right: 50px; }

.mm-listitem_divider {
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 75%;
  text-transform: uppercase;
  padding: 5px 10px 5px 20px; }

.mm-listitem_divider:after {
  content: ' ';
  display: none;
  position: static;
  display: inline-block; }

.mm-listitem_spacer {
  padding-top: 40px; }

.mm-listitem_spacer > .mm-btn_next {
  top: 40px; }

.mm-menu {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75); }

.mm-menu .mm-navbar a, .mm-menu .mm-navbar > * {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu .mm-btn:after, .mm-menu .mm-btn:before {
  border-color: rgba(0, 0, 0, 0.3); }

.mm-menu .mm-listview .mm-btn_next:after {
  border-color: rgba(0, 0, 0, 0.3); }

.mm-menu .mm-listview a:not(.mm-btn_next) {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.4);
  tap-highlight-color: rgba(255, 255, 255, 0.4); }

.mm-menu .mm-listitem_selected > a:not(.mm-btn_next), .mm-menu .mm-listitem_selected > span {
  background: rgba(255, 255, 255, 0.4); }

.mm-menu .mm-listitem_opened > .mm-btn_next, .mm-menu .mm-listitem_opened > .mm-panel {
  background: rgba(0, 0, 0, 0.05); }

.mm-menu .mm-listitem_divider {
  background: rgba(0, 0, 0, 0.05); }

.mm-page {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative; }

.mm-slideout {
  transition: -webkit-transform .4s ease;
  -webkit-transition: -webkit-transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  transition: transform .4s ease,-webkit-transform .4s ease;
  z-index: 1; }

.mm-wrapper_opened {
  overflow-x: hidden;
  position: relative; }

.mm-wrapper_background .mm-page {
  background: inherit; }

.mm-menu_offcanvas {
  display: none;
  position: fixed;
  right: auto;
  z-index: 0; }

.mm-menu_offcanvas.mm-menu_opened {
  display: block; }

.mm-menu_offcanvas.mm-menu_opened.mm-no-csstransforms {
  z-index: 10; }

.mm-menu_offcanvas {
  width: 80%;
  min-width: 140px;
  max-width: 440px; }

.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate(80vw, 0);
  -ms-transform: translate(80vw, 0);
  transform: translate(80vw, 0);
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    transform: translate(140px, 0);
    -webkit-transform: translate3d(140px, 0, 0);
    transform: translate3d(140px, 0, 0); } }

@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(440px, 0);
    -ms-transform: translate(440px, 0);
    transform: translate(440px, 0);
    -webkit-transform: translate3d(440px, 0, 0);
    transform: translate3d(440px, 0, 0); } }

.mm-page__blocker {
  background: rgba(3, 2, 1, 0);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2; }

.mm-wrapper_blocking {
  overflow: hidden; }

.mm-wrapper_blocking body {
  overflow: hidden; }

.mm-wrapper_blocking .mm-page__blocker {
  display: block; }

.mm-sronly {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  width: 1px !important;
  min-width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important; }

.mm-menu_autoheight {
  -webkit-transition: none .4s ease;
  -o-transition: none .4s ease;
  transition: none .4s ease;
  transition-property: height,-webkit-transform;
  -webkit-transition-property: height,-webkit-transform;
  -o-transition-property: transform,height;
  transition-property: transform,height;
  transition-property: transform,height,-webkit-transform; }

.mm-menu_autoheight:not(.mm-menu_offcanvas) {
  position: relative; }

.mm-menu_autoheight.mm-menu_position-bottom, .mm-menu_autoheight.mm-menu_position-top {
  max-height: 80%; }

.mm-menu_autoheight-measuring .mm-panel {
  display: block !important; }

.mm-menu_autoheight-measuring .mm-listitem_vertical:not(.mm-listitem_opened) .mm-panel {
  display: none !important; }

.mm-menu_autoheight-measuring .mm-panels > .mm-panel {
  bottom: auto !important;
  height: auto !important; }

[class*=mm-menu_columns-] {
  -webkit-transition-property: width;
  -o-transition-property: width;
  transition-property: width; }

[class*=mm-menu_columns-] .mm-panels > .mm-panel {
  right: auto;
  transition-property: width,-webkit-transform;
  -webkit-transition-property: width,-webkit-transform;
  -o-transition-property: width,transform;
  transition-property: width,transform;
  transition-property: width,transform,-webkit-transform; }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_opened, [class*=mm-menu_columns-] .mm-panels > .mm-panel_opened-parent {
  display: block !important; }

[class*=mm-panel_columns-] {
  border-right: 1px solid;
  border-color: inherit; }

.mm-menu_columns-1 .mm-panel_columns-0, .mm-menu_columns-2 .mm-panel_columns-1, .mm-menu_columns-3 .mm-panel_columns-2, .mm-menu_columns-4 .mm-panel_columns-3 {
  border-right: none; }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-0 {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu_columns-0 .mm-panels > .mm-panel {
  z-index: 0; }

.mm-menu_columns-0 .mm-panels > .mm-panel else {
  width: 100%; }

.mm-menu_columns-0 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.mm-menu_columns-0 {
  width: 80%;
  min-width: 140px;
  max-width: 0; }

.mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate(80vw, 0);
  -ms-transform: translate(80vw, 0);
  transform: translate(80vw, 0);
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    transform: translate(140px, 0);
    -webkit-transform: translate3d(140px, 0, 0);
    transform: translate3d(140px, 0, 0); } }

@media all and (min-width: 0px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate(-80vw, 0);
  -ms-transform: translate(-80vw, 0);
  transform: translate(-80vw, 0);
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
    -webkit-transform: translate3d(-140px, 0, 0);
    transform: translate3d(-140px, 0, 0); } }

@media all and (min-width: 0px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-1 {
  -webkit-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.mm-menu_columns-1 .mm-panels > .mm-panel {
  z-index: 1;
  width: 100%; }

.mm-menu_columns-1 .mm-panels > .mm-panel else {
  width: 100%; }

.mm-menu_columns-1 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate(200%, 0);
  -ms-transform: translate(200%, 0);
  transform: translate(200%, 0);
  -webkit-transform: translate3d(200%, 0, 0);
  transform: translate3d(200%, 0, 0); }

.mm-menu_columns-1 {
  width: 80%;
  min-width: 140px;
  max-width: 440px; }

.mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate(80vw, 0);
  -ms-transform: translate(80vw, 0);
  transform: translate(80vw, 0);
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    transform: translate(140px, 0);
    -webkit-transform: translate3d(140px, 0, 0);
    transform: translate3d(140px, 0, 0); } }

@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(440px, 0);
    -ms-transform: translate(440px, 0);
    transform: translate(440px, 0);
    -webkit-transform: translate3d(440px, 0, 0);
    transform: translate3d(440px, 0, 0); } }

.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate(-80vw, 0);
  -ms-transform: translate(-80vw, 0);
  transform: translate(-80vw, 0);
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
    -webkit-transform: translate3d(-140px, 0, 0);
    transform: translate3d(-140px, 0, 0); } }

@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(-440px, 0);
    -ms-transform: translate(-440px, 0);
    transform: translate(-440px, 0);
    -webkit-transform: translate3d(-440px, 0, 0);
    transform: translate3d(-440px, 0, 0); } }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-2 {
  -webkit-transform: translate(200%, 0);
  -ms-transform: translate(200%, 0);
  transform: translate(200%, 0);
  -webkit-transform: translate3d(200%, 0, 0);
  transform: translate3d(200%, 0, 0); }

.mm-menu_columns-2 .mm-panels > .mm-panel {
  z-index: 2;
  width: 50%; }

.mm-menu_columns-2 .mm-panels > .mm-panel else {
  width: 100%; }

.mm-menu_columns-2 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate(300%, 0);
  -ms-transform: translate(300%, 0);
  transform: translate(300%, 0);
  -webkit-transform: translate3d(300%, 0, 0);
  transform: translate3d(300%, 0, 0); }

.mm-menu_columns-2 {
  width: 80%;
  min-width: 140px;
  max-width: 880px; }

.mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate(80vw, 0);
  -ms-transform: translate(80vw, 0);
  transform: translate(80vw, 0);
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    transform: translate(140px, 0);
    -webkit-transform: translate3d(140px, 0, 0);
    transform: translate3d(140px, 0, 0); } }

@media all and (min-width: 1100px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(880px, 0);
    -ms-transform: translate(880px, 0);
    transform: translate(880px, 0);
    -webkit-transform: translate3d(880px, 0, 0);
    transform: translate3d(880px, 0, 0); } }

.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate(-80vw, 0);
  -ms-transform: translate(-80vw, 0);
  transform: translate(-80vw, 0);
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
    -webkit-transform: translate3d(-140px, 0, 0);
    transform: translate3d(-140px, 0, 0); } }

@media all and (min-width: 1100px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(-880px, 0);
    -ms-transform: translate(-880px, 0);
    transform: translate(-880px, 0);
    -webkit-transform: translate3d(-880px, 0, 0);
    transform: translate3d(-880px, 0, 0); } }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-3 {
  -webkit-transform: translate(300%, 0);
  -ms-transform: translate(300%, 0);
  transform: translate(300%, 0);
  -webkit-transform: translate3d(300%, 0, 0);
  transform: translate3d(300%, 0, 0); }

.mm-menu_columns-3 .mm-panels > .mm-panel {
  z-index: 3;
  width: 33.34%; }

.mm-menu_columns-3 .mm-panels > .mm-panel else {
  width: 100%; }

.mm-menu_columns-3 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate(400%, 0);
  -ms-transform: translate(400%, 0);
  transform: translate(400%, 0);
  -webkit-transform: translate3d(400%, 0, 0);
  transform: translate3d(400%, 0, 0); }

.mm-menu_columns-3 {
  width: 80%;
  min-width: 140px;
  max-width: 1320px; }

.mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate(80vw, 0);
  -ms-transform: translate(80vw, 0);
  transform: translate(80vw, 0);
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    transform: translate(140px, 0);
    -webkit-transform: translate3d(140px, 0, 0);
    transform: translate3d(140px, 0, 0); } }

@media all and (min-width: 1650px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(1320px, 0);
    -ms-transform: translate(1320px, 0);
    transform: translate(1320px, 0);
    -webkit-transform: translate3d(1320px, 0, 0);
    transform: translate3d(1320px, 0, 0); } }

.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate(-80vw, 0);
  -ms-transform: translate(-80vw, 0);
  transform: translate(-80vw, 0);
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
    -webkit-transform: translate3d(-140px, 0, 0);
    transform: translate3d(-140px, 0, 0); } }

@media all and (min-width: 1650px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(-1320px, 0);
    -ms-transform: translate(-1320px, 0);
    transform: translate(-1320px, 0);
    -webkit-transform: translate3d(-1320px, 0, 0);
    transform: translate3d(-1320px, 0, 0); } }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-4 {
  -webkit-transform: translate(400%, 0);
  -ms-transform: translate(400%, 0);
  transform: translate(400%, 0);
  -webkit-transform: translate3d(400%, 0, 0);
  transform: translate3d(400%, 0, 0); }

.mm-menu_columns-4 .mm-panels > .mm-panel {
  z-index: 4;
  width: 25%; }

.mm-menu_columns-4 .mm-panels > .mm-panel else {
  width: 100%; }

.mm-menu_columns-4 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate(500%, 0);
  -ms-transform: translate(500%, 0);
  transform: translate(500%, 0);
  -webkit-transform: translate3d(500%, 0, 0);
  transform: translate3d(500%, 0, 0); }

.mm-menu_columns-4 {
  width: 80%;
  min-width: 140px;
  max-width: 1760px; }

.mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate(80vw, 0);
  -ms-transform: translate(80vw, 0);
  transform: translate(80vw, 0);
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    transform: translate(140px, 0);
    -webkit-transform: translate3d(140px, 0, 0);
    transform: translate3d(140px, 0, 0); } }

@media all and (min-width: 2200px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(1760px, 0);
    -ms-transform: translate(1760px, 0);
    transform: translate(1760px, 0);
    -webkit-transform: translate3d(1760px, 0, 0);
    transform: translate3d(1760px, 0, 0); } }

.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate(-80vw, 0);
  -ms-transform: translate(-80vw, 0);
  transform: translate(-80vw, 0);
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
    -webkit-transform: translate3d(-140px, 0, 0);
    transform: translate3d(-140px, 0, 0); } }

@media all and (min-width: 2200px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(-1760px, 0);
    -ms-transform: translate(-1760px, 0);
    transform: translate(-1760px, 0);
    -webkit-transform: translate3d(-1760px, 0, 0);
    transform: translate3d(-1760px, 0, 0); } }

[class*=mm-menu_columns-].mm-menu_position-bottom, [class*=mm-menu_columns-].mm-menu_position-top {
  width: 100%;
  max-width: 100%;
  min-width: 100%; }

.mm-wrapper_opening [class*=mm-menu_columns-].mm-menu_position-front {
  transition-property: width,min-width,max-width,-webkit-transform;
  -webkit-transition-property: width,min-width,max-width,-webkit-transform;
  -o-transition-property: width,min-width,max-width,transform;
  transition-property: width,min-width,max-width,transform;
  transition-property: width,min-width,max-width,transform,-webkit-transform; }

.mm-counter {
  font-style: normal;
  line-height: 20px;
  display: block;
  margin-top: -10px;
  position: absolute;
  right: 45px;
  top: 50%; }

.mm-counter + .mm-btn_next:not(.mm-btn_fullwidth) {
  width: 90px; }

.mm-counter + .mm-btn_next:not(.mm-btn_fullwidth) + a, .mm-counter + .mm-btn_next:not(.mm-btn_fullwidth) + span {
  margin-right: 90px; }

.mm-counter + .mm-btn_fullwidth + a, .mm-counter + .mm-btn_fullwidth + span {
  padding-right: 90px; }

.mm-listitem_vertical > .mm-counter {
  top: 12px;
  margin-top: 0; }

.mm-listitem_vertical.mm-listitem_spacer > .mm-counter {
  margin-top: 40px; }

.mm-listitem_nosubitems > .mm-counter {
  display: none; }

.mm-counter {
  color: rgba(0, 0, 0, 0.3); }

.mm-listitem_divider {
  opacity: 1;
  -webkit-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease; }

.mm-menu_dividers-light .mm-listitem_divider {
  background: inherit;
  font-size: inherit;
  color: rgba(0, 0, 0, 0.3);
  padding-top: 15px;
  padding-bottom: 5px; }

.mm-border-none .mm-listitem_divider {
  border-top-width: 1px;
  border-top-style: solid; }

.mm-listview_fixeddivider {
  background: inherit;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-listview_fixeddivider:after {
  content: none !important;
  display: none !important; }

.mm-panel_dividers .mm-listview_fixeddivider {
  display: block; }

.mm-wrapper_opened.mm-dragging .mm-menu, .mm-wrapper_opened.mm-dragging .mm-slideout {
  -webkit-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s; }

.mm-menu_dropdown {
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  height: 80%; }

.mm-wrapper_dropdown .mm-slideout {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  z-index: 0; }

.mm-wrapper_dropdown .mm-page__blocker {
  -webkit-transition-delay: 0s !important;
       -o-transition-delay: 0s !important;
          transition-delay: 0s !important;
  z-index: 1; }

.mm-wrapper_dropdown .mm-menu_dropdown {
  z-index: 2; }

.mm-wrapper_dropdown.mm-wrapper_opened:not(.mm-wrapper_opening) .mm-menu_dropdown {
  display: none; }

[class*=mm-menu_tip-]:before {
  content: '';
  background: inherit;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  z-index: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.mm-menu_tip-left:before {
  left: 22px; }

.mm-menu_tip-right:before {
  right: 22px; }

.mm-menu_tip-top:before {
  top: -8px; }

.mm-menu_tip-bottom:before {
  bottom: -8px; }

.mm-iconbar {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-right-width: 1px;
  text-align: center;
  line-height: 20px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2; }

.mm-iconbar__bottom, .mm-iconbar__top {
  width: inherit;
  position: absolute;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-iconbar__bottom > *, .mm-iconbar__top > * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  padding: 10px 0; }

.mm-iconbar__bottom a, .mm-iconbar__bottom a:hover, .mm-iconbar__top a, .mm-iconbar__top a:hover {
  text-decoration: none; }

.mm-iconbar__top {
  top: 0; }

.mm-iconbar__bottom {
  bottom: 0; }

.mm-menu_iconbar-40 .mm-navbars_bottom, .mm-menu_iconbar-40 .mm-navbars_top, .mm-menu_iconbar-40 .mm-panels {
  left: 40px; }

.mm-menu_iconbar-40 .mm-iconbar {
  width: 40px; }

.mm-menu_iconbar-60 .mm-navbars_bottom, .mm-menu_iconbar-60 .mm-navbars_top, .mm-menu_iconbar-60 .mm-panels {
  left: 60px; }

.mm-menu_iconbar-60 .mm-iconbar {
  width: 60px; }

.mm-menu_iconbar-80 .mm-navbars_bottom, .mm-menu_iconbar-80 .mm-navbars_top, .mm-menu_iconbar-80 .mm-panels {
  left: 80px; }

.mm-menu_iconbar-80 .mm-iconbar {
  width: 80px; }

.mm-iconbar, .mm-iconbar a {
  color: rgba(0, 0, 0, 0.3); }

.mm-iconbar__tab_selected {
  background: rgba(255, 255, 255, 0.4); }

[class*=mm-menu_iconpanel-] .mm-panels > .mm-panel {
  transition-property: left,-webkit-transform;
  -webkit-transition-property: left,-webkit-transform;
  -o-transition-property: transform,left;
  transition-property: transform,left;
  transition-property: transform,left,-webkit-transform; }

[class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_iconpanel-first, [class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_iconpanel-first.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 0; }

[class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_opened, [class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_opened-parent {
  display: block !important; }

[class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_opened-parent[class*=mm-panel_iconpanel-]:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0), [class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_opened[class*=mm-panel_iconpanel-]:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
  border-left: 1px solid;
  border-color: inherit; }

[class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_opened-parent {
  overflow-y: hidden;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

[class*=mm-menu_iconpanel-].mm-menu_hidedivider .mm-panel_opened-parent .mm-listitem_divider, [class*=mm-menu_iconpanel-].mm-menu_hidenavbar .mm-panel_opened-parent .mm-navbar {
  opacity: 0; }

.mm-menu_iconpanel-40 .mm-panel_iconpanel-0, .mm-menu_iconpanel-40 .mm-panel_iconpanel-0.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 0; }

.mm-menu_iconpanel-40 .mm-panel_iconpanel-1, .mm-menu_iconpanel-40 .mm-panel_iconpanel-1.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 40px; }

.mm-menu_iconpanel-40 .mm-panel_iconpanel-2, .mm-menu_iconpanel-40 .mm-panel_iconpanel-2.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 80px; }

.mm-menu_iconpanel-40 .mm-panel_iconpanel-3, .mm-menu_iconpanel-40 .mm-panel_iconpanel-3.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 120px; }

.mm-menu_iconpanel-40 .mm-panel_iconpanel-first ~ .mm-panel, .mm-menu_iconpanel-40 .mm-panel_iconpanel-first ~ .mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 40px; }

.mm-menu_iconpanel-60 .mm-panel_iconpanel-0, .mm-menu_iconpanel-60 .mm-panel_iconpanel-0.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 0; }

.mm-menu_iconpanel-60 .mm-panel_iconpanel-1, .mm-menu_iconpanel-60 .mm-panel_iconpanel-1.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 60px; }

.mm-menu_iconpanel-60 .mm-panel_iconpanel-2, .mm-menu_iconpanel-60 .mm-panel_iconpanel-2.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 120px; }

.mm-menu_iconpanel-60 .mm-panel_iconpanel-3, .mm-menu_iconpanel-60 .mm-panel_iconpanel-3.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 180px; }

.mm-menu_iconpanel-60 .mm-panel_iconpanel-first ~ .mm-panel, .mm-menu_iconpanel-60 .mm-panel_iconpanel-first ~ .mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 60px; }

.mm-menu_iconpanel-80 .mm-panel_iconpanel-0, .mm-menu_iconpanel-80 .mm-panel_iconpanel-0.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 0; }

.mm-menu_iconpanel-80 .mm-panel_iconpanel-1, .mm-menu_iconpanel-80 .mm-panel_iconpanel-1.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 80px; }

.mm-menu_iconpanel-80 .mm-panel_iconpanel-2, .mm-menu_iconpanel-80 .mm-panel_iconpanel-2.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 160px; }

.mm-menu_iconpanel-80 .mm-panel_iconpanel-3, .mm-menu_iconpanel-80 .mm-panel_iconpanel-3.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 240px; }

.mm-menu_iconpanel-80 .mm-panel_iconpanel-first ~ .mm-panel, .mm-menu_iconpanel-80 .mm-panel_iconpanel-first ~ .mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 80px; }

.mm-panel__blocker {
  background: inherit;
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  -webkit-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease; }

.mm-panel_opened-parent .mm-panel__blocker {
  opacity: .6;
  bottom: -100000px; }

.mm-menu_keyboardfocus a:focus {
  outline: 0; }

.mm-menu_keyboardfocus a:focus {
  background: rgba(255, 255, 255, 0.4); }

.mm-navbars_bottom, .mm-navbars_top {
  background: inherit;
  border-color: inherit;
  border-width: 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1; }

.mm-navbars_bottom > .mm-navbar, .mm-navbars_top > .mm-navbar {
  border-width: 0;
  border-color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-navbars_bottom > .mm-navbar:not(.mm-navbar_has-btns), .mm-navbars_top > .mm-navbar:not(.mm-navbar_has-btns) {
  padding: 0; }

.mm-navbars_bottom > .mm-navbar > :not(img):not(.mm-btn), .mm-navbars_top > .mm-navbar > :not(img):not(.mm-btn) {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.mm-navbars_top {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  top: 0;
  bottom: auto; }

.mm-menu_navbar_top-1 .mm-panels {
  top: 40px; }

.mm-menu_navbar_top-2 .mm-panels {
  top: 80px; }

.mm-menu_navbar_top-3 .mm-panels {
  top: 120px; }

.mm-menu_navbar_top-4 .mm-panels {
  top: 160px; }

.mm-navbars_bottom {
  border-top-style: solid;
  border-top-width: 1px;
  bottom: 0;
  top: auto; }

.mm-menu_navbar_bottom-1 .mm-panels {
  bottom: 40px; }

.mm-menu_navbar_bottom-2 .mm-panels {
  bottom: 80px; }

.mm-menu_navbar_bottom-3 .mm-panels {
  bottom: 120px; }

.mm-menu_navbar_bottom-4 .mm-panels {
  bottom: 160px; }

.mm-navbar_size-2 {
  height: 80px; }

.mm-navbar_size-3 {
  height: 120px; }

.mm-navbar_size-4 {
  height: 160px; }

.mm-navbar__breadcrumbs {
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  text-align: left;
  padding: 0 0 0 17px; }

.mm-navbar__breadcrumbs > * {
  display: inline-block;
  padding: 10px 3px; }

.mm-navbar__breadcrumbs > a {
  text-decoration: underline; }

.mm-navbar_has-btns .mm-navbar__breadcrumbs {
  margin-left: -40px; }

.mm-navbar_has-btns .mm-btn:not(.mm-hidden) + .mm-navbar__breadcrumbs {
  margin-left: 0;
  padding-left: 0; }

.mm-navbars_top .mm-navbar_tabs, .mm-navbars_top .mm-navbar_tabs ~ .mm-navbar {
  background: inherit !important; }

.mm-navbars_bottom .mm-navbar_tabs {
  background: inherit !important; }

.mm-navbar__tab_selected {
  background: inherit !important;
  border-width: 1px;
  border-style: solid;
  border-color: inherit; }

.mm-navbar__tab_selected:first-child {
  border-left: none; }

.mm-navbar__tab_selected:last-child {
  border-right: none; }

.mm-navbars_top .mm-navbar_tabs:not(:last-child) {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: inherit; }

.mm-navbars_top .mm-navbar__tab_selected {
  border-bottom: none;
  margin-bottom: -1px; }

.mm-navbars_top .mm-navbar_tabs:first-child .mm-navbar__tab_selected {
  border-top: none; }

.mm-navbars_bottom .mm-navbar_tabs:not(:first-child) {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: inherit; }

.mm-navbars_bottom .mm-navbar__tab_selected {
  border-top: none;
  margin-top: -1px; }

.mm-navbars_bottom .mm-navbar_tabs:last-child .mm-navbar__tab_selected {
  border-bottom: none; }

.mm-navbar_tabs > :not(.mm-navbar__tab_selected), .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar, .mm-navbars_top.mm-navbars_has-tabs > .mm-navbar:not(.mm-navbar_tabs) {
  background: rgba(255, 255, 255, 0.4); }

.mm-menu_rtl {
  direction: rtl; }

.mm-menu_rtl.mm-menu_offcanvas {
  right: auto; }

.mm-menu_rtl .mm-panel:not(.mm-panel_opened) {
  -webkit-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.mm-menu_rtl .mm-panel.mm-panel_opened-parent {
  -webkit-transform: translate(30%, 0);
  -ms-transform: translate(30%, 0);
  transform: translate(30%, 0);
  -webkit-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0); }

.mm-menu_rtl .mm-navbar .mm-btn:first-child {
  left: auto;
  right: 0; }

.mm-menu_rtl .mm-navbar .mm-btn:last-child {
  right: auto;
  left: 0; }

.mm-menu_rtl .mm-navbar .mm-btn_next:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 23px;
  right: auto; }

.mm-menu_rtl .mm-navbar .mm-btn_prev:before {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 23px;
  left: auto; }

.mm-menu_rtl .mm-listitem:after {
  left: 0;
  right: 20px; }

.mm-menu_rtl .mm-listitem > a:not(.mm-btn_next), .mm-menu_rtl .mm-listitem > span:not(.mm-btn_next) {
  padding-left: 10px;
  padding-right: 20px !important;
  margin-right: 0 !important; }

.mm-menu_rtl .mm-listitem .mm-btn_next {
  right: auto;
  left: 0; }

.mm-menu_rtl .mm-listitem .mm-btn_next:before {
  left: auto;
  right: 0; }

.mm-menu_rtl .mm-listitem .mm-btn_next:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 23px;
  right: auto; }

.mm-menu_rtl .mm-listitem .mm-btn_next + a, .mm-menu_rtl .mm-listitem .mm-btn_next + span {
  margin-left: 50px; }

.mm-menu_rtl .mm-listitem .mm-btn_fullwidth + a, .mm-menu_rtl .mm-listitem .mm-btn_fullwidth + span {
  padding-left: 50px; }

.mm-menu_rtl .mm-counter {
  left: 45px;
  right: auto; }

.mm-menu_rtl .mm-counter + .mm-btn_next + a, .mm-menu_rtl .mm-counter + .mm-btn_next + span {
  margin-left: 90px; }

.mm-menu_rtl .mm-listview .mm-counter + .mm-btn_fullwidth + a, .mm-menu_rtl .mm-listview .mm-counter + .mm-btn_fullwidth + span {
  padding-left: 90px; }

.mm-menu_rtl[class*=mm-menu_iconpanel-] .mm-panels > .mm-panel {
  transition-property: right,-webkit-transform;
  -webkit-transition-property: right,-webkit-transform;
  -o-transition-property: transform,right;
  transition-property: transform,right;
  transition-property: transform,right,-webkit-transform; }

.mm-menu_rtl[class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_iconpanel-first, .mm-menu_rtl[class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_iconpanel-first.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 0;
  right: 0; }

.mm-menu_rtl[class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_opened, .mm-menu_rtl[class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_opened-parent {
  border-left: none;
  border-right: 1px solid;
  border-color: inherit; }

.mm-menu_rtl [class*=mm-panel_iconpanel-], .mm-menu_rtl [class*=mm-panel_iconpanel-] ~ .mm-listview_fixeddivider {
  left: 0; }

.mm-menu_rtl [class*=mm-panel_iconpanel-].mm-panel_opened-parent {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-0, .mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-0.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 0; }

.mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-1, .mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-1.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 40px; }

.mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-2, .mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-2.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 80px; }

.mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-3, .mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-3.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 120px; }

.mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-first ~ .mm-panel, .mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-first ~ .mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 40px; }

.mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-0, .mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-0.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 0; }

.mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-1, .mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-1.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 60px; }

.mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-2, .mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-2.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 120px; }

.mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-3, .mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-3.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 180px; }

.mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-first ~ .mm-panel, .mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-first ~ .mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 60px; }

.mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-0, .mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-0.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 0; }

.mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-1, .mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-1.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 80px; }

.mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-2, .mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-2.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 160px; }

.mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-3, .mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-3.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 240px; }

.mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-first ~ .mm-panel, .mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-first ~ .mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 80px; }

.mm-menu_rtl html[class*=mm-sidebar_expanded-]:not(.mm-sidebar_closed) .mm-menu_rtl ~ .mm-slideout {
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  right: 0; }

.mm-menu_rtl label.mm-check, .mm-menu_rtl label.mm-toggle {
  left: 20px;
  right: auto !important; }

.mm-menu_rtl label.mm-toggle + a, .mm-menu_rtl label.mm-toggle + span {
  padding-left: 80px; }

.mm-menu_rtl label.mm-check + a, .mm-menu_rtl label.mm-check + span {
  padding-left: 60px; }

.mm-menu_rtl .mm-btn_next + label.mm-check, .mm-menu_rtl .mm-btn_next + label.mm-toggle {
  left: 60px; }

.mm-menu_rtl .mm-btn_next + label.mm-check + a, .mm-menu_rtl .mm-btn_next + label.mm-check + span, .mm-menu_rtl .mm-btn_next + label.mm-toggle + a, .mm-menu_rtl .mm-btn_next + label.mm-toggle + span {
  margin-left: 50px; }

.mm-menu_rtl .mm-btn_next + label.mm-toggle + a, .mm-menu_rtl .mm-btn_next + label.mm-toggle + span {
  padding-left: 70px; }

.mm-menu_rtl .mm-btn_next + label.mm-check + a, .mm-menu_rtl .mm-btn_next + label.mm-check + span {
  padding-left: 50px; }

.mm-menu_rtl .mm-counter + .mm-btn_next + label.mm-check, .mm-menu_rtl .mm-counter + .mm-btn_next + label.mm-toggle {
  left: 100px; }

.mm-menu_rtl .mm-counter + .mm-btn_next + label.mm-check + a, .mm-menu_rtl .mm-counter + .mm-btn_next + label.mm-check + span, .mm-menu_rtl .mm-counter + .mm-btn_next + label.mm-toggle + a, .mm-menu_rtl .mm-counter + .mm-btn_next + label.mm-toggle + span {
  margin-left: 90px; }

.mm-searchfield {
  height: 40px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.mm-searchfield input {
  border: none !important;
  outline: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-radius: 4px;
  font: inherit;
  font-size: inherit;
  line-height: 26px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: 26px;
  min-height: 26px;
  max-height: 26px;
  margin: 0;
  padding: 0 10px; }

.mm-searchfield input::-ms-clear {
  display: none; }

.mm-searchfield__input {
  padding: 7px 10px 0 10px;
  position: relative; }

.mm-panel__noresultsmsg {
  text-align: center;
  font-size: 150%;
  padding: 40px 0; }

.mm-searchfield__btn {
  right: 0;
  top: 0; }

.mm-searchfield__input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 100%; }

.mm-searchfield__cancel {
  text-decoration: none;
  line-height: 40px;
  display: block;
  padding-right: 10px;
  margin-right: -100px;
  -webkit-transition: margin .4s ease;
  -o-transition: margin .4s ease;
  transition: margin .4s ease; }

.mm-searchfield__cancel-active {
  margin-right: 0; }

.mm-panel > .mm-searchfield {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0; }

.mm-panel_has-searchfield {
  padding-top: 40px; }

.mm-panel_has-navbar.mm-panel_has-searchfield {
  padding-top: 80px; }

.mm-panel_has-navbar.mm-panel_has-searchfield > .mm-searchfield {
  top: 40px; }

.mm-listitem_nosubitems > .mm-btn_next {
  display: none; }

.mm-listitem_nosubitems > .mm-btn_next + a, .mm-listitem_nosubitems > .mm-btn_next + span {
  padding-right: 10px; }

.mm-searchfield input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.75); }

.mm-panel__noresultsmsg {
  color: rgba(0, 0, 0, 0.3); }

.mm-sectionindexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  z-index: 15;
  -webkit-transition: right .4s ease;
  -o-transition: right .4s ease;
  transition: right .4s ease;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(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;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly; }

.mm-sectionindexer a {
  line-height: 1;
  text-decoration: none;
  display: block; }

.mm-sectionindexer ~ .mm-panels {
  -webkit-transition: right .4s ease;
  -o-transition: right .4s ease;
  transition: right .4s ease; }

.mm-menu_has-sectionindexer .mm-sectionindexer {
  right: 0; }

.mm-menu_has-sectionindexer .mm-panels {
  right: 20px; }

.mm-menu_navbar_top-1 .mm-sectionindexer {
  top: 42px; }

.mm-menu_navbar_top-2 .mm-sectionindexer {
  top: 82px; }

.mm-menu_navbar_top-3 .mm-sectionindexer {
  top: 122px; }

.mm-menu_navbar_top-4 .mm-sectionindexer {
  top: 162px; }

.mm-menu_navbar_bottom-1 .mm-sectionindexer {
  bottom: 42px; }

.mm-menu_navbar_bottom-2 .mm-sectionindexer {
  bottom: 82px; }

.mm-menu_navbar_bottom-3 .mm-sectionindexer {
  bottom: 122px; }

.mm-menu_navbar_bottom-4 .mm-sectionindexer {
  bottom: 162px; }

.mm-sectionindexer a {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu_selected-hover .mm-listitem > a.mm-btn_fullwidth + a, .mm-menu_selected-hover .mm-listitem > a.mm-btn_fullwidth + span, .mm-menu_selected-hover .mm-listitem > a:not(.mm-btn_fullwidth), .mm-menu_selected-parent .mm-listitem > a.mm-btn_fullwidth + a, .mm-menu_selected-parent .mm-listitem > a.mm-btn_fullwidth + span, .mm-menu_selected-parent .mm-listitem > a:not(.mm-btn_fullwidth) {
  -webkit-transition: background .4s ease;
  -o-transition: background .4s ease;
  transition: background .4s ease; }

.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected > a, .mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected > span {
  background: 0 0; }

.mm-menu_selected-hover .mm-listitem > a.mm-btn_fullwidth:hover + span, .mm-menu_selected-hover .mm-listitem > a:not(.mm-btn_fullwidth):hover {
  background: rgba(255, 255, 255, 0.4); }

.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > a, .mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > span {
  background: 0 0; }

.mm-menu_selected-parent .mm-listitem_selected-parent > a.mm-btn_fullwidth + span, .mm-menu_selected-parent .mm-listitem_selected-parent > a.mm-btn_next:not(.mm-btn_fullwidth) {
  background: rgba(255, 255, 255, 0.4); }

[class*=mm-wrapper_sidebar-collapsed-] body, [class*=mm-wrapper_sidebar-expanded-] body {
  position: relative; }

[class*=mm-wrapper_sidebar-collapsed-] .mm-slideout, [class*=mm-wrapper_sidebar-expanded-] .mm-slideout {
  transition-property: width,-webkit-transform;
  -webkit-transition-property: width,-webkit-transform;
  -o-transition-property: width,transform;
  transition-property: width,transform;
  transition-property: width,transform,-webkit-transform; }

[class*=mm-wrapper_sidebar-collapsed-] .mm-page, [class*=mm-wrapper_sidebar-expanded-] .mm-page {
  background: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 100vh; }

[class*=mm-wrapper_sidebar-collapsed-] .mm-menu_sidebar-collapsed, [class*=mm-wrapper_sidebar-expanded-] .mm-menu_sidebar-expanded {
  display: block !important;
  top: 0 !important;
  right: auto !important;
  bottom: 0 !important;
  left: 0 !important; }

[class*=mm-wrapper_sidebar-collapsed-]:not(.mm-wrapper_opening) .mm-menu_hidedivider .mm-listitem_divider, [class*=mm-wrapper_sidebar-collapsed-]:not(.mm-wrapper_opening) .mm-menu_hidenavbar .mm-navbar {
  opacity: 0; }

.mm-wrapper_sidebar-collapsed-40 .mm-slideout, [class*=mm-wrapper_sidebar-expanded-].mm-menu_sidebar-closed.mm-menu_sidebar-collapsed-40 .mm-slideout {
  width: calc(100% - 40px);
  -webkit-transform: translate(40px, 0);
  -ms-transform: translate(40px, 0);
  transform: translate(40px, 0);
  -webkit-transform: translate3d(40px, 0, 0);
  transform: translate3d(40px, 0, 0); }

.mm-wrapper_sidebar-collapsed-60 .mm-slideout, [class*=mm-wrapper_sidebar-expanded-].mm-menu_sidebar-closed.mm-menu_sidebar-collapsed-60 .mm-slideout {
  width: calc(100% - 60px);
  -webkit-transform: translate(60px, 0);
  -ms-transform: translate(60px, 0);
  transform: translate(60px, 0);
  -webkit-transform: translate3d(60px, 0, 0);
  transform: translate3d(60px, 0, 0); }

.mm-wrapper_sidebar-collapsed-80 .mm-slideout, [class*=mm-wrapper_sidebar-expanded-].mm-menu_sidebar-closed.mm-menu_sidebar-collapsed-80 .mm-slideout {
  width: calc(100% - 80px);
  -webkit-transform: translate(80px, 0);
  -ms-transform: translate(80px, 0);
  transform: translate(80px, 0);
  -webkit-transform: translate3d(80px, 0, 0);
  transform: translate3d(80px, 0, 0); }

[class*=mm-wrapper_sidebar-expanded-] .mm-menu_sidebar-expanded {
  border-right-width: 1px;
  border-right-style: solid;
  min-width: 0 !important;
  max-width: 100000px !important; }

[class*=mm-wrapper_sidebar-expanded-] .mm-menu_sidebar-expanded.mm-menu_pageshadow:after {
  content: none;
  display: none; }

[class*=mm-wrapper_sidebar-expanded-].mm-wrapper_blocking, [class*=mm-wrapper_sidebar-expanded-].mm-wrapper_blocking body {
  overflow: visible; }

[class*=mm-wrapper_sidebar-expanded-] .mm-page__blocker {
  display: none !important; }

.mm-wrapper_sidebar-expanded-25:not(.mm-wrapper_sidebar-closed) .mm-slideout {
  width: 75%;
  -webkit-transform: translate(33.33333%, 0) !important;
  -ms-transform: translate(33.33333%, 0) !important;
  transform: translate(33.33333%, 0) !important;
  -webkit-transform: translate3d(33.33333%, 0, 0) !important;
  transform: translate3d(33.33333%, 0, 0) !important; }

.mm-wrapper_sidebar-expanded-25 .mm-menu_sidebar-expanded {
  width: 25% !important; }

.mm-wrapper_sidebar-expanded-30:not(.mm-wrapper_sidebar-closed) .mm-slideout {
  width: 70%;
  -webkit-transform: translate(42.85714%, 0) !important;
  -ms-transform: translate(42.85714%, 0) !important;
  transform: translate(42.85714%, 0) !important;
  -webkit-transform: translate3d(42.85714%, 0, 0) !important;
  transform: translate3d(42.85714%, 0, 0) !important; }

.mm-wrapper_sidebar-expanded-30 .mm-menu_sidebar-expanded {
  width: 30% !important; }

.mm-wrapper_sidebar-expanded-35:not(.mm-wrapper_sidebar-closed) .mm-slideout {
  width: 65%;
  -webkit-transform: translate(53.84615%, 0) !important;
  -ms-transform: translate(53.84615%, 0) !important;
  transform: translate(53.84615%, 0) !important;
  -webkit-transform: translate3d(53.84615%, 0, 0) !important;
  transform: translate3d(53.84615%, 0, 0) !important; }

.mm-wrapper_sidebar-expanded-35 .mm-menu_sidebar-expanded {
  width: 35% !important; }

.mm-menu__blocker {
  background: rgba(3, 2, 1, 0);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3; }

.mm-menu_opened .mm-menu__blocker {
  display: none; }

input.mm-check, input.mm-toggle {
  position: absolute;
  left: -10000px; }

label.mm-check, label.mm-toggle {
  margin: 0;
  position: absolute;
  top: 50%;
  z-index: 2; }

label.mm-check:before, label.mm-toggle:before {
  content: '';
  display: block; }

label.mm-toggle {
  border-radius: 30px;
  width: 50px;
  height: 30px;
  margin-top: -15px; }

label.mm-toggle:before {
  border-radius: 30px;
  width: 28px;
  height: 28px;
  margin: 1px; }

input.mm-toggle:checked ~ label.mm-toggle:before {
  float: right; }

label.mm-check {
  width: 30px;
  height: 30px;
  margin-top: -15px; }

label.mm-check:before {
  border-left: 3px solid;
  border-bottom: 3px solid;
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  opacity: .1;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

input.mm-check:checked ~ label.mm-check:before {
  opacity: 1; }

.mm-listitem_vertical label.mm-toggle {
  top: 5px;
  bottom: auto;
  margin-top: 0; }

.mm-listitem_vertical label.mm-check {
  top: 5px;
  bottom: auto;
  margin-top: 0; }

label.mm-toggle {
  right: 20px; }

label.mm-toggle + a, label.mm-toggle + span {
  padding-right: 80px; }

label.mm-check {
  right: 20px; }

label.mm-check + a, label.mm-check + span {
  padding-right: 60px; }

.mm-btn_next + label.mm-check, .mm-btn_next + label.mm-toggle {
  right: 60px; }

.mm-btn_next + label.mm-check + a, .mm-btn_next + label.mm-check + span, .mm-btn_next + label.mm-toggle + a, .mm-btn_next + label.mm-toggle + span {
  margin-right: 50px; }

.mm-btn_next + label.mm-toggle + a, .mm-btn_next + label.mm-toggle + span {
  padding-right: 70px; }

.mm-btn_next + label.mm-check + a, .mm-btn_next + label.mm-check + span {
  padding-right: 50px; }

.mm-counter + .mm-btn_next + label.mm-check, .mm-counter + .mm-btn_next + label.mm-toggle {
  right: 100px; }

.mm-counter + .mm-btn_next + label.mm-check + a, .mm-counter + .mm-btn_next + label.mm-check + span, .mm-counter + .mm-btn_next + label.mm-toggle + a, .mm-counter + .mm-btn_next + label.mm-toggle + span {
  margin-right: 90px; }

label.mm-toggle {
  background: rgba(0, 0, 0, 0.1); }

label.mm-toggle:before {
  background: #f3f3f3; }

input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.75); }

.mm-menu_border-none .mm-listitem:after, .mm-panel_border-none .mm-listitem:after {
  content: none; }

.mm-menu_border-full .mm-listitem:after, .mm-panel_border-full .mm-listitem:after {
  left: 0 !important; }

.mm-menu_border-offset .mm-listitem:after, .mm-panel_border-offset .mm-listitem:after {
  right: 20px; }

.mm-menu_fx-menu-zoom {
  transition: -webkit-transform .4s ease;
  -webkit-transition: -webkit-transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  transition: transform .4s ease,-webkit-transform .4s ease; }

.mm-wrapper_opened .mm-menu_fx-menu-zoom {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center; }

.mm-wrapper_opening .mm-menu_fx-menu-zoom {
  -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
  transform: scale(1, 1) translate3d(0, 0, 0); }

.mm-wrapper_opened .mm-menu_fx-menu-zoom.mm-menu_position-right {
  -webkit-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center; }

.mm-wrapper_opening .mm-menu_fx-menu-zoom.mm-menu_position-right {
  -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
  transform: scale(1, 1) translate3d(0, 0, 0); }

.mm-menu_fx-menu-slide {
  transition: -webkit-transform .4s ease;
  -webkit-transition: -webkit-transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  transition: transform .4s ease,-webkit-transform .4s ease; }

.mm-wrapper_opened .mm-menu_fx-menu-slide {
  -webkit-transform: translate(-30%, 0);
  -ms-transform: translate(-30%, 0);
  transform: translate(-30%, 0);
  -webkit-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0); }

.mm-wrapper_opening .mm-menu_fx-menu-slide {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-wrapper_opened .mm-menu_fx-menu-slide.mm-menu_position-right {
  -webkit-transform: translate(30%, 0);
  -ms-transform: translate(30%, 0);
  transform: translate(30%, 0);
  -webkit-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0); }

.mm-wrapper_opening .mm-menu_fx-menu-slide.mm-menu_position-right {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu_fx-menu-fade {
  opacity: 0;
  -webkit-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease; }

.mm-wrapper_opening .mm-menu_fx-menu-fade {
  opacity: 1; }

.mm-menu_fx-panels-none .mm-panel, .mm-panel_fx-none {
  -webkit-transition-property: none;
  -o-transition-property: none;
  transition-property: none; }

.mm-menu_fx-panels-none .mm-panel.mm-panel_opened-parent, .mm-panel_fx-none.mm-panel_opened-parent {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu_fx-panels-zoom .mm-panel, .mm-panel_fx-zoom {
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  transform: scale(1.5, 1.5) translate3d(100%, 0, 0); }

.mm-menu_fx-panels-zoom .mm-panel.mm-panel_opened, .mm-panel_fx-zoom.mm-panel_opened {
  -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
  transform: scale(1, 1) translate3d(0, 0, 0); }

.mm-menu_fx-panels-zoom .mm-panel.mm-panel_opened-parent, .mm-panel_fx-zoom.mm-panel_opened-parent {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0); }

.mm-menu_fx-panels-slide-0 .mm-panel_opened-parent, .mm-panel_fx-slide-0.mm-panel_opened-parent {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu_fx-panels-slide-100 .mm-panel_opened-parent, .mm-panel_fx-slide-100.mm-panel_opened-parent {
  -webkit-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.mm-menu_fx-panels-slide-up .mm-panel, .mm-panel_fx-slide-up {
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0); }

.mm-menu_fx-panels-slide-up .mm-panel_opened, .mm-menu_fx-panels-slide-up .mm-panel_opened-parent, .mm-panel_fx-slide-up.mm-panel_opened {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu_fx-panels-slide-right .mm-panel, .mm-panel_fx-slide-right {
  -webkit-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.mm-menu_fx-panels-slide-right .mm-panel_opened, .mm-menu_fx-panels-slide-right .mm-panel_opened-parent, .mm-panel_fx-slide-right.mm-panel_opened {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

[class*=mm-menu_fx-listitems-] .mm-listitem {
  -webkit-transition: none .4s ease;
  -o-transition: none .4s ease;
  transition: none .4s ease; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(1) {
  -webkit-transition-delay: 50ms;
       -o-transition-delay: 50ms;
          transition-delay: 50ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(2) {
  -webkit-transition-delay: .1s;
       -o-transition-delay: .1s;
          transition-delay: .1s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(3) {
  -webkit-transition-delay: 150ms;
       -o-transition-delay: 150ms;
          transition-delay: 150ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(4) {
  -webkit-transition-delay: .2s;
       -o-transition-delay: .2s;
          transition-delay: .2s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(5) {
  -webkit-transition-delay: 250ms;
       -o-transition-delay: 250ms;
          transition-delay: 250ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(6) {
  -webkit-transition-delay: .3s;
       -o-transition-delay: .3s;
          transition-delay: .3s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(7) {
  -webkit-transition-delay: 350ms;
       -o-transition-delay: 350ms;
          transition-delay: 350ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(8) {
  -webkit-transition-delay: .4s;
       -o-transition-delay: .4s;
          transition-delay: .4s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(9) {
  -webkit-transition-delay: 450ms;
       -o-transition-delay: 450ms;
          transition-delay: 450ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(10) {
  -webkit-transition-delay: .5s;
       -o-transition-delay: .5s;
          transition-delay: .5s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(11) {
  -webkit-transition-delay: 550ms;
       -o-transition-delay: 550ms;
          transition-delay: 550ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(12) {
  -webkit-transition-delay: .6s;
       -o-transition-delay: .6s;
          transition-delay: .6s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(13) {
  -webkit-transition-delay: 650ms;
       -o-transition-delay: 650ms;
          transition-delay: 650ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(14) {
  -webkit-transition-delay: .7s;
       -o-transition-delay: .7s;
          transition-delay: .7s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(15) {
  -webkit-transition-delay: 750ms;
       -o-transition-delay: 750ms;
          transition-delay: 750ms; }

.mm-menu_fx-listitems-slide .mm-listitem {
  transition-property: opacity,-webkit-transform;
  -webkit-transition-property: opacity,-webkit-transform;
  -o-transition-property: transform,opacity;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
  -webkit-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);
  transform: translate(50%, 0);
  -webkit-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0);
  opacity: 0; }

.mm-wrapper_opening .mm-menu_fx-listitems-slide .mm-panel_opened .mm-listitem {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1; }

.mm-menu_fx-listitems-fade .mm-listitem {
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  opacity: 0; }

.mm-wrapper_opening .mm-menu_fx-listitems-fade .mm-panel_opened .mm-listitem {
  opacity: 1; }

.mm-menu_fx-listitems-drop .mm-listitem {
  -webkit-transition-property: opacity,top;
  -o-transition-property: opacity,top;
  transition-property: opacity,top;
  opacity: 0;
  top: -25%; }

.mm-wrapper_opening .mm-menu_fx-listitems-drop .mm-panel_opened .mm-listitem {
  opacity: 1;
  top: 0; }

.mm-menu_fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px; }

.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate(100vw, 0);
  -ms-transform: translate(100vw, 0);
  transform: translate(100vw, 0);
  -webkit-transform: translate3d(100vw, 0, 0);
  transform: translate3d(100vw, 0, 0); }

@media all and (max-width: 140px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    transform: translate(140px, 0);
    -webkit-transform: translate3d(140px, 0, 0);
    transform: translate3d(140px, 0, 0); } }

@media all and (min-width: 10000px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(10000px, 0);
    -ms-transform: translate(10000px, 0);
    transform: translate(10000px, 0);
    -webkit-transform: translate3d(10000px, 0, 0);
    transform: translate3d(10000px, 0, 0); } }

.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate(-100vw, 0);
  -ms-transform: translate(-100vw, 0);
  transform: translate(-100vw, 0);
  -webkit-transform: translate3d(-100vw, 0, 0);
  transform: translate3d(-100vw, 0, 0); }

@media all and (max-width: 140px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
    -webkit-transform: translate3d(-140px, 0, 0);
    transform: translate3d(-140px, 0, 0); } }

@media all and (min-width: 10000px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(-10000px, 0);
    -ms-transform: translate(-10000px, 0);
    transform: translate(-10000px, 0);
    -webkit-transform: translate3d(-10000px, 0, 0);
    transform: translate3d(-10000px, 0, 0); } }

.mm-menu_fullscreen.mm-menu_position-top {
  height: 100vh;
  min-height: 140px;
  max-height: 10000px; }

.mm-menu_fullscreen.mm-menu_position-bottom {
  height: 100vh;
  min-height: 140px;
  max-height: 10000px; }

.mm-menu_listview-30 .mm-listitem > a:not(.mm-btn_next), .mm-menu_listview-30 .mm-listitem > span {
  padding-top: 5px;
  padding-bottom: 5px; }

.mm-menu_listview-30 .mm-listitem_vertical > .mm-btn_next {
  height: 30; }

.mm-menu_listview-50 .mm-listitem > a:not(.mm-btn_next), .mm-menu_listview-50 .mm-listitem > span {
  padding-top: 15px;
  padding-bottom: 15px; }

.mm-menu_listview-50 .mm-listitem_vertical > .mm-btn_next {
  height: 50; }

.mm-menu_listview-60 .mm-listitem > a:not(.mm-btn_next), .mm-menu_listview-60 .mm-listitem > span {
  padding-top: 20px;
  padding-bottom: 20px; }

.mm-menu_listview-60 .mm-listitem_vertical > .mm-btn_next {
  height: 60; }

.mm-menu_listview-justify .mm-panels > .mm-panel:after, .mm-menu_listview-justify .mm-panels > .mm-panel:before, .mm-panels > .mm-panel_listview-justify:after, .mm-panels > .mm-panel_listview-justify:before {
  content: none;
  display: none; }

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listview, .mm-panels > .mm-panel_listview-justify .mm-listview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0; }

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem, .mm-panels > .mm-panel_listview-justify .mm-listitem {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  min-height: 40px; }

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem:not(.mm-listitem_divider), .mm-panels > .mm-panel_listview-justify .mm-listitem:not(.mm-listitem_divider) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem > a:not(.mm-btn_next), .mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem > span, .mm-panels > .mm-panel_listview-justify .mm-listitem > a:not(.mm-btn_next), .mm-panels > .mm-panel_listview-justify .mm-listitem > span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.mm-listview_inset {
  list-style: inside disc;
  padding: 0 10px 15px 40px;
  margin: 0; }

.mm-listview_inset > li {
  padding: 5px 0; }

.mm-menu_multiline .mm-listitem > a, .mm-menu_multiline .mm-listitem > span, .mm-panel_multiline .mm-listitem > a, .mm-panel_multiline .mm-listitem > span {
  -o-text-overflow: clip;
     text-overflow: clip;
  white-space: normal; }

[class*=mm-menu_pagedim].mm-menu_opened ~ .mm-page__blocker {
  opacity: 0; }

.mm-wrapper_opening [class*=mm-menu_pagedim].mm-menu_opened ~ .mm-page__blocker {
  opacity: .3;
  -webkit-transition: opacity .4s ease .4s;
  -o-transition: opacity .4s ease .4s;
  transition: opacity .4s ease .4s; }

.mm-menu_opened.mm-menu_pagedim ~ .mm-page__blocker {
  background: inherit; }

.mm-menu_opened.mm-menu_pagedim-black ~ .mm-page__blocker {
  background: #000; }

.mm-menu_opened.mm-menu_pagedim-white ~ .mm-page__blocker {
  background: #fff; }

.mm-menu_popup {
  -webkit-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease;
  opacity: 0;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  height: 80%;
  min-height: 140px;
  max-height: 880px;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0); }

.mm-menu_popup.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  z-index: 0; }

.mm-menu_popup.mm-menu_opened ~ .mm-page__blocker {
  -webkit-transition-delay: 0s !important;
       -o-transition-delay: 0s !important;
          transition-delay: 0s !important;
  z-index: 1; }

.mm-wrapper_opening .mm-menu_popup {
  opacity: 1; }

.mm-menu_position-right {
  left: auto;
  right: 0; }

.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate(-80vw, 0);
  -ms-transform: translate(-80vw, 0);
  transform: translate(-80vw, 0);
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
    -webkit-transform: translate3d(-140px, 0, 0);
    transform: translate3d(-140px, 0, 0); } }

@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate(-440px, 0);
    -ms-transform: translate(-440px, 0);
    transform: translate(-440px, 0);
    -webkit-transform: translate3d(-440px, 0, 0);
    transform: translate3d(-440px, 0, 0); } }

.mm-menu_position-bottom, .mm-menu_position-front, .mm-menu_position-top {
  transition: -webkit-transform .4s ease;
  -webkit-transition: -webkit-transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  transition: transform .4s ease,-webkit-transform .4s ease; }

.mm-menu_position-bottom.mm-menu_opened, .mm-menu_position-front.mm-menu_opened, .mm-menu_position-top.mm-menu_opened {
  z-index: 2; }

.mm-menu_position-bottom.mm-menu_opened ~ .mm-slideout, .mm-menu_position-front.mm-menu_opened ~ .mm-slideout, .mm-menu_position-top.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  z-index: 0; }

.mm-menu_position-bottom.mm-menu_opened ~ .mm-page__blocker, .mm-menu_position-front.mm-menu_opened ~ .mm-page__blocker, .mm-menu_position-top.mm-menu_opened ~ .mm-page__blocker {
  z-index: 1; }

.mm-menu_position-front {
  -webkit-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.mm-menu_position-front.mm-menu_position-right {
  -webkit-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.mm-menu_position-bottom, .mm-menu_position-top {
  width: 100%;
  min-width: 100%;
  max-width: 100%; }

.mm-menu_position-top {
  -webkit-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%);
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0); }

.mm-menu_position-top {
  height: 80vh;
  min-height: 140px;
  max-height: 880px; }

.mm-menu_position-bottom {
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  top: auto; }

.mm-menu_position-bottom {
  height: 80vh;
  min-height: 140px;
  max-height: 880px; }

.mm-wrapper_opening .mm-menu_position-bottom, .mm-wrapper_opening .mm-menu_position-front, .mm-wrapper_opening .mm-menu_position-top {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu_shadow-page:after {
  content: "";
  display: block;
  width: 20px;
  height: 120%;
  position: absolute;
  left: 100%;
  top: -10%;
  z-index: 100;
  -webkit-clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%);
  clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%); }

.mm-menu_shadow-page.mm-menu_position-right:after {
  left: auto;
  right: 100%;
  -webkit-clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%);
  clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%); }

.mm-menu_shadow-page.mm-menu_position-front:after {
  content: none;
  display: none; }

.mm-menu_shadow-page:after {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }

.mm-menu_shadow-panels .mm-panel {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }

.mm-menu_theme-white {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.7); }

.mm-menu_theme-white .mm-navbar a, .mm-menu_theme-white .mm-navbar > * {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu_theme-white .mm-btn:after, .mm-menu_theme-white .mm-btn:before {
  border-color: rgba(0, 0, 0, 0.3); }

.mm-menu_theme-white .mm-listview .mm-btn_next:after {
  border-color: rgba(0, 0, 0, 0.3); }

.mm-menu_theme-white .mm-listview a:not(.mm-btn_next) {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.03);
  tap-highlight-color: rgba(0, 0, 0, 0.03); }

.mm-menu_theme-white .mm-listitem_selected > a:not(.mm-btn_next), .mm-menu_theme-white .mm-listitem_selected > span {
  background: rgba(0, 0, 0, 0.03); }

.mm-menu_theme-white .mm-listitem_opened > .mm-btn_next, .mm-menu_theme-white .mm-listitem_opened > .mm-panel {
  background: rgba(0, 0, 0, 0.06); }

.mm-menu_theme-white .mm-listitem_divider {
  background: rgba(0, 0, 0, 0.06); }

.mm-menu_theme-white .mm-counter {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu_theme-white .mm-iconbar, .mm-menu_theme-white .mm-iconbar a {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu_theme-white.mm-menu_keyboardfocus a:focus {
  background: rgba(0, 0, 0, 0.03); }

.mm-menu_theme-white .mm-navbar_tabs > :not(.mm-navbar__tab_selected), .mm-menu_theme-white .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar, .mm-menu_theme-white .mm-navbars_top.mm-navbars_has-tabs > .mm-navbar:not(.mm-navbar_tabs) {
  background: rgba(0, 0, 0, 0.03); }

.mm-menu_theme-white.mm-menu_shadow-page:after {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }

.mm-menu_theme-white.mm-menu_shadow-panels .mm-panel {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }

.mm-menu_theme-white .mm-searchfield input {
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.7); }

.mm-menu_theme-white .mm-panel__noresultsmsg {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu_theme-white .mm-sectionindexer a {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu_theme-white.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected > a, .mm-menu_theme-white.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected > span {
  background: 0 0; }

.mm-menu_theme-white.mm-menu_selected-hover .mm-listitem > a.mm-btn_fullwidth:hover + span, .mm-menu_theme-white.mm-menu_selected-hover .mm-listitem > a:not(.mm-btn_fullwidth):hover {
  background: rgba(0, 0, 0, 0.03); }

.mm-menu_theme-white.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > a, .mm-menu_theme-white.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > span {
  background: 0 0; }

.mm-menu_theme-white.mm-menu_selected-parent .mm-listitem_selected-parent > a.mm-btn_fullwidth + span, .mm-menu_theme-white.mm-menu_selected-parent .mm-listitem_selected-parent > a.mm-btn_next:not(.mm-btn_fullwidth) {
  background: rgba(0, 0, 0, 0.03); }

.mm-menu_theme-white label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.7); }

.mm-menu_theme-white label.mm-toggle {
  background: rgba(0, 0, 0, 0.1); }

.mm-menu_theme-white label.mm-toggle:before {
  background: #fff; }

.mm-menu_theme-whiteinput.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

.mm-menu_theme-dark {
  background: #333;
  border-color: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.85); }

.mm-menu_theme-dark .mm-navbar a, .mm-menu_theme-dark .mm-navbar > * {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-dark .mm-btn:after, .mm-menu_theme-dark .mm-btn:before {
  border-color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-dark .mm-listview .mm-btn_next:after {
  border-color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-dark .mm-listview a:not(.mm-btn_next) {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  tap-highlight-color: rgba(0, 0, 0, 0.1); }

.mm-menu_theme-dark .mm-listitem_selected > a:not(.mm-btn_next), .mm-menu_theme-dark .mm-listitem_selected > span {
  background: rgba(0, 0, 0, 0.1); }

.mm-menu_theme-dark .mm-listitem_opened > .mm-btn_next, .mm-menu_theme-dark .mm-listitem_opened > .mm-panel {
  background: rgba(255, 255, 255, 0.08); }

.mm-menu_theme-dark .mm-listitem_divider {
  background: rgba(255, 255, 255, 0.08); }

.mm-menu_theme-dark .mm-counter {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-dark .mm-iconbar, .mm-menu_theme-dark .mm-iconbar a {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-dark.mm-menu_keyboardfocus a:focus {
  background: rgba(0, 0, 0, 0.1); }

.mm-menu_theme-dark .mm-navbar_tabs > :not(.mm-navbar__tab_selected), .mm-menu_theme-dark .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar, .mm-menu_theme-dark .mm-navbars_top.mm-navbars_has-tabs > .mm-navbar:not(.mm-navbar_tabs) {
  background: rgba(0, 0, 0, 0.1); }

.mm-menu_theme-dark.mm-menu_shadow-page:after {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }

.mm-menu_theme-dark.mm-menu_shadow-panels .mm-panel {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }

.mm-menu_theme-dark .mm-searchfield input {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85); }

.mm-menu_theme-dark .mm-panel__noresultsmsg {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-dark .mm-sectionindexer a {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-dark.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected > a, .mm-menu_theme-dark.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected > span {
  background: 0 0; }

.mm-menu_theme-dark.mm-menu_selected-hover .mm-listitem > a.mm-btn_fullwidth:hover + span, .mm-menu_theme-dark.mm-menu_selected-hover .mm-listitem > a:not(.mm-btn_fullwidth):hover {
  background: rgba(0, 0, 0, 0.1); }

.mm-menu_theme-dark.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > a, .mm-menu_theme-dark.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > span {
  background: 0 0; }

.mm-menu_theme-dark.mm-menu_selected-parent .mm-listitem_selected-parent > a.mm-btn_fullwidth + span, .mm-menu_theme-dark.mm-menu_selected-parent .mm-listitem_selected-parent > a.mm-btn_next:not(.mm-btn_fullwidth) {
  background: rgba(0, 0, 0, 0.1); }

.mm-menu_theme-dark label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.85); }

.mm-menu_theme-dark label.mm-toggle {
  background: rgba(0, 0, 0, 0.3); }

.mm-menu_theme-dark label.mm-toggle:before {
  background: #333; }

.mm-menu_theme-darkinput.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

.mm-menu_theme-black {
  background: #000;
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75); }

.mm-menu_theme-black .mm-navbar a, .mm-menu_theme-black .mm-navbar > * {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-black .mm-btn:after, .mm-menu_theme-black .mm-btn:before {
  border-color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-black .mm-listview .mm-btn_next:after {
  border-color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-black .mm-listview a:not(.mm-btn_next) {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.15);
  tap-highlight-color: rgba(255, 255, 255, 0.15); }

.mm-menu_theme-black .mm-listitem_selected > a:not(.mm-btn_next), .mm-menu_theme-black .mm-listitem_selected > span {
  background: rgba(255, 255, 255, 0.15); }

.mm-menu_theme-black .mm-listitem_opened > .mm-btn_next, .mm-menu_theme-black .mm-listitem_opened > .mm-panel {
  background: rgba(255, 255, 255, 0.2); }

.mm-menu_theme-black .mm-listitem_divider {
  background: rgba(255, 255, 255, 0.2); }

.mm-menu_theme-black .mm-counter {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-black .mm-iconbar, .mm-menu_theme-black .mm-iconbar a {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-black.mm-menu_keyboardfocus a:focus {
  background: rgba(255, 255, 255, 0.15); }

.mm-menu_theme-black .mm-navbar_tabs > :not(.mm-navbar__tab_selected), .mm-menu_theme-black .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar, .mm-menu_theme-black .mm-navbars_top.mm-navbars_has-tabs > .mm-navbar:not(.mm-navbar_tabs) {
  background: rgba(255, 255, 255, 0.15); }

.mm-menu_theme-black.mm-menu_shadow-page:after {
  -webkit-box-shadow: false;
          box-shadow: false; }

.mm-menu_theme-black.mm-menu_shadow-panels .mm-panel {
  -webkit-box-shadow: false;
          box-shadow: false; }

.mm-menu_theme-black .mm-searchfield input {
  background: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75); }

.mm-menu_theme-black .mm-panel__noresultsmsg {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-black .mm-sectionindexer a {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-black.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected > a, .mm-menu_theme-black.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected > span {
  background: 0 0; }

.mm-menu_theme-black.mm-menu_selected-hover .mm-listitem > a.mm-btn_fullwidth:hover + span, .mm-menu_theme-black.mm-menu_selected-hover .mm-listitem > a:not(.mm-btn_fullwidth):hover {
  background: rgba(255, 255, 255, 0.15); }

.mm-menu_theme-black.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > a, .mm-menu_theme-black.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > span {
  background: 0 0; }

.mm-menu_theme-black.mm-menu_selected-parent .mm-listitem_selected-parent > a.mm-btn_fullwidth + span, .mm-menu_theme-black.mm-menu_selected-parent .mm-listitem_selected-parent > a.mm-btn_next:not(.mm-btn_fullwidth) {
  background: rgba(255, 255, 255, 0.15); }

.mm-menu_theme-black label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.75); }

.mm-menu_theme-black label.mm-toggle {
  background: rgba(255, 255, 255, 0.25); }

.mm-menu_theme-black label.mm-toggle:before {
  background: #000; }

.mm-menu_theme-blackinput.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

.mm-menu_tileview .mm-listview, .mm-panel_tileview .mm-listview {
  margin: 0 !important; }

.mm-menu_tileview .mm-listview:after, .mm-panel_tileview .mm-listview:after {
  content: '';
  display: block;
  clear: both; }

.mm-menu_tileview .mm-listitem, .mm-panel_tileview .mm-listitem {
  padding: 0;
  float: left;
  position: relative;
  width: 50%;
  height: 0;
  padding-top: 50%; }

.mm-menu_tileview .mm-listitem:after, .mm-panel_tileview .mm-listitem:after {
  left: 0;
  top: 0;
  border-right-width: 1px;
  border-right-style: solid;
  z-index: -1; }

.mm-menu_tileview .mm-listitem.mm-tile-xs, .mm-panel_tileview .mm-listitem.mm-tile-xs {
  width: 12.5%;
  padding-top: 12.5%; }

.mm-menu_tileview .mm-listitem.mm-tile-s, .mm-panel_tileview .mm-listitem.mm-tile-s {
  width: 25%;
  padding-top: 25%; }

.mm-menu_tileview .mm-listitem.mm-tile-l, .mm-panel_tileview .mm-listitem.mm-tile-l {
  width: 75%;
  padding-top: 75%; }

.mm-menu_tileview .mm-listitem.mm-tile-xl, .mm-panel_tileview .mm-listitem.mm-tile-xl {
  width: 100%;
  padding-top: 100%; }

.mm-menu_tileview .mm-listitem > a, .mm-menu_tileview .mm-listitem > span, .mm-panel_tileview .mm-listitem > a, .mm-panel_tileview .mm-listitem > span {
  line-height: 1px;
  text-align: center;
  padding: 50% 10px 0 10px;
  margin: 0;
  position: absolute;
  top: 0;
  right: 1px;
  bottom: 1px;
  left: 0; }

.mm-menu_tileview .mm-listitem > .mm-btn_next, .mm-panel_tileview .mm-listitem > .mm-btn_next {
  width: auto; }

.mm-menu_tileview .mm-listitem > .mm-btn_next:after, .mm-menu_tileview .mm-listitem > .mm-btn_next:before, .mm-panel_tileview .mm-listitem > .mm-btn_next:after, .mm-panel_tileview .mm-listitem > .mm-btn_next:before {
  content: none;
  display: none; }

.mm-menu_tileview .mm-listitem_divider, .mm-panel_tileview .mm-listitem_divider {
  display: none; }

.mm-menu_tileview .mm-panel, .mm-panel_tileview {
  padding-left: 0;
  padding-right: 0; }

.mm-menu_tileview .mm-panel:after, .mm-menu_tileview .mm-panel:before, .mm-panel_tileview:after, .mm-panel_tileview:before {
  content: none;
  display: none; }

/*! jQuery UI - v1.13.0 - 2021-10-07
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
* Copyright jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none; }

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none; }

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse; }

.ui-helper-clearfix:after {
  clear: both; }

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  -ms-filter: "alpha(opacity=0)";
  /* support: IE8 */ }

.ui-front {
  z-index: 100; }

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
  pointer-events: none; }

/* Icons
----------------------------------*/
.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat; }

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block; }

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: .5em .5em .5em .7em;
  font-size: 100%; }

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto; }

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default; }

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0; }

.ui-menu .ui-menu {
  position: absolute; }

.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  /* support: IE10, see #8844 */
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"); }

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px .4em; }

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0; }

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px; }

/* icon support */
.ui-menu-icons {
  position: relative; }

.ui-menu-icons .ui-menu-item-wrapper {
  padding-left: 2em; }

/* left-aligned */
.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: .2em;
  margin: auto 0; }

/* right-aligned */
.ui-menu .ui-menu-icon {
  left: auto;
  right: 0; }

.ui-button {
  padding: .4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: .1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Support: IE <= 11 */
  overflow: visible; }

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none; }

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
  width: 2em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap; }

/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
  text-indent: 0; }

/* button icon element(s) */
.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px; }

.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap; }

input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: .4em 1em; }

/* workarounds */
/* Support: Firefox 5 - 40 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0; }

.ui-controlgroup {
  vertical-align: middle;
  display: inline-block; }

.ui-controlgroup > .ui-controlgroup-item {
  float: left;
  margin-left: 0;
  margin-right: 0; }

.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
  z-index: 9999; }

.ui-controlgroup-vertical > .ui-controlgroup-item {
  display: block;
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left; }

.ui-controlgroup-vertical .ui-controlgroup-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.ui-controlgroup .ui-controlgroup-label {
  padding: .4em 1em; }

.ui-controlgroup .ui-controlgroup-label span {
  font-size: 80%; }

.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
  border-left: none; }

.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
  border-top: none; }

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
  border-right: none; }

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
  border-bottom: none; }

/* Spinner specific style fixes */
.ui-controlgroup-vertical .ui-spinner-input {
  /* Support: IE8 only, Android < 4.4 only */
  width: 75%;
  width: calc( 100% - 2.4em); }

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid; }

.ui-checkboxradio-label .ui-icon-background {
  -webkit-box-shadow: inset 1px 1px 1px #ccc;
          box-shadow: inset 1px 1px 1px #ccc;
  border-radius: .12em;
  border: none; }

.ui-checkboxradio-radio-label .ui-icon-background {
  width: 16px;
  height: 16px;
  border-radius: 1em;
  overflow: visible;
  border: none; }

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  background-image: none;
  width: 8px;
  height: 8px;
  border-width: 4px;
  border-style: solid; }

.ui-checkboxradio-disabled {
  pointer-events: none; }

.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none; }

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0; }

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em; }

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px; }

.ui-datepicker .ui-datepicker-prev {
  left: 2px; }

.ui-datepicker .ui-datepicker-next {
  right: 2px; }

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px; }

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px; }

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px; }

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center; }

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0; }

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%; }

.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em; }

.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0; }

.ui-datepicker td {
  border: 0;
  padding: 1px; }

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none; }

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0; }

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible; }

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left; }

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto; }

.ui-datepicker-multi .ui-datepicker-group {
  float: left; }

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em; }

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%; }

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%; }

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%; }

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0; }

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left; }

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0; }

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl; }

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto; }

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto; }

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto; }

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto; }

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right; }

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left; }

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right; }

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px; }

/* Icons */
.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: .5em;
  top: .3em; }

.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: .2em;
  outline: 0; }

.ui-dialog .ui-dialog-titlebar {
  padding: .4em 1em;
  position: relative; }

.ui-dialog .ui-dialog-title {
  float: left;
  margin: .1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis; }

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: .3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px; }

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: .5em 1em;
  background: none;
  overflow: auto; }

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: .5em;
  padding: .3em 1em .5em .4em; }

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right; }

.ui-dialog .ui-dialog-buttonpane button {
  margin: .5em .4em .5em 0;
  cursor: pointer; }

.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0; }

.ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0; }

.ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0; }

.ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0; }

.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
  width: 7px;
  height: 7px; }

.ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0; }

.ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0; }

.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0; }

.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0; }

.ui-draggable .ui-dialog-titlebar {
  cursor: move; }

.ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none; }

.ui-resizable {
  position: relative; }

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none; }

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none; }

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0; }

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0; }

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%; }

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%; }

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px; }

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px; }

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px; }

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px; }

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden; }

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%; }

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  -ms-filter: "alpha(opacity=25)";
  /* support: IE8 */
  opacity: 0.25; }

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none; }

.ui-selectable {
  -ms-touch-action: none;
  touch-action: none; }

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black; }

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none; }

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px; }

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0; }

.ui-selectmenu-open {
  display: block; }

.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis; }

.ui-selectmenu-button.ui-button {
  text-align: left;
  white-space: nowrap;
  width: 14em; }

.ui-selectmenu-icon.ui-icon {
  float: right;
  margin-top: 0; }

.ui-slider {
  position: relative;
  text-align: left; }

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: pointer;
  -ms-touch-action: none;
  touch-action: none; }

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0; }

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  -webkit-filter: inherit;
          filter: inherit; }

.ui-slider-horizontal {
  height: .8em; }

.ui-slider-horizontal .ui-slider-handle {
  top: -.3em;
  margin-left: -.6em; }

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%; }

.ui-slider-horizontal .ui-slider-range-min {
  left: 0; }

.ui-slider-horizontal .ui-slider-range-max {
  right: 0; }

.ui-slider-vertical {
  width: .8em;
  height: 100px; }

.ui-slider-vertical .ui-slider-handle {
  left: -.3em;
  margin-left: 0;
  margin-bottom: -.6em; }

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%; }

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0; }

.ui-slider-vertical .ui-slider-range-max {
  top: 0; }

.ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none; }

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle; }

.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: .222em 0;
  margin: .2em 0;
  vertical-align: middle;
  margin-left: .4em;
  margin-right: 2em; }

.ui-spinner-button {
  width: 1.6em;
  height: 50%;
  font-size: .5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0; }

/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
  border-top-style: none;
  border-bottom-style: none;
  border-right-style: none; }

.ui-spinner-up {
  top: 0; }

.ui-spinner-down {
  bottom: 0; }

.ui-tabs {
  position: relative;
  /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
  padding: .2em; }

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: .2em .2em 0; }

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px .2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap; }

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: .5em 1em;
  text-decoration: none; }

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px; }

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text; }

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer; }

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none; }

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px; }

body .ui-tooltip {
  border-width: 2px; }

/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1em; }

.ui-widget .ui-widget {
  font-size: 1em; }

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1em; }

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5; }

.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333; }

.ui-widget-content a {
  color: #333333; }

.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold; }

.ui-widget-header a {
  color: #333333; }

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545; }

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none; }

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b; }

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none; }

.ui-visual-focus {
  -webkit-box-shadow: 0 0 3px 1px #5e9ed6;
          box-shadow: 0 0 3px 1px #5e9ed6; }

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff; }

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff; }

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none; }

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620; }

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90; }

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620; }

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f; }

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f; }

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f; }

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold; }

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  -ms-filter: "alpha(opacity=70)";
  /* support: IE8 */
  font-weight: normal; }

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  -ms-filter: "alpha(opacity=35)";
  /* support: IE8 */
  background-image: none; }

.ui-state-disabled .ui-icon {
  -ms-filter: "alpha(opacity=35)";
  /* support: IE8 - See #6059 */ }

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px; }

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png"); }

.ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png"); }

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("images/ui-icons_555555_256x240.png"); }

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("images/ui-icons_ffffff_256x240.png"); }

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("images/ui-icons_777620_256x240.png"); }

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("images/ui-icons_cc0000_256x240.png"); }

.ui-button .ui-icon {
  background-image: url("images/ui-icons_777777_256x240.png"); }

/* positioning */
/* Three classes needed to override `.ui-button:hover .ui-icon` */
.ui-icon-blank.ui-icon-blank.ui-icon-blank {
  background-image: none; }

.ui-icon-caret-1-n {
  background-position: 0 0; }

.ui-icon-caret-1-ne {
  background-position: -16px 0; }

.ui-icon-caret-1-e {
  background-position: -32px 0; }

.ui-icon-caret-1-se {
  background-position: -48px 0; }

.ui-icon-caret-1-s {
  background-position: -65px 0; }

.ui-icon-caret-1-sw {
  background-position: -80px 0; }

.ui-icon-caret-1-w {
  background-position: -96px 0; }

.ui-icon-caret-1-nw {
  background-position: -112px 0; }

.ui-icon-caret-2-n-s {
  background-position: -128px 0; }

.ui-icon-caret-2-e-w {
  background-position: -144px 0; }

.ui-icon-triangle-1-n {
  background-position: 0 -16px; }

.ui-icon-triangle-1-ne {
  background-position: -16px -16px; }

.ui-icon-triangle-1-e {
  background-position: -32px -16px; }

.ui-icon-triangle-1-se {
  background-position: -48px -16px; }

.ui-icon-triangle-1-s {
  background-position: -65px -16px; }

.ui-icon-triangle-1-sw {
  background-position: -80px -16px; }

.ui-icon-triangle-1-w {
  background-position: -96px -16px; }

.ui-icon-triangle-1-nw {
  background-position: -112px -16px; }

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px; }

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px; }

.ui-icon-arrow-1-n {
  background-position: 0 -32px; }

.ui-icon-arrow-1-ne {
  background-position: -16px -32px; }

.ui-icon-arrow-1-e {
  background-position: -32px -32px; }

.ui-icon-arrow-1-se {
  background-position: -48px -32px; }

.ui-icon-arrow-1-s {
  background-position: -65px -32px; }

.ui-icon-arrow-1-sw {
  background-position: -80px -32px; }

.ui-icon-arrow-1-w {
  background-position: -96px -32px; }

.ui-icon-arrow-1-nw {
  background-position: -112px -32px; }

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px; }

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px; }

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px; }

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px; }

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px; }

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px; }

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px; }

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px; }

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px; }

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px; }

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px; }

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px; }

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px; }

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px; }

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px; }

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px; }

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px; }

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px; }

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px; }

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px; }

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px; }

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px; }

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px; }

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px; }

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px; }

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px; }

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px; }

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px; }

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px; }

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px; }

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px; }

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px; }

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px; }

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px; }

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px; }

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px; }

.ui-icon-arrow-4 {
  background-position: 0 -80px; }

.ui-icon-arrow-4-diag {
  background-position: -16px -80px; }

.ui-icon-extlink {
  background-position: -32px -80px; }

.ui-icon-newwin {
  background-position: -48px -80px; }

.ui-icon-refresh {
  background-position: -64px -80px; }

.ui-icon-shuffle {
  background-position: -80px -80px; }

.ui-icon-transfer-e-w {
  background-position: -96px -80px; }

.ui-icon-transferthick-e-w {
  background-position: -112px -80px; }

.ui-icon-folder-collapsed {
  background-position: 0 -96px; }

.ui-icon-folder-open {
  background-position: -16px -96px; }

.ui-icon-document {
  background-position: -32px -96px; }

.ui-icon-document-b {
  background-position: -48px -96px; }

.ui-icon-note {
  background-position: -64px -96px; }

.ui-icon-mail-closed {
  background-position: -80px -96px; }

.ui-icon-mail-open {
  background-position: -96px -96px; }

.ui-icon-suitcase {
  background-position: -112px -96px; }

.ui-icon-comment {
  background-position: -128px -96px; }

.ui-icon-person {
  background-position: -144px -96px; }

.ui-icon-print {
  background-position: -160px -96px; }

.ui-icon-trash {
  background-position: -176px -96px; }

.ui-icon-locked {
  background-position: -192px -96px; }

.ui-icon-unlocked {
  background-position: -208px -96px; }

.ui-icon-bookmark {
  background-position: -224px -96px; }

.ui-icon-tag {
  background-position: -240px -96px; }

.ui-icon-home {
  background-position: 0 -112px; }

.ui-icon-flag {
  background-position: -16px -112px; }

.ui-icon-calendar {
  background-position: -32px -112px; }

.ui-icon-cart {
  background-position: -48px -112px; }

.ui-icon-pencil {
  background-position: -64px -112px; }

.ui-icon-clock {
  background-position: -80px -112px; }

.ui-icon-disk {
  background-position: -96px -112px; }

.ui-icon-calculator {
  background-position: -112px -112px; }

.ui-icon-zoomin {
  background-position: -128px -112px; }

.ui-icon-zoomout {
  background-position: -144px -112px; }

.ui-icon-search {
  background-position: -160px -112px; }

.ui-icon-wrench {
  background-position: -176px -112px; }

.ui-icon-gear {
  background-position: -192px -112px; }

.ui-icon-heart {
  background-position: -208px -112px; }

.ui-icon-star {
  background-position: -224px -112px; }

.ui-icon-link {
  background-position: -240px -112px; }

.ui-icon-cancel {
  background-position: 0 -128px; }

.ui-icon-plus {
  background-position: -16px -128px; }

.ui-icon-plusthick {
  background-position: -32px -128px; }

.ui-icon-minus {
  background-position: -48px -128px; }

.ui-icon-minusthick {
  background-position: -64px -128px; }

.ui-icon-close {
  background-position: -80px -128px; }

.ui-icon-closethick {
  background-position: -96px -128px; }

.ui-icon-key {
  background-position: -112px -128px; }

.ui-icon-lightbulb {
  background-position: -128px -128px; }

.ui-icon-scissors {
  background-position: -144px -128px; }

.ui-icon-clipboard {
  background-position: -160px -128px; }

.ui-icon-copy {
  background-position: -176px -128px; }

.ui-icon-contact {
  background-position: -192px -128px; }

.ui-icon-image {
  background-position: -208px -128px; }

.ui-icon-video {
  background-position: -224px -128px; }

.ui-icon-script {
  background-position: -240px -128px; }

.ui-icon-alert {
  background-position: 0 -144px; }

.ui-icon-info {
  background-position: -16px -144px; }

.ui-icon-notice {
  background-position: -32px -144px; }

.ui-icon-help {
  background-position: -48px -144px; }

.ui-icon-check {
  background-position: -64px -144px; }

.ui-icon-bullet {
  background-position: -80px -144px; }

.ui-icon-radio-on {
  background-position: -96px -144px; }

.ui-icon-radio-off {
  background-position: -112px -144px; }

.ui-icon-pin-w {
  background-position: -128px -144px; }

.ui-icon-pin-s {
  background-position: -144px -144px; }

.ui-icon-play {
  background-position: 0 -160px; }

.ui-icon-pause {
  background-position: -16px -160px; }

.ui-icon-seek-next {
  background-position: -32px -160px; }

.ui-icon-seek-prev {
  background-position: -48px -160px; }

.ui-icon-seek-end {
  background-position: -64px -160px; }

.ui-icon-seek-start {
  background-position: -80px -160px; }

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px; }

.ui-icon-stop {
  background-position: -96px -160px; }

.ui-icon-eject {
  background-position: -112px -160px; }

.ui-icon-volume-off {
  background-position: -128px -160px; }

.ui-icon-volume-on {
  background-position: -144px -160px; }

.ui-icon-power {
  background-position: 0 -176px; }

.ui-icon-signal-diag {
  background-position: -16px -176px; }

.ui-icon-signal {
  background-position: -32px -176px; }

.ui-icon-battery-0 {
  background-position: -48px -176px; }

.ui-icon-battery-1 {
  background-position: -64px -176px; }

.ui-icon-battery-2 {
  background-position: -80px -176px; }

.ui-icon-battery-3 {
  background-position: -96px -176px; }

.ui-icon-circle-plus {
  background-position: 0 -192px; }

.ui-icon-circle-minus {
  background-position: -16px -192px; }

.ui-icon-circle-close {
  background-position: -32px -192px; }

.ui-icon-circle-triangle-e {
  background-position: -48px -192px; }

.ui-icon-circle-triangle-s {
  background-position: -64px -192px; }

.ui-icon-circle-triangle-w {
  background-position: -80px -192px; }

.ui-icon-circle-triangle-n {
  background-position: -96px -192px; }

.ui-icon-circle-arrow-e {
  background-position: -112px -192px; }

.ui-icon-circle-arrow-s {
  background-position: -128px -192px; }

.ui-icon-circle-arrow-w {
  background-position: -144px -192px; }

.ui-icon-circle-arrow-n {
  background-position: -160px -192px; }

.ui-icon-circle-zoomin {
  background-position: -176px -192px; }

.ui-icon-circle-zoomout {
  background-position: -192px -192px; }

.ui-icon-circle-check {
  background-position: -208px -192px; }

.ui-icon-circlesmall-plus {
  background-position: 0 -208px; }

.ui-icon-circlesmall-minus {
  background-position: -16px -208px; }

.ui-icon-circlesmall-close {
  background-position: -32px -208px; }

.ui-icon-squaresmall-plus {
  background-position: -48px -208px; }

.ui-icon-squaresmall-minus {
  background-position: -64px -208px; }

.ui-icon-squaresmall-close {
  background-position: -80px -208px; }

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px; }

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px; }

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px; }

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px; }

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px; }

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px; }

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px; }

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px; }

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px; }

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px; }

/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa;
  opacity: .3;
  -ms-filter: Alpha(Opacity=30);
  /* support: IE8 */ }

.ui-widget-shadow {
  -webkit-box-shadow: 0px 0px 5px #666666;
  box-shadow: 0px 0px 5px #666666; }

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

html {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth; }
  html.has-cursor,
  html.has-cursor * {
    cursor: none !important; }
  html.is-lock-scroll,
  html.is-lock-scroll body {
    overflow: hidden; }

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-decoration-skip: objects;
          text-decoration-skip: objects;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-family: "CorsicaRamblerLX", Sans-Serif;
  color: #343B4C;
  background-color: #F7F9FF; }

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }

p {
  margin: 0; }

a,
button {
  outline: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  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.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .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); }

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

.container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 86.11111vw; }
  @media (min-width: 1800px) {
    .container {
      max-width: 1240px; } }
  @media (max-width: 1024px) {
    .container {
      max-width: 100%;
      padding-left: 5.3125vmin;
      padding-right: 5.3125vmin; } }

.hidden {
  display: none; }

input,
textarea {
  outline: none; }

.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 */
@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;
         -o-transition-duration: 0.001s !important;
            transition-duration: 0.001s !important;
    -webkit-transition-delay: 0s !important;
         -o-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 (min-width: 1025px) {
  .for-tablet {
    display: none !important; } }

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

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

@media (min-width: 992px) and (max-width: 1024px) {
  .for-mobile {
    display: none !important; } }

@media (min-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 */
.header {
  background-color: #fff;
  -webkit-box-shadow: 0px 0.69444vw 2.77778vw rgba(148, 164, 180, 0.1);
          box-shadow: 0px 0.69444vw 2.77778vw rgba(148, 164, 180, 0.1);
  position: relative;
  z-index: 3; }
  .header__mobile-contacts {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3; }
    @media (max-width: 1024px) {
      .header__mobile-contacts {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-top: 8.125vmin; }
        .header__mobile-contacts .header__phone,
        .header__mobile-contacts .header__btn-call {
          display: -webkit-inline-box !important;
          display: -ms-inline-flexbox !important;
          display: inline-flex !important; }
        .header__mobile-contacts .header__btn-call {
          width: 45vmin;
          height: 11.25vmin;
          margin-top: 4.375vmin; } }
  .header.is-open-menu {
    border-radius: 0; }
  .header__top {
    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-top: 1.38889vw; }
    @media (min-width: 1800px) {
      .header__top {
        padding-top: 20px; } }
    @media (max-width: 1024px) {
      .header__top {
        padding-top: 5.3125vmin;
        padding-bottom: 5.3125vmin; } }
  .header__btm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1.38889vw 0; }
    @media (min-width: 1800px) {
      .header__btm {
        padding: 20px 0; } }
    @media (max-width: 1024px) {
      .header__btm {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 6.25vmin 5.3125vmin 8.125vmin;
        background-color: #fff;
        position: absolute;
        right: 0;
        left: 0;
        top: 25vmin;
        margin-top: -0.625vmin;
        border-radius: 0 0 9.375vmin 9.375vmin;
        border: 1px solid #F1F3FA;
        -webkit-box-shadow: 0px 30px 40px rgba(148, 164, 180, 0.1);
                box-shadow: 0px 30px 40px rgba(148, 164, 180, 0.1);
        display: none; } }
    @media (max-width: 1024px) {
      .header__btm.is-open {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
  .header__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.18056vw;
    font-weight: 500; }
    .header__phone:hover {
      color: #0050E0; }
    .header__phone svg {
      width: 1.25vw;
      height: 1.25vw;
      margin-right: 0.69444vw;
      color: #0050E0; }
      @media (min-width: 1800px) {
        .header__phone svg {
          width: 18px;
          height: 18px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .header__phone svg {
          width: 5.625vmin;
          height: 5.625vmin;
          margin-right: 3.125vmin; } }
    @media (min-width: 1800px) {
      .header__phone {
        font-size: 17px; } }
    @media (max-width: 1024px) {
      .header__phone {
        display: none;
        font-size: 4.6875vmin; } }
  .header__right-part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.04167vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (min-width: 1800px) {
      .header__right-part {
        font-size: 15px; } }
    @media (max-width: 1024px) {
      .header__right-part {
        font-size: 4.0625vmin;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        width: 100%;
        margin-bottom: 6.25vmin;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  .header__lng {
    margin-right: 2.77778vw; }
    @media (min-width: 1800px) {
      .header__lng {
        margin-right: 40px; } }
    @media (max-width: 1024px) {
      .header__lng {
        margin-right: 0; } }
  .header__auth {
    margin-right: 2.77778vw; }
    .header__auth a:hover {
      color: #0050E0; }
    @media (min-width: 1800px) {
      .header__auth {
        margin-right: 40px; } }
    @media (max-width: 1024px) {
      .header__auth {
        margin-right: 0; } }
  @media (max-width: 1024px) {
    .header__btn-call {
      display: none !important; } }
  @media (max-width: 1024px) {
    .header__mobile-btn-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .header__mobile-btn-wrapper > * {
        margin-left: 3.125vmin; } }
  @media (min-width: 1800px) {
    .header {
      -webkit-box-shadow: 0 10px 40px rgba(148, 164, 180, 0.1);
              box-shadow: 0 10px 40px rgba(148, 164, 180, 0.1); } }
  @media (max-width: 1024px) {
    .header {
      -webkit-box-shadow: 0 3.125vmin 12.5vmin rgba(148, 164, 180, 0.1);
              box-shadow: 0 3.125vmin 12.5vmin rgba(148, 164, 180, 0.1); } }

.lng a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .lng a img {
    margin-right: 0.83333vw;
    width: 1.66667vw;
    height: 1.11111vw;
    border-radius: 0.83333vw; }
    @media (min-width: 1800px) {
      .lng a img {
        margin-right: 12px;
        width: 24px;
        height: 16px;
        border-radius: 12px; } }
    @media (max-width: 1024px) {
      .lng a img {
        margin-right: 3.125vmin;
        width: 6.25vmin;
        height: 4.375vmin;
        border-radius: 3.75vmin; } }

.auth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .auth svg {
    width: 0.97222vw;
    height: 0.97222vw;
    margin-right: 0.90278vw;
    color: #0050E0; }
    @media (min-width: 1800px) {
      .auth svg {
        width: 14px;
        height: 14px;
        margin-right: 13px; } }
    @media (max-width: 1024px) {
      .auth svg {
        width: 4.375vmin;
        height: 4.375vmin;
        margin-right: 4.0625vmin; } }

.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .cart a:hover {
    color: #0050E0; }
  .cart svg {
    width: 1.25vw;
    height: 1.25vw;
    margin-right: 0.76389vw;
    color: #0050E0; }
    @media (min-width: 1800px) {
      .cart svg {
        width: 18px;
        height: 18px;
        margin-right: 11px; } }
    @media (max-width: 1024px) {
      .cart svg {
        width: 5.625vmin;
        height: 5.625vmin;
        margin-right: 3.4375vmin; } }

.logo svg {
  width: 10.97222vw;
  height: 1.94444vw; }
  @media (min-width: 1800px) {
    .logo svg {
      width: 158px;
      height: 28px; } }
  @media (max-width: 1024px) {
    .logo svg {
      width: 37.1875vmin;
      height: 8.75vmin; } }

.logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.logo__text {
  font-size: 0.90278vw;
  color: #94A4B4;
  line-height: 1.11111vw;
  width: 9.02778vw;
  margin-left: 1.31944vw;
  position: relative;
  top: 0.34722vw; }
  @media (min-width: 1800px) {
    .logo__text {
      font-size: 13px;
      line-height: 16px;
      width: 130px;
      margin-left: 19px;
      top: 5px; } }
  @media (max-width: 1024px) {
    .logo__text {
      display: none; } }

.footer {
  background-color: #343B4C;
  color: #fff;
  padding-top: 6.73611vw; }
  .footer__top {
    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-bottom: 3.47222vw;
    border-bottom: 1px solid rgba(226, 226, 234, 0.2); }
    @media (min-width: 1800px) {
      .footer__top {
        padding-bottom: 50px; } }
    @media (max-width: 1024px) {
      .footer__top {
        padding-bottom: 0;
        border-bottom: none; } }
  .footer__logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .footer__logo a svg {
      width: 10.97222vw;
      height: 2.77778vw; }
      @media (min-width: 1800px) {
        .footer__logo a svg {
          width: 158px;
          height: 40px; } }
      @media (max-width: 1024px) {
        .footer__logo a svg {
          width: 42.5vmin;
          height: 11.875vmin; } }
  @media (max-width: 1024px) {
    .footer__logo .logo__text {
      display: block;
      font-size: 3.375vmin;
      line-height: 3.75vmin;
      width: auto;
      margin-left: 4.21875vmin; } }
  @media (max-width: 1024px) {
    .footer__logo {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%; } }
  .footer__right-part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 1024px) {
      .footer__right-part {
        display: none; } }
  .footer__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.18056vw;
    font-weight: 500;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 1.94444vw; }
    .footer__phone svg {
      color: #0050E0;
      width: 1.11111vw;
      height: 1.11111vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .footer__phone svg {
          width: 16px;
          height: 16px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .footer__phone svg {
          width: 5vmin;
          height: 5vmin;
          margin-right: 3.125vmin; } }
    @media (min-width: 1800px) {
      .footer__phone {
        font-size: 17px;
        margin-right: 28px; } }
    @media (max-width: 1024px) {
      .footer__phone {
        font-size: 5.3125vmin;
        margin-right: 8.75vmin; } }
  .footer__middle {
    padding: 2.98611vw 0 3.47222vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.18056vw;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw; }
    @media (min-width: 1800px) {
      .footer__middle {
        padding: 43px 0 50px;
        font-size: 17px;
        margin-left: -10px;
        margin-right: -10px; } }
    @media (max-width: 1024px) {
      .footer__middle {
        padding: 13.4375vmin 0 13.125vmin;
        font-size: 5.3125vmin;
        margin-left: 0;
        margin-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .footer__menu-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: calc(50% - 1.38889vw);
        flex-basis: calc(50% - 1.38889vw);
    margin-left: 0.69444vw;
    margin-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .footer__menu-block {
        -ms-flex-preferred-size: calc(50% - 20px);
            flex-basis: calc(50% - 20px);
        margin-left: 10px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .footer__menu-block {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin-left: 0;
        margin-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .footer__title {
    color: #fff;
    font-weight: 500;
    margin-bottom: 1.25vw; }
    @media (min-width: 1800px) {
      .footer__title {
        margin-bottom: 18px; } }
    @media (max-width: 1024px) {
      .footer__title {
        margin-bottom: 5.625vmin; } }
  .footer__menu-title--mobile {
    display: none; }
    @media (max-width: 1024px) {
      .footer__menu-title--mobile {
        font-size: 4.375vmin;
        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;
        width: 100%;
        margin-bottom: 1.25vmin; }
        .footer__menu-title--mobile:after {
          content: "";
          width: 4.375vmin;
          height: 1.875vmin;
          background: url(../images/sprites/svg/angle-down-footer.svg) no-repeat center center;
          background-size: 4.375vmin; }
        .footer__menu-title--mobile.is-active:after {
          -webkit-transform: rotate(180deg);
              -ms-transform: rotate(180deg);
                  transform: rotate(180deg); } }
  @media (min-width: 1025px) {
    .footer__hide-mobile {
      display: block !important; } }
  @media (max-width: 1024px) {
    .footer__hide-mobile {
      display: none; } }
  .footer__menu {
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
    font-weight: 300;
    color: #C6CAD8;
    padding-right: 3.47222vw; }
    .footer__menu ul li {
      line-height: 2.08333vw; }
      .footer__menu ul li:last-child {
        margin-bottom: 0; }
      .footer__menu ul li a:hover {
        color: #fff; }
      @media (min-width: 1800px) {
        .footer__menu ul li {
          line-height: 30px; } }
      @media (max-width: 1024px) {
        .footer__menu ul li {
          line-height: 8.125vmin; } }
    @media (min-width: 1800px) {
      .footer__menu {
        padding-right: 50px; } }
    @media (max-width: 1024px) {
      .footer__menu {
        padding-right: 0;
        font-size: 4.6875vmin;
        margin-bottom: 7.5vmin; } }
  .footer__map {
    height: 13.19444vw;
    width: 100%;
    max-width: 20.69444vw;
    border-radius: 1.66667vw;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 3; }
    @media (min-width: 1800px) {
      .footer__map {
        height: 190px;
        max-width: 298px;
        border-radius: 24px; } }
    @media (max-width: 1024px) {
      .footer__map {
        height: 50vmin;
        max-width: 100%;
        border-radius: 8.125vmin;
        margin-top: 10.625vmin; } }
  .footer__map-wrapper {
    border-radius: 1.66667vw;
    position: relative;
    overflow: hidden;
    z-index: 2; }
    @media (min-width: 1800px) {
      .footer__map-wrapper {
        border-radius: 24px; } }
    @media (max-width: 1024px) {
      .footer__map-wrapper {
        border-radius: 7.5vmin; } }
  .footer__contacts-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-preferred-size: calc(50% - 1.38889vw);
        flex-basis: calc(50% - 1.38889vw);
    margin-left: 10px;
    margin-right: 10px; }
    @media (min-width: 1800px) {
      .footer__contacts-block {
        -ms-flex-preferred-size: calc(50% - 20px);
            flex-basis: calc(50% - 20px);
        margin-left: 10px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .footer__contacts-block {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin-left: 0;
        margin-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .footer__contacts a:hover {
    color: #fff; }
  .footer__contacts p {
    margin-bottom: 0;
    font-weight: 300;
    color: #C6CAD8;
    line-height: 2.08333vw; }
    @media (min-width: 1800px) {
      .footer__contacts p {
        line-height: 30px; } }
    @media (max-width: 1024px) {
      .footer__contacts p {
        line-height: 8.125vmin;
        font-size: 4.6875vmin; } }
  .footer__btm {
    padding-top: 2.77778vw;
    padding-bottom: 6.73611vw;
    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;
    font-size: 1.18056vw;
    font-weight: 300;
    color: #94A4B4;
    border-top: 1px solid rgba(226, 226, 234, 0.2); }
    .footer__btm > div {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%; }
      @media (max-width: 1024px) {
        .footer__btm > div {
          margin-bottom: 5.78125vmin; } }
    @media (min-width: 1800px) {
      .footer__btm {
        padding-top: 40px;
        padding-bottom: 97px;
        font-size: 17px; } }
    @media (max-width: 1024px) {
      .footer__btm {
        padding-top: 0;
        padding-bottom: 7.5vmin;
        font-size: 4.59375vmin;
        -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;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        border-top: none; } }
  .footer__policy {
    text-align: center; }
    .footer__policy a:hover {
      color: #fff; }
  .footer__indexart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .footer__indexart img {
      margin-left: 2.01389vw;
      width: 8.75vw;
      height: 2.77778vw; }
      @media (min-width: 1800px) {
        .footer__indexart img {
          margin-left: 29px;
          width: 126px;
          height: 40px; } }
      @media (max-width: 1024px) {
        .footer__indexart img {
          margin-left: -1.25vmin;
          width: 35.625vmin;
          height: 7.5vmin;
          margin-top: 8.75vmin; } }
    @media (max-width: 1024px) {
      .footer__indexart {
        -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; } }
  @media (min-width: 1800px) {
    .footer {
      padding-top: 97px; } }
  @media (max-width: 1024px) {
    .footer {
      padding-top: 10.625vmin; } }

.nav {
  font-size: 1.04167vw;
  position: relative; }
  .nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .nav ul li {
      margin-right: 2.77778vw;
      position: relative; }
      .nav ul li:hover ul {
        display: block; }
        @media (max-width: 1024px) {
          .nav ul li:hover ul {
            display: none; } }
      @media (max-width: 1024px) {
        .nav ul li a {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          padding: 2.5vmin 6.875vmin;
          width: 100%; } }
      .nav ul li a:hover {
        color: #0050E0; }
      .nav ul li span {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        border-radius: 6.25vmin; }
        .nav ul li span::after {
          content: "";
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          width: 0.55556vw;
          height: 0.69444vw;
          background: url(../images/sprites/svg/dir-down.svg) no-repeat center center;
          background-size: 0.55556vw;
          margin-left: 0.55556vw; }
          @media (min-width: 1800px) {
            .nav ul li span::after {
              width: 8px;
              height: 10px;
              background-size: 8px;
              margin-left: 8px; } }
          @media (max-width: 1024px) {
            .nav ul li span::after {
              width: 3.75vmin;
              height: 2.5vmin;
              background-size: 2.5vmin;
              margin-left: 2.5vmin;
              background: url(../images/sprites/svg/angle-menu.svg) no-repeat center center;
              background-size: 3.75vmin; } }
        @media (max-width: 1024px) {
          .nav ul li span {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between; } }
      .nav ul li ul {
        position: absolute;
        left: 0;
        top: 100%;
        width: 20.83333vw;
        padding: 1.38889vw;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding-top: 2.08333vw;
        display: none; }
        .nav ul li ul:after {
          content: "";
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0;
          top: 1.45833vw;
          background-color: #fff;
          border: 1px solid #F1F3FA;
          border-top: none;
          z-index: -1;
          border-radius: 0 0 1.38889vw 1.38889vw;
          -webkit-box-shadow: 0px 30px 40px rgba(148, 164, 180, 0.1);
                  box-shadow: 0px 30px 40px rgba(148, 164, 180, 0.1); }
          @media (min-width: 1800px) {
            .nav ul li ul:after {
              top: 21px;
              border-radius: 0 0 20px 20px; } }
        .nav ul li ul li {
          padding: 0.69444vw 0; }
          .nav ul li ul li a {
            padding-left: 0; }
          @media (min-width: 1800px) {
            .nav ul li ul li {
              padding: 10px 0; } }
        @media (min-width: 1800px) {
          .nav ul li ul {
            width: 300px;
            padding: 20px;
            padding-top: 30px; } }
        @media (max-width: 1024px) {
          .nav ul li ul {
            position: relative;
            left: auto;
            display: none;
            font-size: 4.0625vmin;
            padding-top: 1.875vmin;
            width: 100%; } }
      @media (min-width: 1800px) {
        .nav ul li {
          margin-right: 40px; } }
      @media (max-width: 1024px) {
        .nav ul li {
          margin-right: 0; } }
    @media (max-width: 1024px) {
      .nav ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  @media (max-width: 1024px) {
    .nav__subcat.is-active span:after {
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); } }
  @media (max-width: 1024px) {
    .nav__subcat {
      border: 1px solid #F1F3FA;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 6.875vmin 6.875vmin;
      margin: 5vmin 0;
      border-radius: 6.25vmin; } }
  @media (min-width: 1800px) {
    .nav {
      font-size: 15px; } }
  @media (max-width: 1024px) {
    .nav {
      font-size: 4.6875vmin;
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
      padding: 0;
      border-radius: 9.375vmin; } }

.btn {
  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;
  border-radius: 0.69444vw;
  font-size: 1.04167vw;
  font-weight: 500;
  min-width: 11.45833vw;
  height: 2.84722vw; }
  .btn--profile-edit {
    padding-left: 1.04167vw;
    padding-right: 1.04167vw; }
    @media (min-width: 1800px) {
      .btn--profile-edit {
        padding-left: 15px;
        padding-right: 15px; } }
    @media (max-width: 1024px) {
      .btn--profile-edit {
        padding-left: 1.5625vmin;
        padding-right: 1.5625vmin;
        width: 37.5vmin !important;
        min-width: 37.5vmin !important;
        border-radius: 3.125vmin; } }
    .btn--profile-edit span {
      margin-left: 0.41667vw; }
      @media (min-width: 1800px) {
        .btn--profile-edit span {
          margin-left: 6px; } }
      @media (max-width: 1024px) {
        .btn--profile-edit span {
          display: none; } }
  .btn--arrow svg {
    width: 0.97222vw;
    height: 1.11111vw;
    margin-left: 0.69444vw; }
    @media (min-width: 1800px) {
      .btn--arrow svg {
        width: 12px;
        height: 12px;
        margin-left: 10px; } }
    @media (max-width: 1024px) {
      .btn--arrow svg {
        width: 3.75vmin;
        height: 3.75vmin;
        margin-left: 2.5vmin; } }
  .btn--green {
    background-color: #0050E0;
    color: #fff; }
    .btn--green:hover {
      background-color: #0047c7; }
  .btn--blue {
    background-color: #0050E0;
    color: #fff; }
    .btn--blue:hover {
      background-color: #0047c7; }
  .btn--green-light {
    color: #0050E0;
    background-color: rgba(0, 80, 224, 0.04); }
    .btn--green-light:hover {
      background-color: #0050E0;
      color: #fff; }
  .btn--white {
    background-color: #fff;
    color: #0050E0; }
    .btn--white:hover {
      background-color: #0050E0;
      color: #fff; }
  .btn--catalog {
    -ms-flex-preferred-size: 8.47222vw;
        flex-basis: 8.47222vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-width: 8.47222vw;
    height: 2.84722vw;
    position: relative; }
    .btn--catalog-close {
      display: none; }
      .btn--catalog-close.is-open {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
    .btn--catalog svg {
      width: 1.52778vw;
      height: 1.04167vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .btn--catalog svg {
          width: 22px;
          height: 15px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .btn--catalog svg {
          width: 6.875vmin;
          height: 4.6875vmin;
          margin-right: 0; } }
    .btn--catalog:hover {
      background-color: #0047c7; }
    @media (min-width: 1800px) {
      .btn--catalog {
        -ms-flex-preferred-size: 122px;
            flex-basis: 122px;
        min-width: 122px !important;
        height: 41px; } }
    @media (max-width: 1024px) {
      .btn--catalog {
        -ms-flex-preferred-size: 13.75vmin;
            flex-basis: 13.75vmin;
        min-width: 13.75vmin !important;
        height: 13.75vmin !important;
        background-color: rgba(0, 80, 224, 0.04);
        color: #0050E0; }
        .btn--catalog span {
          display: none; } }
  .btn--brands {
    min-width: 7.77778vw; }
    @media (min-width: 1800px) {
      .btn--brands {
        min-width: 112px; } }
    @media (max-width: 1024px) {
      .btn--brands {
        min-width: 35vmin; } }
  .btn--send {
    min-width: 11.25vw;
    height: 3.81944vw; }
    .btn--send svg {
      width: 1.38889vw;
      height: 1.38889vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .btn--send svg {
          width: 20px;
          height: 20px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .btn--send svg {
          width: 6.25vmin;
          height: 6.25vmin;
          margin-right: 3.125vmin; } }
    @media (min-width: 1800px) {
      .btn--send {
        min-width: 162px !important;
        height: 55px !important; } }
    @media (max-width: 1024px) {
      .btn--send {
        min-width: 43.125vmin !important;
        height: 14.375vmin !important; } }
  .btn--add-file {
    color: #5A6C7D;
    margin-right: 1.38889vw; }
    .btn--add-file svg {
      width: 1.52778vw;
      height: 1.52778vw;
      margin-right: 0.41667vw;
      color: #0050E0; }
      @media (min-width: 1800px) {
        .btn--add-file svg {
          width: 22px;
          height: 22px;
          margin-right: 6px; } }
      @media (max-width: 1024px) {
        .btn--add-file svg {
          width: 5.625vmin;
          height: 5.625vmin;
          margin-right: 1.875vmin; } }
    .btn--add-file:hover {
      color: #0050E0; }
    @media (min-width: 1800px) {
      .btn--add-file {
        margin-right: 20px; } }
    @media (max-width: 1024px) {
      .btn--add-file {
        margin-right: 0;
        padding-left: 0;
        font-size: 4.375vmin; } }
  .btn--all-news svg {
    width: 1.38889vw;
    height: 1.38889vw;
    margin-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .btn--all-news svg {
        width: 16px;
        height: 16px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .btn--all-news svg {
        width: 5vmin;
        height: 5vmin;
        margin-right: 3.125vmin; } }
  .btn--all-cert {
    padding-left: 1.66667vw;
    padding-right: 1.66667vw;
    min-width: 10.48611vw !important;
    white-space: nowrap; }
    .btn--all-cert svg {
      width: 1.38889vw;
      height: 1.52778vw;
      margin-right: 0.27778vw; }
      @media (min-width: 1800px) {
        .btn--all-cert svg {
          width: 20px;
          height: 22px;
          margin-right: 4px; } }
      @media (max-width: 1024px) {
        .btn--all-cert svg {
          width: 6.25vmin;
          height: 6.25vmin;
          margin-right: 1.25vmin; } }
    @media (min-width: 1800px) {
      .btn--all-cert {
        padding-left: 24px;
        padding-right: 24px;
        min-width: 151px !important; } }
    @media (max-width: 1024px) {
      .btn--all-cert {
        padding-left: 3.125vmin;
        padding-right: 3.125vmin; } }
  .btn--buy {
    min-width: 10.41667vw;
    height: 3.81944vw; }
    .btn--buy svg {
      width: 1.25vw;
      height: 1.25vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .btn--buy svg {
          width: 18px;
          height: 18px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .btn--buy svg {
          width: 5.625vmin;
          height: 5.625vmin;
          margin-right: 3.125vmin; } }
    @media (min-width: 1800px) {
      .btn--buy {
        min-width: 150px;
        height: 55px !important; } }
    @media (max-width: 1024px) {
      .btn--buy {
        min-width: 41.875vmin;
        height: 15vmin !important; } }
  .btn--analog {
    width: 11.45833vw;
    height: 3.81944vw; }
    @media (min-width: 1800px) {
      .btn--analog {
        width: 165px;
        height: 55px !important; } }
    @media (max-width: 1024px) {
      .btn--analog {
        width: 44.375vmin;
        height: 15vmin !important; } }
  .btn--add-cart {
    min-width: 9.86111vw;
    height: 3.33333vw; }
    .btn--add-cart svg {
      width: 1.38889vw;
      height: 1.38889vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .btn--add-cart svg {
          width: 18px;
          height: 18px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .btn--add-cart svg {
          width: 5.625vmin;
          height: 5.625vmin;
          margin-right: 3.125vmin; } }
    @media (min-width: 1800px) {
      .btn--add-cart {
        min-width: 142px !important;
        height: 47px !important; } }
    @media (max-width: 1024px) {
      .btn--add-cart {
        min-width: 44.375vmin !important;
        height: 11.875vmin !important; } }
  .btn--reset {
    min-width: 7.36111vw !important; }
    @media (min-width: 1800px) {
      .btn--reset {
        min-width: 106px !important; } }
    @media (max-width: 1024px) {
      .btn--reset {
        min-width: 21.875vmin !important;
        padding-left: 0;
        padding-right: 0; } }
  .btn--apply {
    min-width: 9.65278vw !important; }
    @media (min-width: 1800px) {
      .btn--apply {
        min-width: 139px !important; } }
    @media (max-width: 1024px) {
      .btn--apply {
        min-width: 43.4375vmin !important; } }
  .btn--ask svg {
    width: 1.25vw;
    height: 1.25vw;
    margin-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .btn--ask svg {
        width: 18px;
        height: 18px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .btn--ask svg {
        width: 5.625vmin;
        height: 5.625vmin;
        margin-right: 3.125vmin; } }
  .btn--base svg {
    width: 1.25vw;
    height: 1.25vw;
    margin-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .btn--base svg {
        width: 18px;
        height: 18px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .btn--base svg {
        width: 5.625vmin;
        height: 5.625vmin;
        margin-right: 3.125vmin; } }
  @media (max-width: 1024px) {
    .btn--base {
      min-width: 31.25vmin !important;
      width: 40.625vmin;
      padding-left: 0 !important;
      padding-right: 0 !important; } }
  .btn--checkout {
    height: 3.81944vw;
    min-width: 10.41667vw; }
    .btn--checkout svg {
      width: 1.25vw;
      height: 1.25vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .btn--checkout svg {
          width: 18px;
          height: 18px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .btn--checkout svg {
          width: 5.625vmin;
          height: 5.625vmin;
          margin-right: 3.125vmin; } }
    @media (min-width: 1800px) {
      .btn--checkout {
        height: 55px !important;
        min-width: 150px !important; } }
  @media (min-width: 1800px) and (max-width: 1024px) {
    .btn--checkout {
      height: 17.1875vmin !important;
      min-width: 46.875vmin !important; } }
  .btn--share {
    font-weight: 400;
    padding: 0;
    min-width: auto; }
    .btn--share svg {
      width: 1.25vw;
      height: 1.25vw;
      margin-right: 0.69444vw;
      color: #0050E0; }
      @media (min-width: 1800px) {
        .btn--share svg {
          width: 18px;
          height: 18px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .btn--share svg {
          width: 5.625vmin;
          height: 5.625vmin;
          margin-right: 3.125vmin; } }
  .btn--mobile-tags {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .btn--mobile-tags:hover {
      color: #0050E0;
      background-color: #fff; }
    @media (max-width: 1024px) {
      .btn--mobile-tags {
        min-width: 21.875vmin !important;
        width: 21.875vmin !important;
        margin-right: 3.125vmin; }
        .btn--mobile-tags svg {
          width: 2.5vmin;
          height: 2.5vmin;
          margin-left: 3.125vmin; } }
  @media (max-width: 1024px) {
    .btn--city-partners {
      min-width: 40.625vmin !important;
      width: 40.625vmin !important;
      margin-right: 0; } }
  @media (max-width: 1024px) {
    .btn--brands-tags {
      min-width: 40.625vmin !important;
      width: 40.625vmin !important;
      margin-right: 0; } }
  @media (max-width: 1024px) {
    .btn--certs {
      min-width: 40.625vmin !important;
      width: 40.625vmin !important;
      margin-right: 0; } }
  .btn--asidemenu:hover {
    color: #0050E0;
    background-color: #fff; }
  @media (max-width: 1024px) {
    .btn--asidemenu svg {
      width: 2.5vmin;
      height: 1.875vmin;
      margin-left: 3.125vmin; } }
  @media (max-width: 1024px) {
    .btn--repeat-order {
      height: 15vmin !important;
      min-width: 47.5vmin !important; } }
  .btn--delete-product {
    min-width: 9.72222vw;
    height: 3.81944vw; }
    .btn--delete-product svg {
      width: 1.04167vw;
      height: 1.04167vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .btn--delete-product svg {
          width: 15px;
          height: 15px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .btn--delete-product svg {
          width: 4.6875vmin;
          height: 4.6875vmin;
          margin-right: 3.125vmin; } }
    @media (min-width: 1800px) {
      .btn--delete-product {
        min-width: 140px !important;
        height: 55px !important; } }
    @media (max-width: 1024px) {
      .btn--delete-product {
        min-width: 43.75vmin !important;
        height: 17.1875vmin !important; } }
  .btn--cancel {
    color: #5A6C7D; }
  .btn--view-list {
    min-width: 15.48611vw;
    height: 3.81944vw; }
    .btn--view-list svg {
      width: 1.25vw;
      height: 1.25vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .btn--view-list svg {
          width: 18px;
          height: 18px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .btn--view-list svg {
          width: 5.625vmin;
          height: 5.625vmin;
          margin-right: 3.125vmin; } }
    @media (min-width: 1800px) {
      .btn--view-list {
        min-width: 223px !important;
        height: 55px !important; } }
    @media (max-width: 1024px) {
      .btn--view-list {
        min-width: 69.6875vmin !important;
        height: 17.1875vmin !important; } }
  .btn--reg {
    min-width: 16.11111vw;
    height: 3.81944vw; }
    @media (min-width: 1800px) {
      .btn--reg {
        min-width: 232px !important;
        height: 55px !important; } }
    @media (max-width: 1024px) {
      .btn--reg {
        min-width: 72.5vmin !important;
        height: 17.1875vmin !important; } }
  @media (min-width: 1800px) {
    .btn {
      border-radius: 10px;
      font-size: 15px;
      min-width: 165px;
      height: 41px; } }
  @media (max-width: 1024px) {
    .btn {
      border-radius: 3.125vmin;
      font-size: 4.125vmin;
      min-width: 40.625vmin;
      height: 10.625vmin; } }

@media (max-width: 1024px) {
  .btn-mobile-cart {
    width: 13.75vmin;
    height: 13.75vmin;
    background-color: rgba(0, 80, 224, 0.04);
    color: #0050E0;
    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;
    border-radius: 3.125vmin; }
    .btn-mobile-cart svg {
      width: 6.25vmin;
      height: 6.25vmin; } }

.btn-mobile-menu .close {
  display: none; }

@media (max-width: 1024px) {
  .btn-mobile-menu {
    width: 13.125vmin;
    height: 13.125vmin;
    background-color: #0050E0;
    color: #fff;
    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;
    border-radius: 3.125vmin;
    border: none; }
    .btn-mobile-menu svg {
      width: 5vmin;
      height: 5vmin; }
    .btn-mobile-menu.is-active .open {
      display: none; }
    .btn-mobile-menu.is-active .close {
      display: block; } }

#close-catalog {
  display: none; }
  #close-catalog.is-active {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex; }

#open-catalog.is-hide {
  display: none; }

.loader-btn {
  height: 3.33333vw; }
  .loader-btn:hover {
    background-color: rgba(0, 80, 224, 0.04);
    color: #0050E0; }
  .loader-btn svg {
    width: 1.11111vw;
    height: 1.11111vw;
    margin-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .loader-btn svg {
        width: 16px;
        height: 16px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .loader-btn svg {
        width: 5vmin;
        height: 5vmin;
        margin-right: 3.125vmin; } }
  @media (min-width: 1800px) {
    .loader-btn {
      height: 48px; } }
  @media (max-width: 1024px) {
    .loader-btn {
      height: 15vmin; } }

.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .product__image {
    height: 14.09722vw;
    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;
    background-color: #fff;
    border-radius: 2.08333vw 2.08333vw 0 0;
    border: 1px solid #F1F3FA; }
    .product__image img {
      width: 100%;
      height: auto; }
    @media (min-width: 1800px) {
      .product__image {
        border-radius: 30px 30px 0 0; } }
    @media (max-width: 1024px) {
      .product__image {
        border-radius: 9.375vmin 9.375vmin 0 0; } }
  .product__text {
    background-color: #fff;
    border-radius: 2.08333vw;
    margin-top: -1.73611vw;
    padding: 1.66667vw 2.08333vw 1.80556vw 2.08333vw;
    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;
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1;
    border: 1px solid #F1F3FA; }
    @media (min-width: 1800px) {
      .product__text {
        margin-top: -25px;
        border-radius: 30px;
        padding: 24px 30px 30px 30px; } }
    @media (max-width: 1024px) {
      .product__text {
        margin-top: -7.8125vmin;
        border-radius: 9.375vmin;
        padding: 7.5vmin 9.375vmin 9.375vmin 9.375vmin; } }
  .product__title {
    font-size: 1.18056vw;
    line-height: 1.94444vw;
    font-weight: 500;
    margin-bottom: 0.97222vw; }
    .product__title:hover {
      color: #0050E0; }
    @media (min-width: 1800px) {
      .product__title {
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 14px; } }
    @media (max-width: 1024px) {
      .product__title {
        font-size: 5.3125vmin;
        line-height: 8.75vmin;
        margin-bottom: 4.375vmin; } }
  .product__intro {
    font-size: 0.90278vw;
    line-height: 1.52778vw; }
    @media (min-width: 1800px) {
      .product__intro {
        font-size: 13px;
        line-height: 22px; } }
    @media (max-width: 1024px) {
      .product__intro {
        font-size: 4.0625vmin;
        line-height: 6.875vmin; } }
  .product__btm {
    margin-top: 1.80556vw; }
    @media (min-width: 1800px) {
      .product__btm {
        margin-top: 26px; } }
    @media (max-width: 1024px) {
      .product__btm {
        margin-top: 8.125vmin; } }
    .product__btm .btn {
      min-width: 10.20833vw;
      height: 3.26389vw; }
      @media (min-width: 1800px) {
        .product__btm .btn {
          min-width: 147px;
          height: 47px; } }
      @media (max-width: 1024px) {
        .product__btm .btn {
          min-width: 45.9375vmin;
          height: 14.6875vmin; } }

.product-box {
  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: #F1F3FA;
  border-radius: 1.25vw;
  position: relative; }
  .product-box__labels {
    position: absolute;
    top: 1.38889vw;
    left: 1.38889vw;
    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;
    z-index: 2; }
    @media (min-width: 1800px) {
      .product-box__labels {
        top: 20px;
        left: 20px; } }
    @media (max-width: 1024px) {
      .product-box__labels {
        top: 5vmin;
        left: 5vmin; } }
  .product-box__label {
    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;
    border-radius: 0.55556vw;
    margin-bottom: 0.34722vw;
    color: #FF8A00;
    font-size: 1.18056vw;
    height: 2.36111vw;
    background-color: #F7F9FF;
    padding-left: 1.04167vw;
    padding-right: 1.04167vw; }
    @media (min-width: 1800px) {
      .product-box__label {
        border-radius: 8px;
        margin-bottom: 5px;
        font-size: 17px;
        height: 34px;
        padding-left: 15px;
        padding-right: 15px; } }
    @media (max-width: 1024px) {
      .product-box__label {
        border-radius: 2.5vmin;
        margin-bottom: 0.625vmin;
        font-size: 4.375vmin;
        height: 9.375vmin;
        padding-left: 4.6875vmin;
        padding-right: 4.6875vmin; } }
  .product-box__image {
    max-width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 1.25vw;
    background-color: #fff;
    border: 1px solid #F1F3FA; }
    .product-box__image img {
      max-width: 100%; }
    @media (min-width: 1800px) {
      .product-box__image {
        border-radius: 18px; } }
    @media (max-width: 1024px) {
      .product-box__image {
        border-radius: 5.625vmin; } }
  .product-box__gallery {
    /*display: -webkit-box;
    display: -ms-flexbox;
    display: flex;*/ }
    .product-box__gallery-slide {
      height: 20.13889vw;
      text-align: center; }
      .product-box__gallery-slide img {
        max-width: 100%;
        max-height: 100%;
        display: inline-block; }
      @media (min-width: 1800px) {
        .product-box__gallery-slide {
          height: 232px; } }
      @media (max-width: 1024px) {
        .product-box__gallery-slide {
          height: 59.375vmin; } }
  .product-box__desc {
    padding: 1.59722vw 2.22222vw 1.38889vw 1.38889vw; }
    @media (min-width: 1800px) {
      .product-box__desc {
        padding: 23px 32px 20px 20px; } }
    @media (max-width: 1024px) {
      .product-box__desc {
        padding: 4.6875vmin 6.25vmin 6.25vmin 4.375vmin;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    @media (max-width: 1024px) {
      .product-box__desc .btn {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        -ms-flex-preferred-size: calc(50% - 2.5vmin);
            flex-basis: calc(50% - 2.5vmin);
        max-width: calc(50% - 2.5vmin);
        min-width: auto !important;
        margin-left: 2.5vmin; } }
  .product-box__title {
    font-size: 1.18056vw;
    line-height: 1.94444vw;
    margin-bottom: 0.76389vw;
    font-weight: 500; }
    @media (min-width: 1800px) {
      .product-box__title {
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 11px; } }
    @media (max-width: 1024px) {
      .product-box__title {
        font-size: 4.53125vmin;
        line-height: 8.75vmin;
        margin-bottom: 2.5vmin;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }
  .product-box__available {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.90278vw;
    line-height: 1.38889vw;
    color: #5A6C7D;
    margin-bottom: 1.94444vw; }
    .product-box__available:before {
      content: "";
      display: inline-block;
      width: 1.38889vw;
      height: 1.38889vw;
      background: url(../images/sprites/svg/check-green.svg) no-repeat center center;
      background-size: 1.38889vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .product-box__available:before {
          width: 20px;
          height: 20px;
          background-size: 20px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .product-box__available:before {
          width: 5.625vmin;
          height: 5.625vmin;
          background-size: 5.625vmin;
          margin-right: 1.875vmin;
          display: none; } }
    @media (min-width: 1800px) {
      .product-box__available {
        font-size: 11px;
        line-height: 20px;
        margin-bottom: 28px; } }
    @media (max-width: 1024px) {
      .product-box__available {
        font-size: 3.4375vmin;
        line-height: 6.25vmin;
        margin-bottom: 0;
        -webkit-box-ordinal-group: 5;
            -ms-flex-order: 4;
                order: 4;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
        margin-top: -5.625vmin; } }
  .product-box__notavailable {
    font-size: 0.90278vw;
    line-height: 1.38889vw;
    margin-bottom: 0.34722vw;
    color: #5A6C7D; }
    .product-box__notavailable a {
      color: #0050E0; }
    @media (min-width: 1800px) {
      .product-box__notavailable {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 5px; } }
    @media (max-width: 1024px) {
      .product-box__notavailable {
        font-size: 3.4375vmin;
        line-height: 6.25vmin;
        margin-bottom: 3.125vmin;
        -webkit-box-ordinal-group: 5;
            -ms-flex-order: 4;
                order: 4;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%; } }
  .product-box__intro {
    color: #5A6C7D;
    font-size: 0.76389vw;
    line-height: 1.18056vw;
    margin-bottom: 1.45833vw; }
    @media (min-width: 1800px) {
      .product-box__intro {
        font-size: 11px;
        line-height: 17px;
        margin-bottom: 21px; } }
    @media (max-width: 1024px) {
      .product-box__intro {
        font-size: 2.96875vmin;
        line-height: 4.53125vmin;
        margin-bottom: 5vmin; } }
  .product-box__price {
    font-size: 1.52778vw;
    line-height: 1.94444vw;
    font-weight: 500;
    margin-bottom: 0.83333vw; }
    @media (min-width: 1800px) {
      .product-box__price {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 12px; } }
    @media (max-width: 1024px) {
      .product-box__price {
        font-size: 5.625vmin;
        line-height: 7.5vmin;
        margin-bottom: 2.5vmin;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
        margin-bottom: 0; } }
  .product-box .slick-dots {
    left: 0;
    right: 0;
    bottom: 0.69444vw;
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .product-box .slick-dots li {
      width: 3.47222vw;
      -ms-flex-preferred-size: 3.47222vw;
          flex-basis: 3.47222vw;
      height: 0.27778vw;
      border-radius: 0.83333vw;
      background-color: #F1F3FA; }
      @media (min-width: 1800px) {
        .product-box .slick-dots li {
          width: 50px;
          -ms-flex-preferred-size: 50px;
              flex-basis: 50px;
          height: 4px;
          border-radius: 12px; } }
      @media (max-width: 1024px) {
        .product-box .slick-dots li {
          width: 12.5vmin;
          -ms-flex-preferred-size: 12.5vmin;
              flex-basis: 12.5vmin;
          height: 1.25vmin;
          border-radius: 3.75vmin; } }
    @media (min-width: 1800px) {
      .product-box .slick-dots {
        bottom: 10px; } }
    @media (max-width: 1024px) {
      .product-box .slick-dots {
        bottom: 3.125vmin; } }
  @media (min-width: 1800px) {
    .product-box {
      border-radius: 18px; } }
  @media (max-width: 1024px) {
    .product-box {
      border-radius: 5.625vmin; } }

.cat-menu__header {
  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;
  margin-bottom: 4.6875vmin;
  font-weight: 500;
  color: #0050E0;
  padding: 1.875vmin 0;
  font-size: 4.0625vmin;
  margin-bottom: 2.5vmin; }

.cat-menu__close {
  border: none;
  padding: 0;
  background-color: transparent;
  color: #0050E0; }
  .cat-menu__close svg {
    width: 3.125vmin;
    height: 3.125vmin; }

.cat-menu__tab-btn.active .cat-menu__tab {
  background-color: #0050E0;
  color: #fff; }

.cat-menu__tab {
  font-size: 1.04167vw;
  line-height: 1.52778vw;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 0.69444vw;
  background-color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.69444vw 1.04167vw;
  color: #0050E0;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out; }
  .cat-menu__tab:hover {
    background-color: #0050E0;
    color: #fff; }
  @media (min-width: 1800px) {
    .cat-menu__tab {
      font-size: 15px;
      line-height: 22px;
      border-radius: 10px;
      padding: 10px 24px; } }
  @media (max-width: 1024px) {
    .cat-menu__tab {
      font-size: 4.0625vmin;
      line-height: 6.875vmin;
      border-radius: 3.125vmin;
      padding: 2.1875vmin 6.25vmin;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      background-color: rgba(0, 80, 224, 0.04); } }

.cat-menu.is-active a {
  background-color: #0050E0;
  color: #fff; }

.cat-menu__link {
  width: 2.91667vw;
  height: 2.91667vw;
  background-color: #fff;
  border-radius: 0.69444vw;
  margin-left: 0.69444vw;
  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: #0050E0; }
  .cat-menu__link:hover {
    background-color: #0050E0;
    color: #fff; }
  .cat-menu__link svg {
    width: 1.25vw;
    height: 1.25vw; }
    @media (min-width: 1800px) {
      .cat-menu__link svg {
        width: 18px;
        height: 18px; } }
    @media (max-width: 1024px) {
      .cat-menu__link svg {
        width: 5.625vmin;
        height: 5.625vmin; } }
  @media (min-width: 1800px) {
    .cat-menu__link {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      margin-left: 10px; } }
  @media (max-width: 1024px) {
    .cat-menu__link {
      width: 13.125vmin;
      height: 13.125vmin;
      border-radius: 3.125vmin;
      margin-left: 3.125vmin; } }

.cat-menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.69444vw; }
  @media (min-width: 1800px) {
    .cat-menu li {
      margin-bottom: 10px; } }
  @media (max-width: 1024px) {
    .cat-menu li {
      margin-bottom: 1.875vmin; } }

.catalog {
  position: relative; }
  .catalog--page-404 {
    padding-bottom: 6.94444vw; }
    @media (min-width: 1800px) {
      .catalog--page-404 {
        padding-bottom: 6.94444vw; } }
    @media (max-width: 1024px) {
      .catalog--page-404 {
        padding-bottom: 6.25vmin; } }
  .catalog__title-h2 {
    margin-bottom: 1.25vw !important; }
    @media (min-width: 1800px) {
      .catalog__title-h2 {
        margin-bottom: 18px !important; } }
    @media (max-width: 1024px) {
      .catalog__title-h2 {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-bottom: 6.25vmin !important; } }
  .catalog__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .catalog__aside {
    -ms-flex-preferred-size: 20.48611vw;
        flex-basis: 20.48611vw;
    max-width: 20.48611vw;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    @media (min-width: 1800px) {
      .catalog__aside {
        -ms-flex-preferred-size: 295px;
            flex-basis: 295px;
        max-width: 295px; } }
    @media (max-width: 1024px) {
      .catalog__aside {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        padding-right: 0;
        max-width: 100%;
        position: absolute;
        top: -1.25vmin;
        right: 5.3125vmin;
        left: 5.3125vmin;
        background-color: #fff;
        border-radius: 8.125vmin;
        padding: 3.125vmin 5.625vmin;
        z-index: 66;
        border: 1px solid #F1F3FA;
        -webkit-box-shadow: 0px 10px 40px rgba(0, 155, 122, 0.1);
                box-shadow: 0px 10px 40px rgba(0, 155, 122, 0.1);
        display: none; }
        .catalog__aside.is-open {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; } }
  .catalog__main {
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1;
    padding-left: 1.38889vw; }
    @media (min-width: 1800px) {
      .catalog__main {
        padding-left: 20px; } }
    @media (max-width: 1024px) {
      .catalog__main {
        padding-left: 0; } }
  .catalog__sort {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 1.31944vw; }
    .catalog__sort-btn {
      font-size: 1.04167vw;
      font-weight: 500;
      height: 2.84722vw;
      padding-left: 1.66667vw;
      padding-right: 1.66667vw;
      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;
      margin-right: 0.69444vw;
      margin-bottom: 0.69444vw;
      border-radius: 2.5vw;
      border: none;
      background-color: #fff;
      color: #0050E0; }
      .catalog__sort-btn.is-active {
        background-color: #0050E0;
        color: #fff; }
      .catalog__sort-btn:hover {
        background-color: #0050E0;
        color: #fff; }
      @media (min-width: 1800px) {
        .catalog__sort-btn {
          font-size: 15px;
          height: 41px;
          padding-left: 24px;
          padding-right: 24px;
          margin-right: 10px;
          margin-bottom: 10px;
          border-radius: 36px; } }
    @media (min-width: 1800px) {
      .catalog__sort {
        margin-bottom: 19px; } }
    @media (max-width: 1024px) {
      .catalog__sort {
        margin-bottom: 5.9375vmin;
        display: none; } }
  .catalog__products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw; }
    .catalog__products .product {
      margin-left: 0.69444vw;
      margin-right: 0.69444vw;
      -ms-flex-preferred-size: calc(33.33% - 1.38889vw);
          flex-basis: calc(33.33% - 1.38889vw);
      margin-bottom: 1.38889vw; }
      @media (min-width: 1800px) {
        .catalog__products .product {
          margin-left: 10px;
          margin-right: 10px;
          -ms-flex-preferred-size: calc(33.33% - 20px);
              flex-basis: calc(33.33% - 20px);
          margin-bottom: 20px; } }
      @media (max-width: 1024px) {
        .catalog__products .product {
          margin-left: 0;
          margin-right: 0;
          -ms-flex-preferred-size: 100%;
              flex-basis: 100%;
          margin-bottom: 2.5vmin; } }
      @media (max-width: 1024px) {
        .catalog__products .product__image {
          display: none; } }
      @media (max-width: 1024px) {
        .catalog__products .product__title {
          color: #0050E0;
          font-size: 4.6875vmin;
          line-height: 7.8125vmin;
          margin-bottom: 1.25vmin; } }
      @media (max-width: 1024px) {
        .catalog__products .product__text {
          margin-top: 0;
          padding-right: 18.75vmin;
          padding-left: 8.125vmin;
          padding-bottom: 7.5vmin;
          position: relative; } }
      @media (max-width: 1024px) {
        .catalog__products .product__intro {
          font-size: 3.4375vmin;
          line-height: 6.25vmin; } }
      @media (max-width: 1024px) {
        .catalog__products .product__btm {
          margin: 0; } }
      @media (max-width: 1024px) {
        .catalog__products .product .btn--more-product {
          min-width: 10vmin;
          height: 10vmin;
          font-size: 0;
          border-radius: 50%;
          position: absolute;
          top: 7.5vmin;
          right: 5.625vmin; }
          .catalog__products .product .btn--more-product svg {
            margin-left: 0; } }
    @media (min-width: 1800px) {
      .catalog__products {
        margin-left: -10px;
        margin-right: -10px; } }
    @media (max-width: 1024px) {
      .catalog__products {
        margin-left: -3.125vmin;
        margin-right: -3.125vmin; } }
  .catalog__products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw; }
    .catalog__products .article {
      -ms-flex-preferred-size: calc(33.33% - 1.38889vw);
          flex-basis: calc(33.33% - 1.38889vw);
      max-width: calc(33.33% - 1.38889vw);
      margin-left: 0.69444vw;
      margin-right: 0.69444vw;
      margin-bottom: 1.38889vw; }
      @media (min-width: 1800px) {
        .catalog__products .article {
          -ms-flex-preferred-size: calc(33.33% - 20px);
              flex-basis: calc(33.33% - 20px);
          max-width: calc(33.33% - 20px);
          margin-left: 10px;
          margin-right: 10px;
          margin-bottom: 20px; } }
      @media (max-width: 1024px) {
        .catalog__products .article {
          -ms-flex-preferred-size: 100%;
              flex-basis: 100%;
          max-width: 100%;
          margin-left: 0;
          margin-right: 0;
          margin-bottom: 6.25vmin; } }
    @media (min-width: 1800px) {
      .catalog__products {
        margin-left: -10px;
        margin-right: -10px; } }
    @media (max-width: 1024px) {
      .catalog__products {
        margin-left: 0;
        margin-right: 0; } }
  .catalog__category-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw; }
    @media (min-width: 1800px) {
      .catalog__category-list {
        margin-left: -10px;
        margin-right: -10px; } }
    @media (max-width: 1024px) {
      .catalog__category-list {
        margin-left: -3.125vmin;
        margin-right: -3.125vmin; } }
  .catalog__category {
    -ms-flex-preferred-size: calc(33.33% - 1.38889vw);
        flex-basis: calc(33.33% - 1.38889vw);
    margin-left: 0.69444vw;
    margin-right: 0.69444vw;
    margin-bottom: 1.38889vw;
    border-radius: 2.08333vw;
    background: #FFFFFF;
    padding: 1.38889vw 2.01389vw;
    padding-right: 1.11111vw;
    min-height: 12.5vw; }
    .catalog__category-title {
      font-size: 1.18056vw;
      line-height: 1.94444vw;
      margin-bottom: 1.11111vw;
      font-weight: 500;
      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; }
      .catalog__category-title:after {
        content: "";
        width: 2.5vw;
        height: 2.5vw;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        background: rgba(0, 80, 224, 0.04) url(../images/sprites/svg/angle-right.svg) no-repeat center center;
        background-size: 0.48611vw;
        border-radius: 50%; }
        @media (min-width: 1800px) {
          .catalog__category-title:after {
            width: 36px;
            height: 36px;
            background-size: 7px; } }
        @media (max-width: 1024px) {
          .catalog__category-title:after {
            width: 10vmin;
            height: 10vmin;
            background-size: 2.1875vmin; } }
      @media (min-width: 1800px) {
        .catalog__category-title {
          font-size: 17px;
          line-height: 28px;
          margin-bottom: 16px; } }
      @media (max-width: 1024px) {
        .catalog__category-title {
          font-size: 4.53125vmin;
          line-height: 8.75vmin;
          margin-bottom: 5vmin; } }
    @media (min-width: 1800px) {
      .catalog__category {
        -ms-flex-preferred-size: calc(33.33% - 20px);
            flex-basis: calc(33.33% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 20px;
        border-radius: 30px;
        padding: 20px 29px;
        padding-right: 16px;
        min-height: 180px; } }
    @media (max-width: 1024px) {
      .catalog__category {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 3.125vmin;
        border-radius: 9.375vmin;
        padding: 6.875vmin 6.25vmin;
        padding-right: 5vmin;
        min-height: 56.25vmin; } }
  .catalog__text-block {
    margin-top: 2.36111vw;
    font-size: 1.04167vw;
    line-height: 1.94444vw; }
    .catalog__text-block-image {
      margin-bottom: 2.36111vw;
      position: relative;
      overflow: hidden;
      border-radius: 2.08333vw; }
      @media (min-width: 1800px) {
        .catalog__text-block-image {
          margin-bottom: 34px;
          border-radius: 30px; } }
      @media (max-width: 1024px) {
        .catalog__text-block-image {
          margin-bottom: 10.625vmin;
          border-radius: 9.375vmin; } }
    .catalog__text-block h3 {
      font-weight: 500;
      font-size: 1.18056vw;
      margin-top: 0;
      margin-bottom: 0.76389vw; }
      @media (min-width: 1800px) {
        .catalog__text-block h3 {
          font-size: 17px;
          margin-bottom: 11px; } }
      @media (max-width: 1024px) {
        .catalog__text-block h3 {
          font-size: 5.3125vmin;
          margin-bottom: 3.4375vmin; } }
    @media (min-width: 1800px) {
      .catalog__text-block {
        margin-top: 34px;
        font-size: 15px;
        line-height: 28px; } }
    @media (max-width: 1024px) {
      .catalog__text-block {
        margin-top: 10.625vmin;
        font-size: 4.6875vmin;
        line-height: 8.75vmin; } }
  .catalog__cat-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw; }
    @media (min-width: 1800px) {
      .catalog__cat-list {
        margin-left: -10px;
        margin-right: -10px; } }
    @media (max-width: 1024px) {
      .catalog__cat-list {
        margin-left: 0;
        margin-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .catalog__box {
    background: #FFFFFF;
    border: 1px solid #F2F5FF;
    border-radius: 1.38889vw;
    padding: 2.43056vw 2.08333vw;
    margin-left: 0.69444vw;
    margin-right: 0.69444vw;
    margin-bottom: 1.38889vw;
    -ms-flex-preferred-size: calc(50% - 1.38889vw);
        flex-basis: calc(50% - 1.38889vw); }
    .catalog__box-title {
      font-size: 1.18056vw;
      line-height: 1.94444vw;
      font-weight: 500;
      margin-bottom: 0.83333vw;
      margin-left: 0.48611vw; }
      @media (max-width: 1024px) {
        .catalog__box-title--desktop {
          display: none; } }
      .catalog__box-title--mobile {
        display: none;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        background: url(../images/sprites/svg/angle-down-green.svg) no-repeat right 3.125vmin center;
        background-size: 5vmin; }
        .catalog__box-title--mobile.is-active {
          background: url(../images/sprites/svg/angle-up-blue.svg) no-repeat right 3.125vmin center; }
        @media (max-width: 1024px) {
          .catalog__box-title--mobile {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex; } }
      @media (min-width: 1800px) {
        .catalog__box-title {
          font-size: 17px;
          line-height: 28px;
          margin-bottom: 12px;
          margin-left: 7px; } }
      @media (max-width: 1024px) {
        .catalog__box-title {
          font-size: 4.6875vmin;
          line-height: 8.75vmin;
          margin-bottom: 0;
          margin-left: 0; } }
    @media (max-width: 1024px) {
      .catalog__box-list li {
        margin-bottom: 3.4375vmin; } }
    .catalog__box-list a {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      border-radius: 0.55556vw;
      padding: 0.27778vw 0.48611vw;
      min-height: 2.15278vw;
      color: #0050E0; }
      .catalog__box-list a:hover {
        background-color: #F2F5FF;
        color: #FF8A00; }
      @media (min-width: 1800px) {
        .catalog__box-list a {
          border-radius: 8px;
          padding: 4px 7px;
          min-height: 31px; } }
      @media (max-width: 1024px) {
        .catalog__box-list a {
          border-radius: 0;
          padding: 0;
          min-height: auto;
          font-size: 4.0625vmin; } }
    @media (max-width: 1024px) {
      .catalog__box-list {
        display: none;
        margin-top: 3.75vmin; } }
    @media (min-width: 1800px) {
      .catalog__box {
        border-radius: 20px;
        padding: 35px 30px;
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 20px;
        -ms-flex-preferred-size: calc(50% - 20px);
            flex-basis: calc(50% - 20px); } }
    @media (max-width: 1024px) {
      .catalog__box {
        border-radius: 6.25vmin;
        padding: 5.625vmin 7.8125vmin;
        padding-right: 4.6875vmin;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 3.125vmin;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }

.feedback {
  padding-bottom: 1.11111vw; }
  .feedback--padding {
    padding-bottom: 6.94444vw; }
    @media (min-width: 1800px) {
      .feedback--padding {
        padding-bottom: 100px; } }
    @media (max-width: 1024px) {
      .feedback--padding {
        padding-bottom: 31.25vmin; } }
  .feedback__contacts-page {
    padding-bottom: 0 !important; }
    .feedback__contacts-page .container {
      border-bottom: 1px solid #E5EAEF;
      padding-bottom: 1.11111vw; }
      @media (min-width: 1800px) {
        .feedback__contacts-page .container {
          padding-bottom: 16px; } }
      @media (max-width: 1024px) {
        .feedback__contacts-page .container {
          padding-bottom: 11.875vmin; } }
  .feedback__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw; }
    @media (min-width: 1800px) {
      .feedback__container {
        margin-left: -10px;
        margin-right: -10px; } }
    @media (max-width: 1024px) {
      .feedback__container {
        margin-left: 0;
        margin-right: 0; } }
  @media (max-width: 1024px) {
    .feedback__form .form__row {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
    .feedback__form .form__col--33 {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%; }
    .feedback__form .form__input {
      border-right: none;
      border-bottom: 1px solid #F1F3FA; } }
  .feedback__form, .feedback__image {
    -ms-flex-preferred-size: calc(50% - 1.38889vw);
        flex-basis: calc(50% - 1.38889vw);
    max-width: calc(50% - 1.38889vw);
    margin-left: 0.69444vw;
    margin-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .feedback__form, .feedback__image {
        -ms-flex-preferred-size: calc(50% - 20px);
            flex-basis: calc(50% - 20px);
        max-width: calc(50% - 20px);
        margin-left: 10px;
        margin-left: 10px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .feedback__form, .feedback__image {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0; } }
  .feedback__image {
    text-align: right;
    padding-left: 1.25vw;
    padding-top: 1.66667vw; }
    @media (min-width: 1800px) {
      .feedback__image {
        padding-left: 18px;
        padding-top: 24px; } }
    @media (max-width: 1024px) {
      .feedback__image {
        display: none; } }
  .feedback__title {
    font-size: 2.43056vw;
    font-weight: 500;
    margin-top: 0;
    line-height: 3.33333vw;
    margin-bottom: 0.97222vw; }
    @media (min-width: 1800px) {
      .feedback__title {
        font-size: 35px;
        line-height: 48px;
        margin-bottom: 14px; } }
    @media (max-width: 1024px) {
      .feedback__title {
        font-size: 6.9375vmin;
        line-height: 9.375vmin;
        margin-bottom: 4.375vmin; } }
  .feedback__subtitle {
    font-size: 1.45833vw;
    line-height: 1.66667vw;
    color: #5A6C7D;
    margin-bottom: 3.125vw; }
    @media (min-width: 1800px) {
      .feedback__subtitle {
        font-size: 21px;
        line-height: 24px;
        margin-bottom: 45px; } }
    @media (max-width: 1024px) {
      .feedback__subtitle {
        font-size: 5.5vmin;
        line-height: 6.875vmin;
        margin-bottom: 6.25vmin; } }
  @media (min-width: 1800px) {
    .feedback {
      padding-bottom: 16px; } }
  @media (max-width: 1024px) {
    .feedback {
      padding-top: 11.875vmin;
      padding-bottom: 11.875vmin; } }

.form ::-webkit-input-placeholder {
  color: #94A4B4; }

.form ::-moz-placeholder {
  color: #94A4B4; }

.form :-ms-input-placeholder {
  color: #94A4B4; }

.form ::-ms-input-placeholder {
  color: #94A4B4; }

.form ::placeholder {
  color: #94A4B4; }

.form__wrapper {
  background: #FFFFFF;
  border: 1px solid #F1F3FA;
  position: relative;
  overflow: hidden;
  border-radius: 1.38889vw; }
  @media (min-width: 1800px) {
    .form__wrapper {
      border-radius: 20px; } }
  @media (max-width: 1024px) {
    .form__wrapper {
      border-radius: 6.25vmin; } }

.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-bottom: 1px solid #F1F3FA; }
  .form__row:last-child {
    border: none; }
  @media (max-width: 1024px) {
    .form__row {
      border: none; } }

.form__col {
  position: relative;
  z-index: 1; }
  .form__col--25 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%; }
  .form__col--33 {
    -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%; }
  .form__col--50 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%; }
  .form__col--66 {
    -ms-flex-preferred-size: 66.666%;
        flex-basis: 66.666%; }
  .form__col--100 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%; }

.form__input, .form__textarea {
  height: 4.09722vw;
  text-indent: 2.08333vw;
  font-size: 1.04167vw;
  width: 100%;
  border: none;
  border-right: 1px solid #F1F3FA;
  background-color: transparent;
  position: relative;
  z-index: 1; }
  .form__input--error, .form__textarea--error {
    border: 1px solid #D32323 !important; }
  .form__input:focus ~ .form__label, .form__textarea:focus ~ .form__label {
    font-size: 0.76389vw;
    top: 0.55556vw; }
    @media (min-width: 1800px) {
      .form__input:focus ~ .form__label, .form__textarea:focus ~ .form__label {
        font-size: 11px;
        top: 8px; } }
    @media (max-width: 1024px) {
      .form__input:focus ~ .form__label, .form__textarea:focus ~ .form__label {
        font-size: 3.4375vmin;
        top: 1.5625vmin; } }
  .form__input--first-top, .form__textarea--first-top {
    border-radius: 2.08333vw 0 0 0; }
    @media (min-width: 1800px) {
      .form__input--first-top, .form__textarea--first-top {
        border-radius: 30px 0 0 0; } }
    @media (max-width: 1024px) {
      .form__input--first-top, .form__textarea--first-top {
        border-radius: 0 0 0 0; } }
  .form__input--last-top, .form__textarea--last-top {
    border-radius: 0 2.08333vw 0 0; }
    @media (min-width: 1800px) {
      .form__input--last-top, .form__textarea--last-top {
        border-radius: 0 30px 0 0; } }
    @media (max-width: 1024px) {
      .form__input--last-top, .form__textarea--last-top {
        border-radius: 0 0 0 0; } }
  .form__input--first-bottom, .form__textarea--first-bottom {
    border-radius: 0 0 0 2.08333vw; }
    @media (min-width: 1800px) {
      .form__input--first-bottom, .form__textarea--first-bottom {
        border-radius: 0 0 0 30px; } }
    @media (max-width: 1024px) {
      .form__input--first-bottom, .form__textarea--first-bottom {
        border-radius: 0 0 0 0; } }
  .form__input--last-bottom, .form__textarea--last-bottom {
    border-radius: 0 0 2.08333vw 0; }
    @media (min-width: 1800px) {
      .form__input--last-bottom, .form__textarea--last-bottom {
        border-radius: 0 0 30px 0; } }
    @media (max-width: 1024px) {
      .form__input--last-bottom, .form__textarea--last-bottom {
        border-radius: 0  0 0 0; } }
  @media (min-width: 1800px) {
    .form__input, .form__textarea {
      height: 59px;
      font-size: 15px;
      text-indent: 30px; } }
  @media (max-width: 1024px) {
    .form__input, .form__textarea {
      height: 15.625vmin;
      font-size: 4.6875vmin;
      text-indent: 4.6875vmin; } }

.form ::-webkit-input-placeholder {
  color: transparent; }

.form ::-moz-placeholder {
  color: transparent; }

.form :-ms-input-placeholder {
  color: transparent; }

.form ::-ms-input-placeholder {
  color: transparent; }

.form ::placeholder {
  color: transparent; }

.form__input--login {
  background: url(../images/sprites/svg/orange-circle.svg) no-repeat right 3.125vmin center; }
  @media (min-width: 1800px) {
    .form__input--login {
      background: url(../images/sprites/svg/orange-circle.svg) no-repeat right 10px center; } }
  @media (max-width: 1024px) {
    .form__input--login {
      background: url(../images/sprites/svg/orange-circle.svg) no-repeat right 5.3125vmin center; } }

.form .input-notempty + .form__label {
  font-size: 0.76389vw;
  top: 0.55556vw; }
  @media (min-width: 1800px) {
    .form .input-notempty + .form__label {
      font-size: 11px;
      top: 8px; } }
  @media (max-width: 1024px) {
    .form .input-notempty + .form__label {
      font-size: 3.4375vmin;
      top: 1.5625vmin; } }

.form__textarea {
  text-indent: 0;
  height: auto;
  min-height: 6.94444vw;
  padding-left: 2.08333vw;
  padding-top: 1.38889vw;
  border-right: none; }
  @media (min-width: 1800px) {
    .form__textarea {
      min-height: 100px;
      padding-left: 30px;
      padding-top: 20px; } }
  @media (max-width: 1024px) {
    .form__textarea {
      min-height: 31.25vmin;
      padding-left: 4.6875vmin;
      padding-top: 6.25vmin; } }

.form__label {
  position: absolute;
  left: 2.22222vw;
  top: 1.45833vw;
  font-size: 1.04167vw;
  color: #94A4B4;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  z-index: -1; }
  .form__label--error {
    color: #D32323; }
  .form__label--green {
    color: #0050E0; }
  @media (min-width: 1800px) {
    .form__label {
      left: 32px;
      top: 21px;
      font-size: 15px; } }
  @media (max-width: 1024px) {
    .form__label {
      left: 4.6875vmin;
      top: 5.625vmin;
      font-size: 3.75vmin; } }

.form__required {
  position: absolute;
  width: 0.34722vw;
  height: 0.34722vw;
  border-radius: 50%;
  background-color: #0050E0;
  top: 1.875vw;
  right: 1.38889vw; }
  .form__required--error {
    background-color: #D32323; }
  @media (min-width: 1800px) {
    .form__required {
      width: 5px;
      height: 5px;
      top: 27px;
      right: 20px; } }
  @media (max-width: 1024px) {
    .form__required {
      width: 1.5625vmin;
      height: 1.5625vmin;
      top: 6.875vmin;
      right: 7.5vmin; } }

.form__required-text {
  color: #D32323;
  font-size: 0.69444vw;
  position: absolute;
  left: 0;
  bottom: -1.04167vw; }
  @media (min-width: 1800px) {
    .form__required-text {
      font-size: 10px;
      bottom: -15px; } }
  @media (max-width: 1024px) {
    .form__required-text {
      font-size: 3.125vmin;
      bottom: -4.6875vmin;
      left: 3.125vmin; } }

.form__file-list {
  padding: 1.38889vw 2.08333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media (min-width: 1800px) {
    .form__file-list {
      padding: 20px 30px; } }
  @media (max-width: 1024px) {
    .form__file-list {
      padding: 6.25vmin 9.375vmin; } }

.form__file {
  font-size: 0.90278vw;
  font-weight: 500;
  color: #5A6C7D;
  margin-right: 1.38889vw;
  margin-top: 0.69444vw;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer; }
  .form__file:after {
    content: "";
    width: 0.69444vw;
    height: 0.69444vw;
    background: url(../images/sprites/svg/del-green.svg) no-repeat center center;
    background-size: 0.69444vw;
    margin-left: 0.34722vw; }
    @media (min-width: 1800px) {
      .form__file:after {
        width: 10px;
        height: 10px;
        background-size: 10px;
        margin-left: 5px; } }
    @media (max-width: 1024px) {
      .form__file:after {
        width: 3.125vmin;
        height: 3.125vmin;
        background-size: 3.125vmin;
        margin-left: 1.5625vmin; } }
  @media (min-width: 1800px) {
    .form__file {
      font-size: 13px;
      margin-right: 20px;
      margin-top: 10px; } }
  @media (max-width: 1024px) {
    .form__file {
      font-size: 4.0625vmin;
      margin-right: 6.25vmin;
      margin-top: 3.125vmin; } }

.form__footer {
  margin-top: 1.66667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (min-width: 1800px) {
    .form__footer {
      margin-top: 27px; } }
  @media (max-width: 1024px) {
    .form__footer {
      margin-top: 8.4375vmin;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.form__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (max-width: 1024px) {
    .form__right {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
      width: 100%;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-bottom: 6.875vmin; } }

.form__policy {
  font-size: 0.90278vw;
  line-height: 1.38889vw;
  color: #5A6C7D;
  width: 14.44444vw; }
  .form__policy a {
    color: #0050E0; }
  @media (min-width: 1800px) {
    .form__policy {
      font-size: 13px;
      line-height: 20px;
      width: 208px; } }
  @media (max-width: 1024px) {
    .form__policy {
      font-size: 3.4375vmin;
      line-height: 5.3125vmin;
      width: 100%;
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; } }

.form__password-view {
  width: 1.38889vw;
  height: 1.38889vw;
  position: absolute;
  right: 0.83333vw;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: transparent url(../images/sprites/svg/eye.svg) no-repeat center center;
  background-size: 1.38889vw;
  z-index: 5;
  border: none; }
  .form__password-view.is-active {
    background: transparent url(../images/sprites/svg/eye-green.svg) no-repeat center center;
    background-size: 1.38889vw; }
    @media (min-width: 1800px) {
      .form__password-view.is-active {
        background-size: 20px; } }
    @media (max-width: 1024px) {
      .form__password-view.is-active {
        background-size: 6.25vmin; } }
  @media (min-width: 1800px) {
    .form__password-view {
      width: 20px;
      height: 20px;
      right: 12px;
      background-size: 20px; } }
  @media (max-width: 1024px) {
    .form__password-view {
      width: 6.25vmin;
      height: 6.25vmin;
      right: 3.75vmin;
      background-size: 6.25vmin; } }

.form--help-page .feedback__subtitle {
  margin-bottom: 1.38889vw;
  font-size: 1.18056vw;
  line-height: 1.66667vw;
  margin-bottom: 1.66667vw;
  color: #343B4C;
  font-weight: 500; }
  @media (min-width: 1800px) {
    .form--help-page .feedback__subtitle {
      margin-bottom: 20px;
      font-size: 17px;
      line-height: 24px;
      margin-bottom: 24px; } }
  @media (max-width: 1024px) {
    .form--help-page .feedback__subtitle {
      margin-bottom: 6.25vmin;
      font-size: 4.6875vmin;
      line-height: 6.875vmin;
      margin-bottom: 7.5vmin; } }

.form--help-page .form__policy {
  width: 24.65278vw; }
  @media (min-width: 1800px) {
    .form--help-page .form__policy {
      width: 355px; } }
  @media (max-width: 1024px) {
    .form--help-page .form__policy {
      width: 100%; } }

@media (max-width: 1024px) {
  .form--help-page .form__col {
    border-bottom: 1px solid #F1F3FA; }
  .form--help-page .form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .form--help-page .form__row:last-child .form__col:last-child {
      border-bottom: none; } }

.nativejs-select {
  border: none;
  width: auto;
  margin-top: 0;
  margin: 0; }
  .nativejs-select_active .nativejs-select__placeholder {
    border-radius: 0.69444vw 0.69444vw 0 0;
    border: 1px solid #F1F3FA;
    border-bottom: none; }
    .nativejs-select_active .nativejs-select__placeholder:after {
      border: none;
      background: url(../images/sprites/svg/dir-select--active.svg) no-repeat center center;
      width: 0.625vw;
      height: 0.625vw;
      background-size: 0.625vw; }
      @media (min-width: 1800px) {
        .nativejs-select_active .nativejs-select__placeholder:after {
          width: 9px;
          height: 9px;
          background-size: 9px; } }
      @media (max-width: 1024px) {
        .nativejs-select_active .nativejs-select__placeholder:after {
          width: 2.8125vmin;
          height: 2.8125vmin;
          background-size: 2.8125vmin; } }
    @media (min-width: 1800px) {
      .nativejs-select_active .nativejs-select__placeholder {
        border-radius: 10px 10px 0 0; } }
    @media (max-width: 1024px) {
      .nativejs-select_active .nativejs-select__placeholder {
        border-radius: 3.125vmin 3.125vmin 0 0; } }
  .nativejs-select__placeholder {
    height: 2.70833vw;
    background-color: #fff;
    border-radius: 0.69444vw;
    padding-right: 2.77778vw;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    border: 1px solid #fff; }
    .nativejs-select__placeholder-value {
      font-size: 1.04167vw;
      font-weight: 500;
      color: #0050E0; }
      @media (min-width: 1800px) {
        .nativejs-select__placeholder-value {
          font-size: 15px; } }
      @media (max-width: 1024px) {
        .nativejs-select__placeholder-value {
          font-size: 4.0625vmin;
          white-space: nowrap;
          overflow: hidden;
          margin-right: 3.125vmin; } }
    .nativejs-select__placeholder:after {
      border: none;
      width: 0.625vw;
      height: 0.625vw;
      background: url(../images/sprites/svg/dir-select.svg) no-repeat center center;
      background-size: 0.625vw;
      right: 1.52778vw; }
      @media (min-width: 1800px) {
        .nativejs-select__placeholder:after {
          width: 9px;
          height: 9px;
          background-size: 9px;
          right: 22px; } }
      @media (max-width: 1024px) {
        .nativejs-select__placeholder:after {
          width: 2.8125vmin;
          height: 2.8125vmin;
          background-size: 2.8125vmin;
          right: 6.875vmin; } }
    @media (min-width: 1800px) {
      .nativejs-select__placeholder {
        height: 39px;
        border-radius: 10px;
        padding-right: 40px; } }
    @media (max-width: 1024px) {
      .nativejs-select__placeholder {
        height: 9.375vmin;
        border-radius: 3.125vmin;
        padding-right: 12.5vmin; } }
  .nativejs-select__options {
    border: none; }
  .nativejs-select__dropdown {
    border: 1px solid #F1F3FA;
    border-radius: 0 0 2.08333vw 2.08333vw !important;
    overflow: hidden;
    padding-bottom: 0.41667vw;
    background-color: #fff;
    border-top: none;
    bottom: 0;
    right: 0;
    left: 0;
    width: auto; }
    @media (min-width: 1800px) {
      .nativejs-select__dropdown {
        border-radius: 0 0 30px 30px !important;
        padding-bottom: 6px; } }
  .nativejs-select__option {
    background-color: #fff;
    font-style: normal;
    color: #343B4C;
    font-size: 1.04167vw;
    border: none;
    padding: 0.97222vw 0;
    padding-left: 2.08333vw; }
    .nativejs-select__option:hover {
      border: none;
      color: #0050E0; }
    @media (min-width: 1800px) {
      .nativejs-select__option {
        font-size: 15px;
        padding: 14px 0;
        padding-left: 30px; } }
    @media (max-width: 1024px) {
      .nativejs-select__option {
        font-size: 4.0625vmin;
        padding: 4.375vmin 0;
        padding-left: 9.375vmin; } }

.checkbox {
  display: block; }
  .checkbox input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    margin: 0; }
    .checkbox input:checked + .checkbox__text:after {
      opacity: 1; }
  .checkbox__text {
    position: relative;
    padding: 0 0 0 2.08333vw;
    cursor: pointer;
    line-height: 1.2;
    font-size: 1.04167vw;
    display: block; }
    .checkbox__text:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 1.38889vw;
      height: 1.38889vw;
      border-radius: 0.34722vw;
      border: 1px solid rgba(0, 80, 224, 0.04);
      -webkit-transition: .2s;
      -o-transition: .2s;
      transition: .2s; }
      @media (min-width: 1800px) {
        .checkbox__text:before {
          width: 20px;
          height: 20px;
          border-radius: 5px; } }
      @media (max-width: 1024px) {
        .checkbox__text:before {
          width: 5.625vmin;
          height: 5.625vmin;
          border-radius: 1.5625vmin; } }
    .checkbox__text:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 1.38889vw;
      height: 1.38889vw;
      border-radius: 0.34722vw;
      background: #0050E0 url(../images/sprites/svg/checkbox.svg) no-repeat center center;
      -webkit-transition: .2s;
      -o-transition: .2s;
      transition: .2s;
      opacity: 0;
      border: 1px solid #0050E0; }
      @media (min-width: 1800px) {
        .checkbox__text:after {
          width: 20px;
          height: 20px;
          border-radius: 5px; } }
      @media (max-width: 1024px) {
        .checkbox__text:after {
          width: 5.625vmin;
          height: 5.625vmin;
          border-radius: 1.5625vmin; } }
    @media (min-width: 1800px) {
      .checkbox__text {
        padding: 0 0 0 30px;
        font-size: 15px; } }
    @media (max-width: 1024px) {
      .checkbox__text {
        padding: 0 0 0 9.375vmin;
        font-size: 4.0625vmin; } }

.radio {
  display: block;
  min-height: 1.38889vw; }
  .radio input {
    position: absolute;
    z-index: -1;
    opacity: 0; }
    .radio input:checked + .radio__text:after {
      opacity: 1; }
  .radio__text {
    position: relative;
    padding: 0 0 0 2.43056vw;
    cursor: pointer;
    font-size: 1.04167vw; }
    .radio__text:before {
      content: '';
      position: absolute;
      top: -0.20833vw;
      left: 0;
      width: 1.38889vw;
      height: 1.38889vw;
      border: 1px solid rgba(0, 80, 224, 0.04);
      border-radius: 50%;
      background: #FFF; }
      @media (min-width: 1800px) {
        .radio__text:before {
          width: 20px;
          height: 20px;
          top: -3px; } }
      @media (max-width: 1024px) {
        .radio__text:before {
          width: 5.625vmin;
          height: 5.625vmin;
          top: -0.9375vmin; } }
    .radio__text:after {
      content: '';
      position: absolute;
      top: -0.20833vw;
      left: 0;
      width: 1.38889vw;
      height: 1.38889vw;
      border-radius: 50%;
      border: 3px solid #0050E0;
      opacity: 0;
      -webkit-transition: .2s;
      -o-transition: .2s;
      transition: .2s; }
      @media (min-width: 1800px) {
        .radio__text:after {
          width: 20px;
          height: 20px;
          top: -3px; } }
      @media (max-width: 1024px) {
        .radio__text:after {
          width: 5.625vmin;
          height: 5.625vmin;
          top: -0.9375vmin; } }
    @media (min-width: 1800px) {
      .radio__text {
        font-size: 15px;
        padding: 0 0 0 35px; } }
    @media (max-width: 1024px) {
      .radio__text {
        font-size: 4.6875vmin;
        padding: 0 0 0 10.9375vmin; } }
  @media (min-width: 1800px) {
    .radio {
      min-height: 20px; } }
  @media (max-width: 1024px) {
    .radio {
      min-height: 6.25vmin; } }

.form-modal {
  background-color: #fff;
  border-radius: 1.38889vw;
  max-width: 49.30556vw;
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 2.84722vw 3.26389vw; }
  .form-modal__title {
    font-size: 2.43056vw;
    line-height: 3.33333vw;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0.97222vw; }
    @media (min-width: 1800px) {
      .form-modal__title {
        font-size: 35px;
        line-height: 48px;
        margin-bottom: 14px; } }
    @media (max-width: 1024px) {
      .form-modal__title {
        font-size: 7.5vmin;
        line-height: 10vmin;
        margin-bottom: 4.375vmin; } }
  .form-modal__subtitle {
    font-size: 1.45833vw;
    line-height: 1.66667vw;
    margin-bottom: 3.125vw; }
    @media (min-width: 1800px) {
      .form-modal__subtitle {
        font-size: 21px;
        line-height: 24px;
        margin-bottom: 45px; } }
    @media (max-width: 1024px) {
      .form-modal__subtitle {
        font-size: 4.6875vmin;
        line-height: 6.875vmin;
        margin-bottom: 4.6875vmin; } }
  @media (max-width: 1024px) {
    .form-modal .form__row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media (max-width: 1024px) {
    .form-modal .form__wrapper {
      border-radius: 3.125vmin; } }
  @media (max-width: 1024px) {
    .form-modal .form__input {
      border-right: none; } }
  @media (max-width: 1024px) {
    .form-modal .form__col {
      border-bottom: 1px solid #F1F3FA; } }
  @media (max-width: 1024px) {
    .form-modal .form__right {
      -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; }
      .form-modal .form__right .btn {
        margin-top: 4.6875vmin; } }
  .form-modal .mfp-close {
    margin-top: 1.04167vw;
    margin-right: 1.04167vw;
    color: #FF564E; }
    @media (min-width: 1800px) {
      .form-modal .mfp-close {
        margin-top: 15px;
        margin-right: 15px; } }
  @media (min-width: 1800px) {
    .form-modal {
      border-radius: 20px;
      max-width: 710px;
      padding: 41px 47px; } }
  @media (max-width: 1024px) {
    .form-modal {
      border-radius: 3.125vmin;
      max-width: 221.875vmin;
      padding: 4.6875vmin; } }

.dialog-modal {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center; }
  .dialog-modal__icon {
    width: 3.88889vw;
    height: 4.16667vw;
    color: #0050E0;
    margin-bottom: 1.59722vw; }
    @media (min-width: 1800px) {
      .dialog-modal__icon {
        width: 56px;
        height: 60px;
        margin-bottom: 23px; } }
    @media (max-width: 1024px) {
      .dialog-modal__icon {
        width: 17.5vmin;
        height: 18.75vmin;
        margin-bottom: 7.1875vmin; } }
  .dialog-modal__title {
    font-size: 1.52778vw;
    line-height: 3.33333vw;
    font-weight: 500; }
    @media (min-width: 1800px) {
      .dialog-modal__title {
        font-size: 22px;
        line-height: 48px; } }
    @media (max-width: 1024px) {
      .dialog-modal__title {
        font-size: 6.875vmin;
        line-height: 15vmin; } }
  .dialog-modal__subtitle {
    font-size: 1.04167vw;
    line-height: 1.94444vw;
    max-width: 34.51389vw;
    margin-bottom: 1.45833vw; }
    @media (min-width: 1800px) {
      .dialog-modal__subtitle {
        font-size: 15px;
        line-height: 28px;
        max-width: 497px;
        margin-bottom: 21px; } }
    @media (max-width: 1024px) {
      .dialog-modal__subtitle {
        font-size: 4.6875vmin;
        line-height: 8.75vmin;
        max-width: 100%;
        margin-bottom: 6.5625vmin; } }

.form#feedback-modal {
  max-width: 27.77778vw;
  text-align: center; }
  .form#feedback-modal .form__footer {
    -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; }
  .form#feedback-modal .form__policy {
    margin-top: 1.73611vw;
    width: 100%; }
    @media (min-width: 1800px) {
      .form#feedback-modal .form__policy {
        margin-top: 25px; } }
    @media (max-width: 1024px) {
      .form#feedback-modal .form__policy {
        margin-top: 7.8125vmin; } }
  .form#feedback-modal .form__wrapper {
    border-radius: 1.38889vw; }
    @media (min-width: 1800px) {
      .form#feedback-modal .form__wrapper {
        border-radius: 20px; } }
    @media (max-width: 1024px) {
      .form#feedback-modal .form__wrapper {
        border-radius: 6.25vmin; } }
  .form#feedback-modal .form__input,
  .form#feedback-modal .form__textarea {
    border-right: none; }
  @media (min-width: 1800px) {
    .form#feedback-modal {
      max-width: 400px; } }
  @media (max-width: 1024px) {
    .form#feedback-modal {
      max-width: 125vmin; } }

.global-error {
  font-size: 1.04167vw;
  font-weight: 500;
  color: #D32323;
  margin-top: 1.94444vw; }
  @media (min-width: 1800px) {
    .global-error {
      font-size: 15px;
      margin-top: 28px; } }
  @media (max-width: 1024px) {
    .global-error {
      font-size: 4.6875vmin;
      margin-top: 8.75vmin; } }

.article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .article__image {
    height: 14.09722vw;
    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;
    background-color: #F1F3FA;
    border-radius: 2.08333vw 2.08333vw 0 0;
    border: 1px solid #F1F3FA; }
    .article__image img {
      max-width: 10.13889vw;
      width: 100%;
      height: auto; }
      @media (min-width: 1800px) {
        .article__image img {
          max-width: 146px; } }
      @media (max-width: 1024px) {
        .article__image img {
          max-width: 45.625vmin; } }
    @media (min-width: 1800px) {
      .article__image {
        border-radius: 30px 30px 0 0;
        height: 203px; } }
    @media (max-width: 1024px) {
      .article__image {
        border-radius: 9.375vmin 9.375vmin 0 0;
        height: 56.25vmin; } }
  .article__text {
    background-color: #fff;
    border-radius: 2.08333vw;
    margin-top: -1.73611vw;
    padding: 1.66667vw 1.38889vw 2.08333vw 2.08333vw;
    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;
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1;
    border: 1px solid #F1F3FA; }
    @media (min-width: 1800px) {
      .article__text {
        margin-top: -25px;
        border-radius: 30px;
        padding: 24px 30px 30px 30px; } }
    @media (max-width: 1024px) {
      .article__text {
        margin-top: -7.8125vmin;
        border-radius: 6.25vmin;
        padding: 5.625vmin 6.25vmin 9.375vmin 7.8125vmin; } }
  .article__title {
    font-size: 1.18056vw;
    line-height: 1.94444vw;
    font-weight: 500;
    margin-bottom: 0.97222vw; }
    .article__title:hover {
      color: #0050E0; }
    @media (min-width: 1800px) {
      .article__title {
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 14px; } }
    @media (max-width: 1024px) {
      .article__title {
        font-size: 4.53125vmin;
        line-height: 6.875vmin;
        margin-bottom: 4.375vmin; } }
  .article__intro {
    font-size: 0.90278vw;
    line-height: 1.52778vw; }
    @media (min-width: 1800px) {
      .article__intro {
        font-size: 13px;
        line-height: 22px; } }
    @media (max-width: 1024px) {
      .article__intro {
        font-size: 3.4375vmin;
        line-height: 5.78125vmin; } }
  .article__btm {
    margin-top: 2.08333vw;
    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; }
    @media (min-width: 1800px) {
      .article__btm {
        margin-top: 30px; } }
    @media (max-width: 1024px) {
      .article__btm {
        margin-top: 8.125vmin; } }
    .article__btm .btn {
      min-width: 8.95833vw;
      height: 3.26389vw; }
      @media (min-width: 1800px) {
        .article__btm .btn {
          min-width: 129px;
          height: 47px; } }
      @media (max-width: 1024px) {
        .article__btm .btn {
          min-width: 33.75vmin;
          height: 11.875vmin; } }
  .article__date {
    font-size: 0.90278vw;
    line-height: 1.52778vw;
    color: #94A4B4;
    margin-right: 1.25vw; }
    @media (min-width: 1800px) {
      .article__date {
        font-size: 13px;
        line-height: 22px;
        margin-right: 18px; } }
    @media (max-width: 1024px) {
      .article__date {
        font-size: 3.4375vmin;
        line-height: 6.875vmin;
        margin-right: 5.625vmin; } }

.company {
  padding-bottom: 5.69444vw; }
  @media (max-width: 1024px) {
    .company--company-page .company__container {
      border-top: 1px solid #E2E2EA; } }
  .company--company-page .company__subtitle {
    font-size: 1.04167vw;
    line-height: 1.66667vw;
    margin-top: 2.77778vw;
    margin-bottom: 2.08333vw; }
    @media (min-width: 1800px) {
      .company--company-page .company__subtitle {
        font-size: 15px;
        line-height: 24px;
        margin-top: 40px;
        margin-bottom: 30px; } }
    @media (max-width: 1024px) {
      .company--company-page .company__subtitle {
        font-size: 4.6875vmin;
        line-height: 7.5vmin;
        margin-top: 12.5vmin;
        margin-bottom: 9.375vmin; } }
  .company--company-page .company__check {
    margin-bottom: 1.25vw; }
    @media (min-width: 1800px) {
      .company--company-page .company__check {
        margin-bottom: 18px; } }
  .company .title-h2 {
    margin-bottom: 1.66667vw;
    margin-top: 0;
    line-height: 1.94444vw; }
    @media (min-width: 1800px) {
      .company .title-h2 {
        margin-bottom: 24px;
        line-height: 28px; } }
    @media (max-width: 1024px) {
      .company .title-h2 {
        margin-bottom: 4.375vmin;
        line-height: 8.75vmin; } }
  .company__subtitle {
    color: #5A6C7D;
    font-size: 1.45833vw;
    line-height: 2.22222vw;
    margin-bottom: 1.11111vw; }
    @media (min-width: 1800px) {
      .company__subtitle {
        font-size: 21px;
        line-height: 32px;
        margin-bottom: 16px; } }
    @media (max-width: 1024px) {
      .company__subtitle {
        font-size: 4.53125vmin;
        line-height: 8.4375vmin;
        margin-bottom: 3.75vmin; } }
  .company__container {
    border-top: 1px solid #E2E2EA;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 5.55556vw;
    padding-top: 6.80556vw;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw; }
    @media (min-width: 1800px) {
      .company__container {
        margin-top: 80px;
        padding-top: 98px;
        margin-left: -10px;
        margin-right: -10px; } }
    @media (max-width: 1024px) {
      .company__container {
        margin-top: 0;
        padding-top: 13.75vmin;
        margin-left: 0;
        margin-right: 0;
        border-top: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .company__text {
    -ms-flex-preferred-size: calc(50% - 1.38889vw);
        flex-basis: calc(50% - 1.38889vw);
    max-width: calc(50% - 1.38889vw);
    margin-left: 0.69444vw;
    margin-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .company__text {
        -ms-flex-preferred-size: calc(50% - 20px);
            flex-basis: calc(50% - 20px);
        margin-left: 10px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .company__text {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0; } }
  .company__video {
    -ms-flex-preferred-size: calc(50% - 1.38889vw);
        flex-basis: calc(50% - 1.38889vw);
    max-width: calc(50% - 1.38889vw);
    margin-left: 0.69444vw;
    margin-right: 0.69444vw; }
    .company__video img {
      height: auto; }
    @media (min-width: 1800px) {
      .company__video {
        -ms-flex-preferred-size: calc(50% - 20px);
            flex-basis: calc(50% - 20px);
        margin-left: 10px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .company__video {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-top: 8.125vmin; } }
  .company__slider {
    -ms-flex-preferred-size: calc(50% - 1.38889vw);
        flex-basis: calc(50% - 1.38889vw);
    max-width: calc(50% - 1.38889vw);
    margin-left: 0.69444vw;
    margin-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .company__slider {
        -ms-flex-preferred-size: calc(50% - 20px);
            flex-basis: calc(50% - 20px);
        max-width: calc(50% - 20px);
        margin-left: 10px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .company__slider {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-top: 7.5vmin; } }
  .company__check {
    position: relative;
    font-size: 1.04167vw;
    line-height: 1.59722vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 3.61111vw;
    min-height: 3.05556vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .company__check:before {
      content: "";
      position: absolute;
      width: 2.91667vw;
      height: 2.91667vw;
      border-radius: 0.69444vw;
      background: #F2F5FF url(../images/sprites/svg/check-green.svg) no-repeat center center;
      background-size: 1.31944vw;
      left: 0;
      top: 0.27778vw;
      color: #0050E0; }
      @media (min-width: 1800px) {
        .company__check:before {
          width: 42px;
          height: 42px;
          border-radius: 10px;
          top: 4px;
          background-size: 19px; } }
      @media (max-width: 1024px) {
        .company__check:before {
          width: 12.5vmin;
          height: 12.5vmin;
          border-radius: 3.125vmin;
          top: 1.25vmin;
          background-size: 5.3125vmin; } }
    @media (min-width: 1800px) {
      .company__check {
        font-size: 15px;
        line-height: 23px;
        padding-left: 52px;
        min-height: 42px; } }
    @media (max-width: 1024px) {
      .company__check {
        font-size: 4.0625vmin;
        line-height: 6.25vmin;
        padding-left: 16.25vmin; } }
  .company__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 2.22222vw; }
    .company__footer .btn {
      height: 3.81944vw;
      margin-right: 1.94444vw; }
      @media (min-width: 1800px) {
        .company__footer .btn {
          height: 55px;
          margin-right: 28px; } }
      @media (max-width: 1024px) {
        .company__footer .btn {
          height: 15vmin;
          min-width: 43.75vmin;
          margin-right: 8.75vmin; } }
    .company__footer p {
      font-size: 1.18056vw;
      line-height: 1.94444vw;
      color: #5A6C7D; }
      @media (min-width: 1800px) {
        .company__footer p {
          font-size: 17px;
          line-height: 28px; } }
      @media (max-width: 1024px) {
        .company__footer p {
          font-size: 5.3125vmin;
          line-height: 8.75vmin;
          display: none; } }
    @media (min-width: 1800px) {
      .company__footer {
        margin-top: 32px; } }
    @media (max-width: 1024px) {
      .company__footer {
        margin-top: 5.625vmin; } }
  .company__advantage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw;
    margin-top: 3.33333vw; }
    @media (min-width: 1800px) {
      .company__advantage {
        margin-left: -10px;
        margin-right: -10px;
        margin-top: 48px; } }
    @media (max-width: 1024px) {
      .company__advantage {
        margin-left: 0;
        margin-right: 0;
        margin-top: 8.75vmin;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .company__advant {
    margin-left: 0.69444vw;
    margin-right: 0.69444vw;
    -ms-flex-preferred-size: calc(25% - 1.38889vw);
        flex-basis: calc(25% - 1.38889vw);
    background: #FFFFFF;
    border: 1px solid #F1F3FA;
    border-radius: 2.08333vw;
    padding: 2.08333vw;
    padding-bottom: 1.66667vw;
    margin-bottom: 1.38889vw;
    position: relative; }
    .company__advant-icon {
      width: 3.33333vw;
      height: 3.33333vw;
      margin-bottom: 1.25vw;
      color: #0050E0; }
      @media (min-width: 1800px) {
        .company__advant-icon {
          width: 48px;
          height: 48px;
          margin-bottom: 18px; } }
      @media (max-width: 1024px) {
        .company__advant-icon {
          position: absolute;
          top: 8.125vmin;
          right: 8.125vmin;
          width: 12.5vmin;
          height: 12.5vmin;
          margin-bottom: 5.625vmin; } }
    .company__advant-title {
      font-size: 1.18056vw;
      line-height: 1.94444vw;
      margin-bottom: 0.97222vw;
      font-weight: 500; }
      @media (min-width: 1800px) {
        .company__advant-title {
          font-size: 17px;
          line-height: 28px;
          margin-bottom: 14px; } }
      @media (max-width: 1024px) {
        .company__advant-title {
          font-size: 4.6875vmin;
          line-height: 6.875vmin;
          margin-bottom: 2.5vmin; } }
    .company__advant-txt {
      font-size: 0.90278vw;
      line-height: 1.52778vw; }
      @media (min-width: 1800px) {
        .company__advant-txt {
          font-size: 13px;
          line-height: 22px; } }
      @media (max-width: 1024px) {
        .company__advant-txt {
          font-size: 3.4375vmin;
          line-height: 5.625vmin; } }
    @media (min-width: 1800px) {
      .company__advant {
        margin-left: 10px;
        margin-right: 10px;
        -ms-flex-preferred-size: calc(25% - 20px);
            flex-basis: calc(25% - 20px);
        border-radius: 30px;
        padding: 30px;
        padding-bottom: 24px;
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .company__advant {
        margin-left: 0;
        margin-right: 0;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        border-radius: 9.375vmin;
        padding: 9.375vmin;
        padding-bottom: 7.5vmin;
        padding-left: 8.125vmin;
        padding-right: 20vmin;
        padding-top: 6.5625vmin;
        margin-bottom: 2.5vmin; } }
  @media (min-width: 1800px) {
    .company {
      padding-bottom: 82px; } }
  @media (max-width: 1024px) {
    .company {
      padding-bottom: 10.625vmin; } }

.content-slider {
  position: relative;
  overflow: hidden;
  border-radius: 1.38889vw; }
  .content-slider__item {
    overflow: hidden;
    border-radius: 1.38889vw; }
    @media (min-width: 1800px) {
      .content-slider__item {
        border-radius: 20px; } }
    @media (max-width: 1024px) {
      .content-slider__item {
        border-radius: 6.25vmin; } }
  .content-slider .btn-slider {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    z-index: 1; }
    .content-slider .btn-slider.prev {
      left: 1.52778vw; }
      @media (min-width: 1800px) {
        .content-slider .btn-slider.prev {
          left: 22px; } }
      @media (max-width: 1024px) {
        .content-slider .btn-slider.prev {
          left: 6.875vmin; } }
    .content-slider .btn-slider.next {
      right: 1.52778vw; }
      @media (min-width: 1800px) {
        .content-slider .btn-slider.next {
          right: 22px; } }
      @media (max-width: 1024px) {
        .content-slider .btn-slider.next {
          right: 6.875vmin; } }
  @media (min-width: 1800px) {
    .content-slider {
      border-radius: 20px; } }
  @media (max-width: 1024px) {
    .content-slider {
      border-radius: 6.25vmin; } }

.slick-dots {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 1.38889vw;
  right: 1.38889vw;
  padding: 0.625vw 0.27778vw;
  border-radius: 0.55556vw;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px); }
  .slick-dots li {
    width: 0.69444vw;
    -ms-flex-preferred-size: 0.69444vw;
        flex-basis: 0.69444vw;
    height: 0.69444vw;
    margin-left: 0.34722vw;
    margin-right: 0.34722vw;
    border-radius: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border: 1.4px solid rgba(255, 255, 255, 0.5);
    cursor: pointer; }
    .slick-dots li.slick-active {
      border: 1.4px solid #0050E0;
      background-color: #0050E0; }
    @media (min-width: 1800px) {
      .slick-dots li {
        width: 10px;
        -ms-flex-preferred-size: 10px;
            flex-basis: 10px;
        height: 10px;
        margin-left: 5px;
        margin-right: 5px; } }
    @media (max-width: 1024px) {
      .slick-dots li {
        width: 3.125vmin;
        -ms-flex-preferred-size: 3.125vmin;
            flex-basis: 3.125vmin;
        height: 3.125vmin;
        margin-left: 1.5625vmin;
        margin-right: 1.5625vmin; } }
  .slick-dots button {
    display: none; }
  @media (min-width: 1800px) {
    .slick-dots {
      bottom: 20px;
      right: 20px;
      padding: 9px 4px;
      border-radius: 8px; } }
  @media (max-width: 1024px) {
    .slick-dots {
      bottom: 6.25vmin;
      right: 6.25vmin;
      padding: 2.8125vmin 1.25vmin;
      border-radius: 2.5vmin; } }

.cert .container {
  padding-top: 7.5vw;
  padding-bottom: 7.5vw;
  border-top: 1px solid #E5EAEF; }
  @media (min-width: 1800px) {
    .cert .container {
      padding-top: 108px;
      padding-bottom: 108px; } }
  @media (max-width: 1024px) {
    .cert .container {
      padding-top: 11.25vmin;
      padding-bottom: 11.25vmin;
      padding-right: 0; } }

.cert__title {
  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;
  margin-bottom: 2.5vw; }
  .cert__title .title-h2 {
    margin-top: 0;
    margin-bottom: 0;
    width: 100%; }
  .cert__title-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 1024px) {
      .cert__title-right {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 100%;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end; } }
  @media (min-width: 1800px) {
    .cert__title {
      margin-bottom: 36px; } }
  @media (max-width: 1024px) {
    .cert__title {
      margin-bottom: 6.25vmin;
      padding-right: 6.25vmin; } }

.cert__btns {
  margin-left: 1.38889vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (min-width: 1800px) {
    .cert__btns {
      margin-left: 20px; } }
  @media (max-width: 1024px) {
    .cert__btns {
      margin-left: 0;
      margin-top: 6.25vmin;
      display: none; } }
  .cert__btns .btn-slider {
    width: 2.84722vw;
    height: 2.84722vw;
    color: #0050E0;
    background-color: rgba(0, 80, 224, 0.04); }
    .cert__btns .btn-slider:hover {
      color: #fff; }
    .cert__btns .btn-slider.next {
      margin-left: 0.69444vw; }
      @media (min-width: 1800px) {
        .cert__btns .btn-slider.next {
          margin-left: 10px; } }
      @media (max-width: 1024px) {
        .cert__btns .btn-slider.next {
          margin-left: 3.125vmin; } }
    @media (min-width: 1800px) {
      .cert__btns .btn-slider {
        width: 41px;
        height: 41px; } }
    @media (max-width: 1024px) {
      .cert__btns .btn-slider {
        width: 12.8125vmin;
        height: 12.8125vmin; } }

.cert-slider {
  margin-left: -0.69444vw;
  margin-right: -0.69444vw; }
  .cert-slider__item {
    padding-left: 0.69444vw;
    padding-right: 0.69444vw; }
    .cert-slider__item img {
      position: relative;
      border-radius: 0.69444vw;
      border: 4px solid #343B4C;
      width: 100%; }
      @media (min-width: 1800px) {
        .cert-slider__item img {
          border-radius: 10px; } }
      @media (max-width: 1024px) {
        .cert-slider__item img {
          border-radius: 3.125vmin; } }
    @media (min-width: 1800px) {
      .cert-slider__item {
        padding-left: 10px;
        padding-right: 10px; } }
    @media (max-width: 1024px) {
      .cert-slider__item {
        padding-left: 1.25vmin;
        padding-right: 1.25vmin; } }
  .cert-slider__title {
    text-align: center;
    font-size: 1.04167vw;
    line-height: 1.59722vw;
    margin-top: 0.90278vw;
    color: #5A6C7D; }
    @media (min-width: 1800px) {
      .cert-slider__title {
        font-size: 15px;
        line-height: 23px;
        margin-top: 13px; } }
    @media (max-width: 1024px) {
      .cert-slider__title {
        font-size: 3.4375vmin;
        line-height: 5.625vmin;
        margin-top: 4.0625vmin; } }
  @media (min-width: 1800px) {
    .cert-slider {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1024px) {
    .cert-slider {
      margin-left: 0;
      margin-right: -1.25vmin; } }

.crumbs {
  padding: 3.05556vw 0 1.52778vw;
  font-size: 0.90278vw;
  color: #5A6C7D; }
  .crumbs ol {
    padding-left: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .crumbs ol li {
      margin-right: 0.48611vw;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .crumbs ol li:after {
        content: "";
        width: 0.55556vw;
        height: 0.69444vw;
        display: inline-block;
        margin-left: 0.48611vw;
        background: url(../images/sprites/svg/dir-right.svg) no-repeat center center; }
        @media (min-width: 1800px) {
          .crumbs ol li:after {
            margin-left: 7px;
            width: 8px;
            height: 10px; } }
        @media (max-width: 1024px) {
          .crumbs ol li:after {
            margin-left: 2.1875vmin;
            width: 2.5vmin;
            height: 3.125vmin; } }
      .crumbs ol li:last-child:after {
        display: none; }
      .crumbs ol li a:hover {
        color: #0050E0; }
      @media (min-width: 1800px) {
        .crumbs ol li {
          margin-right: 7px; } }
      @media (max-width: 1024px) {
        .crumbs ol li {
          margin-right: 2.1875vmin; } }
  @media (min-width: 1800px) {
    .crumbs {
      padding: 44px 0 22px;
      font-size: 13px; } }
  @media (max-width: 1024px) {
    .crumbs {
      padding: 4.6875vmin 0 6.875vmin;
      font-size: 3.4375vmin; } }

.faq__header {
  margin-top: 6.31944vw;
  padding-top: 6.31944vw;
  border-top: 1px solid #E2E2EA;
  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;
  margin-bottom: 2.5vw; }
  .faq__header .title-h2 {
    margin-bottom: 0; }
    @media (max-width: 1024px) {
      .faq__header .title-h2 {
        margin-bottom: 6.25vmin; } }
  @media (min-width: 1800px) {
    .faq__header {
      margin-top: 91px;
      padding-top: 91px;
      margin-bottom: 36px; } }
  @media (max-width: 1024px) {
    .faq__header {
      margin-top: 11.25vmin;
      padding-top: 11.25vmin;
      margin-bottom: 3.125vmin;
      -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; } }

.faq__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .faq__btns .btn {
    margin-left: 0.69444vw;
    height: 2.70833vw;
    padding-left: 1.04167vw;
    padding-right: 1.04167vw; }
    @media (min-width: 1800px) {
      .faq__btns .btn {
        margin-left: 10px;
        height: 39px;
        padding-left: 15px;
        padding-right: 15px; } }
    @media (max-width: 1024px) {
      .faq__btns .btn {
        margin-left: 0;
        margin-bottom: 2.5vmin;
        height: 10.625vmin;
        padding-left: 4.0625vmin;
        padding-right: 4.0625vmin; } }
  @media (max-width: 1024px) {
    .faq__btns {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }

.faq__tags {
  margin-bottom: 2.91667vw; }
  @media (min-width: 1800px) {
    .faq__tags {
      margin-bottom: 42px; } }
  @media (max-width: 1024px) {
    .faq__tags {
      margin-bottom: 13.125vmin;
      position: absolute;
      top: 35.9375vmin;
      left: 5.3125vmin;
      border-radius: 6.25vmin;
      background-color: #fff;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      overflow: hidden;
      border: 1px solid #F1F3FA;
      padding-top: 3.125vmin;
      -webkit-box-shadow: 0px 10px 40px rgba(0, 155, 122, 0.1);
              box-shadow: 0px 10px 40px rgba(0, 155, 122, 0.1);
      display: none !important; }
      .faq__tags.is-open {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important; } }

.faq__tag {
  font-weight: 500;
  font-size: 1.04167vw;
  padding-left: 1.38889vw !important;
  padding-right: 1.38889vw !important;
  height: 2.70833vw !important; }
  @media (min-width: 1800px) {
    .faq__tag {
      font-size: 15px;
      padding-left: 20px !important;
      padding-right: 20px !important;
      height: 39px !important; } }
  @media (max-width: 1024px) {
    .faq__tag {
      font-size: 4.0625vmin !important;
      padding-left: 6.25vmin !important;
      padding-right: 6.25vmin !important;
      height: 12.1875vmin !important; } }

.faq__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.77778vw; }
  @media (min-width: 1800px) {
    .faq__more {
      margin-top: 40px; } }
  @media (max-width: 1024px) {
    .faq__more {
      margin-top: 12.5vmin; } }
  .faq__more .btn {
    height: 3.81944vw;
    min-width: 11.18056vw; }
    @media (min-width: 1800px) {
      .faq__more .btn {
        height: 55px;
        min-width: 161px; } }
    @media (max-width: 1024px) {
      .faq__more .btn {
        height: 17.1875vmin;
        min-width: 50.3125vmin; } }

.pagination-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .pagination-block__btn-more {
    height: 3.81944vw;
    min-width: 10.97222vw; }
    @media (min-width: 1800px) {
      .pagination-block__btn-more {
        height: 55px;
        min-width: 158px; } }
    @media (max-width: 1024px) {
      .pagination-block__btn-more {
        height: 14.375vmin;
        min-width: 41.875vmin; } }
  .pagination-block__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .pagination-block__pagination li {
      margin-right: 0.69444vw; }
      .pagination-block__pagination li.is-active span {
        background-color: #0050E0;
        color: #fff; }
      @media (min-width: 1800px) {
        .pagination-block__pagination li {
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .pagination-block__pagination li {
          margin-right: 3.125vmin; } }
    .pagination-block__pagination a, .pagination-block__pagination span {
      font-size: 1.18056vw;
      background: #FFFFFF;
      border: 1px solid #F1F3FA;
      width: 3.81944vw;
      height: 3.81944vw;
      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;
      border-radius: 0.69444vw; }
      .pagination-block__pagination a:hover, .pagination-block__pagination span:hover {
        background-color: #0050E0;
        color: #fff; }
      @media (min-width: 1800px) {
        .pagination-block__pagination a, .pagination-block__pagination span {
          font-size: 17px;
          width: 55px;
          height: 55px;
          border-radius: 10px; } }
      @media (max-width: 1024px) {
        .pagination-block__pagination a, .pagination-block__pagination span {
          font-size: 5.3125vmin;
          width: 17.1875vmin;
          height: 17.1875vmin;
          border-radius: 3.125vmin; } }
    .pagination-block__pagination svg {
      width: 0.83333vw; }
      @media (min-width: 1800px) {
        .pagination-block__pagination svg {
          width: 12px; } }
      @media (max-width: 1024px) {
        .pagination-block__pagination svg {
          width: 3.75vmin; } }
    @media (max-width: 1024px) {
      .pagination-block__pagination {
        display: none; } }
  .pagination-block__pagination-input {
    width: 7.36111vw;
    height: 3.81944vw;
    border-radius: 0.69444vw;
    border: 1px solid #F1F3FA;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    text-indent: 15px; }
    .pagination-block__pagination-input:focus {
      border: 1px solid #0050E0; }
    @media (min-width: 1800px) {
      .pagination-block__pagination-input {
        width: 106px;
        height: 55px;
        border-radius: 10px; } }
    @media (max-width: 1024px) {
      .pagination-block__pagination-input {
        width: 33.125vmin;
        height: 17.1875vmin;
        border-radius: 3.125vmin; } }
  @media (max-width: 1024px) {
    .pagination-block {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -0.69444vw;
  margin-right: -0.69444vw;
  margin-bottom: 2.98611vw; }
  @media (min-width: 1800px) {
    .row {
      margin-left: -10px;
      margin-right: -10px;
      margin-bottom: 43px; } }
  @media (max-width: 1024px) {
    .row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      margin-left: 0;
      margin-right: 0; } }

.col-6 {
  -ms-flex-preferred-size: calc(50% - 1.38889vw);
      flex-basis: calc(50% - 1.38889vw);
  width: calc(50% - 1.38889vw);
  margin-left: 0.69444vw;
  margin-right: 0.69444vw; }
  .col-6 h3 {
    margin-top: 0 !important; }
  @media (min-width: 1800px) {
    .col-6 {
      -ms-flex-preferred-size: calc(50% - 20px);
          flex-basis: calc(50% - 20px);
      width: calc(50% - 20px);
      margin-left: 10px;
      margin-right: 10px; } }
  @media (max-width: 1024px) {
    .col-6 {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      width: 100%;
      margin-left: 0;
      margin-right: 0; } }

@media (min-width: 1025px) {
  .order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; } }

@media (min-width: 1800px) {
  .order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; } }

@media (min-width: 1025px) {
  .order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; } }

@media (min-width: 1800px) {
  .order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; } }

.typography {
  font-size: 1.04167vw;
  line-height: 1.94444vw; }
  .typography h1 {
    font-size: 2.43056vw;
    line-height: 3.33333vw;
    margin-bottom: 2.43056vw;
    font-weight: 500; }
    @media (min-width: 1800px) {
      .typography h1 {
        font-size: 35px;
        line-height: 48px;
        margin-bottom: 35px; } }
    @media (max-width: 1024px) {
      .typography h1 {
        font-size: 6.875vmin;
        line-height: 10vmin;
        margin-top: 0;
        margin-bottom: 3.75vmin; } }
  .typography h2 {
    font-size: 1.45833vw;
    line-height: 1.45833vw;
    font-weight: 500;
    margin-bottom: 1.80556vw; }
    @media (min-width: 1800px) {
      .typography h2 {
        font-size: 21px;
        line-height: 21px;
        margin-bottom: 26px; } }
    @media (max-width: 1024px) {
      .typography h2 {
        font-size: 5.625vmin;
        line-height: 7.5vmin;
        margin-bottom: 4.375vmin;
        margin-top: 0; } }
  .typography h3 {
    font-size: 1.18056vw;
    line-height: 1.94444vw;
    font-weight: 500;
    margin-bottom: 0.97222vw; }
    @media (min-width: 1800px) {
      .typography h3 {
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 14px; } }
    @media (max-width: 1024px) {
      .typography h3 {
        font-size: 4.6875vmin;
        line-height: 6.875vmin;
        margin-bottom: 2.5vmin; } }
  .typography h4 {
    font-size: 1.18056vw;
    line-height: 1.94444vw;
    font-weight: 500;
    margin-bottom: 1.38889vw; }
    @media (min-width: 1800px) {
      .typography h4 {
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .typography h4 {
        font-size: 4.53125vmin;
        line-height: 5.625vmin;
        margin-bottom: 6.25vmin; } }
  .typography ul {
    margin-bottom: 3.47222vw; }
    .typography ul li {
      position: relative;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      line-height: 3;
      margin-bottom: 0.69444vw; }
      .typography ul li:before {
        content: "";
        width: 3.05556vw;
        height: 3.05556vw;
        -ms-flex-preferred-size: 3.05556vw;
            flex-basis: 3.05556vw;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        border-radius: 0.69444vw;
        margin-right: 1.25vw;
        background: #F1F3FA url(../images/sprites/svg/check-green.svg) no-repeat center center; }
        @media (min-width: 1800px) {
          .typography ul li:before {
            width: 44px;
            height: 44px;
            -ms-flex-preferred-size: 44px;
                flex-basis: 44px;
            border-radius: 10px;
            margin-right: 18px; } }
        @media (max-width: 1024px) {
          .typography ul li:before {
            width: 11.875vmin;
            height: 11.875vmin;
            -ms-flex-preferred-size: 11.875vmin;
                flex-basis: 11.875vmin;
            border-radius: 3.125vmin;
            margin-right: 5.625vmin; } }
      @media (min-width: 1800px) {
        .typography ul li {
          margin-bottom: 10px; } }
      @media (max-width: 1024px) {
        .typography ul li {
          margin-bottom: 3.125vmin;
          line-height: 5.625vmin; } }
    @media (min-width: 1800px) {
      .typography ul {
        margin-bottom: 50px; } }
    @media (max-width: 1024px) {
      .typography ul {
        margin-bottom: 15.625vmin; } }
  .typography ol {
    counter-reset: myCounter;
    padding-left: 0; }
    .typography ol li {
      position: relative;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      line-height: 3;
      margin-bottom: 0.69444vw; }
      .typography ol li:before {
        counter-increment: myCounter;
        content: counter(myCounter);
        width: 3.05556vw;
        height: 3.05556vw;
        -ms-flex-preferred-size: 3.05556vw;
            flex-basis: 3.05556vw;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        border-radius: 0.69444vw;
        margin-right: 1.25vw;
        font-size: 1.18056vw;
        font-weight: 500;
        background: #F1F3FA;
        color: #0050E0;
        text-align: center;
        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; }
        @media (min-width: 1800px) {
          .typography ol li:before {
            width: 44px;
            height: 44px;
            -ms-flex-preferred-size: 44px;
                flex-basis: 44px;
            border-radius: 10px;
            margin-right: 18px;
            font-size: 17px; } }
        @media (max-width: 1024px) {
          .typography ol li:before {
            width: 11.875vmin;
            height: 11.875vmin;
            -ms-flex-preferred-size: 11.875vmin;
                flex-basis: 11.875vmin;
            border-radius: 3.125vmin;
            margin-right: 5.625vmin;
            font-size: 5.3125vmin; } }
      @media (min-width: 1800px) {
        .typography ol li {
          margin-bottom: 10px; } }
      @media (max-width: 1024px) {
        .typography ol li {
          margin-bottom: 3.125vmin;
          line-height: 5.625vmin; } }
  .typography b, .typography strong {
    font-weight: 500; }
  .typography p {
    margin-bottom: 2.29167vw; }
    @media (min-width: 1800px) {
      .typography p {
        margin-bottom: 33px; } }
    @media (max-width: 1024px) {
      .typography p {
        margin-bottom: 10.3125vmin; } }
  @media (max-width: 1024px) {
    .typography img {
      width: 100%; } }
  @media (min-width: 1800px) {
    .typography {
      font-size: 15px;
      line-height: 28px; } }
  @media (max-width: 1024px) {
    .typography {
      font-size: 4.0625vmin;
      line-height: 6.875vmin; } }

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -0.69444vw;
  margin-right: -0.69444vw; }
  .cards__item {
    margin-left: 0.69444vw;
    margin-right: 0.69444vw;
    margin-bottom: 1.38889vw;
    -ms-flex-preferred-size: calc(33.33% - 1.38889vw);
        flex-basis: calc(33.33% - 1.38889vw);
    background: #FFFFFF url(../images/bg-card.png) no-repeat right center;
    background-size: cover;
    border: 1px solid #F1F3FA;
    -webkit-box-shadow: 0px 10px 40px rgba(148, 164, 180, 0.1);
            box-shadow: 0px 10px 40px rgba(148, 164, 180, 0.1);
    border-radius: 2.08333vw;
    padding: 3.61111vw 2.08333vw 3.125vw 4.02778vw; }
    .cards__item-ico {
      margin-bottom: 2.36111vw; }
      .cards__item-ico img {
        max-width: 4.86111vw; }
        @media (min-width: 1800px) {
          .cards__item-ico img {
            max-width: 70px; } }
        @media (max-width: 1024px) {
          .cards__item-ico img {
            max-width: 18.75vmin; } }
      @media (min-width: 1800px) {
        .cards__item-ico {
          margin-bottom: 34px; } }
      @media (max-width: 1024px) {
        .cards__item-ico {
          margin-bottom: 9.375vmin; } }
    .cards__item-title {
      font-size: 1.18056vw;
      margin-bottom: 0.41667vw;
      font-weight: 500; }
      @media (min-width: 1800px) {
        .cards__item-title {
          font-size: 17px;
          font-weight: 28px;
          margin-bottom: 6px; } }
      @media (max-width: 1024px) {
        .cards__item-title {
          font-size: 4.53125vmin;
          font-weight: 8.75vmin;
          margin-bottom: 1.875vmin;
          line-height: 7.1875vmin; } }
    .cards__item-intro {
      font-size: 1.04167vw;
      line-height: 1.66667vw; }
      @media (min-width: 1800px) {
        .cards__item-intro {
          font-size: 15px;
          line-height: 24px; } }
      @media (max-width: 1024px) {
        .cards__item-intro {
          font-size: 4.0625vmin;
          line-height: 6.25vmin; } }
    @media (min-width: 1800px) {
      .cards__item {
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 20px;
        -ms-flex-preferred-size: calc(33.33% - 20px);
            flex-basis: calc(33.33% - 20px);
        border-radius: 30px;
        padding: 52px 30px 45px 58px; } }
    @media (max-width: 1024px) {
      .cards__item {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 3.125vmin;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        border-radius: 6.25vmin;
        padding: 7.8125vmin 6.25vmin 6.25vmin 8.75vmin; } }
  @media (min-width: 1800px) {
    .cards {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1024px) {
    .cards {
      margin-left: 0;
      margin-right: 0; } }

.title-h1 {
  margin-top: 0;
  font-size: 2.43056vw;
  line-height: 3.125vw;
  margin-bottom: 2.56944vw;
  font-weight: 500; }
  @media (min-width: 1800px) {
    .title-h1 {
      font-size: 35px;
      line-height: 45px;
      margin-bottom: 37px; } }
  @media (max-width: 1024px) {
    .title-h1 {
      font-size: 6.875vmin;
      line-height: 8.125vmin;
      margin-bottom: 6.25vmin; } }

.title-h2 {
  font-size: 2.43056vw;
  line-height: 3.125vw;
  font-weight: 500;
  margin-bottom: 2.70833vw;
  margin-top: 0; }
  @media (min-width: 1800px) {
    .title-h2 {
      font-size: 35px;
      line-height: 45px;
      margin-bottom: 37px; } }
  @media (max-width: 1024px) {
    .title-h2 {
      font-size: 7.03125vmin;
      line-height: 8.125vmin;
      margin-bottom: 6.25vmin; } }

.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.18056vw; }
  .tags--bold .tags__item {
    font-weight: 500;
    font-size: 1.04167vw;
    padding-left: 1.38889vw;
    padding-right: 1.38889vw;
    height: 2.70833vw;
    border-radius: 0.69444vw; }
    @media (min-width: 1800px) {
      .tags--bold .tags__item {
        font-size: 15px;
        padding-left: 20px;
        padding-right: 20px;
        height: 39px;
        border-radius: 10px; } }
    @media (max-width: 1024px) {
      .tags--bold .tags__item {
        font-size: 4.6875vmin;
        padding-left: 6.25vmin;
        padding-right: 6.25vmin;
        height: 12.1875vmin;
        border-radius: 3.125vmin; } }
  .tags__item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background-color: #fff;
    border-radius: 0.34722vw;
    margin-right: 0.76389vw;
    height: 2.36111vw;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 1.04167vw;
    padding-right: 1.04167vw;
    color: #0050E0;
    border: none;
    margin-bottom: 0.69444vw; }
    .tags__item:hover {
      color: #fff;
      background-color: #0050E0; }
    @media (min-width: 1800px) {
      .tags__item {
        border-radius: 5px;
        margin-right: 11px;
        margin-bottom: 10px;
        height: 34px;
        padding-left: 15px;
        padding-right: 15px; } }
    @media (max-width: 1024px) {
      .tags__item {
        border-radius: 1.5625vmin;
        margin-right: 3.4375vmin;
        margin-bottom: 3.125vmin;
        height: 9.375vmin;
        padding-left: 4.21875vmin;
        padding-right: 4.21875vmin; } }
  @media (min-width: 1800px) {
    .tags {
      font-size: 17px; } }
  @media (max-width: 1024px) {
    .tags {
      font-size: 4.375vmin; } }

@media (max-width: 1024px) {
  .catalog__wrapper--filters {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; } }

.filter__wrapper {
  background-color: #F1F3FA;
  border-radius: 1.38889vw; }
  @media (min-width: 1800px) {
    .filter__wrapper {
      bborder-radius: 20px; } }
  @media (max-width: 1024px) {
    .filter__wrapper {
      border-radius: 6.25vmin; } }

.filter__item {
  border: 1px solid #F1F3FA;
  border-radius: 1.38889vw;
  padding: 1.38889vw;
  padding-top: 1.45833vw;
  padding-bottom: 1.66667vw; }
  .filter__item .checkbox__text:before,
  .filter__item .radio__text:before {
    border: 1px solid rgba(0, 80, 224, 0.2); }
  .filter__item.is-active {
    background: #FFFFFF; }
    .filter__item.is-active .filter__title:after {
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); }
    .filter__item.is-active .filter__variants {
      display: block; }
  @media (min-width: 1800px) {
    .filter__item {
      bborder-radius: 20px;
      padding: 20px;
      padding-top: 21px;
      padding-bottom: 24px; } }
  @media (max-width: 1024px) {
    .filter__item {
      border-radius: 5vmin;
      padding: 4.6875vmin;
      padding-top: 6.5625vmin;
      padding-bottom: 7.5vmin; } }

.filter__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.18056vw;
  line-height: 1.80556vw;
  font-weight: 500;
  margin-bottom: 0.90278vw;
  cursor: pointer; }
  .filter__title:after {
    content: "";
    display: inline-block;
    width: 1.66667vw;
    height: 0.97222vw;
    background: url(../images/sprites/svg/angle-down-green.svg) no-repeat center center;
    background-size: 1.38889vw;
    position: relative;
    top: 0.55556vw; }
    @media (min-width: 1800px) {
      .filter__title:after {
        width: 24px;
        height: 14px;
        background: url(../images/sprites/svg/angle-down-green.svg) no-repeat center center;
        background-size: 20px;
        top: 8px; } }
    @media (max-width: 1024px) {
      .filter__title:after {
        width: 5vmin;
        height: 4.375vmin;
        background: url(../images/sprites/svg/angle-down-green.svg) no-repeat center center;
        background-size: 5vmin;
        top: 1.5625vmin; } }
  @media (min-width: 1800px) {
    .filter__title {
      font-size: 17px;
      line-height: 26px;
      margin-bottom: 13px; } }
  @media (max-width: 1024px) {
    .filter__title {
      font-size: 4.6875vmin;
      line-height: 6.25vmin;
      margin-bottom: 4.0625vmin; } }

.filter__variants {
  display: none; }
  .filter__variants .checkbox,
  .filter__variants .radio {
    margin-bottom: 0.69444vw; }
    @media (min-width: 1800px) {
      .filter__variants .checkbox,
      .filter__variants .radio {
        margin-bottom: 10px; } }
    @media (max-width: 1024px) {
      .filter__variants .checkbox,
      .filter__variants .radio {
        margin-bottom: 3.125vmin; } }

.filter__nav {
  margin-top: 2.08333vw;
  padding-left: 1.11111vw;
  padding-right: 1.11111vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .filter__nav .btn {
    height: 3.81944vw; }
    @media (max-width: 1024px) {
      .filter__nav .btn--reset {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        width: 37.5vmin;
        min-width: 31.25vmin !important; } }
    @media (max-width: 1024px) {
      .filter__nav .btn--apply {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        width: 37.5vmin;
        min-width: 31.25vmin !important; } }
    @media (min-width: 1800px) {
      .filter__nav .btn {
        height: 55px !important; } }
    @media (max-width: 1024px) {
      .filter__nav .btn {
        height: 14.375vmin !important;
        border-radius: 1.875vmin; } }
  @media (min-width: 1800px) {
    .filter__nav {
      margin-top: 30px;
      padding-left: 16px;
      padding-right: 16px; } }
  @media (max-width: 1024px) {
    .filter__nav {
      margin-top: 9.375vmin;
      padding-left: 0;
      padding-right: 0; } }

@media (max-width: 1024px) {
  .filter {
    padding: 3.125vmin !important;
    z-index: 5;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    position: relative;
    height: auto;
    width: 100%;
    max-width: 100%;
    display: none !important;
    margin-bottom: 6.25vmin;
    margin-top: -16.875vmin; }
    .filter.is-open {
      display: block !important; } }

@media (max-width: 1024px) {
  .filter__head {
    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;
    margin-bottom: 3.125vmin; } }

.filter__head-title {
  font-weight: 500;
  font-size: 4.0625vmin; }

@media (max-width: 1024px) {
  .filter .filter-close {
    width: 7.5vmin;
    height: 7.5vmin;
    z-index: 1;
    background-color: #fff;
    color: #0050E0;
    border: none; } }

.filter__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  border-radius: 0.69444vw;
  border: 1px solid #F1F3FA;
  padding-left: 0.69444vw;
  padding-right: 0.69444vw;
  margin-top: 1.38889vw; }
  .filter__price-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .filter__price-input span {
      font-weight: 500;
      font-size: 0.97222vw;
      margin-right: 0.48611vw; }
      @media (min-width: 1800px) {
        .filter__price-input span {
          font-size: 14px;
          margin-right: 7px; } }
      @media (max-width: 1024px) {
        .filter__price-input span {
          font-size: 4.375vmin;
          margin-right: 2.1875vmin; } }
    .filter__price-input input[type="text"] {
      height: 4.09722vw;
      font-size: 1.04167vw;
      width: 100%;
      max-width: 100%;
      border: none; }
      @media (min-width: 1800px) {
        .filter__price-input input[type="text"] {
          height: 59px;
          font-size: 15px; } }
      @media (max-width: 1024px) {
        .filter__price-input input[type="text"] {
          height: 18.4375vmin;
          font-size: 4.6875vmin; } }
  @media (min-width: 1800px) {
    .filter__price {
      border-radius: 10px;
      padding-left: 10px;
      padding-right: 10px;
      margin-top: 20px; } }
  @media (max-width: 1024px) {
    .filter__price {
      border-radius: 3.125vmin;
      padding-left: 3.125vmin;
      padding-right: 3.125vmin;
      margin-top: 6.25vmin; } }

@media (max-width: 1024px) {
  .filter {
    border-radius: 5vmin; } }

.ui-slider-horizontal {
  height: 0.13889vw; }
  @media (min-width: 1800px) {
    .ui-slider-horizontal {
      height: 2px; } }
  @media (max-width: 1024px) {
    .ui-slider-horizontal {
      height: 0.625vmin; } }

.ui-widget.ui-widget-content {
  border: none; }

.ui-widget-content {
  background-color: #F1F3FA; }

.ui-widget-header {
  background: #0050E0; }

.ui-slider .ui-slider-handle {
  width: 1.38889vw;
  height: 1.38889vw;
  border-radius: 50%;
  top: -9px;
  border: 2px solid #0050E0;
  background: #fff !important;
  outline: none !important; }
  @media (min-width: 1800px) {
    .ui-slider .ui-slider-handle {
      width: 20px;
      height: 20px;
      top: -9px; } }
  @media (max-width: 1024px) {
    .ui-slider .ui-slider-handle {
      width: 6.25vmin;
      height: 6.25vmin;
      top: -2.8125vmin; } }

.accordeon dl {
  margin-bottom: 1.38889vw;
  margin-top: 0;
  background-color: #fff;
  border-radius: 2.08333vw; }
  @media (min-width: 1800px) {
    .accordeon dl {
      border-radius: 30px;
      margin-bottom: 20px; } }
  @media (max-width: 1024px) {
    .accordeon dl {
      border-radius: 9.375vmin;
      margin-bottom: 3.125vmin; } }

.accordeon dt {
  margin-bottom: 0;
  min-height: 5.90278vw;
  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: 0 1.18056vw 0 2.08333vw;
  font-size: 1.18056vw;
  line-height: 1.94444vw;
  font-weight: 500;
  cursor: pointer; }
  .accordeon dt:after {
    content: "";
    width: 3.125vw;
    height: 3.125vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 50%;
    background: rgba(0, 80, 224, 0.04) url(../images/sprites/svg/angle-down-green.svg) no-repeat center center;
    background-size: 0.97222vw; }
    @media (min-width: 1800px) {
      .accordeon dt:after {
        width: 45px;
        height: 45px;
        background-size: 14px; } }
    @media (max-width: 1024px) {
      .accordeon dt:after {
        width: 12.5vmin;
        height: 12.5vmin;
        background-size: 4.375vmin; } }
  .accordeon dt.active:after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
  @media (min-width: 1800px) {
    .accordeon dt {
      min-height: 85px;
      padding: 0 17px 0 30px;
      font-size: 17px;
      line-height: 28px; } }
  @media (max-width: 1024px) {
    .accordeon dt {
      min-height: 22.5vmin;
      padding: 5vmin 5.3125vmin 5vmin 8.125vmin;
      font-size: 4.6875vmin;
      line-height: 7.96875vmin; } }

.accordeon dd {
  color: #5A6C7D;
  font-size: 1.04167vw;
  line-height: 1.66667vw;
  padding: 1.66667vw 2.08333vw;
  padding-top: 0;
  margin-left: 0; }
  @media (min-width: 1800px) {
    .accordeon dd {
      font-size: 15px;
      line-height: 24px;
      padding: 24px 30px;
      padding-top: 0; } }
  @media (max-width: 1024px) {
    .accordeon dd {
      font-size: 4.0625vmin;
      line-height: vmx(24);
      padding: 7.5vmin 9.375vmin;
      padding-top: 0;
      line-height: 6.875vmin; } }

.order {
  border-radius: 1.38889vw;
  padding: 1.80556vw 2.08333vw;
  background-color: #F2F5FF;
  margin-bottom: 0.69444vw; }
  .order.is-active {
    border-radius: 1.38889vw; }
    @media (min-width: 1800px) {
      .order.is-active {
        border-radius: 20px; } }
    @media (max-width: 1024px) {
      .order.is-active {
        border-radius: 6.25vmin; } }
  .order__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer; }
    .order__header-item {
      min-width: 11.66667vw; }
      .order__header-item p {
        font-size: 0.90278vw;
        line-height: 1.66667vw;
        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; }
        @media (min-width: 1800px) {
          .order__header-item p {
            font-size: 13px;
            line-height: 24px; } }
        @media (max-width: 1024px) {
          .order__header-item p {
            font-size: 3.4375vmin;
            line-height: 6.25vmin;
            display: inline-block; } }
      .order__header-item svg {
        width: 1.11111vw;
        height: 1.11111vw; }
        @media (min-width: 1800px) {
          .order__header-item svg {
            width: 16px;
            height: 16px; } }
        @media (max-width: 1024px) {
          .order__header-item svg {
            width: 5vmin;
            height: 5vmin; } }
      @media (min-width: 1800px) {
        .order__header-item {
          min-width: 168px; } }
      @media (max-width: 1024px) {
        .order__header-item {
          margin-bottom: 3.125vmin; }
          .order__header-item:last-child {
            margin-bottom: 0; } }
    @media (max-width: 1024px) {
      .order__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        position: relative; } }
  .order__btn {
    content: "";
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 0.97222vw;
    height: 0.55556vw;
    background: url(../images/sprites/svg/angle-down-green.svg) no-repeat center center;
    background-size: 0.97222vw;
    border: none;
    padding: 0;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    color: #0050E0; }
    @media (min-width: 1800px) {
      .order__btn {
        width: 14px;
        height: 8px;
        background-size: 14px; } }
    @media (max-width: 1024px) {
      .order__btn {
        width: 12.1875vmin;
        height: 12.1875vmin;
        position: absolute;
        top: -2.1875vmin;
        right: -2.1875vmin;
        background-color: rgba(0, 155, 122, 0.02);
        background-size: 4.375vmin;
        border-radius: 50%; } }
    .order__btn.is-active {
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); }
  .order__num-order {
    font-size: 1.18056vw;
    font-weight: 500;
    margin-bottom: 0.55556vw; }
    @media (min-width: 1800px) {
      .order__num-order {
        font-size: 17px;
        margin-bottom: 8px; } }
    @media (max-width: 1024px) {
      .order__num-order {
        font-size: 4.6875vmin;
        margin-bottom: 1.25vmin; } }
  .order__status {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.04167vw;
    font-weight: 500;
    margin-bottom: 0.625vw; }
    .order__status--success svg {
      color: #009B7A !important; }
    @media (min-width: 1800px) {
      .order__status {
        font-size: 15px;
        margin-bottom: 9px; } }
    @media (max-width: 1024px) {
      .order__status {
        font-size: 4.0625vmin;
        margin-bottom: 1.25vmin; } }
    .order__status svg {
      color: #FF8A00;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .order__status svg {
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .order__status svg {
          margin-right: 3.125vmin; } }
  .order__delivery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.04167vw;
    font-weight: 500;
    margin-bottom: 0.625vw; }
    .order__delivery svg {
      color: #FF8A00;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .order__delivery svg {
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .order__delivery svg {
          margin-right: 3.125vmin; } }
    @media (min-width: 1800px) {
      .order__delivery {
        font-size: 15px;
        margin-bottom: 9px; } }
    @media (max-width: 1024px) {
      .order__delivery {
        font-size: 4.0625vmin;
        margin-bottom: 1.25vmin; } }
  .order__hidden-part {
    display: none; }
  .order__copy, .order__link {
    padding: 0;
    width: 1.52778vw;
    height: 1.52778vw;
    background-color: rgba(0, 80, 224, 0.04);
    border-radius: 50%;
    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;
    border: none;
    color: #0050E0;
    margin-left: 0.34722vw; }
    .order__copy svg, .order__link svg {
      width: 0.69444vw;
      height: 0.69444vw; }
      @media (min-width: 1800px) {
        .order__copy svg, .order__link svg {
          width: 10px;
          height: 10px; } }
      @media (max-width: 1024px) {
        .order__copy svg, .order__link svg {
          width: 3.125vmin;
          height: 3.125vmin; } }
    .order__copy:hover, .order__link:hover {
      background-color: #0050E0;
      color: #fff; }
    @media (min-width: 1800px) {
      .order__copy, .order__link {
        margin-left: 5px;
        width: 22px;
        height: 22px; } }
    @media (max-width: 1024px) {
      .order__copy, .order__link {
        margin-left: 1.5625vmin;
        width: 6.875vmin;
        height: 6.875vmin; } }
  .order__product-list {
    margin-top: 1.59722vw;
    padding-top: 1.38889vw;
    border-top: 1px solid #E5EAEF; }
    @media (min-width: 1800px) {
      .order__product-list {
        margin-top: 23px;
        padding-top: 20px; } }
    @media (max-width: 1024px) {
      .order__product-list {
        margin-top: 6.25vmin;
        padding-top: 0;
        border-top: none; } }
  .order__product {
    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;
    font-size: 1.04167vw;
    margin-bottom: 0.69444vw; }
    .order__product:last-child {
      margin-bottom: 0; }
    @media (max-width: 1024px) {
      .order__product-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    .order__product-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      max-width: 26.38889vw;
      width: 100%; }
      @media (min-width: 1800px) {
        .order__product-wrap {
          max-width: 380px; } }
      @media (max-width: 1024px) {
        .order__product-wrap {
          max-width: 100%;
          -ms-flex-preferred-size: 100%;
              flex-basis: 100%;
          -webkit-box-align: start;
              -ms-flex-align: start;
                  align-items: flex-start; } }
    .order__product-image {
      width: 5.55556vw;
      height: 5.55556vw;
      border-radius: 2.08333vw;
      border: 1px solid #F1F3FA;
      position: relative;
      overflow: hidden;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-right: 1.31944vw;
      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; }
      @media (min-width: 1800px) {
        .order__product-image {
          width: 80px;
          height: 80px;
          border-radius: 30px;
          margin-right: 19px; } }
      @media (max-width: 1024px) {
        .order__product-image {
          width: 21.875vmin;
          height: 21.25vmin;
          -ms-flex-preferred-size: 21.875vmin;
              flex-basis: 21.875vmin;
          -ms-flex-negative: 0;
              flex-shrink: 0;
          border-radius: 6.25vmin;
          margin-right: 5vmin; } }
    .order__product-title {
      font-size: 1.18056vw;
      line-height: 1.94444vw;
      font-weight: 500;
      display: block;
      margin-bottom: 0.55556vw; }
      @media (min-width: 1800px) {
        .order__product-title {
          font-size: 17px;
          line-height: 28px;
          margin-bottom: 8px; } }
      @media (max-width: 1024px) {
        .order__product-title {
          font-size: 4.53125vmin;
          line-height: 6.25vmin;
          margin-bottom: 1.875vmin;
          -ms-flex-preferred-size: 100%;
              flex-basis: 100%; } }
    .order__product-article {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      font-size: 1.04167vw;
      color: #5A6C7D;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .order__product-article svg {
        width: 1.11111vw;
        height: 1.11111vw;
        color: #5A6C7D;
        margin-right: 0.69444vw; }
        @media (min-width: 1800px) {
          .order__product-article svg {
            width: 16px;
            height: 16px;
            margin-right: 10px; } }
        @media (max-width: 1024px) {
          .order__product-article svg {
            width: 4.375vmin;
            height: 4.375vmin;
            margin-right: 1.875vmin; } }
      @media (min-width: 1800px) {
        .order__product-article {
          font-size: 15px; } }
      @media (max-width: 1024px) {
        .order__product-article {
          font-size: 3.4375vmin;
          -ms-flex-preferred-size: 50%;
              flex-basis: 50%;
          max-width: 50%;
          white-space: nowrap; } }
    @media (max-width: 1024px) {
      .order__product-price, .order__product-count, .order__product-total {
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
        max-width: 50%;
        font-size: 4.0625vmin; } }
    @media (max-width: 1024px) {
      .order__product-price, .order__product-count {
        margin-bottom: 1.25vmin; } }
    .order__product-total {
      font-weight: 500; }
    @media (min-width: 1800px) {
      .order__product {
        font-size: 15px;
        margin-bottom: 10px; } }
    @media (max-width: 1024px) {
      .order__product {
        font-size: 4.6875vmin;
        margin-bottom: 3.125vmin;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end; } }
  .order__pagination {
    margin-top: 1.25vw;
    margin-bottom: 2.15278vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (max-width: 1024px) {
      .order__pagination .btn {
        background-color: rgba(0, 80, 224, 0.04); } }
    @media (min-width: 1800px) {
      .order__pagination {
        margin-top: 18px;
        margin-bottom: 31px; } }
    @media (max-width: 1024px) {
      .order__pagination {
        margin-top: 5.625vmin;
        margin-bottom: 8.125vmin; } }
  .order__total-sum {
    font-size: 0.90278vw;
    line-height: 1.66667vw;
    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: 1024px) {
      .order__total-sum div {
        display: none; } }
    .order__total-sum span {
      font-size: 1.52778vw;
      font-weight: 500;
      display: block;
      margin-top: 0.55556vw; }
      @media (min-width: 1800px) {
        .order__total-sum span {
          font-size: 22px;
          margin-top: 8px; } }
      @media (max-width: 1024px) {
        .order__total-sum span {
          font-size: 5.9375vmin;
          margin-top: 2.5vmin; } }
    @media (min-width: 1800px) {
      .order__total-sum {
        font-size: 13px;
        line-height: 24px; } }
    @media (max-width: 1024px) {
      .order__total-sum {
        line-height: 5.625vmin;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        margin-bottom: 4.6875vmin; } }
  .order__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-top: 1px solid #E5EAEF;
    padding-top: 1.45833vw; }
    .order__footer-center {
      max-width: 31.94444vw;
      width: 100%; }
      @media (min-width: 1800px) {
        .order__footer-center {
          max-width: 460px; } }
      @media (max-width: 1024px) {
        .order__footer-center {
          max-width: 100%;
          -webkit-box-ordinal-group: 2;
              -ms-flex-order: 1;
                  order: 1; } }
    .order__footer-txt {
      font-size: 0.90278vw;
      line-height: 1.66667vw; }
      @media (min-width: 1800px) {
        .order__footer-txt {
          font-size: 13px;
          line-height: 24px; } }
      @media (max-width: 1024px) {
        .order__footer-txt {
          font-size: 3.4375vmin;
          line-height: 6.5625vmin; } }
    .order__footer-btn .btn {
      height: 3.81944vw;
      min-width: 12.29167vw; }
      @media (min-width: 1800px) {
        .order__footer-btn .btn {
          height: 55px;
          min-width: 177px; } }
      @media (max-width: 1024px) {
        .order__footer-btn .btn {
          height: 17.1875vmin;
          min-width: 55.3125vmin; } }
    @media (max-width: 1024px) {
      .order__footer-btn {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3; } }
    @media (min-width: 1800px) {
      .order__footer {
        padding-top: 21px; } }
    @media (max-width: 1024px) {
      .order__footer {
        padding-top: 6.5625vmin;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .order__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 0.97222vw; }
    .order__nav a {
      font-size: 1.04167vw;
      font-weight: 500;
      color: #0050E0; }
      @media (min-width: 1800px) {
        .order__nav a {
          font-size: 15px; } }
      @media (max-width: 1024px) {
        .order__nav a {
          font-size: 4.0625vmin; } }
    @media (max-width: 1024px) {
      .order__nav li {
        margin-bottom: 3.125vmin;
        margin-right: 6.875vmin; } }
    @media (min-width: 1800px) {
      .order__nav {
        margin-bottom: 14px; } }
    @media (max-width: 1024px) {
      .order__nav {
        margin-bottom: 1.25vmin;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; } }
  @media (min-width: 1800px) {
    .order {
      border-radius: 20px;
      padding: 26px 30px;
      margin-bottom: 10px; } }
  @media (max-width: 1024px) {
    .order {
      border-radius: 6.25vmin;
      padding: 4.6875vmin 4.375vmin;
      margin-bottom: 3.125vmin; } }

.profile-card {
  background: #F2F5FF;
  border-radius: 1.38889vw;
  padding: 0.97222vw 1.38889vw;
  margin-bottom: 1.80556vw;
  padding-bottom: 0; }
  .profile-card__profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .profile-card__profile-image {
      width: 4.72222vw;
      height: 4.72222vw;
      margin-right: 1.31944vw;
      border-radius: 50%;
      position: relative;
      overflow: hidden;
      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; }
      @media (max-width: 1024px) {
        .profile-card__profile-image {
          width: 21.25vmin;
          height: 21.25vmin;
          margin-right: 5.9375vmin; } }
  .profile-card__title {
    margin-top: 0.90278vw;
    font-size: 1.18056vw;
    font-weight: 500; }
    @media (min-width: 1800px) {
      .profile-card__title {
        margin-top: 13px;
        font-size: 17px; } }
    @media (max-width: 1024px) {
      .profile-card__title {
        margin-top: 4.0625vmin;
        font-size: 5.3125vmin; } }
  .profile-card__edit {
    font-size: 0.90278vw;
    line-height: 2.08333vw;
    color: #0050E0; }
    @media (min-width: 1800px) {
      .profile-card__edit {
        font-size: 13px;
        line-height: 30px; } }
    @media (max-width: 1024px) {
      .profile-card__edit {
        font-size: 4.0625vmin;
        line-height: 9.375vmin; } }
  .profile-card__menu-first-level > a, .profile-card__menu-first-level span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 5.27778vw;
    font-size: 1.18056vw;
    font-weight: 500;
    border-bottom: 1px solid #E2E2EA;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .profile-card__menu-first-level > a:hover, .profile-card__menu-first-level span:hover {
      color: #0050E0; }
    @media (min-width: 1800px) {
      .profile-card__menu-first-level > a, .profile-card__menu-first-level span {
        height: 76px;
        font-size: 17px; } }
    @media (max-width: 1024px) {
      .profile-card__menu-first-level > a, .profile-card__menu-first-level span {
        height: 23.75vmin;
        font-size: 5.3125vmin; } }
  .profile-card__menu-submenu {
    margin-left: -1.38889vw;
    padding-left: 1.38889vw;
    border-radius: 1.38889vw;
    cursor: pointer; }
    .profile-card__menu-submenu span {
      background: url("../images/sprites/svg/angle-down-menu.svg") no-repeat right 0vw center; }
    .profile-card__menu-submenu.is-active {
      padding-bottom: 1.38889vw;
      background-color: #fff;
      margin-right: -1.38889vw;
      border: 1px solid #E2E2EA;
      margin-top: -1px; }
      .profile-card__menu-submenu.is-active span {
        border-bottom: none;
        background: url("../images/sprites/svg/angle-up-menu.svg") no-repeat right 1.38889vw center; }
        @media (min-width: 1800px) {
          .profile-card__menu-submenu.is-active span {
            background: url("../images/sprites/svg/angle-up-menu.svg") no-repeat right 20px center; } }
        @media (max-width: 1024px) {
          .profile-card__menu-submenu.is-active span {
            background: url("../images/sprites/svg/angle-up-menu.svg") no-repeat right 6.25vmin center; } }
      @media (min-width: 1800px) {
        .profile-card__menu-submenu.is-active {
          padding-bottom: 20px;
          margin-right: -20px; } }
      @media (max-width: 1024px) {
        .profile-card__menu-submenu.is-active {
          padding-bottom: 6.25vmin;
          margin-right: -6.25vmin; } }
    @media (min-width: 1800px) {
      .profile-card__menu-submenu {
        margin-left: -20px;
        padding-left: 20px;
        border-radius: 20px; } }
    @media (max-width: 1024px) {
      .profile-card__menu-submenu {
        margin-left: -6.25vmin;
        padding-left: 6.25vmin;
        border-radius: 6.25vmin; } }
  .profile-card__menu-two-level {
    padding-left: 2.08333vw;
    padding-right: 1.38889vw;
    font-size: 1.04167vw;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    display: none; }
    .profile-card__menu-two-level a:hover {
      color: #0050E0; }
    .profile-card__menu-two-level li {
      margin-bottom: 0.83333vw; }
      .profile-card__menu-two-level li:last-child {
        margin-bottom: 0; }
      @media (min-width: 1800px) {
        .profile-card__menu-two-level li {
          margin-bottom: 12px; } }
      @media (max-width: 1024px) {
        .profile-card__menu-two-level li {
          margin-bottom: 3.75vmin; } }
    @media (min-width: 1800px) {
      .profile-card__menu-two-level {
        padding-left: 30px;
        padding-right: 20px;
        font-size: 15px; } }
    @media (max-width: 1024px) {
      .profile-card__menu-two-level {
        padding-left: 9.375vmin;
        padding-right: 6.25vmin;
        font-size: 4.6875vmin; } }
  .profile-card__menu li:last-child a {
    border-bottom: none; }
  .profile-card__menu svg {
    width: 1.38889vw;
    height: 1.38889vw;
    margin-right: 1.04167vw;
    color: #0050E0; }
    @media (min-width: 1800px) {
      .profile-card__menu svg {
        width: 20px;
        height: 20px;
        margin-right: 15px; } }
    @media (max-width: 1024px) {
      .profile-card__menu svg {
        width: 6.25vmin;
        height: 6.25vmin;
        margin-right: 4.6875vmin; } }
  @media (min-width: 1800px) {
    .profile-card {
      border-radius: 20px;
      padding: 20px;
      margin-bottom: 26px; } }
  @media (max-width: 1024px) {
    .profile-card {
      border-radius: 6.25vmin;
      padding: 6.25vmin;
      margin-bottom: 8.125vmin; } }

.manager {
  background: #FFFFFF;
  border-radius: 2.08333vw;
  padding: 1.38889vw; }
  .manager__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.04167vw; }
    @media (min-width: 1800px) {
      .manager__header {
        margin-bottom: 15px; } }
    @media (max-width: 1024px) {
      .manager__header {
        margin-bottom: 4.6875vmin; } }
  .manager__image {
    width: 4.72222vw;
    height: 4.72222vw;
    -ms-flex-preferred-size: 4.72222vw;
        flex-basis: 4.72222vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 1.31944vw; }
    @media (min-width: 1800px) {
      .manager__image {
        width: 68px;
        height: 68px;
        -ms-flex-preferred-size: 68px;
            flex-basis: 68px;
        margin-right: 19px; } }
    @media (max-width: 1024px) {
      .manager__image {
        width: 21.25vmin;
        height: 21.25vmin;
        -ms-flex-preferred-size: 21.25vmin;
            flex-basis: 21.25vmin;
        margin-right: 5.9375vmin; } }
  .manager__name {
    font-size: 1.18056vw;
    font-weight: 500; }
    .manager__name h4 {
      font-size: 0.90278vw;
      line-height: 1.66667vw;
      color: #5A6C7D;
      font-weight: 400;
      margin: 0;
      margin-bottom: 0.20833vw; }
      @media (min-width: 1800px) {
        .manager__name h4 {
          font-size: 13px;
          line-height: 24px;
          margin-bottom: 3px; } }
      @media (max-width: 1024px) {
        .manager__name h4 {
          font-size: 4.0625vmin;
          line-height: 7.5vmin;
          margin-bottom: 0.9375vmin; } }
    @media (min-width: 1800px) {
      .manager__name {
        font-size: 17px; } }
    @media (max-width: 1024px) {
      .manager__name {
        font-size: 5.3125vmin; } }
  .manager__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0.55556vw; }
    .manager__contacts-ico {
      width: 2.77778vw;
      height: 2.77778vw;
      -ms-flex-preferred-size: 2.77778vw;
          flex-basis: 2.77778vw;
      margin-right: 1.11111vw;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      border-radius: 0.69444vw;
      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: #0050E0;
      background-color: rgba(0, 80, 224, 0.04); }
      .manager__contacts-ico svg {
        width: 1.38889vw;
        height: 1.38889vw; }
        @media (min-width: 1800px) {
          .manager__contacts-ico svg {
            width: 20px;
            height: 20px; } }
        @media (max-width: 1024px) {
          .manager__contacts-ico svg {
            width: 6.25vmin;
            height: 6.25vmin; } }
      @media (min-width: 1800px) {
        .manager__contacts-ico {
          width: 40px;
          height: 40px;
          -ms-flex-preferred-size: 40px;
              flex-basis: 40px;
          margin-right: 16px;
          border-radius: 10px; } }
      @media (max-width: 1024px) {
        .manager__contacts-ico {
          width: 12.5vmin;
          height: 12.5vmin;
          -ms-flex-preferred-size: 12.5vmin;
              flex-basis: 12.5vmin;
          margin-right: 5vmin;
          border-radius: 3.125vmin; } }
    .manager__contacts-subtitle {
      font-size: 0.90278vw;
      line-height: 1.52778vw;
      color: #5A6C7D;
      margin-bottom: 0.13889vw; }
      @media (min-width: 1800px) {
        .manager__contacts-subtitle {
          font-size: 13px;
          line-height: 22px;
          margin-bottom: 2px; } }
      @media (max-width: 1024px) {
        .manager__contacts-subtitle {
          font-size: 4.0625vmin;
          line-height: 6.875vmin;
          margin-bottom: 0.625vmin; } }
    .manager__contacts-title {
      font-size: 1.18056vw;
      font-weight: 500; }
      @media (min-width: 1800px) {
        .manager__contacts-title {
          font-size: 17px; } }
      @media (max-width: 1024px) {
        .manager__contacts-title {
          font-size: 5.3125vmin; } }
    @media (min-width: 1800px) {
      .manager__contacts {
        margin-bottom: 8px; } }
    @media (max-width: 1024px) {
      .manager__contacts {
        margin-bottom: 2.5vmin; } }
  .manager .btn {
    min-width: 9.72222vw;
    height: 3.26389vw;
    margin-top: 0.625vw; }
    @media (min-width: 1800px) {
      .manager .btn {
        min-width: 140px;
        height: 47px;
        margin-top: 9px; } }
    @media (max-width: 1024px) {
      .manager .btn {
        min-width: 43.75vmin;
        height: 14.6875vmin;
        margin-top: 2.8125vmin; } }
  @media (min-width: 1800px) {
    .manager {
      border-radius: 30px;
      padding: 20px; } }
  @media (max-width: 1024px) {
    .manager {
      border-radius: 9.375vmin;
      padding: 6.25vmin; } }

.article-main {
  padding-top: 0.83333vw; }
  .article-main__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 6.94444vw;
    margin-bottom: 6.31944vw;
    border-bottom: 1px solid #E5EAEF; }
    @media (min-width: 1800px) {
      .article-main__container {
        padding-bottom: 100px;
        margin-bottom: 91px; } }
    @media (max-width: 1024px) {
      .article-main__container {
        padding-bottom: 10vmin;
        margin-bottom: 0;
        border: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .article-main__text {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding-right: 1.38889vw; }
    @media (min-width: 1800px) {
      .article-main__text {
        padding-right: 20px; } }
    @media (max-width: 1024px) {
      .article-main__text {
        padding-right: 6.25vmin;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }
  .article-main__slider {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%; }
    @media (max-width: 1024px) {
      .article-main__slider {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        max-width: 100%;
        margin-top: 9.375vmin; } }
  .article-main .title-h1 {
    margin-bottom: 1.52778vw; }
    @media (min-width: 1800px) {
      .article-main .title-h1 {
        margin-bottom: 23px; } }
    @media (max-width: 1024px) {
      .article-main .title-h1 {
        margin-bottom: 3.75vmin;
        margin-top: 0; } }
  .article-main__subtitle {
    font-size: 1.45833vw;
    line-height: 2.22222vw;
    color: #5A6C7D;
    margin-bottom: 1.25vw; }
    @media (min-width: 1800px) {
      .article-main__subtitle {
        font-size: 21px;
        line-height: 32px;
        margin-bottom: 18px; } }
    @media (max-width: 1024px) {
      .article-main__subtitle {
        font-size: 4.53125vmin;
        line-height: 7.5vmin;
        margin-bottom: 6.25vmin; } }
  .article-main__tags {
    margin-bottom: 1.52778vw; }
    @media (min-width: 1800px) {
      .article-main__tags {
        margin-bottom: 22px; } }
    @media (max-width: 1024px) {
      .article-main__tags {
        margin-bottom: 4.375vmin; } }
  .article-main__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.66667vw; }
    @media (min-width: 1800px) {
      .article-main__wrap {
        margin-bottom: 24px; } }
    @media (max-width: 1024px) {
      .article-main__wrap {
        margin-bottom: 6.25vmin;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .article-main__time {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.04167vw;
    line-height: 1.66667vw;
    margin-right: 2.08333vw; }
    .article-main__time svg {
      width: 0.83333vw;
      height: 1.25vw;
      margin-right: 0.69444vw;
      color: #0050E0; }
      @media (min-width: 1800px) {
        .article-main__time svg {
          width: 12px;
          height: 18px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .article-main__time svg {
          width: 5vmin;
          height: 6.25vmin;
          margin-right: 3.125vmin; } }
    @media (min-width: 1800px) {
      .article-main__time {
        font-size: 15px;
        line-height: 24px;
        margin-right: 30px; } }
    @media (max-width: 1024px) {
      .article-main__time {
        font-size: 4.0625vmin;
        line-height: 7.5vmin;
        margin-right: 0;
        margin-bottom: 3.125vmin; } }
  .article-main__last-update {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.04167vw;
    line-height: 1.66667vw; }
    .article-main__last-update svg {
      width: 1.38889vw;
      height: 1.11111vw;
      margin-right: 0.69444vw;
      color: #0050E0; }
      @media (min-width: 1800px) {
        .article-main__last-update svg {
          width: 20px;
          height: 16px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .article-main__last-update svg {
          width: 5vmin;
          height: 4.375vmin;
          margin-right: 3.125vmin; } }
    @media (min-width: 1800px) {
      .article-main__last-update {
        font-size: 15px;
        line-height: 24px; } }
    @media (max-width: 1024px) {
      .article-main__last-update {
        font-size: 4.0625vmin;
        line-height: 7.5vmin;
        white-space: nowrap; } }
  .article-main__btn {
    height: 3.81944vw;
    min-width: 8.95833vw;
    padding-left: 1.73611vw;
    padding-right: 1.73611vw; }
    @media (min-width: 1800px) {
      .article-main__btn {
        height: 55px;
        min-width: 129px;
        padding-left: 25px;
        padding-right: 25px; } }
    @media (max-width: 1024px) {
      .article-main__btn {
        height: 15vmin;
        min-width: 34.375vmin;
        padding-left: 7.8125vmin;
        padding-right: 7.8125vmin; } }
  .article-main__check {
    font-size: 1.04167vw;
    line-height: 1.59722vw;
    margin-bottom: 2.08333vw;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .article-main__check:before {
      content: "";
      display: inline-block;
      width: 2.91667vw;
      height: 2.91667vw;
      -ms-flex-preferred-size: 2.91667vw;
          flex-basis: 2.91667vw;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      background: #FFFFFF;
      border: 1px solid #F2F5FF;
      border-radius: 50%;
      background: #fff url(../images/sprites/svg/check-green.svg) no-repeat center center;
      background-size: 1.25vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .article-main__check:before {
          width: 42px;
          height: 42px;
          -ms-flex-preferred-size: 42px;
              flex-basis: 42px;
          background-size: 18px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .article-main__check:before {
          width: 11.25vmin;
          height: 11.25vmin;
          -ms-flex-preferred-size: 11.25vmin;
              flex-basis: 11.25vmin;
          background-size: 5.625vmin;
          margin-right: 3.125vmin; } }
    @media (min-width: 1800px) {
      .article-main__check {
        font-size: 15px;
        line-height: 23px;
        margin-bottom: 30px; } }
    @media (max-width: 1024px) {
      .article-main__check {
        font-size: 4.0625vmin;
        line-height: 6.25vmin;
        margin-bottom: 6.25vmin;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }

.requisites-block {
  padding: 6.25vw 0 6.59722vw;
  font-size: 1.04167vw;
  line-height: 1.80556vw; }
  @media (max-width: 1024px) {
    .requisites-block .title-h2 {
      font-size: 7.65625vmin; } }
  .requisites-block__container {
    background: #FFFFFF;
    border: 1px solid #F2F5FF;
    -webkit-box-shadow: 0px 10px 40px rgba(148, 164, 180, 0.1);
            box-shadow: 0px 10px 40px rgba(148, 164, 180, 0.1);
    border-radius: 2.08333vw;
    padding: 3.125vw 3.47222vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media (min-width: 1800px) {
      .requisites-block__container {
        border-radius: 30px;
        padding: 45px 50px; } }
    @media (max-width: 1024px) {
      .requisites-block__container {
        border-radius: 6.25vmin;
        padding: 6.875vmin 5.625vmin;
        padding-right: 3.125vmin;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .requisites-block h3 {
    font-size: 1.18056vw;
    line-height: 1.94444vw;
    margin-bottom: 1.04167vw;
    margin-top: 0;
    font-weight: 500; }
    @media (min-width: 1800px) {
      .requisites-block h3 {
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 15px; } }
    @media (max-width: 1024px) {
      .requisites-block h3 {
        font-size: 4.53125vmin;
        line-height: 7.5vmin;
        margin-bottom: 1.875vmin; } }
  .requisites-block__class {
    -ms-flex-preferred-size: 58%;
        flex-basis: 58%; }
    @media (max-width: 1024px) {
      .requisites-block__class {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin-bottom: 6.25vmin; } }
  .requisites-block__dir {
    -ms-flex-preferred-size: 42%;
        flex-basis: 42%; }
    @media (max-width: 1024px) {
      .requisites-block__dir {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }
  @media (min-width: 1800px) {
    .requisites-block {
      padding: 90px 0 95px;
      font-size: 15px;
      line-height: 26px; } }
  @media (max-width: 1024px) {
    .requisites-block {
      padding: 12.5vmin 0 12.5vmin;
      font-size: 4.0625vmin;
      line-height: 6.875vmin; } }

.requisites {
  margin-bottom: 1.94444vw;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%; }
  .requisites__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 1;
    margin-bottom: 0.97222vw; }
    .requisites__item:after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 1.04167vw;
      height: 1px;
      z-index: -1;
      background-color: #E5EAEF; }
      @media (min-width: 1800px) {
        .requisites__item:after {
          top: 15px; } }
      @media (max-width: 1024px) {
        .requisites__item:after {
          display: none; } }
    @media (min-width: 1800px) {
      .requisites__item {
        margin-bottom: 14px; } }
    @media (max-width: 1024px) {
      .requisites__item {
        margin-bottom: 4.375vmin;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .requisites__name {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%; }
    .requisites__name span {
      display: inline-block;
      padding-right: 0.69444vw;
      background-color: #fff; }
      @media (min-width: 1800px) {
        .requisites__name span {
          padding-right: 10px; } }
      @media (max-width: 1024px) {
        .requisites__name span {
          padding-right: 0; } }
    @media (max-width: 1024px) {
      .requisites__name {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        font-size: 3.125vmin;
        line-height: 5vmin;
        color: #5A6C7D; } }
  .requisites__value {
    -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
    font-weight: 500; }
    .requisites__value span {
      display: block;
      padding-left: 0.69444vw;
      background-color: #fff; }
      @media (min-width: 1800px) {
        .requisites__value span {
          padding-left: 10px; } }
      @media (max-width: 1024px) {
        .requisites__value span {
          padding-left: 0; } }
    @media (max-width: 1024px) {
      .requisites__value {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        font-size: 4.0625vmin;
        line-height: 5vmin; } }
  @media (min-width: 1800px) {
    .requisites {
      margin-bottom: 28px; } }
  @media (max-width: 1024px) {
    .requisites {
      margin-bottom: 3.125vmin; } }

.quiz {
  border-radius: 2.08333vw;
  background-color: #fff;
  margin-bottom: 1.38889vw;
  padding: 1.80556vw 2.01389vw; }
  @media (min-width: 1800px) {
    .quiz {
      border-radius: 30px;
      margin-bottom: 20px;
      padding: 26px 29px; } }
  @media (max-width: 1024px) {
    .quiz {
      border-radius: 9.375vmin;
      margin-bottom: 6.25vmin;
      padding: 3.75vmin 5.625vmin; } }
  .quiz__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 2.08333vw;
    border-bottom: 1px solid #F1F3FA; }
    @media (min-width: 1800px) {
      .quiz__tabs {
        margin-bottom: 30px; } }
    @media (max-width: 1024px) {
      .quiz__tabs {
        margin-bottom: 9.375vmin;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  .quiz__tab {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding-bottom: 1.25vw;
    font-size: 1.45833vw;
    font-weight: 500;
    color: #5A6C7D;
    position: relative;
    cursor: pointer;
    margin-right: 2.77778vw; }
    .quiz__tab:after {
      content: "";
      position: absolute;
      bottom: -3px;
      left: 0;
      right: 0;
      height: 5px;
      border-radius: 12px;
      background-color: #0050E0;
      visibility: hidden;
      opacity: 0; }
    .quiz__tab.active {
      color: #0050E0; }
      .quiz__tab.active:after {
        visibility: visible;
        opacity: 1; }
    @media (min-width: 1800px) {
      .quiz__tab {
        padding-bottom: 18px;
        font-size: 21px;
        margin-right: 40px; } }
    @media (max-width: 1024px) {
      .quiz__tab {
        padding: 5.625vmin 0;
        padding-top: 3.125vmin;
        font-size: 4.0625vmin;
        margin-right: 0; } }
  .quiz__tab-content {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%; }
  .quiz__tab-item-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 1024px) {
      .quiz__tab-item-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .quiz__step {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: none; }
    .quiz__step.is-active {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    @media (max-width: 1024px) {
      .quiz__step {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .quiz__aside {
    -ms-flex-preferred-size: 22.5vw;
        flex-basis: 22.5vw;
    padding-right: 1.38889vw; }
    @media (min-width: 1800px) {
      .quiz__aside {
        -ms-flex-preferred-size: 324px;
            flex-basis: 324px;
        padding-right: 20px; } }
    @media (max-width: 1024px) {
      .quiz__aside {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        padding-right: 0;
        margin-bottom: 6.25vmin; } }
  .quiz__content {
    -ms-flex-preferred-size: calc(100% -  22.5vw);
        flex-basis: calc(100% -  22.5vw);
    font-size: 1.04167vw;
    line-height: 1.66667vw; }
    .quiz__content h3 {
      font-weight: 500;
      font-size: 1.18056vw;
      margin-top: 0; }
      @media (min-width: 1800px) {
        .quiz__content h3 {
          font-size: 17px; } }
      @media (max-width: 1024px) {
        .quiz__content h3 {
          font-size: 5.3125vmin; } }
    .quiz__content ul li {
      padding-left: 1.38889vw;
      position: relative; }
      .quiz__content ul li:before {
        content: "";
        position: absolute;
        left: 0.48611vw;
        top: 0.76389vw;
        width: 0.27778vw;
        height: 0.27778vw;
        border-radius: 50%;
        background-color: #5A6C7D; }
        @media (min-width: 1800px) {
          .quiz__content ul li:before {
            top: 11px;
            left: 7px;
            width: 4px;
            height: 4px; } }
        @media (max-width: 1024px) {
          .quiz__content ul li:before {
            top: 2.8125vmin;
            left: 2.5vmin;
            width: 1.25vmin;
            height: 1.25vmin; } }
      @media (min-width: 1800px) {
        .quiz__content ul li {
          padding-left: 20px; } }
      @media (max-width: 1024px) {
        .quiz__content ul li {
          padding-left: 6.25vmin; } }
    @media (min-width: 1800px) {
      .quiz__content {
        -ms-flex-preferred-size: calc(100% -  324px);
            flex-basis: calc(100% -  324px);
        font-size: 15px;
        line-height: 24px; } }
    @media (max-width: 1024px) {
      .quiz__content {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        font-size: 4.0625vmin;
        line-height: 6.40625vmin; } }
  .quiz__back {
    font-size: 1.04167vw;
    margin-bottom: 2.08333vw;
    padding: 0;
    background-color: transparent;
    border: none;
    color: #0050E0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .quiz__back svg {
      width: 0.55556vw;
      height: 1.38889vw;
      margin-right: 1.11111vw; }
      @media (min-width: 1800px) {
        .quiz__back svg {
          width: 8px;
          height: 20px;
          margin-right: 16px; } }
      @media (max-width: 1024px) {
        .quiz__back svg {
          width: 2.5vmin;
          height: 6.25vmin;
          margin-right: 5vmin; } }
    @media (min-width: 1800px) {
      .quiz__back {
        font-size: 15px;
        margin-bottom: 30px; } }
    @media (max-width: 1024px) {
      .quiz__back {
        font-size: 4.6875vmin;
        margin-bottom: 9.375vmin; } }
  .quiz__product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .quiz__product-image {
      position: relative;
      overflow: hidden;
      background: #FFFFFF;
      border-radius: 2.08333vw;
      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;
      border: 1px solid #F1F3FA;
      width: 13.19444vw;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-right: 1.73611vw; }
      @media (min-width: 1800px) {
        .quiz__product-image {
          border-radius: 30px;
          width: 190px;
          margin-right: 25px; } }
      @media (max-width: 1024px) {
        .quiz__product-image {
          border-radius: 9.375vmin;
          width: 100%;
          max-width: 51.25vmin;
          margin-right: 0;
          margin-bottom: 6.25vmin; } }
    .quiz__product-info {
      color: #5A6C7D; }
    @media (max-width: 1024px) {
      .quiz__product {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .quiz__footer {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    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: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 1024px) {
      .quiz__footer {
        margin-top: 9.375vmin; } }
  .quiz__btns .btn {
    height: 3.75vw;
    padding-left: 2.08333vw;
    padding-right: 2.08333vw;
    margin-left: 0.69444vw;
    margin-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .quiz__btns .btn {
        height: 54px;
        padding-left: 30px;
        padding-right: 30px;
        margin-left: 10px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .quiz__btns .btn {
        height: 16.875vmin;
        padding-left: 9.375vmin;
        padding-right: 9.375vmin;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 3.125vmin; } }
  @media (max-width: 1024px) {
    .quiz__btns {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .quiz__number-title {
    font-size: 1.04167vw;
    margin-bottom: 1.38889vw;
    font-weight: 500; }
    @media (min-width: 1800px) {
      .quiz__number-title {
        font-size: 15px;
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .quiz__number-title {
        font-size: 4.6875vmin;
        margin-bottom: 6.25vmin; } }
  .quiz .number {
    -webkit-box-shadow: 0px 10px 40px rgba(0, 155, 122, 0.1);
            box-shadow: 0px 10px 40px rgba(0, 155, 122, 0.1); }
  @media (max-width: 1024px) {
    .quiz .dne {
      display: none; } }

.dne {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 5.27778vw;
  border-radius: 2.5vw;
  background-color: #F1F3FA;
  border: 1px solid #F1F3FA;
  font-size: 1.45833vw;
  font-weight: 500;
  margin: 1.45833vw 0 2.22222vw;
  -webkit-box-shadow: 0px 10px 40px rgba(0, 155, 122, 0.1);
          box-shadow: 0px 10px 40px rgba(0, 155, 122, 0.1); }
  .dne__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 5.27778vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-transform: uppercase;
    padding: 0 1.73611vw 0 2.08333vw;
    color: #5A6C7D; }
    @media (min-width: 1800px) {
      .dne__title {
        height: 76px;
        padding: 0 25px 0 30px; } }
    @media (max-width: 1024px) {
      .dne__title {
        height: 23.75vmin;
        padding: 0 7.8125vmin 0 9.375vmin; } }
  .dne__types {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 5.27778vw;
    border: 0.76389vw solid #fff;
    border-radius: 2.5vw; }
    @media (min-width: 1800px) {
      .dne__types {
        height: 76px;
        border: 11px solid #fff;
        border-radius: 36px; } }
    @media (max-width: 1024px) {
      .dne__types {
        height: 23.75vmin;
        border: 3.4375vmin solid #fff;
        border-radius: 11.25vmin; } }
  .dne__type {
    min-width: 4.30556vw;
    height: 100%;
    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;
    color: #fff;
    cursor: pointer;
    padding: 0 1.73611vw;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out; }
    .dne__type:first-child {
      border-radius: 2.5vw 0 0 2.5vw; }
      @media (min-width: 1800px) {
        .dne__type:first-child {
          border-radius: 36px 0 0 36px; } }
      @media (max-width: 1024px) {
        .dne__type:first-child {
          border-radius: 11.25vmin 0 0 11.25vmin; } }
    .dne__type:last-child {
      border-radius: 0 2.5vw 2.5vw 0; }
      @media (min-width: 1800px) {
        .dne__type:last-child {
          border-radius: 0 36px 36px 0; } }
      @media (max-width: 1024px) {
        .dne__type:last-child {
          border-radius: 0 11.25vmin 11.25vmin 0; } }
    .dne__type--red {
      background-color: #FF564E; }
      .dne__type--red:hover {
        background-color: #ff251b; }
    .dne__type--orange {
      background-color: #FF8A00; }
      .dne__type--orange:hover {
        background-color: #cc6e00; }
    .dne__type--green-light {
      background-color: #96BC00; }
      .dne__type--green-light:hover {
        background-color: #6d8900; }
    .dne__type--green {
      background-color: #28BC00; }
      .dne__type--green:hover {
        background-color: #1d8900; }
    .dne__type--blue {
      background-color: #649DFF; }
      .dne__type--blue:hover {
        background-color: #317dff; }
    .dne__type--indigo-light {
      background-color: #005BFF; }
      .dne__type--indigo-light:hover {
        background-color: #0049cc; }
    .dne__type--indigo {
      background-color: #003FB1; }
      .dne__type--indigo:hover {
        background-color: #002d7e; }
    @media (min-width: 1800px) {
      .dne__type {
        min-width: 62px;
        padding: 0 25px; } }
    @media (max-width: 1024px) {
      .dne__type {
        min-width: 19.375vmin;
        padding: 0 7.8125vmin; } }
  @media (min-width: 1800px) {
    .dne {
      height: 76px;
      border-radius: 36px;
      font-size: 21px;
      margin: 21px 0 32px; } }
  @media (max-width: 1024px) {
    .dne {
      height: 23.75vmin;
      border-radius: 11.25vmin;
      font-size: 6.5625vmin;
      margin: 6.5625vmin 0 10vmin; } }

[aria-label][data-balloon-pos]:after {
  background-color: #343B4C;
  font-size: 0.97222vw;
  border-radius: 1.04167vw;
  padding: 1.04167vw;
  text-align: center; }
  @media (min-width: 1800px) {
    [aria-label][data-balloon-pos]:after {
      font-size: 14px;
      border-radius: 15px;
      padding: 15px; } }

.quiz-checks .radio {
  margin-bottom: 0.69444vw;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; }
  .quiz-checks .radio input:checked + .radio__text {
    color: #fff;
    padding-left: 3.75vw; }
    @media (min-width: 1800px) {
      .quiz-checks .radio input:checked + .radio__text {
        padding-left: 54px; } }
    @media (max-width: 1024px) {
      .quiz-checks .radio input:checked + .radio__text {
        padding-left: 13.75vmin; } }
  .quiz-checks .radio input:checked + .radio__text:before {
    background-color: #0050E0; }
  .quiz-checks .radio input:checked + .radio__text:after {
    opacity: 1; }
  .quiz-checks .radio__text {
    z-index: 1;
    font-size: 1.04167vw;
    font-weight: 500;
    color: #0050E0;
    padding: 0.90278vw 1.66667vw; }
    .quiz-checks .radio__text:before {
      width: auto;
      height: auto;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 2.5vw;
      z-index: -1;
      background-color: rgba(0, 80, 224, 0.02); }
      @media (min-width: 1800px) {
        .quiz-checks .radio__text:before {
          border-radius: 36px; } }
      @media (max-width: 1024px) {
        .quiz-checks .radio__text:before {
          border-radius: 11.25vmin; } }
    .quiz-checks .radio__text:after {
      width: 1.38889vw;
      height: 1.38889vw;
      top: 50%;
      left: 1.66667vw;
      -webkit-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
              transform: translate(0, -50%);
      border: none;
      background: #fff url(../images/sprites/svg/check-green2.svg) no-repeat center center; }
      @media (min-width: 1800px) {
        .quiz-checks .radio__text:after {
          width: 20px;
          height: 20px;
          left: 24px; } }
      @media (max-width: 1024px) {
        .quiz-checks .radio__text:after {
          width: 5vmin;
          height: 5vmin;
          left: 6.25vmin;
          background-size: 3.125vmin; } }
    @media (min-width: 1800px) {
      .quiz-checks .radio__text {
        font-size: 15px;
        padding: 13px 24px; } }
    @media (max-width: 1024px) {
      .quiz-checks .radio__text {
        font-size: 3.90625vmin;
        padding: 4.0625vmin 7.5vmin; } }
  @media (min-width: 1800px) {
    .quiz-checks .radio {
      margin-bottom: 10px; } }
  @media (max-width: 1024px) {
    .quiz-checks .radio {
      margin-bottom: 1.875vmin; } }

@media (max-width: 1024px) {
  .quiz-checks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; } }

.catalog-menu {
  background-color: #F7F9FF;
  padding-top: 3.47222vw;
  padding-bottom: 3.47222vw;
  display: none;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out; }
  .catalog-menu.is-active {
    display: block; }
    .catalog-menu.is-active .catalog-menu__container {
      visibility: visible;
      opacity: 1;
      -webkit-transform: translateX(0);
          -ms-transform: translateX(0);
              transform: translateX(0); }
  .catalog-menu__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out; }
  .catalog-menu__tabs {
    -ms-flex-preferred-size: 20.48611vw;
        flex-basis: 20.48611vw;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    @media (min-width: 1800px) {
      .catalog-menu__tabs {
        -ms-flex-preferred-size: 295px;
            flex-basis: 295px; } }
    @media (max-width: 1024px) {
      .catalog-menu__tabs {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }
  .catalog-menu__tab {
    margin-bottom: 0.69444vw; }
    .catalog-menu__tab span {
      font-size: 1.04167vw;
      line-height: 1.52778vw;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      border-radius: 0.55556vw;
      background-color: #fff;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 0.69444vw 1.66667vw;
      color: #0050E0;
      font-weight: 500;
      -webkit-transition: all .3s ease-out;
      -o-transition: all .3s ease-out;
      transition: all .3s ease-out;
      cursor: pointer; }
      .catalog-menu__tab span:hover {
        background-color: #0050E0;
        color: #fff; }
      @media (min-width: 1800px) {
        .catalog-menu__tab span {
          font-size: 15px;
          line-height: 22px;
          border-radius: 8px;
          padding: 10px 24px; } }
      @media (max-width: 1024px) {
        .catalog-menu__tab span {
          font-size: 4.6875vmin;
          line-height: 6.875vmin;
          border-radius: 2.5vmin;
          padding: 3.125vmin 7.5vmin; } }
    .catalog-menu__tab.is-active span {
      background-color: #0050E0;
      color: #fff; }
    @media (min-width: 1800px) {
      .catalog-menu__tab {
        margin-bottom: 10px; } }
    @media (max-width: 1024px) {
      .catalog-menu__tab {
        margin-bottom: 3.125vmin; } }
  .catalog-menu__tabs-container {
    padding-left: 4.65278vw;
    -ms-flex-preferred-size: calc(100% - 20.48611vw);
        flex-basis: calc(100% - 20.48611vw); }
    @media (min-width: 1800px) {
      .catalog-menu__tabs-container {
        padding-left: 67px;
        -ms-flex-preferred-size: calc(100% - 295px);
            flex-basis: calc(100% - 295px); } }
    @media (max-width: 1024px) {
      .catalog-menu__tabs-container {
        padding-left: 0;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }
  .catalog-menu__tab-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw; }
    @media (min-width: 1800px) {
      .catalog-menu__tab-content {
        margin-left: -10px;
        margin-right: -10px; } }
    @media (max-width: 1024px) {
      .catalog-menu__tab-content {
        margin-left: 0;
        margin-right: 0; } }
  .catalog-menu__item {
    -ms-flex-preferred-size: calc(33.33% - 1.38889vw);
        flex-basis: calc(33.33% - 1.38889vw);
    margin-left: 0.69444vw;
    margin-right: 0.69444vw;
    margin-bottom: 1.38889vw;
    border-radius: 2.08333vw;
    background: #FFFFFF;
    padding: 1.73611vw 2.01389vw;
    padding-right: 1.25vw; }
    .catalog-menu__item-title {
      font-size: 1.18056vw;
      line-height: 1.94444vw;
      font-weight: 500;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .catalog-menu__item-title:after {
        content: "";
        width: 2.5vw;
        height: 2.5vw;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        background: rgba(0, 80, 224, 0.04) url(../images/sprites/svg/angle-right.svg) no-repeat center center;
        background-size: 0.48611vw;
        border-radius: 50%; }
        @media (min-width: 1800px) {
          .catalog-menu__item-title:after {
            width: 36px;
            height: 36px;
            background-size: 7px; } }
        @media (max-width: 1024px) {
          .catalog-menu__item-title:after {
            width: 11.25vmin;
            height: 11.25vmin;
            background-size: 2.1875vmin; } }
      @media (min-width: 1800px) {
        .catalog-menu__item-title {
          font-size: 17px;
          line-height: 28px; } }
      @media (max-width: 1024px) {
        .catalog-menu__item-title {
          font-size: 5.3125vmin;
          line-height: 8.75vmin; } }
    .catalog-menu__item-intro {
      font-size: 0.90278vw;
      line-height: 1.52778vw; }
      @media (min-width: 1800px) {
        .catalog-menu__item-intro {
          font-size: 13px;
          line-height: 22px; } }
      @media (max-width: 1024px) {
        .catalog-menu__item-intro {
          font-size: 4.0625vmin;
          line-height: 6.875vmin; } }
    @media (min-width: 1800px) {
      .catalog-menu__item {
        -ms-flex-preferred-size: calc(33.33% - 20px);
            flex-basis: calc(33.33% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 20px;
        border-radius: 30px;
        padding: 25px 29px;
        padding-right: 18px; } }
    @media (max-width: 1024px) {
      .catalog-menu__item {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 6.25vmin;
        border-radius: 9.375vmin;
        padding: 7.8125vmin 9.0625vmin;
        padding-right: 5.625vmin; } }
  @media (min-width: 1800px) {
    .catalog-menu {
      padding-top: 50px;
      padding-bottom: 50px; } }
  @media (max-width: 1024px) {
    .catalog-menu {
      padding-top: 15.625vmin;
      padding-bottom: 15.625vmin; } }

.search {
  width: 25.69444vw;
  height: 2.84722vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative; }
  .search ::-webkit-input-placeholder {
    color: #5A6C7D; }
  .search ::-moz-placeholder {
    color: #5A6C7D; }
  .search :-ms-input-placeholder {
    color: #5A6C7D; }
  .search ::-ms-input-placeholder {
    color: #5A6C7D; }
  .search ::placeholder {
    color: #5A6C7D; }
  .search__input {
    width: 100%;
    height: 2.84722vw;
    border-radius: 0.69444vw;
    text-indent: 1.04167vw;
    border: 1px solid #0050E0;
    background-color: #fff;
    font-size: 1.04167vw; }
    @media (min-width: 1800px) {
      .search__input {
        height: 41px;
        border-radius: 10px;
        text-indent: 15px;
        font-size: 15px; } }
    @media (max-width: 1024px) {
      .search__input {
        height: 12.8125vmin;
        border-radius: 3.125vmin;
        text-indent: 4.6875vmin;
        font-size: 4.6875vmin; } }
  .search__btn {
    width: 3.61111vw;
    height: 2.84722vw;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0.69444vw;
    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;
    background-color: #0050E0;
    border: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none; }
    .search__btn svg {
      width: 0.97222vw;
      height: 1.04167vw;
      color: #fff; }
      @media (min-width: 1800px) {
        .search__btn svg {
          width: 14px;
          height: 15px; } }
      @media (max-width: 1024px) {
        .search__btn svg {
          width: 4.375vmin;
          height: 4.6875vmin; } }
    .search__btn:hover {
      background-color: #0047c7; }
    @media (min-width: 1800px) {
      .search__btn {
        width: 52px;
        height: 41px;
        border-radius: 10px; } }
    @media (max-width: 1024px) {
      .search__btn {
        width: 16.25vmin;
        height: 12.8125vmin;
        border-radius: 3.125vmin; } }
  @media (min-width: 1800px) {
    .search {
      width: 370px;
      height: 41px; } }
  @media (max-width: 1024px) {
    .search {
      width: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
      margin-bottom: 6.25vmin; } }

.search-hints {
  position: absolute;
  left: 0;
  top: 50%;
  background-color: #fff;
  width: 53.47222vw;
  padding: 1.66667vw 1.25vw;
  padding-top: 3.19444vw;
  z-index: 1;
  border-radius: 0 0 0.69444vw 0.69444vw;
  -webkit-box-shadow: 0px 10px 40px rgba(0, 155, 122, 0.1);
          box-shadow: 0px 10px 40px rgba(0, 155, 122, 0.1);
  display: none; }
  .search-hints__title {
    font-weight: 500;
    font-size: 1.18056vw;
    margin-bottom: 0.55556vw; }
    @media (min-width: 1800px) {
      .search-hints__title {
        font-size: 17px;
        margin-bottom: 8px; } }
  .search-hints__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.04167vw 0;
    position: relative; }
    .search-hints__item:last-child {
      padding-bottom: 0; }
      .search-hints__item:last-child:after {
        display: none; }
    .search-hints__item:after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      left: 1.52778vw;
      height: 1px;
      background-color: #E5EAEF; }
      @media (min-width: 1800px) {
        .search-hints__item:after {
          left: 22px; } }
    .search-hints__item svg {
      width: 1.11111vw;
      height: 1.11111vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .search-hints__item svg {
          width: 16px;
          height: 16px;
          margin-right: 10px; } }
    .search-hints__item:hover a, .search-hints__item:hover svg {
      color: #0050E0; }
    @media (min-width: 1800px) {
      .search-hints__item {
        padding: 15px 0; } }
  @media (min-width: 1800px) {
    .search-hints {
      width: 770px;
      padding: 24px 18px;
      padding-top: 46px;
      z-index: 1;
      border-radius: 0 0 10px 10px;
      -webkit-box-shadow: 0px 10px 40px rgba(0, 155, 122, 0.1);
              box-shadow: 0px 10px 40px rgba(0, 155, 122, 0.1); } }

.search.is-active .search__btn {
  margin-right: -27.77778vw;
  z-index: 3; }
  @media (min-width: 1800px) {
    .search.is-active .search__btn {
      margin-right: -400px; } }

.search.is-active .search__input {
  position: absolute;
  left: 0;
  width: 53.47222vw;
  z-index: 2; }
  @media (min-width: 1800px) {
    .search.is-active .search__input {
      width: 770px; } }

@media (max-width: 1024px) {
  .brands__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;
    margin-bottom: 6.25vmin; }
    .brands__title .title-h2 {
      margin-bottom: 0; } }

.brands--page .container {
  padding-bottom: 6.94444vw;
  border-bottom: 1px solid #E5EAEF; }
  @media (min-width: 1800px) {
    .brands--page .container {
      padding-bottom: 100px; } }

.brands--page .brands__sort {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 1.38889vw; }
  @media (min-width: 1800px) {
    .brands--page .brands__sort {
      margin-bottom: 20px; } }

.brands--page .brands__tags {
  margin-bottom: 0; }
  @media (min-width: 1025px) {
    .brands--page .brands__tags {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important; } }
  @media (max-width: 1024px) {
    .brands--page .brands__tags {
      max-width: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      margin-bottom: 12.5vmin;
      background-color: #fff;
      padding: 6.25vmin;
      border-radius: 6.25vmin;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      display: none; } }
  @media (max-width: 1024px) {
    .brands--page .brands__tags .tags__item {
      display: block;
      width: 100%;
      height: auto;
      padding-left: 0;
      margin-bottom: 6.25vmin; }
      .brands--page .brands__tags .tags__item:last-child {
        margin-bottom: 0; } }

.brands--page .brands__wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.brands--page .brand {
  -ms-flex-preferred-size: calc(33.33% - 1.38889vw);
      flex-basis: calc(33.33% - 1.38889vw);
  margin-bottom: 1.38889vw; }
  @media (max-width: 1024px) {
    .brands--page .brand__header {
      margin-bottom: 0;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }
  @media (max-width: 1024px) {
    .brands--page .brand__cat-list {
      display: none; } }
  @media (max-width: 1024px) {
    .brands--page .brand__document {
      display: none; } }
  @media (max-width: 1024px) {
    .brands--page .brand .btn {
      display: none; } }
  @media (min-width: 1800px) {
    .brands--page .brand {
      -ms-flex-preferred-size: calc(33.33% - 20px);
          flex-basis: calc(33.33% - 20px);
      margin-bottom: 20px; } }
  @media (max-width: 1024px) {
    .brands--page .brand {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      margin-bottom: 20px; } }

@media (max-width: 1024px) {
  .brands--home-page {
    margin-top: 0vmin;
    padding-top: 10.625vmin;
    border-top: 1px solid #E5EAEF; } }

.brands--catalog-page .container {
  margin-top: 5.55556vw;
  padding-top: 6.25vw;
  padding-bottom: 6.94444vw;
  border-top: 1px solid #E5EAEF;
  border-bottom: 1px solid #E5EAEF; }
  @media (min-width: 1800px) {
    .brands--catalog-page .container {
      margin-top: 80px;
      padding-top: 90px;
      padding-bottom: 100px; } }
  @media (max-width: 1024px) {
    .brands--catalog-page .container {
      margin-top: 9.375vmin;
      padding-top: 9.375vmin;
      padding-bottom: 0;
      border-bottom: none; } }

@media (max-width: 1024px) {
  .brands--catalog-page .brands__sort {
    display: none; } }

.brands__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;
  margin-bottom: 2.77778vw; }
  .brands__title .title-h2 {
    margin-bottom: 0; }
  @media (min-width: 1800px) {
    .brands__title {
      margin-bottom: 40px; } }
  @media (max-width: 1024px) {
    .brands__title {
      margin-bottom: 6.25vmin; } }

.brands__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -0.69444vw;
  margin-right: -0.69444vw; }
  @media (min-width: 1800px) {
    .brands__wrapper {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1024px) {
    .brands__wrapper {
      margin-left: 0;
      margin-right: 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.brands__sort {
  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;
  margin-bottom: 1.38889vw; }
  .brands__sort-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .brands__sort-left .nativejs-select {
      margin-right: 0.69444vw; }
      .brands__sort-left .nativejs-select_active .nativejs-select__placeholder {
        border-radius: 1.38889vw 1.38889vw 0 0; }
        @media (min-width: 1800px) {
          .brands__sort-left .nativejs-select_active .nativejs-select__placeholder {
            border-radius: 20px 20px 0 0; } }
      .brands__sort-left .nativejs-select__placeholder {
        padding-left: 3.47222vw;
        background: #fff url("../images/sprites/svg/sort.svg") no-repeat left 1.52778vw center;
        background-size: 1.25vw; }
        @media (min-width: 1800px) {
          .brands__sort-left .nativejs-select__placeholder {
            background: #fff url("../images/sprites/svg/sort.svg") no-repeat left 22px center;
            padding-left: 50px;
            background-size: 18px; } }
        @media (max-width: 1024px) {
          .brands__sort-left .nativejs-select__placeholder {
            background: #fff url("../images/sprites/svg/sort.svg") no-repeat left 6.875vmin center;
            padding-left: 15.625vmin;
            background-size: 5.625vmin; } }
      @media (min-width: 1800px) {
        .brands__sort-left .nativejs-select {
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .brands__sort-left .nativejs-select {
          margin-right: 3.125vmin; } }
  .brands__sort-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .brands__sort-right .nativejs-select {
      margin-left: 0.69444vw; }
      .brands__sort-right .nativejs-select_active .nativejs-select__placeholder {
        border-radius: 1.38889vw 1.38889vw 0 0; }
        @media (min-width: 1800px) {
          .brands__sort-right .nativejs-select_active .nativejs-select__placeholder {
            border-radius: 20px 20px 0 0; } }
      .brands__sort-right .nativejs-select__placeholder {
        padding-left: 2.77778vw;
        background: #fff url("../images/sprites/svg/grid.svg") no-repeat left 1.11111vw center;
        background-size: 1.25vw; }
        @media (min-width: 1800px) {
          .brands__sort-right .nativejs-select__placeholder {
            background: #fff url("../images/sprites/svg/grid.svg") no-repeat left 16px center;
            padding-left: 40px;
            background-size: 18px; } }
        @media (max-width: 1024px) {
          .brands__sort-right .nativejs-select__placeholder {
            background: #fff url("../images/sprites/svg/grid.svg") no-repeat left 5vmin center;
            padding-left: 12.5vmin;
            background-size: 5.625vmin; } }
      @media (min-width: 1800px) {
        .brands__sort-right .nativejs-select {
          margin-left: 10px; } }
      @media (max-width: 1024px) {
        .brands__sort-right .nativejs-select {
          margin-left: 3.125vmin; } }
  @media (min-width: 1800px) {
    .brands__sort {
      margin-bottom: 20px; } }
  @media (max-width: 1024px) {
    .brands__sort {
      margin-bottom: 6.25vmin; } }

.brands__tags {
  margin-bottom: 2.77778vw; }
  @media (min-width: 1800px) {
    .brands__tags {
      margin-bottom: 40px; } }
  @media (max-width: 1024px) {
    .brands__tags {
      margin-bottom: 12.5vmin; } }

.brands__pagination {
  margin-top: 1.38889vw; }
  @media (min-width: 1800px) {
    .brands__pagination {
      margin-top: 20px; } }
  @media (max-width: 1024px) {
    .brands__pagination {
      margin-top: 6.25vmin; } }

.brand {
  border-radius: 1.38889vw;
  padding: 1.38889vw;
  background-color: #fff;
  border: 1px solid #F2F5FF;
  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;
  margin-left: 0.69444vw;
  margin-right: 0.69444vw; }
  .brand__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.04167vw; }
    @media (min-width: 1800px) {
      .brand__header {
        margin-bottom: 15px; } }
    @media (max-width: 1024px) {
      .brand__header {
        margin-bottom: 4.6875vmin; } }
  .brand__logo {
    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;
    width: 7.77778vw;
    height: 5vw;
    border-radius: 0.69444vw;
    margin-right: 1.45833vw;
    position: relative;
    overflow: hidden; }
    @media (min-width: 1800px) {
      .brand__logo {
        width: 112px;
        height: 72px;
        border-radius: 10px;
        margin-right: 21px; } }
    @media (max-width: 1024px) {
      .brand__logo {
        width: 40.625vmin;
        height: 18.75vmin;
        border-radius: 3.125vmin;
        margin-right: 4.375vmin; } }
  .brand__name {
    font-size: 1.18056vw;
    line-height: 1.52778vw;
    font-weight: 500;
    margin-bottom: 0.41667vw; }
    @media (min-width: 1800px) {
      .brand__name {
        font-size: 17px;
        line-height: 22px;
        margin-bottom: 6px; } }
    @media (max-width: 1024px) {
      .brand__name {
        font-size: 4.53125vmin;
        line-height: 6.875vmin;
        margin-bottom: 1.25vmin; } }
  .brand__intro {
    font-size: 0.90278vw;
    line-height: 1.38889vw;
    color: #5A6C7D; }
    @media (min-width: 1800px) {
      .brand__intro {
        font-size: 13px;
        line-height: 20px; } }
    @media (max-width: 1024px) {
      .brand__intro {
        font-size: 3.4375vmin;
        line-height: 5.625vmin; } }
  @media (max-width: 1024px) {
    .brand__cat-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  .brand__cat {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #FF8A00;
    background-color: #F2F5FF;
    height: 2.01389vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0.69444vw;
    padding-right: 0.69444vw;
    border-radius: 0.34722vw;
    margin-right: 0.69444vw;
    margin-bottom: 0.69444vw;
    font-size: 1.04167vw; }
    .brand__cat:hover {
      background-color: #0050E0;
      color: #fff; }
    @media (min-width: 1800px) {
      .brand__cat {
        height: 29px;
        padding-left: 10px;
        padding-right: 10px;
        border-radius: 5px;
        margin-right: 10px;
        margin-bottom: 10px;
        font-size: 15px; } }
    @media (max-width: 1024px) {
      .brand__cat {
        height: 7.5vmin;
        padding-left: 2.5vmin;
        padding-right: 2.5vmin;
        border-radius: 1.5625vmin;
        margin-right: 2.5vmin;
        margin-bottom: 2.5vmin;
        font-size: 4.0625vmin; } }
  .brand__documents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .brand__document {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-bottom: 1.25vw;
    margin-top: 0.69444vw;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%; }
    .brand__document-title {
      font-size: 1.04167vw;
      margin-bottom: 0.20833vw; }
      .brand__document-title a:hover {
        color: #0050E0; }
      @media (min-width: 1800px) {
        .brand__document-title {
          font-size: 15px;
          margin-bottom: 3px; } }
      @media (max-width: 1024px) {
        .brand__document-title {
          font-size: 4.0625vmin;
          margin-bottom: 0.9375vmin; } }
    .brand__document-size {
      font-size: 0.76389vw;
      color: #5A6C7D; }
      @media (min-width: 1800px) {
        .brand__document-size {
          font-size: 11px; } }
      @media (max-width: 1024px) {
        .brand__document-size {
          font-size: 2.96875vmin; } }
    .brand__document svg {
      width: 1.25vw;
      height: 1.25vw;
      -ms-flex-preferred-size: 1.25vw;
          flex-basis: 1.25vw;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-right: 0.41667vw;
      color: #FF8A00; }
      @media (min-width: 1800px) {
        .brand__document svg {
          width: 18px;
          height: 18px;
          -ms-flex-preferred-size: 18px;
              flex-basis: 18px;
          margin-right: 6px; } }
      @media (max-width: 1024px) {
        .brand__document svg {
          width: 5vmin;
          height: 5vmin;
          -ms-flex-preferred-size: 5vmin;
              flex-basis: 5vmin;
          margin-right: 1.25vmin; } }
    @media (min-width: 1800px) {
      .brand__document {
        margin-bottom: 18px;
        margin-top: 10px; } }
    @media (max-width: 1024px) {
      .brand__document {
        margin-bottom: 3.75vmin;
        margin-top: 3.125vmin; } }
  .brand .btn {
    background-color: #F2F5FF;
    min-width: 10vw;
    height: 3.26389vw;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    .brand .btn:hover {
      background-color: #0050E0;
      color: #fff; }
    @media (min-width: 1800px) {
      .brand .btn {
        min-width: 144px;
        height: 47px; } }
    @media (max-width: 1024px) {
      .brand .btn {
        min-width: 38.125vmin;
        height: 13.125vmin;
        margin-top: 1.25vmin; } }
  @media (min-width: 1800px) {
    .brand {
      border-radius: 20px;
      padding: 20px;
      margin-left: 10px;
      margin-right: 10px; } }
  @media (max-width: 1024px) {
    .brand {
      border-radius: 6.25vmin;
      padding: 5vmin;
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 3.125vmin; } }

#menu {
  margin-top: 24.375vmin; }

.mm-slideout {
  z-index: 999; }

.mm-menu_offcanvas {
  max-width: none;
  width: 100%; }

.mm-page__blocker {
  display: none !important; }

.mm-panels {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 6.25vmin !important; }

.mm-panel {
  left: 6.25vmin !important;
  right: 6.25vmin !important;
  bottom: 6.25vmin !important;
  top: 6.25vmin !important;
  border-radius: 3.125vmin;
  background-color: transparent;
  overflow: hidden; }

.mm-menu {
  color: #343B4C;
  z-index: 999;
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
  background-color: transparent; }

.mm-navbar {
  font-size: 5vmin;
  font-weight: 500;
  height: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 18.75vmin;
  background-color: #F2F2F5; }
  .mm-navbar .mm-navbar__title {
    display: block;
    padding: 9.375vmin;
    padding-left: 1.5625vmin;
    color: #343B4C;
    text-align: left;
    font-size: 3.75vmin; }
  .mm-navbar .mm-navbar__btn {
    background: url(../images/sprites/svg/arrow-left-green.svg) no-repeat center center;
    top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%); }
    .mm-navbar .mm-navbar__btn:before {
      display: none; }

li.first-level {
  font-size: 4.0625vmin;
  font-weight: 500;
  background-color: #F2F2F5;
  position: relative; }

.mm-listitem {
  background-color: #fff; }
  .mm-listitem:after {
    display: none; }
  .mm-listitem:last-child {
    border-bottom: none; }

.mm-listitem > a,
.mm-listitem > span {
  padding: 4.6875vmin 9.375vmin; }
  .mm-listitem > a:hover,
  .mm-listitem > span:hover {
    color: #009B7A !important; }

.mm-menu .mm-listview {
  border: 1px solid #F2F2F5;
  border-top: none;
  overflow: hidden;
  border-radius: 0 0 4.6875vmin 4.6875vmin; }

.mm-menu .mm-listview .mm-btn_next::after {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background: url(../images/sprites/svg/angle-right.svg) no-repeat center center;
  right: 3.125vmin;
  width: 5vmin;
  height: 5vmin;
  border: none; }

.mm-menu .mm-listview .mm-btn_next:before {
  display: none; }

.mm-panels > .mm-panel > .mm-listview:first-child, .mm-panels > .mm-panel > .mm-navbar + .mm-listview {
  margin-top: 6.25vmin; }

.mm-menu .mm-navbar a, .mm-menu .mm-navbar > * {
  color: #343B4C !important; }

#mm-1 .mm-navbar {
  padding: 0;
  padding-left: 7.8125vmin; }
  #mm-1 .mm-navbar .mm-navbar__title {
    font-size: 3.75vmin;
    color: #343B4C !important; }

#mm-1 .mm-listview .mm-btn_next::after {
  background: url(../images/sprites/svg/angle-right.svg) no-repeat center center;
  width: 5vmin;
  height: 5vmin;
  right: 3.125vmin; }

#mm-1 .mm-listitem:after {
  display: block;
  border-color: #E2E2EA !important; }

#mm-1 .mm-listitem:last-child:after {
  display: none !important; }

.mm-listitem .mm-btn_next:not(.mm-btn_fullwidth) + a, .mm-listitem .mm-btn_next:not(.mm-btn_fullwidth) + span {
  margin-right: 18.75vmin; }

.main-slider {
  margin-top: 2.08333vw;
  margin-bottom: 6.38889vw; }
  @media (min-width: 1800px) {
    .main-slider {
      margin-top: 30px;
      margin-bottom: 92px; } }
  @media (max-width: 1024px) {
    .main-slider {
      margin-top: 7.5vmin;
      margin-bottom: 11.875vmin; } }

.slider {
  border: 1px solid #F1F3FA;
  border-radius: 1.38889vw;
  position: relative;
  overflow: hidden;
  background-color: #fff; }
  @media (min-width: 1800px) {
    .slider {
      border-radius: 20px; } }
  @media (max-width: 1024px) {
    .slider {
      border-radius: 6.25vmin; } }
  .slider .btn-slider {
    position: absolute;
    z-index: 2; }
    .slider .btn-slider.prev {
      right: 5.90278vw;
      bottom: 2.08333vw; }
      @media (min-width: 1800px) {
        .slider .btn-slider.prev {
          bottom: 30px;
          right: 85px; } }
      @media (max-width: 1024px) {
        .slider .btn-slider.prev {
          right: 19.6875vmin;
          bottom: 5vmin; } }
    .slider .btn-slider.next {
      right: 2.08333vw;
      bottom: 2.08333vw; }
      @media (min-width: 1800px) {
        .slider .btn-slider.next {
          right: 30px;
          bottom: 30px; } }
      @media (max-width: 1024px) {
        .slider .btn-slider.next {
          right: 5vmin;
          bottom: 5vmin; } }

.slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1.38889vw;
  padding-top: 2.08333vw;
  padding-bottom: 2.77778vw;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover; }
  .slide__title {
    font-size: 2.43056vw;
    line-height: 3.125vw;
    font-weight: 500;
    margin-bottom: 0.41667vw; }
    @media (min-width: 1800px) {
      .slide__title {
        font-size: 35px;
        line-height: 45px;
        margin-bottom: 6px; } }
    @media (max-width: 1024px) {
      .slide__title {
        font-size: 6.875vmin;
        line-height: 9.375vmin;
        margin-bottom: 4.375vmin; } }
  .slide__text {
    -ms-flex-preferred-size: 46%;
        flex-basis: 46%;
    padding-left: 2.91667vw; }
    .slide__text ul {
      max-width: 30.13889vw;
      width: 100%;
      font-size: 1.04167vw;
      line-height: 2.08333vw;
      margin-bottom: 1.80556vw;
      color: #5A6C7D; }
      .slide__text ul li {
        position: relative;
        padding-left: 3.61111vw;
        padding-top: 0.69444vw; }
        .slide__text ul li:before {
          content: "";
          position: absolute;
          width: 2.91667vw;
          height: 2.91667vw;
          border-radius: 0.69444vw;
          background: #F2F5FF url(../images/sprites/svg/check-green.svg) no-repeat center center;
          background-size: 1.31944vw;
          left: 0;
          top: 0.27778vw;
          color: #0050E0; }
          @media (min-width: 1800px) {
            .slide__text ul li:before {
              width: 42px;
              height: 42px;
              border-radius: 10px;
              top: 4px;
              background-size: 19px; } }
          @media (max-width: 1024px) {
            .slide__text ul li:before {
              width: 12.5vmin;
              height: 12.5vmin;
              border-radius: 3.125vmin;
              top: 1.25vmin;
              background-size: 5.3125vmin; } }
        @media (min-width: 1800px) {
          .slide__text ul li {
            padding-left: 52px;
            padding-top: 10px; } }
        @media (max-width: 1024px) {
          .slide__text ul li {
            padding-left: 15vmin;
            padding-top: 4.375vmin; } }
      @media (min-width: 1800px) {
        .slide__text ul {
          max-width: 434px;
          font-size: 15px;
          line-height: 30px;
          margin-bottom: 26px; } }
      @media (max-width: 1024px) {
        .slide__text ul {
          max-width: 135.625vmin;
          font-size: 4vmin;
          line-height: 6.25vmin;
          margin-bottom: 5.625vmin; } }
    @media (min-width: 1800px) {
      .slide__text {
        padding-left: 42px; } }
    @media (max-width: 1024px) {
      .slide__text {
        padding: 5.625vmin 5vmin;
        padding-right: 3.125vmin;
        padding-bottom: 0;
        width: 100%; }
        .slide__text .btn {
          display: none; } }
  .slide__image {
    -ms-flex-preferred-size: 54%;
        flex-basis: 54%;
    position: relative;
    background-color: #fff;
    border-radius: 0 2.08333vw 2.08333vw 0; }
    .slide__image img {
      width: 100%; }
    @media (min-width: 1800px) {
      .slide__image {
        border-radius: 0 30px 30px 0; } }
    @media (max-width: 1024px) {
      .slide__image {
        border-radius: 9.375vmin 9.375vmin 9.375vmin 9.375vmin;
        width: 100%; } }
  .slide .btn {
    width: 13.81944vw;
    height: 3.81944vw; }
    @media (min-width: 1800px) {
      .slide .btn {
        width: 199px;
        height: 55px; } }
    @media (max-width: 1024px) {
      .slide .btn {
        width: 62.1875vmin;
        height: 17.1875vmin; } }
  @media (max-width: 1024px) {
    .slide {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      border-radius: 30px;
      padding-top: 30px;
      padding-bottom: 40px; } }
  @media (max-width: 1024px) {
    .slide {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      border-radius: 6.25vmin;
      padding: 0;
      background-image: none !important; } }

.btn-slider {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 0.69444vw;
  width: 3.125vw;
  height: 3.125vw;
  color: #fff;
  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;
  color: #fff; }
  .btn-slider svg {
    width: 0.97222vw;
    height: 1.11111vw; }
    @media (min-width: 1800px) {
      .btn-slider svg {
        width: 12px;
        height: 12px; } }
    @media (max-width: 1024px) {
      .btn-slider svg {
        width: 3.75vmin;
        height: 3.75vmin; } }
  .btn-slider:hover {
    background-color: #0050E0;
    border: 1px solid #0050E0; }
  .btn-slider--white {
    background-color: #fff;
    color: #0050E0; }
  @media (min-width: 1800px) {
    .btn-slider {
      width: 45px;
      height: 45px;
      border-radius: 10px; } }
  @media (max-width: 1024px) {
    .btn-slider {
      width: 11.875vmin;
      height: 11.875vmin;
      border-radius: 3.125vmin; } }

.actual-news__title {
  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;
  margin-bottom: 3.125vw;
  padding-top: 6.59722vw;
  margin-top: 5.55556vw;
  border-top: 1px solid #E2E2E2; }
  .actual-news__title .title-h2 {
    margin-top: 0;
    margin-bottom: 0; }
    @media (max-width: 1024px) {
      .actual-news__title .title-h2 {
        width: 100%;
        margin-bottom: 6.25vmin; } }
  .actual-news__title-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 1024px) {
      .actual-news__title-right {
        width: 100%;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  @media (min-width: 1800px) {
    .actual-news__title {
      margin-bottom: 45px;
      padding-top: 95px;
      margin-top: 80px; } }
  @media (max-width: 1024px) {
    .actual-news__title {
      margin-bottom: 5vmin;
      padding-top: 11.875vmin;
      margin-top: 11.875vmin;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.actual-news__btns {
  margin-left: 1.38889vw; }
  @media (min-width: 1800px) {
    .actual-news__btns {
      margin-left: 20px; } }
  @media (max-width: 1024px) {
    .actual-news__btns {
      margin-left: 0; } }
  .actual-news__btns .btn-slider {
    width: 2.84722vw;
    height: 2.84722vw;
    color: #0050E0; }
    .actual-news__btns .btn-slider:hover {
      color: #fff; }
    .actual-news__btns .btn-slider.next {
      margin-left: 0.69444vw; }
      @media (min-width: 1800px) {
        .actual-news__btns .btn-slider.next {
          margin-left: 10px; } }
      @media (max-width: 1024px) {
        .actual-news__btns .btn-slider.next {
          margin-left: 3.125vmin; } }
    @media (min-width: 1800px) {
      .actual-news__btns .btn-slider {
        width: 41px;
        height: 41px; } }
    @media (max-width: 1024px) {
      .actual-news__btns .btn-slider {
        width: 12.8125vmin;
        height: 12.8125vmin; } }

.news-slider {
  margin-left: -0.69444vw;
  margin-right: -0.69444vw; }
  .news-slider__item {
    padding-left: 0.69444vw;
    padding-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .news-slider__item {
        padding-left: 10px;
        padding-right: 10px; } }
    @media (max-width: 1024px) {
      .news-slider__item {
        padding-left: 1.25vmin;
        padding-right: 1.25vmin; }
        .news-slider__item .article {
          width: 100%;
          max-width: 79.375vmin; } }
  @media (min-width: 1800px) {
    .news-slider {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1024px) {
    .news-slider {
      margin-left: 0;
      margin-right: -5vmin; } }

.product-page {
  margin-bottom: 6.31944vw;
  margin-top: 1.66667vw; }
  .product-page__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw; }
    @media (min-width: 1800px) {
      .product-page__row {
        margin-left: -10px;
        margin-right: -10px; } }
    @media (max-width: 1024px) {
      .product-page__row {
        margin-left: 0;
        margin-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .product-page__column {
    margin-left: 0.69444vw;
    margin-right: 0.69444vw;
    -ms-flex-preferred-size: calc(33.333% - 1.38889vw);
        flex-basis: calc(33.333% - 1.38889vw);
    max-width: calc(33.333% - 1.38889vw); }
    .product-page__column--center {
      padding-left: 1.38889vw;
      padding-right: 1.52778vw; }
      @media (min-width: 1800px) {
        .product-page__column--center {
          padding-left: 20px;
          padding-right: 22px; } }
      @media (max-width: 1024px) {
        .product-page__column--center {
          padding-left: 0;
          padding-right: 0; } }
    @media (min-width: 1800px) {
      .product-page__column {
        margin-left: 10px;
        margin-right: 10px;
        -ms-flex-preferred-size: calc(33.333% - 20px);
            flex-basis: calc(33.333% - 20px);
        max-width: calc(33.333% - 20px); } }
    @media (max-width: 1024px) {
      .product-page__column {
        margin-left: 0;
        margin-right: 0;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        max-width: 100%; } }
  .product-page__tags {
    margin-bottom: 1.25vw; }
    .product-page__tags .tags__item {
      font-size: 1.04167vw;
      padding-left: 0.69444vw;
      padding-right: 0.69444vw;
      color: #FF8A00; }
      .product-page__tags .tags__item:hover {
        color: #fff; }
      @media (min-width: 1800px) {
        .product-page__tags .tags__item {
          font-size: 15px; } }
      @media (max-width: 1024px) {
        .product-page__tags .tags__item {
          font-size: 4.0625vmin;
          padding-left: 3.125vmin;
          padding-right: 3.125vmin;
          height: 7.5vmin; } }
    @media (min-width: 1800px) {
      .product-page__tags {
        margin-bottom: 18px; } }
    @media (max-width: 1024px) {
      .product-page__tags {
        margin-bottom: 1.875vmin; } }
  .product-page__title {
    font-size: 2.43056vw;
    line-height: 1.94444vw;
    font-weight: 500;
    margin-bottom: 1.80556vw;
    margin-top: 0; }
    @media (min-width: 1800px) {
      .product-page__title {
        font-size: 35px;
        line-height: 28px;
        margin-bottom: 22px; } }
    @media (max-width: 1024px) {
      .product-page__title {
        font-size: 6.875vmin;
        line-height: 7.5vmin;
        margin-bottom: 5vmin; } }
  .product-page__desc {
    font-size: 1.18056vw;
    line-height: 1.94444vw;
    color: #5A6C7D;
    margin-bottom: 2.08333vw;
    padding-bottom: 1.11111vw;
    border-bottom: 1px solid #E5EAEF; }
    .product-page__desc h4 {
      font-size: 1.18056vw;
      line-height: 1.80556vw;
      font-weight: 500;
      margin-bottom: 0.48611vw;
      margin-top: 0;
      color: #343B4C; }
      @media (min-width: 1800px) {
        .product-page__desc h4 {
          font-size: 17px;
          line-height: 26px;
          margin-bottom: 7px; } }
      @media (max-width: 1024px) {
        .product-page__desc h4 {
          font-size: 4.6875vmin;
          line-height: 8.125vmin;
          margin-bottom: 1.5625vmin; } }
    .product-page__desc ul li {
      position: relative;
      padding-left: 1.80556vw;
      margin-bottom: 0.34722vw; }
      .product-page__desc ul li:before {
        content: "";
        position: absolute;
        top: 0.625vw;
        left: 0.625vw;
        width: 0.41667vw;
        height: 0.41667vw;
        border-radius: 50%;
        background-color: #5A6C7D; }
        @media (min-width: 1800px) {
          .product-page__desc ul li:before {
            top: 9px;
            left: 9px;
            width: 6px;
            height: 6px; } }
        @media (max-width: 1024px) {
          .product-page__desc ul li:before {
            top: 3.4375vmin;
            left: 2.8125vmin;
            width: 1.25vmin;
            height: 1.25vmin; } }
      @media (min-width: 1800px) {
        .product-page__desc ul li {
          padding-left: 26px;
          margin-bottom: 5px; } }
      @media (max-width: 1024px) {
        .product-page__desc ul li {
          padding-left: 6.875vmin;
          margin-bottom: 0; } }
    @media (min-width: 1800px) {
      .product-page__desc {
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 30px;
        padding-bottom: 16px; } }
    @media (max-width: 1024px) {
      .product-page__desc {
        font-size: 4.53125vmin;
        line-height: 8.125vmin;
        margin-bottom: 5vmin;
        padding-bottom: 0;
        margin-top: 5vmin;
        border-bottom: none; } }
  .product-page__brand {
    background-color: transparent;
    border: none;
    padding: 0;
    margin-left: 0;
    margin-right: 0; }
    .product-page__brand .brand__cat {
      color: #0050E0; }
      .product-page__brand .brand__cat:hover {
        background-color: #0050E0;
        color: #fff; }
    @media (max-width: 1024px) {
      .product-page__brand {
        border-radius: 6.25vmin;
        padding: 5vmin;
        background-color: #fff;
        border: 1px solid #F2F5FF; } }
  .product-page__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 2.43056vw; }
    @media (min-width: 1800px) {
      .product-page__head {
        margin-bottom: 35px; } }
    @media (max-width: 1024px) {
      .product-page__head {
        margin-bottom: 8.125vmin;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; } }
  .product-page__article {
    font-size: 1.04167vw;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .product-page__article svg {
      width: 1.11111vw;
      height: 1.11111vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .product-page__article svg {
          width: 16px;
          height: 16px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .product-page__article svg {
          width: 4.0625vmin;
          height: 4.0625vmin;
          margin-right: 3.125vmin; } }
    @media (min-width: 1800px) {
      .product-page__article {
        font-size: 15px; } }
    @media (max-width: 1024px) {
      .product-page__article {
        font-size: 4.0625vmin;
        margin-right: 6.875vmin; } }
  .product-page__analog {
    font-size: 1.45833vw;
    line-height: 1.94444vw;
    color: #0050E0;
    font-weight: 500;
    margin-bottom: 0.48611vw; }
    .product-page__analog b {
      font-weight: inherit;
      color: #343B4C; }
    @media (min-width: 1800px) {
      .product-page__analog {
        font-size: 21px;
        line-height: 28px;
        margin-bottom: 7px; } }
    @media (max-width: 1024px) {
      .product-page__analog {
        font-size: 5.625vmin;
        line-height: 7.5vmin;
        margin-bottom: 2.1875vmin; } }
  .product-page__manuf {
    font-size: 0.90278vw;
    line-height: 1.52778vw;
    margin-bottom: 0.97222vw;
    color: #5A6C7D; }
    @media (min-width: 1800px) {
      .product-page__manuf {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 14px; } }
    @media (max-width: 1024px) {
      .product-page__manuf {
        font-size: 3.4375vmin;
        line-height: 5.625vmin;
        margin-bottom: 4.375vmin; } }
  .product-page__intro {
    font-size: 1.18056vw;
    line-height: 2.22222vw;
    color: #5A6C7D; }
    @media (min-width: 1800px) {
      .product-page__intro {
        font-size: 17px;
        line-height: 32px; } }
    @media (max-width: 1024px) {
      .product-page__intro {
        font-size: 4.53125vmin;
        line-height: 6.875vmin;
        margin-bottom: 6.25vmin; } }
  .product-page__description {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-top: 3.47222vw; }
    @media (min-width: 1800px) {
      .product-page__description {
        margin-top: 50px; } }
    @media (max-width: 1024px) {
      .product-page__description {
        margin-top: 0; } }
  .product-page__documents {
    margin-top: 2.91667vw;
    padding-top: 3.33333vw;
    border-top: 1px solid #E2E2EA;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media (min-width: 1800px) {
      .product-page__documents {
        margin-top: 42px;
        padding-top: 48px; } }
    @media (max-width: 1024px) {
      .product-page__documents {
        margin-top: 6.875vmin;
        padding-top: 0;
        border-top: none; } }
  .product-page__document {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-bottom: 1.25vw;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%; }
    .product-page__document-title {
      font-size: 1.04167vw;
      margin-bottom: 0.20833vw; }
      .product-page__document-title a:hover {
        color: #0050E0; }
      @media (min-width: 1800px) {
        .product-page__document-title {
          font-size: 15px;
          margin-bottom: 3px; } }
      @media (max-width: 1024px) {
        .product-page__document-title {
          font-size: 4.0625vmin;
          margin-bottom: 0.9375vmin; } }
    .product-page__document-size {
      font-size: 0.76389vw;
      color: #5A6C7D; }
      @media (min-width: 1800px) {
        .product-page__document-size {
          font-size: 11px; } }
      @media (max-width: 1024px) {
        .product-page__document-size {
          font-size: 2.96875vmin; } }
    .product-page__document svg {
      width: 1.25vw;
      height: 1.25vw;
      -ms-flex-preferred-size: 1.25vw;
          flex-basis: 1.25vw;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-right: 0.41667vw;
      color: #0050E0; }
      @media (min-width: 1800px) {
        .product-page__document svg {
          width: 18px;
          height: 18px;
          -ms-flex-preferred-size: 18px;
              flex-basis: 18px;
          margin-right: 6px; } }
      @media (max-width: 1024px) {
        .product-page__document svg {
          width: 5vmin;
          height: 5vmin;
          -ms-flex-preferred-size: 5vmin;
              flex-basis: 5vmin;
          margin-right: 1.25vmin; } }
    @media (min-width: 1800px) {
      .product-page__document {
        margin-bottom: 18px; } }
    @media (max-width: 1024px) {
      .product-page__document {
        margin-bottom: 3.75vmin; } }
  .product-page__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #D6DAE9; }
    @media (max-width: 1024px) {
      .product-page__tabs {
        margin-top: 6.25vmin;
        overflow: hidden;
        overflow-x: scroll; } }
  .product-page__tab {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 1.25vw 1.73611vw;
    font-size: 1.45833vw;
    font-weight: 500;
    color: #5A6C7D;
    position: relative;
    cursor: pointer; }
    .product-page__tab:after {
      content: "";
      position: absolute;
      bottom: -3px;
      left: 0;
      right: 0;
      height: 5px;
      border-radius: 12px;
      background-color: #0050E0;
      visibility: hidden;
      opacity: 0; }
    .product-page__tab.active {
      color: #0050E0; }
      .product-page__tab.active:after {
        visibility: visible;
        opacity: 1; }
    @media (min-width: 1800px) {
      .product-page__tab {
        padding: 18px 25px;
        font-size: 21px; } }
    @media (max-width: 1024px) {
      .product-page__tab {
        padding: 5.625vmin 1.5625vmin;
        font-size: 4.6875vmin;
        white-space: nowrap; } }
  .product-page__tab-content {
    padding-top: 2.98611vw;
    font-size: 1.04167vw; }
    .product-page__tab-content h3 {
      font-size: 1.18056vw;
      font-weight: 500;
      line-height: 1.66667vw;
      margin-top: 0; }
      @media (min-width: 1800px) {
        .product-page__tab-content h3 {
          font-size: 17px;
          line-height: 24px; } }
      @media (max-width: 1024px) {
        .product-page__tab-content h3 {
          font-size: 4.6875vmin;
          line-height: 7.5vmin; } }
    .product-page__tab-content p {
      margin-bottom: 1.04167vw; }
      @media (min-width: 1800px) {
        .product-page__tab-content p {
          margin-bottom: 15px; } }
      @media (max-width: 1024px) {
        .product-page__tab-content p {
          margin-bottom: 4.6875vmin; } }
    @media (min-width: 1800px) {
      .product-page__tab-content {
        padding-top: 43px;
        font-size: 15px; } }
    @media (max-width: 1024px) {
      .product-page__tab-content {
        padding-top: 4.375vmin;
        padding-left: 3.125vmin;
        font-size: 4.0625vmin;
        overflow-x: scroll; } }
  .product-page .dne {
    margin-top: 0; }
  @media (min-width: 1800px) {
    .product-page {
      margin-bottom: 0;
      margin-top: 24px; } }
  @media (max-width: 1024px) {
    .product-page {
      margin-bottom: 12.5vmin;
      margin-top: 0; } }

.char-table__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.48611vw; }
  .char-table__item:after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 1.04167vw;
    height: 1px;
    background-color: #E5EAEF; }
    @media (min-width: 1800px) {
      .char-table__item:after {
        top: 15px; } }
    @media (max-width: 1024px) {
      .char-table__item:after {
        display: none; } }
  .char-table__item > div {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    line-height: 1.66667vw; }
    @media (min-width: 1800px) {
      .char-table__item > div {
        line-height: 24px; } }
    @media (max-width: 1024px) {
      .char-table__item > div {
        line-height: 7.5vmin; } }
  @media (max-width: 1024px) {
    .char-table__item {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.char-table__name span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #F7F9FF;
  padding-right: 1.73611vw; }
  @media (min-width: 1800px) {
    .char-table__name span {
      padding-right: 25px; } }
  @media (max-width: 1024px) {
    .char-table__name span {
      padding-right: 0;
      font-size: 3.4375vmin; } }

.char-table__value {
  font-weight: 500;
  background-color: #F7F9FF;
  position: relative;
  z-index: 1;
  padding-left: 1.38889vw; }
  @media (min-width: 1800px) {
    .char-table__value {
      padding-left: 20px; } }
  @media (max-width: 1024px) {
    .char-table__value {
      padding-left: 0; } }

@media (min-width: 1800px) {
  .char-table {
    margin-bottom: 7px; } }

@media (max-width: 1024px) {
  .char-table {
    margin-bottom: 2.1875vmin; } }

.product-gallery {
  background: #FFFFFF;
  border: 1px solid #F1F3FA;
  border-radius: 1.38889vw;
  position: relative;
  overflow: hidden;
  opacity: 0; }
  .product-gallery.slick-initialized {
    opacity: 1; }
  .product-gallery__item {
    border-radius: 1.38889vw;
    position: relative;
    overflow: hidden; }
    @media (min-width: 1800px) {
      .product-gallery__item {
        border-radius: 20px; } }
    @media (max-width: 1024px) {
      .product-gallery__item {
        background: #FFFFFF;
        border: 1px solid #F1F3FA;
        border-radius: 6.25vmin;
        max-width: 65vmin;
        margin-right: 3.125vmin; } }
  .product-gallery .btn-slider {
    border-radius: 0.69444vw;
    position: absolute;
    z-index: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: rgba(0, 80, 224, 0.04); }
    .product-gallery .btn-slider:hover {
      background-color: rgba(255, 255, 255, 0.5); }
    .product-gallery .btn-slider.prev {
      left: 1.38889vw; }
      @media (min-width: 1800px) {
        .product-gallery .btn-slider.prev {
          left: 20px; } }
      @media (max-width: 1024px) {
        .product-gallery .btn-slider.prev {
          left: 6.25vmin; } }
    .product-gallery .btn-slider.next {
      right: 1.38889vw; }
      @media (min-width: 1800px) {
        .product-gallery .btn-slider.next {
          right: 20px; } }
      @media (max-width: 1024px) {
        .product-gallery .btn-slider.next {
          right: 6.25vmin; } }
    @media (min-width: 1800px) {
      .product-gallery .btn-slider {
        border-radius: 0.69444vw; } }
    @media (max-width: 1024px) {
      .product-gallery .btn-slider {
        border-radius: 0.69444vw; } }
  .product-gallery .slick-dots {
    background: rgba(0, 155, 122, 0.04); }
    .product-gallery .slick-dots li {
      background: rgba(0, 155, 122, 0.2); }
      .product-gallery .slick-dots li.slick-active {
        background-color: #0050E0; }
  @media (min-width: 1800px) {
    .product-gallery {
      border-radius: 30px; } }
  @media (max-width: 1024px) {
    .product-gallery {
      border-radius: 9.375vmin;
      border: none;
      background-color: transparent;
      border-radius: 0;
      margin-right: -5.3125vmin; } }

.product-gallery-thumb {
  margin-left: -0.34722vw;
  margin-right: -0.34722vw;
  margin-top: 0.69444vw; }
  .product-gallery-thumb__item {
    padding-left: 0.34722vw;
    padding-right: 0.34722vw;
    position: relative;
    overflow: hidden; }
    .product-gallery-thumb__item img {
      width: 100%; }
    .product-gallery-thumb__item span {
      background: #FFFFFF;
      border: 1px solid #F1F3FA;
      border-radius: 1.38889vw;
      display: block;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s; }
      .product-gallery-thumb__item span:hover {
        opacity: 0.5; }
      @media (min-width: 1800px) {
        .product-gallery-thumb__item span {
          border-radius: 20px; } }
      @media (max-width: 1024px) {
        .product-gallery-thumb__item span {
          border-radius: 6.25vmin; } }
    @media (min-width: 1800px) {
      .product-gallery-thumb__item {
        padding-left: 5px;
        padding-right: 5px; } }
    @media (max-width: 1024px) {
      .product-gallery-thumb__item {
        padding-left: 1.5625vmin;
        padding-right: 1.5625vmin; } }
  @media (min-width: 1800px) {
    .product-gallery-thumb {
      margin-left: -5px;
      margin-right: -5px;
      margin-top: 10px; } }
  @media (max-width: 1024px) {
    .product-gallery-thumb {
      margin-left: -1.5625vmin;
      margin-right: -1.5625vmin;
      margin-top: 3.125vmin;
      display: none; } }

.share-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  background-color: transparent;
  font-size: 1.04167vw;
  padding: 0; }
  .share-btn svg {
    width: 1.25vw;
    height: 1.25vw;
    margin-right: 0.83333vw;
    color: #0050E0; }
    @media (min-width: 1800px) {
      .share-btn svg {
        width: 18px;
        height: 18px;
        margin-right: 12px; } }
    @media (max-width: 1024px) {
      .share-btn svg {
        width: 5vmin;
        height: 5vmin;
        margin-right: 2.5vmin; } }
  .share-btn:hover {
    color: #0050E0; }
  @media (min-width: 1800px) {
    .share-btn {
      font-size: 15px; } }
  @media (max-width: 1024px) {
    .share-btn {
      font-size: 4.0625vmin; } }

.print-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  background-color: transparent;
  font-size: 1.04167vw;
  padding: 0; }
  .print-btn svg {
    width: 1.25vw;
    height: 1.25vw;
    margin-right: 0.83333vw;
    color: #0050E0; }
    @media (min-width: 1800px) {
      .print-btn svg {
        width: 18px;
        height: 18px;
        margin-right: 12px; } }
    @media (max-width: 1024px) {
      .print-btn svg {
        width: 5vmin;
        height: 5vmin;
        margin-right: 2.5vmin; } }
  .print-btn:hover {
    color: #0050E0; }
  @media (min-width: 1800px) {
    .print-btn {
      font-size: 15px; } }
  @media (max-width: 1024px) {
    .print-btn {
      font-size: 3.90625vmin; } }

.navigation-product {
  padding: 1.94444vw;
  border-radius: 1.38889vw;
  background-color: #fff;
  border: 1px solid #F1F3FA; }
  .navigation-product__head {
    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;
    margin-bottom: 2.77778vw; }
    @media (min-width: 1800px) {
      .navigation-product__head {
        margin-bottom: 40px; } }
    @media (max-width: 1024px) {
      .navigation-product__head {
        margin-bottom: 7.5vmin; } }
  .navigation-product__priceblock {
    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;
    margin-bottom: 1.94444vw; }
    .navigation-product__priceblock-left, .navigation-product__priceblock-counts {
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%; }
    .navigation-product__priceblock-counts {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
    @media (min-width: 1800px) {
      .navigation-product__priceblock {
        margin-bottom: 28px; } }
    @media (max-width: 1024px) {
      .navigation-product__priceblock {
        margin-bottom: 5vmin;
        margin-top: 2.5vmin; } }
  .navigation-product__price {
    font-size: 2.08333vw;
    line-height: 1.94444vw;
    font-weight: 500;
    margin-bottom: 0.48611vw; }
    .navigation-product__price-subtitle {
      font-size: 0.90278vw;
      color: #94A4B4; }
      @media (min-width: 1800px) {
        .navigation-product__price-subtitle {
          font-size: 13px; } }
      @media (max-width: 1024px) {
        .navigation-product__price-subtitle {
          font-size: 3.4375vmin; } }
    @media (min-width: 1800px) {
      .navigation-product__price {
        font-size: 30px;
        line-height: 28px;
        margin-bottom: 7px; } }
    @media (max-width: 1024px) {
      .navigation-product__price {
        font-size: 6.25vmin;
        line-height: 7.5vmin;
        margin-bottom: 2.1875vmin; } }
  .navigation-product__info {
    font-size: 1.04167vw;
    line-height: 2.15278vw; }
    .navigation-product__info-item {
      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;
      position: relative;
      z-index: 1; }
      .navigation-product__info-item:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 1.18056vw;
        height: 1px;
        z-index: -1;
        background-color: #F1F3FA; }
        @media (min-width: 1800px) {
          .navigation-product__info-item:after {
            top: 17px; } }
        @media (max-width: 1024px) {
          .navigation-product__info-item:after {
            top: 5.3125vmin; } }
    .navigation-product__info-name {
      color: #5A6C7D; }
      .navigation-product__info-name span {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        padding-right: 0.69444vw;
        background-color: #fff; }
        @media (min-width: 1800px) {
          .navigation-product__info-name span {
            padding-right: 10px; } }
        @media (max-width: 1024px) {
          .navigation-product__info-name span {
            padding-right: 3.125vmin;
            background-color: #F7F9FF; } }
    .navigation-product__info-value {
      color: #343B4C;
      font-weight: 500; }
      .navigation-product__info-value span {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        padding-left: 0.69444vw;
        background-color: #fff; }
        @media (min-width: 1800px) {
          .navigation-product__info-value span {
            padding-left: 10px; } }
        @media (max-width: 1024px) {
          .navigation-product__info-value span {
            padding-left: 3.125vmin;
            background-color: #F7F9FF; } }
    .navigation-product__info-txt {
      margin-top: 1.59722vw;
      line-height: 1.80556vw; }
      .navigation-product__info-txt a {
        color: #0050E0; }
      @media (min-width: 1800px) {
        .navigation-product__info-txt {
          margin-top: 23px;
          line-height: 26px; } }
      @media (max-width: 1024px) {
        .navigation-product__info-txt {
          margin-top: 7.1875vmin;
          line-height: 8.125vmin; } }
    @media (min-width: 1800px) {
      .navigation-product__info {
        font-size: 15px;
        line-height: 31px; } }
    @media (max-width: 1024px) {
      .navigation-product__info {
        font-size: 3.96875vmin;
        line-height: 8.4375vmin; } }
  .navigation-product__available {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.90278vw;
    color: #5A6C7D; }
    .navigation-product__available svg {
      width: 1.38889vw;
      height: 1.38889vw;
      margin-right: 0.41667vw;
      color: #0050E0; }
      @media (min-width: 1800px) {
        .navigation-product__available svg {
          width: 20px;
          height: 20px;
          margin-right: 6px; } }
      @media (max-width: 1024px) {
        .navigation-product__available svg {
          width: 5vmin;
          height: 5vmin;
          margin-right: 1.875vmin; } }
    @media (min-width: 1800px) {
      .navigation-product__available {
        font-size: 13px; } }
    @media (max-width: 1024px) {
      .navigation-product__available {
        font-size: 3.125vmin; } }
  .navigation-product__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 2.08333vw; }
    @media (max-width: 1024px) {
      .navigation-product__btns .btn--buy {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; } }
    @media (max-width: 1024px) {
      .navigation-product__btns .btn--analog {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; } }
    @media (min-width: 1800px) {
      .navigation-product__btns {
        margin-top: 30px; } }
    @media (max-width: 1024px) {
      .navigation-product__btns {
        margin-top: 0; } }
  @media (min-width: 1800px) {
    .navigation-product {
      padding: 28px;
      border-radius: 20px; } }
  @media (max-width: 1024px) {
    .navigation-product {
      padding: 0;
      border-radius: 0;
      margin-left: 0;
      margin-right: 0;
      margin-top: 0;
      margin-bottom: 10.625vmin;
      border: none;
      background-color: transparent; } }

.number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid #F1F3FA;
  border-radius: 0.69444vw; }
  .number__btn {
    width: 3.88889vw;
    height: 3.88889vw;
    -ms-flex-preferred-size: 3.88889vw;
        flex-basis: 3.88889vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 0.55556vw;
    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;
    border: 2px solid #fff;
    background-color: rgba(0, 80, 224, 0.04); }
    .number__btn svg {
      width: 0.97222vw;
      color: #0050E0; }
      @media (min-width: 1800px) {
        .number__btn svg {
          width: 14px; } }
      @media (max-width: 1024px) {
        .number__btn svg {
          width: 4.375vmin; } }
    .number__btn:hover {
      background-color: #0050E0; }
      .number__btn:hover svg {
        color: #fff; }
    @media (min-width: 1800px) {
      .number__btn {
        width: 56px;
        height: 54px;
        -ms-flex-preferred-size: 56px;
            flex-basis: 56px;
        border-radius: 8px; } }
    @media (max-width: 1024px) {
      .number__btn {
        width: 14.375vmin;
        height: 13.75vmin;
        -ms-flex-preferred-size: 14.375vmin;
            flex-basis: 14.375vmin;
        border-radius: 2.5vmin; } }
  .number__input {
    width: 4.58333vw;
    height: 3.88889vw;
    text-align: center;
    border: none;
    font-size: 1.18056vw;
    font-weight: 500;
    color: #5A6C7D; }
    @media (min-width: 1800px) {
      .number__input {
        width: 66px;
        height: 56px;
        font-size: 17px; } }
    @media (max-width: 1024px) {
      .number__input {
        width: 15.625vmin;
        height: 13.75vmin;
        font-size: 5.3125vmin; } }
  @media (min-width: 1800px) {
    .number {
      border-radius: 10px; } }
  @media (max-width: 1024px) {
    .number {
      border-radius: 3.125vmin; } }

.contacts-product__title {
  font-size: 1.18056vw;
  margin-bottom: 1.66667vw;
  font-weight: 500; }
  @media (min-width: 1800px) {
    .contacts-product__title {
      font-size: 17px;
      margin-bottom: 24px; } }
  @media (max-width: 1024px) {
    .contacts-product__title {
      font-size: 4.53125vmin;
      margin-bottom: 4.375vmin; } }

.contacts-product__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.25vw; }
  .contacts-product__item:last-child {
    margin-bottom: 0; }
  @media (min-width: 1800px) {
    .contacts-product__item {
      margin-bottom: 14px; } }
  @media (max-width: 1024px) {
    .contacts-product__item {
      margin-bottom: 5.625vmin; } }

.contacts-product__subtitle {
  font-size: 0.90278vw;
  color: #5A6C7D;
  margin-bottom: 0.48611vw; }
  @media (min-width: 1800px) {
    .contacts-product__subtitle {
      font-size: 13px;
      margin-bottom: 7px; } }
  @media (max-width: 1024px) {
    .contacts-product__subtitle {
      font-size: 3.4375vmin;
      margin-bottom: 1.25vmin; } }

.contacts-product__contacts {
  font-size: 1.18056vw;
  font-weight: 500; }
  .contacts-product__contacts a:hover {
    color: #0050E0; }
  @media (min-width: 1800px) {
    .contacts-product__contacts {
      font-size: 17px; } }
  @media (max-width: 1024px) {
    .contacts-product__contacts {
      font-size: 4.53125vmin; } }

.contacts-product__ico {
  -ms-flex-preferred-size: 3.05556vw;
      flex-basis: 3.05556vw;
  width: 3.05556vw;
  height: 3.05556vw;
  margin-right: 1.11111vw;
  background-color: rgba(0, 80, 224, 0.04);
  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;
  border-radius: 50%; }
  .contacts-product__ico svg {
    width: 1.25vw;
    height: 1.25vw;
    color: #0050E0; }
    @media (min-width: 1800px) {
      .contacts-product__ico svg {
        width: 18px;
        height: 18px; } }
    @media (max-width: 1024px) {
      .contacts-product__ico svg {
        width: 5.625vmin;
        height: 5.625vmin; } }
  @media (min-width: 1800px) {
    .contacts-product__ico {
      -ms-flex-preferred-size: 44px;
          flex-basis: 44px;
      width: 44px;
      height: 44px;
      margin-right: 16px; } }
  @media (max-width: 1024px) {
    .contacts-product__ico {
      -ms-flex-preferred-size: 10.9375vmin;
          flex-basis: 10.9375vmin;
      width: 10.9375vmin;
      height: 10.9375vmin;
      margin-right: 4.375vmin; } }

.other-products {
  padding: 6.45833vw 0 2.08333vw; }
  @media (max-width: 1024px) {
    .other-products--from-article {
      background-color: #fff;
      padding-bottom: 13.75vmin !important;
      border-radius: 9.375vmin; } }
  .other-products--product-page {
    padding-top: 0 !important; }
    .other-products--product-page .container {
      border-top: 1px solid #E5EAEF;
      border-bottom: 1px solid #E5EAEF;
      padding-bottom: 6.94444vw;
      padding-top: 6.25vw; }
      @media (min-width: 1800px) {
        .other-products--product-page .container {
          padding-bottom: 100px;
          padding-top: 90px; } }
      @media (max-width: 1024px) {
        .other-products--product-page .container {
          padding-bottom: 12.5vmin;
          padding-top: 12.5vmin; } }
  .other-products .title-h2 {
    margin-bottom: 1.66667vw; }
    @media (min-width: 1800px) {
      .other-products .title-h2 {
        margin-bottom: 24px; } }
    @media (max-width: 1024px) {
      .other-products .title-h2 {
        margin-bottom: 3.75vmin; } }
  .other-products--white {
    background-color: #fff;
    padding: 6.45833vw 0 6.94444vw; }
    @media (min-width: 1800px) {
      .other-products--white {
        padding: 93px 0 100px !important; } }
    @media (max-width: 1024px) {
      .other-products--white {
        padding: 12.5vmin 0 12.5vmin !important; } }
  @media (min-width: 1800px) {
    .other-products {
      padding: 93px 0 30px; } }
  @media (max-width: 1024px) {
    .other-products {
      padding: 13.125vmin 0 1.25vmin; } }

.other-products-slider {
  margin-left: -0.69444vw;
  margin-right: -0.69444vw; }
  .other-products-slider__item {
    padding-left: 0.69444vw;
    padding-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .other-products-slider__item {
        padding-left: 10px;
        padding-right: 10px; } }
    @media (max-width: 1024px) {
      .other-products-slider__item {
        padding-left: 0;
        padding-right: 2.5vmin; } }
  .other-products-slider .btn-slider {
    position: absolute;
    z-index: 1;
    top: -4.86111vw;
    background-color: rgba(0, 80, 224, 0.04); }
    .other-products-slider .btn-slider.prev {
      right: 4.02778vw; }
      @media (min-width: 1800px) {
        .other-products-slider .btn-slider.prev {
          right: 58px; } }
      @media (max-width: 1024px) {
        .other-products-slider .btn-slider.prev {
          right: 18.125vmin; } }
    .other-products-slider .btn-slider.next {
      right: 0.55556vw; }
      @media (min-width: 1800px) {
        .other-products-slider .btn-slider.next {
          right: 8px; } }
      @media (max-width: 1024px) {
        .other-products-slider .btn-slider.next {
          right: 2.5vmin; } }
    @media (min-width: 1800px) {
      .other-products-slider .btn-slider {
        top: -70px; } }
    @media (max-width: 1024px) {
      .other-products-slider .btn-slider {
        top: -21.875vmin;
        display: none; } }
  @media (max-width: 1024px) {
    .other-products-slider .product-box {
      max-width: 90.625vmin; } }
  @media (min-width: 1800px) {
    .other-products-slider {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1024px) {
    .other-products-slider {
      margin-left: 0vmin;
      margin-right: -5.3125vmin; } }

.mfp-counter {
  display: none; }

.subcatalog-page.is-open-filter {
  position: relative;
  z-index: 5; }

@media (max-width: 1024px) {
  .subcatalog-page__mobile-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 6.25vmin; } }

.subcatalog-page__mobile-btns .btn--mobile-tags:hover,
.subcatalog-page__mobile-btns .btn--mobile-filter:hover {
  color: #0050E0;
  background-color: #fff; }

@media (max-width: 1024px) {
  .subcatalog-page__mobile-btns .btn--mobile-tags,
  .subcatalog-page__mobile-btns .btn--mobile-filter {
    min-width: 37.5vmin !important;
    width: 37.5vmin !important;
    margin-right: 3.125vmin; }
    .subcatalog-page__mobile-btns .btn--mobile-tags svg,
    .subcatalog-page__mobile-btns .btn--mobile-filter svg {
      width: 3.125vmin;
      height: 3.125vmin;
      margin-right: 0;
      margin-left: 3.125vmin; } }

.subcatalog-page__main {
  max-width: 100%;
  padding-left: 0; }
  @media (max-width: 1024px) {
    .subcatalog-page__main {
      max-width: 100%; } }
  .subcatalog-page__main.is-open-filter {
    max-width: calc(100% -  20.48611vw);
    padding-left: 1.38889vw; }
    .subcatalog-page__main.is-open-filter .product-box {
      -ms-flex-preferred-size: calc(33.333% - 1.38889vw);
          flex-basis: calc(33.333% - 1.38889vw);
      width: calc(33.333% - 1.38889vw); }
      @media (min-width: 1800px) {
        .subcatalog-page__main.is-open-filter .product-box {
          -ms-flex-preferred-size: calc(33.333% - 20px);
              flex-basis: calc(33.333% - 20px);
          width: calc(33.333% - 20px); } }
      @media (max-width: 1024px) {
        .subcatalog-page__main.is-open-filter .product-box {
          -ms-flex-preferred-size: 100%;
              flex-basis: 100%;
          width: 100%;
          margin-left: 0;
          margin-right: 0;
          margin-bottom: 3.125vmin; } }
    @media (min-width: 1800px) {
      .subcatalog-page__main.is-open-filter {
        max-width: calc(100% -  295px);
        padding-left: 20px; } }
    @media (max-width: 1024px) {
      .subcatalog-page__main.is-open-filter {
        padding-left: 0;
        max-width: 100%; } }

.subcatalog-page__menu {
  margin-bottom: 2.77778vw; }
  @media (min-width: 1800px) {
    .subcatalog-page__menu {
      margin-bottom: 50px; } }
  @media (max-width: 1024px) {
    .subcatalog-page__menu {
      margin-bottom: 13.125vmin;
      border-radius: 6.25vmin;
      background-color: #fff;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      overflow: hidden;
      border: 1px solid #F1F3FA;
      padding-top: 3.125vmin;
      z-index: 2;
      display: none; }
      .subcatalog-page__menu.is-open {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }

.subcatalog-page__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.38889vw; }
  @media (min-width: 1800px) {
    .subcatalog-page__container {
      margin-bottom: 20px; } }
  @media (max-width: 1024px) {
    .subcatalog-page__container {
      margin-bottom: 6.25vmin;
      display: none; } }

.subcatalog-page__btn-filter {
  font-size: 1.04167vw;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  border: none;
  background-color: transparent;
  position: relative;
  z-index: 1; }
  .subcatalog-page__btn-filter:before {
    content: "";
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 2.5vw;
    height: 1.38889vw;
    border-radius: 2.5vw;
    margin-right: 0.83333vw;
    background-color: #CBCBCB;
    z-index: 2; }
    @media (min-width: 1800px) {
      .subcatalog-page__btn-filter:before {
        width: 36px;
        height: 20px;
        border-radius: 36px;
        margin-right: 12px; } }
    @media (max-width: 1024px) {
      .subcatalog-page__btn-filter:before {
        width: 11.25vmin;
        height: 6.25vmin;
        border-radius: 11.25vmin;
        margin-right: 3.75vmin; } }
  .subcatalog-page__btn-filter:after {
    content: "";
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: absolute;
    width: 1.11111vw;
    height: 1.11111vw;
    border-radius: 50%;
    left: 0.13889vw;
    top: 0.13889vw;
    z-index: 3;
    background-color: #fff; }
    @media (min-width: 1800px) {
      .subcatalog-page__btn-filter:after {
        width: 16px;
        height: 16px;
        left: 2px;
        top: 2px; } }
    @media (max-width: 1024px) {
      .subcatalog-page__btn-filter:after {
        width: 5vmin;
        height: 5vmin;
        left: 1.25vmin;
        top: 0.625vmin; } }
  .subcatalog-page__btn-filter.is-active:before {
    background-color: #0050E0; }
  .subcatalog-page__btn-filter.is-active:after {
    left: 1.25vw; }
    @media (min-width: 1800px) {
      .subcatalog-page__btn-filter.is-active:after {
        left: 18px; } }
    @media (max-width: 1024px) {
      .subcatalog-page__btn-filter.is-active:after {
        left: 5.625vmin; } }
  @media (min-width: 1800px) {
    .subcatalog-page__btn-filter {
      font-size: 15px; } }
  @media (max-width: 1024px) {
    .subcatalog-page__btn-filter {
      font-size: 4.6875vmin; } }

.subcatalog-page__filter-btn-wrap {
  -ms-flex-preferred-size: 20.48611vw;
      flex-basis: 20.48611vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 2.77778vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (min-width: 1800px) {
    .subcatalog-page__filter-btn-wrap {
      -ms-flex-preferred-size: 295px;
          flex-basis: 295px;
      padding-right: 40px; } }
  @media (max-width: 1024px) {
    .subcatalog-page__filter-btn-wrap {
      -ms-flex-preferred-size: 92.1875vmin;
          flex-basis: 92.1875vmin;
      padding-right: 12.5vmin; } }

.subcatalog-page__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  padding-left: 1.38889vw; }
  .subcatalog-page__sort-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .subcatalog-page__sort-left .nativejs-select {
      margin-right: 0.69444vw; }
      .subcatalog-page__sort-left .nativejs-select_active .nativejs-select__placeholder {
        border-radius: 1.38889vw 1.38889vw 0 0; }
        @media (min-width: 1800px) {
          .subcatalog-page__sort-left .nativejs-select_active .nativejs-select__placeholder {
            border-radius: 20px 20px 0 0; } }
      .subcatalog-page__sort-left .nativejs-select__placeholder {
        padding-left: 3.47222vw;
        background: #fff url("../images/sprites/svg/sort.svg") no-repeat left 1.52778vw center;
        background-size: 1.25vw; }
        @media (min-width: 1800px) {
          .subcatalog-page__sort-left .nativejs-select__placeholder {
            background: #fff url("../images/sprites/svg/sort.svg") no-repeat left 22px center;
            padding-left: 50px;
            background-size: 18px; } }
        @media (max-width: 1024px) {
          .subcatalog-page__sort-left .nativejs-select__placeholder {
            background: #fff url("../images/sprites/svg/sort.svg") no-repeat left 6.875vmin center;
            padding-left: 15.625vmin;
            background-size: 5.625vmin; } }
      @media (min-width: 1800px) {
        .subcatalog-page__sort-left .nativejs-select {
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .subcatalog-page__sort-left .nativejs-select {
          margin-right: 3.125vmin; } }
  .subcatalog-page__sort-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .subcatalog-page__sort-right .nativejs-select {
      margin-left: 0.69444vw; }
      .subcatalog-page__sort-right .nativejs-select_active .nativejs-select__placeholder {
        border-radius: 1.38889vw 1.38889vw 0 0; }
        @media (min-width: 1800px) {
          .subcatalog-page__sort-right .nativejs-select_active .nativejs-select__placeholder {
            border-radius: 20px 20px 0 0; } }
      .subcatalog-page__sort-right .nativejs-select__placeholder {
        padding-left: 2.77778vw;
        background: #fff url("../images/sprites/svg/grid.svg") no-repeat left 1.11111vw center;
        background-size: 1.25vw; }
        @media (min-width: 1800px) {
          .subcatalog-page__sort-right .nativejs-select__placeholder {
            background: #fff url("../images/sprites/svg/grid.svg") no-repeat left 16px center;
            padding-left: 40px;
            background-size: 18px; } }
        @media (max-width: 1024px) {
          .subcatalog-page__sort-right .nativejs-select__placeholder {
            background: #fff url("../images/sprites/svg/grid.svg") no-repeat left 5vmin center;
            padding-left: 12.5vmin;
            background-size: 5.625vmin; } }
      @media (min-width: 1800px) {
        .subcatalog-page__sort-right .nativejs-select {
          margin-left: 10px; } }
      @media (max-width: 1024px) {
        .subcatalog-page__sort-right .nativejs-select {
          margin-left: 3.125vmin; } }
  @media (min-width: 1800px) {
    .subcatalog-page__sort {
      padding-left: 20px; } }
  @media (max-width: 1024px) {
    .subcatalog-page__sort {
      padding-left: 6.25vmin; } }

.subcatalog-page__filter {
  padding-right: 0;
  display: none; }
  .subcatalog-page__filter.is-active {
    display: block; }

.subcatalog-page__products-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -0.69444vw;
  margin-right: -0.69444vw; }
  .subcatalog-page__products-list .product-box {
    -ms-flex-preferred-size: calc(25% - 1.38889vw);
        flex-basis: calc(25% - 1.38889vw);
    width: calc(25% - 1.38889vw);
    margin-left: 0.69444vw;
    margin-right: 0.69444vw;
    margin-bottom: 1.38889vw; }
    @media (min-width: 1800px) {
      .subcatalog-page__products-list .product-box {
        -ms-flex-preferred-size: calc(25% - 20px);
            flex-basis: calc(25% - 20px);
        width: calc(25% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .subcatalog-page__products-list .product-box {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 6.25vmin; } }
  @media (min-width: 1800px) {
    .subcatalog-page__products-list {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1024px) {
    .subcatalog-page__products-list {
      margin-left: 0;
      margin-right: 0; } }

.subcatalog-page__pagination {
  margin-top: 1.80556vw; }
  @media (min-width: 1800px) {
    .subcatalog-page__pagination {
      margin-top: 26px; } }
  @media (max-width: 1024px) {
    .subcatalog-page__pagination {
      margin-top: 8.125vmin;
      margin-bottom: 13.75vmin; } }

.subcatalog-page__seo {
  margin-top: 6.66667vw;
  font-size: 1.04167vw;
  line-height: 1.94444vw;
  padding-left: 21.875vw;
  margin-bottom: 6.94444vw; }
  .subcatalog-page__seo-image {
    margin-bottom: 2.43056vw; }
    @media (min-width: 1800px) {
      .subcatalog-page__seo-image {
        margin-bottom: 35px; } }
    @media (max-width: 1024px) {
      .subcatalog-page__seo-image {
        margin-bottom: 10.9375vmin; }
        .subcatalog-page__seo-image img {
          width: 100%; } }
  .subcatalog-page__seo h3 {
    font-size: 1.18056vw;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0.76389vw; }
    @media (min-width: 1800px) {
      .subcatalog-page__seo h3 {
        font-size: 17px;
        margin-bottom: 11px; } }
    @media (max-width: 1024px) {
      .subcatalog-page__seo h3 {
        font-size: 5.3125vmin;
        margin-bottom: 3.4375vmin; } }
  @media (min-width: 1800px) {
    .subcatalog-page__seo {
      margin-top: 96px;
      font-size: 15px;
      line-height: 28px;
      padding-left: 315px;
      margin-bottom: 100px; } }
  @media (max-width: 1024px) {
    .subcatalog-page__seo {
      margin-top: 0;
      font-size: 4.6875vmin;
      line-height: 8.75vmin;
      padding-left: 0;
      margin-bottom: 15.625vmin; } }

.cart-page {
  padding-bottom: 6.94444vw; }
  .cart-page__top {
    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;
    margin-bottom: 1.52778vw; }
    .cart-page__top--not-available {
      margin-top: 2.77778vw; }
      @media (min-width: 1800px) {
        .cart-page__top--not-available {
          margin-top: 40px; } }
      @media (max-width: 1024px) {
        .cart-page__top--not-available {
          margin-top: 12.5vmin; } }
    .cart-page__top-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    @media (min-width: 1800px) {
      .cart-page__top {
        margin-bottom: 22px; } }
    @media (max-width: 1024px) {
      .cart-page__top {
        margin-bottom: 4.375vmin; } }
  .cart-page__available-top {
    font-weight: 500;
    font-size: 1.45833vw;
    line-height: 1.94444vw;
    margin-right: 3.19444vw; }
    @media (min-width: 1800px) {
      .cart-page__available-top {
        font-size: 21px;
        line-height: 28px;
        margin-right: 46px; } }
    @media (max-width: 1024px) {
      .cart-page__available-top {
        font-size: 5.625vmin;
        line-height: 8.75vmin;
        margin-right: 14.375vmin; } }
  .cart-page__back {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #0050E0;
    font-size: 1.04167vw; }
    .cart-page__back svg {
      width: 0.90278vw;
      height: 0.83333vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .cart-page__back svg {
          width: 13px;
          height: 12px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .cart-page__back svg {
          width: 4.0625vmin;
          height: 3.75vmin;
          margin-right: 3.125vmin; } }
    @media (min-width: 1800px) {
      .cart-page__back {
        font-size: 15px; } }
    @media (max-width: 1024px) {
      .cart-page__back {
        font-size: 4.0625vmin;
        margin-top: 7.5vmin; } }
  .cart-page__delete-selected {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: none;
    background-color: transparent;
    padding: 0;
    font-size: 1.04167vw; }
    .cart-page__delete-selected svg {
      width: 1.18056vw;
      height: 1.38889vw;
      margin-right: 0.55556vw;
      color: #0050E0; }
      @media (min-width: 1800px) {
        .cart-page__delete-selected svg {
          width: 17px;
          height: 20px;
          margin-right: 8px; } }
      @media (max-width: 1024px) {
        .cart-page__delete-selected svg {
          width: 5.3125vmin;
          height: 6.25vmin;
          margin-right: 2.5vmin; } }
    @media (min-width: 1800px) {
      .cart-page__delete-selected {
        font-size: 15px; } }
    @media (max-width: 1024px) {
      .cart-page__delete-selected {
        font-size: 4.0625vmin;
        white-space: nowrap; } }
  .cart-page__callback {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 0.83333vw;
    margin-left: 2.77778vw;
    font-size: 1.04167vw;
    font-weight: 500;
    color: #0050E0; }
    @media (min-width: 1800px) {
      .cart-page__callback {
        margin-top: 12px;
        margin-left: 40px;
        font-size: 15px; } }
    @media (max-width: 1024px) {
      .cart-page__callback {
        margin-top: 3.75vmin;
        margin-left: 12.5vmin;
        font-size: 4.6875vmin; } }
  .cart-page .checkbox__text:before {
    background-color: #fff;
    border: 1px solid rgba(0, 80, 224, 0.2); }
  .cart-page .radio__text {
    padding-left: 2.08333vw; }
    .cart-page .radio__text:before {
      border: 1px solid #D6DAE9; }
    @media (min-width: 1800px) {
      .cart-page .radio__text {
        padding-left: 30px; } }
    @media (max-width: 1024px) {
      .cart-page .radio__text {
        padding-left: 9.375vmin; } }
  .cart-page__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 1024px) {
      .cart-page__container {
        display: block; } }
  .cart-page__main {
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1;
    padding-right: 1.38889vw; }
    @media (min-width: 1800px) {
      .cart-page__main {
        padding-right: 20px; } }
    @media (max-width: 1024px) {
      .cart-page__main {
        padding-right: 0; } }
  .cart-page__aside {
    -ms-flex-preferred-size: 32.31%;
        flex-basis: 32.31%;
    max-width: 32.31%; }
    @media (max-width: 1024px) {
      .cart-page__aside {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        max-width: 100%; } }
  .cart-page__header {
    padding-bottom: 1.52778vw;
    margin-bottom: 1.38889vw;
    border-bottom: 1px solid #E2E2EA;
    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;
    color: #5A6C7D; }
    .cart-page__header-left {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .cart-page__header-left .checkbox__text {
        padding-left: 2.5vw; }
        @media (min-width: 1800px) {
          .cart-page__header-left .checkbox__text {
            padding-left: 36px; } }
        @media (max-width: 1024px) {
          .cart-page__header-left .checkbox__text {
            padding-left: 7.5vmin; } }
      .cart-page__header-left > * {
        margin-right: 1.25vw; }
        @media (min-width: 1800px) {
          .cart-page__header-left > * {
            margin-right: 18px; } }
        @media (max-width: 1024px) {
          .cart-page__header-left > * {
            margin-right: 0; } }
      @media (max-width: 1024px) {
        .cart-page__header-left {
          width: 100%;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between; } }
    .cart-page__header-btn {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: 1.04167vw;
      border: none;
      background-color: transparent;
      color: #5A6C7D; }
      .cart-page__header-btn:hover {
        color: #0050E0; }
      .cart-page__header-btn svg {
        width: 1.04167vw;
        height: 1.04167vw;
        margin-right: 0.41667vw;
        color: #0050E0; }
        @media (min-width: 1800px) {
          .cart-page__header-btn svg {
            width: 15px;
            height: 15px;
            margin-right: 6px; } }
        @media (max-width: 1024px) {
          .cart-page__header-btn svg {
            width: 4.6875vmin;
            height: 4.6875vmin;
            margin-right: 1.875vmin; } }
      @media (min-width: 1800px) {
        .cart-page__header-btn {
          font-size: 15px; } }
      @media (max-width: 1024px) {
        .cart-page__header-btn {
          font-size: 4.0625vmin; } }
    @media (min-width: 1800px) {
      .cart-page__header {
        padding-bottom: 22px;
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .cart-page__header {
        padding-bottom: 0;
        margin-bottom: 5.625vmin;
        border: none;
        width: 100%; } }
  .cart-page__unchecked {
    margin-right: 1.38889vw;
    margin-right: 1.38889vw; }
    .cart-page__unchecked svg {
      width: 0.90278vw;
      height: 0.90278vw; }
      @media (min-width: 1800px) {
        .cart-page__unchecked svg {
          width: 13px;
          height: 13px; } }
      @media (max-width: 1024px) {
        .cart-page__unchecked svg {
          width: 4.0625vmin;
          height: 4.0625vmin; } }
    @media (max-width: 1024px) {
      .cart-page__unchecked {
        display: none; } }
  .cart-page__del svg {
    width: 1.25vw;
    height: 1.25vw; }
    @media (max-width: 1024px) {
      .cart-page__del svg {
        width: 5.625vmin;
        height: 5.625vmin; } }
  @media (max-width: 1024px) {
    .cart-page__pdf-link {
      display: none; } }
  .cart-page__pagination {
    margin-top: 2.77778vw;
    padding-left: 2.77778vw; }
    @media (min-width: 1800px) {
      .cart-page__pagination {
        margin-top: 40px;
        padding-left: 40px; } }
    @media (max-width: 1024px) {
      .cart-page__pagination {
        margin-top: 8.75vmin; } }
  @media (max-width: 1024px) {
    .cart-page__delivery {
      margin-top: 0;
      padding-top: 0;
      border: none; } }
  @media (max-width: 1024px) {
    .cart-page__type-client .delivery__tab {
      margin-right: 0; } }
  @media (max-width: 1024px) {
    .cart-page__type-client .delivery__tabs {
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  @media (max-width: 1024px) {
    .cart-page__type-client {
      margin-top: 11.25vmin; } }

@media (max-width: 1024px) {
  .type-client__form .btn--send {
    width: 100%; } }

.cart-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 2.77778vw;
  position: relative;
  margin-bottom: 0.97222vw; }
  .cart-product__image {
    width: 9.72222vw;
    height: 9.72222vw;
    -ms-flex-preferred-size: 9.72222vw;
        flex-basis: 9.72222vw;
    border-radius: 1.38889vw;
    position: relative;
    overflow: hidden;
    border: 1px solid #F1F3FA; }
    @media (min-width: 1800px) {
      .cart-product__image {
        width: 140px;
        height: 140px;
        -ms-flex-preferred-size: 140px;
            flex-basis: 140px;
        border-radius: 20px; } }
    @media (max-width: 1024px) {
      .cart-product__image {
        width: 28.125vmin;
        height: 23.75vmin;
        -ms-flex-preferred-size: 28.125vmin;
            flex-basis: 28.125vmin;
        border-radius: 3.125vmin;
        overflow: hidden;
        position: relative; }
        .cart-product__image img {
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
              -ms-transform: translate(-50%, -50%);
                  transform: translate(-50%, -50%); } }
  .cart-product__desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1; }
    @media (max-width: 1024px) {
      .cart-product__desc {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }
  .cart-product__info {
    padding-left: 1.38889vw; }
    @media (min-width: 1800px) {
      .cart-product__info {
        padding-left: 20px; } }
    @media (max-width: 1024px) {
      .cart-product__info {
        padding-left: 5.625vmin;
        -ms-flex-preferred-size: calc(100% - 28.125vmin);
            flex-basis: calc(100% - 28.125vmin); } }
  .cart-product__title {
    font-size: 1.18056vw;
    line-height: 1.94444vw;
    margin-bottom: 0.34722vw;
    font-weight: 500; }
    @media (min-width: 1800px) {
      .cart-product__title {
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 5px; } }
    @media (max-width: 1024px) {
      .cart-product__title {
        font-size: 4.21875vmin;
        line-height: 5.625vmin;
        margin-bottom: 1.5625vmin; } }
  .cart-product__subtitle {
    font-size: 0.90278vw;
    color: #5A6C7D;
    line-height: 1.38889vw;
    margin-bottom: 1.11111vw; }
    @media (min-width: 1800px) {
      .cart-product__subtitle {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 16px; } }
    @media (max-width: 1024px) {
      .cart-product__subtitle {
        font-size: 3.4375vmin;
        line-height: 5.15625vmin;
        margin-bottom: 1.875vmin; } }
  .cart-product__article {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.04167vw;
    margin-bottom: 1.31944vw; }
    @media (min-width: 1800px) {
      .cart-product__article {
        font-size: 15px;
        margin-bottom: 19px; } }
    @media (max-width: 1024px) {
      .cart-product__article {
        font-size: 3.4375vmin;
        margin-bottom: 5.9375vmin; } }
    .cart-product__article svg {
      width: 1.11111vw;
      height: 1.11111vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .cart-product__article svg {
          width: 16px;
          height: 16px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .cart-product__article svg {
          width: 3.75vmin;
          height: 3.75vmin;
          margin-right: 3.125vmin; } }
  .cart-product__delete {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.04167vw;
    border: none;
    background-color: transparent;
    color: #5A6C7D;
    position: relative;
    top: -0.97222vw;
    right: -0.55556vw; }
    .cart-product__delete:hover {
      color: #0050E0; }
    .cart-product__delete svg {
      width: 1.04167vw;
      height: 1.04167vw;
      margin-right: 0.69444vw;
      color: #0050E0; }
      @media (min-width: 1800px) {
        .cart-product__delete svg {
          width: 15px;
          height: 15px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .cart-product__delete svg {
          width: 4.6875vmin;
          height: 4.6875vmin;
          margin-right: 1.875vmin; } }
    @media (min-width: 1800px) {
      .cart-product__delete {
        font-size: 15px;
        top: -14px;
        right: -8px; } }
    @media (max-width: 1024px) {
      .cart-product__delete {
        font-size: 4.0625vmin;
        top: auto;
        right: auto; } }
  .cart-product__select {
    position: absolute;
    left: 0;
    top: 4.16667vw; }
    .cart-product__select .checkbox__text {
      font-size: 0; }
      @media (max-width: 1024px) {
        .cart-product__select .checkbox__text {
          font-size: 4.0625vmin;
          padding-left: 8.125vmin; } }
    @media (min-width: 1800px) {
      .cart-product__select {
        top: 60px; } }
    @media (max-width: 1024px) {
      .cart-product__select {
        top: auto;
        left: auto;
        position: relative;
        margin-right: 7.5vmin; } }
  .cart-product__nav {
    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;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
    .cart-product__nav-top {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      width: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      @media (max-width: 1024px) {
        .cart-product__nav-top {
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
              -ms-flex-direction: row;
                  flex-direction: row;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          margin-top: 3.125vmin;
          margin-bottom: 6.25vmin; } }
    @media (max-width: 1024px) {
      .cart-product__nav-bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        margin-top: 8.75vmin; } }
    @media (max-width: 1024px) {
      .cart-product__nav-middle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%; } }
    .cart-product__nav-middle .cart-product__available {
      font-size: 3.75vmin;
      margin-left: 6.25vmin; }
    .cart-product__nav-middle .cart-product__article {
      margin-bottom: 0; }
  @media (max-width: 1024px) {
    .cart-product__tags {
      display: none; } }
  .cart-product__tag {
    font-size: 1.04167vw;
    height: 2.08333vw;
    padding-left: 0.69444vw;
    padding-right: 0.69444vw;
    color: #FF8A00; }
    @media (min-width: 1800px) {
      .cart-product__tag {
        font-size: 15px;
        height: 30px;
        padding-left: 10px;
        padding-right: 10px; } }
  .cart-product__priceblock {
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0.27778vw; }
    @media (max-width: 1024px) {
      .cart-product__priceblock {
        text-align: left;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .cart-product__price {
    font-size: 1.18056vw;
    line-height: 1.94444vw;
    font-weight: 500;
    margin-bottom: 0.41667vw;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
    @media (min-width: 1800px) {
      .cart-product__price {
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 6px; } }
    @media (max-width: 1024px) {
      .cart-product__price {
        font-size: 4.6875vmin;
        line-height: 5.625vmin;
        margin-bottom: 1.25vmin;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; } }
  .cart-product__available {
    font-size: 0.90278vw;
    line-height: 1.38889vw;
    color: #5A6C7D;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-right: 1.25vw; }
    @media (min-width: 1800px) {
      .cart-product__available {
        font-size: 13px;
        line-height: 20px; } }
    @media (max-width: 1024px) {
      .cart-product__available {
        font-size: 2.96875vmin;
        line-height: 3.75vmin;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; } }
  .cart-product .number {
    -webkit-box-shadow: 0px 10px 40px rgba(0, 155, 122, 0.1);
            box-shadow: 0px 10px 40px rgba(0, 155, 122, 0.1); }
    @media (max-width: 1024px) {
      .cart-product .number {
        margin-left: 0;
        margin-right: 4.0625vmin; } }
  @media (min-width: 1800px) {
    .cart-product {
      padding-left: 40px;
      margin-bottom: 14px; } }
  @media (max-width: 1024px) {
    .cart-product {
      padding: 5.625vmin 1.5625vmin 5.625vmin 5vmin;
      margin-bottom: 3.125vmin;
      border-radius: 6.25vmin;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      background-color: #fff; } }

.delivery {
  margin-bottom: 4.86111vw; }
  .delivery__title {
    margin-top: 0;
    margin-bottom: 1.38889vw;
    font-size: 1.45833vw;
    line-height: 1.94444vw;
    font-weight: 500; }
    @media (min-width: 1800px) {
      .delivery__title {
        margin-bottom: 20px;
        font-size: 21px;
        line-height: 28px; } }
    @media (max-width: 1024px) {
      .delivery__title {
        margin-bottom: 5vmin;
        font-size: 5.625vmin;
        line-height: 6.875vmin; } }
  .delivery__title-h2 {
    font-size: 1.45833vw;
    line-height: 1.94444vw;
    font-weight: 500;
    margin-bottom: 1.38889vw; }
    @media (min-width: 1800px) {
      .delivery__title-h2 {
        font-size: 21px;
        line-height: 28px;
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .delivery__title-h2 {
        font-size: 5.625vmin;
        line-height: 8.75vmin;
        margin-bottom: 0vmin; } }
  @media (max-width: 1024px) {
    .delivery__row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .delivery__prev-add {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.04167vw;
    line-height: 1.66667vw;
    margin-bottom: 2.36111vw;
    padding-bottom: 3.47222vw;
    border-bottom: 1px solid #E5EAEF; }
    .delivery__prev-add .btn {
      height: 3.75vw;
      padding-left: 1.73611vw;
      padding-right: 1.73611vw; }
      @media (min-width: 1800px) {
        .delivery__prev-add .btn {
          height: 54px;
          padding-left: 25px;
          padding-right: 25px; } }
      @media (max-width: 1024px) {
        .delivery__prev-add .btn {
          height: 13.75vmin;
          width: 100%; } }
    .delivery__prev-add .nativejs-select {
      margin-left: 2.08333vw;
      margin-right: 1.38889vw;
      width: 100%;
      max-width: 21.80556vw; }
      .delivery__prev-add .nativejs-select__placeholder {
        -webkit-box-shadow: 0px 10px 40px rgba(148, 164, 180, 0.1);
                box-shadow: 0px 10px 40px rgba(148, 164, 180, 0.1);
        height: 3.75vw;
        border-radius: 0.69444vw; }
        .delivery__prev-add .nativejs-select__placeholder-value {
          font-weight: 400;
          color: #343B4C; }
        @media (min-width: 1800px) {
          .delivery__prev-add .nativejs-select__placeholder {
            height: 54px;
            border-radius: 10px; } }
        @media (max-width: 1024px) {
          .delivery__prev-add .nativejs-select__placeholder {
            height: 13.75vmin;
            border-radius: 3.125vmin; } }
      @media (min-width: 1800px) {
        .delivery__prev-add .nativejs-select {
          margin-left: 30px;
          margin-right: 20px;
          max-width: 314px; } }
      @media (max-width: 1024px) {
        .delivery__prev-add .nativejs-select {
          margin-left: 0;
          margin-right: 0;
          margin-bottom: 3.125vmin;
          margin-top: 3.75vmin;
          max-width: 118.75vmin; } }
    @media (min-width: 1800px) {
      .delivery__prev-add {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 34px;
        padding-bottom: 50px; } }
    @media (max-width: 1024px) {
      .delivery__prev-add {
        font-size: 3.90625vmin;
        line-height: 7.5vmin;
        margin-bottom: 8.125vmin;
        -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;
        padding-bottom: 0;
        border-bottom: none; } }
  .delivery__new-add-block {
    margin-bottom: 13.125vmin; }
    @media (min-width: 1800px) {
      .delivery__new-add-block {
        margin-bottom: 42px; } }
    @media (max-width: 1024px) {
      .delivery__new-add-block {
        margin-bottom: 10vmin; } }
  .delivery__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #D6DAE9;
    margin-bottom: 1.80556vw; }
    @media (min-width: 1800px) {
      .delivery__tabs {
        margin-bottom: 26px; } }
    @media (max-width: 1024px) {
      .delivery__tabs {
        margin-bottom: 8.125vmin; } }
  .delivery__tab {
    font-size: 1.18056vw;
    line-height: 1.45833vw;
    font-weight: 500;
    padding: 1.38889vw;
    cursor: pointer;
    color: #5A6C7D;
    position: relative; }
    .delivery__tab:after {
      content: "";
      position: absolute;
      bottom: -0.20833vw;
      left: 0;
      right: 0;
      height: 0.34722vw;
      visibility: hidden;
      opacity: 0;
      border-radius: 12px;
      background-color: #0050E0; }
      @media (min-width: 1800px) {
        .delivery__tab:after {
          bottom: -3px;
          height: 5px; } }
      @media (max-width: 1024px) {
        .delivery__tab:after {
          bottom: -0.9375vmin;
          height: 1.5625vmin; } }
    .delivery__tab.active {
      color: #0050E0; }
      .delivery__tab.active:after {
        visibility: visible;
        opacity: 1; }
    @media (min-width: 1800px) {
      .delivery__tab {
        font-size: 17px;
        line-height: 21px;
        padding: 20px; } }
    @media (max-width: 1024px) {
      .delivery__tab {
        font-size: 4.6875vmin;
        line-height: 6.5625vmin;
        padding: 4.375vmin 0;
        margin-right: 3.75vmin; } }
  .delivery__tab-item h3 {
    font-size: 1.45833vw;
    line-height: 1.94444vw;
    font-weight: 500; }
    @media (min-width: 1800px) {
      .delivery__tab-item h3 {
        font-size: 21px;
        line-height: 28px; } }
    @media (max-width: 1024px) {
      .delivery__tab-item h3 {
        font-size: 5.3125vmin;
        line-height: 7.5vmin; } }
  @media (min-width: 1800px) {
    .delivery {
      margin-bottom: 70px; } }
  .delivery .form__policy {
    max-width: 345px;
    width: 100% !important; }
  @media (max-width: 1024px) {
    .delivery .form__input {
      border-bottom: 1px solid #F1F3FA; } }

.post-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1.11111vw; }
  .post-service__list {
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1; }
  .post-service__image {
    -ms-flex-preferred-size: 18.47222vw;
        flex-basis: 18.47222vw;
    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; }
    .post-service__image img {
      max-width: 10.55556vw; }
      @media (min-width: 1800px) {
        .post-service__image img {
          max-width: 152px; } }
      @media (max-width: 1024px) {
        .post-service__image img {
          max-width: 47.5vmin; } }
    @media (min-width: 1800px) {
      .post-service__image {
        -ms-flex-preferred-size: 266px;
            flex-basis: 266px; } }
    @media (max-width: 1024px) {
      .post-service__image {
        display: none; } }
  .post-service__item {
    margin-bottom: 1.45833vw;
    position: relative;
    z-index: 1; }
    .post-service__item:after {
      content: "";
      position: absolute;
      left: 2.77778vw;
      right: 0;
      top: 0.69444vw;
      height: 1px;
      background-color: #D6DAE9; }
      @media (min-width: 1800px) {
        .post-service__item:after {
          left: 40px;
          top: 10px; } }
      @media (max-width: 1024px) {
        .post-service__item:after {
          left: 12.5vmin;
          top: 3.125vmin; } }
    .post-service__item .radio__text {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      position: relative;
      font-size: 1.04167vw;
      color: #343B4C;
      z-index: 2; }
      .post-service__item .radio__text span {
        background-color: #F7F9FF;
        padding: 0 0.69444vw; }
        .post-service__item .radio__text span:first-child {
          padding-left: 0; }
        .post-service__item .radio__text span:nth-child(2) {
          position: absolute;
          top: 0;
          left: 50%; }
        @media (min-width: 1800px) {
          .post-service__item .radio__text span {
            padding: 0 10px; } }
        @media (max-width: 1024px) {
          .post-service__item .radio__text span {
            padding: 0 3.125vmin; } }
      @media (min-width: 1800px) {
        .post-service__item .radio__text {
          font-size: 15px; } }
      @media (max-width: 1024px) {
        .post-service__item .radio__text {
          font-size: 4.0625vmin; } }
    .post-service__item:last-child {
      margin-bottom: 0; }
    @media (min-width: 1800px) {
      .post-service__item {
        margin-bottom: 21px; } }
    @media (max-width: 1024px) {
      .post-service__item {
        margin-bottom: 4.375vmin; } }
  @media (min-width: 1800px) {
    .post-service {
      padding-top: 16px; } }
  @media (max-width: 1024px) {
    .post-service {
      padding-top: 1.25vmin; } }

.terminals {
  margin-top: 2.08333vw;
  background: #FFFFFF;
  border: 1px solid #F1F3FA;
  -webkit-box-shadow: 0px 10px 40px rgba(148, 164, 180, 0.1);
          box-shadow: 0px 10px 40px rgba(148, 164, 180, 0.1);
  border-radius: 1.38889vw;
  padding: 0.69444vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .terminals__list {
    padding: 1.38889vw;
    padding-right: 1.38889vw;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%; }
    @media (min-width: 1800px) {
      .terminals__list {
        padding: 20px;
        padding-right: 20px; } }
    @media (max-width: 1024px) {
      .terminals__list {
        padding: 0;
        padding-right: 0; } }
  .terminals__map {
    background-color: #f7f7f7;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    border-radius: 1.38889vw;
    position: relative;
    overflow: hidden;
    padding-left: 0.69444vw; }
    @media (min-width: 1800px) {
      .terminals__map {
        border-radius: 20px;
        padding-left: 10px; } }
    @media (max-width: 1024px) {
      .terminals__map {
        border-radius: 6.25vmin;
        padding-left: 3.125vmin;
        min-height: 38.75vmin; } }
  .terminals__inputs {
    height: 13.88889vw;
    overflow-y: scroll; }
    @media (min-width: 1800px) {
      .terminals__inputs {
        height: 200px; } }
    @media (max-width: 1024px) {
      .terminals__inputs {
        height: 62.5vmin;
        margin-bottom: 6.25vmin; } }
  .terminals__search-input {
    width: 100%;
    height: 3.81944vw;
    border-radius: 0.69444vw;
    border: 1px solid #0050E0;
    text-indent: 2.08333vw;
    margin-bottom: 2.08333vw; }
    @media (min-width: 1800px) {
      .terminals__search-input {
        height: 55px;
        border-radius: 10px;
        text-indent: 30px;
        margin-bottom: 30px; } }
    @media (max-width: 1024px) {
      .terminals__search-input {
        height: 14.375vmin;
        border-radius: 3.125vmin;
        text-indent: 3.75vmin;
        margin-bottom: 6.875vmin; } }
  .terminals .radio {
    margin-bottom: 1.38889vw; }
    @media (max-width: 1024px) {
      .terminals .radio__text {
        font-size: 4.0625vmin; } }
    @media (min-width: 1800px) {
      .terminals .radio {
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .terminals .radio {
        margin-bottom: 6.25vmin; } }
  @media (min-width: 1800px) {
    .terminals {
      margin-top: 30px;
      border-radius: 20px;
      padding: 10px; } }
  @media (max-width: 1024px) {
    .terminals {
      margin-top: 6.25vmin;
      border-radius: 6.25vmin;
      padding: 5.625vmin 6.25vmin;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.order-info {
  background: #FFFFFF;
  border: 1px solid #F1F3FA;
  border-radius: 2.08333vw;
  padding: 2.08333vw;
  padding-top: 1.66667vw;
  position: sticky;
  top: 1.73611vw; }
  .order-info__availableproduct {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.04167vw;
    line-height: 1.66667vw;
    color: #5A6C7D;
    margin-bottom: 2.5vw; }
    .order-info__availableproduct a {
      color: #0050E0;
      font-weight: 500; }
    .order-info__availableproduct:before {
      content: "";
      width: 3.05556vw;
      height: 3.05556vw;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-right: 0.97222vw;
      border-radius: 0.69444vw;
      background: #F2F5FF url(../images/sprites/svg/check-green.svg) no-repeat center center;
      background-size: 1.25vw; }
      @media (min-width: 1800px) {
        .order-info__availableproduct:before {
          width: 44px;
          height: 44px;
          margin-right: 14px;
          border-radius: 10px;
          background-size: 18px; } }
      @media (max-width: 1024px) {
        .order-info__availableproduct:before {
          width: 11.875vmin;
          height: 11.875vmin;
          margin-right: 3.125vmin;
          border-radius: 3.125vmin;
          background-size: 5.625vmin; } }
    @media (min-width: 1800px) {
      .order-info__availableproduct {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 36px; } }
    @media (max-width: 1024px) {
      .order-info__availableproduct {
        font-size: 4.0625vmin;
        line-height: 6.25vmin;
        margin-bottom: 5vmin;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
  .order-info__shipment {
    margin-bottom: 1.80556vw; }
    .order-info__shipment-title {
      font-size: 1.04167vw;
      font-weight: 500;
      margin-bottom: 1.38889vw; }
      @media (min-width: 1800px) {
        .order-info__shipment-title {
          font-size: 15px;
          margin-bottom: 20px; } }
      @media (max-width: 1024px) {
        .order-info__shipment-title {
          font-size: 4.0625vmin;
          margin-bottom: 3.125vmin; } }
    .order-info__shipment-item {
      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;
      font-size: 1.04167vw;
      margin-bottom: 0.97222vw;
      color: #5A6C7D;
      position: relative;
      z-index: 1; }
      .order-info__shipment-item--pay:after {
        display: none; }
      .order-info__shipment-item:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0.76389vw;
        height: 1px;
        background-color: #F1F3FA; }
        @media (min-width: 1800px) {
          .order-info__shipment-item:after {
            top: 11px; } }
        @media (max-width: 1024px) {
          .order-info__shipment-item:after {
            top: 4.375vmin; } }
      .order-info__shipment-item span:first-child {
        padding-right: 0.69444vw;
        background-color: #fff;
        z-index: 1; }
        @media (min-width: 1800px) {
          .order-info__shipment-item span:first-child {
            padding-right: 10px; } }
        @media (max-width: 1024px) {
          .order-info__shipment-item span:first-child {
            padding-right: 3.125vmin; } }
      .order-info__shipment-item span:last-child {
        padding-left: 0.69444vw;
        background-color: #fff;
        z-index: 1; }
        @media (min-width: 1800px) {
          .order-info__shipment-item span:last-child {
            padding-left: 10px; } }
        @media (max-width: 1024px) {
          .order-info__shipment-item span:last-child {
            padding-left: 3.125vmin; } }
      @media (min-width: 1800px) {
        .order-info__shipment-item {
          font-size: 15px;
          margin-bottom: 14px; } }
      @media (max-width: 1024px) {
        .order-info__shipment-item {
          font-size: 4.0625vmin;
          margin-bottom: 4.375vmin; } }
    @media (min-width: 1800px) {
      .order-info__shipment {
        margin-bottom: 26px; } }
    @media (max-width: 1024px) {
      .order-info__shipment {
        margin-bottom: 7.5vmin; } }
  .order-info__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;
    margin-bottom: 1.94444vw; }
    @media (min-width: 1800px) {
      .order-info__header {
        margin-bottom: 28px; } }
    @media (max-width: 1024px) {
      .order-info__header {
        margin-bottom: 3.75vmin; } }
  .order-info__title {
    font-size: 1.45833vw;
    line-height: 1.94444vw;
    font-weight: 500;
    margin: 0; }
    @media (min-width: 1800px) {
      .order-info__title {
        font-size: 21px;
        line-height: 28px; } }
    @media (max-width: 1024px) {
      .order-info__title {
        font-size: 5.78125vmin;
        line-height: 8.75vmin; } }
  .order-info__print {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: none;
    background-color: transparent;
    padding-right: 0;
    font-size: 1.04167vw; }
    .order-info__print:hover {
      color: #0050E0; }
    .order-info__print svg {
      width: 1.38889vw;
      height: 1.38889vw;
      margin-right: 0.55556vw;
      color: #0050E0; }
      @media (min-width: 1800px) {
        .order-info__print svg {
          width: 16px;
          height: 16px;
          margin-right: 8px; } }
      @media (max-width: 1024px) {
        .order-info__print svg {
          width: 5vmin;
          height: 5vmin;
          margin-right: 2.5vmin; } }
    @media (min-width: 1800px) {
      .order-info__print {
        font-size: 15px; } }
    @media (max-width: 1024px) {
      .order-info__print {
        font-size: 4.0625vmin; } }
  @media (max-width: 1024px) {
    .order-info .btn--share {
      padding: 0;
      min-width: auto !important; } }
  .order-info__count-product {
    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;
    font-size: 1.04167vw;
    line-height: 1.38889vw;
    margin-bottom: 2.36111vw;
    color: #5A6C7D;
    position: relative;
    z-index: 1; }
    .order-info__count-product:after {
      content: "";
      position: absolute;
      top: 0.83333vw;
      left: 0;
      right: 0;
      background-color: #F1F3FA;
      height: 1px; }
      @media (min-width: 1800px) {
        .order-info__count-product:after {
          top: 12px; } }
      @media (max-width: 1024px) {
        .order-info__count-product:after {
          top: 3.75vmin; } }
    .order-info__count-product svg {
      width: 1.38889vw;
      height: 1.38889vw;
      margin-right: 0.69444vw;
      color: #0050E0; }
      @media (min-width: 1800px) {
        .order-info__count-product svg {
          width: 20px;
          height: 20px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .order-info__count-product svg {
          width: 5.625vmin;
          height: 5.625vmin;
          margin-right: 2.5vmin; } }
    .order-info__count-product-title {
      background-color: #fff;
      position: relative;
      z-index: 1;
      padding-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .order-info__count-product-title {
          padding-right: 10px; } }
      @media (max-width: 1024px) {
        .order-info__count-product-title {
          padding-right: 3.125vmin; } }
    .order-info__count-product-price {
      background-color: #fff;
      position: relative;
      z-index: 1;
      padding-left: 0.69444vw; }
      @media (min-width: 1800px) {
        .order-info__count-product-price {
          padding-left: 10px; } }
      @media (max-width: 1024px) {
        .order-info__count-product-price {
          padding-left: 3.125vmin; } }
    @media (min-width: 1800px) {
      .order-info__count-product {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 34px; } }
    @media (max-width: 1024px) {
      .order-info__count-product {
        font-size: 4.0625vmin;
        line-height: 5.9375vmin;
        margin-bottom: 5.625vmin; } }
  .order-info__nds {
    font-size: 0.80278vw;
    font-weight: 400;
    color: #94A4B4;
    margin-left: 0.69444vw; }
    @media (min-width: 1800px) {
      .order-info__nds {
        font-size: 13px;
        margin-left: 10px; } }
    @media (max-width: 1024px) {
      .order-info__nds {
        font-size: 2.8125vmin;
        margin-left: 3.125vmin; } }
  .order-info__price {
    font-size: 2.08333vw;
    line-height: 1.94444vw;
    font-weight: 500;
    margin-bottom: 1.38889vw; }
    @media (min-width: 1800px) {
      .order-info__price {
        font-size: 30px;
        line-height: 28px;
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .order-info__price {
        font-size: 8.125vmin;
        line-height: 8.75vmin;
        margin-bottom: 6.25vmin;
        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; } }
  .order-info__footer {
    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; }
    @media (max-width: 1024px) {
      .order-info__footer .btn--share {
        text-align: left; } }
    @media (max-width: 1024px) {
      .order-info__footer .btn {
        width: 100%;
        height: 14.375vmin;
        margin-left: 1.875vmin;
        margin-right: 1.875vmin; } }
  @media (min-width: 1800px) {
    .order-info {
      border-radius: 30px;
      padding: 30px;
      padding-top: 24px;
      top: 25px; } }
  @media (max-width: 1024px) {
    .order-info {
      border-radius: 6.25vmin;
      padding: 5vmin;
      padding-top: 6.25vmin;
      padding-bottom: 7.5vmin;
      top: 7.8125vmin;
      position: relative;
      margin-left: 0;
      margin-right: 0;
      margin-top: 5vmin; } }

.checkout-page__btns {
  margin-bottom: 2.63889vw; }
  .checkout-page__btns .btn {
    height: 3.81944vw;
    padding-left: 2.08333vw;
    padding-right: 2.08333vw;
    margin-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .checkout-page__btns .btn {
        height: 55px;
        padding-left: 30px;
        padding-right: 30px;
        margin-right: 10px; } }
  @media (min-width: 1800px) {
    .checkout-page__btns {
      margin-bottom: 38px; } }

.checkout-page__rekv {
  margin-bottom: 3.47222vw;
  padding-bottom: 3.47222vw;
  border-bottom: 1px solid #E5EAEF; }
  .checkout-page__rekv-title {
    font-size: 1.45833vw;
    line-height: 1.94444vw;
    font-weight: 500;
    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;
    margin-bottom: 1.18056vw;
    cursor: pointer; }
    .checkout-page__rekv-title:after {
      content: "";
      width: 3.125vw;
      height: 3.125vw;
      border-radius: 0.69444vw;
      background: #fff url(../images/sprites/svg/angle-up-blue.svg) no-repeat center center;
      background-size: 0.97222vw; }
      @media (min-width: 1800px) {
        .checkout-page__rekv-title:after {
          width: 45px;
          height: 45px;
          border-radius: 10px;
          background: #fff url(../images/sprites/svg/angle-up-blue.svg) no-repeat center center;
          background-size: 14px; } }
      @media (max-width: 1024px) {
        .checkout-page__rekv-title:after {
          width: 14.0625vmin;
          height: 14.0625vmin;
          border-radius: 3.125vmin;
          background: #fff url(../images/sprites/svg/angle-up-blue.svg) no-repeat center center;
          background-size: 4.375vmin; } }
    .checkout-page__rekv-title.is-active:after {
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); }
    @media (min-width: 1800px) {
      .checkout-page__rekv-title {
        font-size: 21px;
        line-height: 28px;
        margin-bottom: 17px; } }
    @media (max-width: 1024px) {
      .checkout-page__rekv-title {
        font-size: 5.625vmin;
        line-height: 8.75vmin;
        margin-bottom: 3.125vmin; } }
  .checkout-page__rekv-block {
    background-color: #fff;
    border: 1px solid #F1F3FA;
    -webkit-box-shadow: 0px 10px 40px rgba(148, 164, 180, 0.1);
            box-shadow: 0px 10px 40px rgba(148, 164, 180, 0.1);
    border-radius: 1.38889vw;
    padding: 1.73611vw 2.08333vw;
    padding-bottom: 0.34722vw; }
    @media (min-width: 1800px) {
      .checkout-page__rekv-block {
        border-radius: 20px;
        padding: 25px 30px;
        padding-bottom: 5px; } }
    @media (max-width: 1024px) {
      .checkout-page__rekv-block {
        border-radius: 6.25vmin;
        padding: 6.25vmin 4.6875vmin;
        padding-bottom: 1.5625vmin; } }
  @media (min-width: 1800px) {
    .checkout-page__rekv {
      margin-bottom: 50px;
      padding-bottom: 50px; } }
  @media (max-width: 1024px) {
    .checkout-page__rekv {
      margin-bottom: 0;
      padding-bottom: 10vmin;
      border-bottom: none; } }

.cabinet {
  padding-bottom: 6.94444vw;
  margin-top: 2.5vw; }
  .cabinet__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; }
    .cabinet__title-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
  .cabinet__back {
    display: none; }
    @media (max-width: 1024px) {
      .cabinet__back {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        width: 10.9375vmin;
        height: 10.9375vmin;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        border-radius: 3.125vmin;
        background-color: #fff;
        margin-right: 4.6875vmin;
        color: #0050E0; }
        .cabinet__back svg {
          width: 3.75vmin;
          height: 3.75vmin; } }
  .cabinet .title-h1 {
    line-height: 1;
    margin-bottom: 2.91667vw; }
    @media (min-width: 1800px) {
      .cabinet .title-h1 {
        margin-bottom: 42px; } }
    @media (max-width: 1024px) {
      .cabinet .title-h1 {
        margin-bottom: 4.375vmin;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  .cabinet__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 1024px) {
      .cabinet__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .cabinet__aside {
    max-width: 20.48611vw;
    -ms-flex-preferred-size: 20.48611vw;
        flex-basis: 20.48611vw; }
    @media (min-width: 1800px) {
      .cabinet__aside {
        max-width: 295px;
        -ms-flex-preferred-size: 295px;
            flex-basis: 295px; } }
    @media (max-width: 1024px) {
      .cabinet__aside {
        max-width: 100%;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        margin-top: 6.25vmin; } }
  .cabinet__main {
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1;
    padding-left: 1.38889vw; }
    @media (min-width: 1800px) {
      .cabinet__main {
        padding-left: 20px; } }
    @media (max-width: 1024px) {
      .cabinet__main {
        padding-left: 0;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; } }
  .cabinet__pagination {
    margin-top: 2.08333vw; }
    @media (min-width: 1800px) {
      .cabinet__pagination {
        margin-top: 30px; } }
    @media (max-width: 1024px) {
      .cabinet__pagination {
        margin-top: 7.5vmin; } }
  @media (min-width: 1800px) {
    .cabinet {
      padding-bottom: 100px;
      margin-top: 36px; } }
  @media (max-width: 1024px) {
    .cabinet {
      padding-bottom: 31.25vmin;
      margin-top: 0vmin; } }

.profile .form__wrapper {
  border-radius: 0.69444vw; }
  @media (min-width: 1800px) {
    .profile .form__wrapper {
      border-radius: 10px; } }
  @media (max-width: 1024px) {
    .profile .form__wrapper {
      border-radius: 6.25vmin; } }

@media (max-width: 1024px) {
  .profile .form .form__col {
    border-bottom: 1px solid #F1F3FA; }
  .profile .form .form__row:last-child .form__col:last-child {
    border-bottom: none; } }

.profile__main {
  margin-bottom: 3.05556vw; }
  @media (min-width: 1800px) {
    .profile__main {
      margin-bottom: 44px; } }
  @media (max-width: 1024px) {
    .profile__main {
      margin-bottom: 12.5vmin; }
      .profile__main .form__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }

@media (max-width: 1024px) {
  .profile .nativejs-select__placeholder {
    height: 13.75vmin !important; } }

.profile .nativejs-select__placeholder-value {
  color: #343B4C;
  font-weight: 400;
  text-indent: 1.11111vw; }
  @media (min-width: 1800px) {
    .profile .nativejs-select__placeholder-value {
      text-indent: 16px; } }
  @media (max-width: 1024px) {
    .profile .nativejs-select__placeholder-value {
      text-indent: 5vmin; } }

.profile h3 {
  font-size: 1.45833vw;
  line-height: 1.94444vw;
  margin-bottom: 1.52778vw;
  font-weight: 500;
  margin-top: 0; }
  @media (min-width: 1800px) {
    .profile h3 {
      font-size: 21px;
      line-height: 28px;
      margin-bottom: 22px; } }
  @media (max-width: 1024px) {
    .profile h3 {
      font-size: 5.625vmin;
      line-height: 7.5vmin;
      margin-bottom: 4.375vmin; } }

.profile h4 {
  margin-bottom: 1.66667vw;
  font-size: 1.18056vw;
  font-weight: 500;
  color: #FF8A00; }
  @media (min-width: 1800px) {
    .profile h4 {
      margin-bottom: 24px;
      font-size: 17px; } }
  @media (max-width: 1024px) {
    .profile h4 {
      margin-bottom: 7.5vmin;
      font-size: 4.53125vmin;
      margin-top: 0; } }

.profile__pay-data {
  margin-bottom: 3.125vw; }
  @media (max-width: 1024px) {
    .profile__pay-data .form__row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media (min-width: 1800px) {
    .profile__pay-data {
      margin-bottom: 45px; } }
  @media (max-width: 1024px) {
    .profile__pay-data {
      margin-bottom: 13.125vmin; } }

.profile__pay-data-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.38889vw; }
  .profile__pay-data-list .nativejs-select {
    max-width: 20.48611vw;
    width: 100%;
    margin-right: 1.38889vw; }
    .profile__pay-data-list .nativejs-select__placeholder {
      height: 3.81944vw;
      -webkit-box-shadow: 0px 10px 40px rgba(148, 164, 180, 0.1);
              box-shadow: 0px 10px 40px rgba(148, 164, 180, 0.1); }
      @media (min-width: 1800px) {
        .profile__pay-data-list .nativejs-select__placeholder {
          height: 55px; } }
      @media (max-width: 1024px) {
        .profile__pay-data-list .nativejs-select__placeholder {
          height: 17.1875vmin; } }
    @media (min-width: 1800px) {
      .profile__pay-data-list .nativejs-select {
        max-width: 295px;
        margin-right: 20px; } }
    @media (max-width: 1024px) {
      .profile__pay-data-list .nativejs-select {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 3.125vmin; } }
  .profile__pay-data-list .btn {
    min-width: 15.55556vw;
    height: 3.81944vw; }
    @media (min-width: 1800px) {
      .profile__pay-data-list .btn {
        min-width: 224px;
        height: 55px; } }
    @media (max-width: 1024px) {
      .profile__pay-data-list .btn {
        min-width: 100%;
        width: 100%;
        height: 13.75vmin; } }
  @media (min-width: 1800px) {
    .profile__pay-data-list {
      margin-bottom: 20px; } }
  @media (max-width: 1024px) {
    .profile__pay-data-list {
      margin-bottom: 6.25vmin;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.profile__delevery--main {
  margin-bottom: 3.47222vw; }
  @media (min-width: 1800px) {
    .profile__delevery--main {
      margin-bottom: 50px; } }
  @media (max-width: 1024px) {
    .profile__delevery--main {
      margin-bottom: 15.625vmin; } }

.profile__delevery-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.69444vw; }
  .profile__delevery-form .form {
    width: 29.16667vw;
    margin-right: 2.91667vw; }
    @media (max-width: 1024px) {
      .profile__delevery-form .form__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    @media (min-width: 1800px) {
      .profile__delevery-form .form {
        width: 420px;
        margin-right: 42px; } }
    @media (max-width: 1024px) {
      .profile__delevery-form .form {
        width: 100%;
        margin-right: 0;
        margin-bottom: 5vmin; } }
  .profile__delevery-form > * {
    margin-right: 1.66667vw; }
    @media (min-width: 1800px) {
      .profile__delevery-form > * {
        margin-right: 24px; } }
    @media (max-width: 1024px) {
      .profile__delevery-form > * {
        margin-right: 0; } }
  .profile__delevery-form .nativejs-select {
    max-width: 29.16667vw;
    width: 100%;
    margin-right: 2.63889vw; }
    .profile__delevery-form .nativejs-select__placeholder {
      height: 4.16667vw; }
      .profile__delevery-form .nativejs-select__placeholder-value {
        text-indent: 0 !important; }
      @media (min-width: 1800px) {
        .profile__delevery-form .nativejs-select__placeholder {
          height: 60px; } }
      @media (max-width: 1024px) {
        .profile__delevery-form .nativejs-select__placeholder {
          height: 18.75vmin; } }
    @media (min-width: 1800px) {
      .profile__delevery-form .nativejs-select {
        max-width: 420px;
        margin-right: 38px; } }
    @media (max-width: 1024px) {
      .profile__delevery-form .nativejs-select {
        max-width: 100%;
        width: 100%;
        margin-right: 0;
        margin-bottom: 6.25vmin; } }
  @media (min-width: 1800px) {
    .profile__delevery-form {
      margin-bottom: 10px; } }
  @media (max-width: 1024px) {
    .profile__delevery-form {
      margin-bottom: 7.5vmin;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }

.profile__delevery-btn {
  font-size: 1.04167vw;
  font-weight: 500;
  padding: 0;
  color: #0050E0;
  background: none;
  border: none; }
  @media (min-width: 1800px) {
    .profile__delevery-btn {
      font-size: 15px; } }
  @media (max-width: 1024px) {
    .profile__delevery-btn {
      font-size: 4.0625vmin; } }

.profile__new-add {
  margin-top: 1.73611vw;
  height: 3.81944vw;
  min-width: 17.36111vw; }
  @media (min-width: 1800px) {
    .profile__new-add {
      margin-top: 25px;
      height: 55px;
      min-width: 250px; } }
  @media (max-width: 1024px) {
    .profile__new-add {
      margin-top: 0;
      height: 15vmin;
      min-width: 66.875vmin; } }

.pay-info {
  max-width: 56.94444vw; }
  .pay-info .nativejs-select {
    max-width: 20.48611vw;
    width: 100%;
    margin-right: 1.38889vw; }
    .pay-info .nativejs-select__placeholder {
      height: 3.81944vw; }
      .pay-info .nativejs-select__placeholder-value {
        font-weight: 400;
        text-indent: 1.11111vw;
        color: #343B4C; }
        @media (min-width: 1800px) {
          .pay-info .nativejs-select__placeholder-value {
            text-indent: 16px; } }
        @media (max-width: 1024px) {
          .pay-info .nativejs-select__placeholder-value {
            text-indent: 5vmin; } }
      @media (min-width: 1800px) {
        .pay-info .nativejs-select__placeholder {
          height: 55px; } }
      @media (max-width: 1024px) {
        .pay-info .nativejs-select__placeholder {
          height: 14.375vmin; } }
    @media (min-width: 1800px) {
      .pay-info .nativejs-select {
        max-width: 295px;
        margin-right: 20px; } }
    @media (max-width: 1024px) {
      .pay-info .nativejs-select {
        max-width: 100%; } }
  .pay-info__filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.25vw; }
    .pay-info__filter > * {
      margin-right: 1.38889vw; }
      @media (min-width: 1800px) {
        .pay-info__filter > * {
          margin-right: 2px; } }
      @media (max-width: 1024px) {
        .pay-info__filter > * {
          margin-right: 0;
          margin-bottom: 3.125vmin; } }
    .pay-info__filter .btn {
      height: 3.81944vw;
      min-width: 8.68056vw; }
      @media (min-width: 1800px) {
        .pay-info__filter .btn {
          height: 55px;
          min-width: 125px; } }
      @media (max-width: 1024px) {
        .pay-info__filter .btn {
          height: 14.375vmin;
          min-width: 39.0625vmin; } }
    @media (min-width: 1800px) {
      .pay-info__filter {
        margin-bottom: 18px; } }
    @media (max-width: 1024px) {
      .pay-info__filter {
        margin-bottom: 5.625vmin;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  @media (max-width: 1024px) {
    .pay-info__table-wrapper {
      position: relative;
      overflow: hidden;
      overflow-x: scroll; } }
  .pay-info__table {
    width: 100%;
    font-size: 1.04167vw;
    line-height: 1.94444vw; }
    .pay-info__table thead th {
      font-weight: 500;
      font-size: 0.90278vw;
      color: #5A6C7D;
      text-align: left;
      border-bottom: 1px solid #E5EAEF;
      padding: 0.83333vw 0; }
      @media (min-width: 1800px) {
        .pay-info__table thead th {
          font-size: 13px;
          padding: 12px 0; } }
      @media (max-width: 1024px) {
        .pay-info__table thead th {
          font-size: 3.4375vmin;
          padding: 3.75vmin 0; } }
    .pay-info__table tbody td {
      padding: 0.13889vw 0; }
    .pay-info__table b {
      font-weight: 500; }
    .pay-info__table a {
      color: #0050E0; }
    @media (min-width: 1800px) {
      .pay-info__table {
        font-size: 15px;
        line-height: 28px; } }
    @media (max-width: 1024px) {
      .pay-info__table {
        font-size: 3.4375vmin;
        line-height: 5.625vmin;
        min-width: 187.5vmin; } }
  @media (min-width: 1800px) {
    .pay-info {
      max-width: 820px; } }
  @media (max-width: 1024px) {
    .pay-info {
      max-width: 256.25vmin; } }

@media (max-width: 1024px) {
  .payer .form__col {
    border-bottom: 1px solid #F1F3FA; }
  .payer .form__row:last-child .form__col:last-child {
    border-bottom: none; } }

.payer__block {
  margin-bottom: 3.47222vw; }
  @media (min-width: 1800px) {
    .payer__block {
      margin-bottom: 50px; } }
  @media (max-width: 1024px) {
    .payer__block {
      margin-bottom: 15.625vmin; } }

.payer__title {
  font-size: 1.45833vw;
  line-height: 1.94444vw;
  font-weight: 500;
  margin-bottom: 1.52778vw; }
  @media (min-width: 1800px) {
    .payer__title {
      font-size: 21px;
      line-height: 28px;
      margin-bottom: 22px; } }
  @media (max-width: 1024px) {
    .payer__title {
      font-size: 5.625vmin;
      line-height: 8.75vmin;
      margin-bottom: 3.125vmin; } }

.payer__select {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 1.38889vw; }
  @media (min-width: 1800px) {
    .payer__select {
      margin-bottom: 20px; } }
  @media (max-width: 1024px) {
    .payer__select {
      margin-bottom: 6.25vmin;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

.payer .btn {
  height: 3.81944vw;
  padding-left: 2.08333vw;
  padding-right: 2.08333vw; }
  @media (min-width: 1800px) {
    .payer .btn {
      height: 55px;
      padding-left: 30px;
      padding-right: 30px; } }
  @media (max-width: 1024px) {
    .payer .btn {
      height: 15vmin;
      padding-left: 9.375vmin;
      padding-right: 9.375vmin;
      width: 100%;
      border-radius: 3.125vmin; } }

.payer .nativejs-select {
  margin-right: 1.38889vw; }
  @media (min-width: 1800px) {
    .payer .nativejs-select {
      margin-right: 20px; } }
  @media (max-width: 1024px) {
    .payer .nativejs-select {
      margin-right: 0;
      margin-bottom: 3.125vmin; } }

.payer .nativejs-select__placeholder {
  height: 3.81944vw;
  min-width: 20.48611vw;
  border: 1px solid #F1F3FA;
  padding-left: 1.73611vw; }
  .payer .nativejs-select__placeholder-value {
    color: #343B4C;
    font-weight: 400; }
  @media (min-width: 1800px) {
    .payer .nativejs-select__placeholder {
      height: 55px;
      min-width: 295px;
      padding-left: 25px; } }
  @media (max-width: 1024px) {
    .payer .nativejs-select__placeholder {
      height: 15vmin;
      min-width: 100%;
      padding-left: 4.6875vmin; } }

.cabinet__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #D6DAE9; }
  @media (max-width: 1024px) {
    .cabinet__tabs {
      margin-top: 6.25vmin;
      overflow: hidden;
      overflow-x: scroll; } }

.cabinet__tab {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 1.25vw 1.73611vw;
  font-size: 1.45833vw;
  font-weight: 500;
  color: #5A6C7D;
  position: relative;
  cursor: pointer; }
  .cabinet__tab:after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 12px;
    background-color: #0050E0;
    visibility: hidden;
    opacity: 0; }
  .cabinet__tab.active {
    color: #0050E0; }
    .cabinet__tab.active:after {
      visibility: visible;
      opacity: 1; }
  @media (min-width: 1800px) {
    .cabinet__tab {
      padding: 18px 25px;
      font-size: 21px; } }
  @media (max-width: 1024px) {
    .cabinet__tab {
      padding: 5.625vmin 1.5625vmin;
      font-size: 4.6875vmin;
      white-space: nowrap; } }

.cabinet__tab-content {
  padding-top: 2.98611vw;
  font-size: 1.04167vw;
  line-height: 1.80556vw; }
  .cabinet__tab-content h3 {
    font-size: 1.18056vw;
    font-weight: 500;
    line-height: 1.66667vw;
    margin-top: 0;
    margin-bottom: 0.97222vw; }
    @media (min-width: 1800px) {
      .cabinet__tab-content h3 {
        font-size: 17px;
        line-height: 24px;
        margin-bottom: 14px; } }
    @media (max-width: 1024px) {
      .cabinet__tab-content h3 {
        font-size: 4.6875vmin;
        line-height: 6.875vmin;
        margin-bottom: 3.125vmin; } }
  .cabinet__tab-content p {
    margin-bottom: 1.04167vw; }
    @media (min-width: 1800px) {
      .cabinet__tab-content p {
        margin-bottom: 15px; } }
    @media (max-width: 1024px) {
      .cabinet__tab-content p {
        margin-bottom: 4.6875vmin; } }
  @media (min-width: 1800px) {
    .cabinet__tab-content {
      padding-top: 43px;
      font-size: 15px;
      line-height: 26px; } }
  @media (max-width: 1024px) {
    .cabinet__tab-content {
      padding-top: 4.375vmin;
      padding-left: 0;
      font-size: 4.0625vmin;
      line-height: 6.875vmin;
      overflow-x: scroll; } }

.agreement {
  font-size: 1.04167vw;
  line-height: 1.66667vw;
  margin-bottom: 1.52778vw;
  color: #343B4C;
  max-width: 43.75vw; }
  .agreement .btn {
    height: 2.70833vw;
    padding-left: 1.04167vw;
    padding-right: 1.04167vw;
    margin-bottom: 1.52778vw; }
    @media (min-width: 1800px) {
      .agreement .btn {
        height: 39px;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 22px; } }
    @media (max-width: 1024px) {
      .agreement .btn {
        height: 11.25vmin;
        padding-left: 3.75vmin;
        padding-right: 3.75vmin;
        margin-bottom: 5.625vmin; } }
  @media (min-width: 1800px) {
    .agreement {
      font-size: 15px;
      line-height: 24px;
      margin-bottom: 22px;
      max-width: 630px; } }
  @media (max-width: 1024px) {
    .agreement {
      font-size: 4.0625vmin;
      line-height: 6.875vmin;
      margin-bottom: 6.875vmin;
      max-width: 196.875vmin; } }

.profile-edit {
  margin-bottom: 3.125vw; }
  .profile-edit .nativejs-select__placeholder {
    padding-left: 2.08333vw; }
    .profile-edit .nativejs-select__placeholder-value {
      font-weight: 400;
      color: #343B4C; }
    @media (min-width: 1800px) {
      .profile-edit .nativejs-select__placeholder {
        padding-left: 30px; } }
    @media (max-width: 1024px) {
      .profile-edit .nativejs-select__placeholder {
        padding-left: 4.6875vmin;
        height: 15vmin; } }
  @media (max-width: 1024px) {
    .profile-edit .nativejs-select {
      margin-bottom: 3.75vmin; } }
  .profile-edit h3 {
    font-size: 1.45833vw;
    line-height: 1.94444vw;
    font-weight: 500;
    margin-bottom: 1.25vw;
    margin-top: 0; }
    @media (min-width: 1800px) {
      .profile-edit h3 {
        font-size: 21px;
        line-height: 28px;
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .profile-edit h3 {
        font-size: 5.625vmin;
        line-height: 6.875vmin;
        margin-bottom: 5.625vmin; } }
  .profile-edit h4 {
    font-size: 1.18056vw;
    font-weight: 500;
    color: #FF8A00;
    margin-top: 0;
    margin-bottom: 1.94444vw; }
    @media (min-width: 1800px) {
      .profile-edit h4 {
        font-size: 17px;
        margin-bottom: 28px; } }
    @media (max-width: 1024px) {
      .profile-edit h4 {
        font-size: 4.53125vmin;
        margin-bottom: 5.625vmin;
        margin-top: 0; } }
  .profile-edit input[type="text"] {
    min-width: 29.16667vw;
    height: 4.16667vw;
    border-radius: 0.69444vw;
    text-indent: 2.08333vw;
    font-size: 1.04167vw;
    border: 1px solid #F2F5FF; }
    @media (min-width: 1800px) {
      .profile-edit input[type="text"] {
        min-width: 420px;
        height: 60px;
        border-radius: 10px;
        text-indent: 30px;
        font-size: 15px; } }
    @media (max-width: 1024px) {
      .profile-edit input[type="text"] {
        min-width: none;
        width: 100%;
        height: 15vmin;
        border-radius: 3.125vmin;
        text-indent: 4.6875vmin;
        font-size: 4.0625vmin;
        margin-bottom: 3.75vmin; } }
  .profile-edit .profile__delevery-form {
    margin-bottom: 0.69444vw; }
    @media (min-width: 1800px) {
      .profile-edit .profile__delevery-form {
        margin-bottom: 10px; } }
    @media (max-width: 1024px) {
      .profile-edit .profile__delevery-form {
        margin-bottom: 6.875vmin; } }
  @media (min-width: 1800px) {
    .profile-edit {
      margin-bottom: 45px; } }
  @media (max-width: 1024px) {
    .profile-edit {
      margin-bottom: 14.0625vmin; } }
  .profile-edit .btn {
    min-width: 12.15278vw; }
    @media (min-width: 1800px) {
      .profile-edit .btn {
        min-width: 175px; } }
    @media (max-width: 1024px) {
      .profile-edit .btn {
        min-width: 46.875vmin; } }

.profile-edit-main {
  margin-bottom: 1.17778vw; }
  @media (min-width: 1800px) {
    .profile-edit-main {
      margin-bottom: 40px; } }
  @media (max-width: 1024px) {
    .profile-edit-main {
      margin-bottom: 10.625vmin; } }

.article-database .container {
  border-bottom: 1px solid #E5EAEF;
  padding-bottom: 6.52778vw; }
  @media (min-width: 1800px) {
    .article-database .container {
      padding-bottom: 94px; } }
  @media (max-width: 1024px) {
    .article-database .container {
      padding-bottom: 5.625vmin;
      border: none; } }

.article-database .title-h2 {
  margin-bottom: 1.38889vw; }
  @media (min-width: 1800px) {
    .article-database .title-h2 {
      margin-bottom: 20px; } }
  @media (max-width: 1024px) {
    .article-database .title-h2 {
      margin-bottom: 6.25vmin; } }

.article-database__menu-wrapper {
  position: sticky;
  top: 7.8125vmin; }

.article-database__menu .cat-menu {
  margin-bottom: 2.36111vw; }
  @media (min-width: 1800px) {
    .article-database__menu .cat-menu {
      margin-bottom: 2.36111vw; } }
  @media (max-width: 1024px) {
    .article-database__menu .cat-menu {
      margin-bottom: 10.625vmin; } }

.article-database__menu h4 {
  font-size: 1.18056vw;
  line-height: 1.94444vw;
  font-weight: 500;
  margin-bottom: 1.45833vw;
  margin-top: 0.83333vw; }
  @media (min-width: 1800px) {
    .article-database__menu h4 {
      font-size: 17px;
      line-height: 28px;
      margin-bottom: 21px; } }
  @media (max-width: 1024px) {
    .article-database__menu h4 {
      font-size: 5.3125vmin;
      line-height: 8.75vmin;
      margin-bottom: 6.5625vmin; } }

.article-database__content-block {
  font-size: 1.04167vw;
  line-height: 1.66667vw; }
  .article-database__content-block h2 {
    font-size: 1.45833vw;
    line-height: 1.45833vw;
    font-weight: 500;
    margin-bottom: 1.73611vw; }
    @media (min-width: 1800px) {
      .article-database__content-block h2 {
        font-size: 21px;
        line-height: 21px;
        margin-bottom: 25px; } }
    @media (max-width: 1024px) {
      .article-database__content-block h2 {
        font-size: 5.625vmin;
        line-height: 6.5625vmin;
        margin-bottom: 6.25vmin;
        margin-top: 0; } }
  .article-database__content-block h3 {
    margin-top: 2.5vw;
    margin-bottom: 0.83333vw;
    font-weight: 500;
    font-size: 1.18056vw; }
    @media (min-width: 1800px) {
      .article-database__content-block h3 {
        margin-top: 36px;
        margin-bottom: 12px;
        font-size: 17px; } }
    @media (max-width: 1024px) {
      .article-database__content-block h3 {
        margin-top: 6.25vmin !important;
        margin-bottom: 1.875vmin;
        font-size: 4.6875vmin; } }
  .article-database__content-block p {
    margin-bottom: 1.66667vw; }
    @media (min-width: 1800px) {
      .article-database__content-block p {
        margin-bottom: 24px; } }
    @media (max-width: 1024px) {
      .article-database__content-block p {
        margin-bottom: 7.5vmin; } }
  @media (min-width: 1800px) {
    .article-database__content-block {
      font-size: 15px;
      line-height: 24px; } }
  @media (max-width: 1024px) {
    .article-database__content-block {
      font-size: 4.0625vmin;
      line-height: 6.5625vmin; } }

.video {
  position: relative;
  overflow: hidden;
  background-color: #202124;
  border-radius: 2.08333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .video:after {
    content: "";
    position: absolute;
    width: 6.45833vw;
    height: 6.45833vw;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2) url(../images/sprites/svg/play.svg) no-repeat center center;
    background-size: 1.38889vw;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 2;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
    @media (min-width: 1800px) {
      .video:after {
        width: 93px;
        height: 93px;
        background-size: 20px; } }
    @media (max-width: 1024px) {
      .video:after {
        width: 25vmin;
        height: 25vmin;
        background-size: 6.25vmin; } }
  .video:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5); }
  .video:hover:after {
    background-color: rgba(0, 80, 224, 0.7); }
  @media (min-width: 1800px) {
    .video {
      border-radius: 30px; } }
  @media (max-width: 1024px) {
    .video {
      border-radius: 6.25vmin; } }

.result-block {
  padding-top: 4.72222vw; }
  .result-block .title-h2 {
    line-height: 1;
    margin-bottom: 2.36111vw; }
    @media (min-width: 1800px) {
      .result-block .title-h2 {
        margin-bottom: 34px; } }
    @media (max-width: 1024px) {
      .result-block .title-h2 {
        margin-bottom: 6.875vmin; } }
  .result-block__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 1024px) {
      .result-block__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .result-block__slider {
    -ms-flex-preferred-size: 27.77778vw;
        flex-basis: 27.77778vw;
    max-width: 27.77778vw; }
    @media (max-width: 1024px) {
      .result-block__slider .product-gallery-thumb {
        display: none; } }
    @media (min-width: 1800px) {
      .result-block__slider {
        -ms-flex-preferred-size: 400px;
            flex-basis: 400px;
        max-width: 400px; } }
    @media (max-width: 1024px) {
      .result-block__slider {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        max-width: 100%; } }
  .result-block__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1;
    padding-left: 1.38889vw;
    font-size: 1.04167vw;
    line-height: 1.80556vw; }
    .result-block__content h3 {
      font-size: 1.18056vw;
      line-height: 1.94444vw;
      font-weight: 500;
      margin-bottom: 1.04167vw; }
      @media (min-width: 1800px) {
        .result-block__content h3 {
          font-size: 17px;
          line-height: 28px;
          margin-bottom: 15px; } }
      @media (max-width: 1024px) {
        .result-block__content h3 {
          font-size: 4.6875vmin;
          line-height: 7.5vmin;
          margin-top: 6.25vmin;
          margin-bottom: 3.125vmin; } }
    .result-block__content ul {
      margin-bottom: 1.80556vw;
      padding-left: 0.83333vw; }
      .result-block__content ul li {
        position: relative;
        padding-left: 1.04167vw; }
        .result-block__content ul li:before {
          content: "";
          position: absolute;
          top: 0.76389vw;
          left: 0;
          width: 0.27778vw;
          height: 0.27778vw;
          border-radius: 50%;
          background-color: #343B4C; }
          @media (min-width: 1800px) {
            .result-block__content ul li:before {
              top: 11px;
              width: 4px;
              height: 4px; } }
          @media (max-width: 1024px) {
            .result-block__content ul li:before {
              top: 2.1875vmin;
              left: 1.25vmin;
              width: 1.25vmin;
              height: 1.25vmin; } }
        @media (min-width: 1800px) {
          .result-block__content ul li {
            padding-left: 15px; } }
        @media (max-width: 1024px) {
          .result-block__content ul li {
            padding-left: 4.6875vmin; } }
      @media (min-width: 1800px) {
        .result-block__content ul {
          padding-left: 12px; } }
      @media (max-width: 1024px) {
        .result-block__content ul {
          padding-left: 1.25vmin; } }
    .result-block__content strong {
      font-weight: 500; }
    .result-block__content a {
      color: #0050E0; }
    @media (min-width: 1800px) {
      .result-block__content {
        margin-bottom: 26px;
        font-size: 15px;
        line-height: 26px; } }
    @media (max-width: 1024px) {
      .result-block__content {
        margin-bottom: 8.125vmin;
        font-size: 4.0625vmin;
        line-height: 6.875vmin;
        padding-left: 0; } }
  @media (min-width: 1800px) {
    .result-block {
      padding-top: 68px; } }
  @media (max-width: 1024px) {
    .result-block {
      padding-top: 13.75vmin; } }

.news-page__pagination {
  margin-top: 1.38889vw; }
  @media (min-width: 1800px) {
    .news-page__pagination {
      margin-top: 20px; } }
  @media (max-width: 1024px) {
    .news-page__pagination {
      margin-top: 12.5vmin; } }

.news-page__container {
  border-bottom: 1px solid #E2E2EA;
  padding-bottom: 6.94444vw;
  margin-bottom: 2.08333vw; }
  @media (min-width: 1800px) {
    .news-page__container {
      padding-bottom: 100px;
      margin-bottom: 30px; } }
  @media (max-width: 1024px) {
    .news-page__container {
      padding-bottom: 13.4375vmin;
      margin-bottom: 11.25vmin; } }

.news-page__faq-wrapper {
  padding-bottom: 6.94444vw; }
  @media (min-width: 1800px) {
    .news-page__faq-wrapper {
      padding-bottom: 100px; } }
  @media (max-width: 1024px) {
    .news-page__faq-wrapper {
      padding-bottom: 31.25vmin; } }

.news-full-page {
  padding-bottom: 0.55556vw; }
  .news-full-page__other-news {
    padding-bottom: 8.75vw; }
    @media (min-width: 1800px) {
      .news-full-page__other-news {
        padding-bottom: 126px; } }
    @media (max-width: 1024px) {
      .news-full-page__other-news {
        padding-bottom: 0; } }
  .news-full-page .content-slider {
    margin-bottom: 4.16667vw; }
    @media (min-width: 1800px) {
      .news-full-page .content-slider {
        margin-bottom: 60px; } }
    @media (max-width: 1024px) {
      .news-full-page .content-slider {
        margin-bottom: 8.125vmin; } }
  .news-full-page h2 {
    font-size: 2.43056vw;
    line-height: 3.125vw;
    font-weight: 500;
    margin-bottom: 2.08333vw;
    margin-top: 0; }
    @media (min-width: 1800px) {
      .news-full-page h2 {
        font-size: 35px;
        line-height: 45px;
        margin-bottom: 30px; } }
    @media (max-width: 1024px) {
      .news-full-page h2 {
        font-size: 6.875vmin;
        line-height: 10vmin;
        margin-bottom: 4.375vmin; } }
  .news-full-page__seo .container {
    padding-bottom: 5.20833vw;
    margin-bottom: 5.20833vw;
    border-bottom: 1px solid #E5EAEF; }
    @media (min-width: 1800px) {
      .news-full-page__seo .container {
        padding-bottom: 5.20833vw;
        margin-bottom: 5.20833vw; } }
    @media (max-width: 1024px) {
      .news-full-page__seo .container {
        padding-bottom: 3.125vmin;
        margin-bottom: 11.875vmin; } }
  @media (min-width: 1800px) {
    .news-full-page {
      padding-bottom: 8px; } }
  @media (max-width: 1024px) {
    .news-full-page {
      padding-bottom: 2.5vmin; } }

.history h2 {
  font-size: 2.43056vw;
  line-height: 3.125vw;
  font-weight: 500;
  margin-bottom: 2.08333vw;
  margin-top: 0; }
  @media (min-width: 1800px) {
    .history h2 {
      font-size: 35px;
      line-height: 45px;
      margin-bottom: 30px; } }
  @media (max-width: 1024px) {
    .history h2 {
      font-size: 6.875vmin;
      line-height: 10vmin;
      margin-bottom: 4.375vmin; } }

.history p {
  margin-bottom: 2.08333vw; }
  @media (min-width: 1800px) {
    .history p {
      margin-bottom: 30px; } }
  @media (max-width: 1024px) {
    .history p {
      margin-bottom: 9.375vmin; } }

.history img {
  margin-bottom: 6.94444vw; }
  @media (min-width: 1800px) {
    .history img {
      margin-bottom: 100px; } }
  @media (max-width: 1024px) {
    .history img {
      margin-bottom: 12.5vmin; } }

.information {
  padding-bottom: 3.81944vw; }
  .information__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 1024px) {
      .information__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .information__menu {
    -ms-flex-preferred-size: 21.875vw;
        flex-basis: 21.875vw;
    -ms-flex-negative: 0;
        flex-shrink: 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; }
    .information__menu .tags__item {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      cursor: pointer;
      -webkit-transition: all .3s ease-out;
      -o-transition: all .3s ease-out;
      transition: all .3s ease-out; }
      .information__menu .tags__item.is-active {
        color: #fff;
        background-color: #0050E0; }
      @media (max-width: 1024px) {
        .information__menu .tags__item {
          height: 11.25vmin;
          min-width: 34.375vmin;
          padding-left: 4.0625vmin;
          padding-right: 4.0625vmin;
          font-size: 4.0625vmin; } }
    @media (min-width: 1800px) {
      .information__menu {
        -ms-flex-preferred-size: 315px;
            flex-basis: 315px; } }
    @media (max-width: 1024px) {
      .information__menu {
        -ms-flex-preferred-size: 98.4375vmin;
            flex-basis: 98.4375vmin;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
        margin-bottom: 5.625vmin; } }
  .information__text {
    background: url(../images/banner-clients.png) no-repeat right center;
    background-size: cover;
    border-radius: 2.08333vw;
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1; }
    .information__text-item {
      font-size: 1.04167vw;
      line-height: 1.80556vw;
      padding: 1.94444vw 3.47222vw 3.19444vw 3.47222vw;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      min-height: 22.22222vw;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; }
      @media (min-width: 1800px) {
        .information__text-item {
          font-size: 15px;
          line-height: 26px;
          padding: 28px 50px 46px 50px;
          min-height: 320px; } }
      @media (max-width: 1024px) {
        .information__text-item {
          font-size: 4.0625vmin;
          line-height: 6.875vmin;
          padding: 6.25vmin 6.25vmin 6.25vmin 6.25vmin;
          min-height: auto;
          border-radius: 6.25vmin; } }
    .information__text h3 {
      font-size: 1.45833vw;
      line-height: 1.45833vw;
      font-weight: 500;
      margin-bottom: 1.25vw;
      margin-top: 0; }
      @media (min-width: 1800px) {
        .information__text h3 {
          font-size: 21px;
          line-height: 21px;
          margin-bottom: 18px; } }
      @media (max-width: 1024px) {
        .information__text h3 {
          font-size: 4.53125vmin;
          line-height: 6.25vmin;
          margin-bottom: 2.5vmin; } }
    .information__text p {
      margin-bottom: 1.52778vw;
      max-width: 36.52778vw; }
      @media (min-width: 1800px) {
        .information__text p {
          margin-bottom: 22px;
          max-width: 526px; } }
      @media (max-width: 1024px) {
        .information__text p {
          margin-bottom: 6.875vmin;
          max-width: 164.375vmin; } }
    @media (min-width: 1800px) {
      .information__text {
        border-radius: 30px; } }
    @media (max-width: 1024px) {
      .information__text {
        border-radius: 6.25vmin;
        background: url(../images/banner-clients-mobile.png) no-repeat right center;
        background-size: cover; } }
  .information .btn {
    min-width: 11.38889vw;
    height: 3.81944vw; }
    @media (min-width: 1800px) {
      .information .btn {
        min-width: 164px;
        height: 55px; } }
    @media (max-width: 1024px) {
      .information .btn {
        min-width: 43.75vmin;
        height: 14.375vmin; } }
  @media (min-width: 1800px) {
    .information {
      padding-bottom: 55px; } }
  @media (max-width: 1024px) {
    .information {
      padding-bottom: 0; } }

.contacts-page__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 2.08333vw; }
  @media (min-width: 1800px) {
    .contacts-page__wrapper {
      padding-bottom: 30px; } }
  @media (max-width: 1024px) {
    .contacts-page__wrapper {
      padding-bottom: 5.3125vmin;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      background-color: #fff;
      margin-left: -5.3125vmin;
      margin-right: -5.3125vmin;
      border-bottom: none;
      position: relative;
      border-radius: 6.25vmin; } }

.contacts-page__contacts {
  -ms-flex-preferred-size: 20.48611vw;
      flex-basis: 20.48611vw;
  max-width: 20.48611vw;
  font-size: 1.04167vw;
  line-height: 1.66667vw;
  padding: 1.38889vw 1.66667vw;
  border-radius: 1.38889vw;
  background-color: #fff; }
  .contacts-page__contacts b {
    font-weight: 500; }
  .contacts-page__contacts a {
    color: #FF8A00; }
  @media (min-width: 1800px) {
    .contacts-page__contacts {
      -ms-flex-preferred-size: 295px;
          flex-basis: 295px;
      max-width: 295px;
      font-size: 15px;
      line-height: 24px;
      padding: 20px 24px;
      border-radius: 20px; } }
  @media (max-width: 1024px) {
    .contacts-page__contacts {
      -ms-flex-preferred-size: auto;
          flex-basis: auto;
      max-width: none;
      font-size: 4.0625vmin;
      line-height: 7.8125vmin;
      padding: 7.5vmin 5vmin;
      border-radius: 9.375vmin; } }

.contacts-page__logo {
  margin-bottom: 1.80556vw; }
  .contacts-page__logo img {
    width: 13.33333vw;
    height: 2.63889vw; }
    @media (min-width: 1800px) {
      .contacts-page__logo img {
        width: 192px;
        height: 38px; } }
    @media (max-width: 1024px) {
      .contacts-page__logo img {
        width: 51.25vmin;
        height: 11.875vmin; } }
  @media (min-width: 1800px) {
    .contacts-page__logo {
      margin-bottom: 26px; } }
  @media (max-width: 1024px) {
    .contacts-page__logo {
      margin-bottom: 5.625vmin; } }

.contacts-page__name {
  font-size: 1.18056vw;
  line-height: 1.94444vw;
  font-weight: 500;
  margin-bottom: 0.41667vw; }
  @media (min-width: 1800px) {
    .contacts-page__name {
      font-size: 17px;
      line-height: 28px;
      margin-bottom: 6px; } }
  @media (max-width: 1024px) {
    .contacts-page__name {
      font-size: 4.53125vmin;
      line-height: 7.5vmin;
      margin-bottom: 1.875vmin; } }

.contacts-page__map {
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  background-color: #0050E0;
  margin-left: 1.38889vw;
  border-radius: 1.38889vw; }
  @media (min-width: 1800px) {
    .contacts-page__map {
      margin-left: 20px;
      border-radius: 20px; } }
  @media (max-width: 1024px) {
    .contacts-page__map {
      margin-left: 5.3125vmin;
      margin-right: 4.375vmin;
      border-radius: 6.25vmin;
      min-height: 50vmin; } }

.faq-page .btn--asidemenu {
  margin-bottom: 9.375vmin; }

@media (max-width: 1024px) {
  .faq-page .catalog__aside {
    right: auto;
    left: 5.3125vmin;
    top: 25vmin; } }

.faq-page__container {
  padding-bottom: 6.25vw;
  margin-bottom: 0.69444vw;
  border-bottom: 1px solid #E2E2EA; }
  @media (min-width: 1800px) {
    .faq-page__container {
      padding-bottom: 90px;
      margin-bottom: 10px; } }
  @media (max-width: 1024px) {
    .faq-page__container {
      padding-bottom: 0;
      margin-bottom: 0;
      border-bottom: none; } }

.faq-page__menu {
  margin-bottom: 1.66667vw; }
  .faq-page__menu h3 {
    font-size: 1.45833vw;
    line-height: 1.52778vw;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 1.80556vw; }
    @media (min-width: 1800px) {
      .faq-page__menu h3 {
        font-size: 21px;
        line-height: 22px;
        margin-bottom: 26px; } }
    @media (max-width: 1024px) {
      .faq-page__menu h3 {
        font-size: 6.5625vmin;
        line-height: 6.875vmin;
        margin-bottom: 8.125vmin; } }
  @media (min-width: 1800px) {
    .faq-page__menu {
      margin-bottom: 24px; } }
  @media (max-width: 1024px) {
    .faq-page__menu {
      margin-bottom: 7.5vmin;
      display: none; } }

.database__btns {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 9.375vmin;
  display: none; }

.database__wrapper {
  padding-bottom: 6.25vw;
  margin-bottom: 0.83333vw;
  border-bottom: 1px solid #E2E2EA; }
  @media (min-width: 1800px) {
    .database__wrapper {
      padding-bottom: 90px;
      margin-bottom: 12px; } }
  @media (max-width: 1024px) {
    .database__wrapper {
      padding-bottom: 0;
      margin-bottom: 0;
      border-bottom: none; } }

.database__menu {
  margin-bottom: 1.38889vw; }
  .database__menu h3 {
    font-size: 1.45833vw;
    line-height: 1.94444vw;
    font-weight: 500;
    margin-top: 0;
    line-height: 1;
    margin-bottom: 1.52778vw; }
    @media (min-width: 1800px) {
      .database__menu h3 {
        font-size: 21px;
        line-height: 28px;
        margin-bottom: 22px; } }
    @media (max-width: 1024px) {
      .database__menu h3 {
        font-size: 6.5625vmin;
        line-height: 8.75vmin;
        margin-bottom: 6.875vmin; } }
  @media (min-width: 1800px) {
    .database__menu {
      margin-bottom: 20px; } }
  @media (max-width: 1024px) {
    .database__menu {
      margin-bottom: 6.25vmin;
      display: none; } }

@media (max-width: 1024px) {
  .database__title-h2 {
    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; } }

.database__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -0.69444vw;
  margin-right: -0.69444vw; }
  @media (min-width: 1800px) {
    .database__container {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1024px) {
    .database__container {
      margin-left: 0;
      margin-right: 0; } }

.database__item {
  -ms-flex-preferred-size: calc(33.33% - 1.38889vw);
      flex-basis: calc(33.33% - 1.38889vw);
  margin-left: 0.69444vw;
  margin-right: 0.69444vw;
  margin-bottom: 1.38889vw;
  border-radius: 2.08333vw;
  background: #FFFFFF;
  padding: 1.73611vw 2.01389vw;
  padding-top: 1.38889vw;
  padding-right: 1.25vw; }
  .database__item-title {
    font-size: 1.18056vw;
    line-height: 1.94444vw;
    font-weight: 500;
    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;
    margin-bottom: 0.27778vw; }
    .database__item-title:after {
      content: "";
      width: 2.5vw;
      height: 2.5vw;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      background: rgba(0, 80, 224, 0.04) url(../images/sprites/svg/angle-right.svg) no-repeat center center;
      background-size: 0.48611vw;
      border-radius: 50%; }
      @media (min-width: 1800px) {
        .database__item-title:after {
          width: 36px;
          height: 36px;
          background-size: 7px; } }
      @media (max-width: 1024px) {
        .database__item-title:after {
          width: 11.25vmin;
          height: 11.25vmin;
          background-size: 2.1875vmin; } }
    @media (min-width: 1800px) {
      .database__item-title {
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 4px; } }
    @media (max-width: 1024px) {
      .database__item-title {
        font-size: 5.3125vmin;
        line-height: 8.75vmin;
        margin-bottom: 1.25vmin; } }
  .database__item-intro {
    font-size: 0.90278vw;
    line-height: 1.52778vw; }
    @media (min-width: 1800px) {
      .database__item-intro {
        font-size: 13px;
        line-height: 22px; } }
    @media (max-width: 1024px) {
      .database__item-intro {
        font-size: 4.0625vmin;
        line-height: 6.875vmin; } }
  @media (min-width: 1800px) {
    .database__item {
      -ms-flex-preferred-size: calc(33.33% - 20px);
          flex-basis: calc(33.33% - 20px);
      margin-left: 10px;
      margin-right: 10px;
      margin-bottom: 20px;
      border-radius: 30px;
      padding: 25px 29px;
      padding-right: 18px;
      padding-top: 20px; } }
  @media (max-width: 1024px) {
    .database__item {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 6.25vmin;
      border-radius: 9.375vmin;
      padding: 7.8125vmin 9.0625vmin;
      padding-right: 5.625vmin;
      padding-top: 6.25vmin; } }

.reg-page {
  padding-bottom: 6.94444vw;
  padding-top: 6.94444vw; }
  .reg-page .title-h1 {
    margin-bottom: 1.80556vw; }
    @media (min-width: 1800px) {
      .reg-page .title-h1 {
        margin-bottom: 26px; } }
    @media (max-width: 1024px) {
      .reg-page .title-h1 {
        margin-bottom: 34px; } }
  .reg-page__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .reg-page__container--center {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
  .reg-page__image {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding-right: 3.47222vw; }
    @media (max-width: 1024px) {
      .reg-page__image {
        display: none; } }
  .reg-page__form {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%; }
    @media (max-width: 1024px) {
      .reg-page__form {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }
  .reg-page__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    border-bottom: 1px solid #D6DAE9;
    margin-bottom: 2.77778vw; }
    @media (min-width: 1800px) {
      .reg-page__tabs {
        margin-bottom: 40px; } }
    @media (max-width: 1024px) {
      .reg-page__tabs {
        margin-bottom: 12.5vmin; } }
  .reg-page__tab {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding-bottom: 1.25vw;
    padding-left: 1.52778vw;
    padding-right: 1.52778vw;
    font-size: 1.18056vw;
    font-weight: 500;
    color: #5A6C7D;
    position: relative;
    cursor: pointer;
    margin-right: 2.77778vw; }
    .reg-page__tab:after {
      content: "";
      position: absolute;
      bottom: -3px;
      left: 0;
      right: 0;
      height: 5px;
      border-radius: 12px;
      background-color: #0050E0;
      visibility: hidden;
      opacity: 0; }
    .reg-page__tab.active {
      color: #0050E0; }
      .reg-page__tab.active:after {
        visibility: visible;
        opacity: 1; }
    @media (min-width: 1800px) {
      .reg-page__tab {
        padding-bottom: 18px;
        font-size: 21px;
        margin-right: 40px;
        padding-left: 22px;
        padding-right: 22px; } }
    @media (max-width: 1024px) {
      .reg-page__tab {
        padding: 5.625vmin 0;
        padding-top: 3.125vmin;
        font-size: 4.0625vmin;
        margin-right: 0;
        margin-right: 6.25vmin; } }
  .reg-page .form__wrapper {
    margin-bottom: 0.69444vw; }
    @media (min-width: 1800px) {
      .reg-page .form__wrapper {
        margin-bottom: 10px; } }
    @media (max-width: 1024px) {
      .reg-page .form__wrapper {
        margin-bottom: 3.125vmin; } }
  .reg-page .form__policy {
    width: auto;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding-left: 1.94444vw; }
    @media (min-width: 1800px) {
      .reg-page .form__policy {
        padding-left: 28px; } }
    @media (max-width: 1024px) {
      .reg-page .form__policy {
        padding-left: 0; } }
  .reg-page .form__footer {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 1024px) {
      .reg-page .form__footer {
        -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; } }
  @media (max-width: 1024px) {
    .reg-page .form__row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media (max-width: 1024px) {
    .reg-page .form__input, .reg-page .form__textarea {
      border-bottom: 1px solid #F2F5FF;
      border-right: none; } }
  .reg-page .form__policy a {
    font-weight: 500; }
  .reg-page__link {
    font-size: 1.04167vw;
    margin-top: 1.94444vw; }
    .reg-page__link a {
      font-weight: 500;
      color: #0050E0; }
    @media (min-width: 1800px) {
      .reg-page__link {
        font-size: 15px;
        margin-top: 28px; } }
    @media (max-width: 1024px) {
      .reg-page__link {
        font-size: 4.0625vmin;
        margin-top: 8.75vmin; } }
  @media (min-width: 1800px) {
    .reg-page {
      padding-bottom: 100px;
      padding-top: 100px; } }
  @media (max-width: 1024px) {
    .reg-page {
      padding-bottom: 15.625vmin;
      padding-top: 15.625vmin; } }

.page-404 {
  background: #FFFFFF;
  border: 1px solid #F1F3FA;
  border-radius: 1.38889vw;
  position: relative;
  height: 20.13889vw; }
  .page-404 .btn--go-index {
    width: 9.86111vw !important;
    min-width: 9.86111vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important; }
    @media (min-width: 1800px) {
      .page-404 .btn--go-index {
        width: 142px !important;
        min-width: 142px !important; } }
    @media (max-width: 1024px) {
      .page-404 .btn--go-index {
        width: 40vmin !important;
        min-width: 40vmin !important;
        height: 15vmin; } }
  .page-404 .slide__title {
    margin-bottom: 1.38889vw; }
    @media (min-width: 1800px) {
      .page-404 .slide__title {
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .page-404 .slide__title {
        margin-bottom: 4.375vmin; } }
  .page-404 ul {
    margin-bottom: 2.36111vw; }
    @media (min-width: 1800px) {
      .page-404 ul {
        margin-bottom: 34px; } }
  .page-404 .slide__image {
    background-color: transparent;
    position: relative;
    height: 100%;
    z-index: 1; }
    .page-404 .slide__image img {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 35.41667vw;
      margin-left: 0.69444vw;
      margin-top: -1.11111vw;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
      @media (min-width: 1800px) {
        .page-404 .slide__image img {
          width: 510px;
          margin-left: 10px;
          margin-top: -16px; } }
      @media (max-width: 1024px) {
        .page-404 .slide__image img {
          width: 100%;
          margin-left: 0;
          margin-top: 0;
          left: auto;
          top: auto;
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none;
          position: relative;
          z-index: -1;
          margin-top: -9.375vmin; } }
  .page-404 b {
    color: #0050E0;
    font-weight: 500; }
  .page-404__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .page-404__btns .btn {
      margin-right: 0.69444vw; }
      @media (max-width: 1024px) {
        .page-404__btns .btn--open-catalog {
          max-width: 53.75vmin;
          height: 15vmin; } }
      @media (max-width: 1024px) {
        .page-404__btns .btn {
          display: -webkit-box !important;
          display: -ms-flexbox !important;
          display: flex !important;
          margin-bottom: 3.125vmin; } }
    @media (max-width: 1024px) {
      .page-404__btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-bottom: 0;
        margin-top: 10.625vmin;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
  @media (min-width: 1800px) {
    .page-404 {
      border-radius: 30px;
      height: 290px; } }
  @media (max-width: 1024px) {
    .page-404 {
      border-radius: 6.25vmin;
      height: auto; } }

.page-thanks ul li {
  padding-top: 0;
  line-height: 1.66667vw; }
  @media (min-width: 1800px) {
    .page-thanks ul li {
      line-height: 24px; } }
  @media (max-width: 1024px) {
    .page-thanks ul li {
      font-size: 3.75vmin;
      line-height: 6.875vmin; } }

.page-thanks .slide__image img {
  margin-top: 0;
  width: 41.66667vw;
  margin-left: -1.73611vw;
  margin-top: 2.43056vw; }
  @media (min-width: 1800px) {
    .page-thanks .slide__image img {
      width: 600px;
      margin-left: -25px;
      margin-top: 35px; } }
  @media (max-width: 1024px) {
    .page-thanks .slide__image img {
      width: 100%;
      margin-left: 0;
      margin-top: 0;
      left: auto;
      top: auto;
      -webkit-transform: none;
          -ms-transform: none;
              transform: none;
      position: relative;
      z-index: -1;
      margin-top: 0; } }

.catalog__main--search-res {
  max-width: calc(100% - 20.48611vw); }
  @media (min-width: 1800px) {
    .catalog__main--search-res {
      max-width: calc(100% - 295px); } }
  .catalog__main--search-res .subcatalog-page__pagination {
    width: 100%; }

.search-page__wrapper {
  margin-top: 4.86111vw; }
  @media (min-width: 1800px) {
    .search-page__wrapper {
      margin-top: 70px; } }
  @media (max-width: 1024px) {
    .search-page__wrapper {
      margin-top: 21.875vmin; } }

.search-page__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
  margin-left: -0.69444vw;
  margin-right: -0.69444vw; }
  .search-page__container .product-box {
    -ms-flex-preferred-size: calc(25% - 1.38889vw);
        flex-basis: calc(25% - 1.38889vw);
    width: calc(25% - 1.38889vw);
    margin-left: 0.69444vw;
    margin-right: 0.69444vw;
    margin-bottom: 1.38889vw; }
    @media (min-width: 1800px) {
      .search-page__container .product-box {
        -ms-flex-preferred-size: calc(25% - 20px);
            flex-basis: calc(25% - 20px);
        width: calc(25% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .search-page__container .product-box {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 6.25vmin; } }
  @media (min-width: 1800px) {
    .search-page__container {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1024px) {
    .search-page__container {
      margin-left: 0;
      margin-right: 0; } }

.search-page__subtitle {
  font-size: 1.45833vw;
  line-height: 1;
  margin-bottom: 2.43056vw; }
  @media (min-width: 1800px) {
    .search-page__subtitle {
      font-size: 21px; } }
  @media (max-width: 1024px) {
    .search-page__subtitle {
      font-size: 6.5625vmin; } }

.brand-page {
  margin-top: 1.11111vw; }
  .brand-page .container {
    padding-bottom: 4.16667vw;
    margin-bottom: 6.59722vw;
    border-bottom: 1px solid #E5EAEF; }
    @media (min-width: 1800px) {
      .brand-page .container {
        padding-bottom: 60px;
        margin-bottom: 95px; } }
  .brand-page__header {
    margin-left: -0.69444vw;
    margin-right: -0.69444vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 6.25vw; }
    .brand-page__header-col {
      margin-left: 0.69444vw;
      margin-right: 0.69444vw; }
      .brand-page__header-col--3 {
        -ms-flex-preferred-size: calc(25% - 1.38889vw);
            flex-basis: calc(25% - 1.38889vw); }
        @media (min-width: 1800px) {
          .brand-page__header-col--3 {
            -ms-flex-preferred-size: calc(25% - 20px);
                flex-basis: calc(25% - 20px); } }
        @media (max-width: 1024px) {
          .brand-page__header-col--3 {
            -ms-flex-preferred-size: 100%;
                flex-basis: 100%; } }
      .brand-page__header-col--4 {
        -ms-flex-preferred-size: calc(33.3% - 1.38889vw);
            flex-basis: calc(33.3% - 1.38889vw); }
        @media (min-width: 1800px) {
          .brand-page__header-col--4 {
            -ms-flex-preferred-size: calc(33.3% - 20px);
                flex-basis: calc(33.3% - 20px); } }
        @media (max-width: 1024px) {
          .brand-page__header-col--4 {
            -ms-flex-preferred-size: 100%;
                flex-basis: 100%; } }
      .brand-page__header-col--5 {
        -ms-flex-preferred-size: calc(41.6% - 1.38889vw);
            flex-basis: calc(41.6% - 1.38889vw); }
        @media (min-width: 1800px) {
          .brand-page__header-col--5 {
            -ms-flex-preferred-size: calc(41.6% - 20px);
                flex-basis: calc(41.6% - 20px); } }
        @media (max-width: 1024px) {
          .brand-page__header-col--5 {
            -ms-flex-preferred-size: 100%;
                flex-basis: 100%; } }
      @media (min-width: 1800px) {
        .brand-page__header-col {
          margin-left: 10px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .brand-page__header-col {
          margin-left: 0;
          margin-right: 0; } }
    @media (min-width: 1800px) {
      .brand-page__header {
        margin-left: -10px;
        margin-right: -10px;
        margin-bottom: 90px; } }
    @media (max-width: 1024px) {
      .brand-page__header {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 11.875vmin;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .brand-page__content {
    font-size: 1.04167vw;
    line-height: 1.66667vw;
    color: #343B4C; }
    .brand-page__content p {
      margin-bottom: 2.43056vw; }
      @media (min-width: 1800px) {
        .brand-page__content p {
          margin-bottom: 35px; } }
      @media (max-width: 1024px) {
        .brand-page__content p {
          margin-bottom: 4.6875vmin; } }
    .brand-page__content ul {
      margin-bottom: 2.43056vw;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      .brand-page__content ul li {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-right: 2.91667vw; }
        .brand-page__content ul li:before {
          content: "";
          display: inline-block;
          width: 2.91667vw;
          height: 2.91667vw;
          background: #fff url(../images/sprites/svg/check-green.svg) no-repeat center center;
          background-size: 1.38889vw;
          border-radius: 0.69444vw;
          margin-right: 0.69444vw;
          -ms-flex-negative: 0;
              flex-shrink: 0; }
          @media (min-width: 1800px) {
            .brand-page__content ul li:before {
              width: 42px;
              height: 42px;
              background-size: 20px;
              border-radius: 10px;
              margin-right: 10px; } }
          @media (max-width: 1024px) {
            .brand-page__content ul li:before {
              width: 11.875vmin;
              height: 11.875vmin;
              background-size: 5.625vmin;
              border-radius: 3.125vmin;
              margin-right: 3.125vmin; } }
        @media (min-width: 1800px) {
          .brand-page__content ul li {
            margin-right: 42px; } }
        @media (max-width: 1024px) {
          .brand-page__content ul li {
            margin-right: 0;
            margin-bottom: 6.25vmin; } }
      @media (min-width: 1800px) {
        .brand-page__content ul {
          margin-bottom: 35px; } }
      @media (max-width: 1024px) {
        .brand-page__content ul {
          margin-bottom: 4.6875vmin;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column; } }
    @media (min-width: 1800px) {
      .brand-page__content {
        font-size: 15px;
        line-height: 24px; } }
    @media (max-width: 1024px) {
      .brand-page__content {
        font-size: 4.0625vmin;
        line-height: 6.71875vmin; } }
  @media (min-width: 1800px) {
    .brand-page {
      margin-top: 1.11111vw; } }
  @media (max-width: 1024px) {
    .brand-page {
      margin-top: 5vmin; } }

.brand-info {
  border: 1px solid #F2F5FF;
  border-radius: 1.38889vw;
  padding: 2.08333vw 2.91667vw;
  height: 100%;
  background-color: #fff; }
  .brand-info__title {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 2.43056vw;
    line-height: 3.125vw;
    margin-bottom: 1.18056vw; }
    @media (min-width: 1800px) {
      .brand-info__title {
        font-size: 35px;
        line-height: 45px;
        margin-bottom: 17px; } }
    @media (max-width: 1024px) {
      .brand-info__title {
        font-size: 7.1875vmin;
        line-height: 10.625vmin;
        margin-bottom: 3.75vmin; } }
  .brand-info__check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 1.80556vw;
    font-size: 1.04167vw;
    line-height: 1.66667vw;
    color: #5A6C7D; }
    .brand-info__check:before {
      content: "";
      display: inline-block;
      width: 2.91667vw;
      height: 2.91667vw;
      background: #F2F5FF url(../images/sprites/svg/check-green.svg) no-repeat center center;
      background-size: 1.38889vw;
      border-radius: 0.69444vw;
      margin-right: 0.69444vw;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
      @media (min-width: 1800px) {
        .brand-info__check:before {
          width: 42px;
          height: 42px;
          background-size: 20px;
          border-radius: 10px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .brand-info__check:before {
          width: 11.875vmin;
          height: 11.875vmin;
          background-size: 5.625vmin;
          border-radius: 3.125vmin;
          margin-right: 2.5vmin; } }
    @media (min-width: 1800px) {
      .brand-info__check {
        margin-bottom: 26px;
        font-size: 15px;
        line-height: 24px; } }
    @media (max-width: 1024px) {
      .brand-info__check {
        margin-bottom: 6.875vmin;
        font-size: 4.0625vmin;
        line-height: 6.875vmin; } }
  .brand-info__tags {
    margin-bottom: 1.38889vw; }
    .brand-info__tags .tags__item {
      height: 2.01389vw;
      font-size: 1.04167vw;
      color: #FF8A00;
      background-color: #F2F5FF; }
      .brand-info__tags .tags__item:hover {
        color: #fff;
        background-color: #0050E0; }
      @media (min-width: 1800px) {
        .brand-info__tags .tags__item {
          height: 29px;
          font-size: 15px; } }
      @media (max-width: 1024px) {
        .brand-info__tags .tags__item {
          height: 7.5vmin;
          font-size: 4.0625vmin;
          padding-left: 2.5vmin;
          padding-right: 2.5vmin; } }
    @media (min-width: 1800px) {
      .brand-info__tags {
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .brand-info__tags {
        margin-bottom: 5vmin; } }
  .brand-info__location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 2.08333vw;
    font-size: 1.04167vw;
    line-height: 1.66667vw;
    color: #5A6C7D; }
    .brand-info__location:before {
      content: "";
      display: inline-block;
      width: 2.91667vw;
      height: 2.91667vw;
      background: #F2F5FF url(../images/sprites/svg/location.svg) no-repeat center center;
      background-size: 1.38889vw;
      border-radius: 0.69444vw;
      margin-right: 0.69444vw;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
      @media (min-width: 1800px) {
        .brand-info__location:before {
          width: 42px;
          height: 42px;
          background-size: 20px;
          border-radius: 10px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .brand-info__location:before {
          width: 11.875vmin;
          height: 11.875vmin;
          background-size: 5.625vmin;
          border-radius: 3.125vmin;
          margin-right: 3.125vmin; } }
    @media (min-width: 1800px) {
      .brand-info__location {
        margin-bottom: 30px;
        font-size: 15px;
        line-height: 24px; } }
    @media (max-width: 1024px) {
      .brand-info__location {
        margin-bottom: 6.25vmin;
        font-size: 4.0625vmin;
        line-height: 6.875vmin; } }
  .brand-info .btn {
    height: 3.81944vw;
    min-width: 13.88889vw; }
    @media (min-width: 1800px) {
      .brand-info .btn {
        height: 55px;
        min-width: 200px; } }
    @media (max-width: 1024px) {
      .brand-info .btn {
        height: 15vmin;
        min-width: 53.125vmin; } }
  @media (min-width: 1800px) {
    .brand-info {
      border-radius: 20px;
      padding: 33px 42px; } }
  @media (max-width: 1024px) {
    .brand-info {
      border-radius: 6.25vmin;
      padding: 5.625vmin 5.625vmin;
      margin-bottom: 3.125vmin; } }

.brand-logo {
  height: 8.33333vw;
  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;
  border: 1px solid #F2F5FF;
  border-radius: 1.38889vw;
  padding: 1.04167vw;
  background-color: #fff;
  margin-bottom: 1.38889vw; }
  @media (min-width: 1800px) {
    .brand-logo {
      height: 120px;
      border-radius: 20px;
      padding: 15px;
      margin-bottom: 20px; } }
  @media (max-width: 1024px) {
    .brand-logo {
      height: 31.875vmin;
      border-radius: 6.25vmin;
      padding: 4.6875vmin;
      margin-bottom: 3.125vmin; } }

.brand-cert {
  height: 20.27778vw;
  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;
  border: 1px solid #F2F5FF;
  border-radius: 1.38889vw;
  padding: 1.04167vw;
  padding-bottom: 0;
  background-color: #fff; }
  @media (min-width: 1800px) {
    .brand-cert {
      height: 292px;
      border-radius: 20px;
      padding: 15px;
      padding-bottom: 0; } }
  @media (max-width: 1024px) {
    .brand-cert {
      height: 91.25vmin;
      border-radius: 6.25vmin;
      padding: 4.6875vmin;
      padding-bottom: 0;
      margin-bottom: 3.125vmin; } }

@media (max-width: 1024px) {
  .partners-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;
    margin-bottom: 6.25vmin; }
    .partners-page__title .title-h2 {
      margin-bottom: 0; } }

.partners-page .container {
  padding-bottom: 5.90278vw;
  border-bottom: 1px solid #E5EAEF; }
  @media (min-width: 1800px) {
    .partners-page .container {
      padding-bottom: 85px; } }
  @media (max-width: 1024px) {
    .partners-page .container {
      padding-bottom: 0;
      border-bottom: none; } }

.partners-page__tags {
  max-width: 48.61111vw;
  margin-bottom: 2.77778vw; }
  @media (max-width: 1024px) {
    .partners-page__tags .tags__item {
      display: block;
      width: 100%;
      height: auto;
      padding-left: 0;
      margin-bottom: 6.25vmin; }
      .partners-page__tags .tags__item:last-child {
        margin-bottom: 0; } }
  @media (min-width: 1800px) {
    .partners-page__tags {
      max-width: 700px;
      margin-bottom: 40px; } }
  @media (max-width: 1024px) {
    .partners-page__tags {
      max-width: 100%;
      margin-bottom: 12.5vmin;
      background-color: #fff;
      padding: 6.25vmin;
      border-radius: 6.25vmin;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      display: none; } }

.partners-page__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -0.69444vw;
  margin-right: -0.69444vw; }
  @media (min-width: 1800px) {
    .partners-page__container {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1024px) {
    .partners-page__container {
      margin-left: 0;
      margin-right: 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.partner {
  font-size: 1.04167vw;
  line-height: 1.66667vw;
  padding: 1.38889vw 1.66667vw;
  border-radius: 1.38889vw;
  background-color: #fff;
  margin-left: 0.69444vw;
  margin-right: 0.69444vw;
  margin-bottom: 1.38889vw;
  -ms-flex-preferred-size: calc(25% - 1.38889vw);
      flex-basis: calc(25% - 1.38889vw);
  max-width: calc(25% - 1.38889vw); }
  .partner b {
    font-weight: 500; }
  .partner a {
    color: #FF8A00; }
  .partner__logo {
    margin-bottom: 1.80556vw; }
    .partner__logo img {
      width: 13.33333vw;
      height: 2.63889vw; }
      @media (min-width: 1800px) {
        .partner__logo img {
          width: 192px;
          height: 38px; } }
      @media (max-width: 1024px) {
        .partner__logo img {
          width: 51.25vmin;
          height: 11.875vmin; } }
    @media (min-width: 1800px) {
      .partner__logo {
        margin-bottom: 26px; } }
    @media (max-width: 1024px) {
      .partner__logo {
        margin-bottom: 5.625vmin; } }
  .partner__name {
    font-size: 1.18056vw;
    line-height: 1.94444vw;
    font-weight: 500;
    margin-bottom: 0.41667vw; }
    @media (min-width: 1800px) {
      .partner__name {
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 6px; } }
    @media (max-width: 1024px) {
      .partner__name {
        font-size: 4.53125vmin;
        line-height: 7.5vmin;
        margin-bottom: 1.875vmin; } }
  @media (min-width: 1800px) {
    .partner {
      -ms-flex-preferred-size: calc(25% - 20px);
          flex-basis: calc(25% - 20px);
      max-width: calc(25% - 20px);
      margin-left: 10px;
      margin-right: 10px;
      font-size: 15px;
      line-height: 24px;
      padding: 20px 24px;
      border-radius: 20px; } }
  @media (max-width: 1024px) {
    .partner {
      -ms-flex-preferred-size: auto;
          flex-basis: auto;
      max-width: none;
      font-size: 4.0625vmin;
      line-height: 6.25vmin;
      padding: 7.5vmin 5vmin;
      border-radius: 6.25vmin;
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 3.125vmin; } }

.cert-page {
  padding-bottom: 6.94444vw; }
  @media (max-width: 1024px) {
    .cert-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;
      margin-bottom: 6.25vmin; }
      .cert-page__title .title-h2 {
        margin-bottom: 0; } }
  .cert-page__tags {
    max-width: 48.61111vw;
    margin-bottom: 2.77778vw; }
    @media (max-width: 1024px) {
      .cert-page__tags .tags__item {
        display: block;
        width: 100%;
        height: auto;
        padding-left: 0;
        margin-bottom: 6.25vmin; }
        .cert-page__tags .tags__item:last-child {
          margin-bottom: 0; } }
    @media (min-width: 1800px) {
      .cert-page__tags {
        max-width: 700px;
        margin-bottom: 40px; } }
    @media (max-width: 1024px) {
      .cert-page__tags {
        max-width: 100%;
        margin-bottom: 12.5vmin;
        background-color: #fff;
        padding: 6.25vmin;
        border-radius: 6.25vmin;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        display: none; } }
  .cert-page__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw; }
    .cert-page__container .cert-slider__item {
      margin-left: 0.69444vw;
      margin-right: 0.69444vw;
      -ms-flex-preferred-size: calc(16.6% - 1.38889vw);
          flex-basis: calc(16.6% - 1.38889vw);
      margin-bottom: 2.77778vw;
      padding-left: 0;
      padding-right: 0; }
      .cert-page__container .cert-slider__item img {
        width: 100%; }
      @media (min-width: 1800px) {
        .cert-page__container .cert-slider__item {
          margin-left: 10px;
          margin-right: 10px;
          -ms-flex-preferred-size: calc(16.6% - 20px);
              flex-basis: calc(16.6% - 20px);
          margin-bottom: 40px; } }
      @media (max-width: 1024px) {
        .cert-page__container .cert-slider__item {
          margin-left: 0;
          margin-right: 0;
          -ms-flex-preferred-size: 100%;
              flex-basis: 100%;
          margin-bottom: 6.25vmin; } }
    @media (min-width: 1800px) {
      .cert-page__container {
        margin-left: -10px;
        margin-right: -10px; } }
    @media (max-width: 1024px) {
      .cert-page__container {
        margin-left: 0;
        margin-right: 0; } }
  @media (min-width: 1800px) {
    .cert-page {
      padding-bottom: 15.625vmin; } }

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