

/* Start:/local/templates/rcshop/css/choices.css?17168103428000*/
/* ===============================
=            Choices            =
=============================== */
.choices {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 16px;
}
.choices:focus {
  outline: none;
}
.choices:last-child {
  margin-bottom: 0;
}
.choices.is-open {
  overflow: initial;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
          user-select: none;
}
.choices.is-disabled .choices__item {
  cursor: not-allowed;
}
.choices [hidden] {
  display: none !important;
}

.choices[data-type*=select-one] {
  cursor: pointer;
}
.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 7.5px;
}
.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  margin: 0;
}
.choices[data-type*=select-one] .choices__button {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.25;
}
.choices[data-type*=select-one] .choices__button:hover, .choices[data-type*=select-one] .choices__button:focus {
  opacity: 1;
}
.choices[data-type*=select-one] .choices__button:focus {
  box-shadow: 0 0 0 2px #00bcd4;
}
.choices[data-type*=select-one] .choices__item[data-value=""] .choices__button {
  display: none;
}
.choices[data-type*=select-one]::after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}
.choices[data-type*=select-one].is-open::after {
  border-color: transparent transparent #333 transparent;
  margin-top: -7.5px;
}
.choices[data-type*=select-one][dir=rtl]::after {
  left: 11.5px;
  right: auto;
}
.choices[data-type*=select-one][dir=rtl] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
  cursor: text;
}
.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0;
}
.choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #ddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}
.is-focused .choices__inner, .is-open .choices__inner {
  border-color: #b7b7b7;
}
.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}
.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}
[dir=rtl] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}
.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}
.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00bcd4;
  border: 1px solid #00a5bb;
  color: #fff;
  word-break: break-all;
  box-sizing: border-box;
}
.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}
[dir=rtl] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}
.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1;
}
.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaaaaa;
  border: 1px solid #919191;
}

.choices__list--dropdown {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
  will-change: visibility;
}
.choices__list--dropdown.is-active {
  visibility: visible;
}
.is-open .choices__list--dropdown {
  border-color: #b7b7b7;
}
.is-flipped .choices__list--dropdown {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}
.choices__list--dropdown .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}
.choices__list--dropdown .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}
[dir=rtl] .choices__list--dropdown .choices__item {
  text-align: right;
}
@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable::after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable::after {
    right: auto;
    left: 10px;
  }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted::after {
  opacity: 0.5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
          user-select: none;
  opacity: 0.5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
          appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}
.choices__input:focus {
  outline: 0;
}
[dir=rtl] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: 0.5;
}

/* =====  End of Choices  ====== */

/* End */


/* Start:/local/templates/rcshop/css/main.css?1731931249458310*/
@charset "UTF-8";

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

@font-face {
  font-family: "ubuntu";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: local("ubuntu"), url("/local/templates/rcshop/css/../fonts/ubuntu/ubuntu.woff2") format("woff2");
  src: local("ubuntu"), url("/local/templates/rcshop/css/../fonts/ubuntu/ubuntu.woff") format("woff");
}

@font-face {
  font-family: "ubuntu";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: local("ubuntu"), url("/local/templates/rcshop/css/../fonts/ubuntu/ubuntu-bold.woff2") format("woff2");
  src: local("ubuntu"), url("/local/templates/rcshop/css/../fonts/ubuntu/ubuntu-bold.woff") format("woff");
}

@font-face {
  font-family: "ubuntu";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: local("ubuntu"),
    url("/local/templates/rcshop/css/../fonts/ubuntu/ubuntu-light.woff2") format("woff2");
  src: local("ubuntu"), url("/local/templates/rcshop/css/../fonts/ubuntu/ubuntu-light.woff") format("woff");
}

@font-face {
  font-family: "ALSRubl";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: local("ALSRubl"), url("/local/templates/rcshop/css/../fonts/ALSRubl/ALSRubl.woff") format("woff"),
    url("/local/templates/rcshop/css/../fonts/ALSRubl/ALSRubl.svg#ALSRubl") format("svg");
}

.rub {
  font-family: "ALSRubl";
}

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

.centered {
  display: table;
  width: 100%;
  height: 100%;
}

.centered > * {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

body {
  min-width: 360px;
  height: 100%;
  margin: 0 auto;
  font-family: "ubuntu", Verdana, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: #404041;
  background: #ffffff;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

body.overflow-hidden {
  height: 100%;
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: "ubuntu", Verdana, sans-serif;
  color: #404041;
}

h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
}

h2 {
  padding: 0;
  padding-top: 25px;
  padding-bottom: 30px;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
}

h2 a {
  color: #ff7300;
}

h2 a:hover {
  text-decoration: underline;
}
@media (max-width: 1023px) {
  h2 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
}

h3 a {
  color: #ff7300;
}

h3 a:hover {
  text-decoration: underline;
}

h4 {
  padding: 0 0 30px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

@media (max-width: 767px) {
  h4 {
    padding-bottom: 16px;
  }
}

h5 {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

h6 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #717171;
}

p {
  margin: 0;
  padding: 0;
  padding-bottom: 22px;
}

p:last-child {
  padding-bottom: 0;
}

p a:hover {
  text-decoration: underline;
}

hr {
  height: 1px;
  margin: 32px 0;
  border: 0;
  overflow: hidden;
  background: #e9e9e9;
}

q,
blockquote {
  display: block;
  font-style: italic;
  text-align: center;
}

strong,
b {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: #ff7300;
	transition:
		color 0.3s ease,
		opacity 0.3s ease;
}

a.button {
  text-decoration: none;
}

a.button:hover {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #ff7300;
}

[class*="icon-"] {
  display: inline-block;
  vertical-align: middle;
}

img[style*="float: left"],
img[style*="float:left"],
img[align="left"] {
  margin: 0 20px 5px 0;
}

img[style*="float: right"],
img[style*="float:right"],
img[align="right"] {
  margin: 0 0 5px 20px;
}

html.fancybox-enabled {
  overflow: visible;
}

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

.container:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1023px) {
  .container {
    padding-right: 22px;
    padding-left: 22px;
  }
}
@media (max-width: 767px) {
  .container {
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media (max-width: 1023px) {
  .wrapper {
    padding-top: 58px;
  }
}

.static-content .content__main ul li,
.default-list li {
  position: relative;
  padding-left: 10px;
}

.static-content .content__main ul li:before,
.default-list li:before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  background: pink;
}

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

dl {
  margin: 0;
  padding: 0;
}

dl dt,
dl dd {
  margin: 0;
  padding: 0;
}

.marker-list {
  padding-bottom: 33px;
}

.marker-list__item {
  position: relative;
  display: block;
  padding: 0 0 8px 17px;
  font: 400 15px/22px "ubuntu";
  color: #717171;
}

.marker-list__item:before {
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: #ff7300;
}

.marker-list__item:last-child {
  padding-bottom: 0;
}

.marker-list--lg {
  padding-bottom: 19px;
}

.marker-list--lg .marker-list__item {
  padding: 0 0 11px 25px;
  font-size: 17px;
  color: #404041;
}

.marker-list--lg .marker-list__item:last-child {
  padding-bottom: 0;
}

.marker-list a:hover {
  text-decoration: underline;
}

ol {
  margin: 0;
  padding: 0;
  padding-bottom: 22px;
  list-style-type: decimal;
  list-style-position: inside;
  counter-reset: item;
}

ol:last-child {
  padding-bottom: 0;
}

ol li {
  position: relative;
  display: block;
}

ol li:before {
  display: inline;
  font-weight: 700;
  content: counters(item, ".") ". ";
  counter-increment: item;
  vertical-align: top;
}

.upper {
  text-transform: uppercase;
}

* {
  outline: none;
}

.title-17 {
  padding: 0 0 15px 0;
  font-size: 17px;
}

.link-red {
  color: #e66563;
}

.align-right {
  text-align: right;
}

.title_15 {
  padding: 0 0 9px 0;
  font-size: 15px;
}

.title-16 {
  padding-bottom: 19px;
  font-size: 16px;
}

.link-iconed [class*="icon-"] {
  margin-right: 5px;
}

.link-iconed:hover {
  text-decoration: underline;
}

.title-18 {
  padding: 0 0 22px 0;
  font-size: 18px;
}

@media (max-width: 767px) {
  .title-18 span {
    display: block;
  }
}

.label {
  display: block;
  font: 400 15px "ubuntu";
  color: #717171;
}

.row {
  padding: 0 0 30px 0;
}

.link-dashed {
  border-bottom: 1px dashed #0075b9;
}

.link-dashed:hover {
  border-color: transparent;
}

.number-list__item {
  display: block;
  padding-bottom: 18px;
  font: 700 15px "ubuntu";
  color: #404041;
}

.number-list__item:last-child {
  padding-bottom: 0;
}

.number-list ul {
  padding-left: 18px;
}

.number-list ul li {
  display: block;
  padding: 11px 0;
  font: 400 15px/22px "ubuntu";
  color: #717171;
}

.number-list ul li:before {
  display: none;
}

.align-left {
  text-align: left;
}

.no-top-indent {
  padding-top: 0;
}

@media (min-width: 1001px) {
  .hide-on-lg {
    display: none !important;
  }
}
@media (min-width: 767px) {
  .hide-on-md-and-up {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .hide-on-md {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hide-on-sm {
    display: none !important;
  }
}

.decoration-link:hover {
  text-decoration: underline;
}

/* Ion.RangeSlider, Simple Skin css version 2.0.3
// © Denis Ineshin, 2014    <a href="https://github.com/IonDen">https://github.com/IonDen</a>
// © guybowden, 2014        <a href="https://github.com/guybowden">https://github.com/guybowden</a>
// Skin details */

.irs {
  position: relative;
  display: block;
  height: 55px;
  user-select: none;
}

.irs-with-grid {
  height: 75px;
}

.irs-line {
  position: relative;
  top: 33px;
  display: block;
  height: 10px;
  border: 1px solid #cccccc;
  border-radius: 16px;
  background-color: #eeeeee;
  background-image: linear-gradient(to bottom, #dddddd -50%, #ffffff 150%);
  overflow: hidden;
  outline: none !important;
}

.irs-line-left,
.irs-line-mid,
.irs-line-right {
  position: absolute;
  top: 0;
  display: block;
}

.irs-line-left {
  left: 0;
  width: 11%;
  height: 8px;
}

.irs-line-mid {
  left: 9%;
  width: 82%;
  height: 8px;
}

.irs-line-right {
  right: 0;
  width: 11%;
  height: 8px;
}

.irs-bar {
  position: absolute;
  top: 33px;
  left: 0;
  display: block;
  width: 0;
  height: 10px;
  border-top: 1px solid #428bca;
  border-bottom: 1px solid #428bca;
  background-color: #428bca;
  background-image: linear-gradient(to top, #428bca 0%, #7fc3e8 100%);
}

.irs-bar-edge {
  position: absolute;
  top: 33px;
  left: 0;
  display: block;
  width: 14px;
  height: 10px;
  border: 1px solid #428bca;
  border-right: 0;
  border-radius: 16px 0 0 16px;
  background-color: #428bca;
  background-image: linear-gradient(to top, #428bca 0%, #7fc3e8 100%);
}

.irs-shadow {
  position: absolute;
  top: 38px;
  left: 0;
  display: none;
  width: 0;
  height: 2px;
  border-radius: 5px;
  opacity: 0.3;
  background: #000000;
}

.lt-ie9 .irs-shadow {
  filter: alpha(opacity=30);
}

.irs-slider {
  position: absolute;
  top: 25px;
  z-index: 1;
  display: block;
  width: 27px;
  height: 27px;
  border: 1px solid #aaaaaa;
  border-radius: 27px;
  background-color: #dddddd;
  background-image: linear-gradient(
    to bottom,
    white 0%,
    gainsboro 20%,
    white 100%
  );
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.irs-slider.type_last {
  z-index: 2;
}

.irs-slider.state_hover,
.irs-slider:hover {
  background: #ffffff;
}

.irs-min,
.irs-max {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 14px;
  line-height: 1.333;
  color: #333333;
  cursor: default;
  text-shadow: none;
  background: rgba(0, 0, 0, 0.1);
}

.lt-ie9 .irs-min,
.lt-ie9 .irs-max {
  background: #cccccc;
}

.irs-from,
.irs-to,
.irs-single {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 14px;
  line-height: 1.333;
  color: #ffffff;
  cursor: default;
  white-space: nowrap;
  text-shadow: none;
  background: #428bca;
}

.lt-ie9 .irs-from,
.lt-ie9 .irs-to,
.lt-ie9 .irs-single {
  background: #999999;
}

.irs-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 27px;
}

.irs-with-grid .irs-grid {
  display: block;
}

.irs-grid-pol {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  opacity: 0.5;
  background: #428bca;
}

.irs-grid-pol.small {
  height: 4px;
  background: #999999;
}

.irs-grid-text {
  position: absolute;
  bottom: 5px;
  left: 0;
  padding: 0 3px;
  font-size: 9px;
  line-height: 9px;
  text-align: center;
  color: #99a4ac;
  white-space: nowrap;
}

.irs-disable-mask {
  position: absolute;
  top: 0;
  left: -1%;
  z-index: 2;
  display: block;
  width: 102%;
  height: 100%;
  cursor: default;
  background: transparent;
}

.lt-ie9 .irs-disable-mask {
  background: #000000;
  filter: alpha(opacity=0);
  cursor: not-allowed;
}

.irs-disabled {
  opacity: 0.4;
}

.irs-hidden-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  z-index: -9999 !important;
  display: block !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: hidden;
  outline: none !important;
  background: none !important;
  border-style: solid !important;
  border-color: transparent !important;
}

/*! jQuery UI - v1.12.1 - 2017-04-06
* <a href="http://jqueryui.com">http://jqueryui.com</a>
* Includes: core.css, datepicker.css, theme.css
* Copyright jQuery Foundation and other contributors; Licensed MIT */

.ui-helper-hidden {
  display: none;
}

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

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

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

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

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

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

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

.ui-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-top: -0.25em;
  background-repeat: no-repeat;
  vertical-align: middle;
  text-indent: -99999px;
  overflow: hidden;
}

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

.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background: #aaaaaa;
  filter: alpha(opacity=30);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-datepicker th {
  padding: 0.7em 0.3em;
  border: 0;
  font-weight: 700;
  text-align: center;
}

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

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

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

.ui-datepicker .ui-datepicker-buttonpane button {
  width: auto;
  margin: 0.5em 0.2em 0.4em;
  padding: 0.2em 0.6em 0.3em 0.6em;
  float: right;
  cursor: pointer;
  overflow: visible;
}

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

.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

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

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

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

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

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

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

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

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

.ui-datepicker-rtl {
  direction: rtl;
}

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

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

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

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

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

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

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

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

.ui-datepicker .ui-icon {
  top: 0.3em;
  left: 0.5em;
  display: block;
  background-repeat: no-repeat;
  text-indent: -99999px;
  overflow: hidden;
}

.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

.ui-widget-content {
  border: 1px solid #dddddd;
  color: #333333;
  background: #ffffff;
}

.ui-widget-content a {
  color: #333333;
}

.ui-widget-header {
  border: 1px solid #dddddd;
  font-weight: 700;
  color: #333333;
  background: #e9e9e9;
}

.ui-widget-header a {
  color: #333333;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  font-weight: 400;
  color: #454545;
  background: #f6f6f6;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  text-decoration: none;
  color: #454545;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  font-weight: 400;
  color: #2b2b2b;
  background: #ededed;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  text-decoration: none;
  color: #2b2b2b;
}

.ui-visual-focus {
  -webkit-box-shadow: 0 0 3px 1px #5e9ed6;
  box-shadow: 0 0 3px 1px #5e9ed6;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  font-weight: 400;
  color: #ffffff;
  background: #007fff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  text-decoration: none;
  color: #ffffff;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  color: #777620;
  background: #fffa90;
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  color: #5f3f3f;
  background: #fddfdf;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: 700;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  font-weight: 400;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  background-image: none;
  opacity: 0.35;
  filter: alpha(opacity=35);
}

.ui-state-disabled .ui-icon {
  filter: alpha(opacity=35);
}

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("/local/templates/rcshop/css/images/ui-icons_444444_256x240.png");
}

.ui-widget-header .ui-icon {
  background-image: url("/local/templates/rcshop/css/images/ui-icons_444444_256x240.png");
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("/local/templates/rcshop/css/images/ui-icons_555555_256x240.png");
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("/local/templates/rcshop/css/images/ui-icons_ffffff_256x240.png");
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("/local/templates/rcshop/css/images/ui-icons_777620_256x240.png");
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("/local/templates/rcshop/css/images/ui-icons_cc0000_256x240.png");
}

.ui-button .ui-icon {
  background-image: url("/local/templates/rcshop/css/images/ui-icons_777777_256x240.png");
}

.ui-icon-blank {
  background-position: 16px 16px;
}

.ui-icon-caret-1-n {
  background-position: 0 0;
}

.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

.ui-icon-caret-1-e {
  background-position: -32px 0;
}

.ui-icon-caret-1-se {
  background-position: -48px 0;
}

.ui-icon-caret-1-s {
  background-position: -65px 0;
}

.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

.ui-icon-caret-1-w {
  background-position: -96px 0;
}

.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}

.ui-widget-shadow {
  -webkit-box-shadow: 0 0 5px #666666;
  box-shadow: 0 0 5px #666666;
}

/* CSS Styles that are needed by jScrollPane for it to operate correctly.
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them. */

.jspContainer {
  position: relative;
  overflow: hidden;
}

.jspPane {
  position: absolute;
}

.jspVerticalBar {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 100%;
  background-color: #dcdcdc;
}

.jspHorizontalBar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background: #ff0000;
}

.jspCap {
  display: none;
}

.jspHorizontalBar .jspCap {
  float: left;
}

.jspTrack {
  position: relative;
  background: none;
}

.jspDrag {
  position: relative;
  top: 0;
  left: 6px;
  width: 22px;
  background: #ffffff;
  cursor: pointer;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
  height: 100%;
  float: left;
}

.jspArrow {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  background: none;
  text-indent: -20000px;
  cursor: pointer;
}

.jspArrow.jspDisabled {
  cursor: default;
  background: none;
}

.jspVerticalBar .jspArrow {
  width: 34px;
  height: 39px;
}

.jspHorizontalBar .jspArrow {
  width: 16px;
  height: 100%;
  float: left;
}

.jspVerticalBar .jspArrow:focus {
  outline: none;
}

.jspCorner {
  height: 100%;
  background: #eeeef4;
  float: left;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */

* html .jspCorner {
  margin: 0 -3px 0 0;
}

/* Selectric v1.11.1 */

.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  position: relative;
  border: none;
  border-radius: 3px;
  background: #f7f7f7;
  overflow: hidden;
}

.selectric .label {
  display: block;
  height: 44px;
  margin: 0 35px 0 20px;
  padding: 8px 0;
  font-size: 16px;
  line-height: 24px;
  color: #717171;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: none;
}

.selectric .button {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 38px;
  height: 44px;
  font-size: 0;
  line-height: 0;
  text-align: center;
  color: #bbbbbb;
  background-repeat: no-repeat;
  background-position: center;
  background-color: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTBweCIgaGVpZ2h0PSI3cHgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDkuMDQgNS4wMSI+PGRlZnM+PHN0eWxlPi5jbHMtMXtpc29sYXRpb246aXNvbGF0ZTt9LmNscy0ye2ZpbGwtcnVsZTpldmVub2RkO308L3N0eWxlPjwvZGVmcz48dGl0bGU+Y2FyZXQ8L3RpdGxlPjxnIGlkPSJTaGFwZV8zIiBkYXRhLW5hbWU9IlNoYXBlIDMiIGNsYXNzPSJjbHMtMSI+PGcgaWQ9IlNoYXBlXzMtMiIgZGF0YS1uYW1lPSJTaGFwZSAzIj48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iNy44NiAwIDQuNTIgMi41MyAxLjE4IDAgMCAxLjU5IDQuNTIgNS4wMSA5LjA0IDEuNTkgNy44NiAwIiBzdHlsZT0iZmlsbDogI2ZmNzQwMSIvPjwvZz48L2c+PC9zdmc+");
}

.selectric .button:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  width: 0;
  height: 0;
  margin: auto;
  border: 4px solid transparent;
  border-bottom: none;
  content: " ";
  border-top-color: #bbbbbb;
}

.selectric-focus .selectric {
  border-color: #aaaaaa;
}

.selectric-hover .selectric {
  border-color: #c4c4c4;
}

.selectric-hover .selectric .button {
  color: #a2a2a2;
}

.selectric-hover .selectric .button:after {
  border-top-color: #a2a2a2;
}

.selectric-open {
  z-index: 9999;
}

.selectric-open .selectric {
  border-radius: 3px 3px 0 0;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-color: #c4c4c4;
}

.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  opacity: 0.5;
  filter: alpha(opacity=50);
  cursor: default;
  user-select: none;
}

.selectric-hide-select {
  position: relative;
  width: 0;
  height: 0;
  overflow: hidden;
}

.selectric-hide-select select {
  position: absolute;
  left: -100%;
}

.selectric-hide-select.selectric-is-native {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  *font: 0/0 a !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  outline: none !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  display: block !important;
  visibility: hidden !important;
}

/* Items box */

.selectric-items {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  display: none;
  border: none;
  border-radius: 0 0 3px 3px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  background: #f7f7f7;
  overflow: hidden;
}

.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}

.selectric-items ul,
.selectric-items li {
  min-height: 20px;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 20px;
  list-style: none;
}

.selectric-items li {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  cursor: pointer;
}

.selectric-items li.selected {
  color: #444444;
  background: #e0e0e0;
}

.selectric-items li.highlighted {
  color: #444444;
  background: #d0d0d0;
}

.selectric-items li:hover {
  color: #444444;
  background: #d5d5d5;
}

.selectric-items .disabled {
  color: #666666 !important;
  opacity: 0.5;
  filter: alpha(opacity=50);
  cursor: default !important;
  background: none !important;
  user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
  padding-left: 10px;
  font-weight: 700;
  color: #444444;
  cursor: default;
  user-select: none;
  background: none;
}

.selectric-items .selectric-group.disabled li {
  opacity: 1;
  filter: alpha(opacity=100);
}

.selectric-items .selectric-group li {
  padding-left: 25px;
}

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

.slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.slick-slide img {
  display: block;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
}

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

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  min-height: 1px;
  float: left;
  user-select: text;
}

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

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

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

.slick-dots {
  position: absolute;
  top: auto;
  right: 68px;
  bottom: 62px;
  left: auto;
  display: table;
  width: auto;
  font-size: 0;
  line-height: 0;
  text-align: center;
}

.slick-dots li {
  display: inline-block;
  margin: 0 11px;
  vertical-align: middle;
}

.slick-dots li.slick-active button {
  background-color: #006db1;
  background-image: linear-gradient(to bottom, #006db1 0%, #004c8d 100%);
  opacity: 1;
  border-color: #f5f5f5;
}

.slick-dots button {
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 3px solid transparent;
  border-radius: 50%;
  color: transparent;
  background-color: #ffffff;
  opacity: 1;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  outline: none;
}

.icon-libra {
  width: 16px;
  height: 13px;
}

.icon-libra-md {
  width: 22px;
  height: 18px;
}

.icon-star {
  width: 15px;
  height: 13px;
}

.icon-star-md {
  width: 18px;
  height: 18px;
}

.icon-shop-cart {
  width: 23px;
  height: 25px;
}

.icon-logo {
  width: 299px;
  height: 89px;
}

@media (max-width: 1280px) {
  .icon-logo {
    width: 235px;
    height: 68px;
  }
}

.icon-list {
  width: 32px;
  height: 20px;
}

.icon-logo-icon {
  width: 34px;
  height: 25px;
}

.icon-logo-sm {
  width: 135px;
  height: auto;
}
@media (max-width: 430px) {
  .icon-logo-sm {
    width: 100%;
  }
}

.icon-oil {
  width: 12px;
  height: 12px;
}

.icon-battery {
  width: 14px;
  height: 8px;
}

.icon-pennant {
  width: 10px;
  height: 12px;
}

.icon-caret-lg {
  width: 18px;
  height: 8px;
}

.icon-dialog-baloon {
  width: 17px;
  height: 15px;
}

.icon-medal {
  width: 18px;
  height: 24px;
}

.icon-zoom {
  width: 22px;
  height: 22px;
}

.icon-cart {
  width: 19px;
  height: 16px;
}

.icon-star-circle {
  width: 26px;
  height: 26px;
}

.icon-ok-circle {
  width: 26px;
  height: 26px;
}

.icon-ok-circle-md {
  width: 29px;
  height: 29px;
}

.icon-arrow-slider-left {
  width: 14px;
  height: 47px;
}

.icon-arrow-slider-right {
  width: 14px;
  height: 47px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-check-green {
  width: 15px;
  height: 12px;
}

.icon-check-sm {
  width: 11px;
  height: 8px;
}

.icon-cross-red {
  width: 12px;
  height: 12px;
}

.icon-cross {
  width: 11px;
  height: 11px;
}

.icon-cross-sm {
  width: 9px;
  height: 9px;
}

.icon-rating-arrow-up {
  width: 20px;
  height: 25px;
}

.icon-rating-arrow-down {
  width: 20px;
  height: 25px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-doc {
  width: 38px;
  height: 49px;
}

.icon-ok {
  width: 14px;
  height: 20px;
}

.icon-arrow-circle-blue {
  width: 20px;
  height: 20px;
  fill: #ff7300;
}

.icon-info {
  width: 26px;
  height: 26px;
}

.icon-play-video {
  width: 45px;
  height: 45px;
}

.icon-diagram {
  width: 14px;
  height: 14px;
}

.icon-share {
  width: 26px;
  height: 26px;
}

.icon-heart {
  width: 21px;
  height: 24px;
}

.icon-catalog {
  width: 69px;
  height: 49px;
}

.icon-caret {
  width: 9px;
  height: 5px;
}

.icon-vtb {
  width: 143px;
  height: 39px;
}

.icon-phone-round {
  width: 19px;
  height: 19px;
}

.icon-mail {
  width: 16px;
  height: 13px;
}

.icon-guarantee-01 {
  width: 41px;
  height: 48px;
}

.icon-guarantee-02 {
  width: 50px;
  height: 45px;
}

.icon-guarantee-03 {
  width: 56px;
  height: 38px;
}

.icon-guarantee-02-lg {
  width: 52px;
  height: 48px;
}

@media (max-width: 1280px) {
  .icon-guarantee-02-lg {
    width: 64px;
    height: 59px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .icon-guarantee-02-lg {
    width: 64px;
    height: 59px;
  }
}

.icon-filter {
  width: 25px;
  height: 23px;
}

.icon-view-filter {
  width: 19px;
  height: 19px;
}

.icon-view-burger {
  width: 19px;
  height: 18px;
}

.ymap-place-ico {
  width: 13px;
  height: 18px;
}

.ymap-phone-ico {
  width: 16px;
  height: 16px;
}

.ymap-info-ico {
  width: 16px;
  height: 16px;
}

.calendar-color-ico {
  width: 19px;
  height: 20px;
}

.clock-color-ico {
  width: 18px;
  height: 18px;
}

.pay-sber-ico {
  width: 153px;
  height: 30px;
}

.pay-sber-ico-lg {
  width: 186px;
  height: 36px;
}

.pay-visa-ico {
  width: 107px;
  height: 34px;
}

.pay-visa-ico-lg {
  width: 156px;
  height: 44px;
}

.pay-yandex-ico {
  width: 83px;
  height: 35px;
}

.pay-yandex-ico-lg {
  width: 128px;
  height: 53px;
}

.pay-webmoney-ico {
  width: 161px;
  height: 41px;
}

.pay-webmoney-ico-lg {
  width: 183px;
  height: 47px;
}

.pay-qiwi-ico {
  width: 88px;
  height: 38px;
}

.pay-qiwi-ico-lg {
  width: 121px;
  height: 53px;
}

.pay-alfa-ico {
  width: 116px;
  height: 35px;
}

.pay-vtb-ico {
  width: 96px;
  height: 26px;
}

.pay-vtb-ico-lg {
  width: 143px;
  height: 39px;
}

.pay-svaznoi-ico {
  width: 138px;
  height: 33px;
}

.pay-svaznoi-ico-lg {
  width: 158px;
  height: 37px;
}

.pay-build-ico {
  width: 77px;
  height: 77px;
}

.pay-sber-online-ico {
  width: 148px;
  height: 42px;
}

.pay-alfa-red-ico {
  width: 137px;
  height: 54px;
}

.pay-prombank-ico {
  width: 120px;
  height: 63px;
}

.pay-qbank-ico {
  width: 165px;
  height: 33px;
}

.ico-pay-1 {
  width: 24px;
  height: 24px;
}

.ico-pay-2 {
  width: 26px;
  height: 27px;
}

.ico-pay-3 {
  width: 39px;
  height: 12px;
}

.ico-pay-4 {
  width: 21px;
  height: 24px;
}

.ico-pay-5 {
  width: 32px;
  height: 20px;
}

.ico-pay-6 {
  width: 27px;
  height: 27px;
}

button,
.btn {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: 38px;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding-top: 3px;
  padding-right: 10px;
  padding-bottom: 3px;
  padding-left: 10px;
  border: none;
  border-radius: 3px;
  font: 700 16px "ubuntu";
  text-align: center;
  color: #ffffff;
  box-shadow: none;
  fill: #ffffff;
  transition:
    color 0.3s,
    background-color 0.3s,
    border-color 0.3s;
  cursor: pointer;
}

.button__ico,
.btn__ico {
  display: inline-block;
  margin-top: 4px;
  vertical-align: middle;
  fill: inherit;
}

.button__ico--right,
.btn__ico--right {
  margin-left: 10px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.button__ico--left,
.btn__ico--left {
  margin-right: 10px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.button__text,
.btn__text {
  display: inline-block;
  vertical-align: middle;
}

button:before,
.btn:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  /* background-image: linear-gradient(to top, #e0932f 0%, #f3d332 100%); */
  background-color: #ffa800;
  transition: opacity 0.3s;
  opacity: 0;
  content: "";
}

button:hover,
.btn:hover {
  text-decoration: none;
  color: #ffffff;
  fill: #ffffff;
  border-bottom-color: #a96c1c;
}

button:hover:before,
.btn:hover:before {
  opacity: 1;
}

button.disabled,
button[disabled="disabled"],
button[disabled],
.btn.disabled,
.btn[disabled="disabled"],
.btn[disabled] {
  color: #aaaaaa;
  background: #cccccc;
  cursor: not-allowed;
}

/* buttons style */

.btn-blue {
  background-color: #4275b6;
  background-image: linear-gradient(to top, #25427d 0%, #4275b6 100%);
}

.btn-red {
  background-color: #c81f3c;
  background-image: linear-gradient(to top, #9a162d 0%, #c81f3c 100%);
  border-bottom-color: #7b001e;
}

.btn-gray {
  color: #0071b5;
  background-color: #f4f4f4;
  background-image: linear-gradient(to top, #e6e6e6 0%, #f4f4f4 100%);
  fill: #0071b5;
}

.btn-gray:before {
  background-color: #0076ba;
  background-image: linear-gradient(to bottom, #0076ba 0%, #004181 100%);
}

.btn-light {
  border: 1px solid #e7e7e7;
  color: #424243;
  background: none;
}

.btn-light:before {
  display: none;
}

.btn-light:hover {
  border: 1px solid #e7e7e7;
  color: #424243;
  background: #f5f5f5;
}

.btn-white {
  font-weight: 400;
  color: #404041;
  background: #ffffff;
}

.btn-dark {
  font-weight: 400;
  background: #282828;
}

.btn-blue-transparent {
  border: 2px solid #4274b5;
  color: #4274b5;
  background: none;
  fill: #4274b5;
}

.btn-blue-transparent:before {
  display: none;
}

.btn-blue-transparent:hover {
  color: #e4a030;
  fill: #e4a030;
  border-color: #e4a030;
}

.btn-orange-transparent {
  border: 2px solid #ff7300;
  color: #ff7300;
  background: none;
  fill: #ff7300;
}

.btn-orange-transparent:before {
  display: none;
}

.btn-orange-transparent:hover {
  color: #ff7300;
  fill: #ff7300;
  border-color: #ff7300;
  background: #fff2e7;
}

.btn-inline {
  display: inline-block;
  width: auto;
}

.btn-download {
  padding: 10px 15px 13px;
  fill: #000000;
}

.btn-download .btn__ico {
  width: 33px;
  height: 40px;
}

.btn-download .btn__cont {
  display: inline-block;
  padding-left: 20px;
  vertical-align: middle;
}

.btn-download__name {
  display: block;
  font: 400 18px "ubuntu";
  text-align: left;
  color: #ff7300;
}

.btn-download__info {
  display: block;
  font: 400 15px "ubuntu";
  text-align: left;
  color: #717171;
}

.btn-download:before {
  display: none;
}

.btn-download:hover {
  fill: #000000;
}

.btn-yellow {
  background-color: #f7941e;
  background-image: linear-gradient(to top, #f7941e 0%, #ffd403 100%);
  border-bottom-color: #d66908;
}

.btn-yellow:before {
  background-image: linear-gradient(to top, #9a162d 0%, #c81f3c 100%);
}

.btn-orange {
  background-color: #ff7300;
  border-color: #ff7300;
}

.btn-orange:before {
  display: none;
}

.btn-orange:hover {
  background-color: #ffa800;
  border-color: #ffa800;
}

/* buttons style end */

/* buttons size */

.btn-extra-small {
  padding: 5px 15px 6px;
}

.btn-small {
  padding-top: 10px;
  padding-right: 5px;
  padding-bottom: 10px;
  padding-left: 5px;
  font-size: 14px;
}

.btn-medium {
  padding: 12px 15px 15px;
}

.btn-medium--border {
  padding: 11px 15px 14px;
}

.btn-lg {
  padding: 16px 15px 16px;
  font-size: 17px;
}

.btn-big {
  padding: 17px 15px 19px;
  font-size: 18px;
}

@media (max-width: 1280px) {
  .btn-big {
    padding: 13px 15px 15px;
    font-size: 15px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .btn-big {
    padding: 13px 15px 15px;
    font-size: 15px;
  }
}

/* buttons size end */

input[type="checkbox"] {
  position: absolute;
  left: -9999px;
}

input[type="checkbox"] + label {
  position: relative;
  display: inline-block;
  width: auto !important;
  padding: 0 0 0 30px;
  font-size: 15px;
  line-height: 24px;
  vertical-align: top;
  cursor: pointer;
}

input[type="checkbox"] + label:before,
input[type="checkbox"] + label:after {
  position: absolute;
  content: "";
}

input[type="checkbox"]:checked + label:after {
  opacity: 1;
}

.checkbox {
  display: inline-block;
  cursor: pointer;
}

.checkbox input[type="checkbox"] {
  display: none;
}

.checkbox input[type="checkbox"] + span {
  position: relative;
  display: block;
  min-height: 22px;
  padding: 0 0 0 35px;
}

.checkbox input[type="checkbox"] + span:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #c8c8c8;
  border-radius: 3px;
  content: "";
  background: #ffffff;
}
.catalog-sort__right .checkbox input[type="checkbox"] + span:before {
  top: 50%;
  transform: translateY(-50%);
}

.checkbox input[type="checkbox"] + span:after {
  position: absolute;
  top: 4px;
  left: 6px;
  display: block;
  width: 7px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  content: "";
  transform: rotate(45deg);
}
.catalog-sort__right .checkbox input[type="checkbox"] + span:after {
  top: calc(50% - 3px);
  left: 3px;
  transform: rotate(45deg) translateY(-50%);
}

.checkbox input[type="checkbox"]:checked + span:before {
  background: #ff7300;
  border-color: #ff7300;
}

.checkbox--single input[type="checkbox"] + span {
  padding: 0;
}

.checkbox--single input[type="checkbox"] + span:before {
  position: relative;
}

.checkbox-color {
  display: block;
}

.checkbox-color input[type="checkbox"] {
  display: none;
}

.checkbox-color input[type="checkbox"] + span {
  position: relative;
  display: block;
  padding: 2px 0 0 37px;
}

.checkbox-color input[type="checkbox"] + span:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #d5d5d5;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
  content: "";
  background: #ffffff;
}

.checkbox-color input[type="checkbox"] + span:after {
  position: absolute;
  top: 9px;
  left: 7px;
  display: block;
  width: 10px;
  height: 7px;
  transition: opacity 0.3s;
  opacity: 0;
  content: "";
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgOS45OSA3LjAxIiB3aWR0aD0iMTBweCIgaGVpZ2h0PSI3cHgiPjxkZWZzPjxzdHlsZT4uY2xzLTF7aXNvbGF0aW9uOmlzb2xhdGU7fS5jbHMtMntmaWxsLXJ1bGU6ZXZlbm9kZDtmaWxsOnVybCgj0JHQtdC30YvQvNGP0L3QvdGL0Llf0LPRgNCw0LTQuNC10L3Rgl8xMik7fTwvc3R5bGU+PGxpbmVhckdyYWRpZW50IGlkPSLQkdC10LfRi9C80Y/QvdC90YvQuV/Qs9GA0LDQtNC40LXQvdGCXzEyIiB4MT0iNC45OSIgeTE9IjcuMDEiIHgyPSI0Ljk5IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHN0b3Agb2Zmc2V0PSIwIiBzdG9wLWNvbG9yPSIjZjc5NDFlIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjZmVjZTA2Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHRpdGxlPmNoZWNrLWNvbG9yPC90aXRsZT48ZyBpZD0iU2hhcGVfNTA1IiBkYXRhLW5hbWU9IlNoYXBlIDUwNSIgY2xhc3M9ImNscy0xIj48ZyBpZD0iU2hhcGVfNTA1LTIiIGRhdGEtbmFtZT0iU2hhcGUgNTA1Ij48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik05LjYzLDAuMzZhMS4yNCwxLjI0LDAsMCwwLTEuNzQsMEw0LjE1LDQuMDZsLTItMkExLjI0LDEuMjQsMCwwLDAsLjM2LDJhMS4yMiwxLjIyLDAsMCwwLDAsMS43M2wyLjkyLDIuOUExLjI0LDEuMjQsMCwwLDAsNSw2LjY2bDQuNi00LjU3QTEuMjIsMS4yMiwwLDAsMCw5LjYzLjM2WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCkiLz48L2c+PC9nPjwvc3ZnPg==")
    center no-repeat;
}

.checkbox-color input[type="checkbox"]:checked + span:after {
  opacity: 1;
}

.ui-datepicker .ui-datepicker-prev .ui-icon {
  background-size: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHRpdGxlPmFycm93LWNpcmNsZTwvdGl0bGU+PGcgaWQ9IkVsbGlwc2VfNSIgZGF0YS1uYW1lPSJFbGxpcHNlIDUiICBzdHlsZT0iaXNvbGF0aW9uOmlzb2xhdGU7IGZpbGw6ICMwMDc1YjkiPjxnIGlkPSJFbGxpcHNlXzUtMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDUiPjxjaXJjbGUgY3g9IjEwIiBjeT0iMTAiIHI9IjEwIi8+PC9nPjwvZz48ZyBpZD0iU2hhcGVfM19jb3B5IiBkYXRhLW5hbWU9IlNoYXBlIDMgY29weSIgc3R5bGU9Imlzb2xhdGlvbjppc29sYXRlIj48ZyBpZD0iU2hhcGVfM19jb3B5LTIiIGRhdGEtbmFtZT0iU2hhcGUgMyBjb3B5Ij48cG9seWdvbiBwb2ludHM9IjEyLjAyIDcuMDQgMTAuNDMgNiA3IDEwIDEwLjQzIDE0IDEyLjAyIDEyLjk2IDkuNDggMTAgMTIuMDIgNy4wNCIgc3R5bGU9ImZpbGw6I2ZmZjtmaWxsLXJ1bGU6ZXZlbm9kZCIvPjwvZz48L2c+PC9zdmc+")
    center no-repeat;
}

.ui-datepicker .ui-datepicker-next .ui-icon {
  background-size: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHRpdGxlPmFycm93LWNpcmNsZTwvdGl0bGU+PGcgaWQ9IkVsbGlwc2VfNSIgZGF0YS1uYW1lPSJFbGxpcHNlIDUiICBzdHlsZT0iaXNvbGF0aW9uOmlzb2xhdGU7IGZpbGw6ICMwMDc1YjkiPjxnIGlkPSJFbGxpcHNlXzUtMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDUiPjxjaXJjbGUgY3g9IjEwIiBjeT0iMTAiIHI9IjEwIi8+PC9nPjwvZz48ZyBpZD0iU2hhcGVfM19jb3B5IiBkYXRhLW5hbWU9IlNoYXBlIDMgY29weSIgc3R5bGU9Imlzb2xhdGlvbjppc29sYXRlIj48ZyBpZD0iU2hhcGVfM19jb3B5LTIiIGRhdGEtbmFtZT0iU2hhcGUgMyBjb3B5Ij48cG9seWdvbiBwb2ludHM9IjEyLjAyIDcuMDQgMTAuNDMgNiA3IDEwIDEwLjQzIDE0IDEyLjAyIDEyLjk2IDkuNDggMTAgMTIuMDIgNy4wNCIgc3R5bGU9ImZpbGw6I2ZmZjtmaWxsLXJ1bGU6ZXZlbm9kZCIvPjwvZz48L2c+PC9zdmc+")
    center no-repeat;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

textarea,
select,
.input {
  display: block;
  width: 100%;
  height: 39px;
  padding: 5px 20px;
  border: 1px solid #c8c8c8;
  border-radius: 3px;
  font: 400 16px "ubuntu";
  color: #404041;
  transition:
    background-color 0.3s,
    color 0.3s;
  outline: none;
}

textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder,
.input::-webkit-input-placeholder {
  color: #9c9c9c;
}

textarea:-ms-input-placeholder,
select:-ms-input-placeholder,
.input:-ms-input-placeholder {
  color: #9c9c9c;
}

textarea:focus::-webkit-input-placeholder,
select:focus::-webkit-input-placeholder,
.input:focus::-webkit-input-placeholder {
  color: transparent;
}

textarea:focus:-ms-input-placeholder,
select:focus:-ms-input-placeholder,
.input:focus:-ms-input-placeholder {
  color: transparent;
}

textarea:focus::placeholder,.input
select:focus::placeholder,
.input:focus::placeholder {
  color: transparent;
}

textarea.disabled,
textarea[disabled="disabled"],
textarea[disabled],
select.disabled,
select[disabled="disabled"],
select[disabled],
.input.disabled,
.input[disabled="disabled"],
.input[disabled] {
  background-color: #f3f3f3;
}

.input-md {
  height: 53px;
}

.input-sm {
  height: 29px;
  padding: 5px 12px;
  font-size: 14px;
}

.input-shadow {
  border-radius: 4px;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.input-shadow-dark {
  border: none;
  -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09);
  background: #f5f5f5;
}

.input-iconed {
  padding-left: 48px;
}

textarea {
  height: 150px;
}

.input-textarea {
  height: 138px;
  padding-top: 15px;
  padding-bottom: 15px;
  border: 0;
  resize: none;
  background: #ffffff;
}

/*
input[type="file"] {
  display: none; }
  input[type="file"] + label {
    display: block;
    color: #ff7300;
    text-align: center;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    -webkit-box-shadow: 0 1px 3px rgba(255, 115, 0, 0.35);
            box-shadow: 0 1px 3px rgba(255, 115, 0, 0.35);
    border: 1px solid #ff7300;
    background: #fff;
    cursor: pointer;
    font: 400 14px/18px "ubuntu";
    padding: 9px 15px 13px;
    border-radius: 3px; }
    input[type="file"] + label:hover {
      color: #ff7300;
      fill: #ff7300;
      border-color: #ff7300;
      background: #fff2e7;
      -webkit-box-shadow: 0 1px 3px rgba(255, 242, 231, 0.35);
              box-shadow: 0 1px 3px rgba(255, 242, 231, 0.35); }
              */

input[type="radio"] {
  position: absolute;
  left: -9999px;
}

input[type="radio"] + label {
  position: relative;
  display: inline-block;
  width: auto;
  padding: 0 0 0 30px;
  font-size: 15px;
  line-height: 24px;
  vertical-align: top;
  cursor: pointer;
}

input[type="radio"] + label:before,
input[type="radio"] + label:after {
  position: absolute;
  content: "";
}

input[type="radio"]:checked + label:after {
  opacity: 1;
}

.radio--line {
  display: inline-block;
  vertical-align: middle;
}

.radio__label {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.radio__input:checked ~ .radio__cont:before {
  visibility: hidden;
  opacity: 0;
}

.radio__input:checked ~ .radio__cont:after {
  visibility: visible;
  opacity: 1;
}

.radio__cont {
  display: block;
  padding-left: 30px;
  transition:
    visibility 0.3s,
    opacity 0.3s;
}

.radio__cont:before,
.radio__cont:after {
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transition:
    visibility 0.3s,
    opacity 0.3s;
  content: "";
}

.radio__cont:before {
  -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09);
  background: #e7e7e7;
}

.radio__cont:after {
  border: 3px solid #ff7300;
  visibility: hidden;
  opacity: 0;
  background: #ff7300;
}

.radio__cont--wo-text {
  width: 16px;
  height: 16px;
  padding: 0;
}

.radio__cont--wo-text:before,
.radio__cont--wo-text:after {
  top: 2px;
}

.radio__text {
  display: inline-block;
  font: 400 15px/24px "ubuntu";
  color: #404041;
}

.radio-set {
  display: table;
  border-radius: 3px;
  font-size: 0;
  overflow: hidden;
}

.radio-set__item {
  display: inline-block;
}

.radio-set__label {
  display: block;
  cursor: pointer;
}

.radio-set__label:hover .radio-set__text {
  color: #ffffff;
  background-color: #ff7300;
  border-color: #ff7300;
}

.radio-set__input:checked + .radio-set__text {
  color: #ffffff;
  background-color: #ff7300;
  border-color: #ff7300;
}

.radio-set__text {
  display: block;
  padding: 4px 15px;
  border-right: 1px solid #ffffff;
  font-size: 14px;
  text-align: center;
  color: #717171;
  background-color: #f7f7f7;
  transition:
    border-color 0.3s,
    background-color 0.3s,
    color 0.3s;
}

.jspArrow:before,
.jspArrow:after {
  position: absolute;
  left: 12px;
  display: block;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
}

.jspArrow.jspArrowUp:before {
  top: 14px;
  border-bottom: 8px solid #ffffff;
}

.jspArrow.jspArrowDown:before {
  bottom: 14px;
  border-top: 8px solid #ffffff;
}

select {
  display: block;
  padding: 2px 30px 4px 12px;
  border-radius: 0;
  background-color: #ffffff;
  -webkit-transition: none;
  transition: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

select:focus {
  /* background-image: url("/local/templates/rcshop/css/../img/sprite/retina/2x/select-up.png"); */
}

.default-select {
  position: relative;
  z-index: 1;
}

.default-select__select {
  position: relative;
  z-index: 2;
  display: block;
  height: 29px;
  padding: 2px 30px 4px 12px;
  font: 400 13px "ubuntu";
  color: #717171;
  background: none;
  cursor: pointer;
}

.default-select__ico {
  position: absolute;
  top: 50%;
  right: 11px;
  z-index: 1;
  fill: #ff7300;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.default-select--md .default-select__select {
  height: 50px;
  padding-right: 30px;
  padding-left: 20px;
  font-size: 15px;
  color: #ff7300;
}

.default-select--shadow .default-select__select {
  height: 39px;
  border: 0;
  font-size: 16px;
  -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09);
  background: #f5f5f5;
}

.selectric-open.selectric-above .selectric {
  border-radius: 0 0 3px 3px;
}

.selectric-open.selectric-above .selectric-items {
  border-radius: 3px 3px 0 0;
}

.selectric-white .selectric {
  background: #ffffff;
}

.selectric-white .selectric-items {
  background: #ffffff;
}

.default-select--orange .default-select__select {
  border: 0;
  color: #ffffff;
  background: #ff7300;
}

.default-select--orange .default-select__ico {
  z-index: 2;
  fill: #ffffff;
  pointer-events: none;
}

@media (max-width: 1280px) {
  .slick-dots {
    right: 38px;
    bottom: 37px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .slick-dots {
    right: 38px;
    bottom: 37px;
  }
}
@media (max-width: 767px) {
  .slick-dots {
    right: 31px;
    bottom: 20px;
  }
}
@media (max-width: 1280px) {
  .slick-dots li {
    margin: 0 9px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .slick-dots li {
    margin: 0 9px;
  }
}

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

.slick-dots button:hover {
  color: transparent;
  background-color: #006db1;
  background-image: linear-gradient(to bottom, #006db1 0%, #004c8d 100%);
  opacity: 1;
  border-color: #f5f5f5;
}

@media (max-width: 1280px) {
  .slick-dots button {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .slick-dots button {
    width: 15px;
    height: 15px;
  }
}

.spinner {
  position: relative;
  padding: 11px 8px;
  border-radius: 3px;
  line-height: 1;
  -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09);
  background: #f5f5f5;
}

.spinner--white {
  background: #ffffff;
}

.spinner__minus {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 33%;
}

.spinner__minus:hover {
  opacity: 0.8;
}

.spinner__minus.disable {
  pointer-events: none;
}

.spinner__minus:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  display: block;
  width: 10px;
  height: 2px;
  margin: 0 0 0 -5px;
  content: "";
  background: #cb6463;
}

@media (max-width: 1023px) {
  .spinner__minus {
    width: 33%;
  }
}

.spinner__plus {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  width: 33%;
}

.spinner__plus:hover {
  opacity: 0.8;
}

.spinner__plus:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  display: block;
  width: 10px;
  height: 2px;
  margin: 0 0 0 -5px;
  content: "";
  background: #85bf31;
}

.spinner__plus:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 2px;
  height: 10px;
  margin: -5px 0 0 -1px;
  content: "";
  background: #85bf31;
}

@media (max-width: 1023px) {
  .spinner__plus {
    width: 33%;
  }
}

.spinner__text {
  width: 100%;
  padding: 0 5px;
  border: 0;
  font: 400 14px "ubuntu";
  text-align: center;
  color: #707070;
  outline: none;
  background: none;
}

.spinner-md {
  padding: 11px 17px 12px;
}

.spinner-md .spinner__text {
  font-size: 20px;
}

.spinner-md .spinner__plus:before {
  top: 50%;
  left: 50%;
  width: 16px;
  height: 4px;
  margin-top: -2px;
  margin-left: -8px;
  border-radius: 2px;
}

.spinner-md .spinner__plus:after {
  top: 50%;
  left: 50%;
  width: 4px;
  height: 16px;
  margin-top: -8px;
  margin-left: -2px;
  border-radius: 2px;
}

.spinner-md .spinner__minus:before {
  top: 50%;
  left: 50%;
  width: 16px;
  height: 4px;
  margin-top: -2px;
  margin-left: -8px;
  border-radius: 2px;
}

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

table b {
  white-space: nowrap;
}

table th {
  padding: 11px 14px;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  font: 400 15px "ubuntu";
  text-align: left;
  color: #404041;
  background: #f5f5f5;
}

table th:first-child {
  border-left: 1px solid #e7e7e7;
  border-radius: 3px 0 0 0;
}

table th:last-child {
  border-right: 1px solid #e7e7e7;
  border-radius: 0 3px 0 0;
}

@media (max-width: 1280px) {
  table th {
    padding: 9px 10px;
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  table th {
    padding: 9px 10px;
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  table th {
    font-size: 14px;
  }
}

table td {
  padding: 10px 14px 11px;
  border-bottom: 1px solid #e7e7e7;
  border-left: 1px solid #e7e7e7;
  font: 400 15px/22px "ubuntu";
  color: #717171;
}

table td:first-child {
  border-left: 1px solid #e7e7e7;
}

table td:first-child b {
  white-space: normal;
}

table td:last-child {
  border-right: 1px solid #e7e7e7;
}

table td.cell-red {
  color: #e66563;
}

@media (max-width: 1280px) {
  table td {
    padding: 10px 10px;
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  table td {
    padding: 10px 10px;
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  table td {
    font-size: 14px;
    line-height: 17px;
  }
}

.table-sending {
  margin-bottom: 25px;
}

.table-sending th {
  padding: 8px 25px 12px;
  border: 0;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  font-size: 17px;
  font-weight: 700;
  color: #717171;
}

.table-sending th:nth-child(1) {
  width: 25%;
}

.table-sending th:nth-child(2) {
  width: 42.5%;
}

.table-sending th:nth-child(3) {
  width: 32.5%;
}

@media (max-width: 1023px) {
  .table-sending th {
    padding: 10px 15px 12px;
    font-size: 15px;
  }

  .table-sending th:nth-child(1) {
    width: 28%;
  }

  .table-sending th:nth-child(2) {
    width: 50%;
  }

  .table-sending th:nth-child(3) {
    width: 22%;
  }
}
@media (max-width: 767px) {
  .table-sending th {
    font-size: 14px;
  }

  .table-sending th:nth-child(1) {
    width: 30%;
  }

  .table-sending th:nth-child(2) {
    width: 40%;
  }

  .table-sending th:nth-child(3) {
    width: 30%;
  }
}

.table-sending td {
  padding: 16px 25px 16px;
  border: 0;
  border-bottom: 1px solid #e7e7e7;
  font-size: 17px;
  color: #717171;
}

.table-sending td:first-child {
  white-space: nowrap;
}

.table-sending td:last-child {
  color: #404041;
}

@media (max-width: 1023px) {
  .table-sending td {
    padding-right: 15px;
    padding-left: 15px;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .table-sending td {
    font-size: 14px;
  }
}

.table-sending a:hover {
  text-decoration: underline;
}

.deliver-order-table {
  margin-bottom: 42px;
}

.deliver-order-table th {
  padding-right: 25px;
  padding-left: 25px;
  border: 0;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  font-size: 16px;
  color: #404041;
}

.deliver-order-table th:nth-child(1) {
  width: 35%;
}

.deliver-order-table th:nth-child(2) {
  width: 21.66%;
}

.deliver-order-table th:nth-child(3) {
  width: 21.66%;
}

.deliver-order-table th:nth-child(4) {
  width: 21.66%;
}

@media (max-width: 1280px) {
  .deliver-order-table th {
    font-size: 15px;
  }

  .deliver-order-table th:nth-child(1) {
    width: 45%;
  }

  .deliver-order-table th:nth-child(2) {
    width: 12.5%;
  }

  .deliver-order-table th:nth-child(3) {
    width: 30%;
  }

  .deliver-order-table th:nth-child(4) {
    width: 12.5%;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .deliver-order-table th {
    font-size: 15px;
  }

  .deliver-order-table th:nth-child(1) {
    width: 45%;
  }

  .deliver-order-table th:nth-child(2) {
    width: 12.5%;
  }

  .deliver-order-table th:nth-child(3) {
    width: 30%;
  }

  .deliver-order-table th:nth-child(4) {
    width: 12.5%;
  }
}

.deliver-order-table td {
  padding: 10px 25px;
  font-size: 15px;
  line-height: 24px;
  color: #717171;
  vertical-align: top;
}

@media (max-width: 1280px) {
  .deliver-order-table td {
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .deliver-order-table td {
    font-size: 14px;
  }
}

.deliver-order-table .radio__cont {
  padding-left: 35px;
}

@media (max-width: 1280px) {
  .deliver-order-table .radio__cont:before,
  .deliver-order-table .radio__cont:after {
    top: 5px;
  }

  .deliver-order-table .radio__text {
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .deliver-order-table .radio__cont:before,
  .deliver-order-table .radio__cont:after {
    top: 5px;
  }

  .deliver-order-table .radio__text {
    font-size: 14px;
  }
}

.deliver-order-table__drop {
  display: none;
  padding: 10px 0 0 35px;
  font-size: 0;
}

.deliver-order-table__drop-item {
  display: block;
  padding-bottom: 3px;
}

.deliver-order-table__drop-ico {
  display: block;
  margin-bottom: 5px;
  fill: #ff7300;
}

.deliver-order-table__drop-left {
  display: inline-block;
  width: 25px;
  vertical-align: middle;
}

.deliver-order-table__drop-right {
  display: inline-block;
  width: calc(100% - 25px);
  padding-left: 10px;
  vertical-align: middle;
}

@media (max-width: 1280px) {
  .deliver-order-table__drop-right {
    line-height: 16px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .deliver-order-table__drop-right {
    line-height: 16px;
  }
}

.deliver-order-table__drop-text {
  font-size: 15px;
}

@media (max-width: 1280px) {
  .deliver-order-table__drop-text {
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .deliver-order-table__drop-text {
    font-size: 14px;
  }
}

.deliver-order-table a:hover {
  text-decoration: underline;
}

.realization-table {
  margin-bottom: 21px;
  border: 0;
}

.realization-table thead {
  border: 1px solid #e7e7e7;
}

.realization-table__head-top {
  font: 700 15px "ubuntu";
  text-align: center;
  color: #404041;
  background: #e7e7e7;
}

.realization-table__head-top--border {
  border-left: 1px solid #ffffff;
}

@media (max-width: 1280px) {
  .realization-table__head-top {
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .realization-table__head-top {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .realization-table__head-top {
    font-size: 14px;
  }
}

.realization-table__head-bottom {
  font: 400 15px "ubuntu";
  text-align: center;
  color: #404041;
  background: #f5f5f5;
}

.realization-table__head-bottom:nth-child(1) {
  width: 10%;
}

.realization-table__head-bottom:nth-child(2) {
  width: 10%;
}

.realization-table__head-bottom:nth-child(3) {
  width: 30%;
}

.realization-table__head-bottom:nth-child(4) {
  width: 10%;
}

.realization-table__head-bottom:nth-child(5) {
  width: 10%;
}

.realization-table__head-bottom:nth-child(6) {
  width: 10%;
}

.realization-table__head-bottom:nth-child(7) {
  width: 10%;
}

.realization-table__head-bottom:nth-child(8) {
  width: 10%;
}

@media (max-width: 1280px) {
  .realization-table__head-bottom {
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .realization-table__head-bottom {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .realization-table__head-bottom {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .realization-table__head-bottom {
    font-size: 14px;
  }

  .realization-table__head-bottom:nth-child(2) {
    display: none;
  }
}

.realization-table th {
  padding: 11px 14px 14px;
}

@media (max-width: 1280px) {
  .realization-table th {
    padding: 12px 10px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .realization-table th {
    padding: 12px 10px;
  }
}
@media (max-width: 1023px) {
  .realization-table th:first-child {
    border-left: none;
    border-radius: 0;
  }

  .realization-table th:last-child {
    border-right: none;
    border-radius: 0;
  }
}

.realization-table td {
  min-height: 63px;
  padding: 9px 18px;
  text-align: center;
}

.realization-table td a {
  font-weight: 700;
  line-height: 22px;
}

.realization-table td a:hover {
  text-decoration: underline;
}

@media (max-width: 1400px) {
  .realization-table td {
    padding: 9px 10px;
  }
}
@media (max-width: 1280px) {
  .realization-table td {
    padding: 9px 10px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .realization-table td {
    padding: 9px 10px;
  }
}
@media (max-width: 1023px) {
  .realization-table td:first-child {
    border-left: none;
  }

  .realization-table td:last-child {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .realization-table td {
    padding-right: 5px;
    padding-left: 5px;
  }

  .realization-table td:nth-child(2) {
    display: none;
  }

  .realization-table td a {
    font-weight: 400;
  }
}
@media (max-width: 500px) {
  .realization-table td {
    padding-right: 3px;
    padding-left: 3px;
  }
}

.realization-table__input {
  width: 53px;
  margin: 0 auto;
  padding-right: 5px;
  padding-left: 5px;
  text-align: center;
  background: #f5f5f5;
}

@media (max-width: 1023px) {
  .realization-table__input {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .realization-table__input {
    width: 37px;
    height: 30px;
  }
}

.realization-table .align-left {
  text-align: left;
}

.realization-table tfoot td {
  font-size: 20px;
}

@media (max-width: 1280px) {
  .realization-table tfoot td {
    font-size: 18px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .realization-table tfoot td {
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .realization-table tfoot td {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .realization-table tfoot td {
    font-size: 14px;
  }
}

.realization-table__empty {
  border: 0 !important;
}

.pay-delivery-table {
  margin-bottom: 34px;
  border: 0;
}

@media (max-width: 1023px) {
  .pay-delivery-table {
    margin-bottom: 28px;
  }
}

.pay-delivery-table tr:first-child td {
  padding-top: 0;
}

.pay-delivery-table td {
  padding: 13px 15px 15px 0;
  border: 0;
  border-bottom: 1px solid #e7e7e7;
  font-size: 17px;
  color: #404041;
}

.pay-delivery-table td:last-child {
  border-right: 0;
}

.pay-delivery-table td:first-child {
  border-left: 0;
}

@media (max-width: 1280px) {
  .pay-delivery-table td {
    font-size: 14px;
    vertical-align: top;
  }

  .pay-delivery-table td.pay-delivery-table__price {
    font-size: 18px;
  }

  .pay-delivery-table td:nth-child(1) {
    width: 45%;
  }

  .pay-delivery-table td:nth-child(2) {
    width: 20%;
  }

  .pay-delivery-table td:nth-child(3) {
    width: 20%;
  }

  .pay-delivery-table td:nth-child(4) {
    width: 15%;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .pay-delivery-table td {
    font-size: 14px;
    vertical-align: top;
  }

  .pay-delivery-table td.pay-delivery-table__price {
    font-size: 18px;
  }

  .pay-delivery-table td:nth-child(1) {
    width: 45%;
  }

  .pay-delivery-table td:nth-child(2) {
    width: 20%;
  }

  .pay-delivery-table td:nth-child(3) {
    width: 20%;
  }

  .pay-delivery-table td:nth-child(4) {
    width: 15%;
  }
}
@media (max-width: 1023px) {
  .pay-delivery-table td {
    vertical-align: middle;
  }
}
@media (max-width: 767px) {
  .pay-delivery-table td {
    font-size: 14px;
  }
}

.pay-delivery-table__circle {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  vertical-align: top;
  background: #ff7300;
}

@media (max-width: 767px) {
  .pay-delivery-table__circle {
    display: none;
  }
}

.pay-delivery-table__text {
  display: inline-block;
  width: calc(100% - 16px);
  padding-left: 12px;
  vertical-align: top;
}

@media (max-width: 767px) {
  .pay-delivery-table__text {
    width: 100%;
    padding: 0;
  }
}

.promo-material-table {
  border: 1px solid #e7e7e7;
  border-bottom: 0;
  border-radius: 3px;
}

.promo-material-table__thead {
  border-bottom: 1px solid #e7e7e7;
}

@media (max-width: 767px) {
  .promo-material-table__thead {
    display: none;
  }
}

.promo-material-table__row {
  display: table;
  width: 100%;
}

@media (max-width: 767px) {
  .promo-material-table__row {
    position: relative;
  }
}

.promo-material-table__tcell {
  display: table-cell;
  padding: 8px 24px 12px;
  font: 700 17px "ubuntu";
  text-align: left;
  color: #717171;
  background: #f5f5f5;
}

.promo-material-table__tcell:nth-child(1) {
  width: 40%;
}

.promo-material-table__tcell:nth-child(2) {
  width: 60%;
}

@media (max-width: 1023px) {
  .promo-material-table__tcell {
    padding: 10px 15px 12px 15px;
    font-size: 15px;
  }
}

.promo-material-table__cell {
  position: relative;
  display: table-cell;
  padding: 28px 32px 33px;
  border: 0;
  border-bottom: 1px solid #e7e7e7;
  vertical-align: top;
}

.promo-material-table__cell:nth-child(1) {
  width: 40%;
}

.promo-material-table__cell:nth-child(2) {
  width: 60%;
}

@media (max-width: 1023px) {
  .promo-material-table__cell {
    padding: 18px 20px 20px 15px;
  }
}
@media (max-width: 767px) {
  .promo-material-table__cell {
    position: static;
    display: block;
    padding: 13px 12px 16px 12px;
  }

  .promo-material-table__cell:nth-child(1n) {
    width: 100%;
    border-bottom: 0;
  }

  .promo-material-table__cell:last-child {
    padding-bottom: 77px;
    border-bottom: 1px solid #e7e7e7;
  }
}

.promo-material-table__date {
  display: block;
  padding-bottom: 14px;
  font: 400 16px "ubuntu";
  color: #717171;
}

@media (max-width: 767px) {
  .promo-material-table__date {
    padding-bottom: 8px;
    font-size: 14px;
  }
}

.promo-material-table__title {
  display: block;
  padding-bottom: 21px;
  font: 700 20px "ubuntu";
  color: #404041;
}

@media (max-width: 1023px) {
  .promo-material-table__title {
    padding-bottom: 85px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .promo-material-table__title {
    padding-bottom: 0;
    font-size: 16px;
  }
}

.promo-material-table__link {
  width: auto;
  max-width: 190px;
  padding: 14px 15px 17px;
}

@media (max-width: 1023px) {
  .promo-material-table__link {
    position: absolute;
    right: 15px;
    bottom: 20px;
    left: 15px;
    max-width: none;
  }
}
@media (max-width: 767px) {
  .promo-material-table__link {
    position: absolute;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 15px 15px 18px;
    font-size: 14px;
  }
}

.promo-material-table__img {
  display: block;
  max-width: 100%;
  border-radius: 3px;
}

.payments-table {
  margin-bottom: 28px;
}

@media (max-width: 1023px) {
  .payments-table {
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .payments-table {
    margin-bottom: 25px;
  }
}

.payments-table thead {
  border-bottom: 1px solid #e7e7e7;
}

.payments-table th {
  padding: 8px 25px 12px;
  font-size: 17px;
  font-weight: 700;
  color: #717171;
}

@media (max-width: 1280px) {
  .payments-table th {
    padding: 9px 22px 12px;
    font-size: 16px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .payments-table th {
    padding: 9px 22px 12px;
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .payments-table th {
    padding-right: 11px;
    padding-left: 11px;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .payments-table th {
    font-size: 14px;
    font-weight: 400;
  }
}

.payments-table td {
  padding: 16px 5px 19px 26px;
  border: 0;
  border-bottom: 1px solid #e7e7e7;
  font-size: 17px;
  color: #404041;
}

.payments-table td:nth-child(1) {
  width: 20%;
}

.payments-table td:nth-child(2) {
  width: 27%;
}

.payments-table td:nth-child(3) {
  width: 25%;
}

.payments-table td:nth-child(4) {
  width: 14%;
}

.payments-table td:nth-child(5) {
  width: 15%;
}

@media (max-width: 1280px) {
  .payments-table td {
    padding: 16px 5px 16px 21px;
    font-size: 15px;
  }

  .payments-table td:nth-child(1) {
    width: 15%;
  }

  .payments-table td:nth-child(2) {
    width: 30%;
  }

  .payments-table td:nth-child(3) {
    width: 27%;
  }

  .payments-table td:nth-child(4) {
    width: 14%;
  }

  .payments-table td:nth-child(5) {
    width: 14%;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .payments-table td {
    padding: 16px 5px 16px 21px;
    font-size: 15px;
  }

  .payments-table td:nth-child(1) {
    width: 15%;
  }

  .payments-table td:nth-child(2) {
    width: 30%;
  }

  .payments-table td:nth-child(3) {
    width: 27%;
  }

  .payments-table td:nth-child(4) {
    width: 14%;
  }

  .payments-table td:nth-child(5) {
    width: 14%;
  }
}
@media (max-width: 1023px) {
  .payments-table td {
    padding: 20px 5px 18px 11px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .payments-table td {
    padding: 10px 5px 10px 11px;
    font-size: 14px;
  }

  .payments-table td b {
    font-size: 14px;
  }

  .payments-table td:nth-child(1) {
    width: 10%;
  }

  .payments-table td:nth-child(2) {
    width: 20%;
  }

  .payments-table td:nth-child(3) {
    width: 20%;
  }

  .payments-table td:nth-child(4) {
    width: 25%;
  }

  .payments-table td:nth-child(5) {
    width: 25%;
  }
}

.orders-table {
  margin-bottom: 28px;
}

@media (max-width: 1023px) {
  .orders-table {
    display: block;
  }
}

.orders-table th {
  text-align: center;
}

@media (max-width: 1023px) {
  .orders-table th {
    display: block;
    width: 20%;
    font-size: 14px;
  }

  .orders-table th:nth-child(5) {
    border-right: 1px solid #e7e7e7;
  }

  .orders-table th:nth-child(6) {
    display: none;
  }

  .orders-table th:nth-child(7) {
    display: none;
  }
}
@media (max-width: 767px) {
  .orders-table th {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .orders-table tbody,
  .orders-table thead {
    display: block;
  }
}
@media (max-width: 1023px) {
  .orders-table tr {
    position: relative;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-content: stretch;
    -ms-flex-line-pack: stretch;
  }

  .orders-table tr:after {
    display: block;
    content: " ";
    clear: both;
  }
}

.orders-table td {
  line-height: 22px;
  text-align: center;
}

.orders-table td b {
  font-size: 15px;
}

.orders-table td:nth-child(1) {
  width: 14%;
}

.orders-table td:nth-child(2) {
  width: 15%;
}

.orders-table td:nth-child(3) {
  width: 14%;
}

.orders-table td:nth-child(4) {
  width: 15%;
}

.orders-table td:nth-child(5) {
  width: 14%;
}

.orders-table td:nth-child(6) {
  width: 15%;
}

.orders-table td:nth-child(7) {
  width: 13%;
}

@media (max-width: 1023px) {
  .orders-table td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20% !important;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }

  .orders-table td:nth-child(5) {
    border-right: 1px solid #e7e7e7;
  }

  .orders-table td:nth-child(6) {
    display: none;
    width: 100% !important;
    justify-content: flex-start;
    padding: 30px 20px 20px;
    border-right: 1px solid #e7e7e7;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
  }

  .orders-table td:nth-child(7) {
    display: none;
  }
}
@media (max-width: 767px) {
  .orders-table td {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .orders-table__logos {
    text-align: left;
  }
}

.orders-table__logos-link {
  display: inline-block;
  margin: 0 5px;
  font-size: 0;
  line-height: 0;
}

@media (max-width: 1023px) {
  .orders-table__logos-link {
    margin: 0 20px 10px 0;
    font-size: 14px;
    line-height: 25px;
    color: #000000;
  }

  .orders-table__logos-link span {
    border-bottom: 1px solid #000000;
  }
}

.orders-table__ico {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

@media (max-width: 1023px) {
  .orders-table__ico {
    margin: 0 10px 0 0;
  }
}

/* Start view block */

.view {
  font-size: 0;
}

.view__link {
  position: relative;
  display: inline-block;
  width: 39px;
  height: 39px;
  -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09);
  vertical-align: top;
  background: #f5f5f5;
  fill: #717171;
  overflow: hidden;
}

.view__link:hover,
.view__link--active {
  fill: #ffffff;
  background: #ff7300;
}

.view__link:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.view__link:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.view__ico {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  fill: inherit;
}

/* Finsih view block */

/* range slider */

.range-slider .irs {
  height: auto;
}

.range-slider .irs-slider {
  top: -4px;
  width: 12px;
  height: 12px;
  border: 3px solid #ff7300;
  border-radius: 50%;
  background-color: #ffffff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.range-slider .irs-bar {
  top: 0;
  height: 5px;
  border: 0;
  background: #ff7300;
}

.range-slider .irs-line {
  top: 0;
  height: 5px;
  border: 0;
  border-radius: 3px;
  background: #000000;
}

.range-slider .irs-line-left,
.range-slider .irs-line-mid,
.range-slider .irs-line-right {
  height: 5px;
}

.range-slider__values {
  display: block;
  padding-top: 15px;
  font: 400 13px "ubuntu";
  color: #717171;
}

.range-slider__values:after {
  display: block;
  content: " ";
  clear: both;
}

.range-slider__values-min {
  display: block;
  float: left;
}

.range-slider__values-max {
  display: block;
  float: right;
}

/* range slider end */

/* ymap cont */

.ymap-cont {
  position: relative;
  top: -45px;
  left: -165px;
  width: 460px;
  padding: 13px 15px;
  border: 1px solid #0075b9;
  font-size: 0;
  -webkit-box-shadow: 0 0 27px rgba(0, 117, 185, 0.22);
  box-shadow: 0 0 27px rgba(0, 117, 185, 0.22);
  background: #ffffff;
}
@media (max-width: 767px) {
  .ymap-cont {
    top: -63px;
    left: -135px;
    width: 400px;
  }
}

.ymap-cont:before {
  position: absolute;
  bottom: -20px;
  left: calc(50% - 21.5px);
  display: block;
  width: 23px;
  height: 20px;
  content: "";
  background: url("/local/templates/rcshop/css/../img/ymap-arrow.png") no-repeat;
}

.ymap-cont__item {
  padding-bottom: 7px;
}

.ymap-cont__item:last-child {
  padding-bottom: 0;
}

.ymap-cont__left {
  display: inline-block;
  width: 20px;
  vertical-align: top;
}

.ymap-cont__ico {
  display: block;
}

.ymap-cont__right {
  display: inline-block;
  width: calc(100% - 20px);
  padding-left: 10px;
  vertical-align: top;
}

.ymap-cont__text {
  display: block;
  font: 400 14px/19px "ubuntu";
  color: #717171;
}

.contacts__map [class*="-balloon__content"] {
  padding: 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  overflow: visible !important;
  background: none !important;
}

.contacts__map [class*="-balloon__content"] ymaps {
  overflow: visible !important;
}

.contacts__map [class*="-balloon__tail"] {
  display: none !important;
}

.contacts__map [class*="-balloon__layout"] {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  overflow: visible !important;
  background: none !important;
}

.contacts__map [class*="-balloon"] {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  overflow: visible !important;
  background: none !important;
}

/* ymap cont end */

/* go top link */

.go-top-link {
  display: inline-block;
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  border: 1px solid #ff7300;
  border-radius: 2px;
  font-size: 16px;
  color: #ff7300;
  background: #ffffff;
  fill: #ff7300;
}
@media (max-width: 767px) {
  .go-top-link {
    border-radius: 5px;
  }
}

.go-top-link [class*="icon-"] {
  margin-top: -2px;
  margin-right: 15px;
  fill: inherit;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.go-top-link--fixed {
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: auto;
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 767px) {
  .go-top-link--fixed {
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 5px;
    font-size: 0;
  }
  .go-top-link [class*="icon-"] {
    margin: 0;
  }
}

.go-top-link--fixed.visible {
  visibility: visible;
  opacity: 1;
}

.go-top-link:hover {
  color: #ff7300;
  fill: #ff7300;
  border-color: #ff7300;
  background: #fff2e7;
}

/* go top link end */

/* action order */

.action-order {
  padding-top: 2px;
}

.action-order__item {
  display: inline-block;
  margin-right: 35px;
}

.action-order__item:last-child {
  margin-right: 14px;
}

.action-order__link {
  display: block;
  font-weight: 700;
}

.action-order__link:hover .action-order__text {
  text-decoration: underline;
}

.action-order__ico {
  display: inline-block;
  width: 20px;
  height: 25px;
  margin-right: 10px;
  vertical-align: middle;
}

.action-order__text {
  display: inline-block;
  vertical-align: middle;
}

/* action order */

.admission-item {
  position: relative;
  padding: 20px 35px 20px 20px;
  border: 1px solid #e7e7e7;
  border-top: none;
}

.admission-item:after {
  display: block;
  content: " ";
  clear: both;
}

.admission-item:first-child {
  border-top: 1px solid #e7e7e7;
  border-radius: 3px 3px 0 0;
}

.admission-item:last-child {
  border-radius: 0 0 3px 3px;
}

@media (max-width: 767px) {
  .admission-item {
    padding: 10px 11px 20px 11px;
  }
}

.admission-item__left {
  width: calc(100% - 365px);
  float: left;
}

@media (max-width: 1200px) {
  .admission-item__left {
    width: calc(100% - 140px);
    float: none;
  }
}
@media (max-width: 767px) {
  .admission-item__left {
    width: 100%;
    overflow: hidden;
  }
}

.admission-item__actions {
  float: right;
}

.admission-item__actions:after {
  display: block;
  content: " ";
  clear: both;
}

.admission-item__actions-left {
  width: 145px;
  float: left;
}

.admission-item__actions-right {
  width: 220px;
  padding-left: 45px;
  float: left;
}

.admission-item__actions-top {
  height: 30px;
  text-align: center;
}

@media (max-width: 1280px) {
  .admission-item__actions-top {
    height: 35px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .admission-item__actions-top {
    height: 35px;
  }
}

.admission-item__actions-link [class*="icon-"] {
  position: relative;
  top: -1px;
  margin-right: 5px;
}

@media (max-width: 1280px) {
  .admission-item__actions-bottom .btn {
    padding-top: 10px;
    padding-bottom: 15px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .admission-item__actions-bottom .btn {
    padding-top: 10px;
    padding-bottom: 15px;
  }
}
@media (max-width: 1200px) {
  .admission-item__actions {
    width: calc(100% - 140px);
    padding-right: 15px;
    padding-left: 155px;
    float: none;
  }

  .admission-item__actions .spinner {
    position: absolute;
    top: 20px;
    right: 35px;
    width: 140px;
    padding-top: 11px;
    padding-bottom: 8px;
  }

  .admission-item__actions .btn {
    position: absolute;
    top: 76px;
    right: 35px;
    width: 140px;
    padding-bottom: 15px;
  }

  .admission-item__actions .admission-item__on-way {
    position: absolute;
    top: 80px;
    right: 35px;
    width: 140px;
  }

  .admission-item__actions-left {
    width: auto;
    padding-right: 20px;
    float: right;
  }

  .admission-item__actions-right {
    width: auto;
    padding: 0;
    float: left;
  }

  .admission-item__actions-top {
    height: auto;
  }

  .admission-item__actions-link {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .admission-item__actions {
    position: relative;
    width: 100%;
    padding: 0 145px 0 0;
  }

  .admission-item__actions .spinner {
    position: static;
    display: none;
  }

  .admission-item__actions .btn {
    top: auto;
    right: 0;
    bottom: 0;
  }

  .admission-item__actions .admission-item__on-way {
    top: auto;
    right: 0;
    bottom: 0;
    padding: 10px 10px 13px;
  }

  .admission-item__actions-top {
    padding-top: 6px;
  }

  .admission-item__actions-link {
    display: inline-block;
    margin-top: 30px;
  }
}

.admission-item__image {
  position: relative;
  display: block;
  width: 100px;
  height: 75px;
  margin: 0;
  border: 1px solid #c8c8c8;
  border-radius: 2px;
  overflow: hidden;
  float: left;
}

.admission-item__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 1200px) {
  .admission-item__image {
    width: 130px;
    height: 100px;
  }
}

.admission-item__cont {
  width: calc(100% - 100px);
  padding-right: 15px;
  padding-left: 25px;
  float: left;
}

@media (max-width: 1200px) {
  .admission-item__cont {
    width: calc(100% - 130px);
  }
}
@media (max-width: 1023px) {
  .admission-item__cont {
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .admission-item__cont {
    padding-left: 16px;
  }
}

.admission-item__title {
  display: block;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 700;
}

.admission-item__title a:hover {
  text-decoration: underline;
}

@media (max-width: 1280px) {
  .admission-item__title {
    padding: 0 0 5px 0;
    font-size: 16px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .admission-item__title {
    padding: 0 0 5px 0;
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .admission-item__title {
    padding: 0;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .admission-item__title {
    font-size: 14px;
    line-height: 19px;
  }
}

.admission-item__code {
  display: block;
  font-size: 17px;
  color: #717171;
}

@media (max-width: 1200px) {
  .admission-item__code {
    font-size: 15px;
  }
}
@media (max-width: 1023px) {
  .admission-item__code {
    font-size: 14px;
  }
}

.admission-item__old-price {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  font-size: 15px;
  color: #717171;
}

.admission-item__old-price:before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  margin-top: -2px;
  content: "";
  background: rgba(220, 23, 54, 0.4);
}

@media (max-width: 1200px) {
  .admission-item__old-price {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .admission-item__old-price {
    display: table;
    margin: 0 0 3px;
    font-size: 16px;
  }
}

.admission-item__new-price {
  display: inline-block;
  margin-left: 5px;
  font-size: 25px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .admission-item__new-price {
    font-size: 27px;
  }
}
@media (max-width: 767px) {
  .admission-item__new-price {
    display: block;
    margin: 0;
    font-size: 22px;
  }
}

.admission-item__on-way {
  display: block;
  padding: 12px 10px 13px;
  border-radius: 2px;
  text-align: center;
  color: #63c010;
  -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.11);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.11);
  background: #f5f5f5;
}

.admission-item__on-way [class*="icon-"] {
  margin-right: 5px;
}

.admission-item__spinner {
  border: 1px solid #d5d5d5;
  background: #ffffff;
}

@media (max-width: 1280px) {
  .admission-item__spinner {
    padding-top: 8px;
    padding-bottom: 9px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .admission-item__spinner {
    padding-top: 8px;
    padding-bottom: 9px;
  }
}
@media (max-width: 1023px) {
  .admission-list {
    margin: 0 -22px;
  }
}

.bank__box {
  display: block;
  width: 270px;
  height: 201px;
  padding: 45px 20px 20px;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
}

.bank__box:hover {
  -webkit-box-shadow: 0 0 27px rgba(66, 116, 181, 0.22);
  box-shadow: 0 0 27px rgba(66, 116, 181, 0.22);
  border-color: #4274b5;
}

.bank__logo {
  display: block;
  margin: 0 auto 24px;
}

.bank__text {
  display: block;
  font: 400 14px/20px "ubuntu";
  text-align: center;
  color: #707070;
}

.banner-slider {
  position: relative;
  height: 377px;
  margin: 0 0 0 auto;
  overflow: hidden;
}

@media (max-width: 1280px) {
  .banner-slider {
    height: 234px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .banner-slider {
    height: 234px;
  }
}
@media (max-width: 1023px) {
  .banner-slider {
    width: auto;
    height: 193px;
    margin: 0 -22px 263px;
  }
}
@media (max-width: 767px) {
  .banner-slider {
    height: 119px;
    margin: 0 -22px 214px;
  }
}

.banner-slider .slick-dots {
  bottom: 40px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

@media (max-width: 1280px) {
  .banner-slider .slick-dots {
    bottom: 21px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .banner-slider .slick-dots {
    bottom: 21px;
  }
}

.banner-slider .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: block;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 0;
  border: 2px solid #ffffff;
  border-radius: 50%;
  transition: opacity 0.3s;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3),
    inset 0 1px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3), inset 0 1px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.banner-slider .slick-arrow:before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -3px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  content: "";
}

.banner-slider .slick-arrow:hover {
  opacity: 0.7;
}

.banner-slider .slick-prev {
  left: 37px;
}

.banner-slider .slick-prev:before {
  transform: rotate(45deg);
}

@media (max-width: 1280px) {
  .banner-slider .slick-prev {
    left: 29px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .banner-slider .slick-prev {
    left: 29px;
  }
}
@media (max-width: 1023px) {
  .banner-slider .slick-prev {
    left: 21px;
  }
}

.banner-slider .slick-next {
  right: 37px;
}

.banner-slider .slick-next:before {
  margin-left: -5px;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

@media (max-width: 1280px) {
  .banner-slider .slick-next {
    right: 29px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .banner-slider .slick-next {
    right: 29px;
  }
}
@media (max-width: 1023px) {
  .banner-slider .slick-next {
    right: 21px;
  }
}

.banner-slider__item {
  height: 377px;
  padding: 83px 65px 61px 120px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 1280px) {
  .banner-slider__item {
    height: 234px;
    padding: 43px 30px 0 100px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .banner-slider__item {
    height: 234px;
    padding: 43px 30px 0 100px;
  }
}
@media (max-width: 1023px) {
  .banner-slider__item {
    height: 193px;
    padding: 28px 0 0 82px;
  }
}
@media (max-width: 767px) {
  .banner-slider__item {
    height: 119px;
    padding: 19px 80px 25px;
  }
}

.banner-slider__box {
  position: relative;
  height: 100%;
  padding-bottom: 100px;
}

.banner-slider__title {
  display: block;
  max-width: 50%;
  padding-bottom: 11px;
  font: 300 38px/47px "ubuntu";
  color: #ffffff;
  text-shadow: 0 3px 6px rgba(240, 92, 5, 0.47);
}

@media (max-width: 1280px) {
  .banner-slider__title {
    padding-bottom: 0;
    font-size: 25px;
    line-height: 31px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .banner-slider__title {
    padding-bottom: 0;
    font-size: 25px;
    line-height: 31px;
  }
}
@media (max-width: 1023px) {
  .banner-slider__title {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .banner-slider__title {
    max-width: none;
    font-size: 22px;
  }
}

.banner-slider__name {
  display: block;
  max-width: 50%;
  font: 700 45px/73px "ubuntu";
  color: #ffffff;
  text-shadow: 0 3px 6px rgba(240, 92, 5, 0.47);
}

@media (max-width: 1280px) {
  .banner-slider__name {
    font-size: 40px;
    line-height: 55px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .banner-slider__name {
    font-size: 40px;
    line-height: 55px;
  }
}
@media (max-width: 1023px) {
  .banner-slider__name {
    font-size: 22px;
    line-height: 48px;
  }
}
@media (max-width: 767px) {
  .banner-slider__name {
    max-width: none;
    font-size: 25px;
    line-height: 36px;
  }
}

.banner-slider__link {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  max-width: 254px;
}

@media (max-width: 1280px) {
  .banner-slider__link {
    max-width: 200px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .banner-slider__link {
    max-width: 200px;
  }
}

.bottom-description {
  display: block;
  padding-top: 40px;
  padding-right: 30px;
  padding-bottom: 50px;
  padding-left: 30px;
  font: 400 15px/22px "ubuntu";
  color: #404041;
  background-color: #f5f5f5;
}

@media (max-width: 767px) {
  .bottom-description {
    padding-top: 20px;
    padding-right: 16px;
    padding-bottom: 30px;
    padding-left: 16px;
  }
}

.bottom-description__left {
  width: calc(100% - 500px);
  padding-right: 45px;
  vertical-align: top;
  float: left;
}

@media (max-width: 1280px) {
  .bottom-description__left {
    width: calc(100% - 250px);
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .bottom-description__left {
    width: calc(100% - 250px);
  }
}
@media (max-width: 1023px) {
  .bottom-description__left {
    display: block;
    width: 100%;
    padding: 0;
  }
}

.bottom-description__right {
  display: inline-block;
  width: 500px;
  float: left;
  vertical-align: top;
}

@media (max-width: 1280px) {
  .bottom-description__right {
    width: 250px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .bottom-description__right {
    width: 250px;
  }
}
@media (max-width: 1023px) {
  .bottom-description__right {
    display: none;
  }
}

.bottom-description__title {
  display: block;
  padding-bottom: 15px;
  font: 700 25px "ubuntu";
  color: #404041;
}

@media (max-width: 767px) {
  .bottom-description__title {
    font-size: 20px;
    line-height: 29px;
  }
}

@media (max-width: 1023px) {
  .bottom-description__row {
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 18px;
  }
}

.bottom-description__cell {
  width: 50%;
  padding: 0 30px;
  font-size: initial;
  vertical-align: top;
  float: left;
}

.bottom-description__cell ul,
.bottom-description__cell ol {
  display: block;
  margin: 0;
  padding: 0;
  font: 400 15px/22px "ubuntu";
  color: #404041;
  list-style-position: inside;
}

.bottom-description__cell ul {
  list-style: disc;
}

@media (max-width: 1023px) {
  .bottom-description__cell {
    display: block;
    width: auto;
    padding: 0;
  }
}

.bottom-description-news .news-item {
  display: block;
}

.bottom-description-news .news-item__img {
  max-height: 100%;
}

.bottom-description--article {
  padding-bottom: 0;
}

@media (max-width: 1280px) {
  .bottom-description--article {
    padding-top: 35px;
  }

  .bottom-description--article .bottom-description__text {
    padding-bottom: 20px;
    font-size: 14px;
    line-height: 20px;
  }

  .bottom-description--article .bottom-description__left {
    width: calc(100% - 210px);
  }

  .bottom-description--article .bottom-description__right {
    width: 210px;
  }

  .bottom-description--article .news-item__image,
  .bottom-description--article .open-article__banner {
    margin-bottom: 18px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .bottom-description--article {
    padding-top: 35px;
  }

  .bottom-description--article .bottom-description__text {
    padding-bottom: 20px;
    font-size: 14px;
    line-height: 20px;
  }

  .bottom-description--article .bottom-description__left {
    width: calc(100% - 210px);
  }

  .bottom-description--article .bottom-description__right {
    width: 210px;
  }

  .bottom-description--article .news-item__image,
  .bottom-description--article .open-article__banner {
    margin-bottom: 18px;
  }
}
@media (max-width: 1023px) {
  .bottom-description--article {
    padding-top: 16px;
  }

  .bottom-description--article .bottom-description__left {
    display: inline-block;
    padding-right: 20px;
  }

  .bottom-description--article .bottom-description__right {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .bottom-description--article .bottom-description__left {
    display: block;
    width: 100%;
    padding: 0;
  }

  .bottom-description--article .bottom-description__right {
    display: none;
  }
}

.bottom-description-block {
  border: 3px solid #ffffff;
  border-radius: 5px;
  overflow: hidden;
}

.bottom-description-block__top {
  padding: 33px 0;
  background: #ff7300;
}

@media (max-width: 1280px) {
  .bottom-description-block__top {
    padding: 20px 0;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .bottom-description-block__top {
    padding: 20px 0;
  }
}

.bottom-description-block__image {
  position: relative;
  display: table;
  width: 117px;
  height: 117px;
  margin: 0 auto;
  border-radius: 50%;
  background: #ffffff;
}

.bottom-description-block__image [class*="icon-"] {
  fill: #ff7300;
}

@media (max-width: 1280px) {
  .bottom-description-block__image {
    width: 144px;
    height: 144px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .bottom-description-block__image {
    width: 144px;
    height: 144px;
  }
}

.bottom-description-block__ico {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.bottom-description-block__desc {
  padding: 29px 15px;
  text-align: center;
  background: #000000;
}

@media (max-width: 1280px) {
  .bottom-description-block__desc {
    padding: 16px 22px 18px;
    text-align: left;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .bottom-description-block__desc {
    padding: 16px 22px 18px;
    text-align: left;
  }
}

.bottom-description-block__title {
  display: block;
  padding-bottom: 9px;
  font: 700 22px "ubuntu";
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

@media (max-width: 1280px) {
  .bottom-description-block__title {
    padding-bottom: 4px;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 1px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .bottom-description-block__title {
    padding-bottom: 4px;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 1px;
  }
}

.bottom-description-block__text {
  display: block;
  font: 400 16px/21px "ubuntu";
  color: #b3b3b3;
}

@media (max-width: 1280px) {
  .bottom-description-block__text {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .bottom-description-block__text {
    font-size: 14px;
    line-height: 18px;
  }
}

.breadcrumbs {
  display: none;
  padding: 25px 0 20px;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;  /* Firefox */
}

.breadcrumbs::-webkit-scrollbar {
  display: none;  /* Safari and Chrome */
}

.breadcrumbs--visible {
  display: block;
}

@media (max-width: 1023px) {
  .breadcrumbs {
    display: block;
    padding: 22px 0 14px;
  }
}
@media (max-width: 767px) {
  .breadcrumbs {
    padding: 26px 0 19px;
  }
}

.breadcrumbs__link {
  display: inline-block;
  font: 400 14px "ubuntu";
  color: #707070;
}

.breadcrumbs__link:hover {
  color: #424243;
}

.breadcrumbs__link--slash {
  padding: 0 3px;
  cursor: default;
}

.breadcrumbs__link--slash:hover {
  color: #707070;
}

@media (max-width: 767px) {
  .breadcrumbs__link {
    margin-right: 5px;
    padding: 7px 9px;
    border: 2px solid #f77807;
    border-radius: 8px;
    font-size: 15px;
  }

  .breadcrumbs__link.breadcrumbs__link-home {
    border-radius: 8px;
  }

  .breadcrumbs__link.breadcrumbs__link-current {
    border-color: #7f7f7f;
  }

  .breadcrumbs__link--slash {
    display: none;
  }
}

.catalog-banner {
  position: relative;
  height: 335px;
  margin-bottom: 30px;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.catalog-banner__text {
  padding: 90px 90px 0;
}

.catalog-banner__title {
  display: block;
  font-size: 50px;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
}

.catalog-banner__subtitle {
  display: block;
  padding-top: 30px;
  font-size: 40px;
  font-weight: 300;
  line-height: normal;
  color: #ffffff;
}

@media (max-width: 1280px) {
  .catalog-banner {
    height: 202px;
  }

  .catalog-banner__text {
    padding: 54px 57px 0;
  }

  .catalog-banner__title {
    font-size: 35px;
  }

  .catalog-banner__subtitle {
    padding-top: 13px;
    font-size: 25px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .catalog-banner {
    height: 202px;
  }

  .catalog-banner__text {
    padding: 54px 57px 0;
  }

  .catalog-banner__title {
    font-size: 35px;
  }

  .catalog-banner__subtitle {
    padding-top: 13px;
    font-size: 25px;
  }
}
@media (max-width: 1023px) {
  .catalog-banner {
    display: none;
  }
}

.contact {
  margin: 0 -15px;
  font-size: 0;
}

.contact--column,
.delivery--column,
.dropshipping--column {
  margin: 0;
}

.corporate_clients--column {
  margin: 0;
}

.contact--column .contact__item,
.delivery--column .delivery__item,
.dropshipping--column .dropshipping__item {
  display: block;
  width: auto;
  padding: 0 0 20px;
}
@media(max-width: 767px) {
  .dropshipping--column .dropshipping__item {
    display: flex;
    align-items: center;
    padding: 0;
  }
}

.corporate_clients--column .corporate_clients__item {
  display: block;
  width: auto;
  padding: 0 0 20px;
}

.contact__item,
.delivery__item,
.dropshipping__item,
.corporate_clients__item {
  display: inline-block;
  width: 33.33%;
  padding: 0 15px 20px;
}

@media (max-width: 767px) {
  .contact__item,
  .delivery__item,
  .dropshipping__item,
  .corporate_clients__item {
    width: 50%;
  }

  .delivery_ico_moscow {
    width: 88px;
    height: 88px;
    margin: 0 50px 200px;
  }
}

.contact__icon,
.delivery__icon {
  display: inline-block;
  width: 24px;
  vertical-align: top;
}

.contact__ico,
.delivery__ico {
  display: block;
  width: 24px;
  height: 24px;
}

.contact__cont,
.delivery__cont {
  display: inline-block;
  width: calc(100% - 24px);
  padding-left: 12px;
  vertical-align: top;
}

.contact__val,
.delivery__val {
  display: block;
  font: 400 18px "ubuntu";
  color: #404041;
  white-space: normal;
}

.contact__val--phone,
.delivery__val--phone {
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .contact__val,
  .delivery__val {
    font-size: 16px;
    line-height: 24px;
  }

  .contact__val--phone,
  .delivery__val--phone {
    font-size: 18px;
  }
}

.contact__link,
.delivery__link {
  display: table;
  font: 400 18px "ubuntu";
}

.contact__link:hover,
.delivery__link:hover {
  text-decoration: underline;
}

@media (max-width: 1023px) {
  .contact__link,
  .delivery__link {
    font-size: 16px;
    line-height: 24px;
  }
}

.contact__desc,
.delivery__desc {
  display: block;
  padding: 5px 0 0;
  font: 400 15px/24px "ubuntu";
  color: #717171;
}

.filter-block {
  padding: 19px 16px 22px;
  border-radius: 3px;
  font-size: 0;
  background: #f5f5f5;
}

@media (min-width: 1600px) {
  .content-wrap-lc .wrap-lc .right-filter-lc .filter-block__btn-wrapper {
    width: 92%;
    padding-right: 0;
  }
}
@media (min-width: 1280px) {
  .content-wrap-lc .wrap-lc .right-filter-lc .filter-block {
    max-height: 2081px;
    padding-bottom: 152px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .content-wrap-lc .wrap-lc .right-filter-lc .filter-block::-webkit-scrollbar {
    width: 0;
  }

  .content-wrap-lc .wrap-lc .right-filter-lc .filter-wrap {
    position: relative;
  }

  .content-wrap-lc .wrap-lc .right-filter-lc .filter-block__btn-wrapper {
    position: absolute;
    bottom: 0;
    padding-top: 13px;
    padding-right: 16px;
    padding-bottom: 16px;

    /* border-top: 1px solid #d5d5d5; */
    background: #f5f5f5;
  }

  .content-wrap-lc .wrap-lc .right-filter-lc .filter-block__btn-wrapper:before {
    position: absolute;
    top: -21px;
    width: 100%;
    height: 60px;
    content: "";
    background: #ffffff;
    -webkit-filter: blur(20px);
    filter: blur(20px);
  }
}
@media (max-width: 1023px) {
  .filter-block {
    position: fixed;
    top: 0;
    left: -320px;
    z-index: 999;
    width: 320px;
    height: 100%;
    padding-top: 80px;
    transition:
      visibility 0.3s,
      opacity 0.3s;
    visibility: hidden;
    opacity: 0;
    background: #ffffff;
    overflow: auto;
  }

  .filter-block.active {
    left: 0;
    visibility: visible;
    opacity: 1;
  }
}

.filter-block__close {
  display: none;
}

@media (max-width: 1023px) {
  .filter-block__close {
    display: block;
  }
}

.filter-block__title {
  display: block;
  padding-bottom: 10px;
  font: 700 15px "ubuntu";
  color: #404041;
}

.filter-block__item {
  padding-bottom: 13px;
}

.filter-block-checks {
  padding-bottom: 8px;
  border-bottom: 1px solid #d5d5d5;
}

.filter-block-checks--row .filter-block-checks__item {
  width: 100%;
  padding-right: 0;
}

.filter-block-checks--no-border {
  border: 0;
}

.filter-block-checks__list {
  overflow: hidden;
}

.filter-block-checks__item {
  display: inline-block;
  width: 50%;
  padding: 0 15px 8px 0;
  font: 400 14px "ubuntu";
  color: #717171;
  vertical-align: top;
}

.filter-block-checks__item label {
  max-width: 100%;
}

.filter-block-checks__item label span {
  text-overflow: ellipsis;
  overflow: hidden;
}

.filter-block-checks .checkbox input[type="checkbox"] + span {
  min-height: auto;
  padding-left: 16px;
  font-size: 14px;
}

.filter-block-checks .checkbox input[type="checkbox"] + span:before {
  top: 2px;
  width: 11px;
  height: 11px;
}

.filter-block-checks .checkbox input[type="checkbox"] + span:after {
  top: 3px;
  left: 3px;
  width: 5px;
  height: 7px;
}

.filter-block-checks .checkbox input[type="checkbox"]:checked + span {
  color: #404041;
}

.filter-block-checks__link {
  display: block;
  margin-left: 5px;
  font: 400 14px "ubuntu";
  color: #0075b9;
  fill: #0075b9;
}

.filter-block-checks__link-ico {
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
  fill: inherit;
}

.filter-block-checks__link-text {
  display: inline-block;
  vertical-align: middle;
}

.filter-block-checks__link:hover {
  color: #e4a030;
  fill: #e4a030;
}

.filter-block-checks__link.open .filter-block-checks__link-ico {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.filter-block-slider {
  padding-bottom: 24px;
}

.filter-block-slider__inputs {
  position: relative;
  margin-bottom: 6px;
}

.filter-block-slider__inputs:before {
  position: absolute;
  top: calc(50% - 0.5px);
  left: calc(50% - 8px);
  display: block;
  width: 16px;
  height: 1px;
  content: "";
  background: #d5d5d5;
}

.filter-block-slider__inputs .input {
  height: 31px;
  padding-right: 14px;
  padding-left: 14px;
  font-size: 14px;
}

@media (max-width: 1600px) {
  .filter-block-slider__inputs .input {
    padding-right: 5px;
    padding-left: 5px;
  }
}

.filter-block-slider__inputs-left {
  display: inline-block;
  width: 50%;
  padding-right: 14px;
  vertical-align: top;
}

.filter-block-slider__inputs-right {
  display: inline-block;
  width: 50%;
  padding-left: 14px;
  vertical-align: top;
}

.filter-block-slider__text {
  display: block;
  padding-bottom: 11px;
  font-size: 14px;
  color: #717171;
}

.filter-block__submit {
  margin-bottom: 20px;
  border: 0;
  font-size: 14px;
  font-weight: 400;
}

.filter-block__reset {
  font-size: 14px;
  font-weight: 400;
  border-width: 1px;
}

.filter-block__show {
  display: none;
  margin-top: 23px;
  padding: 14px 15px;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 1023px) {
  .filter-block__show {
    display: block;
  }
}

.footer {
  position: relative;
  background: #282828;
}

.footer__top {
  padding: 33px 0 18px;
  background: #282828;
}

@media (max-width: 1280px) {
  .footer__top {
    padding: 35px 0 18px;
  }
}
@media (max-width: 1023px) {
  .footer__top {
    padding: 35px 0 0 248px;
  }

  .footer__top:after {
    display: block;
    content: " ";
    clear: both;
  }
}
@media (max-width: 767px) {
  .footer__top {
    padding: 24px 0 22px;
  }
}

.footer__center {
  display: inline-block;
  width: 44%;
  padding-top: 5px;
  padding-right: 15px;
  padding-left: 25px;
  vertical-align: top;
}

@media (max-width: 1530px) {
  .footer__center {
    width: 48%;
  }
}
@media (max-width: 1280px) {
  .footer__center {
    width: 41%;
    padding-left: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .footer__center {
    width: 38%;
    padding-top: 1px;
    padding-left: 14px;
  }
}
@media (max-width: 1245px) {
  .footer__center {
    width: 45%;
  }
}
@media (max-width: 1200px) {
  .footer__center {
    width: 50%;
  }
}
@media (max-width: 1023px) {
  .footer__center {
    width: 100%;
    padding: 0;
    float: right;
  }
}
@media (max-width: 767px) {
  .footer__center {
    width: 100%;
    padding: 0;
  }
}

.footer__bottom {
  padding-top: 25px;
  padding-bottom: 25px;
  background: #000000;
}
@media (max-width: 767px) {
  .footer__bottom {
    padding-top: 15px;
    padding-bottom: 25px;
  }
}

.footer__bottom-left {
  display: inline-block;
  width: 28%;
  padding-right: 25px;
  vertical-align: top;
}

.footer__bottom-right {
  display: inline-block;
  width: 72%;
  margin-top: -4px;
  padding-bottom: 21px;
  padding-left: 21px;
  vertical-align: top;
}


.footer__bottom-wrapper {
  display: flex;
}
@media (max-width: 1280px) {
  .footer__bottom-wrapper {
    position: relative;
    padding-bottom: 0;
  }

  .footer__bottom-left {
    width: 40%;
  }

  .footer__bottom-right {
    width: 60%;
    padding-left: 14px;
  }
}
@media (max-width: 1023px) {
  .footer__bottom-wrapper {
    position: static;
    padding-bottom: 0;
  }

  .footer__bottom-left {
    position: absolute;
    top: 35px;
    left: 22px;
    width: 228px;
    padding: 0;
  }

  .footer__bottom-right {
    display: block;
    width: auto;
    padding: 0 0 16px 0;
    float: none;
  }
}
@media (max-width: 767px) {
  .footer__bottom-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .footer__bottom-right {
    min-height: 0;
    padding: 0;
  }
  .footer__bottom-left {
    position: unset;
    width: unset;
  }
}

.footer__copyright {
  display: block;
  font: 400 14px/22px "ubuntu";
  color: #b3b3b3;
  white-space: nowrap;
}

@media (max-width: 1023px) {
  .footer__copyright {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .footer__copyright {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.footer__mob {
  display: table;
  width: auto;
  min-width: 233px;
}

.footer__mob-desctop {
  display: none;
}

@media (max-width: 1280px) {
  .footer__mob {
    position: absolute;
    bottom: 0;
    left: 40%;
    margin-left: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .footer__mob {
    position: absolute;
    bottom: 0;
    left: 40%;
    margin-left: 14px;
  }
}
@media (max-width: 1023px) {
  .footer__mob {
    position: relative;
    left: 0;
    width: 100%;
    min-width: 0;
    margin-left: 0;
    border: 1px solid #545454;
  }

  .footer__mob-mobile {
    display: none;
  }

  .footer__mob-desctop {
    display: inline;
  }
}
@media (max-width: 670px) {
  .footer__mob {
    padding: 14px 10px 16px;
    border: 1px solid #545454;
    font-size: 14px;
    background: #484848;
  }
}

.footer__desc {
  display: block;
  font: 400 14px/22px "ubuntu";
  color: #b3b3b3;
}

.footer__desc-link {
  color: #ffffff;
}

@media (max-width: 767px) {
  .footer__desc {
    font-size: 14px;
  }
}

.footer-catalog {
  display: inline-block;
  width: 28%;
  padding-right: 25px;
  vertical-align: top;
}

@media (max-width: 1530px) {
  .footer-catalog {
    width: 32%;
  }
}
@media (max-width: 1280px) {
  .footer-catalog {
    width: 40%;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .footer-catalog {
    width: 39%;
  }
}
@media (max-width: 1245px) {
  .footer-catalog {
    width: 35%;
  }
}
@media (max-width: 1200px) {
  .footer-catalog {
    width: 45%;
  }
}
@media (max-width: 1023px) {
  .footer-catalog {
    width: 100%;
    padding: 0 0 23px 0;
    float: right;
  }
}

.footer-catalog__title {
  display: block;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid #555555;
  font: 700 17px "ubuntu";
  color: #ffffff;
  text-transform: uppercase;
}

@media (max-width: 1280px) {
  .footer-catalog__title {
    font-size: 15px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .footer-catalog__title {
    font-size: 15px;
  }
}

.footer-catalog__list {
  margin: 0 -15px;
}

.footer-catalog__list-item {
  display: inline-block;
  width: 49%;
  padding: 0 15px 15px;
  vertical-align: top;
}

@media (max-width: 1280px) {
  .footer-catalog__list-item {
    padding-bottom: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .footer-catalog__list-item {
    padding-bottom: 14px;
  }
}

.footer-catalog__list-link {
  display: block;
  font: 400 15px "ubuntu";
  color: #ffffff;
}

.footer-catalog__list-link:hover {
  color: #b7d7ff;
}

@media (max-width: 1280px) {
  .footer-catalog__list-link {
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .footer-catalog__list-link {
    font-size: 14px;
  }
}

.footer-yandex {
  display: table;
  width: 100%;
  margin-bottom: 32px;
  border: 1px solid #545454;
  overflow: hidden;
}

@media (max-width: 1280px) {
  .footer-yandex {
    margin-bottom: 27px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .footer-yandex {
    margin-bottom: 27px;
  }
}

.footer-yandex__left {
  display: table-cell;
  width: calc(100% - 180px);
  padding: 11px 36px 11px 46px;
  vertical-align: top;
}

@media (max-width: 1400px) {
  .footer-yandex__left {
    padding-right: 0;
    padding-left: 25px;
  }
}

.footer-yandex__right {
  position: relative;
  display: table-cell;
  width: 180px;
  padding: 25px 27px;
  background: #333333;
  vertical-align: middle;
}

.footer-yandex__right:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0%;
  border: 12px solid transparent;
  content: "";
  border-left-color: #282828;
  border-top-width: 34px;
  border-bottom-width: 34px;
}

@media (max-width: 1280px) {
  .footer-yandex__right {
    padding: 25px 21px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .footer-yandex__right {
    padding: 25px 21px;
  }
}

.footer-yandex__logo {
  display: inline-block;
  width: 72px;
  height: 46px;
  vertical-align: middle;
  fill: #ffffff;
}

.footer-yandex__text {
  display: inline-block;
  width: calc(100% - 72px);
  padding-left: 46px;
  font: 400 18px/22px "ubuntu";
  color: #b2b2b2;
  vertical-align: middle;
}

@media (max-width: 1400px) {
  .footer-yandex__text {
    padding-left: 30px;
  }
}
@media (max-width: 1280px) {
  .footer-yandex__text {
    padding-left: 22px;
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .footer-yandex__text {
    padding-left: 22px;
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .footer-yandex__text {
    display: none;
  }
}

.footer-yandex__star {
  text-align: right;
}

.footer-yandex__star-link {
  display: inline-block;
  margin-right: 10px;
  vertical-align: top;
  fill: #ffffff;
}

.footer-yandex__star-link:last-child {
  margin-right: 0;
}

.footer-yandex__star-ico {
  display: block;
  width: 16px;
  height: 15px;
  fill: inherit;
}

.footer-nav {
  display: flex;
  width: 81%;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .footer-nav__list {
    width: 33.33%;
  }
}
@media (max-width: 767px) {
  .footer-nav__list {
    width: auto;
  }
}

.footer-nav__item {
  display: block;
  padding-bottom: 26px;
}

@media (max-width: 1280px) {
  .footer-nav__item {
    padding-bottom: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .footer-nav__item {
    padding-bottom: 23px;
  }
}

.footer-nav__link {
  display: block;
  font: 400 15px "ubuntu";
  color: #b3b3b3;
}

.footer-nav__link:hover {
  color: #b7d7ff;
}

@media (max-width: 1280px) {
  .footer-nav__link {
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .footer-nav__link {
    font-size: 14px;
  }
}

.footer-contacts {
  display: inline-block;
  width: 27%;
  padding-top: 14px;
  padding-left: 21px;
  vertical-align: top;
}

@media (max-width: 1530px) {
  .footer-contacts {
    width: 19%;
  }
}
@media (max-width: 1280px) {
  .footer-contacts {
    width: 19%;
    padding-top: 13px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .footer-contacts {
    width: 22%;
    padding-top: 6px;
    padding-left: 25px;
  }
}
@media (max-width: 1240px) {
  .footer-contacts {
    width: 19%;
    padding-left: 0;
  }
}
@media (max-width: 1200px) {
  .footer-contacts {
    width: 100%;
    padding: 25px 0 0;
  }

  .footer-contacts:after {
    display: block;
    content: " ";
    clear: both;
  }
}
@media (max-width: 1023px) {
  .footer-contacts {
    width: 230px;
    margin: 0 0 0 -254px;
    padding: 0;
    float: left;
  }
}
@media (max-width: 767px) {
  .footer-contacts {
    display: block;
    width: auto;
    margin: 0;
    padding: 0;
    float: none;
  }

  .footer-contacts:after {
    display: block;
    content: " ";
    clear: both;
  }
}

.footer-contacts__top {
  padding-bottom: 50px;
}

@media (max-width: 1530px) {
  .footer-contacts__top {
    padding-bottom: 30px;
  }
}
@media (max-width: 1200px) {
  .footer-contacts__top {
    display: inline-block;
    padding: 0;
    vertical-align: top;
    float: left;
  }
}
@media (max-width: 1023px) {
  .footer-contacts__top {
    width: 100%;
    float: none;
  }
}
@media (max-width: 767px) {
  .footer-contacts__top {
    width: 52%;
    min-height: 160px;
    padding: 0 0 0 30px;
    float: right;
  }
}

.footer-contacts-phone {
  display: inline-block;
  width: calc(100% - 150px);
  vertical-align: top;
}

@media (max-width: 1530px) {
  .footer-contacts-phone {
    display: block;
    width: 100%;
    padding-bottom: 15px;
  }
}
@media (max-width: 1200px) {
  .footer-contacts-phone {
    display: inline-block;
    padding: 0 30px 0 0;
  }
}
@media (max-width: 767px) {
  .footer-contacts-phone {
    display: block;
    width: auto;
    padding: 0 0 15px;
    text-align: right;
  }
}

.footer-contacts-phone__number {
  display: block;
  margin-bottom: 29px;
  padding: 8px 10px;
  border: 2px solid #ffffff;
  border-radius: 11px;
  font: 700 23px "ubuntu";
  text-align: center;
  color: #ffffff;
  fill: #b2b2b2;
  white-space: nowrap;
}

.footer-contacts-phone__number span {
  display: block;
  margin-left: 28px;
  font-size: 17px;
  font-weight: 400;
}

.footer-contacts-phone__number-ico {
  position: relative;
  top: 8px;
  width: 23px;
  height: 23px;
  margin-bottom: 3px;
  fill: inherit;
  vertical-align: top !important;
}

.footer-contacts-phone__number-text {
  display: inline-block;
  padding-left: 5px;
  vertical-align: bottom;
}

.footer-contacts-phone__number-text span {
  padding-right: 4px;
  font-weight: 400;
  color: #b3b3b3;
}

@media (max-width: 1400px) {
  .footer-contacts-phone__number {
    font-size: 24px;
  }
}
@media (max-width: 1280px) {
  .footer-contacts-phone__number {
    font-size: 22px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .footer-contacts-phone__number {
    margin-bottom: 14px;
    font-size: 22px;
  }
}

.footer-contacts-phone__time {
  display: block;
  font: 400 15px "ubuntu";
  color: #b3b3b3;
}

@media (max-width: 1280px) {
  .footer-contacts-phone__time {
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .footer-contacts-phone__time {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .footer-contacts-form {
    display: inline-block;
    margin-top: -4px;
    padding-left: 30px;
    vertical-align: top;
    float: right;
  }
}
@media (max-width: 1023px) {
  .footer-contacts-form {
    position: absolute;
    right: 22px;
    bottom: 19px;
    width: 228px;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .footer-contacts-form {
    position: static;
    display: block;
    width: auto;
    margin: 0;
    padding: 10px 0 0 0;
    float: none;
    clear: both;
  }
}

.footer-contacts-form__title {
  display: block;
  padding-bottom: 19px;
  font: 400 15px/20px "ubuntu";
  color: #ffffff;
}

@media (max-width: 1280px) {
  .footer-contacts-form__title {
    padding-bottom: 13px;
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .footer-contacts-form__title {
    padding-bottom: 13px;
    font-size: 14px;
  }
}

.footer-contacts-form__box {
  position: relative;
}

.footer-contacts-form__input {
  width: 100%;
  height: 48px;
  padding: 10px 50px 10px 21px;
  border: 1px solid #545454;
  border-radius: 3px;
  font: 400 15px "ubuntu";
  color: #b3b3b3;
  background-color: #484848;
  outline: none;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.footer-contacts-form__input::-webkit-input-placeholder {
  color: #b3b3b3;
}

.footer-contacts-form__input:-ms-input-placeholder {
  color: #b3b3b3;
}

.footer-contacts-form__input:focus::-webkit-input-placeholder {
  color: transparent;
}

.footer-contacts-form__input:focus:-ms-input-placeholder {
  color: transparent;
}

.footer-contacts-form__input:focus::placeholder {
  color: transparent;
}

.footer-contacts-form__input:focus {
  color: #424243;
  background-color: #ffffff;
}

.footer-contacts-form__input:focus
  + .footer-contacts-form__submit
  .footer-contacts-form__submit-ico {
  visibility: hidden;
  opacity: 0;
}

.footer-contacts-form__input:focus
  + .footer-contacts-form__submit
  .footer-contacts-form__submit-ico--hover {
  visibility: visible;
  opacity: 1;
}

.footer-contacts-form__submit {
  position: absolute;
  top: calc(50% - 7px);
  right: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  fill: #ffffff;
  background: none;
  outline: 0;
  cursor: pointer;
}

.footer-contacts-form__submit:before {
  display: none;
}

.footer-contacts-form__submit-ico {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  fill: inherit;
}

.footer-contacts-form__submit-ico--hover {
  visibility: hidden;
  opacity: 0;
}

.footer-contacts-form__submit:hover {
  opacity: 0.8;
}

.footer-social {
  display: inline-block;
  width: 150px;
  padding-top: 5px;
  vertical-align: top;
}

@media (max-width: 1530px) {
  .footer-social {
    display: block;
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .footer-social {
    display: inline-block;
    width: 150px;
  }
}
@media (max-width: 1023px) {
  .footer-social {
    position: static;
    padding: 55px 0 0 0;
  }
}
@media (max-width: 767px) {
  .footer-social {
    display: block;
    width: auto;
  }
}
@media (max-width: 670px) {
  .footer-social {
    text-align: center;
  }
}

.footer-social__item {
  display: inline-block;
  margin-right: 23px;
  vertical-align: top;
}

.footer-social__item:last-child {
  margin-right: 0;
}

.footer-social__link {
  display: block;
  fill: #b3b3b3;
}

.footer-social__link:hover {
  fill: #ffffff;
}

.footer-social__ico {
  display: block;
  width: 28px;
  height: 28px;
  fill: inherit;
}

.payment-type {
  margin: 0 -7px -15px;
}

.payment-type__item {
  display: inline-block;
  padding: 0 7px 15px;
  vertical-align: top;
}

.payment-type__link {
  position: relative;
  display: block;
  width: 60px;
  height: 38px;
  border-radius: 3px;
  background: #ffffff;
}

.payment-type__link:hover {
  opacity: 0.8;
}

.payment-type__ico {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
}

.gallery {
  padding-bottom: 20px;
  font-size: 0;
}

@media (max-width: 1023px) {
  .gallery {
    margin-bottom: -10px;
    padding-bottom: 0;
  }
}

.gallery__list {
  margin: 0 -15px;
}

@media (max-width: 1023px) {
  .gallery__list {
    overflow: hidden;
    white-space: nowrap;
    overflow-x: auto;
  }
}
@media (max-width: 767px) {
  .gallery__list {
    margin: 0 -10px;
  }
}

.gallery__list-item {
  display: inline-block;
  width: 20%;
  padding: 0 15px 30px;
  vertical-align: top;
}

@media (max-width: 1280px) {
  .gallery__list-item {
    width: 25%;
  }

  .gallery__list-item:nth-child(1n + 9) {
    display: none;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .gallery__list-item {
    width: 25%;
  }

  .gallery__list-item:nth-child(1n + 9) {
    display: none;
  }
}
@media (max-width: 1023px) {
  .gallery__list-item {
    width: 340px;
  }

  .gallery__list-item:nth-child(1n) {
    display: inline-block;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .gallery__list-item {
    width: 200px;
    padding: 0 10px;
  }
}

.gallery__list-box {
  display: block;
}

.gallery__list-box:hover {
  opacity: 0.8;
}

.gallery__list-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
}

.gallery-nav:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1023px) {
  .gallery-nav {
    display: none;
  }
}

.gallery-nav__link {
  display: table;
  width: auto;
  min-width: 340px;
  padding: 17px 15px 22px;
  border-width: 1px;
}

.gallery-nav__link--prev {
  float: left;
}

.gallery-nav__link--next {
  float: right;
}

@media (max-width: 1280px) {
  .gallery-nav__link {
    min-width: 270px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .gallery-nav__link {
    min-width: 270px;
  }
}

.guarantee {
  padding: 54px 35px 51px;
  background: #404041;
}

@media (max-width: 1280px) {
  .guarantee {
    padding: 29px 25px 38px 20px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .guarantee {
    padding: 29px 25px 38px 20px;
  }
}
@media (max-width: 767px) {
  .guarantee {
    padding: 5px 35px;
  }
}
@media (max-width: 767px) {
  .guarantee__list {
    margin: 0 -25px;
  }
}

.guarantee__item {
  display: block;
  padding-bottom: 58px;
}

.guarantee__item:last-child {
  padding-bottom: 0;
}

@media (max-width: 1280px) {
  .guarantee__item {
    padding-bottom: 20px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .guarantee__item {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .guarantee__item {
    display: inline-block;
    width: 33.33%;
    padding: 0 25px;
    border-right: 1px solid #555555;
    text-align: center;
  }

  .guarantee__item:last-child {
    border: 0;
  }
}

.guarantee__icon {
  display: inline-block;
  width: 60px;
  margin-top: 6px;
  vertical-align: top;
}

@media (max-width: 1280px) {
  .guarantee__icon {
    width: 50px;
    margin-top: 3px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .guarantee__icon {
    width: 50px;
    margin-top: 3px;
  }
}
@media (max-width: 767px) {
  .guarantee__icon {
    display: none;
  }
}

.guarantee__ico {
  display: block;
  margin: 0 auto;
}

.guarantee__cont {
  display: inline-block;
  width: calc(100% - 60px);
  padding-left: 21px;
  vertical-align: top;
}

@media (max-width: 1280px) {
  .guarantee__cont {
    width: calc(100% - 50px);
    padding-left: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .guarantee__cont {
    width: calc(100% - 50px);
    padding-left: 14px;
  }
}
@media (max-width: 767px) {
  .guarantee__cont {
    width: 100%;
    padding: 0;
  }
}

.guarantee__title {
  display: block;
  padding-bottom: 8px;
  font: 700 18px/25px "ubuntu";
  color: #ffffff;
}

.guarantee__title br {
  display: none;
}

@media (max-width: 1280px) {
  .guarantee__title {
    padding-bottom: 1px;
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .guarantee__title {
    padding-bottom: 1px;
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 767px) {
  .guarantee__title {
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
  }

  .guarantee__title br {
    display: block;
  }
}

.guarantee__text {
  display: block;
  font: 400 16px/21px "ubuntu";
  color: #b3b3b3;
}

@media (max-width: 1280px) {
  .guarantee__text {
    font-size: 14px;
    line-height: 15px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .guarantee__text {
    font-size: 14px;
    line-height: 15px;
  }
}
@media (max-width: 767px) {
  .guarantee__text {
    display: none;
  }
}

.header.header--fixed .header__top-right {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 15px 55px 0 0;
}

@media (max-width: 1023px) {
  .header.header--fixed .header__actions {
    padding: 0;
  }
}

.header.header--fixed .header__actions-item {
  border: none;
  color: #404041;
}

.header.header--fixed .header__actions-item:hover {
  color: #ff7300;
  background: none;
}

@media (max-width: 1280px) {
  .header.header--fixed .header__actions-item {
    min-width: 0;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header.header--fixed .header__actions-item {
    min-width: 0;
  }
}

.header.header--fixed .header__shop-cart {
  color: #404041;
}

.header.header--fixed .header__shop-cart-icon {
  fill: #000000;
}

.header.header--fixed .header__shop-cart-counter {
  color: #ffffff;
}

@media (max-width: 1280px) {
  .header.header--fixed .header__shop-cart {
    padding-left: 50px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header.header--fixed .header__shop-cart {
    padding-left: 50px;
  }
}

.header.header--fixed .header__center {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  padding: 0 55px 0 255px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

@media (max-width: 1023px) {
  .header.header--fixed .header__center {
    padding: 0 22px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }
}

.header.header--fixed .header__center-top {
  padding: 0 310px 0 0;
  border: none;
}

@media (max-width: 1250px) {
  .header.header--fixed .header__center-top {
    padding: 0 270px 0 0;
  }
}

.header.header--fixed .header__center-bottom {
  display: none;
}

.header.header--fixed .header__search {
  width: calc(100% - 400px);
  margin: 11px 0 0 0;
  float: left;
}

@media (max-width: 1200px) {
  .header.header--fixed .header__search {
    width: calc(100% - 310px);
  }
}
@media (max-width: 1100px) {
  .header.header--fixed .header__search {
    width: calc(100% - 200px);
  }
}
@media (max-width: 1023px) {
  .header.header--fixed .header__search {
    width: calc(100% - 170px);
  }
}

.header.header--fixed .header__search-input {
  height: 38px;
  font-size: 14px;
}

.header.header--fixed .header__search-btn {
  height: 38px;
}

.header.header--fixed .header__search-icon {
  width: 13px;
  height: 13px;
}

.header.header--fixed .header__logo {
  width: 190px;
  margin: 16px 0 0 -190px;
}

.header.header--fixed .header__logo-icon-lg {
  display: none;
}

.header.header--fixed .header__logo-icon-sm {
  display: inline-block;
}

.header.header--fixed .header__logo-icon-extra {
  display: inline-block;
}

.header.header--fixed .header__autorization {
  display: none;
}

.header.header--fixed .header__contacts {
  padding: 20px 0 20px 65px;
  float: left;
}

@media (max-width: 1500px) {
  .header.header--fixed .header__contacts {
    width: 400px;
  }
}
@media (max-width: 1200px) {
  .header.header--fixed .header__contacts {
    width: 310px;
  }
}
@media (max-width: 1100px) {
  .header.header--fixed .header__contacts {
    width: 200px;
    padding: 15px 0 10px 65px;
  }
}
@media (max-width: 1100px) {
  .header.header--fixed .header__contacts-phones {
    margin: -5px 0 0 0;
  }
}
@media (max-width: 1100px) {
  .header.header--fixed .header__contacts-btn {
    margin: 5px 0 0 -35px;
  }
}

.header-popup {
  position: fixed;
  top: 60px;
  left: 50%;
  z-index: 121;
  display: none;
  width: 100%;
  max-width: 440px;
  margin: 0 0 0 -220px;
  border-radius: 3px;
  background: #ffffff;
  -webkit-transform: translate3d(0);
  transform: translate3d(0);
}
@media (max-width: 1023px) {
  .header-popup {
    margin: 0;
    transform: translateX(-50%);
  }
}
@media (max-width: 991px) {
  .header-popup {
    max-height: 90vh;
    overflow: auto;
  }
}

.header-popup__top {
  padding: 25px 70px 25px 30px;
}
@media (max-width: 991px) {
  .header-popup__top {
    padding-top: 20px;
    padding-right: 40px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
}

.header-popup__top .header-popup__main-title {
  padding-bottom: 0;
}

.header-popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  width: 32px;
  height: 32px;
  float: left;
  cursor: pointer;
}
@media (max-width: 767px) {
  .header-popup__close {
    top: 15px;
    right: 10px;
    width: 32px;
    height: 32px;
  }
}

.header-popup__close:before,
.header-popup__close:after {
  position: absolute;
  top: -5px;
  left: 50%;
  display: block;
  width: 6px;
  height: 42px;
  margin-left: -3px;
  border-radius: 2px;
  content: "";
}
@media (max-width: 767px) {
  .header-popup__close:before,
  .header-popup__close:after {
    top: 3px;
    width: 2px;
    height: 24px;
    margin: 0;
    color: #000000;
  }
}

.header-popup__close:before {
  background-image: linear-gradient(135deg, #dbdbdb 0%, #b1b1b1 100%);
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  .header-popup__close:before {
    background-color: #000000;
    background-image: unset;
  }
}

.header-popup__close:after {
  background-image: linear-gradient(225deg, #dbdbdb 0%, #b1b1b1 100%);
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .header-popup__close:after {
    background-color: #000000;
    background-image: unset;
  }
}

.header-popup__tabs {
  line-height: 0;
  letter-spacing: -5px;
}

.header-popup__tabs-item {
  display: inline-block;
  padding-left: 30px;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: normal;
}
@media (max-width: 767px) {
  .header-popup__tabs-item {
    padding-left: 15px;
    font-size: 18px;
  }
}

.header-popup__tabs-item:first-child {
  padding: 0;
}

.header-popup__tabs-item .header-popup__tabs-link {
  color: #404041;
}

.header-popup__tabs-item.active .header-popup__tabs-link {
  color: #ff7300;
}

.header-popup__tab-content {
  display: none;
}

.header-popup__tab-content.active {
  display: block;
}

.header-popup__main {
  padding: 30px;
  background: #f5f5f5;
}
@media (max-width: 767px) {
  .header-popup__main {
    padding: 15px;
    padding-bottom: 20px;
  }
}

.header-popup__main-title {
  display: block;
  padding: 0 0 15px 0;
  font-size: 20px;
  font-weight: 700;
}

.header-popup__input-box {
  position: relative;
  padding: 0 0 20px 0;
}

.header-popup__input-box:after {
  display: block;
  content: " ";
  clear: both;
}

.header-popup__input-box-icon {
  position: absolute;
  top: 19px;
  left: 16px;
  width: 16px;
  height: 16px;
}

.header-popup__checkbox {
  float: left;
}

.header-popup__remind-link {
  line-height: 24px;
  float: right;
}

.header-popup__phone {
  display: block;
  padding: 0 0 5px 0;
  font-size: 20px;
}

.header-popup__time {
  display: block;
  font-size: 17px;
  color: #717171;
}

.header-popup__title {
  display: block;
  font-size: 25px;
  font-weight: 700;
}

.header-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
  padding: 0 0 15px 0;
  color: #ffffff;
  background: #ffa800;
}

.header-submenu:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 980px) {
  .header-submenu {
    position: relative;
    top: 0;
    left: 0;
    min-height: 0;
    padding: 5px 24px;
  }
}

.header-submenu__row {
  white-space: nowrap;
  letter-spacing: -5px;
}

@media (max-width: 980px) {
  .header-submenu__row {
    white-space: normal;
  }
}

.header-submenu__col {
  display: block;
  width: 320px;
  padding: 15px 30px 0;
  letter-spacing: normal;
}

@media (max-width: 1400px) {
  .header-submenu__col {
    width: 280px;
  }
}
@media (max-width: 1199px) {
  .header-submenu__col {
    width: 220px;
    padding: 15px 15px 0;
  }
}
@media (max-width: 980px) {
  .header-submenu__col {
    display: block;
    width: 100%;
    padding: 0;
  }
}

.header-submenu__col-title {
  display: block;
  margin-bottom: 10px;
  padding: 0 0 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.header-submenu__col-title a {
  color: #ffffff;
}

.header-submenu__col-title a:hover {
  color: #e4a030;
}

@media (max-width: 1280px) {
  .header-submenu__col-title {
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header-submenu__col-title {
    font-size: 14px;
  }
}
@media (max-width: 980px) {
  .header-submenu__col-title {
    padding-bottom: 0;
    border-bottom: none;
  }
}
@media (max-width: 1280px) {
  .header-submenu__list {
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header-submenu__list {
    font-size: 14px;
  }
}
@media (max-width: 980px) {
  .header-submenu__list {
    display: none;
  }
}

.header-submenu__list-item {
  padding: 0 0 5px 0;
}

@media (max-width: 1280px) {
  .header-submenu__list-item {
    padding: 0;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header-submenu__list-item {
    padding: 0;
  }
}

.header-submenu__link {
  color: #ffffff;
}

.header {
  position: relative;
  z-index: 100;
}

@media (min-width: 1024px) {
  .header--index .header__sidebar {
    display: block;
  }
}
@media (min-width: 1024px) {
  .header--catalog .header__sidebar {
    display: block;
  }
}
@media (max-width: 1023px) {
  .header {
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }

  .header--index .nav__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-flow: unset;
    border-top: 1px solid #e8e8e8;
  }
}
@media (max-width: 767px) {
  .header {
    box-shadow: unset;
  }
  .header--index .nav__list {
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #e7e7e7;
  }
}

.header.overlay:before {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: block;
  content: "";
  background: rgba(255, 115, 0, 0.8);
}

@media (max-width: 1023px) {
  .header .container {
    padding: 0;
  }
}

.header__top {
  padding: 11px 0 12px;
  background: #000000;
}

.header__top:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1280px) {
  .header__top {
    padding: 5px 0 6px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header__top {
    padding: 5px 0 6px;
  }
}
@media (max-width: 1023px) {
  .header__top {
    padding: 0;
    background: none;
  }
}

.header__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.header__top-left {
  max-height: 32px;
  margin-right: 20px;
  display: flex;
  flex-grow: 1;
}

.header__top-left:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1300px) {
  .header__top-left {
    margin-right: 10px;
  }
}

@media (max-width: 1023px) {
  .header__top-left {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 320px;
    padding: 0;
    transition: transform 0.3s;
    background: #ffffff;
    transform: translate(-100%, 0);
  }
}

.header__top-right {
  float: right;
}

.header__top-right:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1023px) {
  .header__top-right {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .header__top-right {
    right: 10px;
    display: flex;
  }
}

.header__top-close {
  display: none;
}

@media (max-width: 1023px) {
  .header__top-close {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 72px;
    height: 72px;
    float: left;
    cursor: pointer;
  }

  .header__top-close:before,
  .header__top-close:after {
    position: absolute;
    top: 25%;
    left: 50%;
    display: block;
    width: 6px;
    height: 42px;
    margin-top: -3px;
    margin-left: -3px;
    border-radius: 2px;
    content: "";
    background: #000000;
  }

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

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

.header__city-select {
  min-width: 162px;
  line-height: 30px;
}

@media (max-width: 1280px) {
  .header__city-select {
    min-width: 0;
    margin: 0 20px 0 0;
  }
}

@media (max-width: 1300px) and (min-width: 1024px) {
  .header__city-select {
    min-width: 0;
    margin: 0 20px 0 0;
  }
}

@media (max-width: 1023px) {
  .header__city-select {
    padding: 16px 10px 14px 125px;
  }
}

.header__city-select-link {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 1023px) {
  .header__city-select-link {
    font-size: 18px;
    color: #0075b9;
  }
}

.header__city-select-icon {
  display: inline-block;
  width: 9px;
  height: 5px;
  margin-left: 5px;
  fill: #ff7300;
  vertical-align: middle;
}

@media (max-width: 1023px) {
  .header__city-select-icon {
    fill: #0075b9;
  }
}

.header__top-list {
  padding: 0;
  font-size: 0;
  line-height: 0;
  display: flex;
  flex-grow: 1;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 1023px) {
  .header__top-list {
    display: none;
  }
}

.header__top-list-item {
  display: inline-block;
  padding: 0;
  font-size: 17px;
  line-height: 24px;
}

.header__top-list-item:first-child {
  padding: 0;
}

@media (max-width: 1500px) {
  .header__top-list-item {
    font-size: 15px;
  }
}
@media (max-width: 1280px) {
  .header__top-list-item {
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header__top-list-item {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .header__top-list-item {
    display: block;
    padding: 0;
    font-size: 18px;
  }
}

.header__top-list-link {
  color: #c4c4c4;
}

.header__top-list-link:hover {
  color: #ffffff;
}

@media (max-width: 1023px) {
  .header__top-list-link {
    display: block;
    padding: 11px 0;
    color: #404041;
  }

  .header__top-list-link:hover {
    color: #e4a030;
  }
}

.header__actions {
  line-height: 0;
  float: left;
  letter-spacing: -5px;
}

.header__actions-item {
  display: inline-block;
  min-width: 77px;
  margin-left: -1px;
  padding: 2px 5px;
  border: 1px solid #3d3d3d;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  letter-spacing: normal;
}

@media (max-width: 1023px) {
  .header__actions-item--compare {
    display: none;
  }
}

.header__actions-item:first-child {
  border-radius: 3px 0 0 3px;
}

.header__actions-item:last-child {
  border-radius: 0 3px 3px 0;
}

.header__actions-item:hover {
  color: #ffffff;
  background: #3d3d3d;
}

@media (max-width: 1070px) {
  .header__actions-item {
    min-width: 60px;
  }
}
@media (max-width: 1023px) {
  .header__actions-item {
    position: relative;
    min-width: 0;
    padding: 17px 17px;
    border: none;
    font-size: 18px;
    color: #404041;
  }

  .header__actions-item:hover {
    background: none;
  }

  .header__actions-item:hover [class*="icon-"] {
    fill: #ff7300;
    stroke: #ff7300;
  }
}
@media (max-width: 767px) {
  .header__actions-item {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 15px;
  }
}

.header__actions-icon {
  display: inline-block;
  margin: -4px 5px 0 0;
  vertical-align: middle;
  stroke: #ff7300;
}
@media (max-width: 1023px) {
  .header__actions-icon {
    width: 24px;
    height: 18px;
    margin: 0;
    stroke: #000000;
  }
}
@media (max-width: 767px) {
  .header__actions-icon {
    width: 24px;
    height: 18px;
  }
}

@media (max-width: 1023px) {
  .header__actions-counter {
    position: absolute;
    top: 11px;
    right: 8px;
    display: block;
    min-width: 19px;
    height: 19px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    text-align: center;
    color: #ffffff;
    background: #ff7300;
  }
}
@media (max-width: 767px) {
  .header__actions-counter {
    top: 8px;
    right: 0;
  }
}

.header__shop-cart {
  margin-left: 55px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  float: left;
  vertical-align: middle;
}

@media (max-width: 1300px) {
  .header__shop-cart {
    margin-left: 20px;
  }
}

.header__shop-cart:hover {
  color: #ffffff;
}

.header__shop-cart:hover .header__shop-cart-sum {
  color: #ff7300;
}

@media (max-width: 1023px) {
  .header__shop-cart {
    position: relative;
    padding: 16px 22px;
    margin: 0;
    font-size: 18px;
    color: #404041;
  }

  .header__shop-cart:hover [class*="icon-"] {
    fill: #ff7300;
  }
}
@media (max-width: 767px) {
  .header__shop-cart {
    display: flex;
    height: 100%;
    padding: 0;
    font-size: 16px;
  }
}

.header__shop-cart-icon {
  position: relative;
  display: inline-block;
  padding-right: 5px;
  vertical-align: middle;
  fill: #ffffff;
}
@media (max-width: 767px) {
  .header__shop-cart-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 16px;
    padding-right: 10px;
    padding-bottom: 16px;
    padding-left: 10px;
  }
}

.header__shop-cart-icon-img {
  display: block;
}

@media (max-width: 1023px) {
  .header__shop-cart-icon-img {
    display: none;
  }
}

.header__shop-cart-icon-img--mobile {
  display: none;
}

@media (max-width: 1023px) {
  .header__shop-cart-icon-img--mobile {
    display: block;
  }
}

@media (max-width: 767px) {
  .header__shop-cart-icon-img--mobile {
    width: 18px;
    height: auto;
  }
}

@media (max-width: 1023px) {
  .header__shop-cart-icon {
    fill: #000000;
  }
}

.header__shop-cart-sum {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 1023px) {
  .header__shop-cart-sum {
    position: absolute;
    top: 100%;
    left: 50%;
    margin: -20px 0 0 0;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: #ffffff;
    background: #ff7300;
    white-space: nowrap;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
@media (max-width: 1023px) {
  .header__shop-cart-sum {
    left: 37%;
    margin: -22px 0 0 0;
  }
}
@media (max-width: 767px) {
  .header__shop-cart-sum {
    display: none;
  }
}

.header__shop-cart-counter {
  position: absolute;
  right: -4px;
  bottom: -9px;
  display: block;
  min-width: 19px;
  height: 19px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  text-align: center;
  background: #ff7300;
}

@media (max-width: 1023px) {
  .header__shop-cart-counter {
    top: -5px;
    right: -5px;
    bottom: auto;
    color: #ffffff;
  }
}

@media (max-width: 767px) {
  .header__shop-cart-counter {
    top: 8px;
    right: 0;
  }
}

@media (max-width: 1023px) {
  .header__padding {
    padding-top: 58px;
  }
}

.header__center {
  padding: 0 0 0 337px;
}
.header__center:after {
  display: block;
  content: " ";
  clear: both;
}
@media (max-width: 1280px) {
  .header__center {
    padding: 0 0 0 265px;
  }
}
@media (max-width: 1023px) {
  .header__center {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    width: 100%;
    padding: 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    background: #ffffff;
  }
}
@media (max-width: 767px) {
  .header__center.overlay {
    z-index: 3;
  }
}
@media (max-width: 430px) {
  .header__center {
    gap: 15px;
  }
}

.header__center-top {
  width: 100%;
  border-right: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  border-left: 1px solid #ededed;
  float: left;
}

.header__center-top:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1280px) {
  .header__center-top {
    padding: 0 0 9px 0;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header__center-top {
    padding: 0 0 9px 0;
  }
}
@media (max-width: 1023px) {
  .header__center-top {
    width: unset;
    padding: 0;
    padding-right: 154px;
    border: none;
    flex-grow: 1;
  }
}
@media (max-width: 767px) {
  .header__center-top {
    padding-right: 100px;
    flex-grow: unset;
  }
}
@media (max-width: 430px) {
  .header__center-top {
    margin-left: auto;
    padding-right: 90px;
  }
}

.header__center-bottom {
  width: 100%;
  border-left: 1px solid #ededed;
  float: left;
}

@media (max-width: 1023px) {
  .header__center-bottom {
    position: fixed;
    top: 297px;
    bottom: 0;
    left: 0;
    display: block;
    width: 320px;
    padding: 0 25px 20px;
    transition: transform 0.3s;
    float: none;
    transform: translate(-100%, 0);
    background: #ffffff;
    overflow: auto;
  }
}

.header__mob-btn {
  display: none;
}

@media (max-width: 1023px) {
  .header__mob-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 58px;
    margin: 0;
    padding: 0;
    border-right: 1px solid #e7e7e7;
    gap: 5px;
    flex-shrink: 0;
  }

  .header__mob-btn .line {
    display: block;
    width: 32px;
    height: 5px;
    border-radius: 2px;
    background: #000000;
  }
}

@media (max-width: 430px) {
  .header__mob-btn {
    width: 50px;
  }

  .header__mob-btn .line {
    width: 30px;
    height: 3px;
  }
}

.header__logo {
  display: block;
  width: 337px;
  margin: 15px 0 0 -337px;
  transition: none;
  float: left;
}

.header__logo-icon-sm {
  display: none;
}

.header__logo-icon-extra {
  display: none;
}

@media (max-width: 1280px) {
  .header__logo {
    width: 265px;
    margin: 12px 0 0 -265px;
    padding: 0;
  }
}
@media (max-width: 1023px) {
  .header__logo {
    width: 202px;
    margin: 0;
    padding: 15px 0 18px 20px;
  }

  .header__logo-icon-extra {
    display: inline-block;
  }

  .header__logo-icon-sm {
    display: inline-block;
  }

  .header__logo-icon-lg {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__logo {
    width: 174px;
    padding: 15px 0 19px 20px;
    padding-left: 22px;
  }
  .header__logo-icon-extra {
    display: none;
  }
}
@media (max-width: 430px) {
  .header__logo {
    width: 110px;
    padding-top: 15px;
    padding-right: 0;
    padding-bottom: 19px;
    padding-left: 0;
    flex-shrink: 0;
  }
}

.header__catalog-mob-btn {
  display: none;
}

@media (max-width: 1023px) {
  .header__catalog-mob-btn {
    display: block;
    padding: 18px 22px 18px 9px;
    float: left;
  }
}
@media (max-width: 767px) {
  .header__catalog-mob-btn {
    padding: 18px 22px 18px 13px;
  }
}
@media (max-width: 430px) {
  .header__catalog-mob-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 18px;
    padding-right: 0;
    padding-bottom: 18px;
    padding-left: 0;
  }

  .icon-list {
    width: 26px;
    height: auto;
  }
}

.header__search {
  width: calc(100% - 761px);
  margin: 15px 0 0 0;
  float: left;
}

@media (max-width: 1500px) {
  .header__search {
    width: calc(100% - 603px);
  }
}
@media (max-width: 1280px) {
  .header__search {
    margin: 9px 0 0 0;
  }
}
@media (max-width: 1200px) {
  .header__search {
    width: calc(100% - 534px);
  }
}
@media (max-width: 1100px) {
  .header__search {
    width: calc(100% - 434px);
  }
}
@media (max-width: 1023px) {
  .header__search {
    width: auto;
    margin: 12px 0 0 0;
    float: none;
  }
}
@media (max-width: 767px) {
  .header__search {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 111;
    display: none;
    width: 100%;
    margin: 0;
    padding-top: 5px;
    padding-right: 15px;
    padding-bottom: 5px;
    padding-left: 15px;
    background: #ffffff;
  }
}

.header__search-inner {
  position: relative;
}

.header__search-inner:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 767px) {
  .header__search-form {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

.header__search-input {
  width: 100%;
  height: 47px;
  padding: 0 50px 0 12px;
  border: 2px solid #ffffff;
  border-radius: 0;
  font-size: 18px;
  float: left;
  background-color: #f5f5f5;
  text-overflow: ellipsis;
  transition:
    background-color 0.3s,
    border-color 0.3s;
}

.header__search-input:focus {
  border-color: #ff7300;
  background-color: #ffffff;
}

@media (max-width: 1280px) {
  .header__search-input {
    height: 36px;
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header__search-input {
    height: 36px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .header__search-input {
    height: unset;
    margin: 0;
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-left: 15px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 5px;
  }
}

.header__search-close {
  display: none;
}

@media (max-width: 767px) {
  .header__search-close {
    position: relative;
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    color: #000000;
    order: -1;
    flex-shrink: 0;
  }
}

.header__search-close span {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 2px;
  background: transparent;
  vertical-align: bottom;
}

.header__search-close span:before,
.header__search-close span:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentcolor;
  border-radius: 5px;
  transform: rotate(45deg);
  content: '';
}

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

.header__search-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 47px;
  height: 47px;
  border: none;
  border-radius: 0;
  font-size: 0;
  -webkit-transition: none;
  transition: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: none;
}

.header__search-btn:before {
  display: none;
}

.header__search-btn:hover {
  opacity: 0.7;
}

@media (max-width: 1280px) {
  .header__search-btn {
    height: 36px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header__search-btn {
    height: 36px;
  }
}
@media (max-width: 767px) {
  .header__search-btn {
    position: unset;
    width: 32px;
    height: 32px;
    padding: 5px;
    flex-shrink: 0;
  }
}

.header__search-icon {
  width: 18px;
  height: 18px;
}

@media (max-width: 767px) {
  .header__search-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.header__search-mob-btn {
  display: none;
}

@media (max-width: 767px) {
  .header__search-mob-btn {
    display: block;
    padding: 17px 15px 17px 11px;
  }

  .header__search-mob-btn [class*="icon-"] {
    width: 24px;
    height: 24px;
    fill: #000000;
  }
}
@media (max-width: 430px) {
  .header__search-mob-btn {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding-top: 19px;
    padding-right: 10px;
    padding-bottom: 19px;
    padding-left: 10px;
  }

  .header__search-mob-btn [class*="icon-"] {
    width: 20px;
    height: 20px;
  }
}

.header__contacts {
  width: 400px;
  padding: 28px 0 26px 65px;
  line-height: 20px;
  float: left;
}

@media (max-width: 1500px) {
  .header__contacts {
    width: 369px;
  }
}
@media (max-width: 1280px) {
  .header__contacts {
    padding: 19px 0 0 58px;
  }
}
@media (max-width: 1200px) {
  .header__contacts {
    width: 300px;
  }
}
@media (max-width: 1100px) {
  .header__contacts {
    width: 200px;
  }
}
@media (max-width: 1023px) {
  .header__contacts {
    display: none;
    width: 200px;
  }
}
@media (max-width: 767px) {
  .header__contacts {
    width: auto;
    padding: 0;
  }
}

.header__contacts-icon {
  display: block;
  width: 19px;
  height: 19px;
}

.header__contacts-btn {
  display: block;
  width: auto;
  margin: 0 0 0 -35px;
  border-radius: 0;
  line-height: 20px;
  -webkit-transition: none;
  transition: none;
  background: none;
  fill: #bebebe;
  float: left;
}

.header__contacts-btn:before {
  display: none;
}

.header__contacts-btn:hover {
  fill: #0075b9;
}

@media (max-width: 767px) {
  .header__contacts-btn {
    margin: 0;
    float: none;
  }
}

.header__contacts-phones {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: #000000;
}

@media (max-width: 1200px) {
  .header__contacts-phones {
    width: 300px;
    font-size: 14px;
  }
}
@media (max-width: 1100px) {
  .header__contacts-phones {
    margin: -13px 0 0 0;
  }

  .header__contacts-phones span {
    display: block;
  }
}
@media (max-width: 1023px) {
  .header__contacts-phones {
    margin-top: -3px;
    line-height: 18px;
  }
}
@media (max-width: 767px) {
  .header__contacts-phones {
    display: none;
  }
}

.header__contacts-time {
  display: block;
  color: #717171;
}

@media (max-width: 1600px) {
  .header__contacts-time {
    font-size: 14px;
  }

  .header__contacts-time-hide {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__contacts-time {
    display: none;
  }
}

.header__autorization {
  width: 286px;
  margin: 0 0 0 75px;
  padding: 26px 0 0 30px;
  font-size: 18px;
  font-weight: 700;
  float: right;
}

.header__autorization:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1500px) {
  .header__autorization {
    width: 234px;
    margin: 0;
    padding: 26px 0 0 60px;
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .header__autorization {
    padding: 17px 0 0 60px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header__autorization {
    padding: 17px 0 0 60px;
  }
}
@media (max-width: 1023px) {
  .header__autorization {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__autorization {
    display: none;
  }
}

.header__autorization-icon {
  width: 19px;
  height: 17px;
  margin: 3px 0 0 -30px;
  float: left;
  fill: #ff7300;
}

@media (max-width: 1023px) {
  .header__autorization-icon {
    margin: 3px 0 0 -30px;
  }
}

.header__autorization-link {
  border-bottom: 2px solid transparent;
  color: #ff7300;
}

.header__autorization-link:hover {
  border-color: #ff7300;
}

@media (max-width: 1023px) {
  .header__autorization-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
  }
}

.header__autorization-mob {
  display: none;
}

@media (max-width: 767px) {
  .header__autorization-mob {
    display: block;
    width: 49px;
    height: 49px;
    margin-left: 15px;
    padding-top: 15px;
    border-radius: 3px;
    text-align: center;
    background-color: #ffd403;
    background-image: linear-gradient(to bottom, #ffd403 0%, #f7951e 100%);
    float: left;
  }

  .header__autorization-mob-icon {
    width: 19px;
    height: 17px;
    fill: #ffffff;
  }
}

.header__bottom {
  padding: 0 55px;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}

@media (max-width: 1023px) {
  .header__bottom {
    padding: 0 22px;
  }
}

.header__nav {
  padding-left: 320px;
}

.header__nav:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1280px) {
  .header__nav {
    padding-left: 240px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header__nav {
    padding-left: 240px;
  }
}

.header__nav-list {
  display: table;
  width: 100%;
}

.header__nav-list-item {
  display: table-cell;
  border-right: 1px solid #ededed;
  text-align: center;
}

@media (max-width: 1023px) {
  .header__nav-list-item {
    display: block;
    width: auto;
    padding: 0;
    border: none;
    text-align: left;
  }
}

.header__nav-list-link {
  display: block;
  padding: 15px 10px 16px;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  transition: background-color 0.3s !important;
}

.header__nav-list-link:hover {
  color: #000000;
  background: #f6f6f6;
}

@media (max-width: 1450px) {
  .header__nav-list-link {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  .header__nav-list-link {
    padding: 9px 10px;
    font-size: 15px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header__nav-list-link {
    padding: 9px 10px;
    font-size: 15px;
  }
}
@media (max-width: 1100px) {
  .header__nav-list-link {
    padding: 9px 2px;
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .header__nav-list-link {
    padding: 11px 0;
    font-size: 18px;
    font-weight: 400;
  }
}

.header__mobile-actions {
  display: none;
}

@media (max-width: 1023px) {
  .header__mobile-actions {
    display: block;
    padding: 57px 0 0 0;
  }

  .header__mobile-actions-item {
    padding: 0 0 20px 0;
  }

  .header__mobile-actions-link {
    font-size: 18px;
    color: #0075b9;
  }
}

/* .header__catalog {
  position: relative;
  width: 320px;
  margin: -1px 0 -1px -320px;
  float: left;
}

.header__catalog--opened:before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: block;
  height: 50px;
  content: "";
}

@media (max-width: 1023px) {
  .header__catalog--opened:before {
    display: none;
  }
}

.header__catalog--opened .header__catalog-list {
  display: block;
  border-radius: 0;
}

@media (max-width: 1023px) {
  .header__catalog--opened .header__catalog-list {
    display: none;
  }
}

.header__catalog--opened-1280:before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: block;
  height: 50px;
  content: "";
}

@media (max-width: 1280px) {
  .header__catalog--opened-1280:before {
    display: none;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header__catalog--opened-1280:before {
    display: none;
  }
}

.header__catalog--opened-1280 .header__catalog-list {
  display: block;
  border-radius: 0;
}

@media (max-width: 1280px) {
  .header__catalog--opened-1280 .header__catalog-list {
    display: none;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header__catalog--opened-1280 .header__catalog-list {
    display: none;
  }
}
@media (max-width: 1280px) {
  .header__catalog {
    width: 240px;
    margin-left: -240px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header__catalog {
    width: 240px;
    margin-left: -240px;
  }
}
@media (max-width: 767px) {
  .header__catalog {
    width: 220px;
    margin-left: -262px;
  }
}

.header__catalog-title {
  display: block;
  padding: 13px 10px 15px 37px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  background: #0075b9;
}

@media (max-width: 1280px) {
  .header__catalog-title {
    padding: 15px 10px 13px 28px;
    font-size: 15px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header__catalog-title {
    padding: 15px 10px 13px 28px;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .header__catalog-title {
    padding: 15px 10px 13px;
    text-align: center;
  }
} */

/* .header__catalog-title-icon {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 12px;
  height: 2px;
  margin: 0 17px 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #ffffff;
  vertical-align: middle;
} */

/* .header__catalog-title-icon:before,
.header__catalog-title-icon:after {
  position: absolute;
  left: 0;
  display: block;
  width: 12px;
  height: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  background: #ffffff;
}

.header__catalog-title-icon:before {
  top: -4px;
}

.header__catalog-title-icon:after {
  bottom: -4px;
}

@media (max-width: 767px) {
  .header__catalog-title-icon {
    display: none;
  }
}

.header__catalog-title:hover {
  color: #ffffff;
}

.header__catalog-title.active .header__catalog-title-icon {
  background: transparent;
}

.header__catalog-title.active .header__catalog-title-icon:before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header__catalog-title.active .header__catalog-title-icon:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
} */

/* .header__catalog-list {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: none;
  padding: 15px 0 85px 0;
  border-radius: 0 0 3px 3px;
  -webkit-box-shadow: inset 0 2px 10px rgba(0, 61, 111, 0.7);
  box-shadow: inset 0 2px 10px rgba(0, 61, 111, 0.7);
  background: #005192;
}

@media (max-width: 1280px) {
  .header__catalog-list {
    padding: 15px 0;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header__catalog-list {
    padding: 15px 0;
  }
} */

/* .header__catalog-link {
  display: block;
  padding: 13px 10px 13px 38px;
  font-size: 18px;
  color: #ffffff;
}

.header__catalog-link:hover {
  color: #ffffff;
  background: #0075b9;
}

@media (max-width: 1280px) {
  .header__catalog-link {
    padding: 5px 24px;
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header__catalog-link {
    padding: 5px 24px;
    font-size: 14px;
  }
} */
@media (max-width: 1023px) {
  .header.open-nav .header__top-left {
    z-index: 100;
    transform: translate(0);
  }

  .header.open-nav .header__center-bottom {
    z-index: 100;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }

  .header.open-nav .header__center {
    position: static;
  }
}

.header__popups {
  position: absolute;
}

.header__sidebar {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 16.6%;
  margin: 1px 0 0 0;
  padding: 25px;
  background: #ff7300;
}

@media (max-width: 1410px) {
  .header__sidebar {
    padding: 21px 24px;
  }
}
@media (max-width: 1023px) {
  .header__sidebar {
    position: fixed;
    top: 57px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: none;
    width: 100%;
    padding: 0;
  }

  .header__sidebar--static {
    position: static;
    display: block;
  }
}

.header__sidebar-wrapper {
  position: relative;
  width: 100%;
}

@media (max-width: 1023px) {
  .custom-select {
    width: 100%;
    padding-top: 10px;
    padding-right: 16px;
    padding-bottom: 10px;
    padding-left: 16px;
  }
}

.header__sidebar-list {
  margin-right: -20px;
  margin-left: -20px;
  padding: 10px 0 15px;
}
@media (max-width: 1199px) {
  .header__sidebar-list {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (max-width: 1023px) {
  .header__sidebar-list {
    max-height: calc(100% - 60px);
    margin: 0;
    padding: 0;
    padding-bottom: 20px;
    overflow: hidden;
    overflow-y: auto;
  }
}

.header__sidebar-list-item {
  position: relative;
  padding: 0;
}

.header__sidebar-list-item:hover .header-submenu {
  display: block;
}

.header__sidebar-list-item:hover .header__sidebar-link {
  background: #ffa800;
}

@media (max-width: 1600px) {
  .header__sidebar-list-item {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .header__sidebar-list-item {
    padding: 0 0 1px 0;
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header__sidebar-list-item {
    padding: 0 0 1px 0;
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .header__sidebar-list-item {
    padding: 0;
    font-size: 16px;
  }
}

.header__sidebar-link {
  display: block;
  padding: 4px 10px 5px 25px;
  color: #ffffff;
}

.header__sidebar-link:hover {
  color: #ffffff;
  background: #ffa800;
}

@media (max-width: 1023px) {
  .header__sidebar-link {
    padding-top: 10px;
    padding-right: 16px;
    padding-bottom: 10px;
    padding-left: 16px;
    border-top: 1px solid #ff8a29;
    text-align: left;
  }
}

.header__sidebar-bottom {
  min-height: auto;
  margin: 0 -25px -25px;
  padding: 25px;
  border: 1px solid #dfdfdf;
  background: #ffffff;
}

@media (max-width: 1410px) {
  .header__sidebar-bottom {
    min-height: 257px;
  }
}
@media (max-width: 1280px) {
  .header__sidebar-bottom {
    min-height: 0;
    margin: 0 -24px -21px;
    padding: 18px 24px 9px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header__sidebar-bottom {
    min-height: 0;
    margin: 0 -24px -21px;
    padding: 18px 24px 9px;
  }
}
@media (max-width: 1023px) {
  .header__sidebar-bottom {
    display: none;
  }
}

.header__sidebar-bottom-title {
  display: block;
  padding: 0 0 19px 0;
  font-size: 25px;
  font-weight: 700;
}

@media (max-width: 1280px) {
  .header__sidebar-bottom-title {
    padding: 0 0 11px 0;
    font-size: 20px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header__sidebar-bottom-title {
    padding: 0 0 11px 0;
    font-size: 20px;
  }
}

.header__sidebar-bottom-select {
  padding: 0 0 10px 0;
}

@media (max-width: 1280px) {
  .header__sidebar-bottom-select {
    padding: 0 0 8px 0;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .header__sidebar-bottom-select {
    padding: 0 0 8px 0;
  }
}

.nav {
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}
@media (max-width: 1023px) {
  .nav {
    border: none;
  }
}
@media (max-width: 767px) {
  .header--index .nav__list {
    display: none;
  }
}

.nav__list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  border-left: 1px solid #e7e7e7;
}

@media (max-width: 1023px) {
  .nav__list {
    display: none;
  }

  .nav__list .slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: block;
    width: 30px;
    background: rgba(255, 255, 255, 0.5);
  }

  .nav__list .slick-arrow:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -5px;
    border-right: 2px solid rgba(200, 200, 200, 0.5);
    border-bottom: 2px solid rgba(200, 200, 200, 0.5);
    content: "";
  }

  .nav__list .slick-prev {
    left: 0;
  }

  .nav__list .slick-prev:before {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .nav__list .slick-next {
    right: 0;
  }

  .nav__list .slick-next:before {
    margin-left: -15px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

.nav__list-item {
  border-right: 1px solid #e7e7e7;
  vertical-align: top;
}

@media (max-width: 1023px) {
  .nav__list-item {
    border-bottom: 1px solid #e7e7e7;
    background: #ffffff;
  }
}
@media (max-width: 767px) {
  .nav__list-item {
    padding-top: 100%;
  }
}

.nav__link {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding-top: 0;
  padding-right: 5px;
  padding-bottom: 10px;
  padding-left: 5px;
  font-size: 16px;
  line-height: 0.8;
  text-align: center;
  color: #717171;
  transition: background-color 0.3s !important;
}

.nav__link:hover {
  color: #717171;
  background: #f6f6f6;
}

@media (max-width: 1670px) {
  .nav__link {
    font-size: 14px;
  }
}
@media (max-width: 1250px) {
  .nav__link {
    padding: 0;
    font-size: 0;
  }
}
@media (max-width: 1023px) {
  .nav__link {
    padding-top: 10px;
    padding-right: 5px;
    padding-bottom: 10px;
    padding-left: 5px;
    font-size: 14px;
    gap: 5px;
  }
}
@media (max-width: 767px) {
  .nav__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    justify-content: center;
  }
}

.nav__icon {
  display: block;
  width: 80%;
  height: 76px;
  margin: 0 auto;
  font-size: 0;
  line-height: 0;
  text-align: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.nav__icon [class*="icon-"] {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
}

@media (max-width: 1670px) {
  .nav__icon {
    height: 63px;
  }
}
@media (max-width: 1023px) {
  .nav__icon {
    height: 50px;
  }
}
@media (max-width: 767px) {
  .nav__icon {
    height: unset;
    flex-grow: 1;
  }
}

.nav__icon:before {
  display: inline-block;
  height: 100%;
  content: "";
  vertical-align: middle;
}

.lk-nav {
  margin-bottom: 30px;
  border: 1px solid #ff7300;
}

@media (max-width: 767px) {
  .lk-nav {
    margin-bottom: 0;
  }
}

.lk-nav__head {
  display: block;
  padding: 14px 19px;
  cursor: pointer;
}

.lk-nav__title {
  position: relative;
  display: block;
  padding-left: 15px;
  font: 400 15px/20px "ubuntu";
  color: #424243;
}

.lk-nav__title:before {
  position: absolute;
  top: 7px;
  left: 0;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: #ff7300;
}

@media (max-width: 1023px) {
  .lk-nav__title {
    font-size: 17px;
  }

  .lk-nav__title br {
    display: none;
  }
}

.lk-nav__list-link {
  position: relative;
  display: block;
  padding: 12px 25px 14px 35px;
  border-top: 1px solid #ff7300;
  font: 400 15px/20px "ubuntu";
  color: #404041;
}

.lk-nav__list-link:before {
  position: absolute;
  top: 20px;
  left: 19px;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: #ff7300;
}

.lk-nav__list-link:hover {
  color: #404041;
  background: #fff2e7;
}

.lk-nav__list-link--active {
  color: #ff7300;
  background: none;
}

.lk-nav__list-link--active:hover {
  color: #ff7300;
  background: none;
}

@media (max-width: 1023px) {
  .lk-nav__list-link {
    font-size: 17px;
  }
}

.location {
  display: none;
  padding: 31px 0 14px;
  font-size: 0;
  background: #ffffff;
}

@media (max-width: 1023px) {
  .location {
    display: block;
  }
}
@media (max-width: 767px) {
  .location {
    padding: 24px 0 7px;
  }
}

.location__title {
  display: block;
  padding-bottom: 23px;
  font: 400 22px "ubuntu";
  color: #404041;
}

.location__row {
  margin: 0 -15px;
}

.location__item {
  display: inline-block;
  width: 50%;
  padding: 0 15px 26px;
  vertical-align: top;
}

.location__address {
  display: block;
  padding-bottom: 3px;
  font: 400 15px "ubuntu";
  color: #404041;
}

.location__phone {
  display: block;
  font: 400 15px "ubuntu";
  color: #717171;
}

.main-banner {
  font-size: 0;
  background: #f5f5f5;
}

.main-banner:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 767px) {
  .main-banner .container {
    padding: 0;
  }
}

.news-item {
  display: inline-block;
}

.news-item__image,
.open-article__banner {
  position: relative;
  display: block;
  margin-bottom: 20px;
  border: 3px solid #ffffff;
  border-radius: 3px;
  -webkit-box-shadow: 0 2px 5px rgba(213, 213, 213, 0.7);
  box-shadow: 0 2px 5px rgba(213, 213, 213, 0.7);
}

.news-item__image:hover,
.open-article__banner:hover {
  opacity: 0.8;
}

.news-item__image--video {
  margin-bottom: 21px;
}

.news-item__image--video:before {
  position: absolute;
  top: calc(50% - 22.5px);
  left: calc(50% - 22.5px);
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  content: "";
  background: #ff7300;
}

.news-item__image--video:after {
  position: absolute;
  top: calc(50% - 18px);
  left: calc(50% - 18px);
  display: block;
  width: 0;
  height: 0;
  margin: 8px 0 0 12px;
  border: 18px solid transparent;
  border-radius: 3px;
  content: "";
  border-left-color: #ffffff;
  border-top-width: 10px;
  border-bottom-width: 10px;
}

@media (max-width: 1280px) {
  .news-item__image,
  .open-article__banner {
    margin-bottom: 9px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .news-item__image,
  .open-article__banner {
    margin-bottom: 9px;
  }
}

.news-item__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  -o-object-fit: cover;
  object-fit: cover;
}

.news-item__date {
  display: block;
  font: 400 14px/24px "ubuntu";
  color: #717171;
}

.news-item__link {
  display: block;
  display: -webkit-box;
  /* max-height: 76px; */
  font: 400 16px/25px "ubuntu";
  color: #ff7300;
  overflow: hidden;
}

.news-item__link:hover {
  text-decoration: underline;
}

.news-item__link--article {
  font-size: 15px;
  line-height: 22px;
  color: #717171;
}

.news-item__share {
  position: absolute;
  top: calc(50% - 47px);
  left: 30px;
  width: 95px;
  height: 95px;
}

.news-item__text {
  display: block;
  display: -webkit-box;
  max-height: 141px;
  padding: 0;
  font: 400 16px/24px "ubuntu";
  color: #404041;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.order-completed {
  padding: 0 0 35px 0;
  font-size: 0;
  line-height: 0;
}

@media (max-width: 1023px) {
  .order-completed {
    padding-bottom: 22px;
  }
}

.order-completed--last {
  padding: 0;
}

.order-completed--open-order .order-completed__box:hover {
  -webkit-transition: none;
  transition: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #e7e7e7;
}

@media (max-width: 767px) {
  .order-completed--open-order .order-completed__box {
    padding: 0;
    border: 0;
  }
}

.order-completed--open-order .order-completed-cont {
  display: inline-block;
  width: calc(100% - 235px);
  max-width: none;
  vertical-align: top;
}

@media (max-width: 767px) {
  .order-completed--open-order .order-completed-cont {
    display: block;
    width: 100%;
    padding: 18px 21px 13px;
    border: 1px solid #e7e7e7;
  }
}
@media (max-width: 767px) {
  .order-completed--open-order .order-completed-cont__cell {
    margin-bottom: 11px;
  }
}

.order-completed__box {
  padding: 20px 24px 16px;
  border: 1px solid #e7e7e7;
  border-radius: 3px;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.order-completed__box:hover {
  box-shadow: 0 0 27px rgba(255, 115, 0, 0.22);
  border-color: #ff7300;
}

@media (max-width: 767px) {
  .order-completed__box {
    padding: 14px 16px 2px;
  }
}

.order-completed__title {
  display: block;
  padding-bottom: 16px;
  font: 700 18px "ubuntu";
  color: #ff7300;
}

.order-completed__title--black {
  color: #404041;
}

@media (max-width: 767px) {
  .order-completed__title {
    padding-bottom: 26px;
    font-size: 16px;
  }

  .order-completed__title--black {
    padding-bottom: 16px;
  }
}

.order-completed-cont {
  max-width: 1000px;
}

.order-completed-cont__cell {
  display: inline-block;
  width: 50%;
  margin-bottom: 16px;
  vertical-align: top;
}

.order-completed-cont__cell--name {
  position: relative;
  width: 44%;
}

.order-completed-cont__cell--name:before {
  position: absolute;
  bottom: 2px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background: #e7e7e7;
}

.order-completed-cont__cell--val {
  width: 56%;
  padding-left: 3px;
}

.order-completed-cont__cell--price {
  vertical-align: bottom;
}

@media (max-width: 767px) {
  .order-completed-cont__cell--name {
    width: 50%;
  }

  .order-completed-cont__cell--name:before {
    bottom: 5px;
  }

  .order-completed-cont__cell--val {
    width: 50%;
  }
}

.order-completed-cont__name {
  position: relative;
  display: table;
  padding-right: 4px;
  font: 400 16px "ubuntu";
  color: #404041;
  background: #ffffff;
}

@media (max-width: 1023px) {
  .order-completed-cont__name {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .order-completed-cont__name {
    font-size: 14px;
    line-height: 24px;
  }
}

.order-completed-cont__val {
  display: table;
  padding-bottom: 10px;
  font: 400 16px "ubuntu";
  color: #717171;
}

.order-completed-cont__val--bold {
  font-weight: 700;
}

.order-completed-cont__val--price {
  font-size: 20px;
  font-weight: 700;
  color: #404041;
}

.order-completed-cont__val:last-child {
  padding-bottom: 0;
}

@media (max-width: 1023px) {
  .order-completed-cont__val {
    font-size: 15px;
  }

  .order-completed-cont__val--price {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .order-completed-cont__val {
    padding-bottom: 0;
    font-size: 14px;
    line-height: 24px;
  }

  .order-completed-cont__val--price {
    font-size: 20px;
  }
}

.order-completed__buttons {
  display: inline-block;
  width: 235px;
  padding: 10px 0 0 30px;
  letter-spacing: normal;
}

@media (max-width: 767px) {
  .order-completed__buttons {
    width: 100%;
    padding: 22px 0 0;
  }
}

.order-completed__button {
  margin-top: 30px;
  padding: 20px 10px;
  font-weight: 400;
  border-width: 1px;
}

.order-completed__button:first-child {
  margin-top: 0;
}

@media (max-width: 767px) {
  .order-completed__button {
    width: calc(50% - 5px);
    margin: 0 5px 0 0;
    float: left;
  }

  .order-completed__button:last-child {
    margin: 0 0 0 5px;
    float: right;
  }
}

.order-step {
  font-size: 0;
}

@media (max-width: 1023px) {
  .order-step {
    clear: both;
  }
}
@media (max-width: 767px) {
  .order-step {
    margin: 0 -22px;
  }
}

.order-step__list {
  padding-bottom: 40px;
  overflow: hidden;
  white-space: nowrap;
}

@media (max-width: 1023px) {
  .order-step__list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .order-step__list {
    margin: 0;
  }
}

.order-step__item {
  position: relative;
  display: inline-block;
  width: 25%;
  padding: 0 15px;
  text-align: center;
  vertical-align: bottom;
  white-space: normal;
}

.order-step__item:before {
  position: absolute;
  bottom: -28.5px;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  content: "";
  background: #ff7300;
}

.order-step__item:first-child {
  width: 18%;
}

.order-step__item:first-child .order-step__name {
  margin: 0;
}

.order-step__item:first-child .order-step__name:after {
  position: absolute;
  right: 50%;
  bottom: -28.5px;
  display: block;
  width: 5000px;
  height: 3px;
  content: "";
  background: #ffffff;
}

.order-step__item:nth-child(2) {
  width: 32%;
}

.order-step__item:last-child .order-step__name {
  margin: 0 0 0 auto;
}

.order-step__item:last-child .order-step__name:after {
  position: absolute;
  bottom: -28.5px;
  left: 50%;
  display: block;
  width: 5000px;
  height: 3px;
  content: "";
  background: #ffffff;
}

@media (max-width: 1280px) {
  .order-step__item {
    width: 27%;
  }

  .order-step__item:first-child {
    width: 16%;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .order-step__item {
    width: 27%;
  }

  .order-step__item:first-child {
    width: 16%;
  }
}
@media (max-width: 1023px) {
  .order-step__item {
    vertical-align: bottom;
  }
}
@media (max-width: 767px) {
  .order-step__item {
    padding: 0 5px;
  }

  .order-step__item:nth-child(2) {
    width: 28%;
  }
}

.order-step__name {
  position: relative;
  display: table;
  margin: 0 auto;
  font: 700 18px "ubuntu";
  color: #404041;
}

.order-step__name:before {
  position: absolute;
  bottom: -40px;
  left: calc(50% - 12.5px);
  z-index: 3;
  display: block;
  width: 25px;
  height: 25px;
  border: 3px solid #ff7300;
  border-radius: 50%;
  content: "";
  background: #ffffff;
}

.order-step__name--active:before {
  background: #ff7300;
}

@media (max-width: 1160px) {
  .order-step__name span {
    display: none;
  }
}
@media (max-width: 1023px) {
  .order-step__name {
    display: block;
    font-size: 14px;
    text-align: center;
    white-space: normal;
  }

  .order-step__name span {
    display: inline;
  }
}
@media (max-width: 767px) {
  .order-step__name {
    font-size: 14px;
  }
}

.pagination {
  font-size: 0;
}

.pagination--indent {
  margin-bottom: 20px;
}

.pagination__text {
  display: inline-block;
  margin-right: 10px;
  font: 400 15px "ubuntu";
  color: #717171;
  vertical-align: middle;
}

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

.pagination__item {
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

.pagination__item:last-child {
  margin-right: 0;
}

.pagination__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 29px;
  height: 29px;
  justify-content: center;
  align-items: center;
  padding: 6px 5px 7px;
  border: 1px solid #ff7300;
  border-radius: 3px;
  font: 400 14px "ubuntu";
  text-align: center;
  color: #ff7300;
  fill: #ff7300;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: #ffffff;
}

.pagination__link:hover,
.pagination__link--active {
  color: #ffffff;
  fill: #ffffff;
  background: #ff7300;
}

.pagination__arrow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  fill: inherit;
}

.pagination__dots {
  display: block;
  font: 400 15px/0 "ubuntu";
  color: #717171;
}

.pay-delivery-another-item__box {
  min-height: 200px;
  padding: 36px 20px 36px;
  border: 1px solid #e7e7e7;
  border-radius: 3px;
}

@media (max-width: 1023px) {
  .pay-delivery-another-item__box {
    min-height: 185px;
    padding: 25px 20px;
  }
}

.pay-delivery-another-item__ico {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.pay-delivery-another-item__image {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  min-height: 55px;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}
@media (max-width: 1023px) {
  .pay-delivery-another-item__image {
    min-height: 65px;
  }
}

.pay-delivery-another-item__text {
  display: block;
  font: 400 14px/20px "ubuntu";
  text-align: center;
  color: #717171;
}

.dropshipping-another-item__text {
  display: block;
  font-size: 15px;
  text-align: center;
  color: #717171;
}

@media (max-width: 1023px) {
  .pay-delivery-another-item__text,
  dropshipping-another-item__text {
    font-size: 14px;
  }
}

.pay-delivery-type-item {
  font-size: 0;
}

.pay-delivery-type-item__left {
  position: relative;
  display: inline-block;
  width: 270px;
  min-height: 118px;
  padding: 10px 20px;
  border: 1px solid #e7e7e7;
  border-radius: 3px;
  vertical-align: top;
}

.pay-delivery-type-item__left:hover {
  opacity: 0.8;
}

@media (max-width: 1023px) {
  .pay-delivery-type-item__left {
    width: 166px;
  }
}

.pay-delivery-type-item__ico {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
}

@media (max-width: 1023px) {
  .pay-delivery-type-item__ico {
    max-width: 70%;
  }
}

.pay-delivery-type-item__cont {
  display: inline-block;
  width: calc(100% - 270px);
  margin-top: -4px;
  padding-left: 29px;
  vertical-align: top;
}

@media (max-width: 1023px) {
  .pay-delivery-type-item__cont {
    width: calc(100% - 166px);
    padding-left: 19px;
  }
}

.pay-delivery-type-item__title {
  display: block;
  padding-bottom: 4px;
  font: 700 16px/22px "ubuntu";
  color: #404041;
}

.pay-delivery-type-item__text {
  display: block;
  padding: 0;
  font: 400 15px/22px "ubuntu";
  color: #717171;
}

@media (max-width: 1280px) {
  .pay-delivery-type-item__text {
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .pay-delivery-type-item__text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .pay-delivery-type-item__text {
    font-size: 14px;
    line-height: 19px;
  }
}

.pay-method-item__radio {
  display: inline-block;
  width: 30px;
  padding-top: 1px;
  vertical-align: top;
}

.pay-method-item__cont {
  display: inline-block;
  width: calc(100% - 30px);
  vertical-align: top;
}

.pay-method-item__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.pay-method-item__img {
  display: block;
}

.pay-method-item__title {
  display: block;
  font: 700 16px/24px "ubuntu";
  color: #ff7300;
}

@media (max-width: 767px) {
  .pay-method-item__title {
    font-size: 15px;
  }
}

.pay-method-item__text {
  display: block;
  padding: 0 0 5px;
  font: 400 15px/24px "ubuntu";
  color: #717171;
}

@media (max-width: 1023px) {
  .pay-method-item__text {
    padding-bottom: 17px;
  }
}
@media (max-width: 767px) {
  .pay-method-item__text {
    padding-bottom: 12px;
    font-size: 14px;
    line-height: 20px;
  }
}

.pay-method-item__choose-text {
  display: inline-block;
  padding-right: 19px;
  font: 400 15px/24px "ubuntu";
  color: #404041;
  vertical-align: middle;
}

.pay-method-item__choose-select {
  display: inline-block;
  width: 70%;
  max-width: 440px;
  vertical-align: middle;
}

@media (max-width: 1023px) {
  .pay-method-item__choose-select {
    width: 55%;
  }
}
@media (max-width: 767px) {
  .pay-method-item__choose-text {
    display: block;
    padding-bottom: 11px;
    font-size: 14px;
  }

  .pay-method-item__choose-select {
    display: block;
    width: 100%;
  }
}

.product-card {
  position: relative;
  height: auto !important;
}

@media (max-width: 1280px) {
  .product-card {
    height: 301px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-card {
    height: 301px;
  }
}
@media (max-width: 1023px) {
  .product-card {
    height: auto;
  }
}

.product-card__cart-marker {
  position: fixed;
  z-index: 999;
  width: 0;
  height: 0;
  border-radius: 3px;
  background: #ff7300;
}

.product-card__cart-marker.in-animate {
  width: 19px !important;
  height: 19px !important;
  border-radius: 50%;
  transition: all 0.3s;
  transform: translate(50%, 50%);
}

.product-card__inner {
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - -1px);
  padding: 25px 0;
  border: 0.5px solid #dfdfdf;
  overflow: hidden;
  background: #ffffff;
}

@media (min-width: 1024px) {
  .product-card__inner:hover {
    z-index: 10;
    height: auto;
    -webkit-box-shadow: 0 0 27px rgba(255, 115, 0, 0.22);
    box-shadow: 0 0 27px rgba(255, 115, 0, 0.22);
    border-color: #ff7300;
  }

  .product-card__inner:hover .product-card__img {
    margin-bottom: 20px;
  }

  .product-card__inner:hover .product-card__features {
    display: block;
  }
}
@media (min-width: 1024px) and (max-width: 1023px) {
  .product-card__inner:hover .product-card__features {
    display: none;
  }
}
@media (min-width: 1024px) {
  .product-card__inner:hover .product-card__info {
    display: block;
  }

  .product-card__inner:hover .product-card__top-link {
    visibility: visible;
    opacity: 1;
  }

  .product-card__top-link.inCompare,
  .product-card__top-link.inFav {
    visibility: visible;
    opacity: 1;
  }

  .product-card__inner:hover .product-card__title {
    margin-bottom: 5px;
  }

  .product-card__inner:hover .product-card__prices {
    padding-bottom: 15px;
  }
}
@media (max-width: 1023px) {
  .product-card__inner:hover {
    border-color: #ff7300 !important;
  }
}
@media (max-width: 1023px) {
  .product-card__inner {
    position: static;
    height: auto;
  }

  .main-tabs__inner .product-card {
    margin-top: 0;
  }

  .main-tabs__inner .product-card__list-item:nth-child(1) .product-card,
  .main-tabs__inner .product-card__list-item:nth-child(2) .product-card,
  .main-tabs__inner .product-card__list-item:nth-child(3) .product-card {
    margin-top: 0;
  }
}

/* Новое меню на главной */

.left-menu {
  position: relative;
  z-index: 4;
  width: 16.6%;
  background: #ff7300;
  padding: 20px;
  order: 1;
  margin-bottom: 400px;
}
@media (max-width: 1410px) {
  .left-menu {
      width: 20%;
  }
}
@media (max-width: 1199px) {
    .left-menu {
        width: 25%;
        padding-top: 20px;
        padding-right: 15px;
        padding-bottom: 20px;
        padding-left: 15px;
    }
}
@media (max-width: 1023px) {
  .left-menu {
      display: none;
  }
}

.left-menu.no-margin-bottom {
	margin-bottom:0;
}

.left-menu + .main-content {
    width: 83.4%;
    order: 2;
}
@media (max-width: 1410px) {
  .left-menu + .main-content {
      width: 80%;
  }
}
@media (max-width: 1199px) {
    .left-menu + .main-content {
        width: 75%;
    }
}

.left-menu + .main-content.main-content--pl {
    padding-left: 30px;
}

.left-menu + .main-content.main-content--pl .new-cards__list {
    margin-left: -30px;
}
@media (max-width: 1023px) {
  .left-menu + .main-content.main-content--pl .new-cards__list {
      margin-left: -22px;
  }
}
@media (max-width: 767px) {
  .left-menu + .main-content.main-content--pl .new-cards__list {
      margin-left: -16px;
  }
}

.left-menu + .right-filter {
    width: 16.6%;
    order: 3;
}
@media (max-width: 1410px) {
  .left-menu + .right-filter {
      width: 20%;
  }
}
@media (max-width: 1199px) {
  .left-menu + .right-filter {
      width: 25%;
  }
}

.right-filter + .main-content {
    width: 66.8%;
    order: 2;
}
@media (max-width: 1410px) {
    .right-filter + .main-content {
        width: 60%;
    }
}
@media (max-width: 1199px) {
  .right-filter + .main-content {
      width: 50%;
  }
}

.main-tabs__block--first {
  margin-left: 16.6%;
}
@media(max-width: 1410px) {
  .main-tabs__block--first {
    margin-left: 20%;
  }
}
@media (max-width: 1199px) {
  .main-tabs__block--first {
    margin-left: 25%;
  }
}

.main-block-menu ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .main-block-menu ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    gap: 10px;
  }
}

.main-block-menu ul li {
  width: 100%;
}

.main-block-menu ul li a {
  display: block;
  padding: 10px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #000000;
}

.main-block-menu ul li a:hover {
  color: #ff7300;
}

.main-block-menu ul li a span {
  display: block;
  padding-top: 6px;
}

.main-block-menu ul li img {
  width: 100%;
  height: auto;
  padding: 8px;
}

@media (max-width: 1280px) {
  .main-block-menu {
    padding: 0 10px;
  }

  .main-block-menu ul li a {
    line-height: 1.1;
  }

  .main-block-menu ul li a span {
    padding-top: 0;
  }

  .main-block-menu ul li img {
    padding: 8px 6px 6px;
  }
}
@media (max-width: 1023px) {
  .main-block-menu {
    padding: 0;
  }

  .main-block-menu ul li img {
    padding: 8px 0 6px;
  }
}

@media (max-width: 767px) {
  .main-block-menu ul li a {
    display: flex;
    align-items: center;
    padding: 0;
    text-align: left;
    gap: 10px;
  }

  .main-block-menu ul li img {
    width: 60px;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .main-block-menu {
    padding-top: 14px;
  }

  .main-block-menu ul li a span {
    padding-top: 3px;
  }
}

/* Блок новостей в левом меню */

.news-left-menu {
  position: absolute;
  right: -1px;
  left: 0;
  padding: 20px;
  border: 1px solid #dfdfdf;
  border-top: 0;
  background: #ffffff;
}
@media(max-width: 1199px) {
  .news-left-menu {
    padding-top: 20px;
    padding-right: 15px;
    padding-bottom: 20px;
    padding-left: 15px;
  }
}

.news-left-menu h3 {
  margin-bottom: 25px;
  padding-top: 8px;
  padding-left: 9px;
  font-size: 26px;
}

.news-left-menu h3 a {
  color: #000000;
}

.news-left-menu h3 a:hover {
  text-decoration: none;
  color: #ff7300;
}

.news-item-inline:not(:last-child) {
  margin-bottom: 28px;
}

.news-item-inline .news-item__date {
  font-size: 15px;
}

.news-item-inline .news-item__link {
  padding-top: 2px;
  font-size: 19px;
  font-weight: 700;
}

.main-tabs__block-news {
  display: none;
}

@media (max-width: 1280px) {
  .news-item-inline .news-item__link {
    padding: 0;
    font-size: 15px;
    line-height: 1;
  }

  .news-left-menu h3 {
    margin-bottom: 18px;
    padding-top: 0;
    padding-left: 5px;
    font-size: 25px;
  }

  .news-item-inline:not(:last-child) {
    margin-bottom: 21px;
  }

  .news-item-inline .news-item__date {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .title-s1 {
    position: relative !important;
  }

  .title-s1 h1 {
    padding: 17px 0 10px 0 !important;
  }

  .main-tabs__block-news {
    display: block;
    margin-bottom: 110px;
  }

  .main-tabs__block-title {
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: 700;
  }

  .main-tabs__block-title a {
    color: #000000;
  }

  .main-tabs__block-title a:hover {
    color: #ff7300;
  }

  .main-tabs__block-news .main-news__item--col3 {
    width: 33.3333% !important;
  }

  .main-tabs__block-news .main-news__item--col3:nth-child(1n + 5) {
    display: inline-block !important;
  }

  .main-tabs__block-news .main-news--large .news-item__image {
    margin-bottom: 13px;
  }

  .main-tabs__block-news .main-news--large .news-item__date {
    padding-bottom: 3px;
  }

  .main-tabs__block-news .main-news--large .news-item__link {
    line-height: 1.1;
  }

  .main-tabs__title {
    top: calc(410px + 35vw) !important;
  }
}
@media (max-width: 480px) {
  .main-tabs__block-news .main-news__item--col3 {
    width: 50% !important;
  }

  .main-tabs__block-news .main-news__item--col3:nth-child(1n + 3) {
    display: none !important;
  }

  .main-tabs__block-news .main-news__item--col3:nth-child(1n + 5) {
    display: none !important;
  }

  .main-tabs__block-news .main-news__item {
    padding: 0 5px;
  }

  .main-tabs__block-news .main-news--large .news-item__image {
    margin-bottom: 12px;
  }

  .main-tabs__title {
    top: 586px !important;
  }
}

.product-card__content {
  width: 100%;
  margin: auto;
  padding: 0 16px;
}
@media (max-width: 767px) {
  .product-card__content {
    padding-right: 8px;
    padding-left: 8px;
  }
}

.product-card__marker {
  position: absolute;
  top: 0;
  left: 13px;
  z-index: 2;
  padding: 4px 8px 6px;
  border-radius: 0 0 2px 2px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.product-card__marker--blue {
  -webkit-box-shadow: 0 1px 10px rgba(0, 64, 128, 0.2);
  box-shadow: 0 1px 10px rgba(0, 64, 128, 0.2);
  background: #5fc900;
}

.product-card__marker--yellow {
  color: #434343;
  -webkit-box-shadow: 0 1px 10px rgba(0, 64, 128, 0.2);
  box-shadow: 0 1px 10px rgba(0, 64, 128, 0.2);
  background: #fdf703;
}

.product-card__marker--green {
  -webkit-box-shadow: 0 1px 10px rgba(71, 141, 9, 0.2);
  box-shadow: 0 1px 10px rgba(71, 141, 9, 0.2);
  background: #fb3333;
}

.product-card__img {
  position: relative;
  display: block;
  width: 100%;
  height: 150px;
  margin-bottom: 12px;
  -webkit-transition: none;
  transition: none;
  overflow: hidden;
}

.product-card__img a {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.product-card__img img {
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 1280px) {
  .product-card__img {
    height: 142px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-card__img {
    height: 142px;
  }
}

.product-card__top {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 1;
  letter-spacing: -5px;
}

.product-card__top-link {
  display: inline-block;
  width: 31px;
  height: 21px;
  margin-left: 7px;
  border: 1px solid #ff7300;
  border-radius: 2px;
  font: 400 16px "ubuntu";
  text-align: center;
  color: #ff7300;
  fill: #ff7300;
  stroke: #ff7300;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.3s,
    opacity 0.3s !important;
}

@media (max-width: 1023px) {
  .product-card__top-link {
    visibility: visible;
    opacity: 1;
  }
}

.product-card__top-link-icon {
  width: 16px;
  height: 13px;
  fill: inherit;
  stroke: inherit;
}

.product-card__top-link-text {
  display: none;
}

@media (max-width: 1023px) {
  .product-card__top-link--compare {
    display: none;
  }
}

.product-card__features {
  display: none;
  padding: 0 0 13px 0;
  line-height: 0;
  letter-spacing: -5px;
}

.product-card__features-item {
  display: inline-block;
  margin: 0 2px 2px 0;
  padding: 3px 10px;
  border: 1px solid #dfdfdf;
  border-radius: 30px;
  font-size: 14px;
  line-height: 14px;
  color: #717171;
  letter-spacing: normal;
  vertical-align: top;
  background: #ffffff;
}

.product-card__features-item--min {
  padding: 3px 5px;
}

.product-card__features-item a {
  color: #717171;
}

.product-card__title {
  display: block;
  height: 60px;
  margin-bottom: 21px;
  font-size: 15px;
  line-height: 20px;
  overflow: hidden;
}

.product-card__title a {
  color: #404041;
}

.product-card__title a:hover {
  color: #e4a030;
}

@media (max-width: 1280px) {
  .product-card__title {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-card__title {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 1023px) {
  .product-card__title {
    margin-bottom: 5px;
  }
}

.product-card__info {
  display: none;
  overflow: hidden;
  padding: 0 0 15px 0;
  font-size: 14px;
  color: #717171;
}

.product-card__info:after {
  display: block;
  content: " ";
  clear: both;
}

.product-card__info__name {
  width: 100%;
}

.product-card__info__link {
  display: block;
  text-align: right;
  white-space: nowrap;
}

.product-card__info__name .product-card__info__link {
  text-align: left;
  width: 100%;
  margin-bottom: 5px;
  white-space: nowrap;
}

.product-card__info__link:hover {
  text-decoration: underline;
}

@media (max-width: 1023px) {
  .product-card__info {
    display: block;
  }
}

.product-card__prices {
  padding: 0 0 0 0;
}

.product-card__prices:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1023px) {
  .product-card__prices {
    padding-bottom: 10px;
  }
}

.product-card__prices-old {
  position: relative;
  display: block;
  padding-top: 5px;
  font-size: 19px;
  color: #717171;
  float: left;
}

@media (max-width: 1280px) {
  .product-card__prices-old {
    font-size: 16px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-card__prices-old {
    font-size: 16px;
  }
}

.product-card__prices-old:before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  display: block;
  height: 3px;
  margin: 1px 0 0 0;
  content: "";
  background: rgba(220, 23, 54, 0.4);
}

.product-card__prices-new {
  display: block;
  font-size: 27px;
  font-weight: 700;
  float: right;
}

@media (max-width: 1280px) {
  .product-card__prices-new {
    font-size: 22px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-card__prices-new {
    font-size: 22px;
  }
}

.product-card__prices-new .rub {
  font-size: 18px;
}

.product-card__bottom {
  display: flex;
  gap: 6px;
}

.product-card__bottom-left {
  flex-grow: 1;
}

.product-card__bottom-right {
  flex-basis: 80px;
  flex-grow: 1;
}
.product-card__bottom-right .rc-button {
  white-space: nowrap;
}

.product-card__bottom-right .btn-small [class*="icon-"] {
  display: none;
}

.product-card__bottom-right .btn-small.in-move {
  background: transparent;
}

@media (max-width: 1023px) {
  .product-card__bottom-right .btn-small {
    padding: 6px 5px 7px;
    font-size: 0;
    float: right;
  }

  .product-card__bottom-right .btn-small [class*="icon"] {
    display: inline-block;
  }
}

.product-card__desc {
  display: none;
  font: 400 15px/23px "ubuntu";
  color: #404041;
}

.product-card__list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  padding-bottom: 40px;
  font-size: 0;
  line-height: 0;
}

@media (max-width: 1280px) {
  .product-card__list {
    padding-bottom: 48px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-card__list {
    padding-bottom: 40px;
  }
}
@media (max-width: 1023px) {
  .product-card__list {
    position: relative;
    margin: 0 -22px;
    padding-bottom: 27px;
  }

  .product-card__list.content-left-indent {
    margin: 0 -22px;
  }

  .product-card__list .slick-list {
    padding: 0 1px;
  }

  .product-card__list .slick-arrow {
    position: absolute;
    top: -49px;
    display: block;
    width: 30px;
    height: 30px;
  }

  .product-card__list .slick-arrow:before {
    position: absolute;
    top: 50%;
    display: block;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 0;
    border-bottom: 2px solid #c8c8c8;
    border-left: 2px solid #c8c8c8;
    content: "";
  }

  .product-card__list .slick-prev {
    right: 40px;
  }

  .product-card__list .slick-prev:before {
    left: 11px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .product-card__list .slick-next {
    right: 0;
  }

  .product-card__list .slick-next:before {
    left: 8px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  .product-card__list--fav {
    white-space: normal;
    overflow: visible;
  }

  .product-card__list--fav:before {
    display: none;
  }

  .product-card__list--fav .product-card__list-item--7:nth-child(1n) {
    position: relative;
    width: 33.33%;
    margin-top: -1px;
  }

  .product-card__list--fav .product-card__list-item--7:nth-child(1n):hover {
    z-index: 10;
  }

  .product-card__list--fav
    .product-card__list-item--7:nth-child(1n)
    .product-card__inner {
    border-left-color: transparent;
  }
}
@media (max-width: 1023px) and (min-width: 1024px) {
  .product-card__list--fav
    .product-card__list-item--7:nth-child(1n)
    .product-card__inner:hover {
    border-left-color: #ff7300;
  }
}
@media (max-width: 1023px) {
  .product-card__list--fav
    .product-card__list-item--7:nth-child(3n + 1)
    .product-card__inner {
    border-left-color: #dfdfdf;
  }
}
@media (max-width: 1023px) and (min-width: 1024px) {
  .product-card__list--fav
    .product-card__list-item--7:nth-child(3n + 1)
    .product-card__inner:hover {
    border-left-color: #ff7300;
  }
}
@media (max-width: 767px) {
  .product-card__list {
    margin-right: -16px;
    margin-left: -16px;
    padding-bottom: 38px;
  }

  .product-card__list--fav .product-card__list-item--7:nth-child(1n) {
    width: 50%;
  }

  .product-card__list--fav
    .product-card__list-item--7:nth-child(1n)
    .product-card__inner {
    border-left-color: transparent;
  }

  .product-card__list--fav
    .product-card__list-item--7:nth-child(1n)
    .product-card__inner:hover {
    border-left-color: #dfdfdf;
  }

  .product-card__list--fav
    .product-card__list-item--7:nth-child(2n + 1)
    .product-card__inner {
    border-left-color: #dfdfdf;
  }

  .product-card__list--fav
    .product-card__list-item--7:nth-child(2n + 1)
    .product-card__inner:hover {
    border-left-color: #dfdfdf;
  }

  .product-card__list--fav .product-card__list-item--6:nth-child(1n) {
    width: 50%;
  }

  .product-card__list--fav
    .product-card__list-item--6:nth-child(1n)
    .product-card__inner {
    border-left-color: transparent;
  }

  .product-card__list--fav
    .product-card__list-item--6:nth-child(1n)
    .product-card__inner:hover {
    border-left-color: #dfdfdf;
  }

  .product-card__list--fav
    .product-card__list-item--6:nth-child(2n + 1)
    .product-card__inner {
    border-left-color: #dfdfdf;
  }

  .product-card__list--fav
    .product-card__list-item--6:nth-child(2n + 1)
    .product-card__inner:hover {
    border-left-color: #dfdfdf;
  }
}

.product-card__list-item {
  display: inline-block;
  width: 14.28%;
  margin: 0;
  margin-top: -1px;
  font-size: 15px;
  line-height: normal;
  letter-spacing: normal;
  vertical-align: top;
}

.product-card__list-item .product-card__inner {
  border-left-color: transparent;
}

@media (min-width: 1024px) {
  .product-card__list-item .product-card__inner:hover {
    border-left-color: #ff7300;
  }
}

.product-card__list-item--3 {
  width: 33.33%;
}

.product-card__list-item--3:nth-child(3n + 1) .product-card__inner {
  border-left-color: transparent;
}

.product-card__list-item--3:first-child .product-card__inner {
  border-left-color: #d3d3d3;
}

.product-card__list-item--3:nth-child(3n + 1) .product-card__inner:hover {
  border-left-color: #ff7300;
}

@media (max-width: 1280px) {
  .product-card__list-item--3 {
    width: 50%;
  }

  .product-card__list-item--3:nth-child(3n) {
    display: none;
  }
}

.product-card__list[data-entity="catalog-products-viewed-container"]
  .product-card__list-item--3:nth-child(3n) {
  display: block;
}

@media (max-width: 1300px) and (min-width: 1024px) {
  .product-card__list-item--3 {
    width: 50%;
  }

  .product-card__list-item--3:nth-child(3n) {
    display: none;
  }
}
@media (max-width: 480px) {
  .product-card__list-item--3:nth-child(3n + 1) .product-card__inner {
    border-left-color: transparent;
  }
}

.product-card__list-item--4 {
  width: 25%;
}

.product-card__list-item--4:nth-child(4n + 1) .product-card__inner {
  border-left-color: #dfdfdf;
}

.product-card__list-item--4:nth-child(4n + 1) .product-card__inner:hover {
  border-left-color: #ff7300;
}

@media (max-width: 1440px) {
  .product-card__list-item--4 {
    width: 33.33%;
  }

  .product-card__list-item--4:nth-child(1n) .product-card__inner {
    border-left-color: transparent;
  }

  .product-card__list-item--4:nth-child(1n) .product-card__inner:hover {
    border-left-color: #ff7300;
  }

  .product-card__list-item--4:nth-child(3n + 1) .product-card__inner {
    border-left-color: #dfdfdf;
  }

  .product-card__list-item--4:nth-child(3n + 1) .product-card__inner:hover {
    border-left-color: #ff7300;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-card__list-item--4 {
    width: 33.33%;
  }

  .product-card__list-item--4:nth-child(1n) .product-card__inner {
    border-left-color: transparent;
  }

  .product-card__list-item--4:nth-child(1n) .product-card__inner:hover {
    border-left-color: #ff7300;
  }

  .product-card__list-item--4:nth-child(3n + 1) .product-card__inner {
    border-left-color: #dfdfdf;
  }

  .product-card__list-item--4:nth-child(3n + 1) .product-card__inner:hover {
    border-left-color: #ff7300;
  }
}

.product-card__list-item--5 {
  width: 20%;
}

.product-card__list-item--5:nth-child(5n + 1) .product-card__inner {
  border-left-color: #dfdfdf;
}

.product-card__list-item--5:nth-child(5n + 1) .product-card__inner:hover {
  border-left-color: #ff7300;
}

@media (max-width: 1280px) {
  .product-card__list-item--5 {
    width: 25%;
  }

  .product-card__list-item--5:nth-child(1n) .product-card__inner {
    border-left-color: transparent;
  }

  .product-card__list-item--5:nth-child(1n) .product-card__inner:hover {
    border-left-color: #ff7300;
  }

  .product-card__list-item--5:nth-child(4n + 1) .product-card__inner {
    border-left-color: #dfdfdf;
  }

  .product-card__list-item--5:nth-child(4n + 1) .product-card__inner:hover {
    border-left-color: #ff7300;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-card__list-item--5 {
    width: 25%;
  }

  .product-card__list-item--5:nth-child(1n) .product-card__inner {
    border-left-color: transparent;
  }

  .product-card__list-item--5:nth-child(1n) .product-card__inner:hover {
    border-left-color: #ff7300;
  }

  .product-card__list-item--5:nth-child(4n + 1) .product-card__inner {
    border-left-color: #dfdfdf;
  }

  .product-card__list-item--5:nth-child(4n + 1) .product-card__inner:hover {
    border-left-color: #ff7300;
  }
}

.product-card__list-item--6 {
  width: 16.66%;
}

.product-card__list-item--6:nth-child(6n + 1) .product-card__inner {
  border-left-color: #dfdfdf;
}

.product-card__list-item--6:nth-child(6n + 1) .product-card__inner:hover {
  border-left-color: #ff7300;
}

@media (max-width: 1280px) {
  .product-card__list-item--6 {
    width: 20%;
  }

  .product-card__list-item--6:nth-child(1n + 1) .product-card__inner:hover {
    border-left-color: #ff7300;
  }

  .product-card__list-item--6:nth-child(1n + 6) {
    display: none;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-card__list-item--6 {
    width: 20%;
  }

  .product-card__list-item--6:nth-child(1n + 1) .product-card__inner:hover {
    border-left-color: #ff7300;
  }

  .product-card__list-item--6:nth-child(1n + 6) {
    display: none;
  }
}

.product-card__list-item--7 {
  width: 14.28%;
}

.product-card__list-item--7:nth-child(7n + 1) .product-card__inner {
  border-left-color: #dfdfdf;
}

.product-card__list-item--7:nth-child(7n + 1) .product-card__inner:hover {
  border-left-color: #ff7300;
}

@media (max-width: 1280px) {
  .product-card__list-item--7 {
    width: 20%;
  }

  .product-card__list-item--7:nth-child(7n) {
    display: none;
  }

  .product-card__list-item--7:nth-child(6n) {
    display: none;
  }

  .product-card__list-item--7:nth-child(5n + 1) .product-card__inner {
    border-left-color: #dfdfdf;
  }

  .product-card__list-item--7:nth-child(5n + 1) .product-card__inner:hover {
    border-left-color: #ff7300;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-card__list-item--7 {
    width: 20%;
  }

  .product-card__list-item--7:nth-child(7n) {
    display: none;
  }

  .product-card__list-item--7:nth-child(6n) {
    display: none;
  }

  .product-card__list-item--7:nth-child(5n + 1) .product-card__inner {
    border-left-color: #dfdfdf;
  }

  .product-card__list-item--7:nth-child(5n + 1) .product-card__inner:hover {
    border-left-color: #ff7300;
  }
}
@media (max-width: 1023px) {
  .product-card__list-item:nth-child(1n) {
    display: inline-block;
    width: 240px;
    white-space: normal;
    overflow: hidden;
  }

  .product-card__list-item--4:nth-child(1n) {
    position: relative;
    display: inline-block;
    width: 33.33%;
    margin-top: -2px;
    white-space: normal;
    overflow: hidden;
  }

  .product-card__list-item--4:nth-child(1n):hover {
    z-index: 10;
  }

  .product-card__list-item--4:nth-child(1n) .product-card__inner {
    border-left-color: transparent;
  }

  .product-card__list-item--4:nth-child(1n) .product-card__inner:hover {
    border-left-color: #dfdfdf;
  }

  .product-card__list-item--4:nth-child(3n + 1) .product-card__inner:hover {
    border-left-color: #dfdfdf;
  }

  .product-card__list-item--5:nth-child(1n) {
    position: relative;
    display: inline-block;
    width: 33.33%;
    margin-top: -1px;
    white-space: normal;
    overflow: hidden;
  }

  .product-card__list-item--5:nth-child(1n):hover {
    z-index: 10;
  }

  .product-card__list-item--5:nth-child(1n) .product-card__inner {
    border-left-color: transparent;
  }

  .product-card__list-item--5:nth-child(1n) .product-card__inner:hover {
    border-left-color: #dfdfdf;
  }

  .product-card__list-item--5:nth-child(4n + 1) .product-card__inner {
    border-left-color: #dfdfdf;
  }

  .product-card__list-item--5:nth-child(4n + 1) .product-card__inner:hover {
    border-left-color: #dfdfdf;
  }

  .product-card__list-item--6 {
    overflow: visible;
  }

  .product-card__list-item--6:nth-child(1n) {
    position: relative;
    width: 33.33%;
  }

  .product-card__list-item--6:nth-child(1n):hover {
    z-index: 10;
  }

  .product-card__list-item--6:nth-child(1n) .product-card__inner {
    border-left-color: transparent;
  }

  .product-card__list-item--6:nth-child(1n) .product-card__inner:hover {
    border-left-color: #dfdfdf;
  }

  .product-card__list-item--6:nth-child(3n + 1) .product-card__inner {
    border-left-color: #dfdfdf;
  }

  .product-card__list-item--6:nth-child(3n + 1) .product-card__inner:hover {
    border-left-color: #dfdfdf;
  }
}
@media (max-width: 767px) {
  .product-card__list-item--4:nth-child(1n) {
    width: 50%;
  }

  .product-card__list-item--4:nth-child(1n) .product-card__inner {
    border-left-color: transparent;
  }

  .product-card__list-item--4:nth-child(1n) .product-card__inner:hover {
    border-left-color: #dfdfdf;
  }

  .product-card__list-item--4:nth-child(2n + 1) .product-card__inner:hover {
    border-left-color: #dfdfdf;
  }

  .product-card__list-item--5:nth-child(1n) {
    width: 50%;
  }

  .product-card__list-item--5:nth-child(1n) .product-card__inner {
    border-left-color: transparent;
  }

  .product-card__list-item--5:nth-child(1n) .product-card__inner:hover {
    border-left-color: #dfdfdf;
  }

  .product-card__list-item--5:nth-child(2n + 1) .product-card__inner {
    border-left-color: #dfdfdf;
  }

  .product-card__list-item--5:nth-child(2n + 1) .product-card__inner:hover {
    border-left-color: #dfdfdf;
  }

  .product-card__list-item--6:nth-child(1n) {
    width: 50%;
  }

  .product-card__list-item--6:nth-child(1n) .product-card__inner {
    border-left-color: transparent;
  }

  .product-card__list-item--6:nth-child(1n) .product-card__inner:hover {
    border-left-color: #dfdfdf;
  }

  .product-card__list-item--6:nth-child(2n + 1) .product-card__inner {
    border-left-color: #dfdfdf;
  }

  .product-card__list-item--6:nth-child(2n + 1) .product-card__inner:hover {
    border-left-color: #dfdfdf;
  }
}
@media (max-width: 1023px) {
  .product-card__list--mobile-row {
    margin: 0 -22px;
  }
}
@media (max-width: 767px) {
  .product-card__list--mobile-row {
    padding-top: 1px;
    white-space: normal;
  }

  .product-card__list--mobile-row .product-card__list-item {
    margin-top: -1px;
  }
}

.product-card__list--table .product-card {
  height: auto;
}

.product-card__list--table .product-card__inner {
  position: static;
  padding: 21px 0 12px;
  border: 1px solid #dfdfdf !important;
  border-bottom-color: transparent;
}

.product-card__list--table .product-card__inner:hover {
  position: relative;
  visibility: visible;
  border-color: #ff7300 !important;
}

.product-card__list--table .product-card__inner:hover .product-card__title {
  margin-bottom: 15px;
}

.product-card__list--table .product-card__inner:hover .product-card__prices {
  padding-bottom: 0;
}

@media (max-width: 1280px) {
  .product-card__list--table .product-card__inner:hover .product-card__prices {
    padding-bottom: 26px;
  }

  .product-card__list--table .product-card__inner:hover .product-card__title {
    margin-bottom: 5px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-card__list--table .product-card__inner:hover .product-card__prices {
    padding-bottom: 26px;
  }

  .product-card__list--table .product-card__inner:hover .product-card__title {
    margin-bottom: 5px;
  }
}

.product-card__list--table .product-card__content {
  max-width: 100%;
  padding: 0 30px;
  font-size: 0;
}

.product-card__list--table .product-card__top {
  position: static;
  display: inline-block;
  width: 50%;
  padding-right: 15px;
  visibility: visible;
  opacity: 1;
  vertical-align: top;
  float: left;
}

.product-card__list--table .product-card__top-link {
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 24px;
  border: 0;
  text-align: left;
  fill: #ff7300;
  letter-spacing: normal;
  float: none;
  stroke: #ff7300;
}

.product-card__list--table .product-card__top-link-icon {
  display: inline-block;
  width: 16px;
  height: 15px;
  margin-right: 7px;
  vertical-align: middle;
}

.product-card__list--table .product-card__top-link-text {
  display: inline-block;
  width: calc(100% - 28px);
  vertical-align: middle;
}

.product-card__list--table .product-card__top-link:last-child {
  margin-bottom: 0;
}

.product-card__list--table
  .product-card__top-link:hover
  .product-card__top-link-text {
  text-decoration: underline;
}

@media (max-width: 1280px) {
  .product-card__list--table .product-card__top {
    display: block;
    width: 100%;
    padding: 0 0 23px;
  }

  .product-card__list--table .product-card__top-link {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-card__list--table .product-card__top {
    display: block;
    width: 100%;
    padding: 0 0 23px;
  }

  .product-card__list--table .product-card__top-link {
    margin-bottom: 10px;
    font-size: 14px;
  }
}

.product-card__list--table .product-card__features {
  display: none !important;
}

.product-card__list--table .product-card__title {
  height: auto;
  margin-bottom: 15px;
  font-size: 20px;
}

.product-card__list--table .product-card__title a {
  color: #ff7300;
}

.product-card__list--table .product-card__title a:hover {
  text-decoration: underline;
  color: #ff7300;
}

@media (max-width: 1280px) {
  .product-card__list--table .product-card__title {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-card__list--table .product-card__title {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 26px;
  }
}

.product-card__list--table .product-card__desc {
  display: block;
}

@media (max-width: 1280px) {
  .product-card__list--table .product-card__desc {
    display: -webkit-box;
    max-height: 123px;
    padding: 0;
    font-size: 14px;
    line-height: 21px;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-card__list--table .product-card__desc {
    display: -webkit-box;
    max-height: 123px;
    padding: 0;
    font-size: 14px;
    line-height: 21px;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.product-card__list--table .product-card__info {
  display: none !important;
}

.product-card__list--table .product-card__center {
  display: inline-block;
  width: calc(100% - 220px - 435px);
  padding-right: 15px;
  padding-left: 11px;
  vertical-align: top;
}

@media (max-width: 1650px) {
  .product-card__list--table .product-card__center {
    width: calc(100% - 220px - 320px);
  }
}
@media (max-width: 1450px) {
  .product-card__list--table .product-card__center {
    width: calc(100% - 220px - 260px);
  }
}
@media (max-width: 1280px) {
  .product-card__list--table .product-card__center {
    width: calc(100% - 220px - 210px);
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-card__list--table .product-card__center {
    width: calc(100% - 220px - 210px);
  }
}
@media (max-width: 1150px) {
  .product-card__list--table .product-card__center {
    width: calc(100% - 200px - 190px);
  }
}

.product-card__list--table .product-card__tbl-right {
  display: inline-block;
  width: 435px;
  padding-top: 5px;
  vertical-align: top;
}

.product-card__list--table .product-card__tbl-right:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1650px) {
  .product-card__list--table .product-card__tbl-right {
    width: 320px;
  }
}
@media (max-width: 1450px) {
  .product-card__list--table .product-card__tbl-right {
    width: 260px;
  }
}
@media (max-width: 1280px) {
  .product-card__list--table .product-card__tbl-right {
    width: 210px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-card__list--table .product-card__tbl-right {
    width: 210px;
  }
}
@media (max-width: 1150px) {
  .product-card__list--table .product-card__tbl-right {
    width: 190px;
  }
}

.product-card__list--table .product-card__bottom {
  display: block;
  margin: 0 -15px;
  padding-top: 30px;
  clear: both;
}

.product-card__list--table .product-card__bottom-left {
  width: 50%;
  padding: 0 15px;
}

.product-card__list--table .product-card__bottom-right {
  width: 50%;
  padding: 0 15px;
}

.product-card__list--table .product-card__bottom-right .btn {
  padding: 13px 15px 17px;
  font-size: 15px;
}

@media (max-width: 1280px) {
  .product-card__list--table .product-card__bottom {
    padding-top: 0;
  }

  .product-card__list--table .product-card__bottom-left {
    width: 100px;
  }

  .product-card__list--table .product-card__bottom-right {
    width: calc(100% - 100px);
  }

  .product-card__list--table .product-card__bottom-right .btn {
    padding: 9px 5px 12px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-card__list--table .product-card__bottom {
    padding-top: 0;
  }

  .product-card__list--table .product-card__bottom-left {
    width: 100px;
  }

  .product-card__list--table .product-card__bottom-right {
    width: calc(100% - 100px);
  }

  .product-card__list--table .product-card__bottom-right .btn {
    padding: 9px 5px 12px;
  }
}

.product-card__list--table .product-card__bottom .spinner {
  padding: 13px 18px 15px;
}

.product-card__list--table .product-card__bottom .spinner__text {
  width: calc(100% - 30px);
  font-size: 17px;
}

.product-card__list--table .product-card__bottom .spinner__minus {
  width: 15px;
  height: 15px;
}

.product-card__list--table .product-card__bottom .spinner__minus:before {
  top: calc(50% - 1.5px);
  height: 3px;
}

.product-card__list--table .product-card__bottom .spinner__plus:after {
  left: calc(50% - 1.5px);
  width: 3px;
}

@media (max-width: 1280px) {
  .product-card__list--table .product-card__bottom .spinner {
    padding: 11px 8px 11px;
  }

  .product-card__list--table .product-card__bottom .spinner__text {
    width: calc(100% - 20px);
    font-size: 14px;
  }

  .product-card__list--table .product-card__bottom .spinner__minus {
    width: 10px;
    height: 10px;
  }

  .product-card__list--table .product-card__bottom .spinner__minus:before {
    top: calc(50% - 1px);
    height: 2px;
  }

  .product-card__list--table .product-card__bottom .spinner__plus {
    width: 10px;
    height: 10px;
  }

  .product-card__list--table .product-card__bottom .spinner__plus:after {
    left: calc(50% - 1px);
    width: 2px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-card__list--table .product-card__bottom .spinner {
    padding: 11px 8px 11px;
  }

  .product-card__list--table .product-card__bottom .spinner__text {
    width: calc(100% - 20px);
    font-size: 14px;
  }

  .product-card__list--table .product-card__bottom .spinner__minus {
    width: 10px;
    height: 10px;
  }

  .product-card__list--table .product-card__bottom .spinner__minus:before {
    top: calc(50% - 1px);
    height: 2px;
  }

  .product-card__list--table .product-card__bottom .spinner__plus {
    width: 10px;
    height: 10px;
  }

  .product-card__list--table .product-card__bottom .spinner__plus:after {
    left: calc(50% - 1px);
    width: 2px;
  }
}

.product-card__list--table .product-card__prices {
  display: inline-block;
  width: 50%;
  margin-top: -6px;
  padding-left: 15px;
  vertical-align: top;
  float: right;
}

.product-card__list--table .product-card__prices-old {
  display: table;
  padding-top: 0;
  font-size: 22px;
  float: none;
}

.product-card__list--table .product-card__prices-new {
  padding-bottom: 4px;
  font-size: 31px;
  float: none;
}

.product-card__list--table .product-card__prices-new .rub {
  font-size: 25px;
}

@media (max-width: 1280px) {
  .product-card__list--table .product-card__prices {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0 0 26px;
  }

  .product-card__list--table .product-card__prices-old {
    font-size: 16px;
  }

  .product-card__list--table .product-card__prices-new {
    padding-bottom: 7px;
    font-size: 22px;
  }

  .product-card__list--table .product-card__prices-new .rub {
    font-size: 20px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-card__list--table .product-card__prices {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0 0 26px;
  }

  .product-card__list--table .product-card__prices-old {
    font-size: 16px;
  }

  .product-card__list--table .product-card__prices-new {
    padding-bottom: 7px;
    font-size: 22px;
  }

  .product-card__list--table .product-card__prices-new .rub {
    font-size: 20px;
  }
}

.product-card__list--table .product-card__img {
  display: inline-block;
  width: 220px;
  height: auto;
  margin: 0;
  vertical-align: top;
}

.product-card__list--table .product-card__img img {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

@media (max-width: 1150px) {
  .product-card__list--table .product-card__img {
    width: 200px;
  }
}

.product-card__list--table .product-card__list-item {
  display: block;
  width: 100%;
  margin-bottom: -1px;
}

.product-card__list--table
  .product-card__list-item:last-child
  .product-card__inner {
  border-bottom-color: #dfdfdf;
}

.product-card__list--table
  .product-card__list-item:last-child
  .product-card__inner:hover {
  border-color: #ff7300;
}

.product-item {
  padding-bottom: 40px;
  font-size: 0;
}

@media (max-width: 1280px) {
  .product-item {
    padding-bottom: 30px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-item {
    padding-bottom: 30px;
  }
}

.product-item__list {
  margin: 0 -15px;
}

@media (max-width: 1023px) {
  .product-item__list {
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
  }
}

.product-item__item {
  display: inline-block;
  width: 25%;
  padding: 0 15px;
  vertical-align: top;
}

@media (max-width: 1450px) {
  .product-item__item {
    width: 33.33%;
  }

  .product-item__item:nth-child(1n + 4) {
    display: none;
  }
}
@media (max-width: 1023px) {
  .product-item__item {
    width: 390px;
    white-space: normal;
  }

  .product-item__item:nth-child(1n) {
    display: inline-block;
  }
}

.product-item__image {
  display: inline-block;
  width: 138px;
  vertical-align: top;
}

.product-item__image:hover {
  opacity: 0.8;
}

.product-item__img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #dfdfdf;
  border-radius: 3px;
}

.product-item__cont {
  display: inline-block;
  width: calc(100% - 138px);
  margin-top: -7px;
  padding-left: 17px;
  vertical-align: top;
}

@media (max-width: 1280px) {
  .product-item__cont {
    margin-top: -4px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-item__cont {
    margin-top: -4px;
  }
}

.product-item__link {
  display: block;
  margin-bottom: 3px;
  font-size: 16px;
  line-height: 27px;
}

.product-item__link:hover {
  text-decoration: underline;
}

@media (max-width: 1280px) {
  .product-item__link {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-item__link {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 1023px) {
  .product-item__link {
    font-size: 14px;
  }
}

.product-item__price {
  display: block;
  font: 700 22px "ubuntu";
  color: #404041;
}

.product-table {
  border-left: 1px solid #e7e7e7;
}

@media (max-width: 1279px) {
  .product-table {
    display: block;
    border: 1px solid #e7e7e7;
    border-radius: 3px;
  }
}
@media (max-width: 1100px) {
  .product-table {
    border-radius: 0;
  }
}
@media (max-width: 1023px) {
  .product-table {
    border-right: none;
    border-left: none;
  }
}
@media (max-width: 1279px) {
  .product-table tr {
    position: relative;
    display: block;
    padding-bottom: 20px;
    border-bottom: 1px solid #e7e7e7;
  }

  .product-table tr:after {
    display: block;
    content: " ";
    clear: both;
  }
}
@media (max-width: 1023px) {
  .product-table tr {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .product-table tr {
    letter-spacing: -5px;
  }
}

.product-table td {
  padding: 19px 0 19px 15px;
  border-top: none;
  border-right: none;
  border-left: none;
}

@media (max-width: 1279px) {
  .product-table td {
    border: none;
  }
}
@media (max-width: 1023px) {
  .product-table td {
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .product-table td {
    padding: 13px 0 13px 15px;
  }
}

.product-table td:first-child {
  width: 30px;
  vertical-align: top;
}

@media (max-width: 1279px) {
  .product-table td:first-child {
    display: none;
  }

  .product-table td:first-child.product-table__check-cell {
    display: block;
    width: 30px;
  }
}

/* @include b(tablet) {

  .product-table td:first-child.product-table__check-cell {
    border-left: none; } } */

@media (max-width: 767px) {
  .product-table td:first-child.product-table__check-cell {
    display: inline-block;
    width: 33px;
    padding-right: 9px;
    padding-left: 9px;
  }
}

.product-table td:nth-child(2) {
  width: 130px;
}

@media (max-width: 767px) {
  .product-table td:nth-child(2) {
    width: 160px;
  }

  .product-table td:nth-child(2).product-table__image-cell-short {
    width: 110px;
  }

  .product-table
    td:nth-child(2).product-table__image-cell-short
    .product-table__image {
    width: 110px;
    max-width: 100%;
    height: 82px;
  }
}
@media (max-width: 1279px) {
  .product-table td:nth-child(3) {
    width: calc(100% - 386px);
  }

  .product-table td:nth-child(3).product-table__main-cell-short {
    width: calc(100% - 416px);
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .product-table td:nth-child(3) {
    width: calc(100% - 160px);
    padding-right: 13px;
    padding-left: 0;
  }

  .product-table td:nth-child(3).product-table__main-cell-short {
    width: calc(100% - 160px);
    padding-left: 15px;
  }
}

.product-table td:nth-child(1n + 5) {
  width: 155px;
  white-space: nowrap;
}

@media (max-width: 1500px) {
  .product-table td:nth-child(1n + 5) {
    width: 130px;
  }
}
@media (max-width: 1279px) {
  .product-table td:nth-child(1n + 5) {
    width: auto;
  }
}
@media (max-width: 1279px) {
  .product-table td:nth-child(4) {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .product-table td:nth-child(4) {
    top: 70px;
    right: 18px;
  }
}
@media (max-width: 1279px) {
  .product-table td:nth-child(5) {
    width: 256px;
    padding: 20px 80px 20px 0;
  }
}
@media (max-width: 767px) {
  .product-table td:nth-child(5) {
    width: 33.33%;
    padding: 0 0 0 15px;
  }

  .product-table td:nth-child(5).product-table__prices-cell {
    width: 160px;
  }
}
@media (max-width: 1279px) {
  .product-table td:nth-child(6) {
    width: 127px;
    padding: 0 14px 0 0;
  }
}
@media (max-width: 1023px) {
  .product-table td:nth-child(6).product-table__spinner-cell {
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .product-table td:nth-child(6) {
    width: 33.33%;
  }

  .product-table td:nth-child(6).product-table__spinner-cell {
    width: calc(50% - 80px);
  }
}

.product-table td:last-child {
  width: 195px;
  padding-right: 30px;
  padding-left: 30px;
}

@media (max-width: 1500px) {
  .product-table td:last-child {
    width: 165px;
    padding-right: 25px;
    padding-left: 20px;
  }
}
@media (max-width: 1279px) {
  .product-table td:last-child {
    width: 129px;
    padding: 0 17px 0 0;
    border-right: none;
  }
}
@media (max-width: 767px) {
  .product-table td:last-child {
    width: 33.33%;
  }

  .product-table td:last-child.product-table__btn-cell {
    width: calc(50% - 80px);
    padding-bottom: 15px;
  }
}
@media (max-width: 1500px) {
  .product-table td {
    vertical-align: top;
  }
}
@media (max-width: 1279px) {
  .product-table td {
    display: block;
    float: left;
  }
}
@media (max-width: 767px) {
  .product-table td {
    display: inline-block;
    letter-spacing: normal;
    float: none;
    vertical-align: top;
  }
}
@media (max-width: 1023px) {
  .product-table.product-table__top-products tr {
    padding-bottom: 20px;
  }
}

.product-table__image {
  position: relative;
  display: block;
  width: 100px;
  height: 75px;
  border: 1px solid #c8c8c8;
  border-radius: 2px;
  overflow: hidden;
}

.product-table__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  .product-table__image {
    width: 130px;
    height: 100px;
  }
}

.product-table__title {
  display: block;
  padding: 0 10px 8px 0;
  font-size: 19px;
  font-weight: 700;
}

.product-table__title a:hover {
  text-decoration: underline;
}

@media (max-width: 1500px) {
  .product-table__title {
    font-size: 15px;
  }
}
@media (max-width: 1023px) {
  .product-table__title {
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .product-table__title {
    font-size: 14px;
    line-height: 19px;
  }
}

.product-table__list {
  margin-right: -40px;
}

@media (max-width: 1080px) {
  .product-table__list {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .product-table__list {
    padding-right: 40px;
  }
}

.product-table__list-term {
  display: inline-block;
  width: auto;
}

.product-table__list-descr {
  display: inline-block;
  width: auto;
  padding-right: 45px;
}

.product-table__list-item {
  display: inline-block;
  padding-right: 45px;
}

@media (max-width: 1600px) {
  .product-table__list-item {
    padding-right: 10px;
    font-size: 15px;
  }
}
@media (max-width: 1279px) {
  .product-table__list-item {
    padding-right: 30px;
  }
}

.product-table__list-item strong {
  padding-right: 10px;
}

.product-table__list-item a {
  color: #404041;
}

.product-table__list-item a:hover {
  text-decoration: underline;
}

.product-table__list--line {
  display: inline-block;
  margin-right: -30px;
}

.product-table__mark {
  font-weight: 700;
  color: #404041;
}

.product-table__rating {
  display: block;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.product-table__rating--up {
  color: #63c010;
}

.product-table__rating--up [class*="icon-"] {
  margin-right: 5px;
  fill: #63c010;
}

.product-table__rating--down {
  color: #e66563;
}

.product-table__rating--down [class*="icon-"] {
  fill: #e66563;
}

@media (max-width: 1500px) {
  .product-table__rating {
    padding-top: 10px;
  }
}

.product-table__price {
  display: block;
  font-size: 18px;
  color: #404041;
}

.product-table__price--retail {
  padding-bottom: 5px;
  color: #8e8e8e;
}

@media (max-width: 1500px) {
  .product-table__price {
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
  }

  .product-table__price strong {
    font-weight: 400;
  }
}
@media (max-width: 767px) {
  .product-table__price {
    font-size: 15px;
    line-height: 17px;
  }
}

.product-table__bottom-pagination {
  text-align: right;
}

.product-table__spinner {
  padding-top: 13px;
  padding-bottom: 14px;
  border: 1px solid #d5d5d5;
  background: #ffffff;
}

@media (max-width: 1500px) {
  .product-table__spinner {
    padding-top: 8px;
    padding-bottom: 9px;
  }
}

.product-table__buy-btn {
  padding-top: 14px;
  padding-bottom: 18px;
  font-size: 18px;
}

@media (max-width: 1500px) {
  .product-table__buy-btn {
    padding-top: 9px;
    padding-bottom: 13px;
    font-size: 17px;
  }
}

.product-table__remove {
  display: none;
  font: 700 15px "ubuntu";
  color: #e66563;
  fill: #ffffff;
}

.product-table__remove-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
  background: #e66563;
}

.product-table__remove-ico {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 8px;
  height: 7px;
  margin: auto;
  fill: inherit;
}

.product-table__remove-text {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}

@media (max-width: 1023px) {
  .product-table__remove {
    display: table;
    margin: 0 0 0 auto;
  }
}
@media (max-width: 767px) {
  .product-table__remove {
    display: inline-block;
    margin-top: 18px;
    vertical-align: bottom;
    float: right;
  }
}

.product-table--cart .product-table__title {
  font-size: 18px;
}

@media (max-width: 1280px) {
  .product-table--cart .product-table__title {
    padding-bottom: 2px;
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-table--cart .product-table__title {
    padding-bottom: 2px;
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 1023px) {
  .product-table--cart .product-table__title {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .product-table--cart .product-table__title {
    font-size: 14px;
    line-height: 19px;
  }
}
@media (max-width: 1280px) {
  .product-table--cart .product-table__list {
    font-size: 15px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-table--cart .product-table__list {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .product-table--cart .product-table__list {
    font-size: 14px;
  }
}

.product-table--cart .product-table__price {
  font-size: 30px;
  font-weight: 700;
}

.product-table--cart .product-table__price--old {
  position: relative;
  display: table;
  margin-bottom: 2px;
  font-size: 18px;
  color: #717171;
}

.product-table--cart .product-table__price--old:before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  margin-top: -1px;
  content: "";
  background: rgba(220, 23, 54, 0.4);
}

@media (max-width: 1280px) {
  .product-table--cart .product-table__price {
    line-height: 1.2;
  }

  .product-table--cart .product-table__price--old {
    margin-bottom: 3px;
    line-height: 1.2;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-table--cart .product-table__price {
    line-height: 1.2;
  }

  .product-table--cart .product-table__price--old {
    margin-bottom: 3px;
    line-height: 1.2;
  }
}
@media (max-width: 1023px) {
  .product-table--cart .product-table__price {
    display: inline-block;
    font-size: 27px;
  }

  .product-table--cart .product-table__price--old {
    display: inline-block;
    margin-right: 11px;
    padding: 0;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .product-table--cart .product-table__price {
    display: table;
    font-size: 22px;
  }

  .product-table--cart .product-table__price--old {
    font-size: 16px;
  }
}
@media (max-width: 1280px) {
  .product-table--cart tr {
    display: table-row;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-table--cart tr {
    display: table-row;
  }
}
@media (max-width: 1023px) {
  .product-table--cart tr {
    display: block;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .product-table--cart tr {
    padding-bottom: 5px;
  }
}

.product-table--cart td:nth-child(5) {
  width: 175px;
}

@media (max-width: 1280px) {
  .product-table--cart td:nth-child(5) {
    padding: 20px 0 20px 15px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-table--cart td:nth-child(5) {
    padding: 20px 0 20px 15px;
  }
}
@media (max-width: 1280px) {
  .product-table--cart td {
    display: table-cell;
    float: none;
  }

  .product-table--cart td:first-child.product-table__check-cell {
    display: table-cell;
  }

  .product-table--cart td:last-child {
    padding: 28px 10px 20px 20px;
  }

  .product-table--cart td:nth-child(3).product-table__main-cell-short {
    width: 40%;
  }

  .product-table--cart td:nth-child(4) {
    position: static;
  }

  .product-table--cart td:nth-child(5) {
    width: 160px;
    padding: 30px 0 20px 0;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-table--cart td {
    display: table-cell;
    float: none;
  }

  .product-table--cart td:first-child.product-table__check-cell {
    display: table-cell;
  }

  .product-table--cart td:last-child {
    padding: 28px 10px 20px 20px;
  }

  .product-table--cart td:nth-child(3).product-table__main-cell-short {
    width: 40%;
  }

  .product-table--cart td:nth-child(4) {
    position: static;
  }

  .product-table--cart td:nth-child(5) {
    width: 160px;
    padding: 30px 0 20px 0;
  }
}
@media (max-width: 1150px) {
  .product-table--cart td:nth-child(3).product-table__main-cell-short {
    width: 35%;
  }

  .product-table--cart td:nth-child(4z) {
    position: absolute;
    visibility: hidden;
  }
}
@media (max-width: 1023px) {
  .product-table--cart td {
    display: block;
    padding: 16px 0 20px 17px;
    float: left;
  }

  .product-table--cart td:nth-child(1).product-table__check-cell {
    display: none;
  }

  .product-table--cart td:nth-child(2) {
    width: 147px;
  }

  .product-table--cart td:nth-child(3).product-table__main-cell-short {
    width: calc(100% - 147px - 160px);
    padding-top: 11px;
    padding-right: 30px;
    padding-bottom: 0;
    padding-bottom: 9px;
  }

  .product-table--cart td:nth-child(5) {
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 16px;
    padding-right: 20px;
    padding-bottom: 0;
  }

  .product-table--cart td:last-child {
    width: calc(100% - 160px - 160px);
    padding-top: 0;
    padding-bottom: 10px;
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .product-table--cart td {
    padding: 10px 0 7px 12px;
  }

  .product-table--cart td:nth-child(2).product-table__image-cell-short {
    width: 142px;
  }

  .product-table--cart td:nth-child(3).product-table__main-cell-short {
    width: calc(100% - 142px);
    padding-left: 13px;
  }

  .product-table--cart td:nth-child(5) {
    position: static;
    width: calc(100% - 142px);
    padding: 0 13px 0;
    float: right;
    clear: left;
  }

  .product-table--cart td:last-child {
    width: 142px;
    padding-left: 12px;
  }
}
@media (max-width: 1023px) {
  .product-table--cart .product-table__image {
    width: 130px;
    height: 100px;
  }
}

.product-table--cart .spinner {
  padding-top: 13px;
  padding-bottom: 14px;
  border: 1px solid #d5d5d5;
  background: none;
}

@media (max-width: 1023px) {
  .product-table--cart .spinner {
    margin-bottom: 30px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .product-table--cart .spinner__text {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .product-table--cart .spinner {
    display: inline-block;
    width: 120px;
    margin: 0;
    padding: 8px 10px;
    vertical-align: middle;
  }
}

.product-table--commerce .product-table__price {
  font-size: 18px;
  font-weight: 400;
}

.product-table--commerce td:last-child .product-table__price {
  font-size: 30px;
  font-weight: 700;
}

@media (max-width: 1500px) {
  .product-table--commerce td:last-child .product-table__price {
    padding-top: 10px;
  }
}
@media (max-width: 1280px) {
  .product-table--commerce td:last-child .product-table__price {
    font-size: 25px;
    font-weight: 700;
  }

  .product-table--commerce td .product-table__spinner {
    min-width: 104px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .product-table--commerce td .product-table__spinner .spinner__text {
    font-size: 15px;
  }

  .product-table--commerce td .product-table__spinner a {
    margin-top: 0;
  }

  .product-table--commerce td:nth-child(6) {
    padding-top: 20px;
    padding-left: 10px;
  }

  .product-table--commerce td:nth-child(3).product-table__main-cell-short {
    width: 35%;
  }

  .product-table--commerce td:last-child {
    width: 140px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-table--commerce td:last-child .product-table__price {
    font-size: 25px;
    font-weight: 700;
  }

  .product-table--commerce td .product-table__spinner {
    min-width: 104px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .product-table--commerce td .product-table__spinner .spinner__text {
    font-size: 15px;
  }

  .product-table--commerce td .product-table__spinner a {
    margin-top: 0;
  }

  .product-table--commerce td:nth-child(6) {
    padding-top: 20px;
    padding-left: 10px;
  }

  .product-table--commerce td:nth-child(3).product-table__main-cell-short {
    width: 35%;
  }

  .product-table--commerce td:last-child {
    width: 140px;
  }
}
@media (max-width: 1023px) {
  .product-table--commerce .product-table__remove {
    display: none;
  }

  .product-table--commerce .product-table__price {
    display: block;
  }

  .product-table--commerce td:nth-child(1).product-table__check-cell {
    display: block;
    width: 30px;
    border: none;
  }

  .product-table--commerce td:nth-child(3).product-table__main-cell-short {
    width: calc(100% - 433px);
    padding-right: 30px;
  }

  .product-table--commerce td:nth-child(5) {
    position: static;
    width: 130px;
    padding: 20px 0 10px;
    float: left;
  }

  .product-table--commerce td:nth-child(6) {
    width: 120px;
    padding: 21px 10px 10px;
  }

  .product-table--commerce td:nth-child(6) .product-table__spinner {
    margin: 0;
  }

  .product-table--commerce td:nth-child(7) {
    width: 120px;
    padding: 0;
    float: right;
  }

  .product-table--commerce td:nth-child(7) .product-table__price {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .product-table--commerce .product-table__remove {
    display: none;
  }

  .product-table--commerce .product-table__price {
    display: block;
    padding-bottom: 0;
    font-size: 15px;
  }

  .product-table--commerce .product-table__title {
    font-size: 14px;
  }

  .product-table--commerce tr {
    padding-bottom: 15px;
  }

  .product-table--commerce td {
    display: inline-block;
    letter-spacing: normal;
    float: none;
    vertical-align: top;
  }

  .product-table--commerce td:last-child {
    width: calc(50% - 80px);
  }

  .product-table--commerce td:nth-child(1).product-table__check-cell {
    display: inline-block;
  }

  .product-table--commerce
    td:nth-child(2).product-table__image-cell-short
    .product-table__image {
    width: 130px;
    height: 100px;
  }

  .product-table--commerce td:nth-child(3).product-table__main-cell-short {
    width: calc(100% - 180px);
    padding-right: 0;
    padding-bottom: 12px;
  }

  .product-table--commerce td:nth-child(4) {
    display: none;
  }

  .product-table--commerce td:nth-child(5) {
    position: static;
    display: inline-block;
    width: 160px;
    padding: 0 0 0 30px;
    float: none;
    vertical-align: middle;
  }

  .product-table--commerce td:nth-child(6) {
    width: calc(50% - 80px);
    width: 104px;
    padding: 0;
    vertical-align: middle;
  }

  .product-table--commerce .product-table__list {
    margin-right: 0;
    padding-right: 10px;
  }

  .product-table--commerce .product-table__list-descr {
    padding-right: 0;
  }

  .product-table--commerce .spinner {
    width: 100%;
  }
}

.profile-table {
  margin-bottom: 10px;
}

@media (max-width: 1023px) {
  .profile-table th {
    font-size: 15px;
  }

  .profile-table th:nth-child(2) {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .profile-table th {
    font-size: 14px;
  }

  .profile-table th:nth-child(2) {
    border-right: 1px solid #e7e7e7;
  }

  .profile-table th:last-child {
    display: none;
  }
}

.profile-table td:first-child {
  width: 50%;
}

@media (max-width: 1023px) {
  .profile-table td {
    font-size: 15px;
  }

  .profile-table td:last-child {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .profile-table td {
    font-size: 14px;
  }

  .profile-table td:nth-child(1) {
    width: 75%;
  }

  .profile-table td:nth-child(2) {
    width: 25%;
    border-right: 1px solid #e7e7e7;
  }

  .profile-table td:last-child {
    display: none;
  }
}

.profile-table__radio {
  text-align: center;
  vertical-align: middle;
}

.profile-table__actions {
  font-size: 14px;
  text-align: center;
}

.profile-table__actions a {
  margin: 0 5px;
}

.profile-table__actions a:hover {
  text-decoration: underline;
}

@media (max-width: 1023px) {
  .profile-table__actions {
    font-size: 14px;
  }
}

.profile-table__bottom {
  text-align: right;
}

@media (max-width: 767px) {
  .profile-table__bottom {
    display: none;
  }

  .profile-table__bottom--settings {
    display: block;
  }
}

.profile-table__add-link {
  position: relative;
  display: inline-block;
  padding-left: 22px;
  font-size: 16px;
}

.profile-table__add-link:before {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-top: -7px;
  border-radius: 50%;
  line-height: 0;
  content: "";
  background: #ff7300;
}

.profile-table__add-link:after {
  position: absolute;
  top: 50%;
  left: 3px;
  display: block;
  width: 9px;
  height: 9px;
  margin: -4px 0 0 0;
  font-size: 15px;
  line-height: 0;
  color: #ffffff;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyBmaWxsPSIjZmZmIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNDIgNDIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQyIDQyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8cG9seWdvbiBwb2ludHM9IjQyLDE5IDIzLDE5IDIzLDAgMTksMCAxOSwxOSAwLDE5IDAsMjMgMTksMjMgMTksNDIgMjMsNDIgMjMsMjMgNDIsMjMgIi8+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8L3N2Zz4NCg==");
  content: "";
}

.profile-table__add-link:hover {
  text-decoration: underline;
}

.set-popup {
  width: 440px;
}

.shops-item {
  border: 1px solid #dfdfdf;
  border-top: 0;
  font-size: 0;
}

.shops-item:first-child {
  border-top: 1px solid #dfdfdf;
}

.shops-item__box {
  padding: 10px 18px 14px;
}

@media (max-width: 1023px) {
  .shops-item__box {
    min-height: 274px;
    padding: 12px 13px 14px;
  }
}
@media (max-width: 767px) {
  .shops-item__box {
    min-height: 200px;
  }
}

.shops-item__cell {
  display: inline-block;
  width: 50%;
  padding: 0 8px 0 0;
  vertical-align: top;
}

.shops-item__cell:last-child {
  padding: 0 0 0 8px;
}

@media (max-width: 1023px) {
  .shops-item__cell {
    display: block;
    width: 100%;
    padding: 0;
  }

  .shops-item__cell:last-child {
    padding: 0;
  }
}

.shops-item__title {
  display: block;
  padding-bottom: 4px;
  font: 700 18px "ubuntu";
  color: #404041;
}

@media (max-width: 1023px) {
  .shops-item__title {
    font-size: 16px;
  }
}

.shops-item__contact {
  display: block;
  min-height: 63px;
  margin-bottom: 9px;
  padding: 0;
  font: 400 14px/21px "ubuntu";
  color: #717171;
}

@media (max-width: 1023px) {
  .shops-item__contact {
    min-height: auto;
  }
}
@media (max-width: 767px) {
  .shops-item__contact {
    font-size: 14px;
    line-height: 19px;
  }
}

.shops-item__gallery {
  margin: 0 -8px;
}

@media (max-width: 1023px) {
  .shops-item__gallery {
    margin: 0 -6px;
    padding-bottom: 9px;
  }
}

.shops-item__gallery-item {
  display: inline-block;
  width: 33.33%;
  padding: 0 8px;
  vertical-align: top;
}

@media (max-width: 1023px) {
  .shops-item__gallery-item {
    padding: 0 6px;
  }
}

.shops-item__gallery-link {
  display: block;
}

.shops-item__gallery-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
}

.shops-item__link {
  padding: 18px 20px 19px;
  font-weight: 400;
  border-width: 1px;
}

@media (max-width: 1023px) {
  .shops-item__link {
    padding: 13px 10px 14px;
  }
}

.steps-buttons:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 767px) {
  .steps-buttons {
    padding-bottom: 10px;
  }
}

.steps-buttons__link {
  width: auto;
}

@media (max-width: 767px) {
  .steps-buttons__link {
    font-size: 14px;
  }
}

.steps-buttons__link--prev {
  padding-right: 20px;
  padding-left: 20px;
  float: left;
}

@media (max-width: 767px) {
  .steps-buttons__link--prev {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .steps-buttons__link--prev {
    width: calc(50% - 10px);
    padding: 11px 15px 14px;
  }
}

.steps-buttons__link--next {
  padding-right: 22px;
  padding-left: 22px;
  float: right;
}

@media (max-width: 767px) {
  .steps-buttons__link--next {
    width: calc(50% - 10px);
    padding-top: 14px;
  }
}

.tab-nav {
  padding: 0 0 25px 0;
}

.tab-nav__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 10px;
}
@media (max-width: 767px) {
  .tab-nav__list {
    column-gap: 10px;
    row-gap: 5px;
  }
}

.tab-nav__item {
  min-width: 185px;
}
@media (max-width: 767px) {
  .tab-nav__item {
    min-width: unset;
  }
}

.tab-nav__link {
  display: block;
  min-height: 50px;
  padding-top: 12px;
  padding-right: 20px;
  padding-bottom: 13px;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .tab-nav__link {
    min-height: 30px;
    padding-top: 9px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    font-size: 14px;
    font-weight: 400;
  }
}

.tab-nav__link-ico {
  margin-top: -2px;
  margin-right: 12px;
  fill: inherit;
}
@media (max-width: 767px) {
  .tab-nav__link-ico {
    display: none;
  }
}

.tab-nav__link--active {
  color: #ffffff;
  fill: #ffffff;
  background: #ff7300;
}

.tab-nav__link--active:hover {
  color: #ffffff;
  fill: #ffffff;
  background-color: #ffa800;
  border-color: #ffa800;
}

.bonuses-info {
  margin-bottom: 0;
  padding: 25px 30px 25px 30px;
  border-radius: 3px;
  background: #f5f5f5;
}

@media (max-width: 767px) {
  .bonuses-info {
    padding: 23px 20px 25px;
    font-size: 14px;
  }
}

.bonuses-info__inner {
  max-width: 590px;
}

.bonuses-info__inner--short {
  max-width: 560px;
}

@media (max-width: 1023px) {
  .bonuses-info__inner {
    max-width: 100%;
  }
}

.bonuses-info--order {
  padding-bottom: 0;
  font-size: 17px;
}

.bonuses-info--order .bonuses-info__list-descr {
  padding-bottom: 28px;
  font-weight: 700;
  color: #404041;
}

.bonuses-info--order .bonuses-info__list-term {
  padding-bottom: 28px;
  color: #717171;
}

.bonuses-info__list {
  margin: 0 -2px;
}

.bonuses-info__list:after {
  display: block;
  content: " ";
  clear: both;
}

.bonuses-info__list--bottom .bonuses-info__list-inner {
  background: #ffffff;
}

.bonuses-info__list--bottom .bonuses-info__list-term {
  padding-bottom: 10px;
  color: #404041;
}

.bonuses-info__list--bottom .bonuses-info__list-descr {
  padding-bottom: 10px;
}

.bonuses-info__list--bottom .bonuses-info__list-descr:before {
  top: 18px;
}

.bonuses-info__list--white .bonuses-info__list-inner {
  background: #ffffff;
}

.bonuses-info__list-term {
  display: block;
  padding-bottom: 15px;
  color: #717171;
  float: left;
  clear: both;
}

.bonuses-info__list-descr {
  position: relative;
  display: block;
  padding-bottom: 15px;
  text-align: right;
}

.bonuses-info__list-descr:before {
  position: absolute;
  top: 15px;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background: #dfdfdf;
}

.bonuses-info__list-inner {
  position: relative;
  z-index: 3;
  padding: 0 2px;
  background: #f5f5f5;
}

.bonuses-info__list-inner a {
  margin-left: 10px;
}

.bonuses-info__list-inner a:hover {
  text-decoration: underline;
}

.bonuses-info__list-inner a:first-child {
  margin-left: 0;
}

.bonuses-info__list-inner--sm-links a {
  font-size: 14px;
}

.bonuses-info__list-md {
  font-size: 20px;
}

@media (max-width: 767px) {
  .bonuses-info__list-md {
    font-size: 17px;
  }
}

.bonuses-info__list-lg {
  font-size: 25px;
}

@media (max-width: 767px) {
  .bonuses-info__list-lg {
    font-size: 20px;
  }
}

.bonuses-info__title {
  display: block;
  padding-bottom: 14px;
  font: 700 18px "ubuntu";
  color: #404041;
}

.bonuses-info--full:after {
  display: block;
  content: " ";
  clear: both;
}

.bonuses-info--full .bonuses-info__inner {
  width: 65%;
  padding-right: 20px;
  float: left;
}

.bonuses-info--full .bonuses-info__link {
  float: right;
}

@media (max-width: 1180px) {
  .bonuses-info--full .bonuses-info__inner {
    width: auto;
    padding: 0;
    float: none;
  }

  .bonuses-info--full .bonuses-info__link {
    float: none;
  }
}

.bonuses-table {
  margin-bottom: 20px;
}

.cart .top-prod__table-block-heading .default-select {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 1280px) {
  .cart .top-prod__table-block-heading {
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .cart .top-prod__table-block-heading {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .cart .top-prod__table-block-heading {
    display: none;
  }
}

.cart__bottom {
  margin-top: 28px;
}

.cart__bottom:after {
  display: block;
  content: " ";
  clear: both;
}

.cart__bottom-left {
  float: left;
}

.cart__bottom-right {
  margin-top: -8px;
  float: right;
}

.cart__bottom-right .pagination {
  display: table;
  margin: 8px 0 0 auto;
  padding-bottom: 40px;
}

@media (max-width: 1023px) {
  .cart__bottom {
    padding-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .cart__bottom {
    padding-bottom: 50px;
  }

  .cart__bottom .pagination {
    display: none;
  }
}

.cart-promo {
  font-size: 0;
}

.cart-promo__input {
  display: inline-block;
  max-width: 180px;
  margin-right: 24px;
  vertical-align: top;
}

.cart-promo__input .input {
  height: 49px;
  text-align: center;
}

.cart-promo__link {
  display: inline-block;
  width: auto;
  min-width: 140px;
  padding: 13px 15px 16px;
  vertical-align: top;
  border-width: 1px;
}

@media (max-width: 1100px) {
  .cart-promo__input {
    display: block;
    width: 180px;
    max-width: 100%;
    margin-bottom: 19px;
  }

  .cart-promo__link {
    display: block;
    width: 180px;
    min-width: auto;
  }
}
@media (max-width: 767px) {
  .cart-promo__input {
    width: 144px;
    margin: 0 0 14px;
  }

  .cart-promo__input .input {
    height: 36px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 14px;
  }

  .cart-promo__link {
    width: 144px;
    margin: 0;
    padding: 9px 10px 11px;
    font-size: 14px;
    font-weight: 400;
  }
}

.cart-price {
  display: table;
  width: 400px;
  margin: 0 -15px 0 auto;
  padding-bottom: 10px;
  font-size: 0;
}

@media (max-width: 767px) {
  .cart-price {
    width: 270px;
    margin: 0 -5px 0 auto;
    padding-bottom: 2px;
  }
}

.cart-price__cell {
  display: inline-block;
  width: 50%;
  padding: 0 15px 8px;
  font: 400 18px "ubuntu";
  text-align: right;
  color: #717171;
}

.cart-price__cell--val {
  font-size: 25px;
  font-weight: 700;
}

.cart-price__cell--val .rub {
  font-size: 20px;
}

.cart-price__cell--val-lg {
  font-size: 35px;
}

.cart-price__cell--val-lg .rub {
  font-size: 25px;
}

.cart-price__cell--bold {
  font-weight: 700;
  color: #404041;
}

@media (max-width: 767px) {
  .cart-price__cell {
    width: 60%;
    padding: 0 5px 18px;
    font-size: 14px;
  }

  .cart-price__cell--val {
    width: 40%;
    font-size: 22px;
  }

  .cart-price__cell--val .rub {
    font-size: 16px;
  }

  .cart-price__cell--bold {
    font-size: 15px;
  }

  .cart-price__cell--val-lg {
    font-size: 25px;
  }

  .cart-price__cell--val-lg .rub {
    font-size: 18px;
  }
}

.cart-button {
  text-align: right;
  clear: both;
}

.cart-button__text {
  display: inline-block;
  padding: 5px 0;
  font: 400 18px "ubuntu";
  color: #717171;
  vertical-align: middle;
}

.cart-button__text-ico {
  margin-right: 8px;
}

.cart-button__text-text {
  display: inline-block;
  vertical-align: middle;
}

.cart-button__btn {
  display: inline-block;
  width: 328px;
  margin-left: 49px;
  padding: 20px 15px;
  font-size: 20px;
  vertical-align: middle;
}

@media (max-width: 1023px) {
  .cart-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 4px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: end;
    -ms-flex-align: end;
    clear: right;
  }

  .cart-button__text {
    padding: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .cart-button__btn {
    margin: 0 0 26px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
}
@media (max-width: 767px) {
  .cart-button__text {
    display: none;
  }

  .cart-button__btn {
    width: 234px;
    margin: 0;
    padding: 14px 15px 18px;
    font-size: 17px;
  }
}
@media (max-width: 1500px) {
  .cart--commerce .top-prod__table-block-heading-link {
    margin-left: 15px;
  }

  .cart--commerce .top-prod__table-block-heading .action-order__item {
    margin-right: 15px;
  }

  .cart--commerce
    .top-prod__table-block-heading
    .action-order__item:last-child {
    margin-right: 0;
  }
}
@media (max-width: 1023px) {
  .cart--commerce .top-prod__table-block-heading {
    display: block;
    padding: 0 17px;
  }

  .cart--commerce h2 {
    float: left;
  }

  .cart--commerce .content-main__filter {
    float: right;
  }

  .cart--commerce .content-main__view {
    display: none;
  }
}
@media (max-width: 767px) {
  .cart--commerce h2 {
    float: none;
  }

  .cart--commerce .content-main__filter {
    float: none;
  }
}
@media (max-width: 767px) {
  .cart--commerce .action-order {
    text-align: center;
  }

  .cart--commerce .top-prod__table-block-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 9px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }

  .cart--commerce .top-prod__table-block-heading-left {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .cart--commerce .top-prod__table-block-heading-right {
    width: 100%;
    padding-bottom: 17px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .cart--commerce .top-prod__table-block-heading-links {
    margin-top: 5px;
    float: right;
  }

  .cart--commerce .top-prod__table-block-heading .action-order__item {
    margin-right: 23px;
  }

  .cart--commerce
    .top-prod__table-block-heading
    .action-order__item:last-child {
    margin-right: 0;
  }
}

.catalog-unloading__text {
  padding-bottom: 18px;
}

.catalog-unloading-form {
  max-width: 760px;
  margin-bottom: 32px;
  padding: 23px 32px 37px;
  border-radius: 3px;
  font-size: 0;
  background: #f5f5f5;
}

@media (max-width: 1023px) {
  .catalog-unloading-form {
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .catalog-unloading-form {
    margin-bottom: 29px;
    padding-bottom: 29px;
  }
}

.catalog-unloading-form__left {
  display: inline-block;
  width: calc(100% - 200px);
  padding-right: 30px;
  vertical-align: bottom;
}

@media (max-width: 767px) {
  .catalog-unloading-form__left {
    display: block;
    width: 100%;
    padding: 0 0 18px;
  }
}

.catalog-unloading-form__right {
  display: inline-block;
  width: 200px;
  vertical-align: bottom;
}

@media (max-width: 767px) {
  .catalog-unloading-form__right {
    display: table;
    margin: 0 0 0 auto;
  }
}

.catalog-unloading-form__title {
  display: block;
  padding-bottom: 16px;
  font: 700 18px "ubuntu";
  color: #404041;
}

.catalog-unloading-form__row {
  padding-bottom: 20px;
}

.catalog-unloading-form__row:last-child {
  padding-bottom: 0;
}

.catalog-unloading-form__label {
  display: inline-block;
  width: 110px;
  padding-right: 15px;
  vertical-align: middle;
}

.catalog-unloading-form__input {
  display: inline-block;
  width: calc(100% - 110px);
  vertical-align: middle;
}

.catalog-unloading-form__submit {
  padding: 10px 15px 13px;
  font-size: 14px;
}

.catalog-top {
  display: none;
}

.catalog-top:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1023px) {
  .catalog-top {
    display: block;
    padding-bottom: 38px;
  }
}

.catalog-top__right {
  float: right;
  letter-spacing: -5px;
}

.catalog-top__right-filter {
  display: none;
  letter-spacing: normal;
}

@media (max-width: 1023px) {
  .catalog-top__right {
    float: none;
  }

  .catalog-top__right:after {
    display: block;
    content: " ";
    clear: both;
  }

  .catalog-top__right-filter {
    display: block;
    float: left;
  }

  .catalog-top__right-filter .default-select {
    display: inline-block;
    width: 225px;
    vertical-align: top;
  }

  .catalog-top__right-box {
    float: right;
    letter-spacing: normal;
  }
}
@media (max-width: 767px) {
  .catalog-top__right {
    font-size: 0;
  }

  .catalog-top__right-filter {
    width: 60%;
  }

  .catalog-top__right-filter .default-select {
    width: calc(100% - 50px - 20px);
    margin-right: 20px;
  }

  .catalog-top__right-box {
    width: 40%;
  }
}

.catalog-top__amount {
  display: inline-block;
  font-size: 18px;
  color: #717171;
  vertical-align: middle;
  letter-spacing: normal;
}

@media (max-width: 1023px) {
  .catalog-top__amount {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .catalog-top__amount {
    display: none;
  }
}

.catalog-top__view {
  display: inline-block;
  padding-left: 30px;
  vertical-align: middle;
  letter-spacing: normal;
}

@media (max-width: 1023px) {
  .catalog-top__view {
    display: none;
  }
}

.catalog-top__sort {
  display: inline-block;
  width: 200px;
  padding-left: 30px;
  vertical-align: middle;
  letter-spacing: normal;
}

@media (max-width: 767px) {
  .catalog-top__sort {
    width: 100%;
    padding-left: 20px;
  }
}

.catalog-top__filter-link {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 50px;
  margin-left: 20px;
  border-radius: 5px;
  vertical-align: top;
}

.catalog-top__filter-link-ico {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 25px;
  height: 27px;
  margin: auto;
  fill: inherit;
}

@media (max-width: 767px) {
  .catalog-top__filter-link {
    margin: 0;
  }
}

.catalog__more-btn {
  padding: 21px 10px 22px;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .catalog__more-btn {
    padding-top: 15px;
    padding-right: 5px;
    padding-bottom: 15px;
    padding-left: 5px;
    font-size: 16px;
    line-height: 1.2;
  }
}

.catalog__sort-select-option {
  display: inline-block;
  margin-right: 10px;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.catalog__sort-select-option-up {
  border-bottom: 7px solid #404041;
}

.catalog__sort-select-option-down {
  border-top: 7px solid #404041;
}

.catalog-sort {
  display: flex;
  align-items: center;
  padding-bottom: 25px;
  gap: 18px;
}

@media (max-width: 767px) {
  .catalog-sort {
    /* flex-direction: column;
    align-items: flex-start; */
  }
}

.catalog-sort .catalog-top__filter-link {
  display: none;
}

@media (max-width: 1023px) {
  .catalog-sort .catalog-top__filter-link {
    display: block;
    margin: 0;
    flex-shrink: 0;
  }
}

@media (max-width: 1350px) {
  .catalog-sort__left .radio-set {
    display: none;
  }
}
.catalog-sort__left {
  display: flex;
  max-width: calc(100% - 100px - 20px);
  flex-grow: 1;
  gap: 20px;
}
@media (max-width: 767px) {
  .catalog-sort__left {
    width: 100%;
    gap: 10px;
  }
}

.catalog-sort__right {
  padding: 4px 0 0 0;
  color: #424243 !important;
  float: right;
}

.catalog-sort__right .checkbox {
  margin: 0 0 0 80px;
  font-size: 15px;
}

.catalog-sort__right .checkbox:first-child {
  margin: 0;
}

@media (max-width: 1500px) {
  .catalog-sort__right .checkbox {
    margin: 0 0 0 30px;
  }
}
@media (max-width: 1100px) {
  .catalog-sort__right .checkbox {
    margin: 0 0 0 15px;
  }
}
@media (max-width: 1023px) {
  .catalog-sort__right .checkbox {
    margin: 0 0 0 90px;
  }
}
@media (max-width: 767px) {
  .catalog-sort__right .checkbox {
    display: block;
    margin: 0;
  }
}

.catalog-sort .checkbox input[type="checkbox"] + span {
  min-height: auto;
  padding-left: 30px;
}

.catalog-sort--mod .catalog-sort__search {
  width: 100%;
  max-width: 260px;
  float: left;
}

.catalog-sort--mod .catalog-sort__search .header__search-inner {
  margin-top: -2px;
}

.catalog-sort--mod .catalog-sort__search .header__search-input {
  height: 34px;
  font-size: 15px;
}

.catalog-sort--mod .catalog-sort__search .header__search-btn {
  height: 36px;
}

@media (max-width: 1023px) {
  .catalog-sort--mod .catalog-sort__search {
    display: none;
  }
}

.catalog-sort--mod .catalog-sort__right {
  padding: 0;
}

.catalog-sort--mod .catalog-sort__right .checkbox {
  display: block;
  margin: 0;
}

@media (max-width: 767px) {
  .catalog-sort--mod .catalog-sort__right .checkbox {
    display: inline-block;
    margin: 0 0 0 70px;
  }

  .catalog-sort--mod .catalog-sort__right .checkbox:first-child {
    margin: 0;
  }
}
@media (max-width: 1023px) {
  .catalog-sort--mod .catalog-sort__right {
    margin: 4px 0 0 0;
  }
}
@media (max-width: 767px) {
  .catalog-sort--mod .catalog-sort__right {
    margin: 0;
    clear: both;
  }
}

.catalog-sort--mod .radio-set {
  white-space: nowrap;
  float: left;
}

@media (max-width: 1820px) {
  .catalog-sort--mod .radio-set {
    clear: both;
  }
}
@media (max-width: 1100px) {
  .catalog-sort--mod .radio-set {
    margin-bottom: 10px;
  }
}
@media (max-width: 1023px) {
  .catalog-sort--mod .radio-set {
    display: none;
  }
}

.catalog-sort--mod .radio-set__text {
  padding: 11px 15px;
}

.contacts h2 {
  padding-bottom: 28px;
}

.contacts__data {
  max-width: 900px;
}

.contacts__data .contact__cont {
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .contacts__data .contact__cont {
    white-space: normal;
  }
}
@media (max-width: 1023px) {
  .contacts__data {
    padding-top: 12px;
  }
}
@media (max-width: 767px) {
  .contacts__data {
    padding-top: 0;
  }
}

.contacts__desc {
  display: block;
  padding-bottom: 35px;
  font: 400 15px/24px "ubuntu";
  color: #717171;
}

@media (max-width: 1023px) {
  .contacts__desc {
    padding-bottom: 28px;
  }
}

.contacts__title {
  padding-bottom: 23px;
}

.contacts__title a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .contacts__title {
    font-size: 16px;
  }
}

.contacts__item {
  padding: 0 0 42px;
}

@media (max-width: 767px) {
  .contacts__item {
    padding-bottom: 23px;
  }
}

.contacts__left {
  display: inline-block;
  width: 570px;
  vertical-align: top;
}

@media (max-width: 1023px) {
  .contacts__left {
    display: block;
    width: 100%;
    padding-bottom: 20px;
  }
}

.contacts__right {
  display: inline-block;
  width: calc(100% - 570px);
  padding-left: 30px;
  vertical-align: top;
}

@media (max-width: 1023px) {
  .contacts__right {
    display: block;
    width: 100%;
    padding: 0;
  }
}

.contacts__map {
  width: 100%;
  min-height: 400px;
}

@media (max-width: 1023px) {
  .contacts__map {
    height: 425px;
    min-height: auto;
  }
}

.contacts-city {
  padding-bottom: 25px;
  line-height: 1;
}

.contacts-city__list {
  margin: 0 -15px;
}

.contacts-city__item {
  display: inline-block;
  width: 50%;
  padding: 0 15px 9px;
  vertical-align: top;
}

.contacts-city__link {
  font-size: 15px;
}

.contacts-city__link:hover {
  text-decoration: underline;
}

.contacts-city__text {
  display: none;
  padding: 0 3px;
  font: 700 15px/24px "ubuntu";
  color: #404041;
}

@media (max-width: 1023px) {
  .contacts-city {
    margin: -10px -3px 0;
    padding: 0;
  }

  .contacts-city__list {
    display: inline;
    margin: 0;
  }

  .contacts-city__item {
    width: auto;
    padding: 0 3px;
  }

  .contacts-city__link {
    line-height: 24px;
  }

  .contacts-city__text {
    display: inline;
  }
}
@media (max-width: 767px) {
  .contacts-city {
    padding-bottom: 13px;
  }

  .contacts-city__link {
    font-size: 14px;
  }

  .contacts-city__text {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .contacts .shops {
    margin: 0 -22px;
  }

  .contacts .shops-item {
    display: inline-block;
    width: 33.33%;
    margin-bottom: -1px;
    border: 0;
    vertical-align: top;
  }

  .contacts .shops-item:nth-child(3n + 1) {
    border-left: 1px solid #dfdfdf;
  }

  .contacts .shops .shops-item__box {
    border: 1px solid #dfdfdf;
    border-left: 0;
  }
}
@media (max-width: 767px) {
  .contacts .shops-item {
    width: 50%;
    border: 0;
  }

  .contacts .shops-item:nth-child(1n) {
    border: 0;
  }

  .contacts .shops-item:nth-child(2n + 1) {
    border-left: 1px solid #dfdfdf;
  }
}
@media (max-width: 1023px) {
  .contacts-bottom,
  .delivery-bottom {
    padding-bottom: 30px;
  }
}

.contacts-bottom__left {
  display: inline-block;
  width: 62%;
  margin: 0 -15px;
  vertical-align: top;
}

.contacts-bottom__right {
  display: inline-block;
  width: 38%;
  padding: 5px 0 0 32px;
  vertical-align: top;
}

.contacts-bottom__item {
  display: inline-block;
  width: 33.33%;
  padding: 0 15px;
  vertical-align: top;
}

.dropshipping-bottom__item {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 25%;
  padding: 0 15px;
  vertical-align: top;
}

.delivery-bottom__item {
  display: inline-block;
  width: 18.33%;
  padding-right: 20px;
  vertical-align: top;
}

.contacts-bottom__save {
  display: table;
  width: auto;
  min-width: 265px;
  border-width: 1px;
}

@media (max-width: 1650px) {
  .contacts-bottom {
    margin-left: -15px;
  }

  .contacts-bottom__left {
    width: calc(100% - 265px);
    margin: 0;
    padding-right: 15px;
  }

  .contacts-bottom__right {
    width: 265px;
    padding: 5px 0 0 0;
  }

  .contacts-bottom__save {
    width: 265px;
    min-width: auto;
  }
}
@media (max-width: 1023px) {
  .contacts-bottom {
    margin: 0;
  }

  .contacts-bottom__left {
    display: block;
    width: auto;
    margin: 0 -15px;
    padding: 0;
  }

  .contacts-bottom__right {
    display: block;
    width: 100%;
  }

  .contacts-bottom__save {
    width: 100%;
  }
}

.deliver-order__steps {
  padding-bottom: 38px;
}

.deliver-order__title {
  padding-bottom: 25px;
}

.deliver-order-comment {
  margin-bottom: 42px;
  padding: 14px 25px 28px 25px;
  border-radius: 3px;
  background: #f5f5f5;
}

.deliver-order-device__top {
  margin-bottom: 18px;
  padding-bottom: 26px;
  border-bottom: 1px solid #e7e7e7;
}

.deliver-order-device__top-text {
  display: block;
  font: 400 16px "ubuntu";
  color: #404041;
}

.deliver-order-device__title {
  padding-bottom: 22px;
}

.deliver-order-device__select {
  max-width: 490px;
  margin-bottom: 24px;
}

.deliver-order-device__drop {
  display: block;
  padding: 0 0 24px;
}

.deliver-order-device__drop .deliver-order-table__drop-item {
  padding-bottom: 8px;
}

.grey-block {
  margin-bottom: 40px;
  padding: 25px 0 30px;
  background: #f5f5f5;
}

@media (max-width: 1280px) {
  .grey-block {
    padding: 20px 0 30px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .grey-block {
    padding: 20px 0 30px;
  }
}
@media (max-width: 767px) {
  .grey-block {
    margin-bottom: 30px;
    padding: 32px 0 30px;
  }
}

.main-news {
  margin: 0 -15px;
  letter-spacing: -5px;
}

@media (max-width: 1023px) {
  .main-news {
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
  }
}
@media (max-width: 480px) {
  .main-news {
    margin-right: -5px;
    margin-left: -5px;
  }
}

.main-news__item {
  width: 20%;
  padding: 0 15px;
  letter-spacing: normal;
  vertical-align: top;
}

.main-news__item--col3 {
  width: 33.33%;
}

.main-news__item--col4 {
  width: 25%;
}

.main-news__item--col6 {
  width: 16.66%;
}

.main-news__item--col7 {
  width: 14.28%;
}

@media (max-width: 1600px) {
  .main-news__item--col6 {
    width: 25%;
  }

  .main-news__item--col6:nth-child(1n + 5) {
    display: none;
  }
}
@media (max-width: 1280px) {
  .main-news__item {
    width: 25%;
  }

  .main-news__item:last-child {
    display: none;
  }

  .main-news__item--col3 {
    width: 50%;
  }

  .main-news__item--col4 {
    width: 50%;
  }

  .main-news__item--col4:nth-child(1n + 3) {
    display: none;
  }

  .main-news__item--col6 {
    width: 25%;
  }

  .main-news__item--col6:nth-child(1n + 5) {
    display: none;
  }

  .main-news__item--col7 {
    width: 20%;
  }

  .main-news__item--col7:nth-child(1n + 6) {
    display: none;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .main-news__item {
    width: 25%;
  }

  .main-news__item:last-child {
    display: none;
  }

  .main-news__item--col3 {
    width: 50%;
  }

  .main-news__item--col4 {
    width: 50%;
  }

  .main-news__item--col4:nth-child(1n + 3) {
    display: none;
  }

  .main-news__item--col6 {
    width: 25%;
  }

  .main-news__item--col6:nth-child(1n + 5) {
    display: none;
  }

  .main-news__item--col7 {
    width: 20%;
  }

  .main-news__item--col7:nth-child(1n + 6) {
    display: none;
  }
}
@media (max-width: 1023px) {
  .main-news__item:nth-child(1n) {
    display: inline-block;
    width: 250px;
    white-space: normal;
  }

  .main-news__item--col3:nth-child(1n) {
    width: 50%;
  }

  /*    .main-news__item--col3:nth-child(1n+3) {
        display: none; } */

  .main-news__item--col4:nth-child(1n) {
    width: 50%;
  }

  .main-news__item--col4:nth-child(1n + 3) {
    display: none;
  }

  .main-news__item--col6:nth-child(1n) {
    width: 33.33%;
  }

  .main-news__item--col6:nth-child(1n + 4) {
    display: none;
  }

  .main-news__item--col7:nth-child(1n) {
    width: 33.33%;
  }

  .main-news__item--col7:nth-child(1n + 4) {
    display: none;
  }
}
@media (max-width: 767px) {
  .main-news__item--col6:nth-child(1n) {
    width: 50%;
  }

  .main-news__item--col6:nth-child(1n + 3) {
    display: none;
  }

  .main-news__item--col7:nth-child(1n) {
    width: 50%;
  }

  .main-news__item--col7:nth-child(1n + 3) {
    display: none;
  }
}

.main-news--large .news-item__image,
.main-news--large .open-article__banner {
  margin-bottom: 17px;
}

.main-news--large .news-item__date {
  padding-bottom: 7px;
}

.main-news--large .news-item__link {
  margin-bottom: 7px;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .main-news--large {
    overflow: visible;
    white-space: normal;
  }

  .main-news--large .news-item__date {
    padding-bottom: 2px;
    font-size: 14px;
  }

  .main-news--large .news-item__image,
  .main-news--large .open-article__banner {
    margin-bottom: 7px;
  }

  .main-news--large .news-item__link {
    margin-bottom: 2px;
    font-size: 16px;
  }

  .main-news--large .news-item__text {
    font-size: 14px;
    line-height: 19px;
  }
}

.main-news--video .news-item__image,
.main-news--video .open-article__banner {
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.main-news--video .news-item__link {
  line-height: 22px;
}

@media (max-width: 1023px) {
  .main-news--video {
    overflow: visible;
    white-space: normal;
  }
}
@media (max-width: 1023px) {
  /* .main-tabs {
    position: relative;
    padding: 99px 0 0 0;
  } */
}
@media (max-width: 767px) {
  /* .main-tabs {
    padding: 90px 0 0 0;
  } */
}
@media (max-width: 1023px) {
  .main-tabs__title {
    position: absolute;
    top: 27px;
    width: 33.33%;
  }

  .main-tabs__title.products-block__title {
    padding: 13px 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    background: #f5f5f5;
  }
}
@media (max-width: 767px) {
  .main-tabs__title {
    top: 17px;
  }

  .main-tabs__title.products-block__title {
    padding-top: 10px;
    padding-right: 5px;
    padding-bottom: 10px;
    padding-left: 5px;
    font-size: 12px; 
    font-weight: 600;
  }
}

.main-tabs__list {
  border-left: 1px solid #dfdfdf;
  list-style: none;
  white-space: normal;
}

.main-tabs__list.product-card__list {
  padding: 0;
  padding-bottom: 1px;
}

@media (max-width: 1023px) {
  .main-tabs__list.product-card__list {
    margin: 0;
  }
}

.main-tabs__list .product-card__list-item {
  width: 16.6%;
}

@media (max-width: 1410px) {
  .main-tabs__list .product-card__list-item {
    width: 20%;
  }
}
@media (max-width: 1150px) {
  .main-tabs__list .product-card__list-item {
    width: 33.33%;
  }
}
@media (max-width: 767px) {
  .main-tabs__list .product-card__list-item {
    width: 50%;
  }

  .main-tabs__list .product-card__list-item:nth-child(1n + 4) {
    display: inline-block;
  }
}
@media (max-width: 1023px) {
  .main-tabs__block:nth-child(1) .main-tabs__title {
    left: 0;
    border-radius: 3px 0 0 3px;
  }

  .main-tabs__block:nth-child(2) .main-tabs__title {
    left: 33.33%;
    border-left: 1px solid #ffffff;
  }

  .main-tabs__block:nth-child(3) .main-tabs__title {
    left: 66.66%;
    border-left: 1px solid #ffffff;
    border-radius: 0 3px 3px 0;
  }

  .main-tabs__block.active .main-tabs__title {
    color: #ffffff;
    background: #ff7300;
  }

  .main-tabs__block.active .main-tabs__inner {
    display: block;
  }
}

.news-detail .main-tabs__list {
  margin-bottom: 40px !important;
}

.news-detail .main-tabs__list .product-card__list-item {
  width: calc(20% - 1px) !important;
}

@media (max-width: 1300px) {
  .news-detail .main-tabs__list .product-card__list-item {
    width: 25% !important;
  }
}
@media (max-width: 1023px) {
  .news-detail .main-tabs__list .product-card__list-item {
    width: 33.33% !important;
  }

  #lazyload,
  .system-nav-orange {
    margin-left: 0 !important;
  }
  /* 
  .main-tabs__list.product-card__list {
    margin: 0 -22px 40px -22px !important;
  } */
}
@media (max-width: 600px) {
  .news-detail .main-tabs__list .product-card__list-item {
    width: 50% !important;
  }
}
@media (min-width: 1411px) {

  .main-tabs__block--first .title-s1 {
    margin-left: 0;
  }

  .main-tabs__block--first .main-tabs__list .product-card__list-item {
    width: calc(20% - 1px);
  }

  .main-tabs__block--2 .product-card__list-item:nth-child(1n + 13),
  .main-tabs__block--first .product-card__list-item:nth-child(1n + 11) {
    display: none;
  }
}
@media (min-width: 1024px) {
  .main-tabs__block--first .products-block__title {
    padding-left: 23px;
  }
}
@media (min-width: 1150px) and (max-width: 1409px) {
  .products-block--viewed .product-card__list-item:nth-child(1n + 6),
  .main-tabs__block--3 .product-card__list-item:nth-child(1n + 6),
  .main-tabs__block--2 .product-card__list-item:nth-child(1n + 11),
  .main-tabs__block--first .product-card__list-item:nth-child(1n + 9) {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1149px) {
  .products-block--viewed .product-card__list-item:nth-child(1n + 4),
  .main-tabs__block--3 .product-card__list-item:nth-child(1n + 4),
  .main-tabs__block--2 .product-card__list-item:nth-child(1n + 7),
  .main-tabs__block--first .product-card__list-item:nth-child(1n + 7) {
    display: none;
  }
}
@media (max-width: 1410px) {
  .title-s1 {
    margin-left: 0 !important;
  }
}
@media (max-width: 1199px) {
  .main-tabs__block--first h1 {
    font-size: 22px !important;
  }
}
@media (max-width: 1023px) {
  .products-block--viewed .product-card__list-item:nth-child(1n + 4) {
    display: none;
  }

  .main-tabs__block--first {
    margin-left: 0;
  }

  .main-tabs__block--first .product-card__list-item:first-child {
    margin-left: 0;
  }

  .main-tabs__block--first .product-card__list-item {
    display: inline-block;
  }
}
@media (max-width: 1410px) {
  .main-tabs__block--first .product-card__list-item {
    width: 25%;
  }
}
@media (max-width: 1150px) {
  .main-tabs__block--first .product-card__list-item {
    width: 33.33%;
  }
}
@media (max-width: 767px) {
  .products-block--viewed .product-card__list-item:nth-child(1n + 3) {
    display: none;
  }

  .main-tabs__block--first .product-card__list-item {
    width: 50%;
  }
}
@media (max-width: 1023px) {
  .main-tabs__inner {
    display: none;
    margin: 0;
  }
}

.products-block {
  padding: 0 0 45px;
}

@media (max-width: 1023px) {
  .products-block {
    margin: 0;
  }
}

.products-block--viewed {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .products-block--viewed {
    margin-top: 20px;
  }
}

.products-block__title {
  display: block;
  padding: 24px 0;
  font-size: 25px;
  font-weight: 700;
}

.main-about {
  display: none;
}

@media (max-width: 1023px) {
  .main-about {
    display: block;
  }
}

.main-about__top {
  padding: 32px 20px 25px;
}

.main-about__top-title {
  display: block;
  padding: 0 0 23px 0;
  font-size: 22px;
  line-height: 24px;
}

.main-about__contact-list {
  margin: 0 -10px;
  font-size: 0;
  line-height: 0;
}

.main-about__contact-list-item {
  display: inline-block;
  width: 50%;
  padding: 0 10px 22px;
  font-size: 15px;
  line-height: 20px;
}

.main-about__address {
  display: block;
}

@media (max-width: 767px) {
  .main-about__address {
    font-size: 14px;
  }
}

.main-about__phone {
  display: block;
  color: #717171;
}

.main-about__bottom {
  padding: 30px 20px;
  background-color: #f5f5f5;
}

@media (max-width: 767px) {
  .main-about__bottom {
    padding: 0;
    background-color: transparent;
  }
}

.main-about__adv-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .main-about__adv-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.main-about__adv-list-item {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .main-about__adv-list-item {
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-left: 15px;
    font-size: 16px;
    text-align: left;
    border: 1px solid #ff7300;
    border-radius: 5px;
    gap: 10px;
  }
  .main-about__adv-list-item br {
    display: none;
  }
}

.main-about__adv-list-icon {
  display: block;
  height: 65px;
  font-size: 0;
  line-height: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .main-about__adv-list-icon {
    width: 40px;
    height: auto;
    text-align: left;
    flex-shrink: 0;
  }
  .main-about__adv-list-icon img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.news {
  padding-top: 30px;
}

.news__item {
  padding-bottom: 49px;
}

@media (max-width: 1023px) {
  .news__item {
    padding-bottom: 40px;
  }
}

.news__all {
  padding: 23px 15px 23px;
  border: 0;
  font-size: 20px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .news__all {
    padding: 21px 15px 22px;
    font-size: 18px;
  }
}

.open-article__item:first-child {
  padding-top: 0;
}

@media (max-width: 1280px) {
  .open-article__item {
    margin-bottom: 30px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .open-article__item {
    margin-bottom: 30px;
  }
}

.open-article__banner {
  max-width: 400px;
  margin: 0;
  padding: 0;
}

.open-article__banner-img {
  display: block;
  width: 100%;
}

.open-article__banner:hover {
  opacity: 1;
}

.open-order__table td:nth-child(1n + 2),
.open-order__table th:nth-child(1n + 2) {
  width: 12%;
  text-align: center;
  color: #404041;
}

@media (max-width: 767px) {
  .open-order__table thead {
    display: none;
  }
}
@media (max-width: 767px) {
  .open-order__table tr {
    display: block;
    padding-bottom: 16px;
    font-size: 0;
  }
}

.open-order__table td {
  padding-top: 18px;
  padding-bottom: 18px;
}

.open-order__table td:nth-child(1n + 2) {
  font-size: 20px;
}

.open-order__table td:first-child {
  padding-left: 25px;
}

@media (max-width: 1023px) {
  .open-order__table td:nth-child(1n + 2) {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .open-order__table td {
    display: inline-block;
    padding: 13px 12px;
  }

  .open-order__table td:first-child {
    width: 100%;
    padding-left: 12px;
    border-top: 1px solid #e7e7e7;
    border-right: 1px solid #e7e7e7;
    border-radius: 3px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .open-order__table td:nth-child(1n + 2) {
    width: 25%;
    background: #f5f5f5;
  }

  .open-order__table td:nth-child(1n + 2):before {
    display: block;
    padding-bottom: 10px;
    font: 400 14px "ubuntu";
    text-align: center;
    color: #404041;
    content: attr(data-title);
  }
}

.open-order__table .admission-item__image {
  width: 123px;
  height: 92px;
}

.open-order__table .admission-item__cont {
  width: calc(100% - 123px);
}

@media (max-width: 767px) {
  .open-order__table .admission-item__cont {
    padding-top: 6px;
  }
}

.open-order__table .admission-item__title {
  font-weight: 400;
}

.open-order__table .admission-item__title a:hover {
  text-decoration: underline;
}

@media (max-width: 1280px) {
  .open-order__table .admission-item__title {
    padding-bottom: 0;
    font-size: 14px;
    line-height: 19px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .open-order__table .admission-item__title {
    padding-bottom: 0;
    font-size: 14px;
    line-height: 19px;
  }
}

.open-order__table .admission-item__code {
  font-size: 16px;
}

@media (max-width: 1280px) {
  .open-order__table .admission-item__code {
    font-size: 14px;
    line-height: 19px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .open-order__table .admission-item__code {
    font-size: 14px;
    line-height: 19px;
  }
}

.open-order__title {
  display: block;
  padding: 0 0 15px 0;
  font-size: 16px;
  font-weight: 700;
}

.order-accept-info {
  margin-bottom: 30px;
  border: 1px solid #e7e7e7;
}

@media (max-width: 1023px) {
  .order-accept-info {
    margin: 0 -22px 30px;
    border-right: none;
    border-left: none;
  }
}

.order-accept-info__bonuses {
  margin: 0;
  padding-bottom: 30px;
  font-size: 17px;
  background: #ffffff;
}

@media (max-width: 767px) {
  .order-accept-info__bonuses {
    padding-bottom: 10px;
    font-size: 15px;
  }
}

.order-accept-info__title {
  font-size: 18px;
}

@media (max-width: 767px) {
  .order-accept-info__title {
    font-size: 16px;
  }
}

.order-accept-info .bonuses-info__list {
  padding-bottom: 16px;
}

.order-accept-info .bonuses-info__list:last-child {
  padding-bottom: 0;
}

.order-accept-info .bonuses-info__list-inner {
  background: #ffffff;
}

.order-accept-info .bonuses-info__list-term {
  padding-bottom: 11px;
}

.order-accept-info .bonuses-info__list-descr {
  padding-bottom: 11px;
}

.order-accept-info__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 30px 22px 30px;
  border-top: 1px solid #e7e7e7;
  background: #f5f5f5;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.order-accept-info__price-text {
  display: block;
  font: 700 18px "ubuntu";
  color: #404041;
  float: left;
}

.order-accept-info__price-val {
  display: block;
  font: 700 30px "ubuntu";
  color: #404041;
  float: right;
}

@media (max-width: 767px) {
  .order-accept-info__price {
    padding: 15px 20px 17px 20px;
  }
}

.order-finish__title {
  padding-bottom: 4px;
}

.order-finish__desc {
  display: block;
  padding-bottom: 22px;
  font-size: 16px;
  color: #717171;
}

.order-finish .order-accept-info__bonuses {
  padding-bottom: 16px;
}

.order-finish .open-order__table {
  margin-bottom: 26px;
}

.order-finish .open-order__table td:nth-child(1n + 2) {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .order-finish .open-order__table {
    margin-bottom: 6px;
  }
}

.order-finish .order-accept-info__price {
  align-items: baseline;
  padding: 0;
  border: 0;
  background: none;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
}

@media (max-width: 767px) {
  .order-finish .order-accept-info__price {
    padding-bottom: 10px;
  }
}
@media (max-width: 1023px) {
  .orders {
    margin: 0 -22px;
    padding-bottom: 20px;
  }

  .orders table th:first-child,
  .orders table td:first-child {
    border-left: none;
    border-radius: 0;
  }

  .orders table th:nth-child(5),
  .orders table td:nth-child(5) {
    border-right: none;
    border-radius: 0;
  }

  .orders table th:nth-child(6),
  .orders table td:nth-child(6) {
    border-right: none;
    border-left: none;
  }
}
@media (max-width: 767px) {
  .orders {
    padding-bottom: 7px;
  }
}

.orders__link {
  padding: 21px 15px 25px;
  border: 0;
  font-size: 20px;
  font-weight: 400;
}

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

.pay-delivery-type {
  padding-bottom: 48px;
}

@media (max-width: 1023px) {
  .pay-delivery-type {
    padding-bottom: 27px;
  }
}

.pay-delivery-type__item {
  padding-bottom: 28px;
}

.pay-delivery-type__item:last-child {
  padding-bottom: 0;
}

@media (max-width: 1023px) {
  .pay-delivery-type__item {
    padding-bottom: 20px;
  }
}

.pay-delivery-another {
  margin: 0 -15px;
  padding-bottom: 11px;
  font-size: 0;
}

.pay-delivery-another__item {
  display: inline-block;
  width: 25%;
  padding: 0 15px 30px;
  vertical-align: top;
}

@media (max-width: 1023px) {
  .pay-delivery-another {
    margin: 0 -10px;
  }

  .pay-delivery-another__item {
    width: 33.33%;
    padding: 0 10px 20px;
  }
}
@media (max-width: 767px) {
  .pay-delivery-another__item {
    width: 50%;
  }
}

.pay-delivery-return {
  font-size: 15px;
}

@media (max-width: 1023px) {
  .pay-delivery-return {
    padding-bottom: 43px;
  }
}

.pay-delivery-return__title {
  padding-bottom: 12px;
}

.pay-delivery-return__info {
  display: block;
  padding-bottom: 13px;
  color: #717171;
}

.pay-delivery-return p:last-child {
  padding-bottom: 0;
}

.pay-method {
  padding-bottom: 37px;
  font-size: 0;
}

.pay-method__title {
  padding-bottom: 25px;
}

@media (max-width: 767px) {
  .pay-method__title {
    padding-bottom: 13px;
  }
}

.pay-method-way {
  padding-bottom: 33px;
}

@media (max-width: 1023px) {
  .pay-method-way {
    padding-bottom: 19px;
  }
}
@media (max-width: 767px) {
  .pay-method-way {
    padding-bottom: 27px;
  }
}

.pay-method-way__item {
  display: block;
  padding-bottom: 25px;
}

.pay-method-way__item:last-child {
  padding-bottom: 0;
}

@media (max-width: 1023px) {
  .pay-method-way__item {
    padding-bottom: 37px;
  }
}

.pay-method__box {
  padding: 26px 27px 35px;
  border: 1px solid #e7e7e7;
  border-radius: 3px;
}

@media (max-width: 1023px) {
  .pay-method__box {
    padding-bottom: 19px;
  }
}

.pay-method-type {
  margin: 0 -30px;
  padding-bottom: 16px;
}

.pay-method-type:last-child {
  padding-bottom: 0;
}

.pay-method-type__item {
  display: inline-block;
  width: 33.33%;
  padding: 0 30px;
  vertical-align: top;
}

@media (max-width: 1023px) {
  .pay-method-type__item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .pay-method-type__item {
    padding-bottom: 10px;
  }

  .pay-method-type__item:last-child {
    padding-bottom: 0;
  }
}

.pay-method-type .pay-method-item__radio {
  padding-top: 12px;
}

.pay-method-type .pay-method-item__image {
  min-height: 45px;
  margin-bottom: 0;
}

.payments-form {
  margin-bottom: 33px;
  padding: 22px 30px 26px;
  font-size: 0;
  background: #f5f5f5;
}

@media (max-width: 1023px) {
  .payments-form {
    padding: 22px 30px 25px;
  }
}

.payments-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
  padding-bottom: 20px;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.payments-form__row:last-child {
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .payments-form__row {
    display: block;
    padding-bottom: 0;
  }
}

.payments-form__cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 233px;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
}

@media (max-width: 1280px) {
  .payments-form__cell {
    width: 33.33%;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .payments-form__cell {
    width: 33.33%;
  }
}
@media (max-width: 767px) {
  .payments-form__cell {
    display: block;
    width: auto;
    padding-bottom: 15px;
  }
}

.payments-form__label {
  display: block;
  padding-bottom: 7px;
  font: 400 13px "ubuntu";
  color: #717171;
}

.payments-form__input {
  height: 34px;
}

.payments-form__submit {
  padding: 19px 15px 23px;
}

@media (max-width: 1280px) {
  .payments .input-file__label {
    padding: 18px 15px 22px;
  }

  .payments .input-file__label br {
    display: none;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .payments .input-file__label {
    padding: 18px 15px 22px;
  }

  .payments .input-file__label br {
    display: none;
  }
}
@media (max-width: 1023px) {
  .payments .input-file__label {
    padding: 11px 15px;
  }
}
@media (max-width: 767px) {
  .payments .input-file__label {
    padding: 20px 15px;
    font-size: 18px;
    font-weight: 400;
  }
}

.payments__link {
  padding: 21px 15px 25px;
  border: 0;
  font-size: 20px;
  font-weight: 400;
}

@media (max-width: 1023px) {
  .payments__link {
    display: none;
  }
}

.product-page__block-title {
  padding: 0 0 20px 0;
}

.product-page__title {
  padding: 0 0 20px 0;
  font-size: 25px;
  line-height: 30px;
}

.product-page__manufacturer {
  display: block;
  padding: 10px 0 0 0;
  clear: both;
}

@media (max-width: 767px) {
  .product-page__manufacturer {
    clear: left;
  }
}

.product-page__top {
  margin-top: -7px;
  padding: 0 0 20px 0;
}

.product-page__top:after {
  display: block;
  content: " ";
  clear: both;
}

.product-page__article {
  margin-right: 50px;
  font-size: 16px;
  color: #717171;
  float: left;
}

@media (max-width: 767px) {
  .product-page__article {
    margin-right: 15px;
  }
}

.product-page__feedback-link {
  float: left;
}

.product-page__feedback-link [class*="icon-"] {
  margin-right: 5px;
  fill: #ff7300;
}

@media (max-width: 767px) {
  .product-page__feedback-link {
    float: right;
  }
}

.product-page__warranty {
  float: right;
}

.product-page__warranty [class*="icon-"] {
  margin-right: 10px;
}

@media (max-width: 767px) {
  .product-page__warranty {
    margin-right: 0;
    padding-top: 10px;
    clear: both;
  }
}

.product-page__cols {
  display: flex;
  padding: 0 0 16px 0;
}

.product-page__cols:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1610px) {
  .product-page__cols {
    padding-right: 0;
  }
}
@media (max-width: 1280px) {
  .product-page__cols {
    padding-bottom: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-page__cols {
    padding-bottom: 14px;
  }
}
@media (max-width: 1023px) {
  .product-page__cols {
    margin: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .product-page__cols {
    margin: 0;
    padding: 0;
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .product-page__cols {
    display: block;
    margin-right: -16px;
    margin-left: -16px;
  }
}

.product-page__cols-actions {
  width: 100%;
}

@media (max-width: 1610px) {
  .product-page__cols-actions {
    width: 50%;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .product-page__cols-actions {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .product-page__cols-actions {
    width: 100%;
  }
}

.product-page__cols-preview {
  width: 100%;
  max-width: 692px;
  padding: 0 30px 0 0;
  box-sizing: content-box;
}

@media (max-width: 1440px) {
  .product-page__cols-preview {
    max-width: 450px;
  }
}
@media (max-width: 1280px) {
  .product-page__cols-preview {
    max-width: 416px;
  }
}
@media (max-width: 1023px) {
  .product-page__cols-preview {
    max-width: calc(100% - 390px);
  }
}
@media (max-width: 767px) {
  .product-page__cols-preview {
    max-width: 100%;
    padding-right: 0;
    overflow: hidden;
  }
}

.product-page__cols-info {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  float: none;
}

@media (max-width: 1280px) {
  .product-page__cols-info {
    padding-top: 0;
    padding-bottom: 14px;
  }
}
@media (max-width: 1023px) {
  .product-page__cols-info {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .product-page__cols-info {
    padding-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .product-page__cols-info {
    padding-bottom: 16px;
  }
}

.product-page__prices {
  display: block;
  margin: 0 0 25px 0;
}

.product-page__prices:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1610px) {
  .product-page__prices {
    width: 33.33%;
    padding-right: 15px;
    float: left;
  }
}
@media (max-width: 1023px) {
  .product-page__prices {
    width: 100%;
    margin-bottom: 3px;
    padding: 0;
    float: none;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
}
@media (max-width: 767px) {
  .product-page__prices {
    margin-bottom: 18px;
  }

  .product-page__prices-opt {
    margin-top: 20px;
  }
}

.product-page__prices-opt .product-page__price {
  color: #cd1a0f;
}

.product-page__old-price {
  position: relative;
  margin: 5px 0 0 0;
  font-size: 22px;
  color: #717171;
  float: left;
}

.product-page__old-price:before {
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  height: 4px;
  margin: -2px 0 0 0;
  content: "";
  background: rgba(220, 23, 54, 0.4);
}

.product-page__old-price .rub {
  font-size: 20px;
}

@media (max-width: 1610px) {
  .product-page__old-price {
    display: table;
    font-size: 18px;
    float: none;
  }

  .product-page__old-price .rub {
    font-size: 17px;
  }
}
@media (max-width: 1023px) {
  .product-page__old-price {
    margin-bottom: 6px;
  }
}
@media (max-width: 767px) {
  .product-page__old-price {
    display: inline-block;
    margin: 0 15px 0 0;
  }
}

.product-page__price {
  font-size: 27px;
  font-weight: 700;
  white-space: nowrap;
}

.product-page__price .rub {
  font-size: 26px;
}

@media (max-width: 1610px) {
  .product-page__price {
    font-size: 28px;
    float: none;
  }

  .product-page__price .rub {
    font-size: 24px;
  }
}
@media (max-width: 1150px) {
  .product-page__price {
    font-size: 20px;
  }
}
@media (max-width: 1023px) {
  .product-page__price {
    display: block;
    padding: 0 0 12px 0;
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .product-page__price {
    display: inline;
    padding: 0;
    font-size: 30px;
  }

  .product-page__price .rub {
    font-size: 26px;
  }
}

.product-page__price-name {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 12px;
}

.product-page__spinner {
  width: 100%;
}

@media (max-width: 1610px) {
  .product-page__spinner {
    padding-right: 15px;
  }
}
@media (max-width: 1023px) {
  .product-page__spinner {
    width: 100%;
    padding: 0 0 20px 0;
    float: none;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
@media (max-width: 480px) {
  .product-page__spinner {
    width: 50%;
  }
}

.product-page__spinner .spinner {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 19px 0 20px;
  padding-top: 18px;
  padding-right: 10px;
  padding-bottom: 18px;
  padding-left: 10px;
}

.product-page__spinner .spinner__text {
  font-size: 20px;
}

@media (min-width: 1611px) {
  .product-page__spinner .spinner__text {
    width: 34%;
  }
}
@media (min-width: 1611px) {
  .product-page__spinner .spinner__plus,
  .product-page__spinner .spinner__minus {
    position: absolute;
    width: 33%;
    height: 100%;
    margin: 0;
    float: none;
  }

  .product-page__spinner .spinner__minus {
    top: 0;
    right: auto;
    left: 0;
  }

  .product-page__spinner .spinner__plus {
    top: 0;
    right: 0;
    left: auto;
  }
}
@media (max-width: 767px) {
  .product-page__spinner .spinner__plus,
  .product-page__spinner .spinner__minus {
    width: 50px;
  }
}

.product-page__spinner .spinner__plus:before,
.product-page__spinner .spinner__minus:before {
  top: 50%;
  left: 50%;
  width: 16px;
  height: 4px;
  margin-top: -2px;
  margin-left: -8px;
  border-radius: 4px;
}

@media (min-width: 1611px) {
  .product-page__spinner .spinner__plus {
    top: 0;
    bottom: 50%;
  }
}

.product-page__spinner .spinner__plus:after {
  top: 50%;
  left: 50%;
  width: 4px;
  height: 16px;
  margin-top: -8px;
  margin-left: -2px;
  border-radius: 4px;
}

.product-page__btn-cart {
  width: 100%;
  min-height: 60px;
  margin: 0;
  padding-top: 3px;
  padding-right: 10px;
  padding-bottom: 3px;
  padding-left: 10px;
  font-size: 17px;
}

.product-page__btn-cart [class*="icon-"] {
  display: none;
}
@media (max-width: 1023px) {
  .product-page__btn-cart {
    width: 100%;
    order: 4;
    float: none;
  }

  .product-page__btn-cart [class*="icon-"] {
    display: inline-block;
    margin-right: 3px;
  }

  .product-page__btn-cart span {
    display: inline-block;
    vertical-align: middle;
  }
}

.btn-two-line {
  font-size: 14px;
  line-height: 1.1;
}

.product-page__click-buy {
  display: block;
  margin: 0 0 24px 0;
  padding: 19px 15px;
  clear: both;
}

@media (max-width: 1610px) {
  .product-page__click-buy {
    width: 66.66%;
    margin: 0;
    padding: 17px 15px 21px;
    float: right;
  }
}
@media (max-width: 1023px) {
  .product-page__click-buy {
    width: 100%;
    margin-bottom: 26px;
    padding: 12px 5px 16px;
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
    float: none;
  }
}

.product-page__cheaper {
  display: block;
  padding: 0 0 10px 0;
  font-size: 14px;
  font-weight: 400;
}

.product-page__cheaper:after {
  display: block;
  content: " ";
  clear: both;
}

.product-page__cheaper [class*="icon-"] {
  display: block;
  margin-right: 12px;
  float: left;
  fill: #ff7300;
}

.product-page__cheaper-link {
  color: #ff7300;
  letter-spacing: -0.3px;
  overflow: hidden;
}

.product-page__cheaper-link:hover {
  text-decoration: underline;
}

@media (max-width: 1610px) {
  .product-page__cheaper {
    width: 33.33%;
    padding: 6px 15px 0 0;
    float: left;
  }

  .product-page__cheaper [class*="icon-"] {
    display: none;
  }
}
@media (max-width: 1023px) {
  .product-page__cheaper {
    width: 100%;
    padding-right: 0;
    padding-bottom: 13px;
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
    float: none;
  }

  .product-page__cheaper [class*="icon-"] {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .product-page__cheaper {
    padding-top: 3px;
    font-size: 18px;
    font-weight: 700;
  }
}

.product-page__favor-link {
  display: none;
  font-size: 14px;
  font-weight: 700;
}

.product-page__favor-link [class*="icon-"] {
  margin-right: 5px;
  stroke: #ff7300;
}

.product-page__favor-link:hover {
  text-decoration: underline;
}

@media (max-width: 1023px) {
  .product-page__favor-link {
    display: block;
    margin-top: 17px;
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
}
@media (max-width: 767px) {
  .product-page__favor-link {
    font-size: 18px;
    font-weight: 700;
  }

  .product-page__favor-link [class*="icon-"] {
    margin-right: 12px;
    stroke: #ff7300;
  }
}

.product-page__col {
  position: relative;
  width: 33.33%;
  padding: 0 15px;
  float: left;
}

.product-page__col:nth-child(2) {
  float: right;
}

@media (max-width: 1023px) {
  .product-page__col {
    width: 100%;
    padding: 0;
  }

  .product-page__col:nth-child(2) {
    width: 230px;
    margin: 0 -250px 0 0;
    padding: 0;
    float: right;
  }
}
@media (max-width: 767px) {
  .product-page__col {
    padding: 0 0 20px 0;
    float: none;
  }

  .product-page__col:nth-child(2) {
    width: 100%;
    margin: 0;
    padding: 0 0 20px 0;
    float: none;
  }
}

.product-page__lg-image {
  position: relative;
  height: 530px;
  margin-bottom: 0;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  overflow: hidden;
}

.product-page__lg-image .product-page__lg-image-slider img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  .product-page__lg-image {
    margin-bottom: 15px;
  }

  .product-page__lg-image .product-page__lg-image-slider img {
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
@media (max-width: 1440px) {
  .product-page__lg-image {
    height: 400px;
  }
}
@media (max-width: 1280px) {
  .product-page__lg-image {
    height: 299px;
  }
}
@media (max-width: 1023px) {
  .product-page__lg-image {
    height: 360px;
  }
}
@media (max-width: 767px) {
  .product-page__lg-image {
    height: auto;
    margin: 0 0 15px;
  }
}

.product-page__lg-image-actions,
.product-page__sm-image-actions {
  position: absolute;
  top: 15px;
  right: 10px;
  z-index: 1;
}

.product-page__sm-image-actions {
  display: none;
}

.product-page__lg-image-actions-link,
.product-page__sm-share {
  display: inline-block;
  margin: 0 15px;
}

.product-page__sm-share {
  margin: 0;
  padding: 15px;
}

.product-page__lg-image-actions-link [class*="icon-"],
.product-page__sm-share [class*="icon-"] {
  stroke: #ff7300;
}

@media (max-width: 767px) {
  .product-page__sm-image-actions {
    display: block;
  }

  .product-page__lg-image-actions {
    display: none;
  }
}

.product-page__lg-image-slider a:nth-child(1n + 2) {
  display: none;
}

@media (max-width: 767px) {
  .product-page__lg-image-slider {
    height: 100%;
    padding-bottom: 30px;
  }

  .product-page__lg-image-slider a {
    display: block;
  }

  .product-page__lg-image-slider a:nth-child(1n + 2) {
    display: block;
  }

  .product-page__lg-image-slider .slick-dots {
    bottom: 20px;
    left: 50%;
    display: none !important;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  .product-page__lg-image-slider .slick-dots button {
    width: 12px;
    height: 12px;
    border: 3px solid #ff7300;
  }

  .product-page__lg-image-slider .slick-dots li {
    margin: 0 7px;
  }

  .product-page__lg-image-slider .slick-dots li.slick-active button {
    border-color: #ff7300;
    background: #ff7300;
  }
}

.product-page__lg-image-zoom {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 1;
  display: none;
  opacity: 0.2;
}

.product-page__preview {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px -16px;
  letter-spacing: -5px;
}

@media (max-width: 1280px) {
  .product-page__preview {
    margin-bottom: 6px;
  }
}
@media (max-width: 1023px) {
  .product-page__preview {
    display: flex;
    flex-wrap: wrap;

    /* overflow: auto; */

    /* white-space: nowrap; */
    margin: 0 -5px;
    padding: 2px 0 28px 0;
  }
}
@media (max-width: 767px) {
  .product-page__preview {
    padding-bottom: 0;
  }
}

.product-page__preview-item {
  display: block;
  width: 94px;
  padding: 0 9px 16px 8px;
  box-sizing: content-box;
}

@media (max-width: 1280px) {
  .product-page__preview-item {
    width: 92px;
    padding: 0 8px 16px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-page__preview-item {
    width: 92px;
    padding: 0 8px 16px;
  }
}
@media (max-width: 1023px) {
  .product-page__preview-item {
    width: 109px;
    margin: 0 5px 10px;
    padding: 0 0 0 0;
    flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .product-page__preview-item {
    width: calc(25% - 10px);
  }
}

.product-page__preview-img {
  position: relative;
  display: block;
  height: 77px;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.3s !important;
}

@media (max-width: 1280px) {
  .product-page__preview-img {
    height: 60px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-page__preview-img {
    height: 60px;
  }
}
@media (max-width: 1023px) {
  .product-page__preview-img {
    height: 70px;
  }
}
@media (max-width: 767px) {
  .product-page__preview-img {
    height: 78px;
  }
}

.product-page__preview-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 90%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.product-page__preview-img:hover {
  -webkit-box-shadow: 0 0 7px #fec908;
  box-shadow: 0 0 7px #fec908;
  border-color: #fcba0e;
}

.product-page__preview-img--video [class*="icon-"] {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 1280px) {
  .product-page__preview-img--video [class*="icon-"] {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-page__preview-img--video [class*="icon-"] {
    width: 30px;
    height: 30px;
  }
}

.product-page__logo {
  width: 200px;
  padding: 0 0 40px 0;
}

@media (max-width: 1280px) {
  .product-page__logo {
    padding: 0 0 30px 0;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-page__logo {
    padding: 0 0 30px 0;
  }
}
@media (max-width: 1023px) {
  .product-page__logo {
    display: none;
  }
}

.product-page__descr-link {
  display: inline-block;
  width: auto;
  margin: 0 0 19px 0;
  padding: 10px 24px 12px;
  font-weight: 400;
  border-width: 1px;
}

@media (max-width: 1280px) {
  .product-page__descr-link {
    margin: 10px 0 30px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-page__descr-link {
    margin: 10px 0 30px;
  }
}
@media (max-width: 767px) {
  .product-page__descr-link {
    display: none;
  }
}

.product-page__info-list:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1280px) {
  .product-page__info-list {
    display: none;
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-page__info-list {
    display: none;
    font-size: 14px;
  }
}

.product-page__info-list-term {
  margin-right: 5px;
  font-weight: 700;
  float: left;
  clear: both;
}

.product-page__info-text {
  padding: 0 0 25px 0;
  font-size: 16px;
  line-height: 25px;
}

@media (max-width: 1280px) {
  .product-page__info-text {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-page__info-text {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 1023px) {
  .product-page__info-text {
    font-size: 15px;
    line-height: 23px;
  }
}

.product-page__action-block {
  height: 100%;
  margin-bottom: 30px;
  padding: 60px 67px;
  background: #f9f9f9;
}

.product-page__action-block:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1610px) {
  .product-page__action-block {
    padding: 23px 30px 24px;
  }
}
@media (max-width: 1200px) {
  .product-page__action-block {
    min-width: 360px;
    padding: 23px 20px 24px;
  }
}
@media (max-width: 1023px) {
  .product-page__action-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
    padding: 15px 20px 65px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}
@media (max-width: 767px) {
  .product-page__action-block {
    display: block;
    min-width: 230px;
    height: auto;
    padding: 19px 20px 20px;
  }
}
@media (max-width: 480px) {
  .product-page__action-block {
    margin-bottom: 15px;
  }
}

.product-page__action-block-row {
  padding: 0 0 30px 0;
}

.product-page__action-block-row:after {
  display: block;
  content: " ";
  clear: both;
}

.product-page__action-block-row--sm-pad {
  padding: 0 0 25px 0;
}

.product-page__action-block-row .btn {
  padding: 20px 15px 21px;
  font-size: 17px;
}

.product-page__action-block-row:last-child {
  padding: 0;
}

@media (max-width: 1610px) {
  .product-page__action-block-row {
    padding: 0 0 20px 0;
  }

  .product-page__action-block-row--sm-pad {
    padding: 0 0 15px 0;
  }

  .product-page__action-block-row .btn-yellow {
    padding-top: 15px;
    padding-bottom: 16px;
  }
}

.product-page__action-block__row {
  display: flex;
  align-items: center;
  margin-right: -24px;
  margin-left: -24px;
}

.product-page__action-block__row > * {
  padding: 0 24px;
  order: 1;
}

.product-page__action-block__row + .product-page__action-block__row {
  margin-top: 48px;
}

.product-page__action-block__row .product-page__prices {
  width: 110px;
  margin-bottom: 0;
  flex: 0 0 110px;
  order: 0;
  box-sizing: content-box;
}

.product-page__action-block__row .product-page__btn-cart {
  margin-bottom: 0;
}

.product-item-detail-info-container {
  width: 100%;
}

.product-page__counter {
  margin-right: 21px;
}

.product-page__counter-title {
  display: block;
  font-weight: 700;
}

.product-page__counter-number {
  display: block;
  padding-top: 2px;
  font-size: 28px;
  font-weight: 700;
}

.product-page__dealer-advantages {
  color: #696768;
}

.product-page__dealer-advantages p {
  margin: 0 0 4px;
  padding: 0;
  line-height: 1.3;
}

.breadcrumbs__home-icon {
  width: 1em;
  height: 1em;
  padding: 0 2px;
  transition: opacity 0.3s ease;
  opacity: 0.6;
  vertical-align: top;
  box-sizing: content-box;
}

.breadcrumbs__home-icon:hover {
  opacity: 1;
}

.breadcrumbs__home-icon + span {
  display: none;
}

.products-cols.products-cols__fx {
  display: flex;
  flex-direction: column;
  margin-right: 0;
  margin-left: 0;
}

.products-cols.products-cols__fx .products-cols__col {
  padding: 0;
  float: none;
}

.products-cols.products-cols__fx .products-cols__col .product-card__list {
  display: flex;
  padding-bottom: 1px;
}

.products-cols.products-cols__fx
  .products-cols__col
  .product-card__list-item--3 {
  width: 33.3%;
}

.text-blink a {
  color: transparent !important;
  background-size: 1000px;
  background-position: 0;
  background-image: linear-gradient(
    to right,
    #000000 0%,
    #000000 70%,
    #ff7300 85%,
    #ff7300 85%,
    #000000 87%,
    #000000 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-animation: text-blink 2s linear infinite;
  -o-animation: text-blink 2s linear infinite;
  animation: text-blink 2s linear infinite;
  animation-delay: 10s;
}

@keyframes text-blink {
  0% {
    background-position: 0;
  }

  100% {
    background-position: 1000px;
  }
}

@media (min-width: 769px) {
  .products-cols.products-cols__fx
    .products-cols__col:not(:first-child)
    .product-card__list {
    margin-left: -1.5px;
  }
}
@media (max-width: 1440px) {
  .product-page__action-block__row {
    margin-right: -8px;
    margin-left: -8px;
  }

  .product-page__action-block__row > * {
    padding: 0 8px;
  }

  .product-page__action-block__row + .product-page__action-block__row {
    margin-top: 16px;
  }

  .product-page__counter {
    margin-right: 57px;
  }
}
@media (max-width: 767px) and (min-width: 481px) {
  .product-page__action-block__row {
    display: block;
    margin: 0;
  }

  .product-page__action-block__row > * {
    margin-bottom: 5px;
    padding: 0;
  }

  .product-page__action-block__row .product-page__prices {
    width: 100%;
    flex: 0 0 100%;
  }

  .product-page__action-block__row
    .product-page__prices
    + .product-page__prices {
    margin-top: 15px;
    margin-bottom: 5px;
  }

  .product-page__counter {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .products-cols.products-cols__fx .products-cols__col .product-card__list {
    flex-wrap: wrap;
  }

  .products-cols.products-cols__fx
    .products-cols__col
    .product-card__list-item--3 {
    width: 33.333333333%;
  }

  .product-page__favor-link {
    margin-top: 17px;
    text-align: center;
  }

  .products-cols__fx {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .products-cols.products-cols__fx
    .products-cols__col
    .product-card__list-item--3 {
    width: 50%;
  }

  .product-page__action-block__row .product-page__prices {
    width: 50%;
    margin-top: 0;
    flex: 0 0 50%;
    box-sizing: border-box;
  }

  .product-page__counter {
    width: 50%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .product-page__dealer-advantages {
    margin-bottom: 10px;
  }

  .product-page__favor-link {
    margin-top: 15px;
    text-align: center;
  }
}

.products-cols__col-xl-1-10 {
  width: 10% !important;
}

.products-cols__col-xl-2-10 {
  width: 20% !important;
}

.products-cols__col-xl-3-10 {
  width: 30% !important;
}

.products-cols__col-xl-4-10 {
  width: 40% !important;
}

/* .products-cols__col-xl-5-10 {
  width: 50% !important;
} */

.products-cols__col-xl-6-10 {
  width: 60% !important;
}

.products-cols__col-xl-7-10 {
  width: 70% !important;
}

.products-cols__col-xl-8-10 {
  width: 80% !important;
}

.products-cols__col-xl-9-10 {
  width: 90% !important;
}

.products-cols__col-xl-10-10 {
  width: 100% !important;
}

.products-cols__col-xl-1-3 {
  width: 33.333333333333% !important;
}

.products-cols__col-xl-2-3 {
  width: 66.666666666666% !important;
}

.d-xl-block {
  display: block !important;
}

.d-xl-flex {
  display: flex !important;
}

.d-xl-none {
  display: none !important;
}

@media (max-width: 1280px) {
  .products-cols__col-lg-1-10 {
    width: 10% !important;
  }

  .products-cols__col-lg-2-10 {
    width: 20% !important;
  }

  .products-cols__col-lg-3-10 {
    width: 30% !important;
  }

  .products-cols__col-lg-4-10 {
    width: 40% !important;
  }

  .products-cols__col-lg-5-10 {
    width: 50% !important;
  }

  .products-cols__col-lg-6-10 {
    width: 60% !important;
  }

  .products-cols__col-lg-7-10 {
    width: 70% !important;
  }

  .products-cols__col-lg-8-10 {
    width: 80% !important;
  }

  .products-cols__col-lg-9-10 {
    width: 90% !important;
  }

  .products-cols__col-lg-10-10 {
    width: 100% !important;
  }

  .products-cols__col-lg-1-3 {
    width: 33.333333333333% !important;
  }

  .products-cols__col-lg-2-3 {
    width: 66.666666666666% !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-none {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .products-cols__col-md-1-10 {
    width: 10% !important;
  }

  .products-cols__col-md-2-10 {
    width: 20% !important;
  }

  .products-cols__col-md-3-10 {
    width: 30% !important;
  }

  .products-cols__col-md-4-10 {
    width: 40% !important;
  }

  .products-cols__col-md-5-10 {
    width: 50% !important;
  }

  .products-cols__col-md-6-10 {
    width: 60% !important;
  }

  .products-cols__col-md-7-10 {
    width: 70% !important;
  }

  .products-cols__col-md-8-10 {
    width: 80% !important;
  }

  .products-cols__col-md-9-10 {
    width: 90% !important;
  }

  .products-cols__col-md-10-10 {
    width: 100% !important;
  }

  .products-cols__col-md-1-3 {
    width: 33.333333333333% !important;
  }

  .products-cols__col-md-2-3 {
    width: 66.666666666666% !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-none {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .products-cols__col-sm-1-10 {
    width: 10% !important;
  }

  .products-cols__col-sm-2-10 {
    width: 20% !important;
  }

  .products-cols__col-sm-3-10 {
    width: 30% !important;
  }

  .products-cols__col-sm-4-10 {
    width: 40% !important;
  }

  .products-cols__col-sm-5-10 {
    width: 50% !important;
  }

  .products-cols__col-sm-6-10 {
    width: 60% !important;
  }

  .products-cols__col-sm-7-10 {
    width: 70% !important;
  }

  .products-cols__col-sm-8-10 {
    width: 80% !important;
  }

  .products-cols__col-sm-9-10 {
    width: 90% !important;
  }

  .products-cols__col-sm-10-10 {
    width: 100% !important;
  }

  .products-cols__col-sm-1-3 {
    width: 33.333333333333% !important;
  }

  .products-cols__col-sm-2-3 {
    width: 66.666666666666% !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-none {
    display: none !important;
  }
}

.product-page__cart-btn {
  width: calc(100% - 197px);
  float: right;
}

.product-page__cart-btn .hide-on-xl {
  display: none;
}

@media (max-width: 1610px) {
  .product-page__cart-btn {
    width: 50%;
    padding-left: 15px;
  }

  .product-page__cart-btn .hide-on-ml {
    display: none;
  }

  .product-page__cart-btn .hide-on-xl {
    display: inline;
  }

  .product-page__cart-btn .btn-lg {
    padding: 15px 5px 16px;
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .product-page__cart-btn {
    width: 100%;
    padding: 0;
    float: none;
  }
}
@media (max-width: 767px) {
  .product-page__cart-btn {
    width: 50%;
    padding-left: 15px;
    float: left;
  }
}

.product-page__bonus {
  padding: 6px 10px;
  border: 3px solid #ffffff;
  border-radius: 3px;
  font-size: 15px;
  text-align: center;
  color: #717171;
}

.product-page__bonus [class*="icon-"] {
  margin-right: 10px;
}

.product-page__city-pick {
  display: block;
  text-align: center;
  color: #717171;
}

.product-page__actions-link-block {
  display: block;
  padding: 0 0 10px 30px;
}

.product-page__actions-link-block [class*="icon-"] {
  margin: 2px 0 0 -30px;
  float: left;
  fill: #0075b9;
}

@media (max-width: 1280px) {
  .product-page__actions-link-block {
    padding-bottom: 15px;
  }

  .product-page__actions-link-block:last-child {
    padding-bottom: 8px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-page__actions-link-block {
    padding-bottom: 15px;
  }

  .product-page__actions-link-block:last-child {
    padding-bottom: 8px;
  }
}

.product-page__actions-link {
  font-weight: 700;
}

@media (max-width: 1023px) {
  .product-page__actions-link {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .product-page__payment {
    display: none;
  }
}

.product-page__payment-title {
  display: block;
  padding: 0 0 13px 0;
  font-size: 15px;
  font-weight: 700;
}

.product-page__payment-list {
  margin: 0 -12px;
  letter-spacing: -5px;
}

@media (max-width: 1610px) {
  .product-page__payment-list {
    margin: 0 -5px;
  }
}

.product-page__payment-item {
  display: inline-block;
  width: 25%;
  padding: 0 12px;
}

@media (max-width: 1610px) {
  .product-page__payment-item {
    padding: 0 5px;
  }
}

.product-page__payment-item-inner {
  height: 67px;
  padding: 10px;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  text-align: center;
}

.product-page__payment-item-inner:before {
  display: inline-block;
  height: 100%;
  content: "";
  vertical-align: middle;
}

.product-page__payment-item-inner img {
  display: inline-block;
  width: 100%;
  max-width: 62px;
  height: 34px;
  vertical-align: middle;
}

@media (max-width: 1610px) {
  .product-page__payment-item-inner {
    height: 52px;
    padding: 5px;
  }
}

.product-page__cities {
  position: absolute;
  display: none;
  width: calc(100% - 30px);
  padding-top: 20px;
}

@media (max-width: 1023px) {
  .product-page__cities {
    position: static;
    display: block;
    width: 100%;
    padding: 0;
  }
}

.product-page__cities-list {
  position: relative;
  border-top: 1px solid #dfdfdf;
  background: #ffffff;
}

.product-page__cities-list:before {
  position: absolute;
  top: -9px;
  left: 50%;
  display: block;
  width: 18px;
  height: 18px;
  margin-left: -9px;
  border-top: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  content: "";
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #ffffff;
}

@media (max-width: 1023px) {
  .product-page__cities-list:before {
    display: none;
  }
}

.product-page__cities-list-item {
  padding: 7px 15px;
  border: 1px solid #dfdfdf;
  border-top: none;
}

.product-page__cities-list-item:after {
  display: block;
  content: " ";
  clear: both;
}

.product-page__cities-list-item:first-child {
  color: #898989;
}

.product-page__cities-name {
  float: left;
}

.product-page__cities-availability {
  display: block;
  min-width: 68px;
  text-align: center;
  float: right;
}

.product-tabs__panel {
  margin: 0 -10px -20px;
  line-height: 0;
  letter-spacing: -5px;
}

@media (max-width: 767px) {
  .product-tabs__panel {
    margin: 0 -8px -15px;
  }
}

.product-tabs__panel-item {
  position: relative;
  display: inline-block;
  margin: 0 10px 20px;
  padding: 9px 19px;
  border: 1px solid #ff7300;
  border-radius: 3px;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #ff7300;
  letter-spacing: normal;
}

.product-tabs__panel-item.active,
.product-tabs__panel-item:hover {
  color: #ffffff;
  background: #ff7300;
}

@media (max-width: 1610px) {
  .product-tabs__panel-item {
    font-size: 15px;
  }
}
@media (max-width: 1280px) {
  .product-tabs__panel-item {
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-tabs__panel-item {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .product-tabs__panel-item {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .product-tabs__panel-item {
    margin: 0 8px 15px;
    padding: 5px 14px 6px;
    font-size: 14px;
  }
}

.product-tabs__content {
  display: none;
  padding: 20px 0 0;
}

.product-tabs__content.active {
  display: block;
}

@media (max-width: 1280px) {
  .product-tabs__content {
    padding: 14px 0 0;
  }
}
@media (max-width: 1023px) {
  .product-tabs__content {
    padding: 25px 0 0;
  }
}
@media (max-width: 767px) {
  .product-tabs__content {
    padding: 16px 0 0;
  }
}

.product-tabs__slider {
  position: relative;
  z-index: 99;
  margin-bottom: -200px;
}

.product-tabs__slider:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  display: block;
  height: 301px;
  content: "";
  background: #ffffff;
}

.product-tabs__slider:after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  width: 2px;
  height: 301px;
  content: "";
}

@media (max-width: 1023px) {
  .product-tabs__slider {
    margin: 0 -22px;
    margin-bottom: 0;
    font-size: 0;
  }

  .product-tabs__slider:before,
  .product-tabs__slider:after {
    display: none;
  }
}
@media (max-width: 767px) {
  .product-tabs__slider {
    padding-top: 1px;
    white-space: normal;
  }
}

.product-tabs__slider-wrapper {
  padding: 0 40px;
}

@media (max-width: 1023px) {
  .product-tabs__slider-wrapper {
    padding: 0;
  }
}

.product-tabs__slider-item {
  height: 301px;
}

.product-tabs__slider-item .product-card__inner {
  border-left-color: transparent;
}

.product-tabs__slider-item .product-card__inner:hover {
  border-left-color: #ff7300;
}

.product-tabs__slider-item .product-card__img {
  height: 141px;
}

.product-tabs__slider-item .product-card__title {
  font-size: 14px;
}

@media (max-width: 1023px) {
  .product-tabs__slider-item {
    display: inline-block;
    width: 33.33%;
    height: auto;
    margin: 0;
    vertical-align: top;
  }

  .product-tabs__slider-item:nth-child(1n) {
    position: relative;
  }

  .product-tabs__slider-item:nth-child(1n):hover {
    z-index: 10;
  }

  .product-tabs__slider-item:nth-child(1n) .product-card__inner {
    border-radius: 0;
    border-left-color: transparent;
  }

  .product-tabs__slider-item:nth-child(3n + 1) .product-card__inner {
    border-radius: 0;
    border-left-color: #dfdfdf;
  }

  .product-tabs__slider-item:nth-child(3n + 1) .product-card__inner:hover {
    border-left-color: transparent;
  }
}
@media (max-width: 767px) {
  .product-tabs__slider-item {
    width: 50%;
  }

  .product-tabs__slider-item:nth-child(1n) {
    position: relative;
    margin-top: -1px;
  }

  .product-tabs__slider-item:nth-child(1n):hover {
    z-index: 10;
  }

  .product-tabs__slider-item:nth-child(1n) .product-card__inner {
    border-radius: 0;
    border-left-color: transparent;
  }

  .product-tabs__slider-item:nth-child(1n) .product-card__inner:hover {
    border-left-color: transparent;
  }

  .product-tabs__slider-item:nth-child(2n + 1) .product-card__inner {
    border-radius: 3px 0 0 3px;
    border-left-color: #dfdfdf;
  }

  .product-tabs__slider-item:nth-child(2n + 1) .product-card__inner:hover {
    border-left-color: transparent;
  }
}

.product-tabs__slider .slick-list {
  height: 500px;
  padding-right: 3px;
}

@media (max-width: 1023px) {
  .product-tabs__slider .slick-list {
    height: auto;
    overflow: visible;
  }
}

.product-tabs__slider .slick-arrow {
  position: absolute;
  top: 0;
  z-index: 1;
  display: block;
  width: 40px;
  height: 302px;
  border: 1px solid #dfdfdf;
  font-size: 0;
  line-height: 0;
  text-align: center;
  cursor: pointer;
}

.product-tabs__slider .slick-arrow:before {
  display: inline-block;
  height: 100%;
  content: "";
  vertical-align: middle;
}

.product-tabs__slider .slick-arrow [class*="icon-"] {
  width: 8px;
  height: 28px;
}

.product-tabs__slider .slick-arrow:hover {
  background: #f6f6f6;
}

.product-tabs__slider .slick-prev {
  left: -40px;
}

.product-tabs__slider .slick-next {
  right: -40px;
  border-left-color: transparent;
}

.product-tabs__docs {
  margin-bottom: -40px;
  padding-bottom: 20px;
}

.product-tabs__docs-item {
  padding: 0 0 40px 60px;
}

.product-tabs__docs-item:after {
  display: block;
  content: " ";
  clear: both;
}

.product-tabs__docs-icon {
  margin: 0 0 0 -60px;
  float: left;
}

.product-tabs__docs-title {
  display: block;
  padding: 0 0 3px 0;
  font-size: 16px;
  font-weight: 700;
}

.product-tabs__docs-title:hover {
  opacity: 0.7;
}

.product-tabs__docs-format {
  display: block;
  font-size: 16px;
  color: #898989;
}

.product-tabs__feedback-item {
  padding: 22px 0 29px 0;
  border-top: 1px solid #dfdfdf;
}

.product-tabs__feedback-item:first-child {
  padding-top: 0;
  border-top: none;
}

.product-tabs__feedback-top {
  padding: 0 0 12px 0;
}

.product-tabs__feedback-top [class*="icon-"] {
  margin-right: 10px;
  vertical-align: middle;
}

.product-tabs__feedback-top--positive [class*="icon-"] {
  fill: #7abe5c;
}

.product-tabs__feedback-top--negative [class*="icon-"] {
  fill: #e96969;
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

.product-tabs__feedback-title {
  font-size: 14px;
  color: #717171;
}

.product-tabs__feedback-title strong {
  font-size: 16px;
  color: #404041;
}

.product-tabs__feedback-form {
  padding: 20px 30px;
  background: #f6f6f6;
}

@media (max-width: 767px) {
  .product-tabs__feedback-form {
    padding: 20px;
  }
}

.product-tabs__feedback-form-title {
  display: block;
  padding: 0 0 10px 0;
  font-size: 25px;
  font-weight: 700;
}

.product-tabs__feedback-form-subtitle {
  display: block;
  padding: 0 0 15px 0;
  font-size: 16px;
}

@media (max-width: 1280px) {
  .product-tabs__feedback-form-subtitle {
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-tabs__feedback-form-subtitle {
    font-size: 14px;
  }
}

.product-tabs__feedback-checks {
  padding: 0 0 24px 0;
  letter-spacing: -5px;
}

.product-tabs__feedback-textarea {
  height: 143px;
  margin-bottom: 24px;
  padding: 20px 25px;
  -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.11);
  box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.11);
  resize: none;
}

@media (max-width: 1280px) {
  .product-tabs__feedback-textarea {
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-tabs__feedback-textarea {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .product-tabs__feedback-text {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-tabs__feedback-text {
    font-size: 14px;
    line-height: 20px;
  }
}

.product-tabs__feedback-radio {
  display: inline-block;
  margin-left: 24px;
  cursor: pointer;
  letter-spacing: normal;
}

@media (max-width: 767px) {
  .product-tabs__feedback-radio {
    width: calc(50% - 10px);
    margin-left: 20px;
  }
}

.product-tabs__feedback-radio:first-child {
  margin-left: 0;
}

.product-tabs__feedback-radio input[type="radio"] {
  display: none;
}

.product-tabs__feedback-radio input[type="radio"] + span {
  display: block;
  padding: 10px 19px;
  border-radius: 3px;
  -webkit-box-shadow: 0 3px 5px rgba(178, 178, 178, 0.44);
  box-shadow: 0 3px 5px rgba(178, 178, 178, 0.44);
  background: #ffffff;
  white-space: nowrap;
}

.product-tabs__feedback-radio input[type="radio"] + span [class*="icon-"] {
  margin: 0 10px 0 0;
}

@media (max-width: 1280px) {
  .product-tabs__feedback-radio input[type="radio"] + span {
    font-size: 16px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .product-tabs__feedback-radio input[type="radio"] + span {
    font-size: 16px;
  }
}

.product-tabs__feedback-radio input[type="radio"]:checked + span {
  color: #ffffff;
}

.product-tabs__feedback-radio
  input[type="radio"]:checked
  + span
  [class*="icon-"] {
  fill: #ffffff;
}

.product-tabs__feedback-radio--positive input[type="radio"] {
  display: none;
}

.product-tabs__feedback-radio--positive input[type="radio"] + span {
  color: #7abe5c;
}

.product-tabs__feedback-radio--positive
  input[type="radio"]
  + span
  [class*="icon-"] {
  fill: #7abe5c;
}

.product-tabs__feedback-radio--positive input[type="radio"]:checked + span {
  -webkit-box-shadow: inset 0 3px 5px #4e8535;
  box-shadow: inset 0 3px 5px #4e8535;
  background: #7abe5c;
}

.product-tabs__feedback-radio--negative input[type="radio"] {
  display: none;
}

.product-tabs__feedback-radio--negative input[type="radio"] + span {
  color: #e96969;
}

.product-tabs__feedback-radio--negative
  input[type="radio"]
  + span
  [class*="icon-"] {
  fill: #e96969;
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

.product-tabs__feedback-radio--negative input[type="radio"]:checked + span {
  -webkit-box-shadow: inset 0 3px 5px #c13b3b;
  box-shadow: inset 0 3px 5px #c13b3b;
  background: #e96969;
}

.product-offers {
  padding: 60px 0 0;
}

.products-cols {
  margin: 0 -13px;
}

.products-cols:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1023px) {
  /* .products-cols__col {
    width: 50%;
    padding: 0 13px;
    float: left;
  } */

  .products-cols__left {
    width: 42.6%;
    padding: 0 15px;
    float: left;
  }

  .products-cols__left-list-item {
    width: 33.33%;
  }
}
@media (max-width: 1280px) {
  .products-cols__left {
    width: 50%;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .products-cols__left {
    width: 50%;
  }
}

.products-cols__right {
  width: 57.4%;
  padding: 0 15px;
  float: right;
}

@media (max-width: 1280px) {
  .products-cols__right {
    width: 50%;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .products-cols__right {
    width: 50%;
  }
}

.products-cols__right-list {
  padding-bottom: 0;
  -webkit-box-shadow: 0 0 27px rgba(255, 211, 4, 0.32);
  box-shadow: 0 0 27px rgba(255, 211, 4, 0.32);
}

.products-cols__right-list-item {
  width: 25%;
}

.products-cols__right-list-item .product-card__inner {
  border-color: #ffd304;
  border-left-color: transparent;
}

.products-cols__right-list-item .product-card__inner:hover {
  border-left-color: #ffd304;
}

.products-cols__right-list-item:first-child .product-card__inner {
  border-radius: 3px 0 0 3px;
  border-left-color: #ffd304;
}

@media (max-width: 1280px) {
  .products-cols__right-list-item {
    width: 50%;
  }

  .products-cols__right-list-item:nth-child(3) {
    display: none;
  }

  .products-cols__right-list-item:nth-child(4) {
    display: none;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .products-cols__right-list-item {
    width: 50%;
  }

  .products-cols__right-list-item:nth-child(3) {
    display: none;
  }

  .products-cols__right-list-item:nth-child(4) {
    display: none;
  }
}

.cols {
  margin: 0 -15px;
  padding: 0 0 10px 0;
}

.cols:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1280px) {
  .cols {
    padding: 0;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .cols {
    padding: 0;
  }
}

.cols__item-50 {
  width: 50%;
  padding: 0 15px;
  float: left;
}

.cols__item-50:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1023px) {
  .cols__item-50 {
    width: 100%;
  }
}

.profile__input-row {
  padding: 0 0 15px 0;
  font-size: 16px;
}

.profile__input-row:after {
  display: block;
  content: " ";
  clear: both;
}
@media (max-width: 767px) {
  .profile__input-row {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    gap: 5px;
  }
}

.profile__input-label {
  width: 33.33%;
  padding-top: 8px;
  padding-right: 15px;
  color: #717171;
  float: left;
}
@media (max-width: 767px) {
  .profile__input-label {
    width: 100%;
    padding: 0;
  }
}

.profile__input-label--middle {
  padding-top: 10px;
}

.profile__input-label--no-top-pad {
  padding-top: 0;
}

@media (max-width: 1280px) {
  .profile__input-label--no-top-pad {
    display: block;
    width: 100%;
    padding-bottom: 10px;
    float: none;
  }

  .profile__input-label--no-top-pad + .profile__input-box {
    width: 100%;
    padding: 0;
    float: none;
    overflow: hidden;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .profile__input-label--no-top-pad {
    display: block;
    width: 100%;
    padding-bottom: 10px;
    float: none;
  }

  .profile__input-label--no-top-pad + .profile__input-box {
    width: 100%;
    padding: 0;
    float: none;
    overflow: hidden;
  }
}
@media (max-width: 1023px) {
  .profile__input-label--no-top-pad + .profile__input-box {
    padding-bottom: 12px;
  }
}

.profile__input-box {
  width: 66.66%;
  padding-left: 15px;
  text-align: right;
  float: right;
}
@media (max-width: 767px) {
  .profile__input-box {
    width: 100%;
    padding: 0;
  }
}

.profile__input-box input {
  margin-bottom: 5px;
}

.profile__input-box .bonuses-info__list-term,
.profile__input-box .bonuses-info__list-descr {
  padding-bottom: 8px;
}

.profile__input-link {
  display: inline-block;
  margin-bottom: 10px;
}

.profile__input-link:hover {
  text-decoration: underline;
}

.profile__checkbox {
  padding: 0 0 25px 0;
  font-size: 17px;
  color: #717171;
}

.profile__checkbox .checkbox {
  display: block;
}

@media (max-width: 767px) {
  .profile__checkbox {
    padding-bottom: 16px;
    font-size: 15px;
  }
}

.lk-desc {
  display: flex;
  flex-direction: column;
  margin-right: auto;
  color: #717171;
  gap: 5px;
}

.lk-desc p {
  padding: 0;
}

.profile-bottom {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  margin-top: 30px;
  gap: 30px;
}
.profile-bottom:after {
  display: none;
  content: unset;
}
@media (max-width: 767px) {
  .profile-bottom {
    flex-direction: column;
    margin-top: 15px;
    gap: 15px;
  }
}

.profile-bottom__btn {
  width: 100%;
  max-width: 230px;
  height: 60px;
  padding-top: 12px;
  padding-right: 10px;
  padding-bottom: 12px;
  padding-left: 10px;
  font-size: 16px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .profile-bottom__btn {
    max-width: 100%;
    height: 55px;
  }
}

.profile__checks-info {
  margin-bottom: 27px;
  padding: 20px 30px;
  border-radius: 3px;
  background: #f5f5f5;
}

@media (max-width: 1023px) {
  .profile__checks-info {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .profile__checks-info {
    padding: 15px 17px 3px;
  }
}

.profile__checks-info .title-17 {
  padding-bottom: 23px;
}

@media (max-width: 767px) {
  .profile__checks-info .title-17 {
    padding-bottom: 13px;
  }
}

.profile__checks-info--settings {
  padding-top: 17px;
}

.profile__checks-info--settings .profile__checkbox {
  padding-bottom: 15px;
}

.profile__checks-info--settings .title-17 {
  padding-bottom: 18px;
}

@media (max-width: 1023px) {
  .profile__checks-info--settings {
    margin-top: 14px;
    margin-bottom: 29px;
  }
}
@media (max-width: 1023px) {
  .profile-cols-top .cols__item-50 {
    width: 100%;
  }
}
@media (max-width: 1280px) {
  .profile-cols-bottom .cols__item-50 {
    width: 100%;
    padding-bottom: 22px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .profile-cols-bottom .cols__item-50 {
    width: 100%;
    padding-bottom: 22px;
  }
}
@media (max-width: 1023px) {
  .profile-cols-bottom .cols__item-50 .bonuses-info {
    margin-bottom: 14px;
  }
}

.promo-material__select {
  max-width: 440px;
  margin-bottom: 35px;
}

@media (max-width: 1023px) {
  .promo-material__select {
    max-width: 230px;
    margin-bottom: 39px;
  }
}
@media (max-width: 767px) {
  .promo-material__select {
    margin-bottom: 25px;
  }
}
@media (max-width: 1023px) {
  .realization {
    margin: 0 -22px;
  }

  .realization h2 {
    padding-left: 22px;
  }
}

.realization__price {
  display: table;
  margin: 0 0 0 auto;
  padding-bottom: 21px;
}

@media (max-width: 1023px) {
  .realization__price {
    padding-right: 22px;
  }
}

.realization__price-text {
  display: inline-block;
  padding-right: 25px;
  font: 700 20px "ubuntu";
  color: #717171;
}

.realization__price-val {
  display: inline-block;
  font: 700 25px "ubuntu";
  color: #404041;
}

.realization__btn {
  display: table;
  width: auto;
  margin: 0 0 0 auto;
  padding: 21px 41px 22px;
  font-size: 18px;
}

@media (max-width: 1023px) {
  .realization__btn {
    margin-right: 22px;
  }
}
@media (max-width: 767px) {
  .realization__btn {
    margin-bottom: 20px;
    padding: 15px 41px 19px;
  }
}

.statistic__inputbox {
  display: inline-block;
  width: 233px;
  padding: 0 25px 0 0;
  vertical-align: middle;
}

.statistic__inputbox--short {
  width: 97px;
  padding: 0 7px 0 0;
}

.statistic__inputbox input {
  padding-right: 5px;
  padding-left: 5px;
  font-size: 14px;
  text-align: center;
  color: #717171;
}

@media (max-width: 767px) {
  .statistic__inputbox {
    display: block;
    margin-bottom: 22px;
  }

  .statistic__inputbox--short {
    display: inline-block;
    margin: 0;
  }
}

.statistic__input-text {
  display: inline-block;
  padding: 0 7px 0 0;
  color: #717171;
  vertical-align: middle;
}

.statistic__chart {
  max-width: 738px;
  height: 500px;
}

@media (max-width: 1023px) {
  .statistic__chart {
    width: 100%;
    max-width: 100%;
  }
}

.top-prod__filter {
  max-width: 565px;
  margin-bottom: -22px;
}

@media (max-width: 1023px) {
  .top-prod__filter {
    max-width: none;
    padding-bottom: 15px;
    letter-spacing: -5px;
  }

  .top-prod__filter:after {
    display: block;
    content: " ";
    clear: both;
  }
}
@media (max-width: 767px) {
  .top-prod__filter {
    margin-bottom: -14px;
    padding-bottom: 30px;
  }
}

.top-prod__filter-row {
  padding: 0 0 22px 0;
}

.top-prod__filter-row:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1023px) {
  .top-prod__filter-row {
    display: inline-block;
    width: 50%;
    letter-spacing: normal;
    vertical-align: top;
  }

  .top-prod__filter-row:nth-child(even) .top-prod__filter-left {
    padding-right: 18px;
    text-align: right;
  }
}
@media (max-width: 767px) {
  .top-prod__filter-row {
    display: block;
    width: 100%;
    padding-bottom: 14px;
  }

  .top-prod__filter-row:nth-child(even) .top-prod__filter-left {
    padding-right: 0;
    text-align: left;
  }
}

.top-prod__filter-left {
  width: 30%;
  padding: 3px 0 0 0;
  font-size: 15px;
  color: #717171;
  float: left;
}

@media (max-width: 1023px) {
  .top-prod__filter-left {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .top-prod__filter-left {
    width: 38%;
    font-size: 14px;
  }
}

.top-prod__filter-right {
  width: 70%;
  font-size: 15px;
  color: #717171;
  float: right;
}

.top-prod__filter-right:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1023px) {
  .top-prod__filter-right {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .top-prod__filter-right {
    width: 62%;
  }
}

.top-prod__filter-left-text {
  padding-right: 5px;
}

.top-prod__filter-right-text {
  padding: 4px 0 0 0;
  float: right;
}

.top-prod__col {
  width: 45%;
  float: left;
}

.top-prod__col:nth-child(even) {
  width: 55%;
  text-align: right;
}

@media (max-width: 1023px) {
  .top-prod__col:nth-child(even) {
    text-align: left;
  }
}
@media (max-width: 1023px) {
  .top-prod__col {
    width: 100%;
    float: none;
  }
}

.top-prod__input-sm {
  display: inline-block;
  width: 90px;
  vertical-align: middle;
}

@media (max-width: 1023px) {
  .top-prod__input-sm {
    width: 100%;
  }
}

.top-prod__input-md {
  display: inline-block;
  width: 170px;
  vertical-align: middle;
}

@media (max-width: 1023px) {
  .top-prod__input-md {
    width: 100%;
  }
}

.top-prod__middle {
  padding: 20px 0 20px 0;
}

.top-prod__middle:after {
  display: block;
  content: " ";
  clear: both;
}

.top-prod__middle--upped {
  position: relative;
  padding-top: 0;
}

@media (max-width: 1279px) {
  .top-prod__middle--upped {
    padding-top: 15px;
  }
}

.top-prod__middle--upped .top-prod__middle-right {
  position: absolute;
  top: -29px;
  right: 0;
}

@media (max-width: 1279px) {
  .top-prod__middle--upped .top-prod__middle-right {
    position: static;
  }
}
@media (max-width: 1023px) {
  .top-prod__middle--upped {
    display: none;
  }
}

.top-prod__middle-left {
  float: left;
}

.top-prod__middle-right {
  float: right;
}

@media (max-width: 1023px) {
  .top-prod__middle .pagination {
    display: none;
  }
}
@media (max-width: 1023px) {
  .top-prod__table-block {
    margin: 0 -22px;
  }
}

.top-prod__table-block-heading {
  padding: 5px 15px 2px;
  border: 1px solid #e7e7e7;
  border-radius: 2px 2px 0 0;
  font-size: 15px;
  color: #717171;
  background: #f5f5f5;
}

.top-prod__table-block-heading:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 1023px) {
  .top-prod__table-block-heading {
    padding: 0 9px;
    border: none;
    background: #ffffff;
  }
}
@media (max-width: 767px) {
  .top-prod__table-block-heading {
    padding: 0 9px 15px;
    border-radius: 0;
  }
}

.top-prod__table-block-heading-left {
  float: left;
}

.top-prod__table-block-heading-right {
  float: right;
}

.top-prod__table-block-heading-text {
  display: inline-block;
  padding: 0 15px;
  vertical-align: middle;
}

.top-prod__table-block-heading-text:first-child {
  padding-left: 0;
}

@media (max-width: 767px) {
  .top-prod__table-block-heading-text {
    padding: 0 0 0 15px;
  }
}

.top-prod__table-block-heading-links {
  display: inline-block;
}

.top-prod__table-block-heading-link {
  margin-left: 45px;
}

.top-prod__table-block-heading-link [class*="icon-"] {
  position: relative;
  top: -2px;
  margin-right: 8px;
  fill: #ff7300;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .top-prod__table-block-heading-link [class*="icon-"] {
    margin-right: 2px;
  }
}

.top-prod__table-block-heading-link [class*="icon-"].icon-stroke {
  stroke: #ff7300;
}

.top-prod__table-block-heading-link:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .top-prod__table-block-heading-link {
    margin-left: 30px;
  }
}

.top-prod__table-block-heading-checkbox {
  display: inline-block;
  padding: 4px 0 0 0;
  vertical-align: middle;
}

.top-prod__bottom {
  padding: 20px 0 0 0;
}

.top-prod__bottom:after {
  display: block;
  content: " ";
  clear: both;
}

.top-prod__bottom-btn {
  width: auto;
  overflow: hidden;
}

.top-prod__bottom-pagination {
  margin: 0 0 0 30px;
  float: right;
}

.content-cols {
  padding-bottom: 70px;
}

.content-cols:after {
  display: block;
  content: " ";
  clear: both;
}

.content-cols--no-padding {
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .content-cols {
    padding-bottom: 27px;
  }
}

.content-cols--double {
  padding-right: 0;
  padding-left: 0;
}

.content-cols--double .content-main > * {
  padding-right: 30px;
  padding-left: 30px;
}

.content-cols--double .content-main .product-card__list {
  padding-right: 0;
  padding-left: 0;
}

.content-cols--double .sidebar {
  width: 16.6%;
  margin: 0;
}

.content-cols--double .sidebar--right {
  position: relative;
  left: -1px;
}

@media (max-width: 1280px) {
  .content-cols--double .sidebar {
    width: 20%;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .content-cols--double .sidebar {
    width: 20%;
  }
}
@media (max-width: 1023px) {
  .content-cols--double {
    padding-bottom: 0;
  }

  .content-cols--double .content-main > * {
    padding-right: 0;
    padding-left: 0;
  }

  .content-cols--double .sidebar {
    width: auto;
  }
}

.content-top {
  padding: 0 0 10px 0;
}

.content-top:after {
  display: block;
  content: " ";
  clear: both;
}

.content-top__left {
  float: left;
}

.content-top__right {
  float: right;
}

.content-main__max {
  max-width: 990px;
}

.content-main__top {
  padding-bottom: 34px;
}

.content-main__top:after {
  display: block;
  content: " ";
  clear: both;
}

@media (max-width: 767px) {
  .content-main__top {
    padding-bottom: 21px;
  }
}

.content-main__filter {
  float: left;
}

@media (max-width: 1250px) {
  .content-main__filter {
    padding-bottom: 15px;
    float: none;
  }
}

.content-main__filter--right {
  float: right;
}

.content-main__filter-text {
  display: inline-block;
  padding-right: 14px;
  font: 400 15px "ubuntu";
  color: #717171;
  vertical-align: middle;
}

.content-main__filter-select {
  display: inline-block;
  min-width: 172px;
  vertical-align: middle;
}

.content-main__view {
  float: right;
}

@media (max-width: 1250px) {
  .content-main__view {
    float: none;
  }
}

.content-main__view .pagination {
  float: right;
}

@media (max-width: 767px) {
  .content-main__view {
    display: none;
  }
}

.content-main__products {
  margin-right: 50px;
  float: left;
}

.content-main__products .content-main__filter-select {
  min-width: 72px;
}

@media (max-width: 1023px) {
  .content-main {
    width: auto;
    padding-bottom: 36px;
    float: none;
  }

  .product-card__list--fav {
    padding-bottom: 38px;
  }

  #lazyload .content-main {
    padding-bottom: 0;
  }

  #lazyload.content-cols {
    padding-bottom: 38px;
  }

  .system-nav-orange {
    padding-bottom: 38px;
  }
}
@media (max-width: 767px) {
  .content-main {
    padding-bottom: 19px;
  }

  #lazyload .content-main {
    padding-bottom: 0;
  }

  #lazyload.content-cols {
    padding-bottom: 38px;
  }

  .system-nav-orange {
    padding-bottom: 38px;
  }
}

.content-catalog {
  min-height: 611px;
  margin-bottom: 40px;
  font-size: 0;
  background: #ffffff;
}

@media (max-width: 1280px) {
  .content-catalog {
    min-height: auto;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .content-catalog {
    min-height: auto;
  }
}
@media (max-width: 1023px) {
  .content-catalog {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .content-catalog {
    margin-bottom: 25px;
  }
}

.content-catalog--white {
  background: #ffffff;
}

.content-catalog--last {
  margin-bottom: 0;
}

.content-catalog__empty {
  display: inline-block;
  width: 320px;
  vertical-align: top;
}

@media (max-width: 1280px) {
  .content-catalog__empty {
    width: 240px;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .content-catalog__empty {
    width: 240px;
  }
}
@media (max-width: 1023px) {
  .content-catalog__empty {
    display: none;
  }
}

.content-catalog__main {
  display: inline-block;
  width: calc(100% - 320px);
  padding-left: 30px;
  vertical-align: top;
}

@media (max-width: 1280px) {
  .content-catalog__main {
    width: calc(100% - 240px);
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .content-catalog__main {
    width: calc(100% - 240px);
  }
}
@media (max-width: 1023px) {
  .content-catalog__main {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 1280px) {
  .full-content .content-catalog {
    margin-bottom: 12px;
  }

  .full-content .content-catalog__main {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .full-content .content-catalog {
    margin-bottom: 12px;
  }

  .full-content .content-catalog__main {
    width: 100%;
    padding: 0;
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 120;
  display: none;
  background: rgba(0, 0, 0, 0.5);
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 121;
  display: none;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #ffffff;
}

.popup__top {
  padding: 30px 75px 30px 35px;
}

.popup__top:after {
  display: block;
  content: " ";
  clear: both;
}

.popup__title {
  display: block;
  font-size: 25px;
  font-weight: 700;
}

.popup__close {
  position: absolute;
  top: 25px;
  right: 35px;
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid #bebebe;
  border-radius: 50%;
  transition: opacity 0.3s;
}

.popup__close:before,
.popup__close:after {
  position: absolute;
  top: 15px;
  left: 10px;
  display: block;
  width: 12px;
  height: 2px;
  content: "";
  background: #bebebe;
}

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

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

.popup__close:hover {
  opacity: 0.7;
}

.popup-cities {
  width: 640px;
  max-width: 100%;
}

.popup-cities__main {
  height: 348px;
  padding: 0 34px 34px;
}

.popup-cities__main-inner {
  height: 100%;
  -webkit-box-shadow: inset 1px 1px 3px #dbdbdb;
  box-shadow: inset 1px 1px 3px #dbdbdb;
  background: #f6f6f6;
  overflow: hidden;
}

.popup-cities__list {
  padding: 5px 0;
}

.popup-cities__list-item {
  padding: 6px 22px;
  font-size: 16px;
}

.popup-cities__list-link {
  color: #404041;
}

.popup-cities__list-link:hover {
  color: #0075b9;
}

.delivery_ico_moscow {
  display: inline-block;
  width: 137px;
  height: 137px;
  margin: 0 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/bitrix/images/dostavka/moscow.png");
  float: left;
}

.oplata_info_box:not(:first-child) {
  margin-top: 85px;
}

.oplata_info {
  padding: 50px;
  border: 1px solid #e7e7e7;
}

.oplata_info_payment {
  margin-top: 50px;
}

.oplata_ico_n {
  display: inline-block;
  width: 137px;
  height: 137px;
  margin: 0 50px 0 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/bitrix/images/oplata/note.png");
  float: left;
}

.oplata_ico_c {
  display: inline-block;
  width: 137px;
  height: 137px;
  margin: 0 50px 0 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/bitrix/images/oplata/cards.png");
  float: left;
}

.delivery_ico_opt {
  display: inline-block;
  width: 137px;
  height: 137px;
  margin: 0 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/bitrix/images/dostavka/car.png");
  float: left;
}

.delivery_info_r_picture {
  display: inline-block;
  float: left;
}

.delivery_ico_r {
  display: block;
  width: 137px;
  height: 137px;
  margin: 0 50px 45px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/bitrix/images/dostavka/map_r.png");
}

.delivery_ico_r_sdek img {
  padding: 4px 4px;
  border: 1px solid #e7e7e7;
}

.delivery_ico_r_shiptor img {
  padding: 4px 4px;
  border: 1px solid #e7e7e7;
}

.delivery_ico_r_sdek {
  display: block;
  width: 137px;
  height: 54px;
  margin: 0 50px 85px;
  background-repeat: no-repeat;
  background-size: contain;
}

.delivery_ico_r_shiptor {
  display: block;
  width: 137px;
  height: 54px;
  margin: 0 50px 45px;
  background-repeat: no-repeat;
  background-size: contain;
}

#maps {
  display: inline-block;
  width: 660px;
  height: 352px;
  margin-top: -292px;
  margin-bottom: 65px;
  line-height: 1.2;
  text-align: center;
  background-repeat: no-repeat;
  background-size: contain;
  float: right;
}

.service_info {
  margin: 60px 0 60px;
  text-align: center;
}

.dropshipping_info_title_ser {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  color: #626262;
}

.dropshipping_info_form_row {
  margin-bottom: 25px;
}

.corporate_clients-bottom__item {
  display: inline-block;
  width: 25%;
  padding: 0 15px;
  vertical-align: top;
}

.corporate_clients-another-item__text {
  display: block;
  font-size: 15px;
  text-align: center;
  color: #717171;
}

.dropshipping_info_form_name {
  font-size: 15px;
  line-height: 1.467;
  text-align: left;
  color: #717171;
}

.dropshipping_info_form_input {
  width: 100%;
}

.dropshipping_marker {
  font-size: 15px;
  text-decoration: none;
  color: #ff7300;
}

.dropshipping_info_form_input input {
  border: none;
}

.delivery_info {
  margin-bottom: 33px;
  padding: 60px 0;
  border: 1px solid #e7e7e7;
}

.dropshipping_info_form_background {
  padding-top: 30px;
  padding-right: 50px;
  padding-bottom: 30px;
  padding-left: 50px;
  border-radius: 8px;
  background-color: #f7f7f7;
}
@media (max-width: 1023px) {
  .dropshipping_info_form_background {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .dropshipping_info_form_background {
    margin-right: 0;
    padding-right: 10px;
    padding-left: 10px;
    border-radius: 0 0 8px 8px;
  }
}

.dropshipping_info_form_background:first-child {
  margin-right: 30px;
}

.cols__item-48 {
  width: 48.34%;
  float: left;
}

.dropshipping_info_forms {
  margin: 0;
  padding: 30px 0;
}

.dropshipping_info {
  margin-bottom: 33px;
  padding: 50px 40px;
  border: 1px solid #e7e7e7;
}

.dropshipping_info_important {
  padding: 30px 40px;
  border: 1px solid #ff7300;
  border-radius: 6px;
  font-size: 18px;
  color: #626262;
}

.dropshipping_info_important img {
  margin-right: 13px;
  float: left;
}

.dropshipping_info_important p:not(:first-child) {
  margin-left: 40px;
}

#maps2 {
  width: 100%;
  height: 572px;
  background-repeat: no-repeat;
  background-size: contain;
}

.delivery_info_r {
  margin-bottom: 33px;
  padding: 60px 0;
  border: 1px solid #e7e7e7;
}

.delivery_title_moscow,
.delivery_title_opt,
.delivery_title_r {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  color: #626262;
}

.delivery_text_moscow {
  margin-left: 135px;
  font-size: 15px;
  line-height: 1.467;
  text-align: left;
  color: #717171;
}

.oplata_text_moscow {
  margin-top: 32px;
  font-size: 15px;
  line-height: 1.467;
  text-align: left;
  color: #717171;
}

.oplata_info_roznica {
  height: 743px;
  padding: 35px 30px;
  border: 1px solid #e7e7e7;
}

.oplata_info_roznic_ico {
  width: 120px;
  height: 45px;
  margin-right: 18px;
  padding: 10px 10px;
  border: 1px solid #e7e7e7;
}

.oplata_info_roznic_ico:nth-child(4n + 6) {
  margin-right: 0;
}

.oplata .cols {
  margin: 50px 0 20px 0;
}

.delivery_text_opt {
  display: inline-block;
  font-size: 15px;
  line-height: 1.467;
  text-align: left;
  color: #717171;
}

.delivery_text_r {
  margin-left: 235px;
  font-size: 15px;
  line-height: 1.467;
  text-align: left;
  color: #717171;
}

.delivery__ico_1 {
  height: 90px;
  margin-top: 32px;
  padding: 30px 0;
  border: 1px solid #e7e7e7;
  text-align: center;
}

.oplata-bottom__left {
  margin-top: 80px;
  text-align: center;
}

.oplata__ico {
  padding: 58px 0;
  border: 1px solid #e7e7e7;
  text-align: center;
}

.corporate_clients__ico_1 {
  margin-bottom: 32px;
  text-align: center;
}

.delivery_mobaile_text {
  display: none;
}

.dropshipping_info_text,
corporate_clients_info_text {
  font-size: 15px;
  line-height: 1.467;
  text-align: left;
  color: #717171;
}

.dropshipping__ico_1,
.corporate_clients__ico_1,
.service_info__ico_1 {
  margin-bottom: 12px;
  text-align: center;
}

.dropshipping__ico_1 img {
  height: 200px;
}

.dropshipping_info_services {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.875;
  text-align: left;
  color: #717171;
  vertical-align: middle;
}

.dropshipping_info_services img {
  margin-right: 20px;
  float: left;
}

.dropshipping-bottom__btn {
  padding-top: 20px;
  padding-right: 10px;
  padding-bottom: 20px;
  padding-left: 10px;
  font-size: 17px;
}
@media(max-width: 767px) {
  .dropshipping-bottom__btn {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 14px;
  }
}

.dropshipping_mobaile_text {
  display: none;
}

.dropshipping_info_forms_mobail {
  display: none;
}

.wholesale_buy_background {
  position: relative;
  height: auto;
  padding-bottom: 40px;
  padding-left: 30px;
  color: #ffffff;
  background-size: cover;
  background-position: center 0;
  background-color: #3ee059;
  background-image: url("/bitrix/images/optovye-zakupki/grass.png");
}

.wholesale_buy_background .breadcrumbs__link {
  color: #ffffff;
}

.wholesale_buy .dropshipping-bottom__left {
  text-align: center;
}

.wholesale_buy_line {
  position: absolute;
  right: 27%;
  bottom: 220px;
  z-index: 9999;
  width: 40%;
  height: 2px;
  background-size: cover;
  background-position: center 0;
  background-image: url("/bitrix/images/optovye-zakupki/line.png");
}

.wholesale_buy_clients img {
  margin-right: 40px;
  float: left;
}

.wholesale_clients_info_offers .dropshipping_info_title_ser,
.wholesale_buy_offers .dropshipping_info_title_ser {
  margin: 25px 0;
}

.wholesale_clients_info_offers span {
  text-transform: uppercase;
}

.wholesale_clients_info_offers {
  font-size: 15px;
  line-height: inherit;
  text-align: left;
  color: #717171;
}

.wholesale_buy_offers {
  margin-top: 35px;
  margin-left: 30px;
  padding: 30px 30px 20px 30px;
  border: 1px solid #e7e7e7;
  font-size: 15px;
  line-height: 2;
  text-align: left;
  color: #717171;
}

.wholesale_clients_info_offers p {
  padding: 5px 0 2px;
}

.wholesale_clients_info_offers ol {
  line-height: 2;
  list-style-type: none; /* Убираем исходные маркеры */
  counter-reset: num; /* Задаём имя счетчика */
}

.wholesale_clients_info_offers li:before {
  display: inline-block;

  /* margin-right: 25px; */
  width: 25px;
  color: #ff7300;
  content: counter(num) ". "; /* Выводим число */
  counter-increment: num;
}

.wholesale_buy_offers p {
  padding: 5px 0 2px;
}

.wholesale_buy_offers ol {
  list-style-type: none; /* Убираем исходные маркеры */
  counter-reset: num; /* Задаём имя счетчика */
}

.wholesale_buy_offers li:before {
  display: inline-block;
  width: 25px;
  padding-right: 25px;
  color: #ff7300;
  content: counter(num) ". "; /* Выводим число */
  counter-increment: num;
}

.wholesale_buy_clients {
  margin-top: 35px;
  margin-left: 30px;
  padding: 30px 30px 10px 30px;
  border: 1px solid #e7e7e7;
  font-size: 20px;
  line-height: 1.4;
  text-align: left;
  color: #717171;
}

.wholesale_buy_text {
  margin-top: 50px;
  font-size: 18px;
  line-height: 1.389;
  text-align: center;
  color: #ffffff;
}

.wholesale_buy_text p {
  margin-bottom: 40px;
}

.wholesale_buy .dropshipping-another-item__text {
  font-size: 16px;
  color: #ffffff;
}

.wholesale_buy_title {
  font-size: 60px;
  font-weight: 700;
  line-height: 0.4;
  text-align: center;
  color: #ffffff;
}

.joint_buy_title {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #626262;
}

/* Базовый контейнер табов */

.tabs {
  min-width: 280px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}
@media(max-width: 767px) {
  .tabs {
    border-radius: 8px 8px 0 0;
    overflow: hidden;
  }
}

/* Стили секций с содержанием */

.tabs > section {
  display: none;
}

.tabs > section > p {
  margin: 0 0 5px;
  line-height: 1.5;
  color: #383838;

  /* прикрутим анимацию */
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

/* Описываем анимацию свойства opacity */

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Прячем чекбоксы */

.tabs > input {
  position: absolute;
  display: none;
}

/* Стили переключателей вкладок (табов) */

.tabs > label {
  display: inline-block;
  padding-top: 15px !important;
  padding-right: 10px !important;
  padding-bottom: 15px !important;
  padding-left: 10px !important;
  font-weight: 400;
  text-align: left;
  color: #ffffff;
  background: #ff7300;
  opacity: 0.7;
}
.tabs > label br {
  display: none;
}
@media (max-width: 767px) {
  .tabs > label {
    width: 50% !important;
    font-size: 12px !important;
  }
}

.tabs > label:before {
  margin-right: 10px;
}

/* Изменения стиля переключателей вкладок при наведении */

.tabs > label:hover {
  color: #ffffff;
  cursor: pointer;
}

/* Стили для активной вкладки */

.tabs > input:checked + label {
  opacity: 1;
}

/* Активация секций с помощью псевдокласса :checked */

#tab1:checked ~ #content-tab1,
#tab2:checked ~ #content-tab2,
#tab3:checked ~ #content-tab3,
#tab4:checked ~ #content-tab4 {
  display: block;
}

/* Убираем текст с переключателей и оставляем иконки на малых экранах */

.joint_buy_info {
  margin-top: 10px;
}

.joint_buy_info .dropshipping-bottom__item {
  width: 33.33%;
  height: 360px;
  padding: 30px 20px;
  border: 1px solid #e7e7e7;
}

.ordering .checkbox,
.ordering .radio {
  display: none;
}

.ordering .checkbox-custom,
.ordering .radio-custom {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #c7c7c7;
  border-radius: 3px;
}

.ordering .checkbox-custom,
.ordering .radio-custom,
.ordering .label {
  display: inline-block;
  vertical-align: middle;
}

.ordering .warning {
  padding: 10px;
  border: 1px solid #ff7300;
  border-radius: 5px;
  font-size: 10px;
  color: #717171;
}

.ordering .profile__input-row {
  padding: 0 0 15px 0;
  font-size: 15px;
}

.ordering .cols__item-48 .cols__item-60 {
  width: 60%;
  padding: 0;
  float: left;
}

.ordering .cols__item-48 .cols__item-60 .profile__input-box {
  width: 45%;
}

.ordering ul {
  list-style: none;
}

.ordering ul li:before {
  position: relative;
  left: -5px;
  margin-left: 4px;
  content: "-";
}

.ordering .cols__item-48 .cols__item-40 {
  width: 40%;
  padding: 0;
  float: left;
}

.ordering .warning p {
  padding-bottom: 5px;
}

.ordering_promo_btn input {
  width: 180px !important;
  margin-right: 50px;
  padding: 22px 15px 22px !important;
  border: 1px solid #ff7300 !important;
  float: left;
}

.ordering_important {
  margin-bottom: 30px;
}

.ordering_table_text {
  font-size: 14px;
  line-height: 1.214;
  text-align: left;
  color: #717171;
}

.ordering_table_price {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.375;
  text-align: right;
  color: #404041;
}

.ordering_dop {
  margin-top: 45px;
}

.ordering_dop table td {
  padding: 10px 14px 11px;
  border-right: none;
  border-bottom: 1px solid #e7e7e7;
  border-left: none;
  font: 400 15px/22px "ubuntu";
  color: #717171;
}

.ordering_basket_delete {
  border: 1px solid #b5b5b5;
  border-radius: 20px;
  font-size: 16px;
  color: #b5b5b5;
}

.ordering_table_name {
  font-size: 14px;
  line-height: 1.214;
  text-align: left;
  color: #404041;
}

.ordering_dop table {
  display: table;
  border: none;
  border-collapse: separate;
  border-spacing: 2px;
}

.ordering_important p {
  display: inline-block;
  padding: 5px 0;
  font-size: 18px;
  color: #717171;
  vertical-align: middle;
}

.ordering_important img {
  margin-right: 13px;
  float: left;
}

.ordering .label {
  margin-right: 70px;
}

.ordering_profile__input-label {
  padding-top: 8px;
  padding-right: 15px;
  color: #717171;
  float: left;
}

.ordering textarea,
.ordering .input {
  display: block;
  width: 100%;
  height: 39px;
  padding: 5px 20px;
  border: none;
  border-radius: 5px;
  font: 400 16px "ubuntu";
  color: #404041;
  outline: none;
  background-color: #f7f7f7;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.ordering .profile__input-box {
  width: 66.66%;
  padding-left: 15px;
  text-align: left;
  float: right;
}

.ordering .checkbox:checked + .checkbox-custom:before,
.ordering .radio:checked + .radio-custom:before {
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  display: block;
  border-radius: 2px;
  background-color: #ff7300;
  content: "";
}

.ordering .radio-custom,
.ordering .radio:checked + .radio-custom:before {
  border-radius: 50%;
}

/* Изменяем внутренние отступы
*  переключателей для малых экранов
*/

@media (max-width: 1280px) {
  .delivery__ico_1 img {
    width: 100%;
  }

  .joint_buy .cols__item-48 {
    width: 47.9%;
    float: left;
  }

  .delivery_info .delivery-bottom__item {
    display: inline-block;
    width: 18%;
    padding-right: 20px;
    vertical-align: top;
  }

  .wholesale_buy_line {
    right: 27%;
    bottom: 220px;
    width: 40%;
    height: 2px;
    background-size: cover;
  }

  .delivery_ico_opt {
    display: inline-block;
    width: 100px;
    height: 100px;
    margin: 0 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("/bitrix/images/dostavka/car.png");
    float: left;
  }

  .delivery-bottom__item {
    display: inline-block;
    width: 33%;
    padding-right: 20px;
    vertical-align: top;
  }

  .oplata_info_roznic_ico {
    width: 90px;
    height: 45px;
    margin-right: 46px;
    padding: 10px 30px;
  }

  .oplata_info_roznic_ico:nth-child(4n + 6) {
    margin-right: 46px;
  }

  .oplata_info_roznic_ico:nth-child(3n + 2) {
    margin-right: 0;
  }

  .oplata_info_roznic_ico:nth-child(3n + 3) {
    margin-right: 46px;
  }

  #maps {
    width: 327px !important;
    height: 380px !important;
    margin-top: -330px;
  }

  .cols__item-48 {
    width: 46.8%;
    float: left;
  }
}
@media (max-width: 767px) {
  .delivery-bottom__item {
    display: inline-block;
    width: 30.33%;
    padding-right: 20px;
    vertical-align: top;
  }

  .joint_buy_title {
    margin-top: 0;
  }

  .joint_buy_info .dropshipping-bottom__item {
    width: 50%;
    height: 390px;
    padding: 30px 20px;
    border: 1px solid #e7e7e7;
  }

  .delivery_info .delivery__ico_1 img {
    width: 100%;
  }

  .delivery_info .delivery-bottom__item {
    display: inline-block;
    width: 25%;
    padding-right: 20px;
    vertical-align: top;
  }

  .wholesale_buy_title {
    font-size: 50px;
  }

  .wholesale_buy_text {
    margin-top: 50px;
    font-size: 14px;
    line-height: 1.389;
    text-align: center;
    color: #ffffff;
  }

  .wholesale_buy .wholesale_buy img {
    height: 100px;
  }

  .wholesale_buy_line {
    right: 27%;
    bottom: 196px;
    width: 40%;
    height: 2px;
    background-size: cover;
  }

  .wholesale_buy_clients img {
    margin-right: 40px;
    margin-bottom: 30px;
    float: left;
  }

  .oplata_info_roznic_ico {
    width: 130px;
    height: 50px;
    margin-right: 46px !important;
  }

  .oplata_info_roznic_ico:nth-child(4n + 6) {
    margin-right: 0 !important;
  }

  .oplata_info_roznic_ico:nth-child(4n + 4) {
    margin-right: 46px;
  }

  .oplata_info_roznic_ico:nth-child(3n + 2) {
    margin-right: 0;
  }

  .oplata__ico img {
    width: 60%;
  }

  .oplata_info_buyer .cols__item-48 {
    width: 100%;
    margin-bottom: 20px;
  }

  .dropshipping_mobaile_text {
    display: block;
    margin-top: 35px;
    font-size: 15px;
    line-height: 1.467;
    text-align: left;
    color: #404041;
  }

  .delivery-bottom__left {
    margin-left: 235px;
  }

  #maps {
    display: block;
    width: 100% !important;
    height: 380px;
    margin-top: 0;
    margin-bottom: 20px;
  }

  #maps2 {
    height: 275px;
  }

  .delivery_info_r {
    margin-bottom: 13px;
    padding: 20px 0;
  }

  .delivery_info {
    border-bottom: none;
  }
}
@media (max-width: 767px) {
  .delivery-bottom__item {
    width: 100%;
  }

  .joint_buy .cols__item-48 {
    width: 100%;
    float: left;
  }

  .joint_buy_info .dropshipping-bottom__item {
    width: 100%;
    height: 290px;
    margin-bottom: 30px;
    padding: 30px 20px;
    border: 1px solid #e7e7e7;
  }

  .service_info .dropshipping-another-item__text {
    display: block;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 15px;
    text-align: left;
    color: #717171;
  }

  .service_info__ico_1 {
    margin-bottom: 0;
    text-align: center;
  }

  .service_info {
    margin: 10px 0 80px;
    text-align: center;
  }

  .service_info .dropshipping-bottom__item {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0 15px;
    vertical-align: middle;
  }

  .service_info .service_info__ico_1 {
    margin-right: 20px;
    float: left;
  }

  .wholesale_buy_line {
    display: none;
  }

  .wholesale_buy_title {
    font-size: 35px;
  }

  .oplata_info_roznic_ico {
    width: 94px;
    height: 40px;
    margin-right: 46px !important;
  }

  .dropshipping-bottom__item {
    display: inline-block;
    width: 50%;
    margin-bottom: 70px;
    padding: 0 15px;
    vertical-align: top;
  }

  .oplata-bottom__left {
    margin-top: 80px;
    text-align: right;
  }

  .oplata_info_roznic_ico:nth-child(4n + 6) {
    margin-right: 46px !important;
  }

  .oplata_info_roznic_ico:nth-child(3n + 2) {
    margin-right: 0 !important;
  }

  .oplata_info {
    padding: 40px 20px;
    border: 1px solid #e7e7e7;
  }

  .oplata-bottom__left .delivery-bottom__item {
    width: 70%;
  }

  .oplata_info_box .delivery_text_moscow {
    margin-left: 100px;
  }

  .oplata_ico_n,
  .oplata_ico_c {
    width: 60px;
    height: 60px;
    margin: 0 20px;
  }

  .cols__item-48 {
    width: 100%;
  }

  .corporate_clients-bottom__item {
    display: inline-block;
    width: 50%;
    padding: 0 15px;
    vertical-align: top;
  }

  .dropshipping_info_forms_mobail {
    display: block;
  }

  .dropshipping_info_forms_desc {
    display: none;
  }

  .delivery_text_opt {
    margin-left: 130px;
  }

  .dropshipping_info_services_text {
    margin-bottom: 30px;
    margin-left: 57px;
  }

  .delivery_mobaile_text {
    display: block;
    font-size: 15px;
    line-height: 1.467;
    text-align: left;
    color: #404041;
  }

  .delivery_info {
    margin-bottom: 0;
    border-bottom: none;
    text-align: right;
  }

  .dropshipping_info {
    padding: 50px 0 10px;
  }

  #maps2 {
    height: 210px;
  }

  .delivery__ico_1 img {
    width: 70%;
  }

  .delivery_ico_r_sdek {
    width: 140px;
    margin: 0 20px 75px;
  }

  .delivery_ico_r_shiptor {
    width: 140px;
    margin: 0 20px 45px;
  }

  .delivery_ico_r_sdek img {
    padding: 10px 4px;
  }

  .delivery_text_r {
    margin-left: 186px;
  }

  #maps {
    height: 240px;
    margin-bottom: 20px;
  }

  .delivery_ico_r {
    width: 88px;
    height: 88px;
  }

  .delivery_ico_opt {
    width: 88px;
    height: 88px;
  }

  .delivery_ico_moscow {
    width: 88px;
    height: 88px;
    margin: 0 20px 200px;
  }

  .delivery__ico_1 {
    height: 110px;
  }

  .delivery_text_moscow {
    margin-left: 85px;
  }

  .delivery-bottom__left {
    margin-left: 135px;
  }
}
@media (max-width: 767px) {
  .mob-hidden {
    display: none !important;
  }
}

.content-left-indent {
  margin-left: -30px;
}

@media (max-width: 1023px) {
  .content-left-indent {
    margin-left: 0;
  }
}

/* Rich Code custom */

a:hover,
a:focus {
  text-decoration: none;
}

input.error {
  border: 1px #ff0000 solid;
}

label.error {
  font-size: 14px;
  color: #ff0000;
}

#modef {
  position: absolute;
  z-index: 500;
  width: 165px;
  padding: 10px 35px 10px 20px;
  font-size: 14px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  background: url("/bitrix/images/filter-popout-arrow.png") no-repeat scroll 94%
    50% #f6f7f7 !important;
  vertical-align: middle;
}

.header__sidebar-list-item .header-submenu {
  top: 0;
  padding: 10px 0;
}

.cut-long-name {
  margin: 0;
  padding: 0;
  border-bottom: none;
}

.header__sidebar-list-item .header__sidebar-link {
  padding-top: 9px;
  padding-right: 15px;
  padding-bottom: 10px;
  transition: padding 0.3s ease;
}

@media (min-width: 1024px) {
  .header__sidebar-list-item:hover .header__sidebar-link {
    padding-right: 10px;
    padding-left: 30px;
  }
}

.header__sidebar-list-item .header-submenu .header-submenu__col {
  padding: 0;
}

.header__sidebar-list-item .header-submenu .header-submenu__col a {
  display: block;
  padding: 8px 45px 8px 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1023px) {
  .header__sidebar-list-item .header-submenu {
    padding: 1px 0;
  }

  .header__sidebar-list-item .header-submenu .header-submenu__col a {
    padding-top: 10px;
    padding-right: 16px;
    padding-bottom: 10px;
    padding-left: 16px;
  }
}

.header__sidebar-list-item .header-submenu .header-submenu__col a:hover {
  color: #ffffff;
  background-color: #ff7300;
}

@media (min-width: 1024px) {
  .header__sidebar-list-item:hover .header-submenu .header-submenu__col a {
    animation: submenuOnHover 0.3s forwards;
  }
}

.custom-select__select {
  padding: 2px 12px 4px;
}

@keyframes submenuOnHover {
  100% {
    padding: 8px 30px;
  }
}

.dropshipping_info_text,
.corporate_clients_info_text {
  font-size: 15px;
  line-height: 1.467;
  text-align: left;
  color: #717171;
}

.dropshipping__ico_1 {
  margin-bottom: 12px;
  padding-right: 20px;
  text-align: center;
}

.delivery_text_opt p,
.delivery_text_r p {
  padding: 0 0 6px;
}

.dropshipping_info_important p {
  padding: 0 0 10px;
}

.dropshipping_info_title {
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #626262;
}

.oplata-bottom__left .delivery-bottom__item {
  display: inline-block;
  width: 20%;
  margin-right: 50px;
  vertical-align: top;
}

.wholesale_buy .dropshipping_info_forms {
  margin: 0;
  margin-left: 30px;
  padding: 30px 0;
}

.wholesale_buy_offers .dropshipping_info_title_ser {
  margin: 5px 0;
}

.joint_buy_info .dropshipping-bottom__left {
  border: 1px solid #e7e7e7;
}

.joint_buy_info .dropshipping-bottom__item:nth-child(n + 1):nth-child(-n + 3) {
  border-bottom: 1px solid #e7e7e7;
}

.wholesale_buy .cols__item-48 {
  width: 48.93%;
  float: left;
}

.dropshipping .dropshipping_info_title_ser {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  color: #626262;
}

.wholesale_buy .dropshipping_info_important {
  margin-left: 30px;
}

.joint_buy .cols__item-48 {
  width: 48.95%;
  float: left;
}

.oplata .cols__item-48 {
  width: 48%;
  float: left;
}

.oplata_info_buyer {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1280px) {
  .delivery__ico_1 img {
    width: 100%;
  }

  .delivery_info_r {
    margin-bottom: 0;
    padding: 60px 0 30px;
    border: 1px solid #e7e7e7;
    border-bottom: none;
  }

  .delivery_info .delivery-bottom__left {
    margin-left: 140px;
  }

  .delivery_ico_moscow {
    display: inline-block;
    width: 100px;
    height: 100px;
    margin: 0 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("/bitrix/images/dostavka/moscow.png");
    float: left;
  }

  .delivery_text_moscow {
    margin-left: 140px;
    font-size: 15px;
    line-height: 1.467;
    text-align: left;
    color: #717171;
  }

  .delivery__ico_1 {
    height: 80px;
    margin-top: 32px;
    padding: 10px 0;
    border: 1px solid #e7e7e7;
    text-align: center;
  }

  .dropshipping__ico_1 img {
    height: 116px;
  }

  .dropshipping_info {
    margin-bottom: 33px;
    padding: 50px 5px 50px 25px;
    border: 1px solid #e7e7e7;
  }

  .oplata .cols__item-48,
  .corporate_clients .cols__item-48 {
    width: 48.3%;
    float: left;
  }

  .oplata-bottom__left .delivery-bottom__item:first-child {
    margin-left: 130px;
  }

  .oplata_info_roznic_ico:nth-child(3n + 3) {
    margin-right: 16px;
  }

  .oplata_info_roznic_ico:nth-child(4n + 6) {
    margin-right: 16px;
  }

  .oplata_info_roznic_ico:nth-child(3n + 2) {
    margin-right: 0 !important;
  }

  .oplata__ico {
    padding: 48px 10px;
    border: 1px solid #e7e7e7;
    text-align: center;
  }

  .oplata-bottom__left .delivery-bottom__item {
    display: inline-block;
    width: 20%;
    margin-right: 10px;
    margin-left: 40px;
    vertical-align: top;
  }

  .oplata_info_roznica {
    height: 785px;
    padding: 35px 30px;
    border: 1px solid #e7e7e7;
  }

  .oplata-bottom__left .delivery-bottom__item .oplata__ico img {
    width: 90%;
  }

  .oplata .cols__item-48 {
    width: 48.3%;
    float: left;
  }

  .oplata_info_roznic_ico {
    width: 30.3%;
    margin-right: 16px;

    /* padding: 10px 30px;
         height: 45px; */
  }

  .wholesale_buy .cols__item-48 {
    width: 48.28%;
    float: left;
  }

  .wholesale_buy_line {
    position: absolute;
    right: 27%;
    bottom: 225px;
    z-index: 1;
    width: 45%;
    height: 2px;
    background-size: cover;
    background-position: center 0;
    background-image: url("/bitrix/images/optovye-zakupki/line.png");
  }

  .delivery_map_opt {
    height: 30px;
    margin-top: 0;
  }

  .service_info__ico_1 img {
    width: 40%;
  }

  .joint_buy .cols__item-48 {
    width: 48.3%;
    float: left;
  }

  .psevdo_h2,
  .psevdo_h2_v2,
  .psevdo_h2_v3,
  .psevdo_h2_v4,
  .psevdo_h2_v5,
  .psevdo_h2_v6 {
    padding: 0 0 17px;
  }

  .dropshipping-bottom__item {
    display: inline-block;
    width: 25%;
    padding: 0 15px;
    vertical-align: top;
  }
}
@media (max-width: 767px) {
  .wholesale_buy .dropshipping__ico_1 img {
    width: 60%;

    /* height: 100%; */
  }

  .oplata_ico_n,
  .oplata_ico_c {
    width: 16%;
  }

  .dropshipping__ico_1 {
    margin-bottom: 12px;
    padding-right: 0;
    text-align: center;
  }

  .dropshipping_info_services_text {
    line-height: 1.5;
  }

  .dropshipping_info_services {
    margin-bottom: 25px;
  }

  .delivery_text_moscow {
    margin-left: 140px;
  }

  .delivery_info .delivery-bottom__left {
    margin-left: 140px;
  }

  .delivery__ico_1 {
    height: 60px;
    margin-top: 32px;
    padding: 10px 0;
    border: 1px solid #e7e7e7;
    text-align: center;
  }

  .oplata-bottom__left .delivery-bottom__item:first-child {
    margin-left: 140px;
  }

  .oplata_info_roznica:first-child {
    height: 585px;
    padding: 35px 30px;
    border: 1px solid #e7e7e7;
  }

  .oplata-bottom__left .delivery-bottom__item {
    display: inline-block;
    width: 23%;
    margin-right: 10px;
    margin-left: 10px;
    vertical-align: top;
  }

  .oplata-bottom__left {
    margin-top: 50px;
    text-align: center;
  }

  .oplata__ico {
    padding: 18px 0;
    border: 1px solid #e7e7e7;
    text-align: center;
  }

  .wholesale_buy_clients,
  .wholesale_buy_offers,
  .wholesale_buy .dropshipping_info_forms,
  .wholesale_buy .dropshipping_info_important {
    margin-left: 0;
  }

  .wholesale_buy .cols__item-48 {
    width: 48.62%;
    float: left;
  }

  .service_info__ico_1 img {
    width: 40%;
  }

  .service_info .dropshipping__item .service_info__ico_1 img {
    width: 40%;
  }

  .delivery-bottom__item {
    display: inline-block;
    width: 30.33%;
    padding-right: 20px;
    vertical-align: top;
  }

  .delivery_info_r {
    margin-bottom: 13px;
    padding: 20px 0;
    border: none;
  }

  .delivery__ico_1 img {
    width: 60%;
  }

  .joint_buy_title {
    margin-top: 0;
  }

  .delivery_info .delivery__ico_1 img {
    width: 100%;
  }

  .delivery_info .delivery-bottom__item {
    display: inline-block;
    width: 25%;
    padding-right: 20px;
    vertical-align: top;
  }

  .wholesale_buy_title {
    font-size: 50px;
  }

  .wholesale_buy_text {
    margin-top: 50px;
    font-size: 14px;
    line-height: 1.389;
    text-align: center;
    color: #ffffff;
  }

  .wholesale_buy .wholesale_buy img {
    height: 100px;
  }

  .wholesale_buy_line {
    right: 25%;
    bottom: 250px;
    width: 50%;
    height: 2px;
    background-size: cover;
  }

  .oplata_info_roznic_ico {
    width: 23.1%;
    height: 50px;
    margin-right: 16px !important;
  }

  .oplata_info_roznic_ico:nth-child(3n + 2) {
    margin-right: 16px !important;
  }

  .oplata_info_roznic_ico:nth-child(4n + 6) {
    margin-right: 0 !important;
  }

  .oplata_info_roznic_ico:nth-child(4n + 4) {
    margin-right: 46px;
  }

  .oplata__ico img {
    width: 60%;
  }

  .oplata_info_buyer .cols__item-48 {
    width: 100%;
    margin-bottom: 20px;
  }

  .dropshipping_mobaile_text {
    display: block;
    margin-top: 35px;
    font-size: 15px;
    line-height: 1.467;
    text-align: left;
    color: #404041;
  }

  .delivery-bottom__left {
    margin-left: 235px;
  }

  #maps {
    display: block;
    width: 100% !important;
    height: 380px;
    margin-top: 0;
    margin-bottom: 20px;
  }

  #maps2 {
    height: 275px;
  }

  .delivery_info {
    border: 1px solid #e7e7e7;
    border-bottom: none;
  }

  .joint_buy_info .dropshipping-bottom__item {
    width: 50%;

    /* border-bottom: 1px solid #e7e7e7;
         border-left: none;
         border-right: none; */
    height: 290px;
    padding: 30px 20px;
    border: 1px solid #e7e7e7;

    /* margin-bottom: 30px; */
  }

  .joint_buy .cols__item-48 {
    width: 48.6%;
    float: left;
  }

  .joint_buy_info .dropshipping-bottom__left {
    border: none;
  }

  /* .joint_buy_info .dropshipping-bottom__item:nth-child(n+1):nth-child(-n+3) {
        border-top: none;
    }
    .joint_buy_info .dropshipping-bottom__item:nth-child(3n) {
      border-right: none;
    }
    .joint_buy_info .dropshipping-bottom__left {
        border: none;
    } */

  .delivery_map_opt {
    display: block;
    width: 100%;

    /* height: 380px; */
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .service_info .dropshipping__item .service_info__ico_1 img {
    width: 80%;
  }

  .oplata .cols__item-48,
  .corporate_clients .cols__item-48 {
    width: 100%;
    float: left;
  }

  .oplata_info_roznica:first-child {
    height: 485px;
    padding: 35px 30px;
    border: 1px solid #e7e7e7;
  }

  .wholesale_buy .dropshipping__ico_1 img {
    width: 50%;

    /* height: 100px; */
  }

  .service_info {
    margin: 5px 0 30px;
    text-align: center;
  }

  .service_info .dropshipping-another-item__text {
    display: block;
    margin-top: 10px;
    padding-top: 20px;
    font-size: 15px;
    text-align: left;
    color: #717171;
  }

  .delivery-bottom__item {
    display: inline-block;
    width: 20%;
    margin-right: 20px;
    vertical-align: top;
  }

  .wholesale_buy_title {
    font-size: 35px;
  }

  #maps {
    margin-top: 20px;
  }

  .joint_buy .cols__item-48 {
    width: 100%;
    float: left;
  }

  .joint_buy_info .dropshipping-bottom__item {
    width: 100%;
    height: 290px;
    margin-bottom: 30px;
    padding: 30px 20px;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid #e7e7e7;
    border-left: none;
  }

  .joint_buy_info .dropshipping-bottom__left {
    margin-right: -22px;
    margin-left: -20px;
  }

  .oplata-bottom__left {
    margin-top: 80px;
    text-align: right;
  }

  .oplata_info_roznic_ico:nth-child(4n + 6) {
    margin-right: 46px !important;
  }

  .oplata_info_roznic_ico:nth-child(3n + 2) {
    margin-right: 0 !important;
  }

  .oplata_info {
    margin-right: -22px;
    margin-left: -20px;
    padding: 40px 20px;
    border-top: 1px solid #e7e7e7;
    border-right: none;
    border-bottom: 1px solid #e7e7e7;
    border-left: none;
  }

  .oplata-bottom__left .delivery-bottom__item {
    width: 70%;
  }

  .oplata_info_box .delivery_text_moscow {
    margin-left: 100px;
  }

  .oplata_ico_n,
  .oplata_ico_c {
    width: 60px;
    height: 60px;
    margin: 0 20px;
  }

  .cols__item-48 {
    width: 100%;
    float: left;
  }

  .corporate_clients-bottom__item {
    display: inline-block;
    width: 50%;
    padding: 0 15px;
    vertical-align: top;
  }

  .wholesale_buy_background .dropshipping-bottom__item {
    display: inline-block;
    width: 100%;
    margin-bottom: 70px;
    padding: 0 15px;
    vertical-align: top;
  }

  .wholesale_buy_background .dropshipping-bottom__item .dropshipping__ico_1 {
    padding-right: 0;
    float: left;
    vertical-align: middle;
  }

  .wholesale_buy_background {
    margin-right: -22px;
    margin-left: -22px;
    padding: 40px 20px 0;
  }

  .wholesale_buy .dropshipping-another-item__text {
    padding-top: 40px;
    font-size: 16px;
    color: #ffffff;
  }

  .dropshipping_info_title_ser {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    color: #626262;
  }

  .dropshipping_info_form_row {
    margin-bottom: 25px;
  }

  .dropshipping_info_forms_desc {
    display: none;
  }

  .corporate_clients-another-item__text {
    display: block;
    font-size: 15px;
    text-align: center;
    color: #717171;
  }

  .dropshipping_info_form_name {
    font-size: 15px;
    line-height: 1.467;
    text-align: left;
    color: #717171;
  }

  .dropshipping_info_form_input {
    width: 100%;
  }

  .dropshipping_marker {
    font-size: 15px;
    text-decoration: none;
    color: #ff7300;
  }

  .dropshipping_info_form_input input {
    border: none;
  }

  .delivery_info {
    margin-right: -22px;
    margin-bottom: 0;
    margin-left: -20px;
    padding: 60px 0;
    border-top: 1px solid #e7e7e7;
    border-right: none;
    border-bottom: none;
    border-left: none;
    text-align: right;
  }

  .dropshipping_info_forms {
    margin: 0;
    padding: 30px 0;
  }

  .dropshipping_info {
    margin-right: -22px;
    margin-bottom: 33px;
    margin-left: -20px;
    padding: 50px 20px 10px;
    border-top: 1px solid #e7e7e7;
    border-right: none;
    border-bottom: none;
    border-left: none;
  }

  .dropshipping_info_important {
    padding-top: 20px;
    padding-right: 15px;
    padding-bottom: 20px;
    padding-left: 15px;
    border: 1px solid #ff7300;
    font-size: 18px;
    color: #626262;
  }

  .dropshipping_info_important img {
    margin-right: 13px;
    float: left;
  }

  .dropshipping_info_important p:not(:first-child) {
    margin-left: 40px;
  }

  #maps2 {
    width: 100%;
    height: 292px;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .delivery_info_r {
    margin-bottom: 33px;
    padding: 20px 0;
  }

  .delivery_title_moscow,
  .delivery_title_opt,
  .delivery_title_r {
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    color: #626262;
  }

  .delivery_text_moscow {
    margin-left: 85px;
    font-size: 15px;
    line-height: 1.467;
    text-align: left;
    color: #717171;
  }

  .oplata_text_moscow {
    margin-top: 45px;
    font-size: 15px;
    line-height: 1.467;
    text-align: left;
    color: #717171;
  }

  .oplata_info_roznica {
    height: 673px;
    padding: 25px 30px;
    border: 1px solid #e7e7e7;
  }

  .oplata_info_roznic_ico {
    width: 94px;
    height: 45px;
    margin-right: 48px;
    padding: 10px 10px;
    border: 1px solid #e7e7e7;
  }

  .oplata .cols {
    margin: 50px 0 20px 0;
  }

  .delivery_info .delivery-bottom__item {
    display: inline-block;
    width: 100%;
    padding-right: 20px;
    vertical-align: top;
  }

  .delivery_text_opt {
    margin-left: 186px;
  }

  .dropshipping_info_services_text {
    margin-bottom: 30px;
    margin-left: 57px;
  }

  .dropshipping-bottom__item {
    display: inline-block;
    width: 50%;
    margin-bottom: 70px;
    padding: 0 15px;
    vertical-align: top;
  }

  .delivery_mobaile_text {
    display: block;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.467;
    text-align: left;
    color: #404041;
  }

  .delivery_info_r .psevdo_h2_v6 {
    margin-bottom: 20px;
  }

  .delivery__ico_1 img {
    width: 70%;
  }

  .delivery_ico_r_sdek {
    width: 140px;
    margin: 0 20px 75px;
  }

  .delivery_ico_r_shiptor {
    width: 140px;
    margin: 0 20px 45px;
  }

  .delivery_ico_r_sdek img {
    padding: 10px 4px;
  }

  .delivery_text_r {
    margin-left: 186px;
  }

  .delivery_map_opt {
    height: 240px;
  }

  .delivery_ico_r {
    width: 88px;
    height: 88px;
  }

  .delivery_ico_opt {
    width: 88px;
    height: 88px;
  }

  .delivery_ico_moscow {
    width: 88px;
    height: 88px;
    margin: 0 20px 200px;
  }

  .delivery-bottom__left {
    margin-left: 125px;
  }

  .delivery__ico_1 {
    height: 90px;
    margin-top: 32px;
    padding: 30px 40px;
    border: 1px solid #e7e7e7;
    border-top: 1px solid #e7e7e7;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .joint_buy_info .dropshipping-bottom__item {
    width: 100%;
    height: 290px;
    margin-bottom: 30px;
    padding: 30px 20px;
    border: 1px solid #e7e7e7;
    border-right: none;
    border-bottom: 1px solid #e7e7e7;
    border-left: none;
  }

  .joint_buy .cols__item-48 {
    width: 48.6%;
    float: left;
  }

  .joint_buy_info
    .dropshipping-bottom__item:nth-child(n + 1):nth-child(-n + 3) {
    border-top: none;
  }

  .joint_buy_info .dropshipping-bottom__item:nth-child(3n) {
    border-right: none;
  }

  .joint_buy_info .dropshipping-bottom__left {
    border: none;
  }
}
@media (max-width: 767px) {
  .delivery-bottom__item {
    display: inline-block;
    width: 20%;
    margin-right: 0;
    vertical-align: top;
  }

  .delivery_info .delivery-bottom__left {
    margin-left: 130px;
  }

  .wholesale_buy .cols__item-48 {
    width: 100%;
    float: left;
  }

  .wholesale_buy_title {
    font-size: 35px;
  }

  #maps {
    margin-top: 20px;
  }

  .joint_buy .cols__item-48 {
    width: 100%;
    float: left;
  }

  .joint_buy_info .dropshipping-bottom__item {
    width: 100%;
    height: 290px;
    margin-bottom: 30px;
    padding: 30px 20px;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid #e7e7e7;
    border-left: none;
  }

  .joint_buy_info .dropshipping-bottom__left {
    margin-right: -22px;
    margin-left: -20px;
  }

  .oplata-bottom__left {
    margin-top: 80px;
    text-align: right;
  }

  .oplata_info_roznic_ico:nth-child(4n + 6) {
    margin-right: 16px !important;
  }

  .oplata_info_roznic_ico:nth-child(3n + 2) {
    margin-right: 0 !important;
  }

  .oplata_info {
    margin-right: -22px;
    margin-left: -20px;
    padding: 40px 20px;
    border-top: 1px solid #e7e7e7;
    border-right: none;
    border-bottom: 1px solid #e7e7e7;
    border-left: none;
  }

  .oplata_info_box .delivery_text_moscow {
    margin-left: 130px;
  }

  .oplata-bottom__left .delivery-bottom__item:first-child {
    margin-left: 130px;
  }

  .oplata-bottom__left .delivery-bottom__item {
    display: inline-block;
    width: 23%;
    margin-right: 10px;
    margin-left: 130px;
    vertical-align: top;
  }

  .oplata_ico_n,
  .oplata_ico_c {
    width: 90px;
    height: 90px;
    margin: 0 20px;
  }

  .cols__item-48 {
    width: 100%;
    float: left;
  }

  .corporate_clients-bottom__item {
    display: inline-block;
    width: 50%;
    padding: 0 15px;
    vertical-align: top;
  }

  .wholesale_buy_background .dropshipping-bottom__item {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
    padding: 0 20px 0 0;
    vertical-align: top;
  }

  .wholesale_buy_background .dropshipping-bottom__item .dropshipping__ico_1 {
    margin-bottom: 0;
    padding-right: 30px;
    float: none;
  }

  .wholesale_buy .dropshipping-another-item__text {
    padding-top: 0;
    font-size: 16px;
    text-align: left;
    color: #ffffff;
  }

  .dropshipping_info_title_ser {
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    color: #626262;
  }

  .dropshipping_info_form_row {
    margin-bottom: 25px;
  }

  .dropshipping_info_forms_desc {
    display: none;
  }

  .corporate_clients-another-item__text {
    display: block;
    font-size: 15px;
    text-align: center;
    color: #717171;
  }

  .dropshipping_info_form_name {
    font-size: 15px;
    line-height: 1.467;
    text-align: left;
    color: #717171;
  }

  .dropshipping_info_form_input {
    width: 100%;
  }

  .dropshipping_marker {
    font-size: 15px;
    text-decoration: none;
    color: #ff7300;
  }

  .dropshipping_info_form_input input {
    border: none;
  }

  .delivery_info {
    margin-right: -22px;
    margin-bottom: 0;
    margin-left: -20px;
    padding: 60px 0;
    border-top: 1px solid #e7e7e7;
    border-right: none;
    border-bottom: none;
    border-left: none;
    text-align: right;
  }

  .dropshipping_info_forms {
    margin: 0;
    padding: 30px 0;
  }

  .dropshipping_info {
    margin-right: -22px;
    margin-bottom: 0;
    margin-left: -20px;
    padding: 50px 20px 0;
    border-top: 1px solid #e7e7e7;
    border-right: none;
    border-bottom: none;
    border-left: none;
  }

  .dropshipping_info_important img {
    margin-right: 13px;
    float: left;
  }

  .dropshipping .dropshipping_info_forms {
    margin: 0;
    padding: 0 0;
  }

  .dropshipping_info_important p:not(:first-child) {
    margin-left: 40px;
  }

  #maps2 {
    width: 100%;
    height: 292px;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .delivery_info_r {
    margin-bottom: 33px;
    padding: 20px 0;
  }

  .delivery_title_moscow,
  .delivery_title_opt,
  .delivery_title_r {
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    color: #626262;
  }

  .delivery_text_moscow {
    margin-left: 85px;
    font-size: 15px;
    line-height: 1.467;
    text-align: left;
    color: #717171;
  }

  .oplata_text_moscow {
    margin-top: 45px;
    font-size: 15px;
    line-height: 1.467;
    text-align: left;
    color: #717171;
  }

  .oplata_info_roznica {
    height: 673px;
    padding: 25px 30px;
    border: 1px solid #e7e7e7;
  }

  .oplata_info_roznic_ico {
    width: 30.33%;
    height: 45px;
    margin-right: 48px;
    padding: 10px 10px;
    border: 1px solid #e7e7e7;
  }

  .oplata .cols {
    margin: 50px 0 20px 0;
  }

  .delivery_info .delivery-bottom__item {
    display: inline-block;
    width: 100%;
    padding-right: 10px;
    vertical-align: top;
  }

  .delivery_text_opt {
    margin-left: 126px;
  }

  .dropshipping_info_services_text {
    margin-bottom: 0;
    margin-left: 57px;
  }

  .dropshipping_info_services {
    margin-bottom: 20px;
  }

  .dropshipping-bottom__item {
    display: inline-block;
    width: 50%;
    margin-bottom: 30px;
    padding: 0 15px;
    vertical-align: top;
  }

  .delivery .delivery_mobaile_text {
    display: block;
    margin-top: 120px;
    font-size: 15px;
    line-height: 1.467;
    text-align: left;
    color: #404041;
  }

  .delivery_info_r .psevdo_h2_v6 {
    margin-bottom: 20px;
  }

  .delivery__ico_1 img {
    width: 70%;
  }

  .delivery_ico_r_sdek {
    width: 140px;
    margin: 0 4px 95px;
  }

  .delivery_ico_r_shiptor {
    width: 140px;
    margin: 0 5px 0;
  }

  .delivery_ico_r_sdek img {
    width: 100px;
    padding: 4px 4px;
  }

  .delivery_ico_r_shiptor img {
    width: 100px;
    padding: 4px 4px;
    border: 1px solid #e7e7e7;
  }

  .delivery_text_r {
    margin-left: 150px;
  }

  .delivery_text_r .delivery_text_r_block {
    margin: 20px 0;
  }

  .delivery_map_opt {
    height: 240px;
  }

  .delivery_ico_r {
    display: block;
    width: 90px;
    height: 90px;
    margin: 0 5px 45px 10px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("/bitrix/images/dostavka/map_r.png");
  }

  .delivery_ico_opt {
    width: 88px;
    height: 88px;
  }

  .delivery_ico_moscow {
    width: 88px;
    height: 88px;
    margin: 0 20px 200px;
  }

  .delivery-bottom__left {
    margin-left: 125px;
  }

  .delivery__ico_1 {
    height: 120px;
    margin-top: 32px;
    padding: 5px 10px;
    border: 1px solid #e7e7e7;
    border-top: 1px solid #e7e7e7;
    text-align: center;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .psevdo_h2,
  .psevdo_h2_v2,
  .psevdo_h2_v3,
  .psevdo_h2_v4,
  .psevdo_h2_v5,
  .psevdo_h2_v6 {
    padding: 0 0 17px;
  }
}

/* Фикс верстки  */

.delivery_info,
.delivery_info_r {
  padding: 60px;
}

.delivery_info .delivery_ico_moscow,
.delivery_info .delivery_ico_r,
.delivery_info .delivery_ico_opt,
.delivery_info_r .delivery_ico_moscow {
  margin-right: 60px;
  margin-left: -3px;
}

.dropshipping .psevdo_h2_v6,
.delivery .psevdo_h2_v6,
.corporate_clients .psevdo_h2_v6,
.ordering .psevdo_h2_v6,
.oplata .psevdo_h2_v6,
.wholesale_buy .psevdo_h2_v6,
.wholesale_clients_info .psevdo_h2_v6,
.service .psevdo_h2_v6,
.joint_buy .psevdo_h2_v6 {
  padding-top: 0 !important;
}

.delivery__card {
  display: flex;
  width: 100%;
  margin-bottom: 33px;
  padding: 60px;
  border: 1px solid #e7e7e7;
  overflow: hidden;
}

.delivery__card.no-bottom {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.delivery__card.no-bottom + .delivery__card {
  border-top: 0;
}

.delivery__card .delivery__card-icons-col {
  width: 140px;
  margin-left: -3px;
  padding-right: 60px;
  box-sizing: content-box;
}

.delivery__card .delivery__card-icons-col .delivery__icon {
  display: block;
  width: 137px;
  height: 137px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.delivery__card
  .delivery__card-icons-col
  .delivery__icon.delivery__icon-moscow {
  background-image: url("/local/templates/rcshop/css/../images/svg/moscow.svg");
}

.delivery__card .delivery__card-icons-col .delivery__icon.delivery__icon-opt {
  background-image: url("/local/templates/rcshop/css/../images/svg/opt.svg");
}

.delivery__card
  .delivery__card-icons-col
  .delivery__icon.delivery__icon-russia {
  background-image: url("/local/templates/rcshop/css/../images/svg/russia.svg");
}

.delivery__card .delivery__card-icons-col .delivery__icon.delivery__icon-note {
  background-image: url("/local/templates/rcshop/css/../images/svg/note.svg");
}

.delivery__card .delivery__card-icons-col .delivery__icon.delivery__icon-cards {
  background-image: url("/local/templates/rcshop/css/../images/svg/cards.svg");
}

.delivery__card .delivery__card-icons-col .delivery__icon-others {
  padding-top: 60px;
}

.delivery__card
  .delivery__card-icons-col
  .delivery__icon-others
  .delivery__icon-container {
  display: flex;
  height: 110px;
  justify-content: center;
  align-items: center;
  padding: 8px;
  border: 1px solid #e7e7e7;
}

.delivery__card
  .delivery__card-icons-col
  .delivery__icon-others
  .delivery__icon-container:not(:last-child) {
  margin-bottom: 27px;
}

.delivery__card
  .delivery__card-icons-col
  .delivery__icon-others
  .delivery__icon-container
  img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.delivery__card .delivery__card-content {
  width: 100%;
}

.delivery__card .delivery__card-content .delivery__card-title {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  color: #626262;
}

.delivery__card .delivery__card-content .delivery__card-text {
  font-size: 15px;
  line-height: 1.467;
  text-align: justify;
  color: #717171;
}

.delivery__card
  .delivery__card-content
  .delivery__card-text
  .delivery__text-block {
  margin-bottom: 1em;
}

.delivery__card .delivery__card-content .delivery__card-text p {
  padding: 0 0 6px;
}

.delivery__card .delivery__card-content .delivery__card-cards {
  display: block;
  width: 100%;
  margin-top: 30px;
}

.delivery__card .delivery__card-content .delivery__card-cards .card-item {
  display: flex;
  width: 100%;
  height: 90px;
  align-items: center;
  padding: 10px;
  border: 1px solid #e7e7e7;
}

.delivery__card .delivery__card-content .delivery__card-cards .card-item img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.oplata
  .delivery__card
  .delivery__card-content
  .delivery__card-cards
  .card-item {
  max-width: 280px;
  height: 174px;
  padding-right: 55px;
  padding-left: 55px;
}

.oplata
  .delivery__card
  .delivery__card-content
  .delivery__card-cards
  .card-item
  img {
  width: 100%;
  max-width: 100%;
}

.delivery__card .delivery__card-content .delivery__card-map-container {
  width: 58%;
  margin-top: -60px;
  margin-bottom: -60px;
  padding-left: 40px;
}

.delivery__card .delivery__card-content .delivery__card-map {
  height: 100%;
  margin-right: -45px;
}

.delivery__card .delivery__card-content .delivery__card-map #maps {
  width: 100% !important;
  height: 100% !important;
  margin: 0;
  padding: 0;
}

.delivery__card-bottom-map {
  height: 572px;
  margin: -33px 0 33px;
  border: 1px solid #e7e7e7;
  border-top: none;
}

.delivery__card-bottom-map #maps2 {
  height: 100%;
}

.delivery__card .delivery__card-row {
  display: flex;
  margin-right: -15px;
  margin-left: -15px;
}

.delivery__card .delivery__card-row .col-3 {
  display: block;
  width: 25%;
  padding: 0 15px;
  flex: 0 0 25%;
}

.delivery__card .delivery__card-row .col-4 {
  display: block;
  width: 33.333%;
  padding: 0 15px;
  flex: 0 0 33.333%;
}

.delivery__card .delivery__card-row .col-auto {
  display: block;
  width: auto;
  padding: 0 15px;
}

.delivery__footer-text {
  display: none;
}

.dropshipping .cols__item-48,
.corporate_clients .cols__item-48,
.wholesale_buy .cols__item-48,
.wholesale_clients_info .cols__item-48,
.oplata .cols__item-48 {
  width: 48.9%;
}

.dropshipping_info_form_row:last-child {
  margin-bottom: 0;
}

.pay__methods-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -7px;
  margin-left: -7px;
}

.pay__methods-row .pay__methods-col {
  width: 25%;
  margin-bottom: 15px;
  padding-right: 7px;
  padding-left: 7px;
  flex: 0 0 25%;
}

.other_pay_methods {
  display: flex;
  width: 100%;
  height: 41px;
  justify-content: center;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid #e7e7e7;
}

.other_pay_methods img {
  max-width: 100%;
  max-height: 100%;
}

.delivery--column .delivery__item .oplata__ico {
  display: flex;
  height: 174px;
  justify-content: center;
  align-items: center;
}

.delivery--column .delivery__item .oplata__ico img {
  max-width: 100%;
  max-height: 100%;
}

.wholesale_buy_clients p {
  min-height: 85px;
  font-size: 15px;
  line-height: 2;
}

.dropshipping__ico_1 img,
.corporate_clients__ico_1 img,
.service_info__ico_1 img {
  width: 170px !important;
  height: auto;
}

.oplata_info_roznica .dropshipping_info_title_ser {
  padding: 0;
}

.dropshipping_info_forms.cols .dropshipping_info_forms_desc {
  display: flex;
  justify-content: space-between;
}

.dropshipping_info_forms.cols .dropshipping_info_forms_desc .cols__item-48 {
  float: none;
}

.wholesale_buy_background .dropshipping-bottom__left {
  position: relative;
}

.wholesale_buy_background .dropshipping-bottom__left .wholesale_buy_line {
  top: 90px;
  bottom: auto;
}

.content-main.np-l {
  padding-left: 0;
}

@media (max-width: 1280px) {
  .delivery__card {
    padding: 60px 30px 60px 65px;
  }

  .delivery__card .delivery__card-icons-col {
    padding-right: 45px;
  }

  .delivery__card .delivery__card-icons-col .delivery__icon,
  .oplata_info .oplata_ico_n,
  .oplata_info .oplata_ico_c {
    width: 109px;
    height: 109px;
  }

  .delivery__card .delivery__card-content .delivery__card-cards {
    margin-top: 37px;
  }

  .delivery__card .delivery__card-content .delivery__card-cards .card-item {
    height: 45px;
  }

  .delivery__card .delivery__card-content .delivery__card-cards .card-item img {
    max-width: 85px;
  }

  .oplata
    .delivery__card
    .delivery__card-content
    .delivery__card-cards
    .card-item {
    height: 127px;
    padding-right: 36px;
    padding-left: 36px;
  }

  .oplata
    .delivery__card
    .delivery__card-content
    .delivery__card-cards
    .card-item
    img {
    max-width: 100%;
  }

  .delivery__card .delivery__card-content .delivery__card-map {
    margin-right: -15px;
  }

  .delivery__card .delivery__card-content .delivery__card-map-container {
    width: 52%;
    padding-left: 30px;
    flex: 0 0 52%;
  }

  .dropshipping .cols__item-48,
  .corporate_clients .cols__item-48,
  .wholesale_buy .cols__item-48,
  .wholesale_clients_info .cols__item-48,
  .oplata .cols__item-48 {
    width: 48.28%;
  }

  .dropshipping_info {
    padding: 50px 25px;
  }

  .pay__methods-row .pay__methods-col {
    width: 33.333%;
    flex: 0 0 33.333%;
  }

  .other_pay_methods {
    height: 32px;
  }

  .delivery--column .delivery__item .oplata__ico {
    height: 127px;
  }

  .dropshipping__ico_1 img,
  .corporate_clients__ico_1 img,
  .service_info__ico_1 img {
    width: 160px !important;
  }

  .wholesale_buy_background .dropshipping-bottom__left .wholesale_buy_line {
    top: 80px;
  }
}
@media (max-width: 1140px) {
  .delivery__card .delivery__card-row:not(.row-opt) {
    flex-wrap: wrap;
  }

  .delivery__card .delivery__card-row:not(.row-opt) .col-3 {
    width: 50%;
    margin-bottom: 30px;
    flex: 0 0 50%;
  }
}
@media (max-width: 767px) {
  .dropshipping .psevdo_h2_v6,
  .delivery .psevdo_h2_v6,
  .corporate_clients .psevdo_h2_v6,
  .ordering .psevdo_h2_v6,
  .oplata .psevdo_h2_v6,
  .wholesale_buy .psevdo_h2_v6,
  .wholesale_clients_info .psevdo_h2_v6,
  .service_info .psevdo_h2_v6,
  .joint_buy .psevdo_h2_v6 {
    padding-bottom: 17px;
  }

  .dropshipping_info_title_ser {
    margin-bottom: 17px;
  }

  .delivery__card,
  .delivery__card.no-bottom {
    padding: 25px 20px;
  }

  .delivery__card .delivery__card-icons-col {
    width: 157px;
    padding-right: 20px;
    flex: 0 0 157px;
  }

  .delivery__card .delivery__card-icons-col .delivery__icon {
    margin: 0 auto;
  }

  .delivery__card .delivery__card-content .delivery__card-cards {
    margin-top: 30px;
  }

  .delivery__card
    .delivery__card-content
    .delivery__card-cards
    .delivery__card-row {
    flex-wrap: wrap;
  }

  .delivery__card .delivery__card-content .delivery__card-cards .col-3 {
    width: 50%;
    margin-bottom: 30px;
    flex: 0 0 50%;
  }

  .delivery__card .delivery__card-content .delivery__card-cards .card-item {
    height: 82px;
  }

  .delivery__card .delivery__card-content .delivery__card-cards .card-item img {
    max-width: 141px;
  }

  .oplata
    .delivery__card
    .delivery__card-content
    .delivery__card-cards
    .card-item {
    height: 97px;
    padding-right: 28px;
    padding-left: 28px;
  }

  .delivery__card .delivery__card-content .delivery__card-map-container {
    width: 100%;
    margin: 60px -20px -25px -194px;
    padding-left: 0;
    flex: auto;
  }

  .delivery__card .delivery__card-content .delivery__card-map {
    margin-right: 0;
  }

  .delivery__card .delivery__card-row.row-opt {
    flex-wrap: wrap;
    margin: 0;
  }

  .delivery__card .delivery__card-row.row-opt .col-auto {
    width: 100%;
    padding: 0;
    flex: 0 0 100%;
  }

  .delivery__card .delivery__card-content .delivery__card-map #maps {
    width: 100% !important;
    height: 572px !important;
  }

  .delivery__footer-text {
    display: block;
    font-size: 15px;
    line-height: 1.467;
    text-align: left;
    color: #404041;
  }

  .delivery__footer-text .psevdo_h2_v6 {
    padding-bottom: 17px;
  }

  .delivery__footer-text .delivery_info_r,
  .oplata .delivery_info_r,
  .dropshipping .delivery_info_r,
  .corporate_clients .delivery_info_r,
  .dropshipping_mobaile_text .delivery_info_r {
    padding: 0;
  }

  .dropshipping_info {
    padding: 30px 25px;
  }

  .dropshipping .cols__item-48,
  .wholesale_buy .cols__item-48,
  .wholesale_clients_info .cols__item-48,
  .corporate_clients .cols__item-48 {
    width: 48.6%;
  }

  .oplata .cols__item-48 {
    width: 100%;
    margin-right: 0;
  }

  .pay__methods-row .pay__methods-col {
    width: 25%;
    flex: 0 0 25%;
  }

  .other_pay_methods {
    height: 41px;
  }

  .delivery--column .delivery__item .oplata__ico {
    width: 155px;
    height: 96px;
  }

  .dropshipping__ico_1 img,
  .corporate_clients__ico_1 img,
  .service_info__ico_1 img {
    width: 60px !important;
  }

  .oplata_info_buyer {
    display: block;
  }

  .wholesale_buy_background .dropshipping-bottom__left .wholesale_buy_line {
    top: 60px;
  }
}
@media (max-width: 767px) {
  .dropshipping_info_forms.cols .dropshipping_info_forms_desc {
    display: none;
  }

  .wholesale_buy_background {
    padding-top: 0;
  }

  .dropshipping .psevdo_h2_v6,
  .delivery .psevdo_h2_v6,
  .corporate_clients .psevdo_h2_v6,
  .ordering .psevdo_h2_v6,
  .oplata .psevdo_h2_v6,
  .wholesale_buy .psevdo_h2_v6,
  .wholesale_clients_info .psevdo_h2_v6,
  .service_info .psevdo_h2_v6,
  .joint_buy .psevdo_h2_v6 {
    padding-bottom: 22px;
  }

  .dropshipping_info_title_ser {
    margin-bottom: 22px;
  }

  .delivery__card {
    width: auto;
    margin-right: -22px;
    margin-bottom: 20px;
    margin-left: -22px;
    padding: 28px 20px;
    border-right: none;
    border-bottom: none;
    border-left: none;
  }

  .delivery__card .delivery__card-content .delivery__card-cards .col-3,
  .delivery__card .delivery__card-content .delivery__card-cards .col-4 {
    width: 100%;
    margin-bottom: 20px;
    flex: 0 0 100%;
  }

  .delivery__card .delivery__card-icons-col {
    width: 111px;
    padding-right: 0;
    flex: 0 0 111px;
  }

  .delivery__card .delivery__card-icons-col .delivery__icon,
  .oplata_info .oplata_ico_n,
  .oplata_info .oplata_ico_c {
    width: 89px;
    height: 89px;
    margin: 0;
  }

  .oplata_info .oplata_ico_n,
  .oplata_info .oplata_ico_c {
    margin-right: 40px;
  }

  .delivery__card .delivery__card-content .delivery__card-cards .card-item {
    height: 111px;
  }

  .delivery__card .delivery__card-content .delivery__card-cards .card-item img {
    max-width: 206px;
  }

  .oplata
    .delivery__card
    .delivery__card-content
    .delivery__card-cards
    .card-item {
    height: 200px;
    padding: 70px 50px;
  }

  .delivery__card .delivery__card-content .delivery__card-map-container {
    margin-bottom: -27px;
  }

  .delivery__card
    .delivery__card-icons-col
    .delivery__icon-others
    .delivery__icon-container {
    width: 94px;
    height: 70px;
  }

  .delivery__card-bottom-map {
    margin-right: -22px;
    margin-left: -22px;
  }

  .footer-contacts-phone__number-text {
    font-size: 19px;
  }

  .dropshipping .cols__item-48,
  .corporate_clients .cols__item-48,
  .wholesale_buy .cols__item-48,
  .wholesale_clients_info .cols__item-48,
  .oplata .cols__item-48 {
    width: 100%;
  }

  .dropshipping_info_important {
    margin-top: 30px;
  }

  .delivery--column .delivery__item .oplata__ico {
    width: 100%;
    height: 200px;
  }

  .oplata-bottom__left .delivery-bottom__item {
    display: block;
    width: auto;
    margin-right: 0;
    padding-right: 0;
  }

  .pay__methods-row .pay__methods-col {
    width: 33.333%;
    flex: 0 0 33.333%;
  }

  .other_pay_methods {
    height: 32px;
  }

  .wholesale_buy .dropshipping--column .dropshipping__item,
  .service .dropshipping--column .dropshipping__item {
    display: flex;
    width: auto;
    align-items: center;
    padding: 0;
  }

  .service_info .dropshipping-another-item__text {
    margin-top: 0;
    padding-top: 0;
  }
}

.bottom-description__cell ol li:before {
  margin-right: 4px;
}

.bottom-description__cell ul li,
.bottom-description__cell ol li {
  margin-bottom: 10px;
  list-style: none;
}

.bottom-description__cell ul li:before {
  display: inline;
  font-size: 150%;
  font-weight: 700;
  content: "• ";
  vertical-align: top;
}

.pr-20 {
  padding-right: 20px;
}

.products-block__title a {
  text-decoration: none !important;
  color: #404041;
  transition: color 0.3s;
}

.products-block__title a + span {
  display: none;
}

@media (max-width: 1023px) {
  .products-block__title a {
    display: none;
  }

  .products-block__title a + span {
    display: inline-block;
  }
}

.products-block__title a:hover,
.link-hover:hover {
  color: #ffa800 !important;
}

/* Шаринг */

.share-block {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999999;
  pointer-events: none;
}

.share-block__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
  opacity: 0;
  background: #000000;
}

.share-block__container {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-top: 1px solid #cccccc;
  transition: transform 0.3s ease;
  background: #ffffff;
  transform: translateY(100%);
}

.share-block__close {
  color: #f77807;
  cursor: pointer;
}

.share-block__title {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 1px solid #cccccc;
  font-size: 16px;
  text-transform: uppercase;
}

.share-block__items {
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
}

.share-item {
  width: 90px;
  min-height: 90px;
  padding: 90px 0 0;
  font-size: 11px;
  text-align: center;
  background-repeat: no-repeat;
  background-size: 60px;
  background-position: center;
  cursor: pointer;
}

.share-item.vk {
  background-image: url("/local/templates/rcshop/css/../images/social/vk.svg");
}

.share-item.facebook {
  background-image: url("/local/templates/rcshop/css/../images/social/facebook.svg");
}

.share-item.twitter {
  background-image: url("/local/templates/rcshop/css/../images/social/twitter.svg");
}

.share-item.clipboard {
  background-image: url("/local/templates/rcshop/css/../images/social/clipboard.svg");
}

.share-block.open {
  pointer-events: auto;
}

.share-block.open .share-block__overlay {
  opacity: 0.5;
}

.share-block.open .share-block__container {
  transform: translateY(0);
}

/* -------------- */

.header__logo-icon-extra-lc {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 21px;
  height: 16px;
  vertical-align: top;
}

.lk-nav__head_active:hover {
  background-color: #fff2e7;
  transition: background-color 0.3s;
}

.lk-nav__head_deactive:hover {
  background-color: #fff2e7;
  transition: background-color 0.3s;
}

.main-tabs__block-news-lc {
  display: block;
}

.news-lc {
  display: block;
}

.wrap {
  display: block;
}

.left-menu-lc-mob {
  display: none;
}

.wrap-lc {
  padding-top: 0 !important;
}

@media (max-width: 1280px) {
  .right-filter + .main-content-lc {
    width: 100% !important;
  }
}
@media (max-width: 1023px) {
  .left-menu-lc {
    display: none !important;
  }

  .left-menu-lc-mob {
    display: block;
  }

  .main-tabs__block-news-lc {
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .main-tabs__block-news-lc {
    margin-top: 20px;
  }
}

/* -------------- */

/* -------style lc---- */

.lk-nav__title_ico:before {
  position: absolute;
  top: 3px;
  left: -5px;
  display: block;
  width: 17px;
  height: 26px;
  border-radius: 0;
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: transparent;
  background-image: url("/bitrix/templates/rcshop/images/icons/logo-icon.svg");
  content: "";
}

.content-wrap-lc .main-content__head {
  padding-bottom: 13px;
}

.content-wrap-lc h2 {
  padding: 37px 0 20px 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
}

.content-wrap-lc .main-news.news__item.main-news--video {
  padding-bottom: 0;
}

.content-wrap-lc p {
  max-width: 800px;
}

.content-wrap-lc .news-lc {
  margin-top: -7px;
  padding-top: 0;
}

.content-wrap-lc .wrap-lc .right-filter-lc {
  position: absolute;
  right: 0;

  /* float: right; */
  width: 26%;
  border: 1px solid #dfdfdf;
  border-left: none;
}

.content-wrap-lc .wrap-lc #product_list {
  position: relative;
  left: -2.5%;
  width: 77%;
  padding-bottom: 0;
  border-left: 1px solid #dfdfdf;
}

.content-wrap-lc .wrap-lc .main-content__head {
  padding-left: 0;
}

.content-wrap-lc .main-news--large .news-item__link {
  display: block;
  max-height: 76px;
  margin-bottom: 0;
  font: 400 16px/25px "ubuntu";
  color: #ff7300;
  overflow: hidden;
}

.content-wrap-lc #lazyload {
  position: relative;
  left: -2.5%;
  width: 82%;
  padding-top: 20px;
  padding-bottom: 0;
}

.content-wrap-lc .wrap-lc {
  padding-bottom: 0;
}

.content-wrap-lc .mt-40 {
  margin-top: 36px;
  margin-bottom: 10px;
}

.main-content:not(.main-content--pl) .main-content__head {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 1199px) {
  .main-content:not(.main-content--pl) .main-content__head {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1023px) {
  .main-content:not(.main-content--pl) .main-content__head {
    padding-left: 0;
    padding-right: 0;
  }
}

.content-wrap-lc .main-content:not(.main-content--pl) .main-content__head {
  padding-top: 0;
}

.content-wrap-lc .main-content__head .catalog-sort {
  margin-top: 0;
}

.content-wrap-lc .product-card__inner {
  border: none;
  border-top: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}

.content-wrap-lc .content-full.mt-40.order-11 .product-card__list {
  border-left: 1px solid #dfdfdf;
}

.content-wrap-lc .btn-medium {
  display: inline-block;
  margin-right: 20px;
}

@media (max-width: 1280px) {
  .content-wrap-lc #lazyload {
    left: -3.4%;
    width: 77.4%;
  }

  .content-wrap-lc .wrap-lc #product_list {
    left: -3.4%;
    width: 77.4%;
  }
}
@media (min-width: 1024px) {
  .content-wrap-lc .main-content:not(.main-content--pl) .main-content__head {
    padding-right: 10px;
    padding-bottom: 20px;
    padding-left: 0;
  }
}
@media (max-width: 1028px) {
  .content-wrap-lc .wrap-lc .right-filter-lc {
    width: 22%;
  }

  .content-wrap-lc .wrap-lc #product_list {
    left: -4%;
  }

  .content-wrap-lc #lazyload {
    left: -4%;
  }

  .lk-nav__title br {
    display: block;
  }
}
@media (max-width: 767px) {
  .content-wrap-lc .btn-medium {
    margin-right: 0 !important;
    margin-left: 40px;
  }

  .content-wrap-lc .catalog__more-btn {
    margin-right: 0 !important;
    margin-left: 0;
  }

  .content-wrap-lc .main-content__head {
    padding-bottom: 28px;
  }

  .content-wrap-lc .lk-nav {
    margin-bottom: 0;
  }

  .content-wrap-lc .wrap-lc .right-filter-lc {
    width: 0%;
  }

  .content-wrap-lc .wrap-lc #product_list {
    top: 20px;
    left: 0%;
    width: 106.1%;
  }

  .content-wrap-lc #lazyload {
    left: 0;
    width: 100%;
    padding-top: 50px;
  }

  .content-wrap-lc .d-md-block {
    display: none !important;
  }

  .content-wrap-lc .content-main {
    padding-bottom: 0;
  }

  .content-wrap-lc .mt-40 {
    margin-top: 0;
  }

  .content-wrap-lc .h2-link.text-blink {
    padding-top: 30px;
  }

  .content-wrap-lc .main-content__head .catalog-sort {
    max-height: 50px;
  }

  .content-wrap-lc .main-content:not(.main-content--pl) .main-content__head {
    padding-bottom: 0;
  }
}
@media (max-width: 480px) {
  .content-wrap-lc .main-content__head {
    padding-bottom: 13px;
  }

  .content-wrap-lc .wrap-lc #product_list {
    width: 110%;
  }

  .content-wrap-lc #lazyload {
    left: 0%;
  }

  .content-wrap-lc .btn-medium {
    display: block;
    margin: 0 auto !important;
    margin-bottom: 13px !important;
  }

  .product-card__list-item--4:nth-child(3) .product-card__inner {
    margin-top: 1px;
  }
}

/* -------style lc end---- */

@media (min-width: 1024px) {
  .news-detail .product-item {
    position: relative;
    left: -30px;
    width: calc(100% + 30px);
  }
}
@media (max-width: 767px) {
  .main-tabs__title {
    top: calc(376px + 35vw) !important;
  }

  .main-tabs__block-news {
    margin-bottom: 78px;
  }
}
@media (max-width: 480px) {
  .main-tabs__title {
    top: 560px !important;
  }
}

.product-card__list-item:hover {
  z-index: 1;
}

.js-product-list-slider .product-card__list-item {
  margin-top: 0;
}

.new-cards__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 50px;
}
@media (max-width: 1410px) {
  .new-cards__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1199px) {
  .new-cards__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1023px) {
  .new-cards__list {
    margin-right: -22px;
    margin-left: -22px;
  }
}
@media (max-width: 767px) {
  .new-cards__list {
    /* grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); */
    margin-right: -16px;
    margin-bottom: 30px;
    margin-left: -16px;
  }
}
@media (max-width: 580px) {
  .new-cards__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.new-cards__list--hits .new-card:nth-child(n + 11) {
  display: none;
}
@media (max-width: 1410px) {
  .new-cards__list--hits .new-card:nth-child(n + 9) {
    display: none;
  }
}
@media (max-width: 1199px) {
  .new-cards__list--hits .new-card:nth-child(-n + 9) {
    display: flex;
  }
}
@media (max-width: 1023px) {
  .new-cards__list--hits .new-card:nth-child(-n + 6) {
    display: flex;
  }
  .new-cards__list--hits .new-card:nth-child(n + 7) {
    display: none;
  }
}

.new-cards__list--many,
.new-cards__list--duo {
  grid-template-columns: repeat(6, 1fr);
}
.new-cards__list--many .new-card:nth-child(n + 6),
.new-cards__list--duo .new-card:nth-child(n + 6) {
  display: flex;
}
.new-cards__list--many .new-card:nth-child(n + 7),
.new-cards__list--duo .new-card:nth-child(n + 7) {
  display: none;
}
@media (max-width: 1410px) {
  .new-cards__list--many,
  .new-cards__list--duo {
    grid-template-columns: repeat(5, 1fr);
  }

  .new-cards__list--many .new-card:nth-child(n + 6),
  .new-cards__list--duo .new-card:nth-child(n + 6) {
    display: none;
  }
}
@media (max-width: 1199px) {
  .new-cards__list--many,
  .new-cards__list--duo {
    grid-template-columns: repeat(4, 1fr);
  }

  .new-cards__list--many .new-card:nth-child(n + 5),
  .new-cards__list--duo .new-card:nth-child(n + 5) {
    display: none;
  }
}
@media (max-width: 1023px) {
  .new-cards__list--many,
  .new-cards__list--duo {
    grid-template-columns: repeat(3, 1fr);
  }
  .new-cards__list--many .new-card:nth-child(-n + 6),
  .new-cards__list--duo .new-card:nth-child(-n + 6) {
    display: flex;
  }
}
@media (max-width: 767px) {
  .new-cards__list--many,
  .new-cards__list--duo {
    /* grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); */
  }
}
@media (max-width: 580px) {
  .new-cards__list--many,
  .new-cards__list--duo {
    grid-template-columns: repeat(2, 1fr);
  }
}

.right-filter + .main-content .new-cards__list {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1410px) {
  .right-filter + .main-content .new-cards__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1199px) {
  .right-filter + .main-content .new-cards__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1023px) {
  .right-filter + .main-content .new-cards__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .right-filter + .main-content .new-cards__list {
    /* grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); */
  }
}
@media (max-width: 580px) {
  .right-filter + .main-content .new-cards__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.new-card {
  position: relative;
  margin-top: -1px;
  margin-left: -1px;
  padding: 16px;
  padding-top: 30px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  border: 1px solid #dfdfdf;
  transition:
    box-shadow 0.3s,
    border-color 0.3s;
}
@media (max-width: 767px) {
  .new-card {
    padding-top: 10px;
    padding-right: 8px;
    padding-bottom: 10px;
    padding-left: 8px;
  }
}
@media (min-width: 992px) {
  .new-card:hover {
    box-shadow: 0 0 27px rgba(255, 115, 0, 0.22);
    border-color: #ff7300;
    z-index: 1;
  }
}

.new-card__lables {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  column-gap: 3px;
  row-gap: 3px;
  padding-left: 16px;
}
@media (max-width: 767px) {
  .new-card__lables {
    padding: 3px;
  }
}

.new-card__label {
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
  box-shadow: 0 1px 10px rgba(0, 64, 128, 0.2);
  font-family: inherit;
  font-size: 15px;
  line-height: normal;
  font-weight: 600;
}
@media (max-width: 767px) {
  .new-card__label {
    padding-top: 3px;
    padding-right: 5px;
    padding-bottom: 4px;
    padding-left: 5px;
    font-size: 14px;
  }
}

.new-card__label--green {
  background-color: #5fc900;
  color: #fff;
}

.new-card__label--yellow {
  background-color: #fdf703;
  color: #212121;
}

.new-card__label--orange {
  background-color: #ffa800;
  color: #fff;
}

.new-card__label--red {
  background-color: #ff2c39;
  color: #fff;
}

.new-card__actions {
  position: absolute;
  top: 30px;
  right: 16px;
  z-index: 1;
  display: flex;
  padding: 5px;
  border-radius: 3px;
  gap: 5px;
  opacity: 0;
  visibility: hidden;
  transition:
    visibility 0.3s,
    opacity 0.3s;
}
@media (max-width: 1023px) {
  .new-card__actions {
    position: unset;
    margin-top: -15px;
    margin-right: auto;
    margin-bottom: 5px;
    padding: 0;
    border-radius: 5px;
    opacity: 1;
    visibility: visible;
  }
}

.new-card__action {
  margin: 0;
  padding: 0;
  width: 30px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ff7300;
  background-color: #ffffff;
}
@media (max-width: 1023px) {
  .new-card__action {
    width: 35px;
    height: 25px;
    border-radius: 5px;
  }
}

.new-card__action svg {
  width: 16px;
  height: 13px;
  fill: #fff;
}

.new-card__action span {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.new-card__action--active svg {
  width: 16px;
  height: 13px;
  fill: #ff7300;
}

.new-card__action--active span {
  background-color: #ff7300;
}

.new-card__action--compare svg {
  stroke: #ff7300;
}

.new-card__action--active svg {
  stroke: #ffffff;
}

.new-card__banner {
  position: relative;
  margin-bottom: 15px;
}
@media (max-width: 1023px) {
  .new-card__banner {
    margin-bottom: 0;
    order: -1;
  }
}

.new-card__features {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.3s,
    opacity 0.3s;
}
@media (max-width: 1023px) {
  .new-card__features {
    visibility: visible;
    opacity: 1;
  }
}

.new-card__features-item {
  position: absolute;
  bottom: calc(100% + 10px);
  z-index: 1;
  margin: 0;
  padding: 3px 10px;
  border: 1px solid #dfdfdf;
  border-radius: 30px;
  font-size: 14px;
  line-height: 14px;
  color: #717171;
  letter-spacing: normal;
  vertical-align: top;
  background: #ffffff;
}
@media (max-width: 1023px) {
  .new-card__features-item {
    position: unset;
    margin-bottom: 5px;
    border-radius: 5px;
  }
}

.new-card__image {
  position: relative;
  display: block;
  width: 100%;
  padding-top: calc(165 / 220 * 100%);
}

.new-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-card__name {
  margin: 0;
  padding: 0;
  color: #404041;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 10px;
  font-family: inherit;
}
@media (max-width: 767px) {
  .new-card__name {
    margin-bottom: 5px;
    font-size: 14px;
    word-wrap: break-word;
  }
}

.new-card__stats {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 5px;
}
@media (max-width: 767px) {
  .new-card__stats {
    margin-bottom: 5px;
  }
}

.new-card__stat {
  margin: 0;
  padding: 0;
  color: #ff7300;
  font-size: 14px;
  line-height: 16px;
  font-family: inherit;
}

.new-card__price {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  flex-wrap: wrap;
  gap: 8px;
}

.new-card__price-text {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 14px;
  line-height: 13px;
  font-weight: 700;
  color: #404041;
}

.new-card__price-number {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #404041;
}

@media (max-width: 767px) {
  .new-card__price-number {
    font-size: 18px;
  }
}

.new-card__price-discount {
  margin: 0;
  padding: 0;
  position: relative;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: grey;
}

@media (max-width: 767px) {
  .new-card__price-discount {
    font-size: 16px;
  }
}

.new-card__price-discount:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: red;
  margin: auto;
  content: "";
}

.new-card__price-ruble {
  margin: 0;
  padding: 0;
  font-family: "ALSRubl";
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #404041;
}

.new-card__price-discount .new-card__price-ruble {
  color: gray;
}

.new-card__bottom {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .new-card__bottom {
    gap: 5px;
  }
}

.new-card__buttons {
  margin: 0;
  padding: 0;
  display: flex;
  flex-grow: 1;
  height: 38px;
  background-color: rgb(239, 239, 239);
}
@media (max-width: 767px) {
  .new-card__buttons {
    border-radius: 5px;
  }
}

.new-card__button {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: inherit;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  background-color: rgb(239, 239, 239);
}

.new-card__counter {
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: #404041;
  background-color: rgb(239, 239, 239);
  width: 45px;
  text-align: center;
}

.new-card__button--minus {
  color: #cb6463;
}

.new-card__button--plus {
  color: #85bf31;
}

.js-in-cart .new-card__bottom-right {
  display: none;
}

.new-card__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 0;
  width: unset;
  border-radius: 3px;
  background-color: #ff7300;
}

@media (max-width: 767px) {
  .new-card__cart {
    width: 40px;
    padding-top: 6px;
    padding-bottom: 7px;
    padding-right: 5px;
    padding-left: 5px;
    border-radius: 5px;
  }
}

.new-card__cart--nothing {
  width: 100%;
  pointer-events: none;
}

.new-card__cart span {
  display: block;
}

@media (max-width: 767px) {
  .new-card__cart span {
    display: none;
  }
}

.new-card__cart svg {
  width: 23px;
  height: 25px;
  display: none;
}
@media (max-width: 767px) {
  .new-card__cart svg {
    display: flex;
  }
}

.new-card__cart--nothing span {
  display: block;
}

.new-card:hover .new-card__actions,
.new-card:hover .new-card__features  {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 1023px) {
  .main-tabs__block {
    margin-bottom: 0;
    padding-top: 28px;
  }

  .main-tabs__area {
    position: relative;
    padding-top: 80px;
  }

  .main-tabs__area .main-tabs__block {
    padding-top: 0;
  }

  .products-block__title {
    top: 0 !important;
  }
}

@media (max-width: 767px) {
  .main-tabs__area {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .title-search-result {
    position: fixed !important;
    top: 58px !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    min-width: unset !important;
    margin: 0 !important;
    border-top: 1px solid #b8b8b8;
  }
  
  .ui-widget.ui-widget-content {
    width: 100%;
    max-width: unset !important;
    max-height: 100%;
    padding-right: 15px;
    padding-bottom: 20px;
    padding-left: 15px;
    border: 0;
  }
  
  .sotbit-seometa-tags-wrapper {
    gap: 10px;
  }
  
  .sotbit-seometa-tag {
    margin: 0;
  }
}
  
.sotbit-seometa-tag-link {
  display: block;
}

.system-layout {
  padding-top: 30px;
  padding-bottom: 40px;
}

@media (max-width: 1023px) {
  .system-layout {
    padding-top: 80px;
  }
}

.system-layout__wrapper {
  width: 100%;
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
}

/* Кастомный селект */
.custom-select__choices {
  margin: 0;
  padding: 0;
  border-radius: 0;
  transition:
    background-color 0.3s,
    color 0.3s;
  flex-shrink: 0;
}
@media(max-width: 1023px) {
  .custom-select__choices {
    width: 100%;
  }
}

.custom-select__choices .choices__list--single {
  margin: 0;
  padding: 0;
  text-align: left;
  color: currentcolor;
}

.custom-select__choices .choices__list--dropdown {
  top: 100%;
  bottom: unset;
  z-index: 15;
  min-width: 100%;
  margin: 0;
  margin-top: 4px;
  border: 0;
  border-radius: 4px;
  background-color: #ffffff;
  word-break: initial;
}

.custom-select__choices .choices__list--dropdown .choices__list {
  max-height: 350px;
  padding: 0;
}

/* .custom-select__choices .choices__list--dropdown .choices__list::-webkit-scrollbar {
  width: 8px;
}
.custom-select__choices .choices__list--dropdown .choices__list::-webkit-scrollbar-track {
  margin-top: 2px;
  margin-bottom: 2px;
  border-radius: 4px;
  background-color: #ffffff;
}
.custom-select__choices .choices__list--dropdown .choices__list::-webkit-scrollbar-thumb {
  height: 4px;
  border: 2px solid #ffffff;
  border-radius: 4px;
  background-color: #ff7300;
} */

.custom-select__choices .choices__list--dropdown .choices__item {
  margin: 0;
  padding-top: 7px;
  padding-right: 10px;
  padding-bottom: 8px;
  padding-left: 10px;
  text-align: left;
  color: inherit;
  transition:
    color 0.3s,
    background-color 0.3s;
  text-overflow: ellipsis;
  overflow: hidden;
}

.custom-select__choices .choices__list--dropdown .choices__item:hover {
  background-color: #d5d5d5;
}

.custom-select__choices .choices__placeholder {
  display: none;
}

.custom-select__choices .is-highlighted {
  background-color: #ffffff;
}

.custom-select__choices .is-selected {
  display: none;
}

.custom-select__choices .choices__item {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.custom-select__choices[data-type*='select-one'] .choices__inner {
  display: flex;
  min-height: 38px;
  padding-top: 7px;
  padding-right: 10px;
  padding-bottom: 8px;
  padding-left: 10px;
  border: 1px solid #c8c8c8;
  border-radius: 3px;
  background-color: #f7f7f7;
  transition: border-color 0.3s;
  outline: none;
}

.custom-select__choices[data-type*='select-one']:before {
  position: absolute;
  top: 50%;
  right: 19px;
  width: 8px;
  height: 2px;
  margin: 0;
  border: 0;
  background-color: #ff7300;
  transition: transform 0.3s;
  transform: rotate(45deg);
  pointer-events: none;
  content: '';
}

.custom-select__choices[data-type*='select-one']:after {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 2px;
  margin: 0;
  border: 0;
  background-color: #ff7300;
  transition: transform 0.3s;
  transform: rotate(-45deg);
  pointer-events: none;
  content: '';
}

.custom-select__choices[data-type*='select-one'].is-open:before {
  margin: 0;
  /* transform: rotate(-45deg); */
}

.custom-select__choices[data-type*='select-one'].is-open:after {
  margin: 0;
  /* transform: rotate(45deg); */
}

.custom-select__choices[data-type*='select-one'].is-open .choices__inner {
  border-radius: 4px;
}

.not-availible {
  pointer-events: none;
  user-select: none;
}
/* End */


/* Start:/local/templates/rcshop/css/common.css?17319312494899*/
@charset "UTF-8";

@media (min-width: 1301px) {
  .content-wrap-lc .wrap-lc #product_list {
    width: 81.5%;
    left: -2%;
  }

  .content-wrap-lc #lazyload {
    width: 81.5%;
    left: -2%;
  }

  .content-wrap-lc .wrap-lc .right-filter-lc {
    width: 20.5%;
  }
}

.input-error {
  border: 2px solid red !important;
}

#form-error{
  color: red;
}

.product-card__top-link.inFav,
.product-card__top-link.inCompare
{
  background-color: #ff7300;
}

.product-card__top-link-icon:nth-child(2),
.icon-heart:nth-child(2),
.icon-diagram:nth-child(2)
{
  display: none;
}

.product-card__top-link.inFav .product-card__top-link-icon:nth-child(2),
.product-card__top-link.inCompare .product-card__top-link-icon:nth-child(2),
.product-page__lg-image-actions-favorite.inFav .icon-heart:nth-child(2),
.product-page__lg-image-actions-compare.inCompare .icon-diagram:nth-child(2)
{
  display: inline-block;
}

.product-card__top-link.inFav .product-card__top-link-icon:first-child,
.product-card__top-link.inCompare .product-card__top-link-icon:first-child,
.product-page__lg-image-actions-favorite.inFav .icon-heart:first-child,
.product-page__lg-image-actions-compare.inCompare .icon-diagram:first-child
{
  display: none;
}



.js-in-cart .product-card__bottom-left {
	width: 100%;
}

.js-in-cart .product-card__bottom-right {
	display: none;
}

.js-in-cart .icon-cart {
	display: none!important;
	
}
.js-in-cart .js-addbasket-disabled .hide-on-ml {
	
}

.js-in-cart .btn-disabled {
	background: #ffa800 !important;
}

.js-in-cart .js-addbasket-disabled + .js-addbasket {
	display:none;
}

.js-in-cart .product-page__spinner .spinner {
	min-width: 50px;
}

@media (max-width: 480px) {
	.js-in-cart .product-page__btn-cart.btn-disabled {
		padding-top:5px;
	}	
}
@media (min-width: 481px) {
	.js-in-cart .product-page__btn-cart.btn-disabled {
		font-size: 15px;
		padding-top:8px;
	}	
}
@media (max-width: 767px) {
	.js-in-cart .product-page__btn-cart.btn-disabled {
		max-height: 51px;
/* 		padding-top:8px; */
	}	
}
@media (min-width: 768px) {
	.js-in-cart .product-page__btn-cart.btn-disabled {
		font-size: 14px;
		white-space:nowrap;
		padding: 17px 5px;
	}	
}

/*
.ani-marker {
    position: fixed;
    z-index: 999;
    width: 0;
    height: 0;
    border-radius: 3px;
    background: #ff7300;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.ani-marker.in-animate {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}
*/

.btn.btn-subscribe {
    display: none;
}

.btn.btn-subscribe[data-type="delete"] {
    color: #000000;
    background: #cccccc;
}

.subscribe-add .btn.btn-subscribe[data-type="add"] {
    display: flex;
}

.subscribe-delete .btn.btn-subscribe[data-type="delete"] {
    display: flex;
}

.new-card__subscribe {
    width: 100%;
}

.ani-marker {
	position: fixed;
	z-index: 999;
	background: #ff7300;
	transition: all 0.3s;
	transform: translate(-50%, -50%);
}
.ani-marker.js-cart-marker-minus {
	width: 20px;
	height: 20px;
	border-radius: 50%;
}
.ani-marker.js-cart-marker-plus {
	border-radius: 3px;
}
.ani-marker.js-cart-marker-minus.in-animate {
	border-radius: 3px;
}
.ani-marker.js-cart-marker-plus.in-animate {
	width: 20px !important;
	height: 20px !important;
	border-radius: 50%;
}

.product-page__price-name + .product-page__price-name {
	margin-bottom:14px;
}


@media (max-width: 767px) {
	.bx-filter .bx-filter-section {
		padding:0;
	}
}



.new-cards__list--more2 {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1599px) {
  .new-cards__list--more2 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1199px) {
  .new-cards__list--more2 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1023px) {
  .new-cards__list--more2 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .new-cards__list--more2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 424px) {
  .new-cards__list--more2 {
    grid-template-columns: 1fr;
  }
}

.new-cards__list--more {
	grid-template-columns: repeat(6, 1fr);
  }
  @media (max-width: 1410px) {
	.new-cards__list--more {
	  grid-template-columns: repeat(5, 1fr);
	}
  }
  @media (max-width: 1199px) {
	.new-cards__list--more {
	  grid-template-columns: repeat(4, 1fr);
	}
  }
  @media (max-width: 1023px) {
	.new-cards__list--more {
	  grid-template-columns: repeat(3, 1fr);
	}
  }
  @media (max-width: 767px) {
	.new-cards__list--more {
	  grid-template-columns: repeat(2, 1fr);
	}
  }
  /*
  @media (max-width: 424px) {
	.new-cards__list--more {
	  grid-template-columns: 1fr;
	}
  }
  */

@media (min-width: 768px) {
  #inavail-popup {
    max-width: none;
    width:80%;
    margin: 0 0 0 -40%;
  }

  .unavail-text {
    padding:30px;
    background:white;
  }
}
/* End */


/* Start:/local/templates/rcshop/css/jquery-ui.css?169952927030380*/
/*! jQuery UI - v1.8.24 - 2012-09-28
* https://github.com/jquery/jquery-ui
* Includes: jquery.ui.core.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.progressbar.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.slider.css, jquery.ui.tabs.css, jquery.ui.theme.css
* Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden { display: none; }
.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
.ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; }
.ui-helper-clearfix:after { clear: both; }
.ui-helper-clearfix { zoom: 1; }
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }


/* Interaction Cues
----------------------------------*/
.ui-state-disabled { cursor: default !important; }


/* Icons
----------------------------------*/

/* states and images */
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* IE/Win - Fix animation bug - #4615 */
.ui-accordion { width: 100%; }
.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
.ui-accordion .ui-accordion-li-fix { display: inline; }
.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
.ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }
.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
.ui-accordion .ui-accordion-content-active { display: block; }

.ui-autocomplete { position: absolute; cursor: default; }	

.ui-widget-content {
    border: 0;
}
.ui-autocomplete {
    max-height: 450px;
    background: #fff!important;
    border-radius: 0px;
    border: 1px solid #c6c6c6;
}
.ui-autocomplete {
    z-index: 1020!important;
    max-height: 380px;
    overflow: auto;
}

.ui-menu .ui-menu-item {
    display: table;
    width: 100%;
    font-size: 14px;
	padding: 0;
    margin-bottom: 10px;
}

.ui-widget.ui-widget-content {
    max-width: 693px;
}

.ui-menu .ui-menu-item:hover {
    background-color: transparent !important;
}

.ui-menu .ui-menu-item a {
    word-wrap: break-word;
    display: table-cell;
    width: 100%;
    text-decoration: none;
    line-height: 1.5;
    zoom: 1;
    padding: 2px 4px;
}

.ui-menu .ui-menu-item a span:first-child {
    color: #666 !important;
}

.ui-menu .ui-menu-item a:hover span:first-child {
    color: #d60000 !important;
}

.ui-menu .ui-menu-item a span {
    display: table-cell;
    width: 100%;
}

.ui-menu .ui-menu-item a span:last-child {
    display: table-cell;
    color: #666!important;
    width: 80px !important;
    text-align: right;
    white-space: nowrap;
}

.ui-menu .ui-menu-item:hover {
    background-color: #f0f0f0;
}

.search-section + .search-element {
    border-top: 1px solid #d2d2d2;
}

/* workarounds */
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */

/*
 * jQuery UI Menu 1.8.24
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Menu#theming
 */
.ui-menu {
	list-style:none;
	padding: 2px;
	margin: 0;
	display:block;
	float: left;
}
.ui-menu .ui-menu {
	margin-top: -3px;
}

.ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
.ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
.ui-button-icons-only { width: 3.4em; } 
button.ui-button-icons-only { width: 3.7em; } 

/*button text element */
.ui-button .ui-button-text { display: block; line-height: 1.4;  }
.ui-button-text-only .ui-button-text { padding: .4em 1em; }
.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
.ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
/* no icon support for input elements, provide padding by default */
input.ui-button { padding: .4em 1em; }

/*button icon element(s) */
.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }
.ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }

/*button sets*/
.ui-buttonset { margin-right: 7px; }
.ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }

/* workarounds */
button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */

.ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; }
.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
.ui-datepicker .ui-datepicker-prev { left:2px; }
.ui-datepicker .ui-datepicker-next { right:2px; }
.ui-datepicker .ui-datepicker-prev-hover { left:1px; }
.ui-datepicker .ui-datepicker-next-hover { right:1px; }
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px;  }
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
.ui-datepicker select.ui-datepicker-month, 
.ui-datepicker select.ui-datepicker-year { width: 49%;}
.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0;  }
.ui-datepicker td { border: 0; padding: 1px; }
.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi { width:auto; }
.ui-datepicker-multi .ui-datepicker-group { float:left; }
.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
.ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }

/* RTL support */
.ui-datepicker-rtl { direction: rtl; }
.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
.ui-datepicker-rtl .ui-datepicker-group { float:right; }
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }

/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-datepicker-cover {
    position: absolute; /*must have*/
    z-index: -1; /*must have*/
    filter: mask(); /*must have*/
    top: -4px; /*must have*/
    left: -4px; /*must have*/
    width: 200px; /*must have*/
    height: 200px; /*must have*/
}
.ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }
.ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative;  }
.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } 
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
.ui-draggable .ui-dialog-titlebar { cursor: move; }

.ui-progressbar { height:2em; text-align: left; overflow: hidden; }
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }
.ui-resizable { position: relative;}
.ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; }
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}
.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }

.ui-slider { position: relative; text-align: left; }
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }

.ui-slider-horizontal { height: .8em; }
.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
.ui-slider-horizontal .ui-slider-range-min { left: 0; }
.ui-slider-horizontal .ui-slider-range-max { right: 0; }

.ui-slider-vertical { width: .8em; height: 100px; }
.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
.ui-slider-vertical .ui-slider-range-max { top: 0; }
.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }
.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
.ui-tabs .ui-tabs-hide { display: none !important; }

/* Component containers
----------------------------------*/
.ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; }
.ui-widget .ui-widget { font-size: 1em; }
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; }
.ui-widget-content a { color: #222222/*{fcContent}*/; }
.ui-widget-header { border: 1px solid #aaaaaa/*{borderColorHeader}*/; background: #cccccc/*{bgColorHeader}*/ url(/local/templates/rcshop/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png)/*{bgImgUrlHeader}*/ 50%/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/; color: #222222/*{fcHeader}*/; font-weight: bold; }
.ui-widget-header a { color: #222222/*{fcHeader}*/; }

/* Interaction states
----------------------------------*/
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3/*{borderColorDefault}*/; background: #e6e6e6/*{bgColorDefault}*/ url(/local/templates/rcshop/css/images/ui-bg_glass_75_e6e6e6_1x400.png)/*{bgImgUrlDefault}*/ 50%/*{bgDefaultXPos}*/ 50%/*{bgDefaultYPos}*/ repeat-x/*{bgDefaultRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/; }
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555/*{fcDefault}*/; text-decoration: none; }
.ui-widget :active { outline: none; }

/* Interaction Cues
----------------------------------*/
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight  {border: 1px solid #fcefa1/*{borderColorHighlight}*/; background: #fbf9ee/*{bgColorHighlight}*/ url(/local/templates/rcshop/css/images/ui-bg_glass_55_fbf9ee_1x400.png)/*{bgImgUrlHighlight}*/ 50%/*{bgHighlightXPos}*/ 50%/*{bgHighlightYPos}*/ repeat-x/*{bgHighlightRepeat}*/; color: #363636/*{fcHighlight}*/; }
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636/*{fcHighlight}*/; }
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a/*{borderColorError}*/; background: #fef1ec/*{bgColorError}*/ url(/local/templates/rcshop/css/images/ui-bg_glass_95_fef1ec_1x400.png)/*{bgImgUrlError}*/ 50%/*{bgErrorXPos}*/ 50%/*{bgErrorYPos}*/ repeat-x/*{bgErrorRepeat}*/; color: #cd0a0a/*{fcError}*/; }
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a/*{fcError}*/; }
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a/*{fcError}*/; }
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary,  .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }

/* Icons
----------------------------------*/

/* states and images */
.ui-icon { width: 16px; height: 16px; background-image: url(/local/templates/rcshop/css/images/ui-icons_222222_256x240.png)/*{iconsContent}*/; }
.ui-widget-content .ui-icon {background-image: url(/local/templates/rcshop/css/images/ui-icons_222222_256x240.png)/*{iconsContent}*/; }
.ui-widget-header .ui-icon {background-image: url(/local/templates/rcshop/css/images/ui-icons_222222_256x240.png)/*{iconsHeader}*/; }
.ui-state-default .ui-icon { background-image: url(/local/templates/rcshop/css/images/ui-icons_888888_256x240.png)/*{iconsDefault}*/; }
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(/local/templates/rcshop/css/images/ui-icons_454545_256x240.png)/*{iconsHover}*/; }
.ui-state-highlight .ui-icon {background-image: url(/local/templates/rcshop/css/images/ui-icons_2e83ff_256x240.png)/*{iconsHighlight}*/; }
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(/local/templates/rcshop/css/images/ui-icons_cd0a0a_256x240.png)/*{iconsError}*/; }

/* positioning */
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-off { background-position: -96px -144px; }
.ui-icon-radio-on { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay { background: #aaaaaa/*{bgColorOverlay}*/ url(/local/templates/rcshop/css/images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlOverlay}*/ 50%/*{bgOverlayXPos}*/ 50%/*{bgOverlayYPos}*/ repeat-x/*{bgOverlayRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityOverlay}*/; }
.ui-widget-shadow { margin: -8px/*{offsetTopShadow}*/ 0 0 -8px/*{offsetLeftShadow}*/; padding: 8px/*{thicknessShadow}*/; background: #aaaaaa/*{bgColorShadow}*/ url(/local/templates/rcshop/css/images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlShadow}*/ 50%/*{bgShadowXPos}*/ 50%/*{bgShadowYPos}*/ repeat-x/*{bgShadowRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityShadow}*/; -moz-border-radius: 8px/*{cornerRadiusShadow}*/; -khtml-border-radius: 8px/*{cornerRadiusShadow}*/; -webkit-border-radius: 8px/*{cornerRadiusShadow}*/; border-radius: 8px/*{cornerRadiusShadow}*/; }

ul li.ui-menu-item:before {
	display: none;
}

.bx_item_element_article span:first-child {
    color: #aeaeae;
}

.ui-state-active {
    background: transparent !important;
    border: none !important;
    color: inherit !important;
}
/* End */


/* Start:/local/templates/rcshop/css/catalog.item.fix.css?17319312492769*/
.product-card__inner {
    padding: 14px 0 14px 0;
}

/* favorites, compare */
.product-card__top {
    top: 23px;
    right: 16px;
}
/* product parts */
.product-card__features {
    position:  absolute;
    bottom: 0;
    padding: 0;
}
/* card image */
.product-card__img ,
.product-tabs__slider-item .product-card__img {
    height: 158px;
    height: 197px;
}
@media (min-width: 768px) {
    .product-card__img ,
    .product-tabs__slider-item .product-card__img {
        height: 164px;
    }
}
@media (min-width: 1024px) {
    .product-card__img {
        margin-bottom: 3px
    }
}
/*.product-card__inner:hover .product-card__img {
    margin-bottom: 3px;
}*/
.product-card__inner .product-card__title {
    margin-bottom: 3px;
}
@media (min-width: 1024px) {
    .product-card__inner:hover .product-card__img {
        margin-bottom: 3px;
    }
}

/* Размер карторчки товара */
.product-card {
    height: 347px;
}

/* Размер стрелок в слайдере */
.product-tabs__slider .slick-arrow {
    height: 342px;
}

.spinner, .js-spinner {
    height: 38px;
}

@media (min-width: 1024px) {
    .product-card__inner:hover .product-card__title {
        margin-bottom: 3px;
    }
    /*
      Обводка карточки товара. Перебивает значение height: auto,
      так как в мозиле и в хроме отображалось по-разному.
    */
    .product-card__inner:hover {
        height: calc(100% - -1px);
    }
}

/* Убирает расстояние между артикулом и ценами */
.product-card__info {
    padding-bottom: 0;
    display: block;
}
/* Расстояние между ценами и блоком добавления в корзину. */
@media (min-width: 1024px) {
    .product-card__inner .product-card__prices,
    .product-card__inner:hover .product-card__prices {
        padding-bottom: 7px;
    }
}

/* slider in product detail */
.product-tabs__slider .slick-list {
    height: 510px;
}
.rc-button {
    height: 38px;
}
/*
 Взято из main.css.
 По заданию менять мобильную вёрстку не требовалось.
*/
@media (max-width: 1023px) {
    .product-card {
        height: auto;
    }
    .product-card__inner {
        position: static;
        /*height: auto;*/
    }
    .product-card__title {
        margin-bottom: 5px;
        font-size: 14px;
        line-height: 20px;
        height: 62px;
    }
    .product-card__info {
        display: block;
        padding-bottom: 5px;
    }
}

/* product-detail spinner fix */
.rc-spinner-fix {
    height: auto;
}
/* End */


/* Start:/local/templates/rcshop/js/fancybox/jquery.fancybox-all-page.css?169952927015435*/
.fancybox-enabled {
    overflow: hidden; }

.fancybox-enabled body {
    overflow: visible;
    height: 100%; }

.fancybox-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99993;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }

.fancybox-container ~ .fancybox-container {
    z-index: 99992; }

.fancybox-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0f0f11;
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
    transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }

.fancybox-container--ready .fancybox-bg {
    opacity: .87;
    -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    z-index: 99994;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    direction: ltr; }

.fancybox-show-controls .fancybox-controls {
    opacity: 1; }

.fancybox-infobar {
    display: none; }

.fancybox-show-infobar .fancybox-infobar {
    display: inline-block;
    pointer-events: all; }

.fancybox-infobar__body {
    display: inline-block;
    width: 70px;
    line-height: 44px;
    font-size: 14px;
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
    text-align: center;
    color: #ddd;
    background-color: rgba(30, 30, 30, 0.7);
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: subpixel-antialiased; }

.fancybox-buttons {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    pointer-events: all; }

.fancybox-show-buttons .fancybox-buttons {
    display: block; }

.fancybox-slider-wrap {
    overflow: hidden;
    direction: ltr; }

.fancybox-slider, .fancybox-slider-wrap {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    z-index: 99993;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent; }

.fancybox-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    outline: none;
    white-space: normal;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    z-index: 99994;
    -webkit-overflow-scrolling: touch; }

.fancybox-slide:before {
    content: "";
    height: 100%;
    width: 0; }

.fancybox-slide:before, .fancybox-slide > * {
    display: inline-block;
    vertical-align: middle; }

.fancybox-slide > * {
    position: relative;
    padding: 24px;
    margin: 44px 0;
    border-width: 0;
    text-align: left;
    background-color: #fff;
    overflow: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }

.fancybox-slide--image {
    overflow: hidden; }

.fancybox-slide--image:before {
    display: none; }

.fancybox-content {
    display: inline-block;
    position: relative;
    margin: 44px auto;
    padding: 0;
    border: 0;
    width: 80%;
    height: calc(100% - 88px);
    vertical-align: middle;
    line-height: normal;
    text-align: left;
    white-space: normal;
    outline: none;
    font-size: 16px;
    font-family: Arial,sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch; }

.fancybox-iframe {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    width: 100%;
    height: 100%;
    background: #fff; }

.fancybox-slide--video .fancybox-content, .fancybox-slide--video .fancybox-iframe {
    background: transparent; }

.fancybox-placeholder {
    z-index: 99995;
    background: transparent;
    cursor: default;
    overflow: visible;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }

.fancybox-image, .fancybox-placeholder, .fancybox-spaceball {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    border: 0; }

.fancybox-image, .fancybox-spaceball {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    background: transparent;
    background-size: 100% 100%; }

.fancybox-controls--canzoomOut .fancybox-placeholder {
    cursor: -webkit-zoom-out;
    cursor: zoom-out; }

.fancybox-controls--canzoomIn .fancybox-placeholder {
    cursor: -webkit-zoom-in;
    cursor: zoom-in; }

.fancybox-controls--canGrab .fancybox-placeholder {
    cursor: -webkit-grab;
    cursor: grab; }

.fancybox-controls--isGrabbing .fancybox-placeholder {
    cursor: -webkit-grabbing;
    cursor: grabbing; }

.fancybox-spaceball {
    z-index: 1; }

.fancybox-tmp {
    position: absolute;
    top: -9999px;
    left: -9999px;
    visibility: hidden; }

.fancybox-error {
    position: absolute;
    margin: 0;
    padding: 40px;
    top: 50%;
    left: 50%;
    width: 380px;
    max-width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    cursor: default; }

.fancybox-error p {
    margin: 0;
    padding: 0;
    color: #444;
    font: 16px/20px Helvetica Neue,Helvetica,Arial,sans-serif; }

.fancybox-close-small {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    outline: none;
    background: transparent;
    z-index: 10;
    cursor: pointer; }

.fancybox-close-small:after {
    content: "×";
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    font: 20px/30px Arial,Helvetica Neue,Helvetica,sans-serif;
    color: #888;
    font-weight: 300;
    text-align: center;
    border-radius: 50%;
    border-width: 0;
    background: #fff;
    -webkit-transition: background .2s;
    transition: background .2s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 2; }

.fancybox-close-small:focus:after {
    outline: 1px dotted #888; }

.fancybox-slide--video .fancybox-close-small {
    top: -36px;
    right: -36px;
    background: transparent; }

.fancybox-close-small:hover:after {
    color: #555;
    background: #eee; }

.fancybox-caption-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 30px 0;
    z-index: 99998;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(20%, rgba(0, 0, 0, 0.1)), color-stop(40%, rgba(0, 0, 0, 0.2)), color-stop(80%, rgba(0, 0, 0, 0.6)), color-stop(80%, rgba(0, 0, 0, 0.8)));
    background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8));
    opacity: 0;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    pointer-events: none; }

.fancybox-show-caption .fancybox-caption-wrap {
    opacity: 1; }

.fancybox-caption {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
    color: #fff;
    line-height: 20px;
    -webkit-text-size-adjust: none; }

.fancybox-caption a, .fancybox-caption button {
    pointer-events: all; }

.fancybox-caption a {
    color: #fff;
    text-decoration: underline; }

.fancybox-button {
    display: inline-block;
    position: relative;
    width: 44px;
    height: 44px;
    line-height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    background: transparent;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: top;
    outline: none; }

.fancybox-button--disabled {
    cursor: default;
    pointer-events: none; }

.fancybox-button, .fancybox-infobar__body {
    background: rgba(30, 30, 30, 0.6); }

.fancybox-button:hover {
    background: rgba(0, 0, 0, 0.8); }

.fancybox-button:after, .fancybox-button:before {
    content: "";
    pointer-events: none;
    position: absolute;
    border-color: #fff;
    background-color: currentColor;
    color: currentColor;
    opacity: .9;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block; }

.fancybox-button--disabled:after, .fancybox-button--disabled:before {
    opacity: .5; }

.fancybox-button--left:after {
    left: 20px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg); }

.fancybox-button--left:after, .fancybox-button--right:after {
    top: 18px;
    width: 6px;
    height: 6px;
    background: transparent;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor; }

.fancybox-button--right:after {
    right: 20px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }

.fancybox-button--left {
    border-bottom-left-radius: 5px; }

.fancybox-button--right {
    border-bottom-right-radius: 5px; }

.fancybox-button--close {
    float: right; }

.fancybox-button--close:after, .fancybox-button--close:before {
    content: "";
    display: inline-block;
    position: absolute;
    height: 2px;
    width: 16px;
    top: calc(50% - 1px);
    left: calc(50% - 8px); }

.fancybox-button--close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }

.fancybox-button--close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg); }

.fancybox-loading {
    border: 6px solid rgba(99, 99, 99, 0.4);
    border-top: 6px solid rgba(255, 255, 255, 0.6);
    border-radius: 100%;
    height: 50px;
    width: 50px;
    -webkit-animation: a .8s infinite linear;
    animation: a .8s infinite linear;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    z-index: 99999; }

@-webkit-keyframes a {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg); }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg); } }

@keyframes a {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg); }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg); } }

.fancybox-button--fullscreen:before {
    width: 15px;
    height: 11px;
    left: 15px;
    top: 16px;
    border: 2px solid;
    background: none; }

.fancybox-button--play:before {
    top: 16px;
    left: 18px;
    width: 0;
    height: 0;
    border-top: 6px inset transparent;
    border-bottom: 6px inset transparent;
    border-left: 10px solid;
    border-radius: 1px;
    background: transparent; }

.fancybox-button--pause:before {
    top: 16px;
    left: 18px;
    width: 7px;
    height: 11px;
    border-style: solid;
    border-width: 0 2px;
    background: transparent; }

.fancybox-button--thumbs span {
    font-size: 23px; }

.fancybox-button--thumbs:before {
    top: 20px;
    left: 21px;
    width: 3px;
    height: 3px;
    -webkit-box-shadow: 0 -4px 0,-4px -4px 0,4px -4px 0,inset 0 0 0 32px,-4px 0 0,4px 0 0,0 4px 0,-4px 4px 0,4px 4px 0;
    box-shadow: 0 -4px 0,-4px -4px 0,4px -4px 0,inset 0 0 0 32px,-4px 0 0,4px 0 0,0 4px 0,-4px 4px 0,4px 4px 0; }

.fancybox-container--thumbs .fancybox-caption-wrap, .fancybox-container--thumbs .fancybox-controls, .fancybox-container--thumbs .fancybox-slider-wrap {
    right: 220px; }

.fancybox-thumbs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 220px;
    margin: 0;
    padding: 5px 5px 0 0;
    background: #fff;
    z-index: 99993;
    word-break: normal;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }

.fancybox-thumbs > ul {
    list-style: none;
    position: absolute;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 0; }

.fancybox-thumbs > ul > li {
    float: left;
    overflow: hidden;
    max-width: 50%;
    padding: 0;
    margin: 0;
    width: 105px;
    height: 75px;
    position: relative;
    cursor: pointer;
    outline: none;
    border: 5px solid #fff;
    border-top-width: 0;
    border-right-width: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }

li.fancybox-thumbs-loading {
    background: rgba(0, 0, 0, 0.1); }

.fancybox-thumbs > ul > li > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }

.fancybox-thumbs > ul > li:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 2px;
    border: 4px solid #4ea7f9;
    z-index: 99991;
    opacity: 0;
    -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
    opacity: 1; }

@media (max-width: 800px) {
    .fancybox-thumbs {
        display: none !important; }
    .fancybox-container--thumbs .fancybox-caption-wrap, .fancybox-container--thumbs .fancybox-controls, .fancybox-container--thumbs .fancybox-slider-wrap {
        right: 0; } 
}

@media (max-width: 800px) {
    .fancybox-controls {
        text-align: left; }
    .fancybox-button--left, .fancybox-button--right, .fancybox-buttons button:not(.fancybox-button--close) {
        display: none !important; }
    .fancybox-caption {
        padding: 20px 0;
        margin: 0; }
    }
/* End */


/* Start:/local/templates/rcshop/components/bitrix/menu/mb-menu/style.css?17168103424500*/
/*----- MB Menu -----*/
.mb-menu {
    display: flex;
    flex-direction: column;
	position: fixed;
	top: 0px;
	height: 100%;
    padding-top: 20px;
    padding-right: 25px;
    padding-bottom: 20px;
    padding-left: 25px;
	left: 0;
	overflow: hidden;
	z-index: 102;
	max-width: 320px;
    width: 100%;
	background-color: #fff;
    transition: transform .3s ease;
    transform: translateX(-100%);
    will-change: transform;
    -webkit-overflow-scrolling: touch;
}
@media (max-width: 767px) {
    .mb-menu {
        padding-top: 20px;
        padding-right: 15px;
        padding-bottom: 20px;
        padding-left: 15px;
    }
}

.mb-menu.active {
	transform: none;
}

.mb-menu__list {
	list-style: none;
}

.mb-menu__list li {
    position: relative;
    margin-bottom: 14px;
}

.mb-menu__list a {
	position: relative;
	display: block;
	font-size: 18px;
	color: #000;
	text-decoration: none !important;
}

.mb-menu__list > li > a {
    padding-bottom: 10px;
}

.f-bold {
    font-weight: bold !important;
}

.mb-menu__open-sub-menu {
    position: absolute;
    top: -5px;
    right: 0;
    width: 35px;
    height: 35px;
    border: 1px solid #d4d4d4;
    padding: 5px 8px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none !important;    
}

.mb-menu__sub-menu {
	display: none;
}

.mb-menu__sub-menu a {
	padding-left: 30px;
    font-weight: bold;
}

.mb-menu__sub-menu .mb-menu__sub-menu a {
	padding-left: 50px;
}

.mb-menu-overlay {
	position: fixed;
    visibility: hidden;
    opacity: 0;
    top: 0px;
    height: 100%;
    padding-bottom: 60px;
    left: 0;
    right: 0;
    z-index: 101;
    background: rgba(255, 115, 0, 0.8);
    cursor: pointer;
    transition:
        opacity 0.3s,
        visibility 0.3s;
}

.mb-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.not-scroll {
    overflow: hidden;
}

.mb-menu-head {
    display: flex;
    align-items: center;
    margin-top: -20px;
    margin-right: 0;
    margin-bottom: 10px;
    margin-left: -25px;
    gap: 10px;
}
@media (max-width: 767px) {
    .mb-menu-head {
        margin-top: -20px;
        margin-right: -15px;
        margin-left: 0;
        margin-bottom: 10px;
    }
}

.mb-menu-close {
    position: relative;
    display: flex;
    width: 72px;
    height: 72px;
    justify-content: center;
    align-items: center;
    color: #000000;
    cursor: pointer;
}
@media (max-width: 767px) {
    .mb-menu-close {
        width: auto;
        height: 50px;
    }
}

.mb-menu-close span {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 6px;
    background: transparent;
    vertical-align: bottom;
}
@media (max-width: 767px) {
    .mb-menu-close span {
        width: 24px;
        height: 2px;
    }
}

.mb-menu-close span:before,
.mb-menu-close span:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: currentcolor;
    border-radius: 5px;
    content: '';
}
@media (max-width: 767px) {
    .mb-menu-close span:before,
    .mb-menu-close span:after {
        height: 2px;
    }
}

.mb-menu-close span:before {
    transform: rotate(45deg);
}

.mb-menu-close span:after {
    transform: rotate(-45deg);
}

.mb-menu-auth {
    margin-bottom: 20px;
}

.mb-menu-auth a {
    font-size: 18px;
    color: #ff7300 !important;
    text-decoration: none !important;
}

.mb-menu-phone-wrap {
    text-align: center;
    margin-top: auto;
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mb-menu-phone {
    display: inline-block;
    width: 100%;
    color: #000;
    font: 700 21px "ubuntu";
    border: 5px solid #f77807;
    border-radius: 11px;
    padding: 7px 32px;
    text-align: center;
    white-space: nowrap;
}

.mb-menu-phone span:last-child {
    display: block;
    font-size: 16px;
    font-weight: normal;
    margin-top: -3px;
}

.mb-menu__list-wrap {
    height: 100%;
    max-height: 550px;
    flex-shrink: 0.4;
    margin: 12px -25px 0;
    padding: 10px 25px;
    overflow: auto;
}

.mb-menu__list-wrap.bg {
    background: #f6f6f6;
}

.mb-menu__list li:last-child {
    margin-bottom: 0;
}

.mb-menu__list-wrap > ul > li:last-child a {
    padding-bottom: 0;
}

/* End */


/* Start:/local/templates/rcshop/js/overlayScrollbars/OverlayScrollbars.css?156510850722418*/
/*!
 * OverlayScrollbars
 * https://github.com/KingSora/OverlayScrollbars
 *
 * Version: 1.6.3
 *
 * Copyright KingSora.
 * https://github.com/KingSora
 *
 * Released under the MIT license.
 * Date: 31.01.2019
 */

/*
OVERLAY SCROLLBARS CORE:
*/

html.os-html,
html.os-html > .os-host {
    display: block;
    overflow: hidden;
    box-sizing: border-box;
    height: 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    margin: 0 !important;
    position: absolute !important; /* could be position: fixed; but it causes issues on iOS (-webkit-overflow-scrolling: touch) */
}
html.os-html > .os-host > .os-padding {
    position: absolute; /* could be position: fixed; but it causes issues on iOS (-webkit-overflow-scrolling: touch) */
}
body.os-dragging,
body.os-dragging * {
    cursor: default;
}
.os-host,
.os-host-textarea {
    position: relative;
    overflow: visible !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
                -ms-grid-row-align: flex-start;
            align-items: flex-start;
}
.os-host-flexbox {
    overflow: hidden !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.os-host-flexbox > .os-size-auto-observer {
    height: inherit !important;
}
.os-host-flexbox > .os-content-glue {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.os-host-flexbox > .os-size-auto-observer,
.os-host-flexbox > .os-content-glue {
    min-height: 0;
    min-width: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
}
#os-dummy-scrollbar-size {
    position: fixed;
    opacity: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
    visibility: hidden;
    overflow: scroll;
    height: 500px;
    width: 500px;
}
#os-dummy-scrollbar-size > div {
    width: 200%;
    height: 200%; 
    margin: 10px 0;
}
#os-dummy-scrollbar-size,
.os-viewport {
    -ms-overflow-style: scrollbar !important;
}
.os-viewport-native-scrollbars-invisible#os-dummy-scrollbar-size::-webkit-scrollbar,
.os-viewport-native-scrollbars-invisible.os-viewport::-webkit-scrollbar,
.os-viewport-native-scrollbars-invisible#os-dummy-scrollbar-size::-webkit-scrollbar-corner,
.os-viewport-native-scrollbars-invisible.os-viewport::-webkit-scrollbar-corner {
    display: none !important;
    width: 0px !important;
    height: 0px !important;
    visibility: hidden !important;
    background: transparent !important;
}
.os-content-glue {
    box-sizing: inherit;
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    pointer-events: none;
}
.os-padding {
    box-sizing: inherit;
    direction: inherit;
    position: absolute;
    overflow: visible;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: auto !important;
    height: auto !important;
    z-index: 1;
}
.os-host-overflow > .os-padding {
    overflow: hidden;
}
.os-viewport {
    direction: inherit !important;
    box-sizing: inherit !important;
    resize: none !important;
    outline: none !important;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
}
.os-content-arrange {
    position: absolute;
    z-index: -1;
    min-height: 1px;
    min-width: 1px;
    pointer-events: none;
}
.os-content {
    direction: inherit;
    box-sizing: border-box !important;
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    height: 100%;
    width: 100%;
    visibility: visible;
}
.os-content > .os-textarea {
    box-sizing: border-box !important;
    direction: inherit !important;
    background: transparent !important;
    outline: 0px none transparent !important;
    overflow: hidden !important;
    position: absolute !important;
    display: block !important;
    top: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    border-radius: 0px !important;
    float: none !important;
    -webkit-filter: none !important;
            filter: none !important;
    border: none !important;
    resize: none !important;
    -webkit-transform: none !important;
            transform: none !important;
    max-width: none !important;
    max-height: none !important;
    box-shadow: none !important;
    -webkit-perspective: none !important;
            perspective: none !important;
    opacity: 1 !important;
    z-index: 1 !important;
    clip: auto !important;
    vertical-align: baseline !important;
    padding: 0px;
}
.os-host-rtl > .os-padding > .os-viewport > .os-content > .os-textarea {
    right: 0 !important;
}
.os-content > .os-textarea-cover {
    z-index: -1;
    pointer-events: none;
}
.os-content > .os-textarea[wrap='off'] {
    white-space: pre !important;
    margin: 0px !important;
}
.os-text-inherit {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-transform: inherit;
    text-decoration: inherit;
    text-indent: inherit;
    text-align: inherit;
    text-shadow: inherit;
    text-overflow: inherit;
    letter-spacing: inherit;
    word-spacing: inherit;
    line-height: inherit;
    unicode-bidi: inherit;
    direction: inherit;
    color: inherit;
    cursor: text;
}
.os-resize-observer,
.os-resize-observer-host {
    box-sizing: inherit;
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}
.os-resize-observer-host {
    padding: inherit;
    border: inherit;
    border-color: transparent;
    border-style: solid;
    box-sizing: border-box;
}
.os-resize-observer-host:after {
    content: '';
}
.os-resize-observer-host > .os-resize-observer,
.os-resize-observer-host:after {
    height: 200%;
    width: 200%;
    padding: inherit;
    border: inherit;
    margin: 0px;
    display: block;
    box-sizing: content-box;
}
.os-resize-observer.observed,
object.os-resize-observer {
    box-sizing: border-box !important;
}
.os-size-auto-observer {
    box-sizing: inherit !important;
    height: 100%;
    width: inherit;
    max-width: 1px;
    position: relative;
    float: left;
    max-height: 1px;
    overflow: hidden;
    z-index: -1;
    padding: 0;
    margin: 0;
    pointer-events: none;
    -webkit-box-flex: inherit;
        -ms-flex-positive: inherit;
            flex-grow: inherit;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
}
.os-size-auto-observer > .os-resize-observer {
    width: 1000%;
    height: 1000%;
    min-height: 1px;
    min-width: 1px;
}
.os-resize-observer-item {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
    opacity: 0;
    direction: ltr !important;
    -webkit-box-flex: 0 !important;
    -ms-flex: none !important;
    flex: none !important;
}
.os-resize-observer-item-final {
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-box-flex: 0 !important;
    -ms-flex: none !important;
    flex: none !important;
}
.os-resize-observer {
    -webkit-animation-duration: 0.001s;
    animation-duration: 0.001s;
    -webkit-animation-name: hs-resize-observer-dummy-animation;
    animation-name: hs-resize-observer-dummy-animation;
}

/*
CUSTOM SCROLLBARS AND CORNER CORE:
*/

.os-host-transition > .os-scrollbar,
.os-host-transition > .os-scrollbar-corner {
    -webkit-transition: opacity 0.3s, visibility 0.3s, top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
    transition: opacity 0.3s, visibility 0.3s, top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
}
html.os-html > .os-host > .os-scrollbar {
    position: absolute; /* could be position: fixed; but it causes issues on iOS (-webkit-overflow-scrolling: touch) */
    z-index: 999999; /* highest z-index of the page */
}
.os-scrollbar,
.os-scrollbar-corner {
    position: absolute;
    opacity: 1;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
    z-index: 1;
}
.os-scrollbar-corner {
    bottom: 0;
    right: 0;
}
.os-scrollbar {
    pointer-events: none;
}
.os-scrollbar-track {
    pointer-events: auto;
    position: relative;
    height: 100%;
    width: 100%;
    padding: 0 !important;
    border: none !important;
}
.os-scrollbar-handle {
    pointer-events: auto;
    position: absolute;
    width: 100%;
    height: 100%;
}
.os-scrollbar-handle-off,
.os-scrollbar-track-off {
    pointer-events: none;
}
.os-scrollbar.os-scrollbar-unusable,
.os-scrollbar.os-scrollbar-unusable * {
    pointer-events: none !important;
}
.os-scrollbar.os-scrollbar-unusable .os-scrollbar-handle {
    opacity: 0 !important;
}
.os-scrollbar-horizontal {
    bottom: 0;
    left: 0;
}
.os-scrollbar-vertical {
    top: 0;
    right: 0;
}
.os-host-rtl > .os-scrollbar-horizontal {
    right: 0;
}
.os-host-rtl > .os-scrollbar-vertical {
    right: auto;
    left: 0;
}
.os-host-rtl > .os-scrollbar-corner {
    right: auto;
    left: 0;
}
.os-scrollbar-auto-hidden,
.os-padding + .os-scrollbar-corner,
.os-host-resize-disabled.os-host-scrollbar-horizontal-hidden > .os-scrollbar-corner,
.os-host-scrollbar-horizontal-hidden > .os-scrollbar-horizontal,
.os-host-resize-disabled.os-host-scrollbar-vertical-hidden > .os-scrollbar-corner,
.os-host-scrollbar-vertical-hidden > .os-scrollbar-vertical,
.os-scrollbar-horizontal.os-scrollbar-auto-hidden + .os-scrollbar-vertical + .os-scrollbar-corner,
.os-scrollbar-horizontal + .os-scrollbar-vertical.os-scrollbar-auto-hidden + .os-scrollbar-corner,
.os-scrollbar-horizontal.os-scrollbar-auto-hidden + .os-scrollbar-vertical.os-scrollbar-auto-hidden + .os-scrollbar-corner {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.os-scrollbar-corner-resize-both {
    cursor: nwse-resize;
}
.os-host-rtl > .os-scrollbar-corner-resize-both {
    cursor: nesw-resize;
}
.os-scrollbar-corner-resize-horizontal {
    cursor: ew-resize;
}
.os-scrollbar-corner-resize-vertical {
    cursor: ns-resize;
}
.os-dragging .os-scrollbar-corner.os-scrollbar-corner-resize {
    cursor: default;
}
.os-host-resize-disabled.os-host-scrollbar-horizontal-hidden > .os-scrollbar-vertical {
    top: 0;
    bottom: 0;
}
.os-host-resize-disabled.os-host-scrollbar-vertical-hidden > .os-scrollbar-horizontal,
.os-host-rtl.os-host-resize-disabled.os-host-scrollbar-vertical-hidden > .os-scrollbar-horizontal {
    right: 0;
    left: 0;
}
.os-scrollbar:hover,
.os-scrollbar-corner.os-scrollbar-corner-resize {
    opacity: 1 !important;
    visibility: visible !important;
}
.os-scrollbar-corner.os-scrollbar-corner-resize {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB3aWR0aD0iMTAiICAgaGVpZ2h0PSIxMCIgICB2ZXJzaW9uPSIxLjEiPiAgPGcgICAgIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAsLTEwNDIuMzYyMikiICAgICBzdHlsZT0iZGlzcGxheTppbmxpbmUiPiAgICA8cGF0aCAgICAgICBzdHlsZT0iZmlsbDojMDAwMDAwO2ZpbGwtb3BhY2l0eTowLjQ5NDExNzY1O2ZpbGwtcnVsZTpldmVub2RkO3N0cm9rZTpub25lIiAgICAgICBkPSJtIDcuNDI0MjE4NywxMDQyLjM2MjIgYyAtMC43MjM1NzkyLDAgLTEuMzEwMTU2MiwwLjU4NjYgLTEuMzEwMTU2MiwxLjMxMDIgMCwwLjI5OSAwLjEwNDM0MTksMC41NzEgMC4yNzI5NDkyLDAuNzkxNSAwLjIwOTEwMjQsMC4xNDEzIDAuNDY1NjIwNiwwLjIxODQgMC43MzY5NjI5LDAuMjE4NCAwLjcyMzU3OTMsMCAxLjMxMDE1NjMsLTAuNTg2NiAxLjMxMDE1NjMsLTEuMzEwMiAwLC0wLjI3MTMgLTAuMDc3MDkzLC0wLjUyNzggLTAuMjE4MzU5NCwtMC43MzcgLTAuMjIwNDk0MSwtMC4xNjg2IC0wLjQ5MjU0NDMsLTAuMjcyOSAtMC43OTE1NTI4LC0wLjI3MjkgeiBtIDAsMy4wODQzIGMgLTAuNzIzNTc5MiwwIC0xLjMxMDE1NjIsMC41ODY2IC0xLjMxMDE1NjIsMS4zMTAyIDAsMC4yOTkgMC4xMDQzNDE5LDAuNTcxIDAuMjcyOTQ5MiwwLjc5MTUgMC4yMDkxMDI0LDAuMTQxMyAwLjQ2NTYyMDYsMC4yMTg0IDAuNzM2OTYyOSwwLjIxODQgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjYgMS4zMTAxNTYzLC0xLjMxMDIgMCwtMC4yNzEzIC0wLjA3NzA5MywtMC41Mjc4IC0wLjIxODM1OTQsLTAuNzM2OSAtMC4yMjA0OTQxLC0wLjE2ODYgLTAuNDkyNTQ0MywtMC4yNzMgLTAuNzkxNTUyOCwtMC4yNzMgeiBtIC0zLjA4NDMyNjEsMCBjIC0wLjcyMzU3OTMsMCAtMS4zMTAxNTYzLDAuNTg2NiAtMS4zMTAxNTYzLDEuMzEwMiAwLDAuMjk5IDAuMTA0MzQxOSwwLjU3MSAwLjI3Mjk0OTIsMC43OTE1IDAuMjA5MTAyNCwwLjE0MTMgMC40NjU2MjA3LDAuMjE4NCAwLjczNjk2MjksMC4yMTg0IDAuNzIzNTc5MywwIDEuMzEwMTU2MywtMC41ODY2IDEuMzEwMTU2MywtMS4zMTAyIDAsLTAuMjcxMyAtMC4wNzcwOTMsLTAuNTI3OCAtMC4yMTgzNTk0LC0wLjczNjkgLTAuMjIwNDk0LC0wLjE2ODYgLTAuNDkyNTQ0MiwtMC4yNzMgLTAuNzkxNTUyNywtMC4yNzMgeiBtIC0zLjAyOTczNjQsMy4wMjk4IEMgMC41ODY1NzY5MywxMDQ4LjQ3NjMgMCwxMDQ5LjA2MjggMCwxMDQ5Ljc4NjQgYyAwLDAuMjk5IDAuMTA0MzQxOSwwLjU3MTEgMC4yNzI5NDkyMiwwLjc5MTYgMC4yMDkxMDIyOSwwLjE0MTIgMC40NjU2MjA2NSwwLjIxODMgMC43MzY5NjI4OCwwLjIxODMgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjUgMS4zMTAxNTYzLC0xLjMxMDEgMCwtMC4yNzE0IC0wLjA3NzA5MywtMC41Mjc5IC0wLjIxODM1OTQsLTAuNzM3IC0wLjIyMDQ5NDEsLTAuMTY4NiAtMC40OTI1NDQzLC0wLjI3MjkgLTAuNzkxNTUyOCwtMC4yNzI5IHogbSAzLjAyOTczNjQsMCBjIC0wLjcyMzU3OTMsMCAtMS4zMTAxNTYzLDAuNTg2NSAtMS4zMTAxNTYzLDEuMzEwMSAwLDAuMjk5IDAuMTA0MzQxOSwwLjU3MTEgMC4yNzI5NDkyLDAuNzkxNiAwLjIwOTEwMjQsMC4xNDEyIDAuNDY1NjIwNywwLjIxODMgMC43MzY5NjI5LDAuMjE4MyAwLjcyMzU3OTMsMCAxLjMxMDE1NjMsLTAuNTg2NSAxLjMxMDE1NjMsLTEuMzEwMSAwLC0wLjI3MTQgLTAuMDc3MDkzLC0wLjUyNzkgLTAuMjE4MzU5NCwtMC43MzcgLTAuMjIwNDk0LC0wLjE2ODYgLTAuNDkyNTQ0MiwtMC4yNzI5IC0wLjc5MTU1MjcsLTAuMjcyOSB6IG0gMy4wODQzMjYxLDAgYyAtMC43MjM1NzkyLDAgLTEuMzEwMTU2MiwwLjU4NjUgLTEuMzEwMTU2MiwxLjMxMDEgMCwwLjI5OSAwLjEwNDM0MTksMC41NzExIDAuMjcyOTQ5MiwwLjc5MTYgMC4yMDkxMDI0LDAuMTQxMiAwLjQ2NTYyMDYsMC4yMTgzIDAuNzM2OTYyOSwwLjIxODMgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjUgMS4zMTAxNTYzLC0xLjMxMDEgMCwtMC4yNzE0IC0wLjA3NzA5MywtMC41Mjc5IC0wLjIxODM1OTQsLTAuNzM3IC0wLjIyMDQ5NDEsLTAuMTY4NiAtMC40OTI1NDQzLC0wLjI3MjkgLTAuNzkxNTUyOCwtMC4yNzI5IHoiLz4gIDwvZz4gIDxnICAgICBzdHlsZT0iZGlzcGxheTppbmxpbmUiPiAgICA8cGF0aCAgICAgICBzdHlsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO2ZpbGwtcnVsZTpldmVub2RkO3N0cm9rZTpub25lIiAgICAgICBkPSJtIDguMjE1NzcxNSwwLjI3Mjk0OTIyIGMgMC4xNDEyNjY3LDAuMjA5MTAyMjkgMC4yMTgzNTk0LDAuNDY1NjIwNjUgMC4yMTgzNTk0LDAuNzM2OTYyODggMCwwLjcyMzU3OTMgLTAuNTg2NTc3LDEuMzEwMTU2MyAtMS4zMTAxNTYzLDEuMzEwMTU2MyAtMC4yNzEzNDIzLDAgLTAuNTI3ODYwNSwtMC4wNzcwOTMgLTAuNzM2OTYyOSwtMC4yMTgzNTk0IDAuMjM5NDEwNCwwLjMxMzA4NTkgMC42MTI2MzYyLDAuNTE4NjAzNSAxLjAzNzIwNywwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDc2IC0wLjIwNTUxNzYsLTAuNzk3Nzk2NTkgLTAuNTE4NjAzNSwtMS4wMzcyMDY5OCB6IG0gMCwzLjA4NDMyNjE4IGMgMC4xNDEyNjY3LDAuMjA5MTAyMyAwLjIxODM1OTQsMC40NjU2MjA2IDAuMjE4MzU5NCwwLjczNjk2MjkgMCwwLjcyMzU3OTMgLTAuNTg2NTc3LDEuMzEwMTU2MiAtMS4zMTAxNTYzLDEuMzEwMTU2MiAtMC4yNzEzNDIzLDAgLTAuNTI3ODYwNSwtMC4wNzcwOTMgLTAuNzM2OTYyOSwtMC4yMTgzNTkzIDAuMjM5NDEwNCwwLjMxMzA4NTkgMC42MTI2MzYyLDAuNTE4NjAzNSAxLjAzNzIwNywwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NiwtMC43OTc3OTY3IC0wLjUxODYwMzUsLTEuMDM3MjA3IHogbSAtMy4wODQzMjYyLDAgYyAwLjE0MTI2NjcsMC4yMDkxMDIzIDAuMjE4MzU5NCwwLjQ2NTYyMDYgMC4yMTgzNTk0LDAuNzM2OTYyOSAwLDAuNzIzNTc5MyAtMC41ODY1NzcsMS4zMTAxNTYyIC0xLjMxMDE1NjMsMS4zMTAxNTYyIC0wLjI3MTM0MjIsMCAtMC41Mjc4NjA1LC0wLjA3NzA5MyAtMC43MzY5NjI5LC0wLjIxODM1OTMgMC4yMzk0MTA0LDAuMzEzMDg1OSAwLjYxMjYzNjMsMC41MTg2MDM1IDEuMDM3MjA3MSwwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYyLC0wLjU4NjU3NyAxLjMxMDE1NjIsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NSwtMC43OTc3OTY3IC0wLjUxODYwMzUsLTEuMDM3MjA3IHogTSAyLjEwMTcwOSw2LjM4NzAxMTcgYyAwLjE0MTI2NjcsMC4yMDkxMDI0IDAuMjE4MzU5NCwwLjQ2NTYyMDYgMC4yMTgzNTk0LDAuNzM2OTYyOSAwLDAuNzIzNTc5MyAtMC41ODY1NzcsMS4zMTAxNTYzIC0xLjMxMDE1NjMsMS4zMTAxNTYzIC0wLjI3MTM0MjIzLDAgLTAuNTI3ODYwNTksLTAuMDc3MDkzIC0wLjczNjk2Mjg4LC0wLjIxODM1OTQgMC4yMzk0MTAzOSwwLjMxMzA4NTkgMC42MTI2MzYyMiwwLjUxODYwMzUgMS4wMzcyMDY5OCwwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NiwtMC43OTc3OTY2IC0wLjUxODYwMzUsLTEuMDM3MjA3IHogbSAzLjAyOTczNjMsMCBjIDAuMTQxMjY2NywwLjIwOTEwMjQgMC4yMTgzNTk0LDAuNDY1NjIwNiAwLjIxODM1OTQsMC43MzY5NjI5IDAsMC43MjM1NzkzIC0wLjU4NjU3NywxLjMxMDE1NjMgLTEuMzEwMTU2MywxLjMxMDE1NjMgLTAuMjcxMzQyMiwwIC0wLjUyNzg2MDUsLTAuMDc3MDkzIC0wLjczNjk2MjksLTAuMjE4MzU5NCAwLjIzOTQxMDQsMC4zMTMwODU5IDAuNjEyNjM2MywwLjUxODYwMzUgMS4wMzcyMDcxLDAuNTE4NjAzNSAwLjcyMzU3OTMsMCAxLjMxMDE1NjIsLTAuNTg2NTc3IDEuMzEwMTU2MiwtMS4zMTAxNTYzIDAsLTAuNDI0NTcwOCAtMC4yMDU1MTc1LC0wLjc5Nzc5NjYgLTAuNTE4NjAzNSwtMS4wMzcyMDcgeiBtIDMuMDg0MzI2MiwwIGMgMC4xNDEyNjY3LDAuMjA5MTAyNCAwLjIxODM1OTQsMC40NjU2MjA2IDAuMjE4MzU5NCwwLjczNjk2MjkgMCwwLjcyMzU3OTMgLTAuNTg2NTc3LDEuMzEwMTU2MyAtMS4zMTAxNTYzLDEuMzEwMTU2MyAtMC4yNzEzNDIzLDAgLTAuNTI3ODYwNSwtMC4wNzcwOTMgLTAuNzM2OTYyOSwtMC4yMTgzNTk0IDAuMjM5NDEwNCwwLjMxMzA4NTkgMC42MTI2MzYyLDAuNTE4NjAzNSAxLjAzNzIwNywwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NiwtMC43OTc3OTY2IC0wLjUxODYwMzUsLTEuMDM3MjA3IHoiIC8+ICA8L2c+PC9zdmc+);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    pointer-events: auto !important;
}
.os-host-rtl > .os-scrollbar-corner.os-scrollbar-corner-resize {
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}
.os-host-overflow {
    overflow: hidden !important;
}
.os-host-overflow-x {
} 
.os-host-overflow-y {
} 
@-webkit-keyframes hs-resize-observer-dummy-animation {
    from {
        z-index: 0;
    }
    to {
        z-index: -1;
    }
}
@keyframes hs-resize-observer-dummy-animation {
    from {
        z-index: 0;
    }
    to {
        z-index: -1;
    }
}

/*
THEMES:
*/

/* NONE THEME: */
.os-theme-none > .os-scrollbar-horizontal,
.os-theme-none > .os-scrollbar-vertical,
.os-theme-none > .os-scrollbar-corner {
    display: none !important;
}
.os-theme-none > .os-scrollbar-corner-resize {
    display: block !important;
    min-width: 10px;
    min-height: 10px;
}
/* DARK & LIGHT THEME: */
.os-theme-dark > .os-scrollbar-horizontal,
.os-theme-light > .os-scrollbar-horizontal {
    right: 10px;
    height: 10px;
}
.os-theme-dark > .os-scrollbar-vertical,
.os-theme-light > .os-scrollbar-vertical {
    bottom: 10px;
    width: 8px;
}
.os-theme-dark.os-host-rtl > .os-scrollbar-horizontal,
.os-theme-light.os-host-rtl > .os-scrollbar-horizontal {
    left: 10px;
    right: 0;
}
.os-theme-dark > .os-scrollbar-corner,
.os-theme-light > .os-scrollbar-corner {
    height: 10px;
    width: 10px;
}
.os-theme-dark > .os-scrollbar-corner,
.os-theme-light > .os-scrollbar-corner {
    background-color: transparent;
}
.os-theme-dark > .os-scrollbar,
.os-theme-light > .os-scrollbar {
    padding: 2px;
    box-sizing: border-box;
    background: transparent;
}
.os-theme-dark > .os-scrollbar.os-scrollbar-unusable,
.os-theme-light > .os-scrollbar.os-scrollbar-unusable {
    background: transparent;
}
.os-theme-dark > .os-scrollbar > .os-scrollbar-track,
.os-theme-light > .os-scrollbar > .os-scrollbar-track {
    background: transparent;
}
.os-theme-dark > .os-scrollbar-horizontal > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-light > .os-scrollbar-horizontal > .os-scrollbar-track > .os-scrollbar-handle {
    min-width: 30px;
}
.os-theme-dark > .os-scrollbar-vertical > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-light > .os-scrollbar-vertical > .os-scrollbar-track > .os-scrollbar-handle {
    min-height: 30px;
}
.os-theme-dark.os-host-transition > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-light.os-host-transition > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
    background: #ff7300;
}
.os-theme-light > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
    background: rgba(255, 255, 255, 0.4);
}
.os-theme-dark > .os-scrollbar:hover > .os-scrollbar-track > .os-scrollbar-handle {
    background: rgba(0, 0, 0, .55);
}
.os-theme-light > .os-scrollbar:hover > .os-scrollbar-track > .os-scrollbar-handle {
    background: rgba(255, 255, 255, .55);
}
.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle.active {
    background: #ff7300;
}
.os-theme-light > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle.active {
    background: #ff7300;
}
.os-theme-dark > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-dark > .os-scrollbar-vertical .os-scrollbar-handle:before,
.os-theme-light > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-light > .os-scrollbar-vertical .os-scrollbar-handle:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
}
.os-theme-dark.os-host-scrollbar-horizontal-hidden > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-dark.os-host-scrollbar-vertical-hidden > .os-scrollbar-vertical .os-scrollbar-handle:before,
.os-theme-light.os-host-scrollbar-horizontal-hidden > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-light.os-host-scrollbar-vertical-hidden > .os-scrollbar-vertical .os-scrollbar-handle:before {
    display: none;
}
.os-theme-dark > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-light > .os-scrollbar-horizontal .os-scrollbar-handle:before {
    top: -6px;
    bottom: -2px;
}
.os-theme-dark > .os-scrollbar-vertical .os-scrollbar-handle:before,
.os-theme-light > .os-scrollbar-vertical .os-scrollbar-handle:before {
    left: -6px;
    right: -2px;
}
.os-host-rtl.os-theme-dark > .os-scrollbar-vertical .os-scrollbar-handle:before,
.os-host-rtl.os-theme-light > .os-scrollbar-vertical .os-scrollbar-handle:before {
    right: -6px;
    left: -2px;
}

/* End */


/* Start:/local/templates/rcshop/components/bitrix/menu/top-menu-1/style.css?16995298201909*/
.main-sub-menu {
    position: absolute;
    top: 100%;
    left: -29px;
    z-index: 2;
    min-width: 290px;
    padding: 20px 30px 10px;
    visibility: hidden;
    opacity: 0;
    background-color: #000;
    -webkit-transition: padding .2s;
            transition: padding .2s;
}

.main-sub-menu li {
    margin-bottom: 16px;
}

.main-sub-menu li:last-child {
    margin-bottom: 10px;
}

.main-sub-menu a {
    display: block;
    color: #c4c4c4;
    font-weight: bold;
    transition:
        color 0.3s,
        transform 0.3s;
}

.header__top-list-item:first-child .header__top-list-link {
    font-weight: bold;
}

.header__top-list-item {
    position: relative;
    /*height: 100%;*/
}

@media (min-width: 1024px) {
    .header__top-list-link {
        line-height: 50px;
    }
    .header__top-list-item:hover .header__top-list-link {
        color: #fff;
    }
    .header__top-list {
        margin: -10px 0;
    }
    .header__top-list-item:hover .main-sub-menu {
        display: block;
        visibility: visible;
        opacity: 1;
        padding-top: 10px;
    }
    .main-sub-menu a:hover {
        color: #fff;
        transform: translateX(5px);
    }
}

@media (max-width: 1300px) {
    .main-sub-menu {
        top: calc(100% - 5px);
    }
}

.mb-sub-menu {
    display: none;
}

@media (max-width: 1023px) {
    .main-sub-menu {
        display: none;
        visibility: visible;
        opacity: 1;
        background-color: #fff;
        box-shadow: 0 0 8px rgba(9, 9, 9, 0.2);
    }
    .main-sub-menu a {
        color: #000000;
    }
    .mb-sub-menu {
        position: absolute;
        right: 0;
        top: 6px;
        display: block;
        width: 35px;
        height: 35px;
        border: 1px solid #d4d4d4;
        padding: 3px 8px;
        border-radius: 4px;
    }
}

/* End */


/* Start:/local/templates/rcshop/components/arturgolubev/search.title/clever_search/style.css?17168103424482*/
.title-search-result {
    z-index: 999999999 !important;
}

.bx-searchtitle {
    margin: 10px 0 0;
}
.bx-searchtitle .bx-block-title {
    font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #343434;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 9px;
    font-weight: 600;
}
.bx-searchtitle .bx-input-group {
    position: relative;
    display: table;
    border-collapse: separate;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.bx-searchtitle .bx-input-group {}
.bx-searchtitle .bx-input-group .bx-form-control {
    display: table-cell;
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #f8fafc;
    border: 1px solid #d5dadc;
    border-right: none;
    border-radius: 2px 0 0 2px;
    outline: none;
    box-shadow: none !important;
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.bx-ios .bx-searchtitle .bx-input-group .bx-form-control {
    background-image: -webkit-linear-gradient(#f8fafc 0%, #f8fafc 100%);
    background-image: linear-gradient(#f8fafc 0%, #f8fafc 100%);
}
.bx-searchtitle .bx-input-group-btn {
    position: relative;
    font-size: 0;
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
    display: table-cell;
}
.bx-searchtitle .bx-input-group-btn button {
    position: relative;
    border: none;
    background: #95a1a8;
    display: inline-block;
    margin-bottom: 0;
    cursor: pointer;
    padding:6px 12px;
    border-radius: 0 2px 2px 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.42857143;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.bx-searchtitle .bx-input-group-btn button:hover {
    background: #1484CE;
}


div.title-search-result {
    display:none;
    z-index: 999;
    min-width: 370px;
    margin-top: -2px;
    background-color: #FFF;
}

div.title-search-fader {
    display:none;
    background-image: url('/local/templates/rcshop/components/arturgolubev/search.title/clever_search/images/fader.png');
    background-position: right top;
    background-repeat: repeat-y;
    position:absolute;
}

p.title-search-preview {
    font-size:12px;
}
div.title-search-result td.title-search-price span {
    font-size: 26px;
}

.bx_searche .bx_img_element{
    background: #fafafa;
    float: left;
    width: 67px;
    padding: 5px 10px;
    position: absolute;
    top: 0;
    bottom: 0;
}
@media (max-width: 767px) {
	.bx_searche .bx_img_element{
        width: 80px;
    }
}
.bx_searche .bx_item_block{
    min-height: 65px;
    position: relative
}
.bx_searche .bx_image{
    width: 45px;
    height: 45px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #e8e8e8;
}
@media (max-width: 767px) {
    .bx_searche .bx_image{
        width: 60px;
        height: 60px;
    }
}
.bx_searche .bx_item_element{
    padding-left: 10px;
    margin-left: 70px;
}
.bx_searche .bx_item_element hr{
    margin: 0;
    border: none;
    border-bottom: 1px solid #e5e5e5;
}
.bx_searche .bx_item_element a{
    display: inline-block;
    padding: 0;
    color: #4788cb;
    font-size: 13px;
    text-decoration: none;
}
.bx_searche .bx_item_element a b{color: #000;font-weight: normal;}
.bx_searche .bx_item_element a:hover,
.bx_searche .bx_item_element a:hover b{text-decoration: underline;}
.bx_searche .bx_price{
    font-weight:bold;
    font-size:13px;
}
.bx_searche .bx_price .old{
    font-weight:normal;
    text-decoration: line-through;
    color: #636363
}
.bx_item_block.all_result{min-height:0}
.bx_item_block.others_result{
    min-height: 0;
    padding: 0 0 12px;
    line-height: 12px;
}
.bx_item_block.all_result .all_result_title{
    display: block;
    font-size: 12px;
    color: #a7a7a7;
    padding-top: 15px;
    padding-bottom: 10px;
}
.bx_item_block.all_result .all_result_title a{color: #a7a7a7}
.bx_item_block.all_result .all_result_title a:hover{color: #4788cb}
.bx_item_block.all_result a{
    margin-top: 0;
}
/* End */


/* Start:/local/templates/rcshop/components/bitrix/menu/section_menu/style.css?16995298201220*/
.nav__list-item {
    position: relative;
}

.main-nav__sub-menu {
    position: absolute;
    top: 100%;
    left: -1px;
    z-index: 2;
    padding: 8px 0 8px;
    min-width: 320px;
    border: 1px solid #e7e7e7;
    font-size: 14px;
    visibility: hidden;
    opacity: 0;
    background-color: #fff;
}

.main-nav__sub-menu li {
    transform: translateY(7px);
    transition: transform 0.3s;
}

.nav__list-item:hover .main-nav__sub-menu li {
    transform: translateY(0px);
}

.main-nav__sub-menu a {
    display: block;
    padding: 11px 20px 12px 29px;
    color: #717171;
    line-height: 16px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.nav__list-item:hover .main-nav__sub-menu {
    display: block;
    visibility: visible;
    opacity: 1;
}

.main-nav__sub-menu a:hover {
    background: #f6f6f6;
}

.nav__list-item:last-child .main-nav__sub-menu {
    right: -1px;
    left: auto;
}

@media (max-width: 1670px) {
    .main-nav__sub-menu {
        min-width: 210px;
    }
    .main-nav__sub-menu a {
        font-size: 14px;
        line-height: 1;
        padding: 8px 15px 9px 20px;
    }
}
@media (max-width: 1023px) {
    .main-nav__sub-menu {
        display: none !important;
    }
}
/* End */


/* Start:/bitrix/components/richcode/catalogizator/templates/.default/style.css?1560954187119*/
.cut-long-name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    white-space: nowrap;
}
/* End */


/* Start:/local/templates/rcshop/components/bitrix/menu/catalogizator/style.min.css?1565108507490*/
ul.left-menu{list-style:none;margin:0;padding:0;margin-bottom:8px;position:relative}ul.left-menu li{padding:10px 16px;background:#f5f5f5 url(/local/templates/rcshop/components/bitrix/menu/catalogizator/images/left_menu_bg.gif) top repeat-x}ul.left-menu li a{font-size:100%;color:#bc262c;font-weight:bold;text-decoration:none}ul.left-menu li a:visited{color:#bc262c}ul.left-menu li a:hover{color:#bc262c}ul.left-menu li a.selected:link,ul.left-menu li a.selected:visited,ul.left-menu li a.selected:active,ul.left-menu li a.selected:hover{color:#fc8d3d}
/* End */


/* Start:/local/templates/rcshop/components/bitrix/system.auth.form/rcstore-auth/style.css?156510850792*/
.inline {display: inline;}
.logout-button{
    font-size: 14px;
    padding: 3px 14px;
}
/* End */


/* Start:/local/templates/rcshop/components/oscompany/opt.register/modal-reg-company-only/style.css?17479071592950*/
.modal-reg {
    margin-top: -17px;
}

.modal-reg__caption {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	padding: 0;
	margin-bottom: 15px;
}

.modal-reg__caption li {
    display: inline-block;
    letter-spacing: normal;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    margin-right: 30px;
    cursor: pointer;
	color: #404041;
}


.modal-reg__caption li.active {
	color: #ff7300;
}

.modal-reg__item {
	display: none;
    font-size: 13pt;
}

.modal-reg__item p {
    padding-top: 10px;
    padding-bottom: 30px;
    white-space: nowrap;
}

@media screen and (max-width: 767px) {
    .modal-reg__caption {
        margin-top: 15px;
    }
}


@media screen and (min-width: 769px) and (max-width: 2560px) {
    .modal-reg__item p {
        font-size: 14pt;
    }
}

@media screen and (width: 768px) {
    .modal-reg__item p {
        font-size: 14pt;
    }
}

@media screen and (min-width: 426px) and (max-width: 767px) {
    .modal-reg__item p {
        font-size: 15pt;
    }
}

@media screen and (width: 425px) {
    .modal-reg__item p {
        font-size: 14.6pt;
    }
}

@media screen and (min-width: 376px) and (max-width: 424px) {
    .modal-reg__item p {
        font-size: 13.1pt;
    }
}

@media screen and (width: 375px) {
    .modal-reg__item p {
        font-size: 12.7pt;
    }
}

@media screen and (min-width: 321px) and (max-width: 374px) {
    .modal-reg__item p {
        font-size: 12.3pt;
    }
}

@media screen and (max-width: 320px) {
    .modal-reg__caption {
        margin-top: 15px;
    }
    .modal-reg__item p {
        font-size: 12.16pt;
    }
}

.modal-reg__item input {
	height: 40px;
}

.modal-reg__item h4 {
	padding: 20px 0 15px;
}

.modal-reg__item .header-popup__input-box {
	padding-bottom: 9px;
}

.header-popup__input-box--req:before {
    content: '*';
    position: absolute;
    top: -13px;
    right: -7px;
    font-size: 16px;
    color: red;
}

.form-captcha {
	display: flex;
}

.form-captcha__input {
	width: 60%;
	margin-right: 20px;
}

.input-error {
	border-color: red;
	border-width: 2px;
}

.modal-reg__item .btn-orange-s1 {
    margin-bottom: 11px;
}

.btn-orange-s1 {
	position: relative;
	background: #ff7300;
	border-color: #ca5b00;
}

.btn-orange-s1:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#e0932f), to(#f3d332));
    background-image: linear-gradient(to top, #e0932f 0%, #f3d332 100%);
    opacity: 0;
    z-index: -1;
	transition: opacity 0.3s ease;
    border-radius: 3px;
    top: 0;
    left: 0;
}

.btn-orange-s1:hover:before {
    opacity: 1;
}

.refresh-btn{
    width: 20px;
    height: 20px;
    cursor: pointer;
}
/* End */


/* Start:/local/templates/rcshop/components/richcode/eshop.socnet.links/rcstore-soclinks/style.css?16995292701172*/
.bx-socialsidebar {
	margin: 10px 0;
}
.bx-socialsidebar .bx-block-title {
	font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
	color: #343434;
	text-transform: uppercase;
	font-size: 14px;
	margin-bottom: 9px;
	font-weight: 600;
}
.bx-socialsidebar-group {}
.bx-socialsidebar-group ul {
	padding: 0;
	margin: 0;
	display: block;
}
.bx-socialsidebar-group ul li {
	display: inline-block;
	width: 35px;
	height: 35px;
	margin-right: 5px;
}
.bx-socialsidebar-group ul li a {
	display: block;
	width: 35px;
	height: 35px;
	background-image: url(/local/templates/rcshop/components/richcode/eshop.socnet.links/rcstore-soclinks/images/sprite.png);
	background-repeat: no-repeat;
	/*opacity: .8;*/
	border-bottom: none;
}
.bx-socialsidebar-group ul li a.fb {background-position: 0 0}
.bx-socialsidebar-group ul li a.gp {background-position: -44px 0}
.bx-socialsidebar-group ul li a.tw {background-position: -88px 0}
.bx-socialsidebar-group ul li a.vk {background-position: -132px 0}
.bx-socialsidebar-group ul li a.in {background-position: -176px 0}
.bx-socialsidebar-group ul li a.in {background-position: -176px 0}
.bx-socialsidebar-group ul li a.ok {background-position: -220px 0}
.bx-socialsidebar-group ul li a:hover {opacity: .9;}
/* End */


/* Start:/local/templates/rcshop/styles.css?171681034244876*/
form {
    margin-bottom: 0;
}

/* catalog fix */
@media (max-width: 1300px) {
    .header__sidebar {
        width: 20%;
    }
}
@media (max-width: 1023px) {
    .header__sidebar {
        width: 100%;
        overflow:hidden;
    }
}

.input-shadow-green {
    background: #d8fcc8d4 !important;
    -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09);
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09);
    border: none;
}

.input-shadow-red {
    background: #f8c2c2fc !important;
    -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09);
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09);
    border: none;
}

.remove-promo {
    position: absolute;
    right: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -3px;
    margin-right: 5px;
    cursor: pointer;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NjA2QzFEQUU3QTJEMTFFNEJFMTJEMjJGMUE4MkZDRkYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NjA2QzFEQUY3QTJEMTFFNEJFMTJEMjJGMUE4MkZDRkYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2MDZDMURBQzdBMkQxMUU0QkUxMkQyMkYxQTgyRkNGRiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo2MDZDMURBRDdBMkQxMUU0QkUxMkQyMkYxQTgyRkNGRiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuRKTjMAAAC1SURBVHjaXJAhEsIwEEWTDiCoAa6CBtUKEAxHwAfHGSpxySWqUFQUh+YG3AEMOvxlfmf+kJmXnXRftr/1McaDc+4M9iGEu5OVUlqhXMCpwNaABejYUKljrxlh24EbmFHeomZKJXiZ43POdnsp8odDB6lGpMdP5KtUdirZoZDsNmEs5wmYDoeC09YoV8pvUuoHevyef6nikB7MmXljE1sJXlkm5qr5zHqtiQE8Nbgtka13/AowAFzKRSz6AcYPAAAAAElFTkSuQmCC") no-repeat center;
}

.pb-0{
    padding-bottom: 0;
}

.go-top-link {
    z-index: 3;
}

.icon-rating-neutral {
    width: 20px;
    height: 25px
}

.product-table__rating--neutral {
    color: #b2b2b2;
}

.product-table__rating--neutral [class*="icon-"] {
    fill: #b2b2b2;
    margin-right: 5px;
}

.contacts__map {
    line-height: 0;
}

.catalog-top {
    display: block;
}

@media (max-width: 1100px) {
    .cart-promo__link {
        margin-bottom: 19px;
    }
}
@media (max-width: 1100px) {
    .header__contacts-phones {
        margin: 0 !important;
    }
}
@media (max-width: 1023px) {
    .header__contacts-phones {
        margin-top: 0 !important;
    }
}

.content-overlay {
    position: absolute;
    z-index: 4;
    background: orangered;
    opacity: 0.5;
    margin: 0;
    display: none;
}

@media (max-width: 1023px) {
    .content-overlay {
        left: 0;
    }
}

#escapingBallG{
    position:absolute;
    width:125px;
    height:43px;
    margin:auto;
    z-index: 5;
    display: none;
}

.escapingBallG{
    background-color:rgb(0,0,0);
    position:absolute;
    top:0;
    left:0;
    width:43px;
    height:43px;
    border-radius:21px;
    -o-border-radius:21px;
    -ms-border-radius:21px;
    -webkit-border-radius:21px;
    -moz-border-radius:21px;
    animation-name:bounce_escapingBallG;
    -o-animation-name:bounce_escapingBallG;
    -ms-animation-name:bounce_escapingBallG;
    -webkit-animation-name:bounce_escapingBallG;
    -moz-animation-name:bounce_escapingBallG;
    animation-duration:1.5s;
    -o-animation-duration:1.5s;
    -ms-animation-duration:1.5s;
    -webkit-animation-duration:1.5s;
    -moz-animation-duration:1.5s;
    animation-iteration-count:infinite;
    -o-animation-iteration-count:infinite;
    -ms-animation-iteration-count:infinite;
    -webkit-animation-iteration-count:infinite;
    -moz-animation-iteration-count:infinite;
    animation-timing-function:linear;
    -o-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
    -webkit-animation-timing-function:linear;
    -moz-animation-timing-function:linear;
    animation-delay:0s;
    -o-animation-delay:0s;
    -ms-animation-delay:0s;
    -webkit-animation-delay:0s;
    -moz-animation-delay:0s;
    transform:scale(0.5, 1);
    -o-transform:scale(0.5, 1);
    -ms-transform:scale(0.5, 1);
    -webkit-transform:scale(0.5, 1);
    -moz-transform:scale(0.5, 1);
}

@keyframes bounce_escapingBallG{
    0%{
        left:0px;
        transform:scale(0.5, 1);
    }

    25%{
        left:41px;
        transform:scale(1, 0.5);
    }

    50%{
        left:103px;
        transform:scale(0.5, 1);
    }

    75%{
        left:41px;
        transform:scale(1, 0.5);
    }

    100%{
        left:0px;
        transform:scale(0.5, 1);
    }
}

@-o-keyframes bounce_escapingBallG{
    0%{
        left:0px;
        -o-transform:scale(0.5, 1);
    }

    25%{
        left:41px;
        -o-transform:scale(1, 0.5);
    }

    50%{
        left:103px;
        -o-transform:scale(0.5, 1);
    }

    75%{
        left:41px;
        -o-transform:scale(1, 0.5);
    }

    100%{
        left:0px;
        -o-transform:scale(0.5, 1);
    }
}

@-ms-keyframes bounce_escapingBallG{
    0%{
        left:0px;
        -ms-transform:scale(0.5, 1);
    }

    25%{
        left:41px;
        -ms-transform:scale(1, 0.5);
    }

    50%{
        left:103px;
        -ms-transform:scale(0.5, 1);
    }

    75%{
        left:41px;
        -ms-transform:scale(1, 0.5);
    }

    100%{
        left:0px;
        -ms-transform:scale(0.5, 1);
    }
}

@-webkit-keyframes bounce_escapingBallG{
    0%{
        left:0px;
        -webkit-transform:scale(0.5, 1);
    }

    25%{
        left:41px;
        -webkit-transform:scale(1, 0.5);
    }

    50%{
        left:103px;
        -webkit-transform:scale(0.5, 1);
    }

    75%{
        left:41px;
        -webkit-transform:scale(1, 0.5);
    }

    100%{
        left:0px;
        -webkit-transform:scale(0.5, 1);
    }
}

@-moz-keyframes bounce_escapingBallG{
    0%{
        left:0px;
        -moz-transform:scale(0.5, 1);
    }

    25%{
        left:41px;
        -moz-transform:scale(1, 0.5);
    }

    50%{
        left:103px;
        -moz-transform:scale(0.5, 1);
    }

    75%{
        left:41px;
        -moz-transform:scale(1, 0.5);
    }

    100%{
        left:0px;
        -moz-transform:scale(0.5, 1);
    }
}
.psevdo_h2
{
    line-height: 30px;
    font-size: 25px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
}
.psevdo_h2_v2
{
    line-height: 30px;
    font-size: 25px;
    padding: 15px 0 17px;
}
.psevdo_h2_v3
{
    line-height: 30px;
    font-size: 25px;
    padding: 0 30px 17px;
}
.psevdo_h2_v4
{
    line-height: 30px;
    font-size: 25px;
    padding: 0 0 30px 0;
}
.psevdo_h2_v5
{
    line-height: 30px;
    font-size: 25px;
    padding: 26px 0 30px 0;
}
.psevdo_h2_v6
{
    line-height: 30px;
    font-size: 25px;
    padding: 0 0 28px 0;
}

@media (max-width: 1280px) {
    .psevdo_h2, .psevdo_h2_v2, .psevdo_h2_v3, .psevdo_h2_v4,.psevdo_h2_v5, .psevdo_h2_v6 {
        padding: 0px 0 17px;
    }
}
@media (max-width: 1300px) and (min-width: 1024px) {
    .psevdo_h2, .psevdo_h2_v2, .psevdo_h2_v3, .psevdo_h2_v4,.psevdo_h2_v5, .psevdo_h2_v6 {
        padding: 0px 0 17px;
    }
}
@media (max-width: 1023px) {
    .psevdo_h2, .psevdo_h2_v2, .psevdo_h2_v3, .psevdo_h2_v4,.psevdo_h2_v5, .psevdo_h2_v6 {
        padding-top: 0;
    }
}
@media (max-width: 767px) {
    .psevdo_h2, .psevdo_h2_v2, .psevdo_h2_v3, .psevdo_h2_v4,.psevdo_h2_v5, .psevdo_h2_v6 {
        font-size: 20px;
        line-height: 24px;
        padding: 0px 0 22px;
    }
}

.compare-page {
    position: relative;
    font-size: 14px;
    min-height: 640px;
}

@media (min-width: 768px) {
    .product-tabs__content iframe {
        max-width: 640px;
    }
}
@media (max-width: 767px) {
    .product-tabs__content iframe {
        width: 100% !important;
    }
}

.content-main--no-left {
    padding-left: 0;
    width: 100%;
}

@media (min-width: 1023px) {
    .content-min-height {
        min-height: 760px;
    }
}

img[data-src]:not([src]) {
    opacity: 0;
}

.lazy-hidden {
    opacity:0
}

.lazy-loaded {
    -webkit-transition:opacity .3s;
    -moz-transition:opacity .3s;
    -ms-transition:opacity .3s;
    -o-transition:opacity .3s;
    transition:opacity .3s;
    opacity:1
}

.link-s2 {
    color: #fff !important;
    text-decoration: none;
}

.product-card__title {
    font-weight: 700;
}

.title-s1 h1 {
    display: inline-block;
    font-size: 25px;
    font-weight: 700;
    padding: 24px 0;
    line-height: 22px;
    padding-left: 23px;
    color: #404041 !important;
    text-decoration: none !important;
}
@media(max-width: 767px) {
    .title-s1 h1 {
        font-size: 22px;
    }
}

.title-s1--index h1 {
    font-size: 27px;
}
@media(max-width: 767px) {
    .title-s1--index h1 {
        font-size: 22px;
    }
}

.title-s1 a {
    display: inline-block;
    font-size: 25px;
    font-weight: 700;
    padding: 24px 0;
    padding-right: 23px;
    color: #404041 !important;
    text-decoration: none !important;
}

.main-tabs__title--alt {
    display: none;
    line-height: 22px;
}

@media (max-width: 1280px) {
    .title-s1 {
        margin-left: 0;
    }
}
@media (max-width: 1023px) {
    .title-s1 {
        position: absolute;
        top: 4px;
        width: 100%;
        margin-left: 0;
    }
    .main-tabs__title--alt {
        display: block;
    }
    .title-s1 .main-tabs__title {
        display: none;
    }
    .main-tabs__title {
        top: 77px;
    }
}

@media (max-width: 767px) {
    .title-s1 {
        top: 0;
        position: relative;
    }
    .main-tabs__title {
        top: 64px;
    }
}

@media (max-width: 630px) {
    .title-s1 h1 {
        line-height: 24px;
        padding: 20px 0;
    }
    .main-tabs__title {
        top: 81px;
    }
}

.catalog-sort__left--s2 .catalog-sort__left-select {
    display: block;
    float: left;
    margin-right: 10px;
}

.catalog-sort__left--s2 .catalog-sort__search {
    display: none;
}

.product-card__marker-list {
    position: absolute;
    left: 16px;
    top: -1px;
    display: inline-block;
}

@media (min-width: 767px) {
    .product-card__marker-list--all .product-card__marker {
        left: 3px;
    }
}
@media (max-width: 767px) {
    .product-page__lg-image-zoom {
        top: 35px;
        left: 17px;
    }
}

.product-card__marker-list .product-card__marker {
    position: relative !important;
    left: 0;
    display: inline-block;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-right: 0px;
    padding: 5px 10px 8px;
    line-height: normal;
    margin-bottom: 3px;
    -webkit-box-shadow: 0 1px 10px rgba(0, 64, 128, 0.2);
    box-shadow: 0 1px 10px rgba(0, 64, 128, 0.2);
}

.product-card__marker-list .product-card__marker--green {
    background: #5fc900 !important;
}
.product-card__marker-list .product-card__marker--yellow {
    color: #212121;
    background: #fdf703 !important;
}
.product-card__marker-list .product-card__marker--red {
    background: #ff2c39 !important;
}
.product-card__marker-list .product-card__marker--violet {
    color: #212121;
    background: #c277ed !important;
}

.product-card__top {
    top: 30px !important;
}

.product-page__lg-image-actions {
    top: 25px;
}

.smart-new {
    display: block !important;
}

.catalog-sort__left-select {
    display: none;
    max-width: 260px;
    width: 100%;
}
@media (max-width: 1350px) {
  .catalog-sort__left-select {
    display: block;
  }
}
@media (max-width: 1023px) {
  .catalog-sort__left-select {
    margin: 3px 0 0 0;
    float: left;
  }
}
@media (max-width: 767px) {
  .catalog-sort__left-select {
    width: calc(100% - 30px - 10px);
  }
}

.catalog-sort__left-select .selectric .label {
    height: 30px;
    padding: 2px 0;
}

.catalog-sort__left-select .selectric .button {
    height: 30px;
}

/*----- section top ------*/
.catalog-sort__left-select .selectric .label {
    height: 38px;
    padding: 0;
    line-height: 38px;
    margin: 0 38px 0 20px;
}

.catalog-sort__left-select .selectric .button {
    height: 38px;
}

.selectric .label {
    font-size: 15px;
}

.breadcrumbs__link {
    font-size: 15px;
}

.catalog-sort,
.psevdo_h2 {
    padding-bottom: 28px;
}

.catalog-sort__right {
    color: #707070;
    padding: 0;
    font-size: 15px;
    flex-shrink: 0;
}
@media (max-width: 1280px) {
  .catalog-sort__right {
    padding: 5px 0 0 0;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .catalog-sort__right {
    padding: 5px 0 0 0;
  }
}
@media (max-width: 1023px) {
  .catalog-sort__right {
    width: 100px;
    padding: 10px 0 0 0;
    float: right;
  }
}
@media (max-width: 767px) {
  .catalog-sort__right {
    padding: 0;
  }
}

.catalog-sort--mod .catalog-sort__search .header__search-input {
    height: 42px;
    border-radius: 6px;
}

.catalog-sort--mod .catalog-sort__left-select {
  display: block;
  width: 100%;
  max-width: 260px;
  margin: 0;
  float: left;
}

@media (max-width: 1023px) {

  .catalog-sort--mod .catalog-sort__left-select .selectric .label {
    height: 50px;
    border-radius: 1px;
    line-height: 34px;
  }

  .catalog-sort--mod .catalog-sort__left-select .selectric .button {
    height: 50px;
  }
}

.catalog-sort--mod .catalog-sort__left-select--hide {
  display: none;
}

.catalog-sort--mod .catalog-sort__search {
    margin: 0;
}

.catalog-sort--mod .catalog-sort__search .header__search-btn {
    height: 40px;
}

@media (max-width: 1820px) {
    .catalog-sort--mod .catalog-sort__left-select {
        width: 30%;
    }
    .catalog-sort--mod .catalog-sort__search {
        width: 30%;
    }
    .catalog-sort--new .catalog-sort__left-select {
        width: 30%;
    }
}
@media (max-width: 1100px) {
    .catalog-sort--mod .catalog-sort__right {
        margin-top: 0;
    }
}
@media (max-width: 1023px) {
    .catalog-sort--mod .catalog-sort__search .header__search-input {
        height: 52px;
    }
    .catalog-sort--mod .catalog-sort__search .header__search-btn {
        height: 50px;
    }
    .catalog-sort__left-select .selectric .label {
        height: 48px;
        line-height: 48px;
        font-size: 15px;
    }
    .catalog-sort__left-select {
        margin-top: 1px;
    }
    .catalog-sort__left-select .selectric .button {
        height: 48px;
    }
    .psevdo_h2 {
        padding-bottom: 23px;
    }
    .catalog-sort__right {
        margin-top: 0 !important;
    }
    .catalog-sort--mod .catalog-sort__left-select .selectric .label {
        height: 50px;
        line-height: 50px;
        font-size: 15px;
    }
    .product-card .product-card__marker-list {
        top: 1px;
    }
}

.breadcrumbs__item {
    display: inline-block;
}

.footer-contacts__data {
    font-size: 14px;
    color: #fff;
    line-height: 18px;
    padding-top: 20px;
}

.footer-contacts__data img {
    display: block;
    width: 110px;
    margin-right: 8px;
}

.footer-contacts__data-logo {
    line-height: 16px;
}

.footer-contacts__top {
    padding-bottom: 25px;
}

.footer-contacts__data-logo a {
    display: inline-block;
    margin-bottom: 5px;
}

.footer-contacts__data-logo span {
    display: block;
}

.footer-contacts-email,
.footer-contacts-address {
    color: #b3b3b3;
    font: 400 17px "ubuntu";
    display: block;
    margin-bottom: 9px;
}

.copyright {
    color: #b3b3b3;
    font: 400 16px "ubuntu";
    display: block;
    margin-bottom: 9px;
}

@media (max-width: 1200px) {
    .footer-contacts__data {
        float: right;
        display: inline-block;
    }
}
@media (max-width: 768px) {
    .footer-contacts__data {
        float: none;
    }
}

.footer-contacts-phone__number-text {
    color: #fff !important;
    text-decoration: none !important;
}

.footer-contacts-phone__number {
    color: #fff !important;
}

.footer-contacts-email a {
    color: #b3b3b3;
    text-decoration: none !important;
}

.footer-contacts-email a:hover {
    color: #b7d7ff;
}

.mt-20 {
    margin-top: 14px;
}

form {
    margin-bottom: 0;
}

/* catalog fix */
@media (max-width: 1300px) {
    .header__sidebar {
        width: 20%;
    }
}
@media (max-width: 1023px) {
    .header__sidebar {
        width: 100%;
        overflow:hidden;
    }
}
@media (max-width: 1450px) and (min-width: 1301px) {
    .footer-contacts-phone__number {
        font-size: 20px;
    }
}
@media (max-width: 1279px) and (min-width: 1025px) {
    .footer-contacts-phone__number {
        font-size: 18px;
    }
}

.input-shadow-green {
    background: #d8fcc8d4 !important;
    -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09);
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09);
    border: none;
}

.input-shadow-red {
    background: #f8c2c2fc !important;
    -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09);
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09);
    border: none;
}

.remove-promo {
    position: absolute;
    right: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -3px;
    margin-right: 5px;
    cursor: pointer;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NjA2QzFEQUU3QTJEMTFFNEJFMTJEMjJGMUE4MkZDRkYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NjA2QzFEQUY3QTJEMTFFNEJFMTJEMjJGMUE4MkZDRkYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2MDZDMURBQzdBMkQxMUU0QkUxMkQyMkYxQTgyRkNGRiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo2MDZDMURBRDdBMkQxMUU0QkUxMkQyMkYxQTgyRkNGRiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuRKTjMAAAC1SURBVHjaXJAhEsIwEEWTDiCoAa6CBtUKEAxHwAfHGSpxySWqUFQUh+YG3AEMOvxlfmf+kJmXnXRftr/1McaDc+4M9iGEu5OVUlqhXMCpwNaABejYUKljrxlh24EbmFHeomZKJXiZ43POdnsp8odDB6lGpMdP5KtUdirZoZDsNmEs5wmYDoeC09YoV8pvUuoHevyef6nikB7MmXljE1sJXlkm5qr5zHqtiQE8Nbgtka13/AowAFzKRSz6AcYPAAAAAElFTkSuQmCC") no-repeat center;
}

.pb-0{
    padding-bottom: 0;
}

.icon-rating-neutral {
    width: 20px;
    height: 25px
}

.product-table__rating--neutral {
    color: #b2b2b2;
}

.product-table__rating--neutral [class*="icon-"] {
    fill: #b2b2b2;
    margin-right: 5px;
}

.contacts__map {
    line-height: 0;
}

.catalog-top {
    display: block;
}

@media (max-width: 1100px) {
    .cart-promo__link {
        margin-bottom: 19px;
    }
}
@media (max-width: 1100px) {
    .header__contacts-phones {
        margin: 0 !important;
    }
}
@media (max-width: 1023px) {
    .header__contacts-phones {
        margin-top: 0 !important;
    }
}

.content-overlay {
    position: absolute;
    z-index: 4;
    background: orangered;
    opacity: 0.5;
    margin: 0;
    display: none;
}

@media (max-width: 1023px) {
    .content-overlay {
        left: 0;
    }
}

#escapingBallG{
    position:absolute;
    width:125px;
    height:43px;
    margin:auto;
    z-index: 5;
    display: none;
}

.escapingBallG{
    background-color:rgb(0,0,0);
    position:absolute;
    top:0;
    left:0;
    width:43px;
    height:43px;
    border-radius:21px;
    -o-border-radius:21px;
    -ms-border-radius:21px;
    -webkit-border-radius:21px;
    -moz-border-radius:21px;
    animation-name:bounce_escapingBallG;
    -o-animation-name:bounce_escapingBallG;
    -ms-animation-name:bounce_escapingBallG;
    -webkit-animation-name:bounce_escapingBallG;
    -moz-animation-name:bounce_escapingBallG;
    animation-duration:1.5s;
    -o-animation-duration:1.5s;
    -ms-animation-duration:1.5s;
    -webkit-animation-duration:1.5s;
    -moz-animation-duration:1.5s;
    animation-iteration-count:infinite;
    -o-animation-iteration-count:infinite;
    -ms-animation-iteration-count:infinite;
    -webkit-animation-iteration-count:infinite;
    -moz-animation-iteration-count:infinite;
    animation-timing-function:linear;
    -o-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
    -webkit-animation-timing-function:linear;
    -moz-animation-timing-function:linear;
    animation-delay:0s;
    -o-animation-delay:0s;
    -ms-animation-delay:0s;
    -webkit-animation-delay:0s;
    -moz-animation-delay:0s;
    transform:scale(0.5, 1);
    -o-transform:scale(0.5, 1);
    -ms-transform:scale(0.5, 1);
    -webkit-transform:scale(0.5, 1);
    -moz-transform:scale(0.5, 1);
}

@keyframes bounce_escapingBallG{
    0%{
        left:0px;
        transform:scale(0.5, 1);
    }

    25%{
        left:41px;
        transform:scale(1, 0.5);
    }

    50%{
        left:103px;
        transform:scale(0.5, 1);
    }

    75%{
        left:41px;
        transform:scale(1, 0.5);
    }

    100%{
        left:0px;
        transform:scale(0.5, 1);
    }
}

@-o-keyframes bounce_escapingBallG{
    0%{
        left:0px;
        -o-transform:scale(0.5, 1);
    }

    25%{
        left:41px;
        -o-transform:scale(1, 0.5);
    }

    50%{
        left:103px;
        -o-transform:scale(0.5, 1);
    }

    75%{
        left:41px;
        -o-transform:scale(1, 0.5);
    }

    100%{
        left:0px;
        -o-transform:scale(0.5, 1);
    }
}

@-ms-keyframes bounce_escapingBallG{
    0%{
        left:0px;
        -ms-transform:scale(0.5, 1);
    }

    25%{
        left:41px;
        -ms-transform:scale(1, 0.5);
    }

    50%{
        left:103px;
        -ms-transform:scale(0.5, 1);
    }

    75%{
        left:41px;
        -ms-transform:scale(1, 0.5);
    }

    100%{
        left:0px;
        -ms-transform:scale(0.5, 1);
    }
}

@-webkit-keyframes bounce_escapingBallG{
    0%{
        left:0px;
        -webkit-transform:scale(0.5, 1);
    }

    25%{
        left:41px;
        -webkit-transform:scale(1, 0.5);
    }

    50%{
        left:103px;
        -webkit-transform:scale(0.5, 1);
    }

    75%{
        left:41px;
        -webkit-transform:scale(1, 0.5);
    }

    100%{
        left:0px;
        -webkit-transform:scale(0.5, 1);
    }
}

@-moz-keyframes bounce_escapingBallG{
    0%{
        left:0px;
        -moz-transform:scale(0.5, 1);
    }

    25%{
        left:41px;
        -moz-transform:scale(1, 0.5);
    }

    50%{
        left:103px;
        -moz-transform:scale(0.5, 1);
    }

    75%{
        left:41px;
        -moz-transform:scale(1, 0.5);
    }

    100%{
        left:0px;
        -moz-transform:scale(0.5, 1);
    }
}
.psevdo_h2
{
    line-height: 30px;
    font-size: 25px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
}
.psevdo_h2_v2
{
    line-height: 30px;
    font-size: 25px;
    padding: 15px 0 17px;
}
.psevdo_h2_v3
{
    line-height: 30px;
    font-size: 25px;
    padding: 0 30px 17px;
}
.psevdo_h2_v4
{
    line-height: 30px;
    font-size: 25px;
    padding: 0 0 30px 0;
}
.psevdo_h2_v5
{
    line-height: 30px;
    font-size: 25px;
    padding: 26px 0 30px 0;
}
.psevdo_h2_v6
{
    line-height: 30px;
    font-size: 25px;
    padding: 0 0 28px 0;
}

@media (max-width: 1280px) {
    .psevdo_h2, .psevdo_h2_v2, .psevdo_h2_v3, .psevdo_h2_v4,.psevdo_h2_v5, .psevdo_h2_v6 {
        padding: 0px 0 17px;
    }
}
@media (max-width: 1300px) and (min-width: 1024px) {
    .psevdo_h2, .psevdo_h2_v2, .psevdo_h2_v3, .psevdo_h2_v4,.psevdo_h2_v5, .psevdo_h2_v6 {
        padding: 0px 0 17px;
    }
}
@media (max-width: 1023px) {
    .psevdo_h2, .psevdo_h2_v2, .psevdo_h2_v3, .psevdo_h2_v4,.psevdo_h2_v5, .psevdo_h2_v6 {
        padding-top: 0;
    }
}
@media (max-width: 767px) {
    .psevdo_h2, .psevdo_h2_v2, .psevdo_h2_v3, .psevdo_h2_v4,.psevdo_h2_v5, .psevdo_h2_v6 {
        font-size: 20px;
        line-height: 24px;
        padding: 0px 0 22px;
    }
}

.compare-page {
    position: relative;
    font-size: 14px;
    min-height: 640px;
}

@media (min-width: 768px) {
    .product-tabs__content iframe {
        max-width: 640px;
    }
}
@media (max-width: 767px) {
    .product-tabs__content iframe {
        width: 100% !important;
    }
}

.content-main--no-left {
    padding-left: 0;
    width: 100%;
}

@media (min-width: 1023px) {
    .content-min-height {
        min-height: 760px;
    }
}

img[data-src]:not([src]) {
    opacity: 0;
}

.lazy-hidden {
    opacity:0
}

.lazy-loaded {
    transition: opacity 0.3s;
    opacity:1
}

.link-s2 {
    color: #fff !important;
    text-decoration: none;
}

.product-card__title {
    font-weight: 700;
}

.main-tabs__title--alt {
    display: none;
    line-height: 22px;
}

@media (max-width: 1280px) {
    .title-s1 {
        margin-left: 0;
    }
}
@media (max-width: 1023px) {
    .title-s1 {
        position: absolute;
        top: 4px;
        width: 100%;
        margin-left: 0;
    }
    .main-tabs__title--alt {
        display: block;
    }
    .title-s1 .main-tabs__title {
        display: none;
    }
    .main-tabs__title {
        top: 77px;
    }
}

@media (max-width: 767px) {
    .title-s1 {
        top: 0;
        position: relative;
    }
    .main-tabs__title {
        top: 64px;
    }
}

.catalog-sort__left--s2 .catalog-sort__left-select {
    display: block;
    float: left;
    margin-right: 10px;
}

.catalog-sort__left--s2 .catalog-sort__search {
    display: none;
}

.product-card__marker-list {
    position: absolute;
    left: 16px;
    top: -1px;
    display: inline-block;
}

@media (min-width: 767px) {
    .product-card__marker-list--all .product-card__marker {
        left: 3px;
    }
}
@media (max-width: 767px) {
    .product-page__lg-image-zoom {
        top: 35px;
        left: 17px;
    }
}

.product-card__marker-list .product-card__marker {
    position: relative !important;
    left: 0;
    display: inline-block;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-right: 0px;
    padding: 5px 10px 8px;
    line-height: normal;
    margin-bottom: 3px;
    -webkit-box-shadow: 0 1px 10px rgba(0, 64, 128, 0.2);
    box-shadow: 0 1px 10px rgba(0, 64, 128, 0.2);
}

.product-card__marker-list .product-card__marker--green {
    background: #5fc900 !important;
}
.product-card__marker-list .product-card__marker--yellow {
    color: #212121;
    background: #fdf703 !important;
}
.product-card__marker-list .product-card__marker--red {
    background: #ff2c39 !important;
}
.product-card__marker-list .product-card__marker--violet {
    color: #212121;
    background: #c277ed !important;
}

.product-card__top {
    top: 30px !important;
}

.product-page__lg-image-actions {
    top: 25px;
}

.smart-new {
    display: block !important;
}

.catalog-sort__left-select .selectric .label {
    height: 30px;
    padding: 2px 0;
}

.catalog-sort__left-select .selectric .button {
    height: 30px;
}

/*----- section top ------*/
.catalog-sort__left-select .selectric .label {
    height: 38px;
    padding: 0;
    line-height: 38px;
    margin: 0 38px 0 20px;
}

.catalog-sort__left-select .selectric .button {
    height: 38px;
}

.selectric .label {
    font-size: 15px;
}

.breadcrumbs__link {
    font-size: 15px;
}

.catalog-sort,
.psevdo_h2 {
    padding-bottom: 28px;
}

.catalog-sort--mod .catalog-sort__search .header__search-input {
    height: 42px;
    border-radius: 6px;
}

.catalog-sort--mod .catalog-sort__search {
    margin: 0;
}

.catalog-sort--mod .catalog-sort__search .header__search-btn {
    height: 40px;
}

@media (max-width: 1100px) {
    .catalog-sort--mod .catalog-sort__right {
        margin-top: 0;
    }
}
@media (max-width: 1023px) {
    .catalog-sort--mod .catalog-sort__left-select {
        width: 35%;
    }
    .catalog-sort--mod .catalog-sort__search .header__search-input {
        height: 52px;
    }
    .catalog-sort--mod .catalog-sort__search .header__search-btn {
        height: 50px;
    }
    .catalog-sort__left-select .selectric .label {
        height: 48px;
        line-height: 48px;
        font-size: 15px;
    }
    .catalog-sort__left-select {
        margin-top: 1px;
    }
    .catalog-sort__left-select .selectric .button {
        height: 48px;
    }
    .psevdo_h2 {
        padding-bottom: 23px;
    }
    .catalog-sort__right {
        margin-top: 0 !important;
    }
    .catalog-sort--mod .catalog-sort__left-select .selectric .label {
        height: 50px;
        line-height: 50px;
        font-size: 15px;
    }
    .product-card .product-card__marker-list {
        top: 1px;
    }
}
@media (max-width: 767px) {
    .catalog-sort--mod .catalog-sort__left-select {
        width: calc((100% - 50px - 20px) / 2);
        padding: 0;
    }
    .catalog-sort__left-select--hide + .catalog-sort__left-select {
        padding-right: 0;
    }
}

.breadcrumbs__item {
    display: inline-block;
}

.footer-contacts__data {
    font-size: 14px;
    color: #fff;
    line-height: 18px;
    padding-top: 20px;
}

.footer-contacts__data img {
    display: block;
    width: 110px;
    margin-right: 8px;
}

.footer-contacts__data-logo {
    line-height: 16px;
}

.footer-contacts__top {
    padding-bottom: 25px;
}

.footer-contacts__data-logo a {
    display: inline-block;
    margin-bottom: 5px;
}

.footer-contacts__data-logo span {
    display: block;
}

.footer-contacts-email,
.footer-contacts-address {
    color: #b3b3b3;
    font: 400 17px "ubuntu";
    display: block;
    margin-bottom: 8px;
}

@media (max-width: 1200px) {
    .footer-contacts__data {
        float: right;
        display: inline-block;
    }
}
@media (max-width: 768px) {
    .footer-contacts__data {
        float: none;
    }
}

.footer-contacts-phone__number-text {
    color: #fff !important;
    text-decoration: none !important;
}

.footer-contacts-email a {
    color: #b3b3b3;
    text-decoration: none !important;
}

.header__city-select a {
    display: block;
    padding: 13px 20px;
    color: #fff !important;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none !important;
}

.header__city-select {
    margin: -13px 34px -13px -20px;
}

@media (max-width: 1280px) {
    .header__city-select a {
        font-size: 14px;
    }
    .header__city-select {
        margin-right: 0;
    }
}

.mb-city-select a {
    position: relative;
    z-index: 6;
    display: inline-block;
    font-size: 17px;
    font-weight: bold;
    color: #000 !important;
    text-decoration: none !important;
}

.section-cdek-pvz {
    font-size: 14px;
    color: #333;
    margin-top: 30px;
}

.section-cdek-pvz__title {
    color: #626262;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 18px;
}

.cdek-pvz-list {
    font-size: 0;
    margin: 0 -15px;
}

.cdek-pvz-item {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px;
    font-size: 14px;
    align-items: center;
    width: calc(50% - 30px);
    padding: 10px 15px;
    border: 1px solid #e7e7e7;
    margin-bottom: 10px;
}

.psevdo_h2_v6 {
    padding: 0px 0 28px !important;
}

.cdek-pvz-item__title {
    color: #626262;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 18px;
}

.cdek-pvz-more {
    display: none;
}

.cdek-pvz-more-link {
    font-size: 14px;
    color: #ff7300;
    cursor: pointer;
    display: inline-block;
    border-bottom: 1px dashed #ff7300;
}

.cdek-pvz-more-link:hover {
    border-bottom-color: transparent;
}

.cdek-pvz-item__prop-phone {
    font-size: 16px;
}

.cdek-pvz-item__prop {
    margin-bottom: 6px;
}

.cdek-pvz-item__prop span {
    margin-left: 10px;
}

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

.contacts-col {
    width: 50%;
    flex-shrink: 0;
}

.contacts-col:first-child {
    order: 2;
    padding-left: 20px;
}

.contacts-col:last-child {
    order: 1;
}

.contacts-bottom {
    margin: 0 !important;
}

.contacts-bottom__left {
    width: 100%;
    margin: 0;
}

.contacts-bottom__right {
    padding: 0;
}

.contacts-bottom__item {
    width: 100%;
    padding: 0;
}

@media (max-width: 1200px) {
    .contacts-row {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .contacts-col {
        width: 100%;
        margin-bottom: 20px;
    }
}

.contact__icon--cdek {
    height: 24px;
}

.contact__icon--cdek img {
    width: 100%;
}

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

.contact-col {
    width: 50%;
}

.contact-col:first-child {
    width: 31%;
}

.contact-item {
    color: #717171;
    font: 400 15px/24px "ubuntu";
    margin-bottom: 20px;
}

.contact-item--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.hidden {
    display: none;
}
@media (max-width: 1280px) {
    .contact-col:first-child {
        width: 42%;
    }
}
@media (max-width: 1023px) {
    .cdek-pvz-item {
        width: calc(100% - 30px);
    }
    .contact-col:first-child {
        width: 50%;
    }
    .hidden-1023 {
        display: none;
    }
    .show-1023 {
        display: block;
    }
    .contact-item--flex.show-1023 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .contact-item {
        margin-bottom: 16px;
    }
    .contact-item--alt {
        margin-bottom: 22px;
    }
}
@media (max-width: 480px) {
    .contact-item--flex.show-480 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .hidden-480 {
        display: none;
    }
    .contact-page--480 {
        display: block;
    }
    .contact-page--480 .contact-col {
        width: 100%;
    }
}

.c-title {
    line-height: 30px;
    font-size: 25px;
    font-family: "ubuntu", Verdana;
    margin: 0;
    font-weight: bold;
    padding: 0;
    color: #404041;
    margin-bottom: 23px;
    margin-top: 32px;
}

.c-desc {
    color: #404041;
    font: 400 18px "ubuntu";
    margin-bottom: 11px;
}

.contact-item--min {
    width: 200px;
}

@media (max-width: 1100px) {
    .c-title {
        display: none;
    }
    .c-desc {
        letter-spacing: 0.2px;
        line-height: 22px;
    }
    .contact-item--min {
        width: 183px;
    }
}

.link-def {
    color: #717171 !important;
    text-decoration: none !important;
}

.mb-10 {
    margin-bottom: 40px;
}

.delivery__card-title--s1 {
    margin-bottom: 31px !important;
}

.delivery__card--s1 {
    padding-bottom: 55px;
    margin-bottom: 39px;
}

@media (max-width: 1280px) and (min-width: 1024px) {
    .delivery__card-title--s1 {
        margin-bottom: 22px !important;
    }
    .delivery__card--s1 {
        padding-bottom: 86px;
        margin-bottom: 54px;
    }
    .delivery__card--s1 .delivery__card-map-container {
        margin-bottom: -86px !important;
    }
}

@media (max-width: 1100px) {
    .c-desc {
        font-size: 16px;
    }
}
@media (max-width: 1023px) {
    .contact__desc, .delivery__desc {
        font: 400 15px/20px "ubuntu";
    }
    .mb-10 {
        margin-bottom: 11px;
    }
    .delivery__card--s1 {
        margin-bottom: 30px;
        margin-top: 39px;
    }
    .delivery__card--s1 .delivery__card-icons-col {
        padding-right: 27px;
    }
    .delivery__card-title--s1 {
        margin-bottom: 20px !important;
    }
    .delivery__card--s1 .delivery__card-map-container {
        margin: -23px -20px -55px -201px !important;
    }
    .c-desc {
        margin-bottom: -7px;
    }
}
@media (max-width: 480px) {
    .contact-page--480 {
        display: block;
        margin-top: 24px;
    }
    .delivery__card--s1 {
        margin-bottom: 30px;
        margin-top: 36px;
    }
    .delivery__card--s1 .delivery__card-icons-col {
        padding-right: 6px;
    }
    .delivery__card-title--s1 {
        margin-bottom: 29px !important;
    }
    .delivery__card--s1 .delivery__card-content .delivery__card-text {
        padding-right: 40px;
    }
    .delivery__card--s1 .delivery__card-map-container {
        margin: -20px -20px -55px -201px !important;
    }
    .c-desc {
        margin-bottom: 9px;
    }
}

.footer__copyright span,
.footer__copyright a {
    display: inline-block;
    vertical-align: top;
    white-space: normal;
}

.footer__copyright span {
    width: 63%;
    white-space: normal;
}

.footer__copyright a img {
    width: 139px;
    margin-right: 13px;
}

.footer-center-btn {
    line-height: 65px;
    margin-top: 9px;
    margin-bottom: 34px;
    font-size: 19px;
    letter-spacing: 0.6px;
    font-weight: bold;
    border-radius: 11px;
}

.footer-contacts-address-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

.footer-social {
    width: auto;
    text-align: right;
    display: block;
    margin-top: 50px;
    padding-top: 0;
}

.footer-social__item {
    border-radius: 50%;
    overflow: hidden;
}

.footer-social__item:last-child .footer-social__ico {
    width: 48px;
    height: 43px;
    margin-top: -6px;
    margin-bottom: -6px;
}

.footer-nav-1280 {
    display: none;
}


@media (max-width: 1280px) {
    .footer-nav {
        display: none;
        width: 77%;
    }
    .footer-nav-1280 {
        display: flex;
    }
    .footer-contacts-address-wrap {
        flex-direction: column;
        justify-content: flex-end;
        text-align: right;
    }
    .footer-contacts-address-wrap .col-s1:first-child {
        order: 2;
    }
    .footer-center-btn {
        margin-top: 4px;
        line-height: 67px;
        margin-bottom: 23px;
    }
    .copyright {
        font-size: 14px;
        margin-bottom: 3px;
        line-height: 19px;
    }
    .footer-contacts-email, .footer-contacts-address {
        font-size: 15px;
    }
    .footer__copyright a img {
        width: 124px;
        margin-right: 18px;
    }
    .footer__copyright span {
        width: calc(100% - 142px);
        white-space: normal;
    }
    .footer__bottom-right {
        margin-top: 0px;
    }
    .footer-social {
        margin-top: 21px;
    }
}
@media (max-width: 1023px) {
    .footer__copyright {
        white-space: normal;
    }
    .footer__copyright a img {
        width: 107px;
        margin-right: 18px;
    }
    .footer__copyright span {
        width: unset;
    }
    .footer-center-btn {
        line-height: 63px;
        margin-bottom: 20px;
    }
    .footer-contacts__top {
        padding-bottom: 25px;
    }
    .footer-contacts-phone__number {
        padding: 7px 9px;
        margin-bottom: 15px;
    }
    .footer-nav__item {
        padding-bottom: 23px;
    }
    .footer-nav {
        width: 74%;
    }
    .footer-contacts__top {
        padding-top: 4px;
    }
}
.footer-social-768,
.footer__center-767,
.footer-nav-767,
.address-767,
.block-768 {
    display: none;
}
@media (max-width: 767px) {
    .footer-contacts-phone__number-text {
        font-size: 19px;
    }
    .footer-social__item {
        position: relative;
        z-index: 9999;
    }
    .block-768 {
        display: block;
    }
    .footer-nav-1280 {
        display: none;
    }
    .footer-nav-767 {
        display: flex;
        width: auto;
        padding-left: 3px;
        padding-top: 2px;
    }
    .footer-social {
        margin-top: 19px;
    }
    .footer-contacts__top {
        display: none;
    }
    .footer-social-768 {
        display: block;
        padding-bottom: 18px;
        text-align: left;
    }
    .footer__center {
        display: none;
    }
    .footer__center-767 {
        display: block;
    }
    .btn-wrap {
        display: flex;
        flex-direction: column;
        margin-bottom: 9px;
        gap: 18px;
    }
    .footer-center-btn {
        margin: 0;
        line-height: 55px;
    }
    .footer-catalog {
        padding: 0 0 13px 0;
        margin-bottom: 28px;
        border-bottom: 1px solid #555555;
    }
    .footer__bottom .container {
        padding-right: 16px;
    }
    .footer-nav__item {
        padding-bottom: 21px;
    }
    .footer__top {
        padding: 24px 0 0px;
    }
    .address-767 {
        display: block;
        margin-bottom: 17px;
    }
    .footer-nav__list--third {
        text-align: right;
    }
    .footer-contacts-phone__number-ico {
        width: 19px;
    }
    .footer-contacts-phone__number span {
        font-size: 14px;
    }
    .footer-contacts-phone__number {
        padding: 4px 9px;
    }
}
@media (max-width: 480px) {
    .block-768 {
        display: none;
    }
}

.footer-nav__link[href="/wholesale/"] {
    font-weight: bold;
}

.price-desc {
    font-size: 14px;
    line-height: 13px;
    display: inline-block;
    margin-top: 2px;
    font-weight: bold;
}

@media (min-width: 1000px) and (max-width: 1278px) {
    .product-card__prices {
        display: flex;
        justify-content: space-between;
    }
    .product-card__prices:after {
        display: none;
    }
    .product-card__prices-new {
        white-space: nowrap;
    }
    .price-desc + .product-card__prices-new {
        white-space: nowrap;
        font-size: 19px;
        padding-top: 6px;
        line-height: 21px;
    }
}
@media (max-width: 1299px) and (min-width: 1279px) {
    .price-desc + .product-card__prices-new {
        padding-top: 3px;
    }
}
@media (min-width: 1300px) and (max-width: 1600px) {
    .product-card__prices {
        display: flex;
        justify-content: space-between;
    }
    .product-card__prices:after {
        display: none;
    }
    .price-desc + .product-card__prices-new {
        white-space: nowrap;
        font-size: 23px;
        padding-top: 5px;
        line-height: 21px;
    }
}
@media (max-width: 1000px) {
    .price-desc {
        margin-top: 0;
    }
    .price-desc + .product-card__prices-new {
        padding-top: 1px;
    }
}
@media (max-width: 600px) {
    .price-desc + .product-card__prices-new {
        padding-top: 2px;
    }
}

.news-list-s1 {
    display: flex;
    margin: 0 -15px;
}

.news-list-s1__item {
    width: calc(16.666666% - 30px);
    margin: 0 15px;
    flex-shrink: 0;
}

.news-list-s1__item .news-item__image {
    margin-bottom: 10px;
}

.news-list-s1__item .news-item__date {
    margin-bottom: 4px;
}

.news-wrap {
    margin-bottom: 60px;
}

.news-wrap .h2-link {
    padding-top: 0;
}

@media (max-width: 1600px) {
    .news-list-s1__item:nth-child(6) {
        display: none;
    }
    .news-list-s1__item {
        width: calc(20% - 30px);
    }
}
@media (max-width: 1300px) {
    .news-list-s1__item:nth-child(5) {
        display: none;
    }
    .news-list-s1__item {
        width: calc(25% - 30px);
    }
}
@media (max-width: 768px) {
    .news-list-s1__item:nth-child(4) {
        display: none;
    }
    .news-list-s1__item {
        width: calc(33.33333% - 30px);
    }
}
@media (max-width: 767px) {
    .news-list-s1__item:nth-child(3) {
        display: none;
    }
    .news-list-s1__item {
        width: calc(50% - 30px);
    }
}
@media (min-width: 1301px) {
    .news-s2-list .news-item:nth-child(-n+6) {
        display: none;
    }
}
@media (max-width: 1300px) {
    .news-s3-list .news-item {
        display: inline-block !important;
    }
    .news-s3-list .news-item:nth-child(5),
    .news-s3-list .news-item:nth-child(6) {
        display: none !important;
    }
    .news-s2-list .news-item {
        display: inline-block !important;
    }
    .news-s2-list .news-item:nth-child(-n+4) {
        display: none !important;
    }
}

.mt-50 {
    margin-top: 50px;
}

.products-cols-wrap .product-card__list-item:hover .product-card {
    z-index: 110;
}

.bottom-description__title {
    padding-top: 0;
}

.news-left-menu h3 {
    font-size: 23px;
}

@media (min-width: 1024px) {
    .main-tabs__block .main-tabs__title,
    .products-block__title--index {
        font-size: 23px;
    }
}

@media (max-width: 1023px) {
    .main-tabs__block-news .main-tabs__block-title {
        font-size: 20px;
    }
    .main-tabs__title.products-block__title {
        line-height: 22px !important;
    }
}

.mb-menu > * { flex-shrink: 0; }
.mb-menu__list-wrap {flex-grow: 5; flex-shrink: 1}

.product-card__inner {
  z-index: 2;
}


.mt-15 {
    margin-top: 15px;
}
/* End */


/* Start:/local/templates/rcshop/template_styles.css?173193124920858*/
.footer-social__link {
    opacity: 0.65;
}
.footer-social__link:hover {
    opacity: 1;
}
.bottom-description__text li > p {
    display: inline;
}
.bottom-description__text ul > li:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-color: #000;
    width: 6px;
    height: 1px;
    margin-right: 8px;
    font-weight: bold;
}
.hidden-s1 {
    display: none !important;
}
.mt-0 {
    margin-top: 0 !important;
}

/* ----- Новая структура для контентной части ----- */
@media (min-width: 1024px) {
    #rc_catalogizator {
        display: none;
    }
}

.content-wrap {
    padding-bottom: 80px;
}

.content-wrap .container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.main-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.content-full {
    width: 100%;
}

.order-1 {
    order: 1;
}

.order-10 {
    order: 10;
}

.order-11 {
    order: 11;
}

.left-menu__selection {
    background-color: #fff;
    margin: 0 -25px -25px;
    padding: 25px;
    border: 1px solid #dfdfdf;
}

.main-content__head {
    padding-top: 25px;
    padding-bottom: 28px;
}

.main-content__head .breadcrumbs {
    padding: 0;
}

@media (max-width: 767px) {
    .main-content__head .breadcrumbs {
        margin-right: -16px;
        margin-left: -16px;
        padding-right: 16px;
        padding-left: 16px;
    }

    .breadcrumbs {
        margin-right: -16px;
        margin-left: -16px;
        padding-right: 16px;
        padding-left: 16px;
    }
}


.main-content__head .breadcrumbs + h1 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.main-content__head > h1 {
    line-height: 30px;
    font-size: 25px;
}

.main-content__head .catalog-sort {
    padding-bottom: 0;
    margin-top: 28px;
}

.main-content .content-main__max {
    font-size: 15px;
}

.mt-40 {
    margin-top: 40px;
}

.h2-link a {
    color: #404041;
    text-decoration: none !important;
}

.h2-link a:hover {
    color: #ff8622 !important;
}

.d-none {
    display: none !important;
}

.p-0 {
    padding: 0 !important;
}

.content-cols {
    padding-bottom: 40px;
}

.fs-14 {
    font-size: 14px;
}

.products-cols__col .h2-link {
    padding-top: 0;
    padding-bottom: 20px;
}

.content-full--mt {
    margin-top: -580px !important;
}
@media (max-width: 1720px) {
    .content-full--mt {
        margin-top: -600px !important;
    }
}
@media (max-width: 1520px) {
    .content-full--mt {
        margin-top: -640px !important;
    }
}
@media (max-width: 1300px) {
    .content-full--mt {
        margin-top: -670px !important;
    }
}
@media (max-width: 1199px) {
    .content-full--mt {
        margin-top: -710px !important;
    }
}
@media (max-width: 1023px) {
    .content-full--mt {
        margin-top: 0 !important;
    }
}

.content-block {
    font-size: 16px;
}
@media (min-width: 1024px) {
    .content-block {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (min-width: 1301px) {
    .content-block {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.content-block h2:first-child {
    padding-top: 0;
}

.content-wrap--index {
    padding-bottom: 0;
}

.content-wrap--index .content-full {
    order: 12;
}

.left-menu--alt {
    background-color: transparent;
    padding: 0;
}

@media (max-width: 1023px) {
    .content-wrap {
        padding-bottom: 36px;
    }
    .header--index ~ .content-wrap {
        padding-top: 18px;
    }
    .left-menu + .main-content,
    .right-filter + .main-content {
        width: 100%;
        padding-left: 0 !important;
    }
    .left-menu--alt {
        display: block;
        order: 20;
        margin-top: 36px;
        width: 100%;
        margin-bottom: 0px;
    }
    .main-content--pl {
        padding-left: 0px;
    }
    .main-content__head {
        padding-top: 22px;
    }
    .main-content__head .breadcrumbs + h1 {
        margin-top: 14px;
    }
}
@media (max-width: 767px) {
    .left-menu--alt {
        margin-top: 19px;
    }
    .content-wrap {
        padding-bottom: 20px;
    }
    .header--index ~ .content-wrap {
        padding-top: 8px;
    }
    .main-content__head {
        padding-top: 18px;
    }
    .main-content__head > h1 {
        font-size: 20px;
        line-height: 24px;
    }
}

/*----- Детальная новость -----*/
@media (min-width: 1024px) {
    /*.news-detail {
        padding-right: 30px;
    }*/
    .news-detail .news-detail__content,
    .news-detail .news-detail__video-wrap,
    .news-detail .gallery.gallery--news,
    .news-detail .gallery-nav{
        padding-right: 30px;
    }
}

.news-detail__content {
    margin-bottom: 30px;
}

.news-detail__img-wrap {
    float: left;
    max-width: 375px;
    margin-right: 30px;
}

.news-detail__img {
    border: 3px solid #fff;
    border-radius: 3px;
    display: block;
    margin-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
    -webkit-box-shadow: 0 1px 5px rgba(213, 213, 213, 0.7);
    box-shadow: 0 1px 5px rgba(213, 213, 213, 0.7);
}

@media (max-width: 1320px) {
    .news-detail .gallery__list-item:nth-child(1n + 5) {
        display: none;
    }
}
@media (max-width: 1023px) {
    .news-detail .gallery__list-item {
        display: inline-block !important;
    }
}

@media (max-width: 1300px) and (min-width: 1024px) {
    .news-detail .gallery-nav__link {
        min-width: 196.5px;
        font: 700 14px "ubuntu";
        padding: 17px 15px 20px;
    }
    .news-detail .gallery-nav__link svg {
        margin-top: 0;
    }
}
@media (max-width: 1023px) {
    .news-detail .gallery__list-item {
        width: 220px;
    }
    .news-detail .gallery {
        overflow: hidden;
    }
}
@media (max-width: 480px) {
    .news-detail .gallery__list-item {
        width: 183px;
    }
}

.clear {
    clear: both;
}

.news-detail__img img {
    display: block;
    max-width: 100%;
}

.news-detail__video {
    max-width: 450px;
}

.news-detail__content p:last-child {
    padding-bottom: 0;
}

.news-detail .product-item {
    padding-bottom: 0px;
    margin-bottom: -13px;
}

@media (max-width: 1023px) {
    .news-detail {
        margin-top: -10px;
    }
    .news-detail__img-wrap {
        float: none;
    }
    .news-detail__img {
        float: none;
        margin-right: auto;
        margin-left: auto;
        max-width: 436px;
    }
}

.content-full-alt .h2-link {
    padding-top: 0;
}

.news-detail .gallery {
    padding-bottom: 0;
    margin-bottom: 30px;
}

.btn-orange-transparent #caret {
    fill: #ff7300 !important;
}

.news-detail .gallery__list-item {
    padding: 0;
}

.news-detail .gallery__list-item .gallery__list-box {
    padding: 0 15px 30px;
}

.corporate_clients-bottom__left,
.dropshipping_info_forms_mobail,
.dropshipping-bottom__left {
    font-size: 0;
}

.news-detail__video-wrap {
    display: none;
}

.gallery--news .gallery__list {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    white-space: normal;
}

.news-products .product-card__list-item--4 {
    width: 20%;
}

.news-products .product-card__list {
    padding-bottom: 0;
}

.news-detail .gallery {
    margin-bottom: 0;
}

/* .news-products .product-card__list {
    border-left: 1px solid #dfdfdf;
} */

@media (min-width: 1401px) {
    .products-cols-wrap .product-card__list-item--4:nth-child(4n + 1) .product-card__inner {
        border-left: 0;
    }
}
@media (max-width: 1400px) {
    .news-products .product-card__list-item--4 {
        width: 25%;
    }
    .products-cols-wrap .product-card__list-item--4:nth-child(3n + 1) .product-card__inner {
        border-left: 0;
    }
    .products-cols-wrap {
        margin-top: 50px;
    }
}
@media (max-width: 1200px) {
    .news-products .product-card__list-item--4 {
        width: 33.3333%;
    }
}
.mt-30 {
    margin-top: 30px;
}
@media (max-width: 1023px) {
    .products-cols-wrap .products-cols.products-cols__fx {
        flex-wrap: wrap;
    }
    .products-cols-wrap .products-cols__col {
        width: 100% !important;
    }
    .products-cols-wrap .d-xl-none.d-md-block {
        display: block !important;
    }
    .products-cols-wrap .product-card__list {
        margin-left: -22px !important;
        flex-wrap: wrap;
    }
    .products-cols-wrap .products-cols__fx .products-cols__col .product-card__list-item--3 {
        width: 33.3333% !important;
        margin-top: -1px;
    }
    .news-detail__video-wrap,
    .news-detail__img-wrap {
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
        max-width: 438px;
    }
    .news-detail__img-wrap .news-detail__video {
        display: none;
    }
    .news-detail__content {
        margin-bottom: -2px;
    }
    .news-detail__video-wrap {
        max-width: 450px;
        margin-bottom: 54px;
    }
    .gallery--news .gallery__list {
        margin: 0 -8px;
    }
    .gallery--news .gallery__list .gallery__list-item {
        width: 33.33333%;
    }
}
@media (max-width: 600px) {
    .news-products .product-card__list-item--4 {
        width: 50%;
    }
    .products-cols-wrap .products-cols__fx .products-cols__col .product-card__list-item--3 {
        width: 50% !important;
    }
    .gallery--news .gallery__list {
        margin: 0 -12px;
    }
}
@media (max-width: 480px) {
    .gallery--news .gallery__list .gallery__list-item {
        width: 50%;
    }
    .news-detail__video-wrap {
        margin-bottom: 25px;
    }
}

.main-news__item--col3 {
    margin-bottom: 31px;
}

@media (min-width: 1024px) {
  .product-card__img {
    height: 150px;
  }
}

.product-card__info__name {
	float: left;
	width: auto;
	margin-right: .5rem;
}

.product-card__info__name + .product-card__info__link {
/* 	display: inline-block; */
/* 	float: right; */
}

.product-card__marker-list .product-card__marker--orange {
    color: #ffffff !important;
    background: #ffa800 !important;
}

.product-page__rrts-block p {
    margin: 0 0 4px;
    padding: 0;
    line-height: 1.3;
    color: #696768;
    font-weight:bold;
}




.product-page__action-block__row.rrts-block__row + .product-page__action-block__row {
	margin-top: 0px !important;
}

.product-page__action-block__row.rrts-block__row + .product-page__action-block__row.counter-block__row {
	margin-top: 4px !important;
}

@media (min-width: 768px) {
	.product-page__action-block__row.rrts-block__row + .product-page__action-block__row.counter-block__row {
		margin-top: 8px !important;
	}
}

.clear-basket-buttons-wrapper {
	display:flex;
}

.clear-basket-buttons-wrapper button:not(:first-child){
	margin-left:1rem;
}





.mobile-only,
.desktop-only {
	display:none;
}

@media (max-width: 480px) {
	.mobile-only {
		display:initial;
	}
}

@media (min-width: 481px) {
	.desktop-only {
		display:initial;
	}
}




.product-page__cols-info :first-child {
	padding-top:0rem;
	padding-bottom:1rem;
}


.product-page__action-block {
	height:auto;
}





.product-item-detail-info-api {
	position:relative;
	width:100%;
}

@media (max-width: 480px) {
	.product-item-detail-info-api {
		margin-bottom:30px;
	}
}

.product-item-detail-info-api h2 {
	padding-left:60px;
	padding-right:60px;
}

@media (max-width: 1610px) {
	.product-item-detail-info-api h2 {
		padding-left:30px;
		padding-right:30px;
	}
}


@media (max-width: 1200px) {
	.product-item-detail-info-api h2 {
		padding-left:20px;
		padding-right:20px;
	}
}


.product-item-detail-info-api table {
	width:100%;
	cell-spacing: 0;
	cell-padding: 0;
	border:0;
}

.product-item-detail-info-api table td {
	border: 0;
	padding: 0;
	color: #404041;
    padding: 5px 0;
}

@media (max-width: 480px) {
	.product-item-detail-info-api table td {
		font-size: 14px;
	    line-height: 18px;
	}
}

.product-item-detail-info-api table tr:nth-child(odd) td {
	background: #f9f9f9;
}


.product-item-detail-info-api table td:first-child {
	padding-left:60px;
	padding-right:1rem;
}

.product-item-detail-info-api table td:last-child {
	padding-right:60px;
}


@media (max-width: 1610px) {
	.product-item-detail-info-api table td:first-child {
		padding-left:30px;
	}
	
	.product-item-detail-info-api table td:last-child {
		padding-right:30px;
	}
}


@media (max-width: 1200px) {
	.product-item-detail-info-api table td:first-child {
		padding-left:20px;
	}
	
	.product-item-detail-info-api table td:last-child {
		padding-right:20px;
	}
}



.product-item-detail-info-api.is-collapsed {
/* 	max-height:260px; */
	overflow:hidden;
}


.product-item-detail-info-api .open-button {
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	
	display:none;
	width:100%;
	text-align:center;
	cursor:pointer;
	height: 81px;
	
	background-image: linear-gradient(rgb(249,249,249,0), rgba(249,249,249,1));
	
/* 	background: url(/local/templates/rcshop/./images/bt-bg-toggle.png) center center no-repeat, url(/local/templates/rcshop/./images/bt-bg-gray.png) bottom left repeat-x; */
}

.product-item-detail-info-api.is-collapsed .open-button {
	display:block;
}


.product-item-detail-info-api .open-button span {
	display:block;
	width:100%;
	height: 27px;
	
	background-image: linear-gradient(rgb(249,249,249,0), rgba(249,249,249,1));
}
.product-item-detail-info-api .open-button a {
	display:block;
	width:100%;
	height: 54px;
	
	background: url(/local/templates/rcshop/./images/bt-bg-toggle.png) center center no-repeat, url(/local/templates/rcshop/./images/bt-bg-gray.png) bottom left repeat-x;
}

.product-item-detail-info-api table a {
	text-decoration:underline;
	color:inherit;
}

.product-item-detail-info-api table a:hover {
	text-decoration:none;
}


.order-2 {
	order:2;
}


.product-tabs__slider {
/* 	position:static; */
/* 	z-index:0; */
	margin-bottom: 40px;
}

.product-tabs__slider .slick-list {
	height:auto;
}

.product-tabs__slider .slick-arrow {
    height: 364px;
}

.slick-slider.noscroll {
	margin-left:-40px;
	margin-right:-40px;
}

.slick-slider.noscroll .slick-track {
	margin-left:0;
}

/*
.slick-slider.noscroll .product-tabs__slider-item:first-child .product-card__inner:not(:hover) {
	border-left-color: #dfdfdf;
}
*/

@media (max-width: 480px) {
	.product-tabs__panel {
		margin-bottom: 10px;
	}	
	.element-description .description-des {
		margin-top: 20px;
	}
}	


@media (min-width: 481px) {
	.element-description .description-des,
	.element-description .reviews-des {
		margin-left: 0;
	    padding-left: 0;
	    
	    margin-bottom: 40px;
	}
	
	
	.recom-goods-set .product-card__list-item--6 {
/* 		width:50%; */
	}
	
	.product-card .product-page__cols-info {
		padding-bottom:0;
	}
	
	.product-card .sotbit-seometa-tags-wrapper {
		margin-top: 40px;
	}
	
	.product-tabs__panel-wrapper {
		margin-top:24px;
	}
	
	.product-tabs__content {
		padding-top:0;
	}
	
	.products-cols {
		margin-bottom: 40px;
	}
	
	.product_tabs_set .product-card__list-item--4:nth-child(3n + 1) .product-card__inner:not(:hover) {
		border-left-color: transparent;
	}
}

@media (min-width: 481px) and (max-width: 600px) {
	.product_tabs_set .product-card__list-item--4:nth-child(4n + 1) .product-card__inner:not(:hover) {
		border-left-color: transparent;
	}
	.product_tabs_set .product-card__list-item--4:nth-child(2n + 1) .product-card__inner:not(:hover){
		border-left-color: #dfdfdf;
	}
}

@media (min-width: 601px) {
	.product_tabs_set .product-card__list-item--4,
	.recom-goods-set .product-card__list-item--6 {
		width:33.33%;
	}
}

@media (min-width: 601px) and (max-width: 768px) {
	.product_tabs_set .product-card__list-item--4:nth-child(4n + 1) .product-card__inner:not(:hover) {
		border-left-color: transparent;
	}
	.product_tabs_set .product-card__list-item--4:nth-child(3n + 1) .product-card__inner:not(:hover){
		border-left-color: #dfdfdf;
	}
}

@media (min-width: 769px) {
	.desktop-b-top {
		border-top: 1px solid #ff7300;
		padding-top: 40px;
		margin-top: -1px;
	}
	
	.product-tabs__panel {
		white-space: nowrap;
		overflow-x: hidden;/*auto;*/
	}
	
	.product-tabs__panel-item {
		border-radius: 3px 3px 0 0 ;
	}
	
	.product_tabs_set .product-card__list-item--4,
	.recom-goods-set .product-card__list-item--6 {
		width:25%;
	}
	
	.product_tabs_set .catalog__more-btn {
		margin-left: 25%;
		margin-right: 25%;
		width:50%;
		
		margin-bottom: 40px;
	}
	
	
	.product-card .product-page__cols-info {
		padding-bottom:0;
	}
	
	.product-card .sotbit-seometa-tags-wrapper {
		margin-top: 40px;
	}
	
	.product-tabs__panel-wrapper {
		margin-top:24px;
	}
	
	.product-tabs__content {
		padding-top:0;
	}
	
	.products-cols {
		margin-bottom: 40px;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.product_tabs_set .product-card__list-item--4:nth-child(4n + 1) .product-card__inner:not(:hover) {
		border-left-color: transparent;
	}
	.product_tabs_set .product-card__list-item--4:nth-child(3n + 1) .product-card__inner:not(:hover){
		border-left-color: #dfdfdf;
	}
}

@media (min-width: 1025px) {
	.element-description .description-des,
	.element-description .reviews-des {
		margin-left: 20%;
	    padding-left: 30px;
	}
	
	.product_tabs_set .product-card__list-item--4,
	.recom-goods-set .product-card__list-item--6 {
		width:20%;
	}
	
	.product_tabs_set .catalog__more-btn {
		margin-left: 20%;
		margin-right: 20%;
		width:60%;
	}


	
}

@media (min-width: 1025px) and (max-width: 1281px) {
	.product_tabs_set .product-card__list-item--4:nth-child(5n + 1) .product-card__inner:not(:hover) {
		border-left-color: transparent;
	}
	.product_tabs_set .product-card__list-item--4:nth-child(5n + 1) .product-card__inner:not(:hover){
		border-left-color: #dfdfdf;
	}
/*
	.product_tabs_set .product-card__list-item--4:nth-child(1n) .product-card__inner:not(:hover) {
		border-left-color: #dfdfdf;
	}	
*/
	
}

@media (min-width: 1281px) {
	.element-description .description-des,
	.element-description .reviews-des {
		margin-left: 20%;
	    padding-left: 30px;
	}
	
	.product_tabs_set .product-card__list-item--4,
	.recom-goods-set .product-card__list-item--6 {
		width:16.66%;
	}
	
	.product_tabs_set .catalog__more-btn {
		margin-left: 16.66%;
		margin-right: 16.66%;
		width:66.66%;
	}


}

@media (min-width: 1281px)/*  and (max-width: 1920px) */ {
	.product_tabs_set .product-card__list-item--4:nth-child(4n + 1) .product-card__inner:not(:hover) {
		border-left-color: transparent;
	}
	.product_tabs_set .product-card__list-item--4:nth-child(6n + 1) .product-card__inner:not(:hover){
		border-left-color: #dfdfdf;
	}
}

@media (min-width: 1411px) {
	.element-description .description-des,
	.element-description .reviews-des {
		margin-left: 16.66%;
	    padding-left: 30px;
	}
}


.product-card .sotbit-seometa-tags-wrapper {
    padding: 0;
}

.product-card .sotbit-seometa-tag {
	margin-bottom: 0;
}

.product-card__list-item-hidden {
	display:none!important;
}

.catalog__more-btn.bt-blur {
	background-color: #ffa800!important;
    border-color: #ff7300!important;
}

@media (min-width: 768px) and (max-width: 1300px) {
	.product-card__list-item--3:nth-child(3n) {
	    display: none;
	}
}


@media (min-width: 769px) and (max-width: 1024px) {
	.products-cols.products-cols__fx .products-cols__col .product-card__list-item--3 {
		width: 50%;
	}
	
	.products-cols.products-cols__fx .products-cols__col-lg-4-10, 
	.products-cols.products-cols__fx .products-cols__col-lg-6-10 {
		width: 50% !important;
	}
	
	.products-cols.products-cols__fx .product-card__list-item--3:nth-child(3n) {
	    display: none!important;
	}
	
	.products-cols.products-cols__fx .product-card__list {
		margin:0;
		margin-left:-22px;
	}
	
	.products-cols.products-cols__fx .products-cols__col + .products-cols__col .product-card__list {
		margin:0;
		margin-right:-22px;
	}
	
	.product-card__prices-new {
		min-width:70px;
		text-align: right;
	}
}


@media (min-width: 769px) {
	.product-page__lg-image-actions {
	    right: 70px;
	}
}

.product-page__all-image-favorite {
	position: absolute;
	top: 25px;
    right: 25px;
    z-index: 1;
}

.product-page__all-image-favorite > a {
	margin: 0;
}

@media (max-width: 768px) {
	.product-page__favor-link {
		display:none;
	}
	.product-page__all-image-favorite {
		top: 17px;
	    right: 50px;
	}
	.product-page__all-image-favorite > a {
		margin: 15px;
	}

}


.delivery__card .delivery__card-content .delivery__card-map #ymaps {
    width: 100% !important;
    height: 100% !important;
    min-height: 400px;
    margin: 0;
    padding: 0;
    
/*
    line-height: 1.2;
    text-align: center;
    background-repeat: no-repeat;
    background-size: contain;
    float: right; 
*/   
}

@media (max-width: 768px) {
	.delivery__card .delivery__card-content .delivery__card-map-container.no-margin {
		margin:0;
		margin-left: -132px !important;
	}
}

/* @media (max-width: 1023px) {
	.product-card__list.content-left-indent:not(.product-card__list-on-news-detail) {
		margin-left:0!important;
		margin-right:0!important;
	}
} */

@media (max-width: 768px) {
	.breadcrumbs__item:last-child .breadcrumbs__link {
	    border-color: #7f7f7f;
	}
}

/* End */
/* /local/templates/rcshop/css/choices.css?17168103428000 */
/* /local/templates/rcshop/css/main.css?1731931249458310 */
/* /local/templates/rcshop/css/common.css?17319312494899 */
/* /local/templates/rcshop/css/jquery-ui.css?169952927030380 */
/* /local/templates/rcshop/css/catalog.item.fix.css?17319312492769 */
/* /local/templates/rcshop/js/fancybox/jquery.fancybox-all-page.css?169952927015435 */
/* /local/templates/rcshop/components/bitrix/menu/mb-menu/style.css?17168103424500 */
/* /local/templates/rcshop/js/overlayScrollbars/OverlayScrollbars.css?156510850722418 */
/* /local/templates/rcshop/components/bitrix/menu/top-menu-1/style.css?16995298201909 */
/* /local/templates/rcshop/components/arturgolubev/search.title/clever_search/style.css?17168103424482 */
/* /local/templates/rcshop/components/bitrix/menu/section_menu/style.css?16995298201220 */
/* /bitrix/components/richcode/catalogizator/templates/.default/style.css?1560954187119 */
/* /local/templates/rcshop/components/bitrix/menu/catalogizator/style.min.css?1565108507490 */
/* /local/templates/rcshop/components/bitrix/system.auth.form/rcstore-auth/style.css?156510850792 */
/* /local/templates/rcshop/components/oscompany/opt.register/modal-reg-company-only/style.css?17479071592950 */
/* /local/templates/rcshop/components/richcode/eshop.socnet.links/rcstore-soclinks/style.css?16995292701172 */
/* /local/templates/rcshop/styles.css?171681034244876 */
/* /local/templates/rcshop/template_styles.css?173193124920858 */
