@charset "UTF-8";

.fadeOut {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeOut {
  100% {
    opacity: 0;
    visibility: hidden;
  }

  99% {
    opacity: 0;
  }

  0% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fadeOut {
  100% {
    opacity: 0;
    visibility: hidden;
  }

  99% {
    opacity: 0;
  }

  0% {
    opacity: 1;
    visibility: visible;
  }
}

.fadeIn {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
    visibility: visible;
  }
}

@keyframes fadeIn {
  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
    visibility: visible;
  }
}

.fade-enter-active {
  -webkit-animation: fadeToggle 0.3s;
  animation: fadeToggle 0.3s;
}

.fade-leave-active {
  animation: fadeToggle 0.3s reverse;
}

@-webkit-keyframes fadeToggle {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeToggle {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* roboto-regular - cyrillic-ext_cyrillic_latin_latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url('../fonts/roboto-v19-cyrillic-ext_cyrillic_latin_latin-ext-regular.eot');
  /* IE9 Compat Modes */
  src: local('Roboto'), local('Roboto-Regular'),
    url('../fonts/roboto-v19-cyrillic-ext_cyrillic_latin_latin-ext-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-v19-cyrillic-ext_cyrillic_latin_latin-ext-regular.woff2') format('woff2'),
    url('../fonts/roboto-v19-cyrillic-ext_cyrillic_latin_latin-ext-regular.woff') format('woff'),
    url('../fonts/roboto-v19-cyrillic-ext_cyrillic_latin_latin-ext-regular.ttf') format('truetype'),
    url('../fonts/roboto-v19-cyrillic-ext_cyrillic_latin_latin-ext-regular.svg#Roboto') format('svg');
  /* Legacy iOS */
}

/* roboto-500 - cyrillic-ext_cyrillic_latin_latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url('../fonts/roboto-v19-cyrillic-ext_cyrillic_latin_latin-ext-500.eot');
  /* IE9 Compat Modes */
  src: local('Roboto Medium'), local('Roboto-Medium'),
    url('../fonts/roboto-v19-cyrillic-ext_cyrillic_latin_latin-ext-500.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-v19-cyrillic-ext_cyrillic_latin_latin-ext-500.woff2') format('woff2'),
    url('../fonts/roboto-v19-cyrillic-ext_cyrillic_latin_latin-ext-500.woff') format('woff'),
    url('../fonts/roboto-v19-cyrillic-ext_cyrillic_latin_latin-ext-500.ttf') format('truetype'),
    url('../fonts/roboto-v19-cyrillic-ext_cyrillic_latin_latin-ext-500.svg#Roboto') format('svg');
  /* Legacy iOS */
}

/* roboto-700 - cyrillic-ext_cyrillic_latin_latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url('../fonts/roboto-v19-cyrillic-ext_cyrillic_latin_latin-ext-700.eot');
  /* IE9 Compat Modes */
  src: local('Roboto Bold'), local('Roboto-Bold'),
    url('../fonts/roboto-v19-cyrillic-ext_cyrillic_latin_latin-ext-700.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-v19-cyrillic-ext_cyrillic_latin_latin-ext-700.woff2') format('woff2'),
    url('../fonts/roboto-v19-cyrillic-ext_cyrillic_latin_latin-ext-700.woff') format('woff'),
    url('../fonts/roboto-v19-cyrillic-ext_cyrillic_latin_latin-ext-700.ttf') format('truetype'),
    url('../fonts/roboto-v19-cyrillic-ext_cyrillic_latin_latin-ext-700.svg#Roboto') format('svg');
  /* Legacy iOS */
}

/*! normalize.css v7.0.0 | 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
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  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
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 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
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 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 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * 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 style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * 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
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

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

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 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;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  /* 2 */
}

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

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
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 and cancel buttons in Chrome and Safari on macOS.
 */
[type='search']::-webkit-search-cancel-button,
[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 IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

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

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

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

html,
body {
  height: 100%;
}

* {
  padding: 0;
  margin: 0;
}

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

*:focus,
*:active {
  outline: none;
}

body {
  color: #12212d;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1;
  text-transform: unset;
  letter-spacing: 0px;
}

a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  text-decoration: none;
  color: #000;
}

a:hover {
  text-decoration: underline;
}

h1 {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  line-height: 0.92;
  text-transform: unset;
  letter-spacing: 0px;
  color: #27587e;
}

h2 {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: unset;
  letter-spacing: 0px;
  color: #27587e;
}

@media all and (max-width: 991px) {
  h2 {
    font-size: 20px;
  }
}

@media all and (max-width: 767px) {
  h2 {
    font-size: 20px;
  }
}

@media all and (max-width: 575px) {
  h2 {
    font-size: 20px;
  }
}

h3 {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 22px;
  text-transform: unset;
  letter-spacing: 0px;
  color: #27587e;
}

@media all and (max-width: 767px) {
  h3 {
    font-size: 25px;
  }
}

@media all and (max-width: 575px) {
  h3 {
    font-size: 21px;
  }
}

h4,
h5,
h6 {
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.44;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
}

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

ul li,
ol li {
  position: relative;
  list-style: none;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.06;
  text-transform: unset;
  letter-spacing: 0px;
  padding-left: 25px;
  margin-bottom: 20px;
}

ul li::before {
  content: '';
  display: block;
  position: absolute;
  width: 10px;
  height: 4px;
  background-color: #12212d;
  left: 0;
  top: 7px;
}

ol {
  counter-reset: my-awesome-counter;
}

ol li {
  counter-increment: my-awesome-counter;
}

ol li::before {
  position: absolute;
  left: 2px;
  content: counter(my-awesome-counter);
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

table td {
  padding: 14px 15px;
}

img {
  max-width: 100%;
}

/* 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;
  width: 100%;
}

.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);
  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: auto;
  min-height: 1px;
  display: none;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide images {
  display: block;
}

.slick-slide.slick-loading images {
  display: none;
}

.slick-slide.dragging images {
  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;
}

/* Slider */
/*.slick-list {
    .slick-loading & {
        background: #fff slick-image-url("ajax-loader.gif") center center no-repeat;
    }
}*/
/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir='rtl'] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: '←';
}

[dir='rtl'] .slick-prev:before {
  content: '→';
}

.slick-next {
  right: -25px;
}

[dir='rtl'] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: '→';
}

[dir='rtl'] .slick-next:before {
  content: '←';
}

/* Dots */
.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '•';
  width: 20px;
  height: 20px;
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.btn {
  background-image: linear-gradient(247deg, #0077e2, #108dfd);
  color: #ffffff;
  text-decoration: none;
  min-width: 170px;
  padding: 10px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  display: block;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
  border: none;
  margin-bottom: 0;
  min-height: 45px;
  line-height: 25px;
}

.btn-link {
  display: block;
  color: #009efa;
  text-decoration: none;
  background: transparent;
  border-width: 0;
  cursor: pointer;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.btn-link:hover {
  color: #000;
}

.btn.btn-buy {
  width: 100%;
  margin-bottom: 5px;
}

.btn:hover {
  text-decoration: none;
  -webkit-box-shadow: 0 2px 7px 0 rgba(120, 137, 149, 0.26);
  box-shadow: 0 2px 7px 0 rgba(120, 137, 149, 0.26);
  background-image: linear-gradient(247deg, #3a7ebb, #61b0f7);
}

.btn:disabled,
.btn:disabled:hover {
  background: #ccc;
  box-shadow: none;
  cursor: auto;
}

.btn-grey {
  background: #ccc;
}

.btn-block {
  width: 100%;
}

.btn-auto {
  min-width: auto;
}

.availability {
  position: absolute;
  top: 5px;
  left: 5px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  z-index: 1;
  color: #ffffff;
  border-radius: 2px;
  padding: 1px 6px;
}

.availability.not {
  background: #d0021b;
}

.availability.have {
  background: #4da455;
}

.availability.ends {
  background: #d57b1c;
}

.availability.wait {
  background: #0072ff;
}

.compare__btn {
  width: 45px;
  height: 45px;
  border-radius: 3px;
  border: solid 1px rgba(7, 129, 239, 0.3);
  background-image: url(../images/icons/compare.svg);
  background-color: white;
  background-repeat: no-repeat;
  background-position: center;
}

.compare__btn.active {
  background-color: rgba(0, 119, 226, 0.2);
}

.favorite__btn {
  background-image: url(../images/icons/like.svg);
  background-color: white;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  cursor: pointer;
  background-position: center;
  border-radius: 3px;
  border: solid 1px rgba(7, 129, 239, 0.3);
}

.favorite__btn.active {
  background-color: rgba(0, 119, 226, 0.2);
}

.btn_white {
  color: #fff;
  text-decoration: none;
  width: 170px;
  padding: 10px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  display: block;
  border-radius: 3px;
  -webkit-box-shadow: 0 2px 7px 0 rgba(120, 137, 149, 0.26);
  box-shadow: 0 2px 7px 0 rgba(120, 137, 149, 0.26);
  text-align: center;
  cursor: pointer;
  border: none;
  background-color: #ffffff;
  color: #12212d;
}

.btn_white:hover {
  text-decoration: none;
  -webkit-box-shadow: 0 2px 7px 0 rgba(120, 137, 149, 0.26);
  box-shadow: 0 2px 7px 0 rgba(120, 137, 149, 0.26);
  background-color: #ddedff;
}

.table_dropdown__btn {
  width: 23px;
  cursor: pointer;
  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;
  height: 10px;
}

.table_dropdown__btn span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b7bcc0;
}

.table_dropdown__btn:hover span {
  background-color: #12212d;
}

.download__wrap {
  position: relative;
}

.download__link {
  background-image: url(../images/icons/clipboards.svg);
  background-color: #ffffff;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  -webkit-box-shadow: 0 2px 15px -3px rgba(57, 92, 60, 0.37);
  box-shadow: 0 2px 15px -3px rgba(57, 92, 60, 0.37);
  display: inline-block;
}

.download__link.receipt {
  background-image: url(../images/order-info.svg);
}

.download__link.invoice {
  background-image: url(../images/order-invoice.svg);
}

.download__link.sale {
  background-image: url(../images/order-sale.svg);
}

.order-details-download-link {
  margin-left: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  display: block;
}

.order-details-download-link.receipt {
  background-image: url(../images/icon-step1-attation.png);
}

.order-details-download-link.invoice {
  background-image: url(../images/icon-step2-invoice.png);
}

.order-details-download-link.sale {
  background-image: url(../images/icon-step3-sale.png);
}

.cancel_btn {
  margin-left: 30px;
  color: #12212d;
  opacity: 0.4;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  cursor: pointer;
}

.cancel_btn:hover {
  opacity: 1;
}

.disabled {
  pointer-events: none;
  opacity: 0.6;
}

.close {
  position: absolute;
  right: 5px;
  top: 0;
  width: 18px;
  height: 18px;
}

.close:hover {
  opacity: 0.7;
}

.close:before,
.close:after {
  position: absolute;
  content: ' ';
  height: 19px;
  width: 2px;
  background-color: #009efa;
}

.close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.buttonSubmit {
  width: 130px;
  height: 36px;
  border: 1px solid #f46c45;
  border-radius: 20px;
  background: white;
  font-weight: 700;
  color: #f18846;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  text-transform: uppercase;
}

.buttonSubmit:hover {
  border: none;
  color: #ffffff;
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(#f2bf79),
      to(#f79377));
  background: linear-gradient(90deg, #f2bf79 0%, #f79377 100%);
}

.buttonSubmit:active {
  border: none;
  color: #ffffff;
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(#d89a46),
      to(#dc613f));
  background: linear-gradient(90deg, #d89a46 0%, #dc613f 100%);
}

.buttonSubmit_disabled {
  color: #b2bcca;
  background: #d8e0e6;
  border: none;
  cursor: default;
}

.buttonSubmit_disabled:hover {
  border: none;
  color: #b2bcca;
  background: #d8e0e6;
}

.buttonSubmit_disabled:active {
  border: none;
  color: #b2bcca;
  background: #d8e0e6;
}

.form__row {
  padding-bottom: 1rem;
}

.form .form__group {
  position: relative;
  margin-bottom: 10px;
}

.form .form__label {
  margin-bottom: 7px;
  color: rgba(18, 33, 45, 0.7);
  display: block;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.form .form__label.black {
  color: #000;
}

.form .form__input,
.form .form__textarea {
  width: 100%;
  padding: 9px 13px;
  border: 1px solid #b7bcc0;
  color: #12212d;
  border-radius: 3px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.form__checkbox-group {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #b7bcc0;
  background: #fff;
  border-radius: 3px;
}

.form__checkbox-group .checkbox {
  margin: 10px;
  width: auto;
}

@media all and (min-width: 575px) {
  .form__checkbox-group.cols-2 .checkbox {
    width: calc(50% - 20px);
  }
}

.form .form__input:disabled,
.form .form__textarea:disabled {
  background-color: inherit;
  cursor: not-allowed;
}

.form .form__textarea {
  resize: none;
}

body input.error,
body select.error,
body textarea.error {
  border: 1px solid #fe1e00;
  color: #fe1e00;
}

.form__label.error {
  border-color: #fe1e00 !important;
  color: #fe1e00 !important;
}

.error-message {
  color: #fe1e00;
}

.radio .radio__input {
  display: none;
}

.radio .radio__input:checked+.radio__label:before {
  border: 7px solid #009efa;
}

.radio .radio__label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 25px;
}

.radio .radio__label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  border: 1px solid #b7bcc0;
}

.checkbox .checkbox__input {
  display: none;
}

.checkbox .checkbox__input:checked+.]:before {
  background-image: linear-gradient(212deg, #0077e2, #108dfd);
}

.checkbox .checkbox__input:checked+.checkbox__label:after {
  content: '';
  position: absolute;
  background: url(../images/icons/checked.svg) no-repeat;
  width: 12px;
  height: 9px;
  background-size: contain;
  top: 8px;
  left: 8px;
}

.checkbox .checkbox__label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 35px;
  cursor: pointer;
  min-height: 25px;
}

.checkbox .checkbox__label::before {
  content: '';
  width: 25px;
  height: 25px;
  border-radius: 3px;
  border: solid 1px #b7bcc0;
  position: absolute;
  left: 0;
  top: 0;
}

.checkbox .checkbox__label::after {
  content: '';
  position: absolute;
}

.subscription {
  background: linear-gradient(260deg, #0077e2, #108dfd);
  padding: 38px 65px;
}

@media all and (max-width: 1180px) {
  .subscription {
    padding: 30px 15px;
  }
}

@media all and (max-width: 767px) {
  .subscription {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.subscription>div {
  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;
}

.subscription__title {
  color: #ffffff;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

@media all and (max-width: 767px) {
  .subscription__title {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media all and (max-width: 575px) {
  .subscription__title {
    text-align: center;
  }
}

.subscription .sender_subscribe_form {
  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;
}

.subscription__fileld {
  width: 342px;
  height: 50px;
  padding-left: 15px;
}

.subscription__btn {
  padding: 14.5px 10px;
  margin-left: 10px;
}

@media all and (max-width: 575px) {
  .subscription__btn {
    margin: 27px auto 0;
  }
}

.catalog__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.catalog__item {
  width: 285px;
  height: 433px;
  text-align: center;
  background: #ffffff;
  margin-bottom: 20px;
  border-right: 1px solid #b7bcc0;
  position: relative;
  padding-top: 17px;
}

@media all and (max-width: 1180px) {
  .catalog__item {
    width: 320px;
  }
}

@media all and (max-width: 991px) {
  .catalog__item {
    width: 50%;
  }
}

@media all and (max-width: 575px) {
  .catalog__item {
    width: 100%;
    border-right: none;
  }
}

.catalog__item:nth-of-type(4n + 4) {
  border-right: none;
}

@media all and (max-width: 1180px) {
  .catalog__item:nth-of-type(4n + 4) {
    border-right: 1px solid #b7bcc0;
  }
}

@media all and (max-width: 575px) {
  .catalog__item:nth-of-type(4n + 4) {
    border-right: none;
  }
}

@media all and (max-width: 1180px) {
  .catalog__item:nth-of-type(3n + 3) {
    border-right: none;
  }
}

@media all and (max-width: 991px) {
  .catalog__item:nth-of-type(3n + 3) {
    border-right: 1px solid #b7bcc0;
  }
}

@media all and (max-width: 575px) {
  .catalog__item:nth-of-type(3n + 3) {
    border-right: none;
  }
}

@media all and (max-width: 991px) {
  .catalog__item:nth-of-type(2n + 2) {
    border-right: none;
  }
}

@media all and (max-width: 575px) {
  .catalog__item:nth-of-type(2n + 2) {
    border-right: none;
  }
}

.catalog__item a {
  text-decoration: none;
  -webkit-transition: unset;
  transition: unset;
}

.catalog__itemBottom {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  width: 100%;
  background: #ffffff;
  padding: 10px 0 18px;
}

.catalog__itemDescr {
  width: 100%;
  color: rgba(18, 33, 45, 0.7);
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-top: 10px;
}

.catalog__item .block_mount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catalog__item .block_mount input[type='text'] {
  border: none;
  width: 69px;
  text-align: center;
  border-top: 1px solid #b7bcc0;
  border-bottom: 1px solid #b7bcc0;
}

.catalog__item .block_mount input[type='text']:disabled {
  background-color: inherit;
  cursor: not-allowed;
}

.catalog__item .stiker__wrap {
  left: 5px;
  top: 5px;
}

.catalog__name {
  color: #009efa;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin: 14px 0 10px;
  height: 42px;
  padding: 0 5px;
}

.catalog__price {
  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: 3px;
  padding: 0 30px 0;
}

.catalog__price .title {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  opacity: 0.7;
  color: #12212d;
}

.catalog__price .value {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  margin-left: 5px;
}

.catalog__code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 10px 30px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.catalog__code .title {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  opacity: 0.7;
  color: #12212d;
}

.catalog__code .value {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  margin-left: 5px;
}

.catalog__code>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.catalog__image_wrap {
  height: 139px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalog__image_wrap img {
  max-width: 90%;
}

.catalog__btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 30px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
  height: 55px;
  background: #ffffff;
}

.catalog__grid .catalog__item:hover .catalog__btn_wrap {
  height: auto;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0 35px 32px -28px rgba(135, 135, 135, 0.5);
  box-shadow: 0 35px 32px -28px rgba(135, 135, 135, 0.5);
}

.filter__sidebar {
  background: #fff;
  width: 260px;
  padding: 0 0 31px;
}

@media all and (max-width: 991px) {
  .filter__sidebar {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 0 18px;
  }
}

.filter__sidebar.open .filter__title:before {
  background: #b7bcc0;
}

.filter__sidebar.open .filter__title:after {
  display: none;
}

.filter__sidebar.open .filter__body {
  display: block;
}

@media all and (max-width: 991px) {
  .filter__body {
    display: none;
  }
}

.filter__title {
  display: none;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  padding: 15px 50px 0 30px;
  position: relative;
  cursor: pointer;
}

@media all and (max-width: 991px) {
  .filter__title {
    display: block;
  }
}

.filter__title:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: #009efa;
  right: 27px;
  top: 31px;
}

.filter__title:after {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: #0e8afa;
  right: 36px;
  top: 22px;
}

.filter__group {
  padding: 0 25px 0 30px;
  border-bottom: 1px solid #b7bcc0;
}

.filter__group.open .filter__toggle_body {
  display: block;
}

.filter__group.open .filter__toggle_head_btn:before {
  background: #b7bcc0;
}

.filter__group.open .filter__toggle_head_btn:after {
  display: none;
}

.filter__checkbox label,
.filter__radio label {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  display: block;
  color: #12212d;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  min-height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 17px;
}

.filter__checkbox label:before {
  content: '';
  width: 25px;
  height: 25px;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 3px;
  border: solid 1px #b7bcc0;
}

.filter__checkbox input[type='checkbox']:checked+label:before {
  background-image: linear-gradient(212deg, #0077e2, #108dfd);
}

.filter__checkbox input[type='checkbox']:checked+label:after {
  content: '';
  position: absolute;
  background: url(../images/icons/checked.svg) no-repeat;
  width: 12px;
  height: 9px;
  background-size: contain;
  right: 5px;
  top: 9px;
}

.filter__checkbox input,
.filter__radio input {
  display: none;
}

.filter__radio label:before {
  content: '';
  height: 25px;
  width: 25px;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 50%;
  border: 1px solid #b7bcc0;
}

.filter__radio input[type='radio']:checked+label:before {
  border: 7px solid #009efa;
}

.filter__toggle_head {
  padding: 29px 0px 29px;
  cursor: pointer;
}

.filter__head_title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  padding-right: 30px;
}

.filter__toggle_head_btn {
  position: relative;
}

.filter__toggle_head_btn:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: #0e8afa;
  right: 2px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.filter__toggle_head_btn:after {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: #0e8afa;
  right: 10.5px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.filter__toggle_body {
  display: none;
}

.filter__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 37px 0 30px;
  margin-top: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media all and (max-width: 991px) {
  .filter__btn {
    margin-top: 20px;
  }
}

.filter__btn .btn {
  width: 102px;
}

.filter__delBtn {
  background: none;
  border: none;
  cursor: pointer;
  color: #009efa;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.filter__delBtn:hover {
  opacity: 1;
}

.catalogBloks .image__wrap {
  z-index: 1;
  position: absolute;
}

.catalogBloks a {
  text-decoration: none;
  display: block;
}

.catalogBloks .top_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.catalogBloks .main__catalog_item_1 {
  width: 760px;
  height: 400px;
  position: relative;
}

.catalogBloks .main__catalog_item_1 .title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  line-height: 30px;
  text-transform: unset;
  letter-spacing: 0px;
  color: #27587e;
  max-width: 330px;
  margin: 60px 0 0 40px;
  display: inline-block;
}

.catalogBloks .main__catalog_item_1 .count {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #27587e;
  opacity: 0.6;
  position: absolute;
  bottom: 50px;
  left: 40px;
}

.catalogBloks .main__catalog_item_1 .image__wrap {
  width: 447px;
  height: 447px;
  right: -5px;
  top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalogBloks .top_left_section.right {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.catalogBloks .top_right_section {
  width: 380px;
  height: 400px;
}

.catalogBloks .main__catalog_item_2 {
  height: 200px;
  position: relative;
}

.catalogBloks .main__catalog_item_2 .title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  line-height: 26px;
  text-transform: unset;
  letter-spacing: 0px;
  color: #ffffff;
  max-width: 100px;
  margin: 30px 0 0 30px;
  display: inline-block;
}

.catalogBloks .main__catalog_item_2 .count {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 0.6;
  position: absolute;
  bottom: 35px;
  left: 30px;
}

.catalogBloks .main__catalog_item_2 .image__wrap {
  width: 210px;
  height: 148px;
  right: 0px;
  top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalogBloks .main__catalog_item_3 {
  height: 200px;
  position: relative;
}

.catalogBloks .main__catalog_item_3 .title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  line-height: 26px;
  text-transform: unset;
  letter-spacing: 0px;
  color: #ffffff;
  max-width: 150px;
  margin: 30px 0 0 30px;
  display: inline-block;
}

.catalogBloks .main__catalog_item_3 .count {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 0.6;
  position: absolute;
  bottom: 35px;
  left: 30px;
}

.catalogBloks .main__catalog_item_3 .image__wrap {
  width: 231px;
  height: 212px;
  right: -22px;
  top: -18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalogBloks .bottom_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.catalogBloks .main__catalog_item_4 {
  width: 380px;
  height: 200px;
  position: relative;
}

.catalogBloks .main__catalog_item_4 .title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  line-height: 26px;
  text-transform: unset;
  letter-spacing: 0px;
  color: #ffffff;
  max-width: 330px;
  margin: 30px 0 0 30px;
  display: inline-block;
}

.catalogBloks .main__catalog_item_4 .count {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 0.6;
  position: absolute;
  top: 64px;
  left: 30px;
}

.catalogBloks .main__catalog_item_4 .image__wrap {
  height: 145px;
  left: 0;
  right: 0;
  top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalogBloks .main__catalog_item_5 {
  width: 380px;
  height: 200px;
  position: relative;
}

.catalogBloks .main__catalog_item_5 .title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  line-height: 26px;
  text-transform: unset;
  letter-spacing: 0px;
  color: #ffffff;
  max-width: 240px;
  margin: 30px 0 0 30px;
  display: inline-block;
}

.catalogBloks .main__catalog_item_5 .count {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 0.6;
  position: absolute;
  top: 93px;
  left: 30px;
}

.catalogBloks .main__catalog_item_5 .image__wrap {
  width: 315px;
  height: 165px;
  right: -48px;
  bottom: -26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalogBloks .main__catalog_item_6 {
  width: 380px;
  height: 200px;
  position: relative;
}

.catalogBloks .main__catalog_item_6 .title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  line-height: 26px;
  text-transform: unset;
  letter-spacing: 0px;
  color: #ffffff;
  max-width: 240px;
  margin: 30px 0 0 30px;
  display: inline-block;
}

.catalogBloks .main__catalog_item_6 .count {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 0.6;
  position: absolute;
  top: 93px;
  left: 30px;
}

.catalogBloks .main__catalog_item_6 .image__wrap {
  width: 290px;
  height: 200px;
  right: -20px;
  bottom: -13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalogCategory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
}

@media all and (max-width: 1180px) {
  .catalogCategory {
    grid-auto-rows: 160px;
  }
}

@media all and (max-width: 767px) {
  .catalogCategory {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media all and (max-width: 575px) {
  .catalogCategory {
    grid-template-columns: repeat(1, 1fr);
  }
}

.catalogCategory .catalogCategoryItem {
  position: relative;
}

.catalogCategory .catalogCategoryItem a {
  text-decoration: none;
  display: block;
}

.catalogCategory .catalogCategoryItem:nth-of-type(9n + 1),
.catalogCategory .catalogCategoryItem:nth-of-type(9n + 8) {
  grid-column: auto / span 2;
  grid-row: auto / span 2;
}

@media all and (max-width: 767px) {

  .catalogCategory .catalogCategoryItem:nth-of-type(9n + 1),
  .catalogCategory .catalogCategoryItem:nth-of-type(9n + 8) {
    grid-column: unset;
    grid-row: unset;
  }
}

.catalogCategory .catalogCategoryItem:nth-of-type(9n + 1) .title,
.catalogCategory .catalogCategoryItem:nth-of-type(9n + 8) .title {
  color: #27587e;
  max-width: 100%;
}

.catalogCategory .catalogCategoryItem:nth-of-type(9n + 1) .count,
.catalogCategory .catalogCategoryItem:nth-of-type(9n + 8) .count {
  color: #27587e;
  bottom: 50px;
  left: 40px;
  top: auto;
  right: auto;
}

.catalogCategory .catalogCategoryItem:nth-of-type(9n + 1) .image__wrap,
.catalogCategory .catalogCategoryItem:nth-of-type(9n + 8) .image__wrap {
  width: 447px;
  height: 447px;
  right: -5px;
  top: 10px;
  bottom: auto;
  left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media all and (max-width: 1180px) {

  .catalogCategory .catalogCategoryItem:nth-of-type(9n + 1) .image__wrap,
  .catalogCategory .catalogCategoryItem:nth-of-type(9n + 8) .image__wrap {
    width: 327px;
    height: 327px;
    right: 10px;
  }
}

@media all and (max-width: 767px) {

  .catalogCategory .catalogCategoryItem:nth-of-type(9n + 1) .image__wrap,
  .catalogCategory .catalogCategoryItem:nth-of-type(9n + 8) .image__wrap {
    display: none;
  }
}

.catalogCategory .catalogCategoryItem .title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #ffffff;
  margin: 30px 0 0 30px;
  display: inline-block;
  position: relative;
  z-index: 2;
}

@media all and (max-width: 1180px) {
  .catalogCategory .catalogCategoryItem .title {
    font-size: 20px;
  }
}

@media all and (max-width: 767px) {
  .catalogCategory .catalogCategoryItem .title {
    max-width: 100% !important;
    padding-right: 15px;
  }
}

.catalogCategory .catalogCategoryItem .count {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 0.6;
  position: absolute;
  z-index: 2;
}

@media all and (max-width: 767px) {
  .catalogCategory .catalogCategoryItem .count {
    position: static;
    margin-left: 30px;
  }
}

.catalogCategory .catalogCategoryItem .image__wrap {
  position: absolute;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media all and (max-width: 767px) {
  .catalogCategory .catalogCategoryItem .image__wrap {
    display: none;
  }
}

.catalogCategory .catalogCategoryItem_1 .title {
  max-width: 140px;
}

.catalogCategory .catalogCategoryItem_1 .count {
  bottom: 35px;
  left: 30px;
}

.catalogCategory .catalogCategoryItem_1 .image__wrap {
  width: 210px;
  height: 148px;
  right: 0px;
  top: 32px;
}

@media all and (max-width: 1180px) {
  .catalogCategory .catalogCategoryItem_1 .image__wrap {
    width: 123px;
    height: 97px;
    right: 5px;
  }
}

.catalogCategory .catalogCategoryItem_2 .title {
  max-width: 140px;
}

.catalogCategory .catalogCategoryItem_2 .count {
  bottom: 35px;
  left: 30px;
}

.catalogCategory .catalogCategoryItem_2 .image__wrap {
  width: 231px;
  height: 212px;
  right: -22px;
  top: -18px;
}

@media all and (max-width: 1180px) {
  .catalogCategory .catalogCategoryItem_2 .image__wrap {
    width: 86px;
    height: 155px;
    right: 5px;
  }
}

.catalogCategory .catalogCategoryItem_3 .count {
  position: static;
  margin-left: 30px;
}

.catalogCategory .catalogCategoryItem_3 .image__wrap {
  height: 145px;
  left: 0;
  right: 0;
  top: 70px;
}

@media all and (max-width: 1180px) {
  .catalogCategory .catalogCategoryItem_3 .image__wrap {
    height: 70px;
    left: 30px;
    right: 30px;
    top: 76px;
  }
}

.catalogCategory .catalogCategoryItem_4 .count {
  position: static;
  margin-left: 30px;
}

.catalogCategory .catalogCategoryItem_4 .image__wrap {
  width: 315px;
  height: 165px;
  right: -48px;
  bottom: -26px;
}

@media all and (max-width: 1180px) {
  .catalogCategory .catalogCategoryItem_4 .image__wrap {
    width: 215px;
    height: 115px;
    right: -23px;
    bottom: -13px;
  }
}

.catalogCategory .catalogCategoryItem_5 .count {
  position: static;
  margin-left: 30px;
}

.catalogCategory .catalogCategoryItem_5 .image__wrap {
  width: 290px;
  height: 200px;
  right: -20px;
  bottom: -13px;
}

@media all and (max-width: 1180px) {
  .catalogCategory .catalogCategoryItem_5 .image__wrap {
    width: 160px;
    height: 140px;
    right: -11px;
    bottom: -11px;
  }
}

.popup-window.popup-window-with-titlebar {
  padding: 0 10px !important;
}

.popup-window-buttons {
  padding-bottom: 5px;
}

.popup-window-buttons .btn {
  width: 100%;
  margin-bottom: 5px !important;
}

.main_menu {
  position: relative;
}

@media all and (max-width: 575px) {
  .main_menu {
    position: static;
  }
}

.main_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 991px) {
  .main_menu ul {
    display: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: absolute;
    z-index: 3;
    background-color: #ffffff;
    top: 40px;
    left: 0;
    border-radius: 2px;
    -webkit-box-shadow: 0 11px 22px 0 rgba(142, 142, 142, 0.23);
    box-shadow: 0 11px 22px 0 rgba(142, 142, 142, 0.23);
  }
}

@media all and (max-width: 575px) {
  .main_menu ul {
    right: 0;
    top: 131px;
  }
}

.main_menuBtn {
  display: none;
}

@media all and (max-width: 991px) {
  .main_menuBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 40px;
    height: 29px;
    cursor: pointer;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.main_menuBtn span {
  width: 100%;
  height: 4px;
  background: #ffffff;
}

.main_menu li {
  list-style: none;
  margin-bottom: 0;
  margin: 0 38px 0 0;
  padding: 6px 0px 13px;
  min-width: 75px;
}

@media all and (max-width: 1180px) {
  .main_menu li {
    margin: 0 15px 0 0;
  }
}

@media all and (max-width: 991px) {
  .main_menu li {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

.main_menu li:before {
  display: none;
}

.main_menu li a {
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #fff;
}

@media all and (max-width: 991px) {
  .main_menu li a {
    color: #12212d;
    display: block;
    padding: 10px 21px;
  }
}

.main_menu li:hover a,
.main_menu li.active a {
  position: relative;
}

.main_menu li:hover a:before,
.main_menu li.active a:before {
  content: '';
  position: absolute;
  display: block;
  height: 2px;
  background: #fff;
  left: 0;
  top: 32px;
  right: 0;
  width: 100%;
}

.lc__menu {
  width: 260px;
  background: #ffffff;
  min-height: 592px;
}

@media all and (max-width: 991px) {
  .lc__menu {
    width: 100%;
    min-height: unset;
  }
}

.lc__menu.open .lc__menuTitle:before {
  background: #b7bcc0;
}

.lc__menu.open .lc__menuTitle:after {
  display: none;
}

.lc__menu.open a {
  display: block;
}

.lc__menuTitle {
  display: none;
  position: relative;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  padding: 15px 50px 15px 30px;
}

@media all and (max-width: 991px) {
  .lc__menuTitle {
    display: block;
  }
}

.lc__menuTitle:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: #009efa;
  right: 27px;
  top: 31px;
}

.lc__menuTitle:after {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: #0e8afa;
  right: 36px;
  top: 22px;
}

.lc__menu a {
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  display: block;
  text-decoration: none;
  color: #12212d;
  padding: 14.5px 10px 14.5px 37px;
  position: relative;
}

@media all and (max-width: 991px) {
  .lc__menu a {
    display: none;
  }
}

.lc__menu a.active {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #009efa;
  background-image: -webkit-gradient(linear,
      right top,
      left top,
      from(rgba(6, 127, 235, 0.1)),
      to(rgba(6, 127, 235, 0.15)));
  background-image: linear-gradient(to left,
      rgba(6, 127, 235, 0.1),
      rgba(6, 127, 235, 0.15));
}

.lc__menu a.active:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5px;
  left: 0;
  background: #009efa;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.lc__menu a:hover {
  color: #009efa;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.catalogMenu {
  background-color: #ffffff;
  /* padding: 30px 0px 30px; */
  width: 263px;
}

@media all and (max-width: 991px) {
  .catalogMenu {
    width: 100%;
    padding: 0;
    margin-top: 25px;
  }
}

.catalogMenu .title {
  color: #27587e;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-bottom: 0;
  padding: 12px 50px 12px 30px;
  display: none;
  position: relative;
  cursor: pointer;
}

@media all and (min-width: 993px) {
  .vendor_page .catalogMenu {
    display: none;
  }
}

.catalogMenu.brand {
  display: block;
  padding: 0;
}

@media all and (max-width: 992px) {
  .catalogMenu.brand {
    display: none;
  }
}

.catalogMenu.brand .title {
  display: block;
}

.catalogMenu.collapsed .title {
  display: block;
}

.catalogMenu.collapsed .title:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: #009efa;
  right: 27px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.catalogMenu.collapsed .title:after {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: #009efa;
  right: 36px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.catalogMenu.brand .title:before,
.catalogMenu.brand .title:after {
  display: none;
}

.catalogMenu.open {
  padding: 0 0 30px 0;
}

.catalogMenu.collapsed .catalogMenu__list {
  display: none;
}

.catalogMenu.open .catalogMenu__list+.filter__group+.filter__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catalogMenu.open .catalogMenu__list+.filter__group {
  display: block;
}

.catalogMenu.open .catalogMenu__list {
  display: block;
}

.catalogMenu.open .title {
  padding: 12px 55px 0 30px;
  margin-bottom: 15px;
}

.catalogMenu.open .title:before {
  top: 27px;
  background: #b7bcc0;
}

.catalogMenu.open .title:after {
  display: none;
}

.catalogMenu li:before {
  display: none;
}

.catalogMenu li {
  margin: 0px;
  padding: 0;
}

.catalogMenu li a {
  display: block;
  text-decoration: none;
  color: #12212d;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  padding: 15px 5px 14px 30px;
  width: 100%;
}

.catalogMenu li a:hover {
  color: #009efa;
}

.catalogMenu>ul>li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}

.catalogMenu>ul>li .dropdown_btn {
  width: 33px;
  height: 50px;
  position: relative;
  cursor: pointer;
}

.catalogMenu>ul>li .dropdown_btn:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  border-top: 5px solid #12212d;
  left: 16px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.catalogMenu>ul>li.parent a {
  padding: 15px 5px 14px 13px;
  width: calc(100% - 33px);
}

.catalogMenu>ul>li.parent a+ul {
  display: none;
}

.catalogMenu>ul>li.parent a+ul li.active a {
  color: #009efa;
}

.catalogMenu>ul>li.parent a+ul a {
  padding-left: 45px;
}

.catalogMenu>ul>li.active>a {
  position: relative;
  background: rgba(6, 127, 235, 0.15);
  color: #009efa;
  width: 100%;
}

.catalogMenu>ul>li.active::after {
  content: '';
  position: absolute;
  background: #067feb;
  width: 5px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  top: 0;
  left: 0;
  height: 50px;
}

.catalogMenu>ul>li.active .dropdown_btn {
  background: rgba(6, 127, 235, 0.15);
}

.catalogMenu>ul>li.active .dropdown_btn:before {
  border-top: 5px solid #009efa;
}

.catalogMenu>ul>li.parent.open a+ul {
  display: block;
  width: 100%;
}

.catalogMenu>ul>li.parent.open .dropdown_btn:before {
  border-bottom: 5px solid #12212d;
  border-top: none;
}

.catalogMenu>ul>li.parent.open.active .dropdown_btn:before {
  border-bottom: 5px solid #009efa;
}

.catalogMenu>ul>li.parent.active a {
  width: calc(100% - 33px);
}

.catalogMenu .catalogMenu__list+.filter__group {
  border-top: 1px solid #b7bcc0;
}

@media all and (max-width: 991px) {
  .catalogMenu .catalogMenu__list+.filter__group {
    display: none;
  }
}

@media all and (max-width: 991px) {
  .catalogMenu .catalogMenu__list+.filter__group+.filter__btn {
    display: none;
  }
}

.pageTitle {
  color: #12212d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.pageTitle_reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.pageTitle_white {
  color: #ffffff;
}

.pageTitle__title {
  max-width: 1100px;
  margin: 10px 0;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 76px;
  line-height: 1;
  text-transform: unset;
  letter-spacing: 0px;
  color: inherit;
}

@media all and (max-width: 991px) {
  .pageTitle__title {
    font-size: 60px;
  }
}

@media all and (max-width: 767px) {
  .pageTitle__title {
    font-size: 48px;
  }
}

@media all and (max-width: 575px) {
  .pageTitle__title {
    font-size: 29px;
  }
}

.pageTitle__desc {
  max-width: 450px;
  position: relative;
  margin: 10px 0;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: inherit;
}

@media all and (max-width: 575px) {
  .pageTitle__desc {
    font-family: 'Roboto', sans-serif;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-transform: unset;
    letter-spacing: 0px;
  }
}

.pageTitle__desc:before {
  content: '';
  display: block;
  position: absolute;
  width: 110px;
  height: 1px;
  top: 13px;
  right: calc(100% + 20px);
  background-color: #ffffff;
}

@media all and (max-width: 991px) {
  .pageTitle__desc:before {
    widht: 12px;
  }
}

@media all and (max-width: 575px) {
  .pageTitle__desc:before {
    display: none;
  }
}

.userMessage {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  padding: 5px;
  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;
}

.pageSubtitle {
  color: #12212d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.pageSubtitle_reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.pageSubtitle_white {
  color: #ffffff;
}

.pageSubtitle_mirrored .pageSubtitle__desc::before {
  right: unset;
  left: calc(100% + 15px);
}

.pageSubtitle__desc {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  margin-bottom: 15px;
  font-family: 'Roboto', sans-serif;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.5;
}

.pageSubtitle__desc:before {
  content: '';
  display: block;
  position: absolute;
  width: 70px;
  height: 2px;
  top: 10px;
  right: calc(100% + 15px);
  background-color: #12212d;
  opacity: 0.5;
}

@media all and (max-width: 1180px) {
  .pageSubtitle__desc:before {
    width: 17px;
  }
}

@media all and (max-width: 575px) {
  .pageSubtitle__desc:before {
    display: none;
  }
}

.pageSubtitle__title {
  margin: 10px 0;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 48px;
  line-height: 1;
  text-transform: unset;
  letter-spacing: 0px;
  letter-spacing: -0.9px;
  color: inherit;
}

@media all and (max-width: 991px) {
  .pageSubtitle__title {
    font-size: 43px;
  }
}

@media all and (max-width: 767px) {
  .pageSubtitle__title {
    font-size: 35px;
  }
}

@media all and (max-width: 575px) {
  .pageSubtitle__title {
    font-size: 26px;
  }
}

.breadcrumbs__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 26px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 767px) {
  .breadcrumbs__container {
    display: none;
  }
}

.breadcrumbs__item:not(:last-of-type) {
  margin-right: 6.5px;
  position: relative;
  padding-right: 9.5px;
}

.breadcrumbs__item:not(:last-of-type):before {
  content: '.';
  position: absolute;
  right: 0;
}

.breadcrumbs__item a,
.breadcrumbs__item span {
  color: #12212d;
  text-decoration: none;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.breadcrumbs__item span {
  opacity: 0.7;
}

.pagination {
  margin: 10px 0 50px;
}

.pagination button {
  cursor: pointer;
  border: none;
  width: 50px;
  height: 50px;
  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: #12212d;
  opacity: 0.6;
  background: #ffffff;
}

.pagination button:hover {
  opacity: 1;
  color: #ffffff;
  background: linear-gradient(212deg, #0077e2, #108dfd);
  border: none;
}

.pagination .v-pagination__navigation {
  border: 1px solid #b7bcc0;
}

.pagination .v-pagination__navigation--disabled {
  pointer-events: none;
}

.pagination .v-pagination__item--active {
  opacity: 1;
  color: #ffffff;
  background-image: linear-gradient(212deg, #0077e2, #108dfd);
}

.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pagination li {
  padding-left: 0;
}

.pagination li:before {
  display: none;
}

.pagination li a {
  cursor: pointer;
}

.pagination li a,
.pagination li span {
  text-decoration: none;
  width: 50px;
  height: 50px;
  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: #12212d;
  opacity: 0.6;
}

@media all and (max-width: 575px) {

  .pagination li a,
  .pagination li span {
    width: 35px;
    height: 35px;
  }
}

.pagination li a svg,
.pagination li span svg {
  height: 14px;
  width: 14px;
}

.pagination li a.prev,
.pagination li a.next,
.pagination li span.prev,
.pagination li span.next {
  border: 1px solid #b7bcc0;
}

.pagination li a.prev,
.pagination li span.prev {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.pagination li.active span,
.pagination li.active a {
  opacity: 1;
  color: #ffffff;
  background-image: linear-gradient(212deg, #0077e2, #108dfd);
}

.pagination li:hover a {
  opacity: 1;
  color: #ffffff;
  background: linear-gradient(212deg, #0077e2, #108dfd);
  border: none;
}

.pagination li:hover a:hover svg {
  fill: #ffffff;
}

.v-pagination li:first-of-type .v-pagination__navigation:before {
  content: '\276E';
}

.v-pagination li:last-of-type .v-pagination__navigation:before {
  content: '\276E';
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.dropdown {
  position: relative;
  border: 1px solid #b7bcc0;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  padding: 0 22px 0 10px;
  color: rgba(18, 33, 45, 0.7);
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  border-radius: 3px;
}

.dropdown:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  border-top: 5px solid #12212d;
  right: 10px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.status {
  border-radius: 2px;
  text-align: center;
  display: inline-block;
  padding: 9.5px 2px;
  width: 158px;
  position: relative;
}

.status.processing,
.status.new {
  background: #ffeb00;
}

.status.shipped,
.status.done,
.status.accepted,
.status.confirmed,
.status.completed {
  background: #2ed03d;
}

.status.not_available,
.status.canceled {
  background: #f34028;
}

.itemStatus {
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  padding: 0 30px;
  text-align: left;
}

.itemStatus.inStock {
  color: #4da455;
}

.itemStatus.notAvailable {
  color: #c3bcbd;
}

.itemStatus.ending {
  color: #d57b1c;
}

.itemStatus.wait {
  color: #712bd4;
}

.detail__status.inStock {
  color: #4da455;
}

.detail__status.notAvailable {
  color: #c3bcbd;
}

.detail__status.ending {
  color: #d57b1c;
}

.detail__status.wait {
  color: #712bd4;
}

.stiker__wrap {
  position: absolute;
  z-index: 1;
}

.stiker__wrap>div {
  color: #ffffff;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  padding: 2px 14px;
  border-radius: 2px;
}

.stiker__wrap .new {
  background: #75d67e;
}

.stiker__wrap .news {
  background: rgba(255, 255, 255, 0.4);
}

.stiker__wrap .action {
  background: #d0021b;
}

.stiker__wrap .special {
  background: #d57b1c;
}

.table_dropdown__wrap {
  position: relative;
}

.table_dropdown__body {
  position: absolute;
  text-align: left;
  background: #fff;
  padding: 20px;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  margin-top: 15px;
  min-width: 150px;
  z-index: 1;
}

.table_dropdown__body p,
.table_dropdown__body a {
  cursor: pointer;
  text-decoration: none;
  font-weight: 400;
  padding: 5px 0;
  color: #12212d;
}

.snackbar {
  background-image: linear-gradient(88deg, #55cd60, #89dc90);
  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: 15px 30px;
  border-radius: 3px;
  color: #fff;
  margin: 20px 0;
}

.snackbar__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.snackbar__content__value {
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  padding-left: 5px;
}

.snackbar__content__title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #fff;
}

.snackbar__close {
  width: 15px;
  height: 15px;
  background: url(../images/icons/close.svg) no-repeat;
  cursor: pointer;
}

.snackbar__top {
  position: fixed;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 100000000;
}

.snackbar__top .snackbar {
  width: 100%;
  padding: 30px 5%;
  margin: 0;
  border-radius: 0;
}

.snackbar__top .snackbar .snackbar__content__title,
.snackbar__top .snackbar .snackbar__content__value {
  font-size: 20px;
  font-weight: bold;
  padding-left: 5px;
}

.sidebar {
  width: 273px;
  background: #fff;
  padding-bottom: 39px;
}

@media all and (max-width: 991px) {
  .sidebar {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 25px;
  }
}

.sidebar.open .sidebar__title:before {
  background: #b7bcc0;
}

.sidebar.open .sidebar__title:after {
  display: none;
  padding-bottom: 15px;
}

.sidebar.open .sidebar__nav {
  display: block;
}

@media all and (max-width: 991px) {
  .sidebar__nav {
    display: none;
  }
}

.sidebar__title {
  color: #27587e;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  padding-left: 30px;
  margin: 32px 0 9px;
  display: inline-block;
  width: 100%;
}

@media all and (max-width: 991px) {
  .sidebar__title {
    position: relative;
    padding: 12px 50px 12px 30px;
    margin: 0;
  }

  .sidebar__title:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #009efa;
    right: 27px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }

  .sidebar__title:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 20px;
    background: #0e8afa;
    right: 36px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}

.sidebar li {
  padding: 0;
  margin: 0;
}

.sidebar li a {
  color: #12212d;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  text-decoration: none;
  padding: 15px 5px 14px 30px;
  display: block;
  position: relative;
}

background-image: -webkit-gradient(linear,
  right top,
  left top,
  from(rgba(6, 127, 235, 0.1)),
  to(rgba(6, 127, 235, 0.15)));

.sidebar li a:hover {
  background-image: linear-gradient(to left,
      rgba(6, 127, 235, 0.1),
      rgba(6, 127, 235, 0.15));
  color: #009efa;
}

.sidebar li a:hover:before {
  content: '';
  position: absolute;
  background: #067feb;
  width: 5px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  top: 0;
  left: 0;
  bottom: 0;
}

.sidebar li:before {
  display: none;
}

.slider .catalog__item {
  height: 484px;
}

@media all and (max-width: 991px) {
  .slider .catalog__item {
    width: 373px;
  }
}

@media all and (max-width: 767px) {
  .slider .catalog__item {
    width: 277.5px;
  }
}

@media all and (max-width: 575px) {
  .slider .catalog__item {
    width: 100%;
  }
}

.slider .catalog__btn_wrap {
  height: 100px;
}

.slider .catalog__itemBottom {
  padding: 10px 0 18px;
}

.productSlider__wrap .catalog__item {
  margin-bottom: 0;
}

.productSlider__wrap .nav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 1px;
  border-top: 1px solid #b7bcc0;
  margin-top: 30px;
}

.productSlider__wrap .nav__wrap .prev,
.productSlider__wrap .nav__wrap .next {
  width: 60px;
  height: 60px;
  border: 1px solid #b7bcc0;
  border-top: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.productSlider__wrap .nav__wrap .prev img,
.productSlider__wrap .nav__wrap .next img {
  width: 12px;
  height: 12px;
}

.productSlider__wrap .nav__wrap .prev img {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.productSlider__wrap .nav__wrap .prev {
  border-right: none;
}

.layoutMain__header {
  height: 150px;
}

@media all and (max-width: 991px) {
  .layoutMain__header {
    height: 140px;
  }
}

.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.header__top {
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__catalog.container {
  max-width: 1920px;
  padding: 15px 20px;
  width: 100%;
}

@media (max-width: 1750px) {
  .header__catalog.container {
    max-width: 1593px;
  }
}

@media (max-width: 1600px) {
  .header__catalog.container {
    width: 1140px;
    padding: 15px 0;
  }
}

@media all and (max-width: 1180px) {
  .header__catalog.container {
    width: 960px;
  }
}

@media all and (max-width: 991px) {
  .header__catalog.container {
    width: 747px;
  }
}

@media all and (max-width: 767px) {
  .header__catalog.container {
    width: 555px;
  }
}

@media all and (max-width: 575px) {
  .header__catalog.container {
    width: 300px;
  }
}

.header .logo {
  height: 50px;
}

@media all and (max-width: 991px) {
  .header .logo {
    height: 40px;
  }
}

.header .logo img {
  max-height: 100%;
}

.header__search {
  position: relative;
}

@media all and (max-width: 767px) {
  .header__search {
    display: none;
    position: absolute;
    z-index: 2;
    top: 73px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 12px 17px;
    min-height: 64px;
  }
}

.header__search input[type='text'] {
  width: 470px;
  height: 50px;
  padding: 0 0 0 10px;
  border-radius: 3px;
  border: solid 1px #b7bcc0;
}

@media all and (max-width: 1180px) {
  .header__search input[type='text'] {
    width: 360px;
  }
}

@media all and (max-width: 991px) {
  .header__search input[type='text'] {
    width: 210px;
    height: 40px;
  }
}

@media all and (max-width: 767px) {
  .header__search input[type='text'] {
    width: 100%;
    border-radius: 0;
  }
}

.header__search_btn {
  position: absolute;
  width: 17px;
  height: 18px;
  right: 16px;
  top: 16px;
  background: url(../images/icons/search.svg) no-repeat;
}

@media all and (max-width: 991px) {
  .header__search_btn {
    top: 12px;
    right: 8px;
  }
}

@media all and (max-width: 767px) {
  .header__search_btn {
    top: 24px;
    right: 26px;
  }
}

.header__search_btn button {
  background: none;
  width: 100%;
  height: 18px;
  border: none;
  cursor: pointer;
}

.header__search_dropdownBtn {
  display: none;
}

@media all and (max-width: 767px) {
  .header__search_dropdownBtn {
    display: block;
    width: 17px;
    height: 18px;
    background: url(../images/icons/search.svg) no-repeat;
  }
}

.header__phone {
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  padding: 10px 30px 9px 0px;
  border-right: 1px solid #b7bcc0;
  position: relative;
}

@media all and (max-width: 991px) {
  .header__phone {
    padding: 10px 15px 9px 0px;
  }
}

@media all and (max-width: 768px) {
  .header__phone {
    border-right: none;
    padding: 0;
  }
}

.header__phone_value {
  padding-right: 9px;
  position: relative;
}

/* @media (max-width: 991px) {
  .header__phone_value {
    cursor: pointer;
  }
} */

@media all and (max-width: 575px) {
  .header__phone_value {
    font-size: 0;
    color: #ffffff;
    width: 17px;
    height: 17px;
    padding: 0;
    position: static;
    cursor: pointer;
    background: url(../images/icons/telephone.svg) no-repeat;
  }

  .header__phone_title {
    display: none;
  }
}

/* @media (max-width: 991px) {
  .header__phone_value:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-top: 5px solid #12212d;
    right: 0;
    top: 7px;
  }
}

@media all and (max-width: 575px) {
  .header__phone_value:before {
    display: none;
  }
}*/

.header__phone_value.open:before {
  border-top: unset;
  border-bottom: 5px solid #12212d;
}

.header__dropdown {
  position: absolute;
  display: none;
  background: #ffffff;
  border-radius: 3px;
  -webkit-box-shadow: 0 11px 22px 0 rgba(142, 142, 142, 0.23);
  box-shadow: 0 11px 22px 0 rgba(142, 142, 142, 0.23);
  z-index: 2;
  top: 40px;
  left: -6px;
}

@media all and (max-width: 575px) {
  .header__dropdown {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    left: 50%;
  }
}

.header__dropdown p {
  white-space: nowrap;
}

.header__dropdown p:not(:last-of-type) {
  margin-bottom: 10px;
}

.header__inner {
  padding: 15px;
}

.header__user {
  position: relative;
}

.header__user_name {
  color: rgba(18, 33, 45, 0.7);
  padding-right: 11px;
  position: relative;
  cursor: pointer;
}

@media all and (max-width: 575px) {
  .header__user_name {
    font-size: 0;
    width: 17px;
    height: 17px;
    background: url(../images/icons/user_image.svg) no-repeat;
  }
}

.header__user_name:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  border-top: 5px solid #12212d;
  right: 0;
  top: 7px;
}

@media all and (max-width: 575px) {
  .header__user_name:before {
    display: none;
  }
}

.header__user_name.open:before {
  border-top: unset;
  border-bottom: 5px solid #12212d;
}

.header__user_name span {
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-left: 2px;
}

@media all and (max-width: 575px) {
  .header__user_name span {
    font-size: 0;
  }
}

.header__user_dropdown {
  display: none;
  position: absolute;
  background: #ffffff;
  z-index: 2;
  right: -17px;
  top: 40px;
  border-radius: 3px;
  -webkit-box-shadow: 0 11px 22px 0 rgba(142, 142, 142, 0.23);
  box-shadow: 0 11px 22px 0 rgba(142, 142, 142, 0.23);
}

.header__user_dropdown a {
  display: block;
  color: #12212d;
  text-decoration: none;
  margin-bottom: 12px;
  white-space: nowrap;
  padding: 0 15px;
}

.header__user_dropdown a:hover {
  color: #009efa;
}

.header__user_dropdown a.quit {
  padding: 11px 0 9px 43px;
  border-top: 2px solid #b7bcc0;
  margin-bottom: 0;
  background: url(../images/icons/logout.svg) no-repeat;
  background-position: 15px center;
  background-size: 20px;
}

.header__lang {
  position: relative;
  padding-right: 8px;
  cursor: pointer;
}

.header__langValue:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  border-top: 5px solid #12212d;
  right: 0;
  top: 3.5px;
}

.header__lang.open .header__langValue:before {
  border-top: unset;
  border-bottom: 5px solid #12212d;
  top: 2.5px;
}

.header__lang ul {
  position: absolute;
  display: none;
  -webkit-box-shadow: 0 11px 22px 0 rgba(142, 142, 142, 0.23);
  box-shadow: 0 11px 22px 0 rgba(142, 142, 142, 0.23);
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  top: 20px;
  border-radius: 3px;
  background-color: #ffffff;
  z-index: 2;
}

.header__lang ul li {
  margin: 0;
  padding: 0;
}

.header__lang ul li:before {
  display: none;
}

.header__lang ul li a {
  color: #12212d;
  text-decoration: none;
  padding: 6px 10px;
  display: block;
}

.header__bottom {
  background: #fff;
  background-image: linear-gradient(265deg, #0077e2, #108dfd);
  padding: 20px 0 10px;
}

.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

@media all and (max-width: 991px) {
  .header__bottom {
    padding: 10px 0;
  }
}

.header #flushTopwis_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 64px;
  height: 40px;
}

.header #flushTopwis_list:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  width: 1px;
  opacity: 0.25;
}

.header .flushTopwish_btn {
  display: block;
  width: 24px;
  height: 20px;
  background: url(../images/icons/like_white.svg);
  background-size: contain;
}

.header .notifon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 58px;
  height: 40px;
}

.header .notifon__btn {
  width: 18px;
  height: 22px;
  background: url(../images/icons/notification.svg) no-repeat;
  background-size: contain;
}

.header .notifon:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  width: 1px;
  opacity: 0.25;
}

.header .compare {
  position: relative;
  width: 65px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media all and (max-width: 575px) {
  .header .compare {
    display: none;
  }
}

.header .compare:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  width: 1px;
  opacity: 0.25;
}

.header .compare__btn {
  width: 25px;
  height: 25px;
  background: url(../images/icons/shape.svg) no-repeat;
  text-decoration: none;
  background-size: contain;
}

.header .header__right_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header .header__bottom .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media all and (max-width: 991px) {
  .header .header__bottom .container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.header .header_count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 50%;
  background-image: linear-gradient(66deg, #55cd60, #89dc90);
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 7px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #fff;
  height: 13px;
  min-width: 13px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 6px;
  right: 14px;
}

.header .cart__count {
  position: relative;
  line-height: 1;
  right: 0px;
  left: 5px;
}

.header .cart {
  position: relative;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .cart__btn {
  height: 40px;
  background: url(../images/icons/shop.svg) no-repeat;
  padding-left: 60px;
  background-position: 20px center;
  background-size: contain;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media all and (max-width: 575px) {
  .header .cart__btn {
    position: relative;
  }

  .header .cart__btn-outer {
    position: absolute;
    top: 0;
    right: 10px;
  }

  .header .cart__btn {
    background-position: center;
  }

  .header .cart__btn .cart__value,
  .header .cart__btn .cart__title {
    display: none;
  }
}

.header .cart__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .cart__title {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  opacity: 0.7;
}

.header .cart__value {
  color: #fff;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.header .cart:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  width: 1px;
  opacity: 0.25;
}

.header .cart__tooltip {
  position: absolute;
  color: #12212d;
  background: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  padding: 1px 13px 0;
  left: 34px;
  top: 38px;
  display: none;
}

.header .cart:hover .cart__tooltip {
  display: block;
}

.header .header__log_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .header__log_in .icon {
  display: none;
}

@media all and (max-width: 575px) {
  .header .header__log_in .text {
    display: none;
  }

  .header .header__log_in a {
    display: block;
    width: 15px;
  }

  .header .header__log_in .icon {
    display: block;
    max-width: 100%;
    max-height: 100%;
  }
}

.header .header__log_in a {
  text-decoration: none;
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.header .header__log_inMobile {
  display: none;
  position: relative;
}

@media all and (max-width: 575px) {
  .header .header__log_inMobile {
    display: block;
  }
}

.header .header__log_inMobile ul {
  display: none;
  position: absolute;
  background: #ffffff;
  z-index: 2;
  right: -17px;
  top: 40px;
  border-radius: 3px;
  -webkit-box-shadow: 0 11px 22px 0 rgba(142, 142, 142, 0.23);
  box-shadow: 0 11px 22px 0 rgba(142, 142, 142, 0.23);
}

.header .header__log_inMobile ul li {
  padding: 0;
  margin: 0;
}

.header .header__log_inMobile ul li:before {
  display: none;
}

.header .header__log_inMobile ul li a {
  display: block;
  color: #12212d;
  text-decoration: none;
  margin-bottom: 12px;
  white-space: nowrap;
  padding: 0 15px;
  white-space: nowrap;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.header .header__log_inMobileBtn {
  width: 17px;
  height: 17px;
  background: url(../images/icons/user_image.svg) no-repeat;
}

.dropdownBody {
  overflow: hidden;
}

.footer {
  border-top: 1px solid #b7bcc0;
  padding: 36px 0 20px;
}

@media all and (max-width: 767px) {
  .footer {
    padding-top: 25px;
  }
}

.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media all and (max-width: 991px) {
  .footer .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media all and (max-width: 767px) {
  .footer .container .footer__col {
    width: 100%;
    margin-bottom: 23px;
  }
}

.footer .logo {
  height: 50px;
  display: block;
}

.footer .logo img {
  max-height: 50px;
}

.footer__text {
  width: 255px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  margin-top: 20px;
}

@media all and (max-width: 767px) {
  .footer__text {
    display: none;
  }
}

.footer__nav a {
  display: block;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  letter-spacing: 0px;
  color: #12212d;
  margin-bottom: 10px;
}

.footer__nav a:last-child {
  margin-bottom: 0;
}

.footer .title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  margin-bottom: 10px;
}

.footer__row {
  margin-bottom: 10px;
}

.footer .phone {
  margin-bottom: 10px;
}

.footer .email {
  color: #1587ed;
  text-decoration: none;
}

.footer .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .social a {
  width: 50px;
  height: 50px;
  margin: 0 7px;
}

.layoutMain {
  min-width: 320px;
}

/* .layoutMain__main {
  min-height: calc(100vh - 221px - 190px);
}

@media all and (max-width: 991px) {
  .layoutMain__main {
    min-height: calc(100vh - 201px - 263px);
  }
}

@media all and (max-width: 767px) {
  .layoutMain__main {
    min-height: calc(100vh - 130px - 282px);
  }
}

@media all and (max-width: 575px) {
  .layoutMain__main {
    min-height: calc(100vh - 130px - 350px);
  }
} */

.layoutMain__footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #fff;
}

.container {
  margin: 0 auto;
  width: 1140px;
}

@media all and (max-width: 1180px) {
  .container {
    width: 960px;
  }
}

@media all and (max-width: 991px) {
  .container {
    width: 747px;
  }
}

@media all and (max-width: 767px) {
  .container {
    width: 555px;
  }
}

@media all and (max-width: 575px) {
  .container {
    width: 300px;
  }
}

.main__section {
  background: #f9f9f9;
  padding-top: 30px;
  overflow: hidden;
}

.main__section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.main__catalog_section {
  background: #f9f9f9;
  margin-bottom: 3em;
}

.main__catalog_tab {
  background: #f9f9f9;
}

.main__catalog_tab .tab_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 70px 0 25px;
}

@media all and (max-width: 575px) {
  .main__catalog_tab .tab_btns {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.main__catalog_tab .tab_btns p {
  margin: 0 25px;
  opacity: 0.7;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  cursor: pointer;
  padding: 0 6px 10px;
  color: #12212d;
}

@media all and (max-width: 575px) {
  .main__catalog_tab .tab_btns p {
    margin: 0 25px 15px;
  }
}

.main__catalog_tab .tab_btns p.active {
  opacity: 1;
  border-bottom: 2px solid #067feb;
}

.personal {
  background: #f9f9f9;
  padding: 18px 0 0;
}

.personal h3 {
  color: #27587e;
  text-align: center;
  margin-bottom: 35px;
}

.personal .catalog__item {
  margin-bottom: 0;
}

.main__news {
  background: #f9f9f9;
  padding: 20px 0 40px;
}

.main__news .tab_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 575px) {
  .main__news .tab_btns {
    margin-bottom: 20px;
  }
}

.main__news .tab_btns p {
  margin-right: 25px;
  opacity: 0.7;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  cursor: pointer;
  padding: 0 6px 10px;
  color: #12212d;
}

.main__news .tab_btns p.active {
  opacity: 1;
  border-bottom: 2px solid #067feb;
}

.main__news .main__news_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media all and (max-width: 575px) {
  .main__news .main__news_header {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.main__news .main__news_item {
  position: relative;
  width: 360px;
  height: 250px;
}

@media all and (max-width: 1180px) {
  .main__news .main__news_item {
    width: 305px;
    height: 212px;
  }
}

@media all and (max-width: 991px) {
  .main__news .main__news_item:nth-of-type(1) {
    display: none;
  }
}

@media all and (max-width: 767px) {
  .main__news .main__news_item {
    width: 273px;
    height: 189px;
  }
}

.main__news .main__news_item .title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #ffffff;
  margin-bottom: 5px;
  padding-right: 40px;
}

.main__news .main__news_item .date {
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #ffffff;
}

.main__news .main__news_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 25px;
}

@media all and (max-width: 575px) {
  .main__news .main__news_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.main__news .main__news_wrap a {
  text-decoration: none;
}

.main__news .main__news_item_info {
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.main__news .all_news_btn {
  color: #009efa;
  text-decoration: none;
}

.partners {
  padding-top: 30px;
}

.partners h3 {
  color: #27587e;
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #b7bcc0;
  margin-bottom: 31px;
}

.partners__slider .item {
  width: 187px;
  height: 91px;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.partners .nav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 1px;
  border-top: 1px solid #b7bcc0;
  margin: 30px 0 80px;
}

.partners .nav__wrap .partner__prev,
.partners .nav__wrap .partner__next {
  width: 60px;
  height: 60px;
  border: 1px solid #b7bcc0;
  border-top: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.partners .nav__wrap .partner__prev img,
.partners .nav__wrap .partner__next img {
  width: 12px;
  height: 12px;
}

.partners .nav__wrap .partner__prev {
  border-right: none;
}

.partners .nav__wrap .partner__prev img {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.partners .nav__wrap .prev {
  border-right: none;
}

.main__slider {
  width: calc(100% - 293px);
  background: #c3e6f4;
}

@media all and (max-width: 991px) {
  .main__slider {
    width: 100%;
  }
}

.main__slider .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main__slider .item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 991px) {
  .main__slider .item__inner {
    padding-bottom: 40px;
  }
}

@media all and (max-width: 767px) {
  .main__slider .item__inner {
    padding-bottom: 56px;
  }
}

.main__slider .slide__right {
  width: calc(100% - 407px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 29px 42px 0 0;
}

@media all and (max-width: 767px) {
  .main__slider .slide__right {
    display: none;
  }
}

.main__slider .slick-dots {
  position: absolute;
  left: 50px;
  bottom: 56px;
  text-align: left;
}

@media all and (max-width: 991px) {
  .main__slider .slick-dots {
    bottom: 21px;
  }
}

@media all and (max-width: 575px) {
  .main__slider .slick-dots {
    text-align: center;
    left: auto;
  }
}

.main__slider .slick-dots li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 0 10px 0 0;
  width: auto;
  opacity: 0.12;
}

.main__slider .slick-dots li:before {
  display: none;
}

.main__slider .slick-dots li button {
  width: 15px;
  height: 15px;
  background: #067feb;
  padding: 0;
}

.main__slider .slick-dots li button:before {
  display: none;
}

.main__slider .slick-dots li.slick-active {
  opacity: 1;
}

.main__slider .slick-prev,
.main__slider .slick-next {
  width: 28px;
  z-index: 2;
  top: 0;
  bottom: 0;
  height: auto;
  -webkit-transform: unset;
  transform: unset;
  background-color: rgba(255, 255, 255, 0.2);
}

.main__slider .slick-prev:before,
.main__slider .slick-next:before {
  content: '';
  background: url(../images/icons/arrow_slider.svg) no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  margin: 0 auto;
}

.main__slider .slick-prev {
  left: 0px;
}

.main__slider .slick-next {
  right: 0px;
}

.main__slider .slick-next:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.main__slider .slide__left {
  padding: 70px 0 0 50px;
  width: 352px;
}

@media all and (max-width: 767px) {
  .main__slider .slide__left {
    width: 100%;
    padding: 20px 40px 0;
  }
}

.main__slider .slide__title {
  color: #27587e;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin: 60px 0 10px;
}

@media all and (max-width: 575px) {
  .main__slider .slide__title {
    margin: 10px 0 10px;
  }
}

.main__slider .slide__descr {
  color: rgba(18, 33, 45, 0.7);
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.main__slider .slide__price {
  color: #5eeb6b;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-top: 48px;
}

@media all and (max-width: 575px) {
  .main__slider .slide__price {
    margin-top: 10px;
  }
}

.main__slider .slide__price span {
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.main__slider .slide__link {
  border-radius: 3px;
  -webkit-box-shadow: 0 2px 7px 0 rgba(120, 137, 149, 0.26);
  box-shadow: 0 2px 7px 0 rgba(120, 137, 149, 0.26);
  background-image: linear-gradient(249deg, #0077e2, #108dfd);
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  padding: 15px 5px 14px;
  width: 200px;
  text-align: center;
  display: inline-block;
  margin-top: 20px;
}

.personal .nav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 1px;
  border-top: 1px solid #b7bcc0;
  margin-top: 30px;
}

.personal .nav__wrap .prev,
.personal .nav__wrap .next {
  width: 60px;
  height: 60px;
  border: 1px solid #b7bcc0;
  border-top: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.personal .nav__wrap .prev img,
.personal .nav__wrap .next img {
  width: 12px;
  height: 12px;
}

.personal .nav__wrap .prev img {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.personal .nav__wrap .prev {
  border-right: none;
}

.catalog__wrap {
  background: #f9f9f9;
}

.catalog__title {
  margin: 20px 0;
  display: flex;
}

.catalog__title-logo {
  max-height: 60px;
  margin: 0 0 0 1em;
}

/* .catalog__breadcrumbs .container {
  max-width: 1920px;
  width: auto;
  padding: 26px 20px;
}

@media (max-width: 1750px) {
  .catalog__breadcrumbs .container {
    max-width: 1593px;
  }
}

@media (max-width: 1600px) {
  .catalog__breadcrumbs .container {
    max-width: 1140px;
    padding: 26px 0;
  }
}

@media all and (max-width: 1180px) {
  .catalog__breadcrumbs .container {
    max-width: 960px;
  }
}

@media all and (max-width: 991px) {
  .catalog__breadcrumbs .container {
    width: 747px;
  }
}

@media all and (max-width: 767px) {
  .catalog__breadcrumbs .container {
    width: 555px;
  }
}

@media all and (max-width: 575px) {
  .catalog__breadcrumbs .container {
    width: 300px;
  }
} */

.catalog__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.catalog__item_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.catalog__item_wrap .catalog__item:nth-of-type(3n + 3) {
  border-right: none;
}

.catalog__item_wrap .catalog__item:nth-of-type(4n + 4) {
  border-right: 1px solid #b7bcc0;
}

.catalog__right_col {
  margin-left: 25px;
  width: calc(100% - 285px);
}

.catalog-search .catalog__right_col {
  width: 100%;
  margin-left: 0;
}

@media all and (max-width: 991px) {
  .catalog__right_col {
    width: 100%;
    margin-left: 0;
  }
}

.catalog__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #ffffff;
  height: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 20px 0 29px;
}

@media all and (max-width: 575px) {
  .catalog__sort {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px;
    height: auto;
  }
}

.catalog__view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalog__view .title {
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 22px;
  text-transform: unset;
  letter-spacing: 0px;
  opacity: 0.7;
}

.catalog__view .value {
  color: #12212d;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 22px;
  text-transform: unset;
  letter-spacing: 0px;
  margin-left: 7px;
}

.catalog__sort_option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  justify-content: space-between;
}

@media (min-width: 1200px) {
  .catalog__sort_option {
    width: 70%;
  }
}

@media (max-width: 575px) {
  .catalog__sort_option {
    margin-top: 10px;
    display: block;
  }
}

.catalog__sort_option .title {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  margin-right: 23px;
  padding-right: 10px;
  cursor: pointer;
  position: relative;
}

.catalog__sort_option .title:before {
  content: '';
  position: absolute;
  right: 0;
  width: 0;
  height: 0;
  border-left: 2.5px solid transparent;
  border-right: 2.5px solid transparent;
  border-top: 4px solid #12212d;
  top: 50%;
  margin-top: -2px;
}

.catalog__sort_dropdownwrap {
  position: relative;
}

.catalog__sort_value {
  cursor: pointer;
  padding-right: 9px;
}

.catalog__sort_dropdown {
  width: 100%;
  position: absolute;
  display: none;
  text-align: center;
  background: #ffffff;
  border-radius: 3px;
  -webkit-box-shadow: 0 11px 22px 0 rgba(142, 142, 142, 0.23);
  box-shadow: 0 11px 22px 0 rgba(142, 142, 142, 0.23);
  z-index: 2;
  top: 40px;
  left: -6px;
}

.catalog__sort_dropdown.sort {
  min-width: 184px;
  text-align: left;
}

.catalog__sort_inner {
  padding: 15px;
}

.catalog__sort_inner p {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  position: relative;
  cursor: pointer;
}

.catalog__sort_inner p:hover {
  text-decoration: underline;
}

.catalog__viev_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 767px) {
  .catalog__viev_btn {
    display: none;
  }
}

.catalog__viev_btn span {
  cursor: pointer;
}

.catalog__viev_btn span:not(:first-of-type) {
  margin-left: 20px;
}

.catalog__viev_btn span svg {
  fill: #0781ef;
  opacity: 0.5;
}

.catalog__viev_btn span svg:hover {
  opacity: 1;
}

.catalog__viev_btn span.active svg {
  opacity: 1;
}

.catalog__container {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

@media (max-width: 1750px) {
  .catalog__container {
    max-width: 1593px;
  }
}

@media (max-width: 1600px) {
  .catalog__container {
    max-width: 1140px;
    padding: 0;
  }
}

@media all and (max-width: 1180px) {
  .catalog__container {
    max-width: 960px;
  }
}

@media all and (max-width: 991px) {
  .catalog__container {
    max-width: 747px;
  }
}

@media all and (max-width: 767px) {
  .catalog__container {
    max-width: 555px;
  }
}

@media all and (max-width: 575px) {
  .catalog__container {
    max-width: 300px;
  }
}

.catalog__container .catalog__item {
  width: 20%;
}

@media (max-width: 1750px) {
  .catalog__container .catalog__item {
    width: 317px;
  }
}

@media (max-width: 1600px) {
  .catalog__container .catalog__item {
    width: 285px;
  }
}

@media all and (max-width: 1180px) {
  .catalog__container .catalog__item {
    width: 50%;
  }
}

@media all and (max-width: 575px) {
  .catalog__container .catalog__item {
    width: 100%;
    border-right: none;
  }
}

.catalog__container .catalog__item:nth-of-type(3n + 3) {
  border-right: 1px solid #b7bcc0;
}

@media (max-width: 1600px) {
  .catalog__container .catalog__item:nth-of-type(3n + 3) {
    border-right: none;
  }
}

@media all and (max-width: 1180px) {
  .catalog__container .catalog__item:nth-of-type(3n + 3) {
    border-right: 1px solid #b7bcc0;
  }
}

@media all and (max-width: 575px) {
  .catalog__container .catalog__item:nth-of-type(3n + 3) {
    border-right: none;
  }
}

.catalog__container .catalog__item:nth-of-type(5n + 5) {
  border-right: none;
}

@media (max-width: 1750px) {
  .catalog__container .catalog__item:nth-of-type(5n + 5) {
    border-right: 1px solid #b7bcc0;
  }
}

@media all and (max-width: 575px) {
  .catalog__container .catalog__item:nth-of-type(5n + 5) {
    border-right: none;
  }
}

@media (max-width: 1750px) {
  .catalog__container .catalog__item:nth-of-type(4n + 4) {
    border-right: none;
  }
}

@media (max-width: 1600px) {
  .catalog__container .catalog__item:nth-of-type(4n + 4) {
    border-right: 1px solid #b7bcc0;
  }
}

@media all and (max-width: 575px) {
  .catalog__container .catalog__item:nth-of-type(4n + 4) {
    border-right: none;
  }
}

@media all and (max-width: 1180px) {
  .catalog__container .catalog__item:nth-of-type(2n + 2) {
    border-right: none;
  }
}

.catalogSlider {
  background: #f9f9f9;
}

@media all and (max-width: 1180px) {
  .catalogSlider {
    display: none;
  }
}

.catalogSlider__inner {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  display: none;
}

.catalogSlider__inner.open {
  display: block;
}

@media (max-width: 1750px) {
  .catalogSlider__inner {
    max-width: 1593px;
  }
}

.catalogSlider .item__inner {
  width: calc(100% - 200px);
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
}

.catalogSlider .item__inner img {
  max-height: 100%;
}

.catalogSlider .slide__left {
  padding-top: 50px;
  width: 352px;
}

.catalogSlider .slide__title {
  color: #27587e;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin: 60px 0 10px;
}

.catalogSlider .slide__descr {
  color: rgba(18, 33, 45, 0.7);
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.catalogSlider .slick-dots {
  position: absolute;
  left: 100px;
  bottom: 20px;
  text-align: left;
}

.catalogSlider .slick-dots li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 0 10px 0 0;
  width: auto;
  opacity: 0.12;
}

.catalogSlider .slick-dots li:before {
  display: none;
}

.catalogSlider .slick-dots li button {
  width: 15px;
  height: 15px;
  background: #067feb;
  padding: 0;
}

.catalogSlider .slick-dots li button:before {
  display: none;
}

.catalogSlider .slick-dots li.slick-active {
  opacity: 1;
}

.catalogSlider .slick-prev,
.catalogSlider .slick-next {
  width: 28px;
  z-index: 2;
  top: 0;
  bottom: 0;
  height: auto;
  -webkit-transform: unset;
  transform: unset;
  background-color: rgba(255, 255, 255, 0.2);
}

.catalogSlider .slick-prev:before,
.catalogSlider .slick-next:before {
  content: '';
  background: url(../images/icons/arrow_slider.svg) no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  margin: 0 auto;
}

.catalogSlider .slick-prev {
  left: 0px;
}

.catalogSlider .slick-next {
  right: 0px;
}

.catalogSlider .slick-next:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.catalogSlider__btnWrap {
  max-width: 1920px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 15px 20px 0;
}

.catalogSlider__btn {
  cursor: pointer;
  color: #009efa;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-bottom: 10px;
}

.nowrap {
  white-space: nowrap;
}

.lc__wrap {
  background: #f9f9f9;
  padding: 30px 0;
}

.lc__wrap .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media all and (max-width: 991px) {
  .lc__wrap .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.lc__right {
  width: calc(100% - 285px);
  background: #ffffff;
  min-height: 600px;
  margin-left: 25px;
  padding: 30px;
}

@media all and (max-width: 1180px) {
  .lc__right {
    padding: 30px 10px;
  }
}

@media all and (max-width: 991px) {
  .lc__right {
    width: 100%;
    margin: 20px 0 0;
    padding: 20px;
    min-height: unset;
  }
}

@media all and (max-width: 767px) {
  .lc_order__table {
    overflow: auto;
  }

  .lc_order__table table {
    width: 707px;
  }
}

.lc_order__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;
}

@media all and (max-width: 575px) {
  .lc_order__head {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .lc_order__head h2 {
    width: 100%;
    margin-top: 20px;
  }
}

.lc_order__balance .title {
  color: rgba(18, 33, 45, 0.7);
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  text-align: right;
  margin: 10px 0 5px;
}

@media all and (max-width: 575px) {
  .lc_order__balance .title {
    text-align: left;
  }
}

.lc_order__value {
  margin-bottom: 11px;
}

.lc_order__value p {
  color: #009efa;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  text-align: right;
}

@media all and (max-width: 575px) {
  .lc_order__value p {
    text-align: left;
  }
}

.lc_order__table thead td {
  background: #e7f3fe;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: rgba(18, 33, 45, 0.7);
  opacity: 0.8;
}

.lc_order__table tbody tr:not(:last-of-type) td {
  border-bottom: 1px solid #b7bcc0;
}

.lc_order__table td {
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  text-align: center;
  padding: 25px 15px;
}

@media all and (max-width: 1180px) {
  .lc_order__table td {
    padding: 25px 10px;
  }
}

.lc_my_profile h2 {
  margin-bottom: 40px;
}

@media all and (max-width: 575px) {
  .lc_my_profile .btn {
    margin: 0 auto;
  }
}

.lc_my_profile__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #b7bcc0;
  margin-bottom: 30px;
}

.lc_my_profile__item {
  width: 42%;
  margin-bottom: 37px;
}

@media all and (max-width: 1180px) {
  .lc_my_profile__item {
    width: 50%;
  }
}

@media all and (max-width: 575px) {
  .lc_my_profile__item {
    width: 100%;
    margin-bottom: 20px;
  }
}

.lc_my_profile__item .title {
  color: rgba(18, 33, 45, 0.7);
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-bottom: 7px;
}

.lc_my_profile__item .value {
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.lc_my_profile .reconciliation {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 27px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.lc_my_profile .reconciliation .checkbox {
  margin-bottom: 20px;
  width: calc(50% - 40px);
}

@media all and (max-width: 1180px) {
  .lc_my_profile .reconciliation .checkbox {
    width: calc(50% - 20px);
  }
}

@media all and (max-width: 767px) {
  .lc_my_profile .reconciliation .checkbox {
    width: 100%;
  }
}

.lc_my_profile .reconciliation .checkbox:nth-of-type(2n + 2) {
  margin-right: 40px;
}

@media all and (max-width: 1180px) {
  .lc_my_profile .reconciliation .checkbox:nth-of-type(2n + 2) {
    margin-right: 20px;
  }
}

.lc_my_profile .reconciliation input[type='radio'] {
  display: none;
}

.lc_my_profile .reconciliation label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  min-height: 25px;
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  padding-left: 35px;
  cursor: pointer;
}

.lc_my_profile .reconciliation input[type='radio']:checked+label:before {
  border: 7px solid #009efa;
}

.lc_my_profile .userMessage {
  margin-top: 20px;
}

.lc_my_profile__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  border-bottom: 1px solid #b7bcc0;
  margin-bottom: 30px;
  padding-bottom: 15px;
}

.lc_my_profile__form .form__input {
  height: 50px;
}

.lc_my_profile__form .lc_my_profile__item {
  width: 330px;
  margin: 0 30px 15px 0;
}

@media all and (max-width: 1180px) {
  .lc_my_profile__form .lc_my_profile__item {
    width: calc(50% - 30px);
  }
}

@media all and (max-width: 575px) {
  .lc_my_profile__form .lc_my_profile__item {
    width: 100%;
    margin: 0 0px 15px 0;
  }
}

.lc_my_profile__form .lc_my_profile__item .select__city {
  position: relative;
}

.lc_my_profile__form .lc_my_profile__item .form__block {
  position: absolute;
  margin: 5px 0;
  width: 330px;
  z-index: 1;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto !important;
  padding: 9px 13px;
  border: 1px solid #b7bcc0;
  color: #12212d;
  border-radius: 3px;
  font-weight: 400;
  overflow: auto;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.lc_my_profile__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.lc__company_order__head {
  margin-bottom: 20px;
}

.lc__company_order__head .form_order_company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.lc__company_order__head .form_order_company .order_company__form_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 20px 0;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_employer {
  width: 20%;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_employer .form__label {
  text-align: center;
  margin: 10px 0;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col__company_date .form__col_date_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col__company_date .error {
  width: 100%;
  padding: 10px;
  color: red;
  font-weight: bold;
  text-align: center;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col__company_date .form__field {
  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;
  width: 50%;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col__company_date .form__field label {
  margin: 10px;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col__company_date .form__field input {
  height: 40px;
  margin-left: 10px;
  padding-left: 10px;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col {
  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;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col .form__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_status {
  width: 20%;
  margin-left: 10px;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_status .form__label {
  text-align: center;
  margin: 10px 0;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_status .form__field .select {
  position: relative;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_status .form__field .select .select__listWrap {
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 1;
  background: #fff;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_amount {
  width: 30%;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_amount .form__label {
  margin: 10px 0;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_amount input {
  width: 100px;
  height: 40px;
  padding-left: 10px;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  margin: 0 5px;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_amount input::-webkit-input-placeholder {
  color: #eeeeee;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_amount input::-moz-placeholder {
  color: #eeeeee;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_amount input::-ms-input-placeholder {
  color: #eeeeee;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_amount input::placeholder {
  color: #eeeeee;
}

.lc__company_order__head .form_order_company .form__btn button {
  font-family: 'Roboto', sans-serif;
  background-color: lightgreen;
  font-size: 14px;
  border-radius: 5px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 15px;
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 17px;
}

.lc__company_order__head .form_order_company .form__btn .cancel {
  background-color: palevioletred;
}

@media all and (max-width: 767px) {
  .lc__company_order__table {
    overflow: auto;
  }

  .lc__company_order__table table {
    width: 707px;
  }
}

.lc__company_order__sort {
  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: 20px 0 17px;
}

@media all and (max-width: 767px) {
  .lc__company_order__sort {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.lc__company_order__sort .count {
  color: rgba(18, 33, 45, 0.7);
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

@media all and (max-width: 767px) {
  .lc__company_order__sort .count {
    width: 100%;
  }
}

.lc__company_order__sort .count .title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-left: 5px;
  color: #12212d;
}

.lc__company_order__sort .view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.lc__company_order__sort .view p {
  color: rgba(18, 33, 45, 0.7);
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-left: 30px;
  cursor: pointer;
}

@media all and (max-width: 767px) {
  .lc__company_order__sort .view p {
    margin: 10px 15px 0 0;
  }
}

.lc__company_order__sort .view p.active {
  color: #12212d;
}

.fakeButton {
  width: 12px;
  height: 14px;
  display: inline-block;
  margin-right: 16px;
  vertical-align: middle;
  pointer-events: none;
}

.sum {
  font-size: 16px;
  font-weight: 500;
  margin: 15px 0;
  font-family: 'Roboto', sans-serif;
}

.title {
  color: #98a2ab;
}

.select__listWrap {
  display: none;
  border: 1px solid #eeeeee;
  margin-top: 2px;
  padding: 10px;
  border-radius: 5px;
}

.select__listWrap .select__listItem {
  padding: 5px 0;
}

.select__wrap {
  border: 1px solid #eeeeee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
  border-radius: 5px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 10px;
}

.select__wrap .select__label {
  width: 90%;
}

.select__wrap .select__arrow {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.active_arrow {
  -webkit-transform: rotate(-270deg) !important;
  transform: rotate(-270deg) !important;
}

.payment_profiles__head h2 {
  margin: 0;
}

.payment_profiles h2 {
  margin: 0;
}

.payment_profiles__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 40px 0 20px;
}

@media all and (max-width: 767px) {
  .payment_profiles__table {
    overflow: auto;
  }
}

@media all and (max-width: 767px) {
  .payment_profiles__table table {
    width: 707px;
  }
}

.payment_profiles__table thead td {
  background: #e7f3fe;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: rgba(18, 33, 45, 0.7);
  opacity: 0.8;
}

.payment_profiles__table tbody tr:not(:last-of-type) td {
  border-bottom: 1px solid #b7bcc0;
}

.payment_profiles__table td {
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  padding: 25px 15px;
}

@media all and (max-width: 1180px) {
  .payment_profiles__table td {
    padding: 25px 10px;
  }
}

.companyUsersSubscribes {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 27px 0 0;
}

.checkbox {
  margin-bottom: 20px;
  width: calc(50% - 40px);
}

.checkbox .checkbox__input {
  display: none;
}

.checkbox .checkbox__input:checked+label:before {
  background-image: linear-gradient(212deg, #0077e2, #108dfd);
}

.checkbox .checkbox__input:checked+label:after {
  content: '';
  position: absolute;
  background: url(../images/icons/checked.svg) no-repeat;
  width: 12px;
  height: 9px;
  background-size: contain;
  top: 8px;
  left: 8px;
}

.checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  min-height: 25px;
  color: #12212d;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  padding-left: 35px;
  cursor: pointer;
}

.checkbox label.default {
  font-weight: normal;
  color: rgba(18, 33, 45, 0.7);
}

.checkbox label:before {
  content: '';
  width: 25px;
  height: 25px;
  border-radius: 3px;
  border: solid 1px #b7bcc0;
  position: absolute;
  left: 0;
  top: 0;
}

.lc__delivery__profile_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0 0px;
}

.lc__delivery__profile_row:not(:last-of-type) {
  border-bottom: 1px solid #b7bcc0;
}

.lc__delivery__profile_row .title {
  margin: 0px 0 20px;
  color: #12212d;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  width: 100%;
}

.lc__delivery__profile_col {
  width: 30%;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media all and (max-width: 575px) {
  .lc__delivery__profile_col {
    width: 100%;
    margin-bottom: 20px;
  }
}

.lc__delivery__profile_col .subtitle {
  color: rgba(18, 33, 45, 0.7);
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-bottom: 7px;
}

.lc__delivery__profile_col .value {
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.lc__delivery__profile_col_small {
  width: 20%;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media all and (max-width: 575px) {
  .lc__delivery__profile_col_small {
    width: 100%;
    margin-bottom: 20px;
  }
}

.lc__delivery__profile_col_small .subtitle {
  color: rgba(18, 33, 45, 0.7);
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-bottom: 7px;
}

.lc__delivery__profile_col_small .value {
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.btn-margin {
  margin-top: 50px;
}

.select__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.select__profile .select__wrap {
  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;
}

.select__profile .select__wrap .select__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.select__profile .select__listWrap {
  position: absolute;
  z-index: 1;
  top: 52px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
}

.select__profile .select__listWrap .select__listItem {
  padding: 10px 0;
}

.lc_my_order__head {
  margin-bottom: 20px;
}

@media all and (max-width: 767px) {
  .lc_my_order__table {
    overflow: auto;
  }

  .lc_my_order__table table {
    width: 707px;
  }
}

.lc_my_order__sort {
  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: 20px 0 17px;
}

@media all and (max-width: 767px) {
  .lc_my_order__sort {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.lc_my_order__sort .count {
  color: rgba(18, 33, 45, 0.7);
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

@media all and (max-width: 767px) {
  .lc_my_order__sort .count {
    width: 100%;
  }
}

.lc_my_order__sort .count .title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-left: 5px;
  color: #12212d;
}

.lc_my_order__sort .view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.lc_my_order__sort .view p {
  color: rgba(18, 33, 45, 0.7);
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-left: 30px;
  cursor: pointer;
}

@media all and (max-width: 767px) {
  .lc_my_order__sort .view p {
    margin: 10px 15px 0 0;
  }
}

.lc_my_order__sort .view p.active {
  color: #12212d;
}

.fakeButton {
  width: 12px;
  height: 14px;
  display: inline-block;
  margin-right: 16px;
  vertical-align: middle;
  pointer-events: none;
}

.sum {
  font-size: 16px;
  font-weight: 500;
  margin: 15px 0;
  font-family: 'Roboto', sans-serif;
}

.form_order_company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form_order_company .order_company__form_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 20px 0;
}

.form_order_company .order_company__form_wrap .form__label {
  margin: 10px 0;
}

.form_order_company .order_company__form_wrap .form__col_status {
  width: 25%;
}

.form_order_company .order_company__form_wrap .form__col_date {
  width: 50%;
}

.form_order_company .order_company__form_wrap .form__col_date .error {
  padding: 10px;
  color: red;
  font-weight: bold;
}

.form_order_company .order_company__form_wrap .form__col {
  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;
}

.form_order_company .order_company__form_wrap .form__col .form__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form_order_company .order_company__form_wrap .form__col_date section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form_order_company .order_company__form_wrap .form__col_date section .input-field input {
  height: 40px;
  margin-left: 10px;
  padding-left: 10px;
}

.form_order_company .order_company__form_wrap .form__col_amount input {
  width: 100px;
  height: 40px;
  padding-left: 10px;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  margin: 0 5px;
}

.form_order_company .order_company__form_wrap .form__col_amount input::-webkit-input-placeholder {
  color: #eeeeee;
}

.form_order_company .order_company__form_wrap .form__col_amount input::-moz-placeholder {
  color: #eeeeee;
}

.form_order_company .order_company__form_wrap .form__col_amount input::-ms-input-placeholder {
  color: #eeeeee;
}

.form_order_company .order_company__form_wrap .form__col_amount input::placeholder {
  color: #eeeeee;
}

.form_order_company .order_company__form_wrap .form__col_status .select {
  position: relative;
}

.form_order_company .order_company__form_wrap .form__col_status .select .select__listWrap {
  position: absolute;
  top: 40px;
  z-index: 1;
  background: #fff;
  display: none;
  border: 1px solid #eeeeee;
  margin-top: 2px;
  padding: 10px;
  border-radius: 5px;
}

.form_order_company .order_company__form_wrap .form__col_status .select .select__listWrap .select__listItem {
  padding: 5px 0;
}

.form_order_company .order_company__form_wrap .form__col_status .select .select__wrap {
  border: 1px solid #eeeeee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
  border-radius: 5px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 10px;
}

.form_order_company .order_company__form_wrap .form__col_status .select .select__wrap .select__label {
  width: 90%;
}

.form_order_company .order_company__form_wrap .form__col_status .select .select__wrap .select__arrow {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.form_order_company .form__btn button {
  font-family: 'Roboto', sans-serif;
  background-color: lightgreen;
  font-size: 14px;
  border-radius: 5px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 15px;
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 17px;
}

.form_order_company .form__btn .cancel {
  background-color: palevioletred;
}

.active_arrow {
  -webkit-transform: rotate(-270deg) !important;
  transform: rotate(-270deg) !important;
}

.lc_my_order__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.lc_my_order__cancel .descr p {
  margin-top: 15px;
  color: #12212d;
  opacity: 0.6;
}

.lc_my_order__cancel .form {
  padding-bottom: 30px;
  border-bottom: 1px solid #b7bcc0;
  width: 530px;
  margin-bottom: 30px;
}

@media all and (max-width: 767px) {
  .lc_my_order__cancel .form {
    width: 100%;
  }
}

.lc_my_order__cancel .form__label {
  margin-top: 30px;
}

.lc_my_order__cancel .form__input {
  height: 50px;
}

.lc_my_order__detail_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0 0px;
}

.lc_my_order__detail_row:not(:last-of-type) {
  border-bottom: 1px solid #b7bcc0;
}

.lc_my_order__detail_row .title {
  margin: 0px 0 20px;
  color: #12212d;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  width: 100%;
}

.lc_my_order__detail_col {
  width: 35%;
  margin-bottom: 30px;
}

.lc_my_order__detail_col:last-child {
  width: 27%;
}

.lc_my_order__detail_col:last-child .btn {
  width: auto;
}

@media all and (max-width: 575px) {
  .lc_my_order__detail_col {
    width: 100%;
    margin-bottom: 20px;
  }
}

.lc_my_order__detail_col .subtitle {
  color: rgba(18, 33, 45, 0.7);
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-bottom: 7px;
}

.lc_my_order__detail_col .value {
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

@media all and (max-width: 767px) {
  .lc_my_order .table__wrap {
    overflow: auto;
  }
}

@media all and (max-width: 767px) {
  .lc_my_order table {
    width: 707px;
  }
}

.lc_my_order table thead td {
  background: #e7f3fe;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: rgba(18, 33, 45, 0.7);
  opacity: 0.8;
}

.lc_my_order table tbody tr:not(:last-of-type) td {
  border-bottom: 1px solid #b7bcc0;
}

.lc_my_order table td {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
}

.lc_my_order table .image {
  max-width: 44px;
  max-height: 76px;
}

.lc__company_order__head {
  margin-bottom: 20px;
}

.lc__company_order__head .form_order_company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.lc__company_order__head .form_order_company .order_company__form_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 20px 0;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_employer {
  width: 20%;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_employer .form__label {
  text-align: center;
  margin: 10px 0;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col__company_date .form__col_date_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col__company_date .error {
  width: 100%;
  padding: 10px;
  color: red;
  font-weight: bold;
  text-align: center;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col__company_date .form__field {
  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;
  width: 50%;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col__company_date .form__field label {
  margin: 10px;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col__company_date .form__field input {
  height: 40px;
  margin-left: 10px;
  padding-left: 10px;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col {
  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;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col .form__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_status {
  width: 20%;
  margin-left: 10px;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_status .form__label {
  text-align: center;
  margin: 10px 0;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_status .form__field .select {
  position: relative;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_status .form__field .select .select__listWrap {
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 1;
  background: #fff;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_amount {
  width: 30%;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_amount .form__label {
  margin: 10px 0;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_amount input {
  width: 100px;
  height: 40px;
  padding-left: 10px;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  margin: 0 5px;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_amount input::-webkit-input-placeholder {
  color: #eeeeee;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_amount input::-moz-placeholder {
  color: #eeeeee;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_amount input::-ms-input-placeholder {
  color: #eeeeee;
}

.lc__company_order__head .form_order_company .order_company__form_wrap .form__col_amount input::placeholder {
  color: #eeeeee;
}

.lc__company_order__head .form_order_company .form__btn button {
  font-family: 'Roboto', sans-serif;
  background-color: lightgreen;
  font-size: 14px;
  border-radius: 5px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 15px;
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 17px;
}

.lc__company_order__head .form_order_company .form__btn .cancel {
  background-color: palevioletred;
}

@media all and (max-width: 767px) {
  .lc__company_order__table {
    overflow: auto;
  }

  .lc__company_order__table table {
    width: 707px;
  }
}

.lc__company_order__sort {
  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: 20px 0 17px;
}

@media all and (max-width: 767px) {
  .lc__company_order__sort {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.lc__company_order__sort .count {
  color: rgba(18, 33, 45, 0.7);
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

@media all and (max-width: 767px) {
  .lc__company_order__sort .count {
    width: 100%;
  }
}

.lc__company_order__sort .count .title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-left: 5px;
  color: #12212d;
}

.lc__company_order__sort .view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.lc__company_order__sort .view p {
  color: rgba(18, 33, 45, 0.7);
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-left: 30px;
  cursor: pointer;
}

@media all and (max-width: 767px) {
  .lc__company_order__sort .view p {
    margin: 10px 15px 0 0;
  }
}

.lc__company_order__sort .view p.active {
  color: #12212d;
}

.fakeButton {
  width: 12px;
  height: 14px;
  display: inline-block;
  margin-right: 16px;
  vertical-align: middle;
  pointer-events: none;
}

.sum {
  font-size: 16px;
  font-weight: 500;
  margin: 15px 0;
  font-family: 'Roboto', sans-serif;
}

.title {
  color: #98a2ab;
}

.select__listWrap {
  display: none;
  border: 1px solid #eeeeee;
  margin-top: 2px;
  padding: 10px;
  border-radius: 5px;
}

.select__listWrap .select__listItem {
  padding: 5px 0;
}

.select__wrap {
  border: 1px solid #eeeeee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
  border-radius: 5px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 10px;
}

.select__wrap .select__label {
  width: 90%;
}

.select__wrap .select__arrow {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.active_arrow {
  -webkit-transform: rotate(-270deg) !important;
  transform: rotate(-270deg) !important;
}

@media all and (max-width: 767px) {
  .lc_company_waiting_list .table__wrap {
    overflow: auto;
  }
}

.lc_company_waiting_list table {
  margin-bottom: 30px;
}

@media all and (max-width: 767px) {
  .lc_company_waiting_list table {
    width: 707px;
  }
}

.lc_company_waiting_list table thead td {
  background: #e7f3fe;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: rgba(18, 33, 45, 0.7);
  opacity: 0.8;
}

.lc_company_waiting_list table tbody td {
  border-bottom: 1px solid #b7bcc0;
}

.lc_company_waiting_list table td {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  padding: 25px 15px;
}

.lc_company_waiting_list table td .image {
  max-width: 70px;
  max-height: 76px;
}

.lc_company_waiting_list table td .image img {
  max-height: 76px;
}

.lc_company_waiting_list .btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.lc_company_waiting_list .btn__wrap .btn {
  width: 215px;
  margin-right: 10px;
}

.lc_balance__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 0 11px;
  border-bottom: 1px solid #b7bcc0;
}

@media all and (max-width: 575px) {
  .lc_balance__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 20px;
  }
}

.lc_balance__left_col,
.lc_balance__right_col {
  width: 50%;
}

@media all and (max-width: 575px) {

  .lc_balance__left_col,
  .lc_balance__right_col {
    width: 100%;
  }
}

.lc_balance__left_col .main_title,
.lc_balance__right_col .main_title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  margin-bottom: 48px;
}

@media all and (max-width: 575px) {

  .lc_balance__left_col .main_title,
  .lc_balance__right_col .main_title {
    margin-bottom: 20px;
  }
}

.lc_balance__item {
  margin-bottom: 20px;
}

.lc_balance__item .title {
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: rgba(18, 33, 45, 0.7);
  margin-bottom: 7px;
}

.lc_balance__item .value {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
}

.lc_balance__sort_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 25px 0;
}

@media all and (max-width: 575px) {
  .lc_balance__sort_head {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.lc_balance__sort_head .sort__item {
  margin-left: 30px;
}

@media all and (max-width: 575px) {
  .lc_balance__sort_head .sort__item {
    margin: 20px 0 0px;
    width: 100%;
  }
}

.lc_balance__sort_head .sort__item .title {
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.lc_balance__sort_head .date {
  padding-left: 28px;
  width: 124px;
}

@media all and (max-width: 575px) {
  .lc_balance__sort_head .date {
    width: 100%;
  }
}

.lc_balance__sort_head .date img {
  position: absolute;
  width: 14px;
  height: 14px;
  left: 8px;
  top: 12px;
}

.lc_balance__sort_body {
  margin-top: 40px;
}

.lc_balance .table__wrap {
  overflow: auto;
}

.lc_balance .table__wrap__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.lc_balance table {
  margin-top: 20px;
}

@media all and (max-width: 767px) {
  .lc_balance table {
    width: 707px;
  }
}

.lc_balance table thead td {
  background: #e7f3fe;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: rgba(18, 33, 45, 0.7);
  opacity: 0.8;
}

.lc_balance table tr {
  border-bottom: 1px solid #b7bcc0;
}

.lc_balance table td {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  padding: 25px 15px;
}

.lc_balance table td .download_btn {
  width: 33px;
  height: 32px;
  -webkit-box-shadow: 0 2px 15px -3px rgba(57, 92, 60, 0.37);
  box-shadow: 0 2px 15px -3px rgba(57, 92, 60, 0.37);
  background-color: #ffffff;
  background-image: url(../images/icons/download.svg);
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  border-radius: 50%;
}

.lc_balance table td .radio:not(:last-of-type) {
  margin-bottom: 12px;
}

@media all and (max-width: 575px) {
  .lc_balance .form {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.cancel {
  background: #fe8e80;
}

.lc_price_list h2 {
  margin-bottom: 40px;
}

.lc_price_list .dropdown {
  width: 446px;
  height: 50px;
}

.lc_price_list .form__group {
  margin: 0 20px 0 0;
}

@media all and (max-width: 575px) {
  .lc_price_list .form__group {
    width: 100%;
    margin: 0 0px 10px 0;
  }
}

.lc_price_list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 17px;
}

.lc_price_list__item .title {
  width: 100%;
  color: #12212d;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-bottom: 20px;
}

.lc_price_list__item .radio {
  margin-bottom: 20px;
}

.lc_price_list__item .radio:not(:last-of-type) {
  margin-right: 40px;
}

.lc_price_list__item .checkbox {
  margin-bottom: 17px;
  width: 150px;
}

@media all and (max-width: 575px) {
  .lc_price_list__item .checkbox {
    width: 100%;
  }
}

.lc_price_list .btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #b7bcc0;
}

.lc_price_list .descr {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-top: 30px;
}

@media all and (max-width: 767px) {
  .lc_reports .table__wrap {
    overflow: auto;
  }
}

.lc_reports table {
  margin-bottom: 30px;
}

@media all and (max-width: 767px) {
  .lc_reports table {
    width: 707px;
  }
}

.lc_reports table thead td {
  background: #e7f3fe;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: rgba(18, 33, 45, 0.7);
  opacity: 0.8;
}

.lc_reports table tbody td {
  border-bottom: 1px solid #b7bcc0;
}

.lc_reports table td {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  padding: 25px 15px;
  text-align: center;
}

@media all and (max-width: 575px) {
  .lc_reports .btn {
    margin: 0 auto;
  }
}

.lc_fast {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.lc_fast_snackbar {
  margin: 20px 0;
}

.lc_fast_order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 767px) {
  .lc_fast_order {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.lc_fast_order__left_col {
  width: 364px;
  margin-right: 40px;
}

@media all and (max-width: 767px) {
  .lc_fast_order__left_col {
    width: 100%;
    margin-right: 0;
  }
}

.lc_fast_order__right_col {
  width: calc(100% - 404px);
  color: #12212d;
  opacity: 0.6;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

@media all and (max-width: 767px) {
  .lc_fast_order__right_col {
    width: 100%;
    margin-top: 20px;
  }
}

.lc_fast_order__right_col p:not(:last-of-type) {
  margin-bottom: 20px;
}

.lc_fast_order .file input[type='file'] {
  display: none;
}

.lc_fast_order .file label {
  position: relative;
  cursor: pointer;
  width: 364px;
  height: 79px;
  display: block;
  border: 1px dashed #009efa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #12212d;
  border-radius: 3px;
}

@media all and (max-width: 767px) {
  .lc_fast_order .file label {
    margin: 0 auto;
    max-width: 364px;
    width: 100%;
  }
}

.lc_fast_order .file label span {
  padding-left: 25px;
  position: relative;
}

.lc_fast_order .file label span:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/icons/upload.svg) no-repeat;
  width: 14px;
  height: 12px;
}

.lc_fast_order .btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #b7bcc0;
}

@media all and (max-width: 767px) {
  .lc_service .table__wrap {
    overflow: auto;
  }
}

.lc_service table {
  margin-bottom: 30px;
}

@media all and (max-width: 767px) {
  .lc_service table {
    width: 707px;
  }
}

.lc_service table thead td {
  background: #e7f3fe;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: rgba(18, 33, 45, 0.7);
  opacity: 0.8;
}

.lc_service table tbody tr td {
  border-bottom: 1px solid #b7bcc0;
}

.lc_service table td {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  padding: 25px 15px;
  text-align: center;
}

@media all and (max-width: 575px) {
  .lc_service .btn {
    margin: 0 auto;
  }
}

.lc_service .snackbar {
  margin: 20px 0;
}

.dropdown__title {
  position: relative;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.dropdown__content {
  position: absolute;
  top: 60px;
  z-index: 1;
  background: #fff;
  display: none;
  border: 1px solid #b7bcc0;
  margin-top: 2px;
  padding: 10px;
  border-radius: 5px;
  left: 0;
  width: 100%;
}

.dropdown__content div {
  padding: 10px;
}

.lc_service__item {
  width: 330px;
  margin: 0 30px 15px 0;
}

@media all and (max-width: 1180px) {
  .lc_service__item {
    width: calc(50% - 30px);
  }
}

@media all and (max-width: 575px) {
  .lc_service__item {
    width: 100%;
    margin-right: 0;
  }
}

.lc_service__item .dropdown {
  height: 50px;
}

.lc_service__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 40px 0 15px;
  margin-bottom: 30px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  border-bottom: 1px solid #b7bcc0;
}

@media all and (max-width: 575px) {
  .lc_service__wrap {
    padding-top: 10px;
  }
}

.lc_service .file input[type='file'] {
  display: none;
}

.lc_service .file label {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #12212d;
  border-radius: 3px;
}

.lc_service .file label span {
  padding-left: 25px;
  position: relative;
}

.lc_service .file label span:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/icons/upload.svg) no-repeat;
  width: 14px;
  height: 12px;
}

.lc_service .form__input {
  height: 50px;
}

.lc_service .btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.detail {
  background: #f9f9f9;
}

.detail h1 {
  margin: 20px 0;
  display: inline-block;
  width: 100%;
}

.detail__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media all and (max-width: 991px) {
  .detail__top {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.detail__left {
  width: 514px;
}

@media all and (max-width: 991px) {
  .detail__left {
    width: 329px;
  }
}

@media all and (max-width: 767px) {
  .detail__left {
    width: 100%;
  }
}

.detail__right {
  width: 607px;
  margin-left: 19px;
}

@media all and (max-width: 1180px) {
  .detail__right {
    width: 427px;
  }
}

@media all and (max-width: 991px) {
  .detail__right {
    width: 405px;
    margin-left: 10px;
  }
}

@media all and (max-width: 767px) {
  .detail__right {
    width: 100%;
    margin: 20px 0 0;
  }
}

.detail__price {
  background: #ffffff;
  padding: 9px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #b7bcc0;
}

.detail__price .item:not(:last-of-type) {
  margin-right: 50px;
}

@media all and (max-width: 1180px) {
  .detail__price .item.earnings {
    display: none;
  }
}

.detail__price .title {
  color: rgba(18, 33, 45, 0.7);
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.detail__price .value {
  color: #12212d;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.detail__prices {
  padding: 13px 24px 13px 30px;
  background: #ffffff;
}

.detail__prices .catalog__price {
  padding: 0 !important;
}

.detail__buy {
  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: 13px 24px 13px 30px;
  background: #ffffff;
}

.detail__buy-left {
  display: flex;
}

@media (min-width: 768px) and (max-width: 1180px) {
  .detail__buy-left {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .detail__buy {
    display: block;
  }

  .detail__buy-left {
    display: block;
    margin-bottom: 20px;
  }

  .detail__buy .count-outer {
    justify-content: normal;
    width: auto;
    height: 45px;
  }
}

.detail__buy-left .product-cart-button {
  margin-right: 10px;
}

.detail__buy-right {
  display: flex;
  justify-content: space-between;
}

@media all and (max-width: 575px) {
  .detail__buy {
    padding: 10px;
  }
}

@media all and (max-width: 1180px) {
  .detail__buy .btn {
    width: 110px;
  }
}

@media all and (max-width: 1180px) {
  .detail__buy {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.detail__buy-count-outer {
  display: flex;
  margin-right: 20px;
}

@media all and (max-width: 575px) {
  .detail__buy_wrap {
    width: 100%;
    margin-bottom: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.detail__buy .count {
  border: none;
  width: 69px;
  text-align: center;
  border-top: 1px solid #b7bcc0;
  border-bottom: 1px solid #b7bcc0;
}

@media all and (max-width: 991px) {
  .detail__buy .count {
    width: 50px;
  }
}

.detail .compare {
  background-image: url(../images/icons/compare.svg);
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  cursor: pointer;
  background-position: center;
  background-color: white;
  border-radius: 3px;
  border: solid 1px rgba(7, 129, 239, 0.3);
}

.detail .compare.active {
  background-color: rgba(0, 119, 226, 0.2);
}

@media all and (max-width: 575px) {
  .detail .compare {
    display: none;
  }
}

.detail .compare label {
  display: block;
}

.detail .compare input {
  display: none;
}

.detail .favorite__btn {
  background-image: url(../images/icons/like.svg);
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  cursor: pointer;
  background-position: center;
  background-color: white;
  border-radius: 3px;
  border: solid 1px rgba(7, 129, 239, 0.3);
}

.detail .favorite__btn.active {
  background-color: rgba(0, 119, 226, 0.2);
}

.detail__status {
  color: #d57b1c;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.detail__btn_minus,
.detail__btn_plus {
  cursor: pointer;
  width: 30px;
  /* height: 30px; */
  border-radius: 2px;
  border: 1px solid #b7bcc0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.detail__descr {
  min-height: 239px;
  background: #ffffff;
  margin-top: 20px;
  padding: 24px 20px 10px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 1180px) {
  .detail__descr {
    min-height: 218px;
  }
}

@media all and (max-width: 991px) {
  .detail__descr {
    min-height: 208px;
    padding: 18px 20px 10px 30px;
  }
}

@media all and (max-width: 575px) {
  .detail__descr_left_col {
    margin-bottom: 10px;
  }
}

.detail__descr .value {
  width: 100%;
  color: #12212d;
  opacity: 0.6;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 25px;
  text-transform: unset;
  letter-spacing: 0px;
  height: 120px;
  overflow: auto;
}

@media all and (max-width: 1180px) {
  .detail__descr .value {
    height: 100px;
  }
}

@media all and (max-width: 767px) {
  .detail__descr .value {
    height: auto;
  }
}

.detail__raiting svg {
  width: 19px;
  height: 19px;
}

.detail .stiker__wrap {
  right: 20px;
  top: 20px;
}

.detail .article,
.detail .code {
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-top: 7px;
}

.detail .manufacturer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.detail .manufacturer img {
  max-width: 35px;
}

.detail .manufacturer .title {
  margin-left: 14px;
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.detail__slider_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media all and (max-width: 991px) {
  .detail__slider_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.detail__slider_nav {
  width: 104px;
  overflow: hidden;
}

@media all and (max-width: 991px) {
  .detail__slider_nav {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    height: 80px;
    margin-top: 20px;
  }
}

@media all and (max-width: 767px) {
  .detail__slider_nav {
    height: 111px;
    margin-left: 5px;
  }
}

@media all and (max-width: 575px) {
  .detail__slider_nav {
    height: 89px;
    margin-left: 0;
  }
}

@media all and (max-width: 991px) {
  .detail__slider_nav .slick-slide {
    border-right: 10px solid transparent !important;
  }
}

@media all and (max-width: 575px) {
  .detail__slider_nav .slick-slide {
    border-right: none !important;
  }
}

.detail__slider_nav .item_nav {
  height: 104px;
  background: #ffffff;
  cursor: pointer;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media all and (max-width: 991px) {
  .detail__slider_nav .item_nav {
    height: 80px;
  }
}

@media all and (max-width: 767px) {
  .detail__slider_nav .item_nav {
    height: 111px;
  }
}

@media all and (max-width: 575px) {
  .detail__slider_nav .item_nav {
    height: 89px;
  }
}

.detail__slider_nav .item_nav img {
  max-width: 90%;
  max-height: 90%;
}

.detail__slider {
  width: 400px;
  background: #ffffff;
  margin-left: 10px;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media all and (max-width: 991px) {
  .detail__slider {
    width: 320px;
    height: 320px;
    margin-left: 0;
  }
}

@media all and (max-width: 767px) {
  .detail__slider {
    width: 555px;
    height: 555px;
  }
}

@media all and (max-width: 575px) {
  .detail__slider {
    width: 300px;
    height: 300px;
  }
}

.detail__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.detail__slider .item {
  text-align: center;
}

.detail__slider img {
  max-width: 287px;
  max-height: 257px;
}

.detail .slick-slide {
  border: none;
  border-bottom: 10px solid transparent;
}

@media all and (max-width: 991px) {
  .detail .slick-slide {
    border-bottom: none;
  }
}

.detail .slick-arrow {
  border: 1px solid #b7bcc0;
  width: 50px;
  height: 50px;
  bottom: 0;
  top: auto;
  -webkit-transform: translate(0);
  transform: translate(0);
  background-image: url(../images/icons/right-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

.detail .slick-arrow::before {
  display: none;
}

.detail .slick-arrow.slick-prev {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  right: 0;
  left: auto;
}

@media all and (max-width: 991px) {
  .detail .slick-arrow.slick-prev {
    display: none !important;
  }
}

.detail .slick-arrow.slick-next {
  left: 0;
  right: auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media all and (max-width: 991px) {
  .detail .slick-arrow.slick-next {
    display: none !important;
  }
}

.detail__tab_header {
  background: #ffffff;
  padding: 20px 10px 0 49px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 767px) {
  .detail__tab_header {
    padding: 20px 10px 0px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.detail__tab_header p {
  cursor: pointer;
  padding: 0 20px 20px;
  position: relative;
}

@media all and (max-width: 767px) {
  .detail__tab_header p {
    margin-bottom: 15px;
    padding: 0 5px 20px;
    width: 23%;
    text-align: center;
  }
}

@media all and (max-width: 575px) {
  .detail__tab_header p {
    width: 46%;
  }
}

.detail__tab_header p:not(:last-of-type) {
  margin-right: 30px;
}

@media all and (max-width: 767px) {
  .detail__tab_header p:not(:last-of-type) {
    margin: 0 5px 15px;
  }
}

.detail__tab_header p.active:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: #009efa;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.detail__tab_body {
  margin-top: 20px;
  background: #ffffff;
  overflow: hidden;
}

.detail__tab_body>div {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1s 0s, max-height 0s 1s, visibility 0s 5s;
  transition: opacity 1s 0s, max-height 0s 1s, visibility 0s 5s;
}

.detail__tab_body>div.fadeIn {
  max-height: unset;
  visibility: visible;
  -webkit-transition: max-height 0s, visibility 0s;
  transition: max-height 0s, visibility 0s;
}

.detail__tab_body .characteristic__inner {
  padding: 40px 50px;
}

@media all and (max-width: 575px) {
  .detail__tab_body .characteristic__inner {
    padding: 20px;
  }
}

.detail__tab_body .characteristic__inner>.title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  margin-bottom: 30px;
}

@media all and (max-width: 575px) {
  .detail__tab_body .characteristic__inner>.title {
    margin-bottom: 15px;
  }
}

.detail__tab_body .characteristic__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 18px;
}

@media all and (max-width: 575px) {
  .detail__tab_body .characteristic__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
}

.detail__tab_body .characteristic__item .title {
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
}

@media all and (max-width: 575px) {
  .detail__tab_body .characteristic__item .title {
    width: 100%;
  }
}

.detail__tab_body .characteristic__item .value {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
}

.detail__tab_body .characteristic__item .hyphen {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0 10px 5px;
  border-bottom: 1px dashed #b7bcc0;
}

@media all and (max-width: 575px) {
  .detail__tab_body .characteristic__item .hyphen {
    display: none;
  }
}

.detail__tab_body .description__inner {
  padding: 40px 50px 40px;
}

@media all and (max-width: 575px) {
  .detail__tab_body .description__inner {
    padding: 20px;
  }
}

.detail__tab_body .description .title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-bottom: 10px;
}

.detail__tab_body .description .value p {
  opacity: 0.6;
  color: #12212d;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.detail__tab_body .description .value p:not(::last-of-type) {
  margin-bottom: 25px;
}

.detail__tab_body .video__inner {
  padding: 50px;
}

@media all and (max-width: 575px) {
  .detail__tab_body .video__inner {
    padding: 10px;
  }
}

.detail__tab_body .video__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.detail__tab_body .video__main {
  width: 683px;
  height: 474px;
}

@media all and (max-width: 1180px) {
  .detail__tab_body .video__main {
    width: 561px;
    height: 420px;
  }
}

@media all and (max-width: 991px) {
  .detail__tab_body .video__main {
    width: 100%;
  }
}

@media all and (max-width: 767px) {
  .detail__tab_body .video__main {
    height: 330px;
  }
}

@media all and (max-width: 575px) {
  .detail__tab_body .video__main {
    height: 191px;
  }
}

.detail__tab_body .video__main iframe {
  width: 100%;
  height: 100%;
}

.detail__tab_body .video__small {
  width: 328px;
  height: 228px;
  margin-bottom: 18px;
}

@media all and (max-width: 1180px) {
  .detail__tab_body .video__small {
    width: 260px;
    height: 200px;
  }
}

@media all and (max-width: 991px) {
  .detail__tab_body .video__small {
    width: 313px;
  }
}

@media all and (max-width: 767px) {
  .detail__tab_body .video__small {
    width: 100%;
    height: 330px;
  }
}

@media all and (max-width: 575px) {
  .detail__tab_body .video__small {
    height: 191px;
  }
}

.detail__tab_body .video__small iframe {
  width: 100%;
  height: 100%;
}

.detail__tab_body .video__right {
  margin-left: 29px;
}

@media all and (max-width: 1180px) {
  .detail__tab_body .video__right {
    margin-left: 39px;
  }
}

@media all and (max-width: 991px) {
  .detail__tab_body .video__right {
    width: 100%;
    margin-left: 0;
    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-top: 20px;
  }
}

.detail__tab_body .video__bottom {
  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;
  width: 100%;
}

.detail__tab_body .reviews__inner {
  padding: 40px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media all and (max-width: 991px) {
  .detail__tab_body .reviews__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media all and (max-width: 575px) {
  .detail__tab_body .reviews__inner {
    padding: 20px;
  }
}

.detail__tab_body .reviews__left {
  width: 560px;
}

@media all and (max-width: 1180px) {
  .detail__tab_body .reviews__left {
    width: 446px;
  }
}

@media all and (max-width: 991px) {
  .detail__tab_body .reviews__left {
    width: 100%;
    margin-bottom: 15px;
  }
}

.detail__tab_body .reviews__raiting svg {
  width: 19px;
  height: 19px;
}

.detail__tab_body .reviews__item {
  border-bottom: 1px solid #b7bcc0;
  padding-bottom: 16px;
  margin-bottom: 30px;
}

.detail__tab_body .reviews__item_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.detail__tab_body .reviews__item_name {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  margin-right: 10px;
}

.detail__tab_body .reviews__item .title {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-bottom: 5px;
  color: rgba(18, 33, 45, 0.7);
  font-weight: 600;
}

.detail__tab_body .reviews__item .value {
  margin-bottom: 14px;
}

.detail__tab_body .reviews__text {
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  margin-bottom: 10px;
}

.detail__tab_body .reviews .show_more {
  cursor: pointer;
  text-align: center;
  padding: 13.5px 5px;
  border-radius: 2px;
  border: 1px solid #b7bcc0;
  color: #12212d;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.detail__tab_body .reviews__right {
  width: 422px;
  border: 1px solid #b7bcc0;
  border-radius: 2px;
  padding: 30px;
}

@media all and (max-width: 1180px) {
  .detail__tab_body .reviews__right {
    width: 367px;
  }
}

@media all and (max-width: 575px) {
  .detail__tab_body .reviews__right {
    padding: 10px;
  }
}

@media all and (max-width: 991px) {
  .detail__tab_body .reviews__right {
    width: 100%;
  }
}

.detail__tab_body .reviews__right .form__label {
  margin-bottom: 10px;
}

.detail__tab_body .reviews__right .form__input {
  margin-bottom: 15px;
}

.detail__tab_body .reviews__right .reviews__send_btn {
  margin: 10px auto 0;
}

.detail__tab_body .reviews .raiting__pick svg {
  width: 19px;
  height: 19px;
  cursor: pointer;
}

.detail__tab_body .reviews .raiting__pick svg path {
  fill: rgba(255, 195, 26, 0.36);
}

.detail__tab_body .reviews .raiting__pick svg path.active {
  fill: #ffc31a;
}

.detail__tab_body .reviews .raiting__wrap {
  display: inline-block;
}

@media all and (max-width: 991px) {
  .contact {
    margin-top: 20px;
  }
}

.contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.contact__manager_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact__manager_image {
  margin-right: 30px;
  width: 131px;
  height: 171px;
}

.contact__manager_info .title {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: rgba(18, 33, 45, 0.7);
}

.contact__manager_info .name {
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-bottom: 15px;
  color: #12212d;
}

.contact__manager_info .subtitle {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  margin-bottom: 7px;
}

.contact__manager_info .phone {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-bottom: 7px;
  color: #12212d;
}

.contact__manager_info .email {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #009efa;
  text-decoration: none;
}

.contact__right {
  width: 362px;
  margin-bottom: 40px;
}

@media all and (max-width: 991px) {
  .contact__right {
    width: 260px;
  }
}

@media all and (max-width: 767px) {
  .contact__right {
    width: 100%;
  }
}

.contact__right .form__input {
  margin-bottom: 15px;
}

.contact__right .btn {
  margin: 0 auto;
}

.contact__bottom {
  width: 100%;
  padding: 60px 0;
  background: #f9f9f9;
}

.contact__map {
  width: 555px;
  height: 400px;
}

@media all and (max-width: 991px) {
  .contact__map {
    margin-top: 15px;
    width: 100%;
  }
}

@media all and (max-width: 575px) {
  .contact__map {
    height: 250px;
  }
}

.contact__map iframe {
  width: 100%;
  height: 100%;
}

.contact__info .title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  margin-bottom: 10px;
}

@media all and (max-width: 575px) {
  .contact__info .title {
    text-align: center;
  }
}

.contact__info .phone {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-bottom: 7px;
  color: #12212d;
}

.contact__info .email {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #009efa;
  text-decoration: none;
}

/* .contact__item_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media all and (max-width: 575px) {
  .contact__item_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
} */

/* @media all and (max-width: 575px) {
  .contact__item {
    margin-bottom: 10px;
    text-align: center;
  }
} */

/* .contact__item:nth-of-type(2n + 2) {
  margin-left: 131px;
}

@media all and (max-width: 1180px) {
  .contact__item:nth-of-type(2n + 2) {
    margin-left: 50px;
  }
}

@media all and (max-width: 575px) {
  .contact__item:nth-of-type(2n + 2) {
    margin-left: 0;
  }
} */

.contact__social .title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  margin: 25px 0 15px;
}

.contact__social_wrap a {
  margin-right: 15px;
}

.cooperation {
  background: #f9f9f9;
}

.cooperation .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 50px 0 100px;
}

.cooperation h1 {
  margin: 0;
}

.cooperation__left {
  width: calc(100% - 458px);
  padding: 100px 38px 0 0px;
}

@media all and (max-width: 991px) {
  .cooperation__left {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}

.cooperation__descr {
  margin: 10px 0 120px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 24px;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  max-width: 493px;
  opacity: 0.6;
}

@media all and (max-width: 991px) {
  .cooperation__descr {
    margin: 10px 0 20px;
  }
}

.cooperation__info p {
  color: #12212d;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.cooperation__info .title {
  margin-bottom: 40px;
}

.cooperation__info .item {
  margin: 0 0 8px 15px;
  padding-left: 5px;
  list-style: disc;
  display: list-item;
}

.cooperation__right {
  width: 458px;
}

@media all and (max-width: 991px) {
  .cooperation__right {
    width: 100%;
  }
}

.cooperation .form {
  background-image: linear-gradient(206deg, #0077e2, #108dfd);
  padding: 40px 40px 20px;
  width: 100%;
}

.cooperation .form__label {
  color: #fff;
  margin-bottom: 10px;
}

.cooperation .form__input {
  height: 50px;
  margin-bottom: 15px;
}

.cooperation .form .btn_white {
  margin: 15px auto 0;
}

.cooperation__news {
  padding: 30px 20px 30px 30px;
  position: relative;
  background: #ffffff;
  margin-top: 30px;
  margin-bottom: 90px;
  height: 241px;
}

.cooperation__news a {
  text-decoration: none;
  display: block;
}

.cooperation__news .name {
  color: #009efa;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  max-width: 170px;
}

.cooperation__news .title {
  position: absolute;
  bottom: 0;
  left: 30px;
  bottom: 30px;
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  opacity: 0.6;
}

@media all and (max-width: 575px) {
  .cooperation__news .title {
    position: static;
    margin-bottom: 15px;
  }
}

.cooperation__news img {
  position: absolute;
  right: 20px;
  top: 31px;
}

@media all and (max-width: 575px) {
  .cooperation__news img {
    position: static;
  }
}

.about {
  background-color: #f9f9f9;
  padding-bottom: 101px;
}

.about h1 {
  margin: 0;
}

.about__item_1 {
  background-color: #ffffff;
  margin-bottom: 110px;
}

@media all and (max-width: 991px) {
  .about__item_1 {
    margin-bottom: 25px;
  }
}

.about__item_1 .container {
  height: 335px;
  background: url(../images/content/about_bg_1.png) no-repeat;
  background-size: contain;
  background-position: right top;
  margin-bottom: 110px;
  padding-top: 100px;
}

@media all and (max-width: 1180px) {
  .about__item_1 .container {
    background: none;
    padding: 20px 0;
    height: auto;
  }
}

@media all and (max-width: 991px) {
  .about__item_1 .container {
    margin-bottom: 0;
  }
}

@media all and (max-width: 991px) {
  .about__item_1 .about__descr {
    max-width: 100%;
  }
}

.about__item_2 {
  margin-bottom: 110px;
}

@media all and (max-width: 991px) {
  .about__item_2 {
    margin-bottom: 25px;
  }
}

.about__item_2 .container {
  height: 354px;
  position: relative;
  padding: 70px 70px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background: #ffffff;
}

@media all and (max-width: 991px) {
  .about__item_2 .container {
    height: auto;
    padding: 20px;
  }
}

.about__item_2_inner {
  width: 400px;
}

@media all and (max-width: 991px) {
  .about__item_2_inner {
    width: 100%;
  }
}

@media all and (max-width: 1180px) {
  .about__item_2_inner img {
    max-width: 90%;
  }
}

@media all and (max-width: 1180px) {
  .about__item_2 .about__descr {
    max-width: 100%;
  }
}

.about__item_2 .about__image_wrap {
  position: absolute;
  left: 30px;
  top: -40px;
}

@media all and (max-width: 991px) {
  .about__item_2 .about__image_wrap {
    position: static;
    margin-top: 15px;
    text-align: center;
  }
}

.about__item_3 .container {
  position: relative;
  padding: 70px 0 0 70px;
  background-color: #ffffff;
  height: 354px;
}

@media all and (max-width: 991px) {
  .about__item_3 .container {
    height: auto;
    padding: 20px;
  }
}

.about__item_3 .about__image_wrap {
  position: absolute;
  right: 30px;
  top: -40px;
  background: #5cb5ef;
  width: 458px;
  height: 354px;
  text-align: center;
}

@media all and (max-width: 1180px) {
  .about__item_3 .about__image_wrap {
    width: 394px;
    height: 328px;
  }
}

@media all and (max-width: 991px) {
  .about__item_3 .about__image_wrap {
    position: static;
    margin-top: 15px;
    width: 100%;
    text-align: center;
  }
}

@media all and (max-width: 575px) {
  .about__item_3 .about__image_wrap {
    height: 221px;
  }
}

.about__item_3 .about__image_wrap img {
  display: block;
  margin: -8px auto 0;
}

@media all and (max-width: 1180px) {
  .about__item_3 .about__image_wrap img {
    max-width: 70%;
  }
}

@media all and (max-width: 991px) {
  .about__item_3 .about__image_wrap img {
    margin-top: 0;
    max-height: 100%;
  }
}

.about__descr {
  max-width: 500px;
  color: #12212d;
  opacity: 0.6;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 24px;
  text-transform: unset;
  letter-spacing: 0px;
  margin: 10px 0 20px;
}

@media all and (max-width: 1180px) {
  .about__descr {
    max-width: 50%;
  }
}

@media all and (max-width: 991px) {
  .about__descr {
    max-width: 100%;
  }
}

.partner {
  background: #f9f9f9;
  padding: 20px 0 70px;
}

.partner h1 {
  margin: 0 0 20px;
}

.partner__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.partner__item {
  width: 190px;
  height: 150px;
  background: #ffffff;
  margin-bottom: 30px;
}

@media all and (max-width: 991px) {
  .partner__item {
    width: 186px;
  }
}

@media all and (max-width: 767px) {
  .partner__item {
    width: 185px;
  }
}

@media all and (max-width: 575px) {
  .partner__item {
    width: 150px;
    margin-bottom: 15px;
  }
}

.partner__item:not(:nth-of-type(6n + 6)) {
  border-right: 1px solid #b7bcc0;
}

@media all and (max-width: 1180px) {
  .partner__item:nth-of-type(6n + 6) {
    border-right: 1px solid #b7bcc0;
  }
}

@media all and (max-width: 1180px) {
  .partner__item:nth-of-type(5n + 5) {
    border-right: none;
  }
}

@media all and (max-width: 991px) {
  .partner__item:nth-of-type(5n + 5) {
    border-right: 1px solid #b7bcc0;
  }
}

@media all and (max-width: 991px) {
  .partner__item:nth-of-type(4n + 4) {
    border-right: none;
  }
}

@media all and (max-width: 767px) {
  .partner__item:nth-of-type(4n + 4) {
    border-right: 1px solid #b7bcc0;
  }
}

@media all and (max-width: 767px) {
  .partner__item:nth-of-type(3n + 3) {
    border-right: none;
  }
}

@media all and (max-width: 575px) {
  .partner__item:nth-of-type(3n + 3) {
    border-right: 1px solid #b7bcc0;
  }
}

.partner__item:nth-of-type(2n + 2) {
  border-right: none;
}

.partner__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 150px;
}

.page_404 {
  background: #f9f9f9;
  margin-top: 70px;
  padding: 60px 0 48px;
}

@media all and (max-width: 575px) {
  .page_404 {
    padding: 25px 0;
    margin-top: 0;
  }
}

.page_404 h1 {
  margin: 0 0 10px;
  font-family: 'Roboto', sans-serif;
}

@media all and (max-width: 767px) {
  .page_404 h1 {
    font-size: 20px;
    line-height: 26px;
  }
}

@media all and (max-width: 575px) {
  .page_404 h1 {
    font-size: 25px;
    line-height: 31px;
  }
}

.page_404 .btn {
  width: 200px;
  height: 54px;
  padding: 17px 10px;
}

@media all and (max-width: 575px) {
  .page_404 .btn {
    margin: 0 auto;
  }
}

.page_404 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page_404__left {
  width: 573px;
}

@media all and (max-width: 767px) {
  .page_404__left {
    padding-right: 15px;
  }
}

@media all and (max-width: 575px) {
  .page_404__left {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
}

.page_404__left .descr {
  color: #12212d;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 24px;
  text-transform: unset;
  letter-spacing: 0px;
  opacity: 0.6;
  margin-bottom: 25px;
}

@media all and (max-width: 575px) {
  .page_404__right {
    display: none;
  }
}

.category {
  background-color: #f9f9f9;
  padding-bottom: 100px;
}

.category h1 {
  margin: 20px 0;
  width: 100%;
  display: inline-block;
}

@media all and (max-width: 991px) {
  .category h1 {
    display: none;
  }
}

.category__wrap {
  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;
}

.category__right {
  margin-left: 28px;
}

@media all and (max-width: 991px) {
  .category__right {
    margin-left: 0;
    width: 100%;
  }
}

.category .catalogCategory {
  grid-auto-rows: 149px;
  width: 849px;
}

@media all and (max-width: 1180px) {
  .category .catalogCategory {
    width: 669px;
  }
}

@media all and (max-width: 991px) {
  .category .catalogCategory {
    width: 100%;
  }
}

.category .catalogCategory .catalogCategoryItem {
  position: relative;
}

.category .catalogCategory .catalogCategoryItem a {
  text-decoration: none;
  display: block;
}

.category .catalogCategory .catalogCategoryItem:nth-of-type(9n + 1),
.category .catalogCategory .catalogCategoryItem:nth-of-type(9n + 8) {
  grid-column: auto / span 2;
  grid-row: auto / span 2;
}

@media all and (max-width: 767px) {

  .category .catalogCategory .catalogCategoryItem:nth-of-type(9n + 1),
  .category .catalogCategory .catalogCategoryItem:nth-of-type(9n + 8) {
    grid-column: unset;
    grid-row: unset;
  }
}

.category .catalogCategory .catalogCategoryItem:nth-of-type(9n + 1) .title,
.category .catalogCategory .catalogCategoryItem:nth-of-type(9n + 8) .title {
  color: #27587e;
  max-width: 100%;
}

.category .catalogCategory .catalogCategoryItem:nth-of-type(9n + 1) .count,
.category .catalogCategory .catalogCategoryItem:nth-of-type(9n + 8) .count {
  color: #27587e;
  bottom: 50px;
  left: 15px;
  top: auto;
  right: auto;
}

.category .catalogCategory .catalogCategoryItem:nth-of-type(9n + 1) .image__wrap,
.category .catalogCategory .catalogCategoryItem:nth-of-type(9n + 8) .image__wrap {
  width: 300px;
  height: 300px;
  right: 20px;
  top: 10px;
  bottom: auto;
  left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media all and (max-width: 1180px) {

  .category .catalogCategory .catalogCategoryItem:nth-of-type(9n + 1) .image__wrap,
  .category .catalogCategory .catalogCategoryItem:nth-of-type(9n + 8) .image__wrap {
    width: 247px;
    height: 247px;
    right: 10px;
    top: 28px;
  }
}

@media all and (max-width: 767px) {

  .category .catalogCategory .catalogCategoryItem:nth-of-type(9n + 1) .image__wrap,
  .category .catalogCategory .catalogCategoryItem:nth-of-type(9n + 8) .image__wrap {
    display: none;
  }
}

.category .catalogCategory .catalogCategoryItem .title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #ffffff;
  margin: 15px 0 0 15px;
  display: inline-block;
  position: relative;
  z-index: 2;
}

@media all and (max-width: 1180px) {
  .category .catalogCategory .catalogCategoryItem .title {
    font-size: 16px;
  }
}

@media all and (max-width: 767px) {
  .category .catalogCategory .catalogCategoryItem .title {
    max-width: 100% !important;
    padding-right: 15px;
  }
}

.category .catalogCategory .catalogCategoryItem .count {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 0.6;
  position: absolute;
  z-index: 2;
}

@media all and (max-width: 767px) {
  .category .catalogCategory .catalogCategoryItem .count {
    position: static;
    margin-left: 15px;
  }
}

.category .catalogCategory .catalogCategoryItem .image__wrap {
  position: absolute;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media all and (max-width: 767px) {
  .category .catalogCategory .catalogCategoryItem .image__wrap {
    display: none;
  }
}

.category .catalogCategory .catalogCategoryItem_1 .title {
  max-width: 115px;
}

.category .catalogCategory .catalogCategoryItem_1 .count {
  bottom: 35px;
  left: 15px;
}

.category .catalogCategory .catalogCategoryItem_1 .image__wrap {
  width: 123px;
  height: 94px;
  right: 6px;
  top: 32px;
}

@media all and (max-width: 1180px) {
  .category .catalogCategory .catalogCategoryItem_1 .image__wrap {
    width: 103px;
    height: 93px;
    right: 5px;
  }
}

.category .catalogCategory .catalogCategoryItem_2 .title {
  max-width: 115px;
}

.category .catalogCategory .catalogCategoryItem_2 .count {
  bottom: 35px;
  left: 15px;
}

.category .catalogCategory .catalogCategoryItem_2 .image__wrap {
  width: 81px;
  height: 94px;
  right: 19px;
  top: 6px;
}

@media all and (max-width: 1180px) {
  .category .catalogCategory .catalogCategoryItem_2 .image__wrap {
    width: 60px;
    height: 99px;
    right: 5px;
  }
}

.category .catalogCategory .catalogCategoryItem_3 .count {
  position: static;
  margin-left: 15px;
}

.category .catalogCategory .catalogCategoryItem_3 .image__wrap {
  left: 40px;
  right: 40px;
  top: 65px;
  height: 84px;
}

@media all and (max-width: 1180px) {
  .category .catalogCategory .catalogCategoryItem_3 .image__wrap {
    height: 70px;
    left: 30px;
    right: 30px;
    top: 76px;
  }
}

.category .catalogCategory .catalogCategoryItem_4 .count {
  position: static;
  margin-left: 15px;
}

.category .catalogCategory .catalogCategoryItem_4 .image__wrap {
  width: 180px;
  height: 110px;
  right: -17px;
  bottom: -16px;
}

@media all and (max-width: 1180px) {
  .category .catalogCategory .catalogCategoryItem_4 .image__wrap {
    width: 163px;
    height: 93px;
    right: -10px;
    bottom: -13px;
  }
}

.category .catalogCategory .catalogCategoryItem_5 .count {
  position: static;
  margin-left: 15px;
}

.category .catalogCategory .catalogCategoryItem_5 .image__wrap {
  width: 160px;
  height: 156px;
  right: 7px;
  bottom: -16px;
}

@media all and (max-width: 1180px) {
  .category .catalogCategory .catalogCategoryItem_5 .image__wrap {
    width: 132px;
    height: 117px;
    right: -11px;
    bottom: -11px;
  }
}

.basket {
  background: #f9f9f9;
  padding: 20px 0 30px;
}

.basket h1 {
  margin: 0 0 20px;
}

.basket .table__wrap {
  padding: 30px 30px 40px;
  background: #ffffff;
}

@media all and (max-width: 767px) {
  .basket .table__wrap {
    padding: 10px;
  }
}

@media all and (max-width: 767px) {
  .basket .table__overflow {
    overflow: auto;
  }
}

.basket table {
  margin-bottom: 40px;
}

@media all and (max-width: 767px) {
  .basket table {
    width: 687px;
  }
}

.basket table thead td {
  background: #e7f3fe;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: rgba(18, 33, 45, 0.7);
  opacity: 0.8;
}

.basket table thead td:first-child {
  width: 14%;
}

.basket table thead td:nth-child(2) {
  width: 40%;
}

.basket table thead td:nth-child(3) {
  width: 15%;
}

.basket table thead td:nth-child(4) {
  width: 15%;
}

.basket table thead td:nth-child(5) {
  width: 15%;
}

.basket table thead td:last-child {
  width: 1%;
}

.basket table td {
  text-align: center;
}

.basket table tbody td {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  padding: 25px 15px;
  border-bottom: 1px solid #b7bcc0;
}

.basket table tbody td:nth-child(2) {
  text-align: left;
}

.basket table tbody td.image {
  max-width: 44px;
  max-height: 76px;
}

.basket table tbody td .block_mount {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.basket table tbody td .block_mount .count {
  border: none;
  width: 69px;
  text-align: center;
  border-top: 1px solid #b7bcc0;
  border-bottom: 1px solid #b7bcc0;
}

.basket table tbody td .remove {
  width: 15px;
  height: 15px;
  cursor: pointer;
  display: block;
  background: url(../images/icons/remove.svg) no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0 auto;
}

.basket table tbody td .price__old {
  color: #12212d;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  text-decoration: line-through;
  margin-left: -43px;
}

.basket table tbody td .price__new {
  color: #12212d;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.basket__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.basket__status .title {
  color: rgba(18, 33, 45, 0.7);
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.basket__status .title span {
  margin-left: 10px;
  color: #009efa;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.basket__btn {
  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;
  margin-top: 20px;
}

.basket__btn .continue_btn {
  margin-right: 20px;
  opacity: 0.4;
  color: #12212d;
  text-decoration: none;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.order {
  background: #f9f9f9;
  padding: 20px 0 150px;
}

.order__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.order__left {
  width: 848px;
}

@media all and (max-width: 1180px) {
  .order__left {
    width: 660px;
  }
}

@media all and (max-width: 991px) {
  .order__left {
    width: 100%;
  }
}

.order__right {
  width: calc(100% - 878px);
  margin-left: 30px;
}

@media all and (max-width: 1180px) {
  .order__right {
    width: calc(100% - 690px);
    margin-left: 0;
  }
}

@media all and (max-width: 991px) {
  .order__right {
    width: 100%;
  }
}

.order__title {
  color: #12212d;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-bottom: 20px;
}

.order__table {
  padding: 30px;
  background: #ffffff;
}

@media all and (max-width: 767px) {
  .order__table {
    overflow: auto;
  }
}

@media all and (max-width: 767px) {
  .order__table table {
    width: 687px;
  }
}

.order__table thead td {
  background: #e7f3fe;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: rgba(18, 33, 45, 0.7);
  opacity: 0.8;
}

.order__table tbody tr:not(:last-of-type) td {
  border-bottom: 1px solid #b7bcc0;
}

.order__table tbody td {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: #12212d;
  padding: 25px 15px;
}

.order__table tbody td.image {
  max-width: 44px;
  max-height: 76px;
}

.order__delivery {
  padding: 30px;
  background: #ffffff;
  margin-top: 20px;
}

.order__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #e7f3fe;
  border-radius: 2px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.order__head .order__delivery_item {
  width: 25%;
}

@media all and (max-width: 767px) {
  .order__head .order__delivery_item {
    width: 50%;
  }
}

.order__head .order__delivery_item input[type='radio'] {
  display: none;
}

.order__head .order__delivery_item label {
  cursor: pointer;
  color: #12212d;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  padding: 15px 4px;
  display: block;
  text-align: center;
}

.order__head .order__delivery_item input[type='radio']:checked+label {
  background: linear-gradient(248deg, #0077e2, #108dfd);
  color: #ffffff;
}

.order__body {
  margin-top: 30px;
}

.order__radio_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.order__radio_wrap .radio {
  margin-bottom: 20px;
}

.order__radio_wrap .radio:not(:last-of-type) {
  margin-right: 40px;
}

.order .order__input_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 530px;
  margin-top: 20px;
}

@media all and (max-width: 575px) {
  .order .order__input_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }
}

.order .order__input_wrap .form__group {
  width: 213px;
  margin-right: 20px;
  margin: 0 20px 20px 0;
}

@media all and (max-width: 767px) {
  .order .order__input_wrap .form__group {
    margin: 0 0px 20px 0;
    width: 100%;
  }
}

.order__payment {
  padding: 30px;
  background: #ffffff;
  margin-top: 20px;
}

.order__summ {
  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-top: 20px;
  background: #ffffff;
  padding: 21px 30px 21px 40px;
}

.order__summ_title {
  color: rgba(18, 33, 45, 0.7);
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.order__summ_value {
  color: #009efa;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.order__comment {
  padding: 30px 30px 50px;
  background: #ffffff;
  margin: 20px 0 0px;
}

.order__comment textarea {
  height: 134px;
}

.order__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 28px;
}

@media all and (max-width: 1180px) {
  .order__btn {
    width: 660px;
  }
}

@media all and (max-width: 991px) {
  .order__btn {
    width: 100%;
  }
}

@media all and (max-width: 991px) {
  .order__btn {
    margin-bottom: 25px;
  }
}

.order__btn .continue {
  opacity: 0.4;
  color: #12212d;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  text-decoration: none;
  margin-right: 20px;
}

.order__user_form {
  background: #ffffff;
  padding: 30px 20px;
  margin-bottom: 30px;
}

.order__user_form .form__input:not(:last-of-type) {
  margin-bottom: 20px;
}

.order__user_data {
  background: #ffffff;
  padding: 30px;
  margin-bottom: 30px;
  display: none;
}

.order__user_data .value {
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.order__user_data .value:not(:last-of-type) {
  margin-bottom: 25px;
}

.order__payment {
  background: #ffffff;
  padding: 30px;
  margin-bottom: 30px;
}

.order__descr {
  margin-bottom: 10px;
  color: rgba(18, 33, 45, 0.7);
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.order .order__delivery_value {
  margin-top: 6px;
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 22px;
  text-transform: unset;
  letter-spacing: 0px;
}

.order__block {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
}

.news {
  padding: 30px 0 100px;
  background: #f9f9f9;
}

.news h1 {
  margin: 10px 0 0;
}

.news__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 25px 0;
}

@media all and (max-width: 575px) {
  .news__header {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.news__header p {
  margin: 0 25px;
  cursor: pointer;
  color: rgba(18, 33, 45, 0.7);
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  opacity: 0.3;
}

@media all and (max-width: 575px) {
  .news__header p {
    margin-bottom: 15px;
  }
}

.news__header p.active,
.news__header p:hover {
  color: #12212d;
  opacity: 1;
}

.news__header p span {
  color: #009efa;
}

.news__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  grid-gap: 20px 30px;
  margin-bottom: 52px;
}

@media all and (max-width: 1180px) {
  .news__wrap {
    grid-auto-rows: 200px;
  }
}

@media all and (max-width: 991px) {
  .news__wrap {
    grid-auto-rows: 150px;
  }
}

@media all and (max-width: 767px) {
  .news__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media all and (max-width: 575px) {
  .news__wrap {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 200px;
  }
}

.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.news__item a {
  display: block;
  text-decoration: none;
  width: 100%;
}

.news__item:nth-of-type(9n + 1),
.news__item:nth-of-type(9n + 8) {
  grid-column: auto / span 2;
  grid-row: auto / span 2;
}

@media all and (max-width: 575px) {

  .news__item:nth-of-type(9n + 1),
  .news__item:nth-of-type(9n + 8) {
    grid-column: unset;
    grid-row: unset;
  }
}

@media all and (max-width: 767px) {
  .news__item:nth-of-type(9n + 8) {
    grid-column: unset;
    grid-row: unset;
  }
}

.news__item img {
  width: 100%;
  height: 100%;
}

.news .stiker__wrap {
  top: 30px;
  left: 30px;
}

@media all and (max-width: 1180px) {
  .news .stiker__wrap {
    top: 10px;
    left: 10px;
  }
}

.news__item_info {
  position: absolute;
  left: 30px;
  bottom: 40px;
}

@media all and (max-width: 1180px) {
  .news__item_info {
    left: 10px;
    bottom: 10px;
  }
}

.news__item_name {
  color: #ffffff;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-bottom: 10px;
}

@media all and (max-width: 991px) {
  .news__item_name {
    font-size: 14px;
  }
}

.news__item_date {
  color: #ffffff;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.newsDetail {
  background-color: #f9f9f9;
  margin-top: -71px;
  padding-bottom: 100px;
}

@media all and (max-width: 767px) {
  .newsDetail {
    margin-top: 0;
  }
}

.newsDetail .container {
  position: relative;
}

.newsDetail h1 {
  color: #ffffff;
  margin: 0 0 15px;
  line-height: 33px;
}

@media all and (max-width: 767px) {
  .newsDetail h1 {
    color: #12212d;
    margin-top: 20px;
  }
}

@media all and (max-width: 575px) {
  .newsDetail h1 {
    font-size: 26px;
  }
}

.newsDetail__image img {
  width: 100%;
}

.newsDetail__info {
  position: absolute;
  bottom: 30px;
  left: 0;
}

@media all and (max-width: 767px) {
  .newsDetail__info {
    position: static;
  }
}

.newsDetail__info p {
  color: #ffffff;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

@media all and (max-width: 767px) {
  .newsDetail__info p {
    color: #12212d;
  }
}

.newsDetail__descr {
  padding: 40px 0 50px;
}

@media all and (max-width: 767px) {
  .newsDetail__descr {
    padding: 20px 0 0;
  }
}

.newsDetail__descr p {
  color: #12212d;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 24px;
  text-transform: unset;
  letter-spacing: 0px;
  margin-bottom: 25px;
}

.newsDetail .subscription {
  margin-top: 50px;
}

.newsDetail__slider h3 {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #b7bcc0;
}

.wishList {
  background: #f9f9f9;
}

.wishList__top {
  padding: 16px 0 0px;
}

.wishList h1 {
  margin: 0;
}

@media all and (max-width: 767px) {
  .wishList h1 {
    width: 100%;
    margin: 10px 0;
  }
}

.wishList .catalog__item:nth-of-type(3n + 3) {
  border-right: 1px solid #b7bcc0;
}

@media all and (max-width: 1180px) {
  .wishList .catalog__item:nth-of-type(3n + 3) {
    border-right: none;
  }
}

@media all and (max-width: 991px) {
  .wishList .catalog__item:nth-of-type(3n + 3) {
    border-right: 1px solid #b7bcc0;
  }
}

@media all and (max-width: 575px) {
  .wishList .catalog__item:nth-of-type(3n + 3) {
    border-right: none;
  }
}

.wishList .catalog__item:nth-of-type(4n + 4) {
  border-right: none;
}

@media all and (max-width: 1180px) {
  .wishList .catalog__item:nth-of-type(4n + 4) {
    border-right: 1px solid #b7bcc0;
  }
}

@media all and (max-width: 575px) {
  .wishList .catalog__item:nth-of-type(4n + 4) {
    border-right: none;
  }
}

@media all and (max-width: 991px) {
  .wishList .catalog__item:nth-of-type(2n + 2) {
    border-right: none;
  }
}

.wishList__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media all and (max-width: 767px) {
  .wishList__header {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.wishList__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media all and (max-width: 767px) {
  .wishList__info {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
}

@media all and (max-width: 575px) {
  .wishList__info {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.wishList__info_title {
  margin-right: 20px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  color: rgba(18, 33, 45, 0.7);
}

@media all and (max-width: 575px) {
  .wishList__info_title {
    margin-bottom: 15px;
  }
}

.wishList__info_title span {
  color: #12212d;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-left: 4px;
}

.wishList__removeItem {
  position: absolute;
  top: 20px;
  right: 20px;
  background: url(../images/icons/close_blue.svg);
  width: 15px;
  height: 15px;
}

.wishList__removeItem:hover {
  opacity: 0.5;
}

.wishList .viewed {
  padding: 50px 0;
}

.wishList .viewed h2 {
  margin-bottom: 20px;
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x>.ps__rail-x,
.ps--active-y>.ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover>.ps__rail-x,
.ps:hover>.ps__rail-y,
.ps--focus>.ps__rail-x,
.ps--focus>.ps__rail-y,
.ps--scrolling-x>.ps__rail-x,
.ps--scrolling-y>.ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover>.ps__thumb-x,
.ps__rail-x:focus>.ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover>.ps__thumb-y,
.ps__rail-y:focus>.ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

.pageCompare {
  background-color: #f9f9f9;
  padding: 20px 0 50px;
}

.pageCompare__table {
  overflow: auto;
  position: relative;
  padding-bottom: 20px;
  width: calc(100% - 282px);
}

@media all and (max-width: 767px) {
  .pageCompare__table {
    width: calc(100% - 309px);
  }
}

.pageCompare h1 {
  margin: 0 0 20px;
}

.pageCompare table {
  border-top: 1px solid #b7bcc0;
}

.pageCompare td {
  color: #12212d;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  padding: 10px 0px 9px;
  vertical-align: middle;
}

.pageCompare__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  /*
		&:before {
			content: '';
			position: absolute;
			right: 0;
			top: 0;
			height: 272px;
			width: 1px;
			background: $color_dark_gray;
		}
		*/
}

.pageCompare__sidebar {
  width: 282px;
}

@media all and (max-width: 767px) {
  .pageCompare__sidebar {
    width: 309px;
  }
}

.pageCompare__sidebarLogo {
  padding-left: 10px;
  border-bottom: 1px solid #b7bcc0;
  border-right: 1px solid #b7bcc0;
  height: 273px;
}

.pageCompare__sidebarLogo img {
  width: 80px;
  height: 80px;
  margin: 20px 0 107px;
}

.pageCompare__sidebTitle {
  color: #12212d;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  padding-bottom: 20px;
  width: 115px;
}

.pageCompare__sidebarItem p {
  color: #12212d;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  padding: 10px 10px 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pageCompare__tableItemBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}

.pageCompare__tableItemHead {
  width: 214px;
  height: 261px;
  overflow: hidden;
  padding: 20px 0 0 25px;
  position: relative;
}

.pageCompare__tableItemHead .remove {
  width: 15px;
  height: 15px;
  cursor: pointer;
  display: block;
  background: url(../images/icons/remove.svg) no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0px;
  right: 5px;
}

.pageCompare__tableItemHead a {
  display: block;
  text-decoration: none;
  text-align: center;
}

.pageCompare__tableItemHead img {
  max-width: 100px;
  height: 100px;
}

.pageCompare__tableItemHead p {
  text-align: left;
  padding-right: 5px;
}

.pageCompare__tableItemName {
  color: #009efa;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin: 14px 0 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pageCompare__tableItemPrice {
  color: rgba(18, 33, 45, 0.7);
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.pageCompare__tableItemPrice span {
  color: #12212d;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.pageCompare__BasketBtn {
  width: 45px;
  height: 45px;
  margin-right: 10px;
  background-color: #009efa;
  border-radius: 3px;
  background-image: url(../images/icons/shop.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.pageCompare__propRow td p {
  padding-left: 25px;
  word-break: break-word;
}

.pageCompare table tr:first-of-type {
  border-bottom: 1px solid #b7bcc0;
  border-right: 1px solid #b7bcc0;
}

.pageCompare table tr:first-of-type td {
  padding-bottom: 0;
}

.pageCompare .viewed {
  padding: 50px 0;
}

.pageCompare .viewed h3 {
  margin-bottom: 20px;
}

.partnerDetail {
  background-color: #f9f9f9;
  padding-bottom: 50px;
}

@media all and (max-width: 1180px) {
  .partnerDetail .catalog__item {
    width: 50%;
  }

  .partnerDetail .catalog__item:nth-of-type(3n + 3) {
    border-right: 1px solid #b7bcc0;
  }

  .partnerDetail .catalog__item:nth-of-type(2n + 2) {
    border-right: none;
  }
}

@media all and (max-width: 575px) {
  .partnerDetail .catalog__item {
    width: 100%;
    border-right: none;
  }

  .partnerDetail .catalog__item:nth-of-type(3n + 3) {
    border-right: none;
  }
}

.partnerDetail h1 {
  width: 100%;
}

.partnerDetail .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.partnerDetail__right {
  margin-left: 22px;
  width: calc(100% - 285px);
}

@media all and (max-width: 991px) {
  .partnerDetail__right {
    width: 100%;
    margin: 20px 0 0;
  }
}

.partnerDetail__descr {
  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;
  background-color: #ffffff;
  padding: 40px;
  margin-bottom: 30px;
}

.partnerDetail__descrLeft {
  width: 110px;
  margin-right: 31px;
}

@media all and (max-width: 575px) {
  .partnerDetail__descrLeft {
    width: 100%;
    margin-right: 0;
  }
}

.partnerDetail__descrLeft img {
  max-width: 91px;
  max-height: 91px;
}

.partnerDetail__descrLeft a {
  color: #009efa;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  text-decoration: none;
}

.partnerDetail__descrRight {
  width: calc(100% - 141px);
}

@media all and (max-width: 575px) {
  .partnerDetail__descrRight {
    width: 100%;
  }
}

.partnerDetail__descrImage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.partnerDetail__descrTitle {
  color: #27587e;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-bottom: 10px;
}

.partnerDetail__descrText p {
  color: #12212d;
  opacity: 0.6;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  text-transform: unset;
  letter-spacing: 0px;
}

.partnerDetail__descrText p:not(:last-of-type) {
  margin-bottom: 25px;
}

.partnerDetail .viewed .container {
  display: block;
}

.partnerDetail .viewed h3 {
  margin-bottom: 20px;
}

.register__left {
  background: url(../images/content/register_foto.png);
  background-size: cover;
}

.modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal__left {
  height: 100vh;
  width: 28%;
  background-size: cover;
  background-position: top center;
}

@media all and (max-width: 767px) {
  .modal__left {
    display: none;
  }
}

.modal__right {
  width: 72%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 767px) {
  .modal__right {
    width: 100%;
  }
}

.modal__inner {
  width: 362px;
}

@media all and (max-width: 575px) {
  .modal__inner {
    width: 100%;
    padding: 0 15px;
  }
}

.modal__inner h1 {
  text-align: center;
  color: #12212d;
}

.modal__inner input[type='text'] {
  margin-bottom: 15px;
  height: 50px;
}

.modal__inner input[type='text']:focus {
  border: 1px solid rgba(6, 127, 235, 0.5);
}

.modal__inner .send_btn {
  margin: 0 auto;
}

.modal__link {
  color: #363155;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  text-align: center;
  margin: 15px 0;
}

.modal__link a {
  color: #009efa;
  text-decoration: none;
}

.modal__text {
  padding: 10px 0;
}

.password__left {
  background: url(../images/content/register_foto_3.png);
  background-size: cover;
}

.catalog__list .catalog__item {
  width: 100%;
  height: 207px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-right: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px 30px 20px;
  border-right: none !important;
}

@media (max-width: 1650px) {
  .catalog__list .catalog__item {
    height: 228px;
  }
}

@media all and (max-width: 1180px) {
  .catalog__list .catalog__item {
    padding: 15px 10px 15px;
    height: 258px;
  }
}

.catalog__list .catalog__itemInfo {
  text-align: left;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0 90px 0 30px;
  width: calc(100% - 320px);
}

@media (max-width: 1600px) {
  .catalog__list .catalog__itemInfo {
    padding: 0 20px 0 20px;
    width: calc(100% - 270px);
  }
}

.catalog__list .catalog__item .catalog__name {
  margin: 0;
  height: 21px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: calc(100% - 140px);
  padding: 0;
}

.catalog__list .catalog__item .catalog__itemDescr {
  margin: 10px 0;
  height: 40px;
  overflow: hidden;
}

@media (max-width: 1650px) {
  .catalog__list .catalog__item .catalog__itemDescr {
    width: 400px;
  }
}

.catalog__list .catalog__item .btn {
  padding: 12px;
}

.catalog__list .catalog__image_wrap {
  width: 133px;
}

.catalog__list .catalog__code_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.catalog__list .catalog__code_wrap .title {
  opacity: 0.7;
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.catalog__list .catalog__code_wrap .value {
  margin-left: 5px;
  color: #12212d;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.catalog__list .catalog__article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.catalog__list .catalog__article .title {
  opacity: 0.7;
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.catalog__list .catalog__article .value {
  margin-left: 5px;
  color: #12212d;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.catalog__listRow {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.catalog__list .availability {
  position: static;
}

.catalog__listPrice {
  width: 170px;
  text-align: left;
}

.catalog__listPrice .title {
  color: rgba(18, 33, 45, 0.7);
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.catalog__listPrice .value {
  color: #12212d;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-bottom: 8px;
}

.catalog__listBtn {
  width: 460px;
  margin-top: 15px;
}

.catalog__table .catalog__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 5px 20px;
  height: 144px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  border-right: none !important;
}

@media all and (max-width: 1180px) {
  .catalog__table .catalog__item {
    height: 196px;
  }
}

.catalog__table .catalog__item .availability {
  position: static;
  white-space: nowrap;
}

.catalog__table .catalog__item .catalog__name {
  margin: 0 0 10px 0;
  height: 21px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 15px 0 0;
}

.catalog__table .catalog__item .descr {
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 16px;
  text-transform: unset;
  letter-spacing: 0px;
  color: rgba(18, 33, 45, 0.7);
  margin-top: 5px;
}

.catalog__table .catalog__item .buy {
  width: 45px;
  height: 45px;
  background-image: url(../images/icons/shop.svg);
  background-repeat: no-repeat;
  background-position: center;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: block;
  background-color: #009efa;
  border-radius: 3px;
  -webkit-box-shadow: 0 2px 7px 0 rgba(120, 137, 149, 0.26);
  box-shadow: 0 2px 7px 0 rgba(120, 137, 149, 0.26);
}

.catalog__table .catalog__item .buy:disabled,
.catalog__table .catalog__item .buy:disabled:hover {
  background-color: #ccc;
  box-shadow: none;
  cursor: auto;
}

.catalog__table .catalog__item .catalog__listBtn {
  width: auto;
}

@media (max-width: 1650px) {
  .catalog__table .catalog__item .catalog__listBtn {
    width: 302px;
  }
}

.catalog__table .catalog__image_wrap {
  width: 76px;
  height: 76px;
}

.catalog__table .catalog__image_wrap img {
  max-height: 100%;
}

.catalog__tableRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalog__tableRow .title {
  color: rgba(18, 33, 45, 0.7);
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.catalog__tableRow .title:not(:first-of-type) {
  margin-left: 10px;
}

.catalog__tableRow .title .value {
  margin-left: 5px;
  color: #12212d;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.catalog__tablePrice .catalog__tableRow {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.catalog__tablePrice .catalog__tableRow .title {
  margin-bottom: 3px;
}

.catalog__tablePrice .catalog__tableRow .value {
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.catalog__tableWrap:not(:first-of-type) {
  margin-left: 20px;
}

.catalog__table .catalog__itemInfo {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0 85px 0 20px;
  width: calc(100% - 380px);
}

@media (max-width: 1650px) {
  .catalog__table .catalog__itemInfo {
    padding: 0 10px;
    -webkit-box-flex: unset;
    -ms-flex-positive: unset;
    flex-grow: unset;
  }
}

.service_call_detail h2 {
  margin-bottom: 40px;
  background: lightblue;
  padding: 10px;
}

@media all and (max-width: 575px) {
  .service_call_detail .btn {
    margin: 0 auto;
  }
}

.service_call_detail__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.service_call_detail__message .message {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 5px;
}

.service_call_detail__message .message__content {
  margin: 10px;
}

.service_call_detail__message .message .value {
  font-weight: bold;
}

.service_call_detail__message .message__title {
  background: lightcyan;
}

.service_call_detail__message .message__title .title {
  font-size: 20px;
  padding: 10px 0;
  color: #000;
  font-weight: bold;
}

.service_call_detail__message .message__container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.service_call_detail__message .message__container .message__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.service_call_detail__message .message__container .message__content .title {
  font-size: 18px;
  padding: 10px 20px 10px 0;
  color: #000;
}

.service_call_detail__message .message__container .message__content .message__content_link {
  padding: 0 10px;
}

.service_call_detail__message .message__container .message__content .message__content_link a {
  text-decoration: underline;
  font-weight: bold;
}

.service_call_detail__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #b7bcc0;
  margin-bottom: 30px;
}

.service_call_detail__wrapper .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
}

.service_call_detail__wrapper .form__textarea {
  margin: 20px 0;
}

.service_call_detail__item {
  width: 42%;
  margin-bottom: 37px;
}

@media all and (max-width: 1180px) {
  .service_call_detail__item {
    width: 50%;
  }
}

@media all and (max-width: 575px) {
  .service_call_detail__item {
    width: 100%;
    margin-bottom: 20px;
  }
}

.service_call_detail__item .title {
  color: rgba(18, 33, 45, 0.7);
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-bottom: 7px;
}

.service_call_detail__item .value {
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.service_call_detail__item_link {
  margin: 10px 0;
}

.service_call_detail__item_link a {
  font-weight: bold;
}

.service_call_detail .reconciliation {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 27px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.service_call_detail .reconciliation .checkbox {
  margin-bottom: 20px;
  width: calc(50% - 40px);
}

@media all and (max-width: 1180px) {
  .service_call_detail .reconciliation .checkbox {
    width: calc(50% - 20px);
  }
}

@media all and (max-width: 767px) {
  .service_call_detail .reconciliation .checkbox {
    width: 100%;
  }
}

.service_call_detail .reconciliation .checkbox:nth-of-type(2n + 2) {
  margin-right: 40px;
}

@media all and (max-width: 1180px) {
  .service_call_detail .reconciliation .checkbox:nth-of-type(2n + 2) {
    margin-right: 20px;
  }
}

.service_call_detail .reconciliation input[type='radio'] {
  display: none;
}

.service_call_detail .reconciliation label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  min-height: 25px;
  color: #12212d;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  padding-left: 35px;
  cursor: pointer;
}

.service_call_detail .reconciliation input[type='radio']:checked+label:before {
  border: 7px solid #009efa;
}

.service_call_detail .userMessage {
  margin-top: 20px;
}

.green {
  background: #4da455;
  display: inline;
  padding: 10px;
  color: #fff !important;
}

.red {
  background: #d0021b;
  display: inline;
  padding: 10px;
  color: #fff !important;
}

.buttons {
  display: flex;
}

.buttons__remove,
.buttons__edit {
  margin-left: 15px;
}

.buttons__remove {
  width: 15px;
  height: 15px;
  cursor: pointer;
  display: block;
  background: url('/site/theme/images/icons/remove.svg') no-repeat;
  background-size: cover;
}

.buttons__edit {
  width: 18px;
  height: 18px;
  display: block;
  background: url('/site/theme/images/icons/edit.svg') no-repeat;
  background-size: cover;
  cursor: pointer;
}

.lc_my_profile__wrap {
  display: block;
}

.lc_delivery {
  padding-bottom: 30px;
  width: 100%;
  display: block;
}

.lc_delivery__table td:first-child {
  width: 20%;
}

.lc_delivery__table td:last-child {
  width: 5%;
}

.modal-remove-item__text {
  padding-bottom: 40px;
}

.modal-remove-item__buttons {
  display: flex;
}

.modal-remove-item__button {
  margin: 0 10px;
}

/* Breadcrumbs */

/* .catalog__breadcrumbs .container {
  width: 1140px;
  padding-left: 0;
  padding-right: 0;
} */

/* Page */

.page-grey {
  background-color: #f9f9f9;
  padding: 20px 0 50px;
}

/* Product Labels */

.stiker__wrap .promotion {
  background: #d0021b;
}

.stiker__wrap .new {
  background: #75d67e;
}

.stiker__wrap .special {
  background: #d57b1c;
}

.stiker__wrap .discount {
  background: #000;
}

.stiker__wrap .out_production {
  background: #ccc;
}

/* Product Status */

.itemStatus.available,
.detail__status.available {
  color: #4da455;
}

.itemStatus.expected,
.detail__status.expected {
  color: #712bd4;
}

.itemStatus.unavailable,
.detail__status.unavailable {
  color: #c3bcbd;
}

/* Category sort */

.catalog__sort .select-styled-outer {
  border-width: 0;
}

.catalog__sort .select-styled {
  min-height: auto;
  padding: 5px;
  justify-content: normal;
}

.catalog__sort .select-styled-sign {
  width: auto;
  height: 10px;
}

.catalog__sort .select-styled-sign::after {
  display: none;
}

.catalog__sort .select-styled-sign::before {
  content: '';
  position: absolute;
  right: 0;
  width: 0;
  height: 0;
  border-left: 2.5px solid transparent;
  border-right: 2.5px solid transparent;
  border-top: 4px solid #12212d;
  top: 50%;
  margin-top: -2px;
}

.catalog__sort .select-styled.on .select-styled-sign::before {
  transform: rotate(180deg);
}

.catalog__sort .select-styled-text,
.catalog__sort-title {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #12212d;
}

.catalog__sort-col {
  display: flex;
  align-items: center;
  justify-content: normal;
}

.catalog__sort-col_limit {
  min-width: 140px;
}

.catalog__sort-col_order {
  min-width: 180px;
}

.catalog__sort-col_limit .select-styled__list {
  width: 70px;
}

.catalog__sort-col_order .select-styled__list {
  width: 210px;
}

.catalog__viev_btn svg {
  fill: #0781ef;
  opacity: 0.5;
}

.catalog__viev_btn .catalog-view-input:checked+label svg {
  opacity: 1;
}

.catalog-view-input {
  display: none;
}

.catalog-view-label {
  cursor: pointer;
}

.catalog__viev_btn .catalog-view-label:not(:first-of-type) {
  margin-left: 20px;
}

/* Category list */

.catalog__list .catalog__item,
.catalog__table .catalog__item {
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.catalog__list .catalog__itemInfo,
.catalog__table .catalog__itemInfo {
  padding-right: 30px;
}

.catalog__listPrice {
  width: auto;
}

.catalog__listRow .catalog__code_wrap,
.catalog__listRow .catalog__article {
  width: auto;
}

.catalog__listRow .itemStatus,
.catalog__tableRow .itemStatus {
  padding: 0;
}

.catalog__listRow .catalog__listRow_params {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
}

.catalog__listRow-cart-form {
  display: block;
  width: 100%;
}

@media all and (max-width: 1180px) {
  .catalog__listRow-buttons {
    margin-top: 13px;
  }
}

.catalog__listBtn {
  width: 100%;
}

.catalog__name {
  display: block;
}

.catalog__table .catalog__item .stiker__wrap {
  top: 0;
  left: 0;
}

.catalog__tableRow {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.catalog-empty {
  padding: 40px 0;
}

.catalog-looked-outer .products-slider {
  padding: 0 0 50px 0;
}

.catalog__item_wrap.catalog__grid .catalog__item:nth-of-type(3n + 3),
.catalog__item_wrap.catalog__grid .catalog__item:last-child {
  border-right: none;
}

.catalog-search .catalog__item_wrap.catalog__grid .catalog__item {
  border-right: 1px solid #b7bcc0;
}

.catalog-search .catalog__item_wrap.catalog__grid .catalog__item:nth-of-type(4n + 4),
.catalog-search .catalog__item_wrap.catalog__grid .catalog__item:last-child {
  border-right: none;
}

.empty-list {
  padding: 30px 0;
}

/* Aside */

.aside {
  width: 260px;
}

.catalog-search .aside {
  display: none;
}

@media (max-width: 992px) {
  .aside {
    width: 100%;
  }
}

/*  Filter */

.filter__sidebar {
  width: auto;
}

/* Catalog menu */

.catalogMenu {
  width: auto;
  margin-bottom: 30px;
}

/* Products slider */

.products-slider .slick-arrow {
  background: none;
}

/* Product */

.product .section {
  padding: 0 0 30px 0;
}

.product-slider .detail__slider .item {
  display: block;
}

.product-slider .detail__slider_nav .slick-current {
  opacity: 0.5;
}

.video__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  margin-left: -25px;
}

.video__item {
  width: 328px;
  height: 228px;
  margin: 0 0 25px 25px;
}

.materials__inner {
  padding: 40px 50px 40px;
}

.materials__item {
  padding: 25px 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.materials__item:not(:last-of-type) {
  border-bottom: 1px solid #b7bcc0;
}

.materials__item-title {
  font-weight: 500;
  color: #12212d;
}

.materials__item-button {
  border-radius: 2px;
  text-align: center;
  padding: 10px 20px;
  background: #ccc;
  display: flex;
}

.materials__item-button span {
  display: inline-block;
}

.materials__item-button:before {
  content: '';
  display: inline-block;
  background: url(/site/theme/images/icons/download.svg) no-repeat center center;
  background-size: contain;
  width: 15px;
  height: 15px;
  margin-right: 10px;
}

.materials__item-button:hover {
  text-decoration: none;
  opacity: 0.5;
}

/* Form */

.form .last-name {
  display: none;
}

body input.form__input.error,
body select.form__input.error,
body textarea.form__input.error {
  border: 1px solid rgba(254, 30, 0, 0.5) !important;
  color: #fe1e00 !important;
}

.form__select {
  width: 100%;
  padding: 9px 13px;
  border: 1px solid #b7bcc0;
  color: #12212d;
  background: #fff;
  border-radius: 3px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.form__error-message {
  color: #fe1e00 !important;
}

.form-message-inner {
  padding: 20px;
  color: #fff;
  font-weight: 600;
  border-radius: 3px;
  margin-bottom: 30px;
}

.form-message.error .form-message-inner {
  background: #fe1e00;
}

.form-message.success .form-message-inner {
  background: #77d780;
}

/* About */

.about__content p {
  color: #12212d;
  opacity: 0.6;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 24px;
  text-transform: unset;
  letter-spacing: 0px;
  margin: 10px 0 20px;
}

/* Modal */

.modal {
  display: none;
}

.modal-title {
  color: #80868e;
  font-size: 14px;
  font-weight: bold;
  padding: 0 0 30px 0;
  text-align: center;
}

/* Add cart modal */

.modal-add-cart__img-outer {
  text-align: center;
}

.modal-add-cart__img {
  max-width: 200px;
  display: inline-block;
}

.modal-add-cart__product-title {
  text-align: center;
  padding: 20px 0;
}

/* Add cart */

.product-cart-button {
  border-width: 0;
  width: 150px;
}

/* Order block */

.order-block {
  padding: 30px;
  background: #fff;
  margin-bottom: 20px;
}

.order-block__title {
  color: #12212d;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
  margin-bottom: 20px;
}

.order-block__row {
  margin-bottom: 10px;
  color: rgba(18, 33, 45, 0.7);
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: unset;
  letter-spacing: 0px;
}

.order-block__row-title {
  color: #12212d;
}

.order-button {
  width: 180px;
}

/* Favorites */

.catalog__item_wrap .favorites-item:nth-of-type(4n + 4) .catalog__item,
.catalog__item_wrap .favorites-item:last-child .catalog__item {
  border-right: none !important;
}

.favorites-count,
.compare-count {
  visibility: hidden !important;
}

.favorites-count.active,
.compare-count.active {
  visibility: visible !important;
}

.favorites-item {
  position: relative;
}

.favorites-item .wishList__removeItem,
.compare-item .wishList__removeItem {
  border-width: 0;
  z-index: 2;
  cursor: pointer;
}

.wishList__bottom {
  padding-top: 50px;
}

.favorites-button,
.compare-button {
  cursor: pointer;
}

/* Compare */

.compare-select {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
  margin-bottom: 30px;
}

.compare-select__title {
  font-weight: 600;
  margin-right: 20px;
}

.compare-table-outer {
  overflow: auto;
}

.compare-item .product-cart-button {
  width: 45px;
  height: 45px;
  cursor: pointer;
}

.compare-item__outer {
  width: 200px;
  position: relative;
}

.compare-item__link:hover {
  text-decoration: none;
}

.compare-item__title {
  color: #009efa;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0px;
  margin: 14px 0 10px;
}

.compare-table {
  background: #fff;
  width: auto;
}

.compare-table td {
  padding: 0;
}

.compare-table__row td {
  border-right: 1px solid #b7bcc0;
}

.compare-table__row td:last-child {
  border-width: 0;
}

.compare-table__cont {
  padding: 20px;
}

.compare-table__title-col .compare-table__cont {
  width: 180px;
  font-weight: 600;
}

.compare-table__row {
  border-top: 1px solid #b7bcc0;
}

.compare-table__row:first-child {
  border-width: 0;
}

.compare-table__title {
  font-weight: 600;
}

.compare-table .wishList__removeItem {
  top: 0;
  right: 0;
}

.compare-table .product-params {
  padding-bottom: 10px;
}

/* Login */

.logIn {
  position: fixed;
}

.logIn__form {
  width: 400px;
}

.logIn__left {
  background: url(../images/content/register_foto_2.png);
  background-size: cover;
}

.logIn__form .btn {
  margin: 0 auto;
}

.logIn__form .modal__link a {
  margin: 0 20px;
}

/* Account */

.account-title-outer {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 762px) {
  .account-title-outer {
    display: block;
  }
}

.account-title {
  margin-bottom: 30px;
}

.lc_my_profile__form .form__input.textarea {
  height: 100px;
}

.lc_my_profile__btn .next-button {
  margin-left: 30px;
}

.account-top-fields {
  display: -webkit-box;

  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 25px 0 25px -20px;
}

.account-top-fields__item {
  margin-left: 20px;
}

.account-top-fields__title {
  color: #12212d;
  font-weight: 500;
  margin-bottom: 10px;
}

.link {
  text-decoration: underline;
}

.link:hover {
  text-decoration: none;
}

.account-breadcrumbs {
  display: flex;
}

.account-breadcrumbs__item {
  margin: 0 20px 20px 0;
  display: block;
  opacity: 0.7;
}

.balance-confirm__row {
  padding-bottom: 10px;
}

.balance-confirm__reject-text {
  font-weight: normal;
  margin-top: 10px;
  color: #12212d;
  opacity: 0.7;
}

.informer {
  border-radius: 3px;
  background: #a8a7a7;
}

.informer_top {
  margin-top: 20px;
}

.informer_bottom {
  margin-bottom: 30px;
}

.informer__inner {
  color: #fff;
  padding: 20px 40px 20px 20px;
  position: relative;
}

.informer__title {
  font-weight: bold;
  margin-bottom: 10px;
}

.informer__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: block;
  background: url('/site/theme/images/icons/remove_white.svg') no-repeat;
  background-size: cover;
  position: absolute;
  top: 20px;
  right: 20px;
  border-width: 0;
}

/* Price list */

.price-list-categories-select {
  height: 200px;
}

.price-list-block {
  display: none;
}

.price-list-block.active {
  display: block;
}

.hr {
  border-top: 1px solid #b7bcc0;
  height: 1px;
}

.order_btn {
  background: #39a7a1;
}

.btn.load {
  opacity: 0.3;
}

.grey-section {
  background: #f9f9f9;
}

.content-content p {
  margin-bottom: 20px;
}

/* remove photo check from price list page */

.page-107 #col-photo+label,
.page-107 #col-photo {
  display: none;
}

/* поправив доп.мат на карточках товарів */
.materials__item-title {
  font-weight: 500;
  color: #213f5a;
  padding-right: 35px;
}

/*button-in-cabinet-oon-company_pofile*/
.page-96 .account-payment-profile-default-input {
  width: 100%;
}

.page-96 .radio {
  display: flex;
  justify-content: center;
}

/*welcome-page-desc*/
.page-6548 .slick-slider img {
  width: 100%;
  padding-right: 150px;
}

.page-6548 .order-md-6 {
  margin-left: -100px;
}

/*catalog-view-listing-desc*/
.catalog__itemInfo {
  display: inline-block;
  width: calc(100% - 210px);
}

.catalog__table .catalog__item .catalog__listBtn {
  width: 200px;
}

.catalog__tablePrice {
  display: flex;
  flex-direction: column;
  width: 200px;
}

.catalog__table .catalog__listRow {
  width: 200px;
}

.catalog__table .block_mount {
  width: 100%;
  margin: 10px 0;
}

.catalog__table .catalog__itemInfo {
  width: calc(100% - 180px) !important;
}

.catalog__list .catalog__itemDescr {
  width: 100% !important;
}

.catalog__list .catalog__listBtn {
  justify-content: space-between;
  align-items: stretch;
}

.catalog__item .block_mount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
}

/*catalog-view-listing-desc*/
.catalog__table .catalog__tablePrice {
  display: flex;
}

.catalog__table .itemStatus {
  margin-left: 10px;
}

.catalog__list .block_mount {
  justify-content: flex-start;
}

.catalog__list .favorites-button {
  margin: 0 15px 0 15px;
}

@media (max-width: 767px) {
  .catalog__list .catalog__listRow_params {
    display: inline-block;
  }

  .catalog__table .catalog__itemInfo .catalog__tableRow {
    display: inline-block;
  }

  .catalog__table .catalog__itemInfo {
    padding: 0 35px 0 20px !important;
    width: calc(100% - 180px);
  }
}

@media (min-width: 997px) and (max-width: 1185px) {
  .catalog__table .catalog__itemInfo .catalog__tableRow {
    display: inline-block;
  }

  .catalog__table .catalog__itemInfo {
    padding: 0 35px 0 20px;
    width: calc(100% - 180px);
  }
}

.catalog__table .catalog__itemInfo {
  padding-top: 12px !important;
}

.catalog__table .catalog__tableRow .title {
  margin-left: 10px;
}

.catalog__table .catalog__itemInfo {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0 85px 0 20px;
  width: calc(100% - 180px);
}

/* view of mini-slider on category of catalog */
.page-8 .catalogSlider .slide__left {
  padding-top: 40px;
}

.page-8 .slick-list .slide__right {
  display: flex;
  align-items: center;
}

.page-8 .catalogSlider .slide__descr {
  padding-bottom: 10px;
}

/* push_retention line */
.parent-93 .informer__inner {
  color: #444;
  padding: 20px 40px 20px 20px;
  position: relative;
}

.informer__message {
  color: white;
}

.informer__message a {
  color: #626262;
}

/* contact_page */
.page-13 .btn-grey {
  background: #13a5f7;
}

.page-13 .btn-grey:hover {
  background: #ccc;
}

.page-13 .mt-5 {
  background-image: linear-gradient(247deg, #5f45b6, #7360f2);
}

.page-13 .mt-5:hover {
  background-image: linear-gradient(247deg, #774f99, #61b0f7);
}

/* pravki history headline */
.parent-5838 .newsDetail,
.parent-5838 h1.page-title {
  color: #5f45b6;
}

.parent-5838 h1.page-title {
  color: #5f45b6;
  background-color: #aeacaa;
  padding: 5px;
}

/* pravki by histories-page ids headline */
.page-5843 h1.page-title,
.page-5841 h1.page-title {
  background-color: #cccccc80;
  padding: 5px;
  color: #64007c;
}

.page-5843 .newsDetail__info p {
  color: #ff9090;
}

.page-5841 .newsDetail__info p {
  color: #720404;
}

.page-5843 .newsDetail__info p,
.page-5841 .newsDetail__info p {
  color: #ffff;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 2px;
}

.page-5841 .breadcrumbs__item a,
.page-5841 .breadcrumbs__item span {
  color: #000;
}

.page-5843 .breadcrumbs__item a,
.page-5843 .breadcrumbs__item span,
.page-5844 .breadcrumbs__item a,
.page-5844 .breadcrumbs__item span,
.page-5846 .breadcrumbs__item a,
.page-5846 .breadcrumbs__item span {
  color: #fff;
}

.page-61 h1.page-title {
  color: #333;
}

.page-61 .newsDetail__info p {
  background-color: #7a9f578f;
  padding: 5px;
}

@media (max-width: 767px) {

  /*welcome-page-mob*/
  .page-6548 #registration-slider {
    display: none;
  }

  .page-6548 .logIn,
  .page-91 .logIn {
    padding: 20px;
    width: 100%;
  }

  .page-6548 .order-md-6 {
    margin-left: 0;
  }

  /* поправив табличку на карточках товарів */
  .parent-87 table td {
    padding: 8px 7px;
  }

  /* поправив доп.мат на карточках товарів */
  .materials__item {
    margin-left: -35px;
  }
}

/* прибрав тайтл над спецкатегоріями */
/* .page-8 .catalog__title {
	display: none;
} */
.layoutMain__main>.catalog__wrap {
  padding-top: 30px;
}

.vendor_page .catalog__title {
  display: flex;
}

.vendor_page .catalogSlider {
  display: none;
}

/* точкова правка історії для оформ1 */

.page-5842 .newsDetail__info p {
  display: none;
}

.page-5842 .breadcrumbs__item a {
  color: #ffffff7a;
}

.page-5842 .breadcrumbs__item span {
  color: #ffffff7a;
}

.page-5842 .newsDetail h1 {
  color: #f9f9f9;
  padding-bottom: 10px;
  background: none;
}

.page-5842 .newsDetail__info {
  position: absolute;
  top: -190px;
  left: 0;
}

/* правка анонса для історії */

.page-5838 .newsDetail__info p {
  color: #27587e;
}

.newsDetail h1 {
  color: #27587e;
}

/* правка тайтлів для історій */

.page-5838 .news__item_name {
  background: #ffffffa6;
  padding: 2px 7px;
  color: #333;
}

/* підправив тумбу parent-54 */

.news__item_name {
  line-height: 1.34;
  margin-right: 25px;
}

/* підправив тумбу новин */

.news__item_name {
  line-height: 1.34;
  margin-right: 25px;
}

/* headline title color for cat parent-10 */

.parent-10 .newsDetail h1 {
  color: #011738;
}

/* підправляв кнопку повторити */

.main__news .main__news_item .title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 1.14;
  color: #f9f9f9;
}

/* підправляв кнопку повторити */
.lc_my_order__detail_row {
  justify-content: space-between;
}

/* pidpravuv ikonku zamovlen */
.download__link {
  border-radius: none;
}

.download__link.receipt {
  background-image: url(/site/theme/images/order-info.svg);
}

.download__link.invoice {
  background-image: url(/site/theme/images/order-invoice.svg);
}

.download__link.sale {
  background-image: url(/site/theme/images/order-sale.svg);
}

/* edited style of slider*/

.main__slider .slide__title {
  line-height: 1.1;
  font-size: 28px;
}

/* pidpravuv logo rozpolojenyia */

.header .logo {
  height: 50px;
  padding: 3px 0;
}

/* popravulu kontaktu 1 */

.contact__bottom {
  display: none;
}

/* vendors logo list */

.partner__item:not(:nth-of-type(6n + 6)) {
  border-right: 1px solid #b7bcc0;
  border-left: 1px solid #b7bcc0;
}

.description__inner table td {
  /*  padding: 14px 15px; */
  border: 1px solid #ccc;
}

.catalogSlider .slide__title {
  margin: 20px 0 10px;
}

/* slider views update */

.main__slider .slide__title {
  margin: 30px 20px 10px 0;
}

.main__slider .slide__price {
  margin-top: 38px;
}

.main__slider .slick-dots {
  bottom: 20px;
}

/* perekrasulu logo v partnerah */
.partners__slider img {
  transition: 0.6s;
  filter: grayscale(100%);
}

@media (min-width: 767px) {
  /* pidpravuv slider levo-napravo*/

  .slick-list .slick-slide:nth-child(odd) .slide__title {
    color: #b7117c;
  }

  .slick-list .slick-slide:nth-child(odd) .item__inner {
    flex-direction: row-reverse;
  }

  .slick-list .slick-slide:nth-child(odd) .slide__right {
    margin: 29px 42px 0 0;
  }

  .page-8 .slick-list .slick-slide:nth-child(odd) .slide__right {
    margin: 20px 50px 30px -20px;
    display: flex;
    align-items: center;
  }

  .slick-list .slick-slide:nth-child(odd) .slide__left {
    padding: 70px 50px 0 15px;
  }

  .page-8 .slick-list .slick-slide:nth-child(odd) .slide__left {
    padding: 40px 50px 0 35px;
  }

  .page-18 .catalogSlider .slide__left {
    padding-top: 30px;
  }

  .page-18 .catalogSlider .slide__right {
    margin-top: 10px;
  }

  .page-18 .slick-list .slick-slide:nth-child(odd) .slide__left {
    padding: 40px 15px 0 55px;
  }
}

@media (max-width: 765px) {

  /* skruv arhiv v mobile */
  .main__news .tab_btns p:last-child {
    display: none;
  }

  /* popravulu kontaktu 3 */

  .contact__bottom {
    display: block;
  }

  .contact__bottom .contact__info {
    display: none;
  }

  /* pidpravuv katalog kontrolers */

  .catalog__view .title {
    white-space: nowrap;
  }
}

/* поправив сторінку дякую */
.order__wrap {
  justify-content: space-between;
}

@media (min-width: 575px) {
  .lc_my_order__detail_col:last-child .btn {
    width: 100%;
    white-space: nowrap;
  }

  .lc_my_order__detail_col {
    width: 30%;
    margin-bottom: 30px;
  }

  .lc_my_order__detail_row td span {
    white-space: nowrap;
  }

  .page-105 .lc_my_order__detail_row+.lc_my_order__detail_row {
    display: flex;
    justify-content: flex-start;
  }

  .page-105 .lc_my_order__detail_row+.lc_my_order__detail_row .lc_my_order__detail_col:last-child {
    width: 57%;
  }
}

.lc_my_order__detail_col:last-child {
  width: 37%;
}

/* поправив баскет для не авторизованих */
.page-31 .basket__btn a {
  margin-left: 5px;
}

@media (max-width: 575px) {

  /* fix titles on mobile in news */
  .news__header {
    justify-content: space-between;
  }

  .news__header p {
    margin: 0;
    margin-bottom: 15px;
  }

  /* end_fix titles on mobile in news */

  .page-104 .account-top-fields {
    flex-direction: column;
  }

  /* contact_page */
  .page-13 .contact__info .page-title {
    display: block;
  }

  /* прикрив не потрібні сабкатегорії в каталозі на мобайл */
  .page-8 .catalogCategoryItem:nth-of-type(1),
  .page-8 .catalogCategoryItem:nth-of-type(3),
  .page-8 .catalogCategoryItem:nth-of-type(4) {
    display: none;
  }

  /* поправив доп.мат на карточках товарів */
  .materials__item {
    margin-left: -35px;
  }

  .materials__item-button {
    margin-left: -10px;
  }

  /* popravulu kontaktu 2 */

  .contact__bottom .contact__info {
    display: block;
    width: 100%;
  }

  .contact__bottom .contact__info .title {
    display: none;
  }

  .contact__bottom .contact__info .contact__social {
    display: none;
  }

  /* sdvunuv headset na spivpracya */

  .cooperation__news img {
    position: absolute;
    margin-top: -20px;
    margin-right: -110px;
  }

  .cooperation__info .title2 {
    display: none;
  }

  .cooperation__info .item2,
  .cooperation__info .item3 {
    display: none;
  }
}

/* popravuv vendor page logos */
.page-9 .partner__item:nth-of-type(5n + 5) {
  border-right: none !important;
}

/* move link_text right for not_log */
.not_loged .notstart {
  margin-left: 10px;
  color: #1587ed;
}

/* fix stretch colums of kabinet */
.parent-93 .layoutMain__main .lc__wrap>.container,
.page-103 .layoutMain__main .lc__wrap>.container,
.parent-104 .layoutMain__main .lc__wrap>.container {
  align-items: stretch;
}

/*start_fix blue but in add_adress in kabinet */
.page-102 .lc_my_profile .btn {
  margin: 0;
  width: 37%;
}

.page-102 .lc_delivery__tableWrap>div {
  justify-content: flex-start !important;
  margin: 25px 0 45px;
}

.page-102 .lc_delivery__tableWrap>.lc_delivery__table {
  margin-bottom: 35px;
}

/*end_fix blue but in add_adress in kabinet */

/*start_fix view kontrollers in pri_gen page of kabinet */
.vendor_page .catalogMenu .title {
  background: #e9e9e9 url('/site/theme/images/icons/clipboards.svg') no-repeat 90% 50%;
}

/*start_fix view kontrollers in pri_gen page of kabinet */
.page-107 .form__input+a {
  background: #ccc url('/site/theme/images/icons/search.svg') no-repeat center;
  padding: 0 40px;
  width: 17%;
}

.page-107 .form__input+a:hover {
  text-decoration: none;
  -webkit-box-shadow: 0 2px 7px 0 rgba(120, 137, 149, 0.26);
  box-shadow: 0 2px 7px 0 rgba(120, 137, 149, 0.26);
  background-color: #c6e4ff;
}

.page-107 .form__input+a>img {
  display: none;
}

.page-107 .price-list-categories-select {
  height: 230px;
}

.page-107 .price-list-block {
  width: 100% !important;
}

.page-107 .lc_price_list__item .checkbox {
  margin-bottom: 17px;
  width: 20%;
}

/*end_fix view kontrollers in pri_gen page of kabinet */

/*fix banner view on vendore_pages */
@media (max-width: 575px) {
  .vendor_page .cooperation__news {
    display: none;
  }
}

.vendor_page .main__catalog_section img {
  /* display: none; */
}

/*fix view kontrollers in pri_gen page of kabinet */
.page-96 .lc_my_profile__item {
  margin-bottom: 17px;
  width: 100%;
}

/*fix cart_page kontrollers in page of catalog */
.parent-87 .product {
  background-color: #f9f9f9;
}

.parent-87 .detail__top {
  margin-bottom: 30px;
}

.parent-87 .catalog-looked-outer {
  padding-top: 30px;
}

.body-outer {
  position: relative;
  min-height: 100vh;
  padding-bottom: 107px;
}

@media (max-width: 780px) {
  .body-outer {
    padding-bottom: 360px;
  }
}

/*20240409*/