@keyframes "rotate" {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes "check" {
  from {
    margin-left: -15px;
  }
  to {
    margin-left: 12px;
  }
}
@keyframes "timer-blink" {
  from {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
@keyframes "shadow" {
  from {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes "arrow" {
  from {
    top: 50%;
  }
  49% {
    top: -8px;
  }
  50% {
    top: -8px;
    opacity: 0;
  }
  51% {
    top: calc(100% + 8px);
    opacity: 1;
  }
  to {
    top: 50%;
  }
}
@keyframes "blink" {
  0% {
    opacity: 0.2;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(28, 156, 83, 0.7);
  }
  25% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(28, 156, 83, 0);
  }
  40% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(28, 156, 83, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(28, 156, 83, 0);
  }
}
html {
  height: 100%;
  --main-color: #1C9C53;
  --main-color-light: #1cd96d;
}
body {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #424242;
  line-height: 23px;
  background-color: #f5f5f5;
}
body.sidebar-wo .wrapper {
  padding-left: 0;
}
body.sidebar-wo footer {
  padding-left: 0;
}
body.width-1440px .container {
  max-width: 1440px;
}
div[id*='wait_comp_'] {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.5) !important;
  border: none !important;
  text-indent: -9999px !important;
}
div[id*='wait_comp_']:after {
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  background: url('/local/templates/magnet_s1/img/preloader-circle.svg') no-repeat;
  background-size: 100%;
  animation: rotate 2s infinite linear;
}
.wrapper {
  flex: 1 0 auto;
  padding-left: 148px;
}
.container {
  width: 96.984%;
  margin: 0 auto;
}
h1 {
  margin: 10px 0;
  color: #282828;
  font-weight: 700;
  font-size: 2em;
  line-height: 1.2em;
}
h2 {
  margin: 10px 0;
  color: #282828;
  font-weight: 700;
  font-size: 1.625em;
  line-height: 1.2em;
}
h3 {
  margin: 10px 0;
  color: #282828;
  font-weight: 700;
  font-size: 1.375em;
}
h4 {
  margin: 10px 0;
  color: #282828;
  font-weight: 700;
  font-size: 1.125em;
}
h4 + .code-content {
  margin-top: 15px;
}
h5 {
  margin: 10px 0;
  color: #282828;
  font-weight: 700;
  font-size: 1em;
}
h6 {
  margin: 10px 0;
  color: #282828;
  font-weight: 700;
  font-size: 0.8125em;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.h1 {
  margin: 10px 0;
  color: #282828;
  font-weight: 700;
  font-size: 2em;
  line-height: 1.2em;
}
.h2 {
  margin: 10px 0;
  color: #282828;
  font-weight: 700;
  font-size: 1.625em;
  line-height: 1.2em;
}
.h3 {
  margin: 10px 0;
  color: #282828;
  font-weight: 700;
  font-size: 1.375em;
}
.h4 {
  margin: 10px 0;
  color: #282828;
  font-weight: 700;
  font-size: 1.125em;
}
.h5 {
  margin: 10px 0;
  color: #282828;
  font-weight: 700;
  font-size: 1em;
}
.h6 {
  margin: 10px 0;
  color: #282828;
  font-weight: 700;
  font-size: 0.8125em;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
p {
  margin: 11px 0;
}
a {
  color: var(--main-color);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.3s;
}
a:focus {
  outline: none !important;
}
label {
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
  max-height: 100%;
}
input {
  font-family: 'Roboto';
  line-height: inherit;
}
input:focus {
  outline: none !important;
}
button {
  font-family: 'Roboto';
  line-height: inherit;
}
button:focus {
  outline: none !important;
}
button:disabled {
  opacity: 0.5 !important;
}
optgroup {
  font-family: 'Roboto';
  line-height: inherit;
}
select {
  font-family: 'Roboto';
  line-height: inherit;
}
textarea {
  font-family: 'Roboto';
  line-height: inherit;
  padding: 15px 18px;
  font-size: 0.875em;
  line-height: 1.1em;
  letter-spacing: 0.01em;
  background-color: #f5f5f5;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  resize: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
textarea:focus {
  outline: none;
}
ol {
  margin: 10px 0;
  padding-left: 18px;
}
ol li {
  margin-bottom: 1px;
}
input[type="text"] {
  padding: 9px 10px;
  font-size: 14px;
  background-color: #f5f5f5;
  border: 1px solid #e7e7e7;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="num"] {
  padding: 9px 10px;
  font-size: 14px;
  background-color: #f5f5f5;
  border: 1px solid #e7e7e7;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="password"] {
  padding: 9px 10px;
  font-size: 14px;
  background-color: #f5f5f5;
  border: 1px solid #e7e7e7;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="email"] {
  padding: 9px 10px;
  font-size: 14px;
  background-color: #f5f5f5;
  border: 1px solid #e7e7e7;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
div:not(.bx-core-window) input[type="checkbox"]:not(.adm-designed-checkbox) {
  display: none;
}
div:not(.bx-core-window) input[type="checkbox"]:not(.adm-designed-checkbox) + label {
  position: relative;
  display: block;
  padding-left: 26px;
  line-height: 1.25em;
  user-select: none;
}
div:not(.bx-core-window) input[type="checkbox"]:not(.adm-designed-checkbox) + label:before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  background-color: #e7e7e7;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
  border-radius: 4px;
  cursor: pointer;
  box-sizing: border-box;
}
div:not(.bx-core-window) input[type="checkbox"]:not(.adm-designed-checkbox):checked + label:before {
  background-image: url(/local/templates/magnet_s1/img/icons/check.svg);
  background-color: var(--main-color);
}
div:not(.bx-core-window) ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
div:not(.bx-core-window) ul li {
  position: relative;
  padding-left: 14px;
}
div:not(.bx-core-window) ul li:before {
  content: '';
  position: absolute;
  top: 9px;
  left: -1px;
  display: block;
  width: 5px;
  height: 5px;
  background-color: var(--main-color);
  border-radius: 50%;
}
blockquote {
  position: relative;
  margin: 28px 0;
  padding: 18px 21px 22px;
  font-size: 1.25em;
  line-height: 1.4em;
  background-color: rgba(115, 195, 25, 0.05);
  border-left: 2px solid var(--main-color);
}
hr {
  height: 1px;
  margin: 15px 0;
  background-color: #e7e7e7;
  border: none;
}
#bx_yandex_position li::before {
  content: none;
}
.ajax-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
.icon-custom:before {
  display: inline-block;
  font-family: 'Icon Custom';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.btn {
  display: inline-block;
  min-width: 113px;
  padding: 10px 20px;
  font-size: 0.875em;
  color: #fff;
  font-weight: 700;
  background-color: var(--main-color);
  border: none;
  border-radius: 30px;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-xs {
  padding: 5px 15px;
}
.btn:hover {
  opacity: 0.9;
}
.btn.white {
  padding: 6px 16px;
  color: var(--main-color);
  background-color: #fff;
  border: 2px solid var(--main-color);
}
.btn.white:hover {
  color: #fff;
  background-color: var(--main-color);
  opacity: 1;
}
.btn.transparent {
  min-width: auto;
  padding: 8px 25px 9px 23px;
  font-size: 0.875em;
  color: #828282;
  font-weight: 400;
  background-color: transparent;
  border: 1px solid #e7e7e7;
  border-radius: 30px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}
.btn.transparent:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}
.btn.transparent.share {
  position: relative;
  padding: 0;
  border: none;
  opacity: 1;
  user-select: none;
}
.btn.transparent.share > span {
  position: relative;
  display: block;
  padding: 9px 23px 8px 25px;
  border: 1px solid #e7e7e7;
  border-radius: 30px;
  background-color: #fff;
  transition: all 0.2s ease;
  box-sizing: border-box;
  z-index: 2;
}
.btn.transparent.share > span:before {
  content: '\0058';
  position: relative;
  top: 1px;
  left: -3px;
  display: inline-block;
  font-family: 'Icon Custom';
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.btn.transparent.share .ya-share2 {
  position: absolute;
  top: 0;
  right: -125%;
  width: auto;
  height: 100%;
  margin-right: -20px;
  border-radius: 30px 0 0 30px;
  overflow: hidden;
  transition: all 0.5s linear;
  z-index: 1;
}
.btn.transparent.share .ya-share2 .ya-share2__container {
  width: 0;
  height: 100%;
  overflow: hidden;
  transition: width 0.5s linear;
}
.btn.transparent.share .ya-share2 .ya-share2__container .ya-share2__list {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-right: none;
  border-radius: 30px 0 0 30px;
  box-sizing: border-box;
}
.btn.transparent.share .ya-share2 .ya-share2__container .ya-share2__list .ya-share2__item {
  margin: 0 4px;
  padding-left: 0;
}
.btn.transparent.share .ya-share2 .ya-share2__container .ya-share2__list .ya-share2__item::before {
  content: none;
}
.btn.transparent.share .ya-share2 .ya-share2__container .ya-share2__list .ya-share2__item .ya-share2__icon {
  width: 22px;
  height: 22px;
}
.btn.transparent.share:hover > span {
  color: var(--main-color);
  border-color: var(--main-color);
}
.btn.transparent.share:hover .ya-share2 {
  right: 100%;
  box-shadow: -8px 4px 18px -8px rgba(0, 0, 0, 0.1);
}
.btn.transparent.share:hover .ya-share2 .ya-share2__container {
  width: 100%;
}
.btn[disabled="disabled"] {
  opacity: 0.5;
}
.btn.loaded {
  position: relative;
  color: rgba(0, 0, 0, 0);
}
.btn.loaded:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/local/templates/magnet_s1/img/preloader-white.svg');
  background-repeat: no-repeat;
  background-position: center center;
}
.btn.in-basket {
  position: relative;
  color: var(--main-color);
}
.btn.in-basket::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  background-image: url('/local/templates/magnet_s1/img/icons/check.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
}
.btn.in-basket::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 30px;
  height: 20px;
  margin: -10px 0 0 -15px;
  background-color: var(--main-color);
  box-shadow: 0 0 5px 0 var(--main-color);
  animation: check 0.2s 1 linear forwards;
  z-index: 2;
}
.btn.no-border {
  border: 0;
}
.popup-loading {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.popup-loading svg {
  width: 80px;
  height: 80px;
  animation: rotate 2s infinite linear;
}
.popup-loading svg circle {
  stroke: #fff;
}
.message-errors {
  margin-bottom: 30px;
  padding: 19px 20px 20px;
  font-size: 0.875em;
  color: #eb5757;
  line-height: 1.2em;
  background-color: #feeeee;
  border: 1px solid #f5a3a3;
  border-radius: 3px;
  box-sizing: border-box;
}
.message-success {
  margin-bottom: 30px;
  padding: 19px 20px 20px;
  font-size: 0.875em;
  color: #eb5757;
  line-height: 1.2em;
  background-color: #feeeee;
  border: 1px solid #f5a3a3;
  border-radius: 3px;
  box-sizing: border-box;
  color: #39b54a;
  background-color: #baffc3;
  border: 1px solid #48cd5b;
}
body.btns-rectangular .btn {
  border-radius: 2px;
}
body.btns-rectangular .banners .carousel .item .button {
  border-radius: 2px;
}
body.btns-rectangular .counter {
  border-radius: 2px;
}
body.btns-rectangular .filter .bx_filter_button_box input[type="submit"] {
  border-radius: 2px;
}
body.btns-rectangular .personal .personal-order-list .sale-order-list-container .sale-order-list-inner-container .sale-order-list-inner-row .sale-order-list-button-container .sale-order-list-button {
  border-radius: 2px;
}
body.btns-rectangular .personal .personal-order-list .sale-order-list-container .sale-order-list-inner-container .sale-order-list-inner-row .sale-order-list-cancel-container .sale-order-list-cancel-link {
  border-radius: 2px;
}
body.btns-rectangular .personal .personal-order-list .sale-order-list-container .sale-order-list-inner-container .sale-order-list-inner-row .sale-order-list-about-container .sale-order-list-about-link {
  border-radius: 2px;
}
body.btns-rectangular .personal .personal-order-list .sale-order-list-container .sale-order-list-inner-container .sale-order-list-inner-row .sale-order-list-repeat-container .sale-order-list-repeat-link {
  border-radius: 2px;
}
body.btns-rectangular .personal .personal-order-list .sale-order-list-container .sale-order-list-inner-accomplished .sale-order-list-about-link {
  border-radius: 2px;
}
body.btns-rectangular .personal .personal-order-list .sale-order-list-container .sale-order-list-inner-accomplished .sale-order-list-repeat-link {
  border-radius: 2px;
}
body.btns-rectangular .personal .personal-profile .main-profile-form-buttons-block .btn[name="reset"] {
  border-radius: 2px;
}
body.btns-rectangular .bx-basket .main-basket .basket-items-list-container .basket-items-list-table .basket-items-list-item-container .basket-items-list-item-amount .basket-item-block-amount {
  border-radius: 2px;
}
body.btns-rectangular .order-form .bx-soa .bx-soa-section .btn.pull-left {
  border-radius: 2px;
}
body.btns-rectangular .lazy-load-container .lazy-load-btn {
  border-radius: 2px;
}
body.titles-semibold h1 {
  font-weight: 500 !important;
}
body.titles-semibold h2 {
  font-weight: 500 !important;
}
body.titles-semibold h3 {
  font-weight: 500 !important;
}
body.titles-semibold h4 {
  font-weight: 500 !important;
}
body.titles-semibold h5 {
  font-weight: 500 !important;
}
body.titles-semibold h6 {
  font-weight: 500 !important;
}
body.titles-semibold .h1 {
  font-weight: 500 !important;
}
body.titles-semibold .h2 {
  font-weight: 500 !important;
}
body.titles-semibold .h3 {
  font-weight: 500 !important;
}
body.titles-semibold .h4 {
  font-weight: 500 !important;
}
body.titles-semibold .h5 {
  font-weight: 500 !important;
}
body.titles-semibold .h6 {
  font-weight: 500 !important;
}
body.titles-semibold .title {
  font-weight: 500 !important;
}
.owl-nav .owl-prev {
  display: inline-block;
}
.owl-nav .owl-next {
  display: inline-block;
}
.owl-dots {
  position: absolute;
  bottom: -12px;
  width: 100%;
  text-align: center;
}
.owl-dots .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 3px;
  background-color: #fff;
  border: 1px solid #a8a8a8;
  border-radius: 50%;
  box-sizing: border-box;
}
.owl-dots .owl-dot.active {
  background-color: var(--main-color);
  border-color: var(--main-color);
}
section .owl-nav .owl-prev {
  margin-left: 10px;
}
section .owl-nav .owl-next {
  margin-left: 10px;
}
section .owl-nav .owl-prev.disabled {
  opacity: 0.5;
}
section .owl-nav .owl-prev.disabled .prev:hover {
  color: inherit;
  background-color: #fff;
  cursor: default;
}
section .owl-nav .owl-prev.disabled .next:hover {
  color: inherit;
  background-color: #fff;
  cursor: default;
}
section .owl-nav .owl-next.disabled {
  opacity: 0.5;
}
section .owl-nav .owl-next.disabled .prev:hover {
  color: inherit;
  background-color: #fff;
  cursor: default;
}
section .owl-nav .owl-next.disabled .next:hover {
  color: inherit;
  background-color: #fff;
  cursor: default;
}
section .owl-nav .prev {
  width: 42px;
  height: 42px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.2s ease;
}
section .owl-nav .prev:before {
  position: relative;
  font-size: 14px;
  line-height: 42px;
  left: -1px;
  content: '\0047';
}
section .owl-nav .prev:hover {
  color: #fff;
  background-color: var(--main-color);
}
section .owl-nav .next {
  width: 42px;
  height: 42px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.2s ease;
}
section .owl-nav .next:before {
  position: relative;
  font-size: 14px;
  line-height: 42px;
  left: 1px;
  content: '\0048';
}
section .owl-nav .next:hover {
  color: #fff;
  background-color: var(--main-color);
}
section .owl-nav.disabled {
  display: none;
}
.main-nav .owl-nav .owl-prev {
  margin-left: 10px;
}
.main-nav .owl-nav .owl-next {
  margin-left: 10px;
}
.main-nav .owl-nav .owl-prev.disabled {
  opacity: 0.5;
}
.main-nav .owl-nav .owl-prev.disabled .prev:hover {
  color: inherit;
  background-color: #fff;
  cursor: default;
}
.main-nav .owl-nav .owl-prev.disabled .next:hover {
  color: inherit;
  background-color: #fff;
  cursor: default;
}
.main-nav .owl-nav .owl-next.disabled {
  opacity: 0.5;
}
.main-nav .owl-nav .owl-next.disabled .prev:hover {
  color: inherit;
  background-color: #fff;
  cursor: default;
}
.main-nav .owl-nav .owl-next.disabled .next:hover {
  color: inherit;
  background-color: #fff;
  cursor: default;
}
.main-nav .owl-nav .prev {
  width: 42px;
  height: 42px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.2s ease;
}
.main-nav .owl-nav .prev:before {
  position: relative;
  font-size: 14px;
  line-height: 42px;
  left: -1px;
  content: '\0047';
}
.main-nav .owl-nav .prev:hover {
  color: #fff;
  background-color: var(--main-color);
}
.main-nav .owl-nav .next {
  width: 42px;
  height: 42px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.2s ease;
}
.main-nav .owl-nav .next:before {
  position: relative;
  font-size: 14px;
  line-height: 42px;
  left: 1px;
  content: '\0048';
}
.main-nav .owl-nav .next:hover {
  color: #fff;
  background-color: var(--main-color);
}
.main-nav .owl-nav.disabled {
  display: none;
}
.products-carousel {
  width: 100%;
  margin-bottom: 24px;
}
.products-carousel .owl-nav .owl-prev {
  margin-left: 10px;
}
.products-carousel .owl-nav .owl-next {
  margin-left: 10px;
}
.products-carousel .owl-nav .owl-prev.disabled {
  opacity: 0.5;
}
.products-carousel .owl-nav .owl-prev.disabled .prev:hover {
  color: inherit;
  background-color: #fff;
  cursor: default;
}
.products-carousel .owl-nav .owl-prev.disabled .next:hover {
  color: inherit;
  background-color: #fff;
  cursor: default;
}
.products-carousel .owl-nav .owl-next.disabled {
  opacity: 0.5;
}
.products-carousel .owl-nav .owl-next.disabled .prev:hover {
  color: inherit;
  background-color: #fff;
  cursor: default;
}
.products-carousel .owl-nav .owl-next.disabled .next:hover {
  color: inherit;
  background-color: #fff;
  cursor: default;
}
.products-carousel .owl-nav .prev {
  width: 42px;
  height: 42px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.2s ease;
}
.products-carousel .owl-nav .prev:before {
  position: relative;
  font-size: 14px;
  line-height: 42px;
  left: -1px;
  content: '\0047';
}
.products-carousel .owl-nav .prev:hover {
  color: #fff;
  background-color: var(--main-color);
}
.products-carousel .owl-nav .next {
  width: 42px;
  height: 42px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.2s ease;
}
.products-carousel .owl-nav .next:before {
  position: relative;
  font-size: 14px;
  line-height: 42px;
  left: 1px;
  content: '\0048';
}
.products-carousel .owl-nav .next:hover {
  color: #fff;
  background-color: var(--main-color);
}
.products-carousel .owl-nav.disabled {
  display: none;
}
.products-carousel > .name {
  margin-left: 6px;
  font-size: 1.375em;
  font-weight: 700;
}
.products-carousel .owl-container {
  position: relative;
  margin: 32px 0 -24px;
}
.products-carousel .items {
  display: flex;
  width: 100%;
  height: 100%;
  z-index: 30;
  display: block !important;
}
.products-carousel .items .owl-stage-outer:hover {
  height: 150%;
  pointer-events: none;
}
.products-carousel .items .owl-stage-outer:hover .product-card:hover {
  pointer-events: auto;
}
.products-carousel .items .product-wrap {
  width: auto;
  max-width: 240px;
  margin: 0;
  transition: opacity 0.05s ease;
  opacity: 0;
}
.products-carousel .items .owl-nav {
  position: absolute;
  top: -63px;
  right: 0;
}
.products-carousel .items.wrap {
  flex-wrap: wrap;
}
.products-carousel .items.show .product-wrap {
  opacity: 1;
}
.promo-page {
  margin-top: 24px;
}
.promo-page .owl-nav {
  position: absolute;
  top: -56px;
  right: 0px;
}
.promo-page .owl-nav .owl-prev {
  margin-left: 10px;
}
.promo-page .owl-nav .owl-next {
  margin-left: 10px;
}
.promo-page .owl-nav .owl-prev.disabled {
  opacity: 0.5;
}
.promo-page .owl-nav .owl-prev.disabled .prev:hover {
  color: inherit;
  background-color: #fff;
  cursor: default;
}
.promo-page .owl-nav .owl-prev.disabled .next:hover {
  color: inherit;
  background-color: #fff;
  cursor: default;
}
.promo-page .owl-nav .owl-next.disabled {
  opacity: 0.5;
}
.promo-page .owl-nav .owl-next.disabled .prev:hover {
  color: inherit;
  background-color: #fff;
  cursor: default;
}
.promo-page .owl-nav .owl-next.disabled .next:hover {
  color: inherit;
  background-color: #fff;
  cursor: default;
}
.promo-page .owl-nav .prev {
  width: 42px;
  height: 42px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.2s ease;
}
.promo-page .owl-nav .prev:before {
  position: relative;
  font-size: 14px;
  line-height: 42px;
  left: -1px;
  content: '\0047';
}
.promo-page .owl-nav .prev:hover {
  color: #fff;
  background-color: var(--main-color);
}
.promo-page .owl-nav .next {
  width: 42px;
  height: 42px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.2s ease;
}
.promo-page .owl-nav .next:before {
  position: relative;
  font-size: 14px;
  line-height: 42px;
  left: 1px;
  content: '\0048';
}
.promo-page .owl-nav .next:hover {
  color: #fff;
  background-color: var(--main-color);
}
.promo-page .owl-nav.disabled {
  display: none;
}
.promo-page .promo-main-banner {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  padding: 2.8% 8.85%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.promo-page .promo-main-banner .title {
  margin: 0;
  font-size: 2em;
  line-height: 1.2em;
}
.promo-page .promo-main-banner .desc {
  margin-top: 12px;
}
.promo-page .promo-main-banner .btn {
  margin-top: 34px;
}
.promo-page .promo-main-banner-info {
  width: 50%;
  padding-right: 20px;
  box-sizing: border-box;
}
.promo-page .promo-main-banner-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 335px;
  flex-shrink: 0;
}
.promo-page .promo-text {
  display: flex;
  margin-bottom: 24px;
  padding: 41px 40px 40px;
  background-color: #fff;
}
.promo-page .promo-text .content {
  padding-right: 30px;
}
.promo-page .promo-text .content .subtitle {
  margin: 0;
  font-size: 1.625em;
  line-height: 1.2em;
}
.promo-page .promo-text .main-text {
  margin-top: 28px;
  line-height: 1.5em;
}
.promo-page .promo-text .video-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 43px -10px -20px;
}
.promo-page .promo-text .video-section .item {
  width: calc((100% - 40px) / 2);
  height: 17.4vw;
  margin: 0 10px 20px;
}
.promo-page .promo-text .video-section .item iframe {
  width: 100% !important;
  height: 100% !important;
}
.promo-page .promo-text .promo-docs {
  width: 351px;
  padding: 0 31px;
  flex-shrink: 0;
  border-left: 1px solid #e7e7e7;
  box-sizing: border-box;
}
.promo-page .promo-text .promo-docs .subtitle {
  margin: 0;
  font-size: 1.375em;
  line-height: 1.2em;
}
.promo-page .promo-text .promo-docs .documents .items {
  flex-direction: column;
  margin-top: 30px;
}
.promo-page .promo-text .promo-docs .documents .items .item {
  width: 100%;
  margin-bottom: 26px;
}
.promo-page .promo-text .promo-docs .documents .items .item::before {
  top: 0;
  left: 0;
}
.promo-page .promo-banner {
  position: relative;
  margin-bottom: 24px;
  padding: 3.55% 5% 3.65%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.promo-page .promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.promo-page .promo-banner .title {
  margin: 0;
  font-size: 2em;
  color: #fff;
  font-weight: 700;
  line-height: 1.4em;
}
.promo-page .promo-banner .desc {
  margin-top: 10px;
}
.promo-page .promo-banner .btn {
  margin-top: 34px;
}
.promo-page .promo-banner-info {
  position: relative;
  width: 50%;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  z-index: 2;
}
.promo-page .promo-gallery {
  margin-bottom: 24px;
  padding: 40px 38px 20px;
  background-color: #fff;
}
.promo-page .promo-gallery .title {
  margin: 0 105px 0 2px;
  font-size: 1.375em;
  line-height: 1.25em;
}
.promo-page .promo-gallery .items {
  display: block;
  margin: 9px -20px 0;
}
.promo-page .promo-gallery .items .owl-stage-outer {
  width: calc(100% + 40px);
  padding: 20px;
  box-sizing: border-box;
}
.promo-page .promo-gallery .items .owl-stage {
  display: flex;
}
.promo-page .promo-gallery .items .owl-item {
  flex-grow: 1;
  flex-shrink: 0;
  padding-right: 1px;
  box-sizing: border-box;
}
.promo-page .promo-gallery .items .item {
  width: 100%;
  height: 100%;
  margin: 0;
}
.promo-page .promo-gallery .items .item img {
  width: auto;
}
.promo-page .promo-gallery .owl-nav {
  position: absolute;
  top: -36px;
  right: -18px;
}
.promo-page .promo-gallery .owl-dots {
  position: static;
  margin-top: 15px;
}
.promo-page .promo-reviews {
  margin-bottom: 24px;
  padding: 40px;
  background-color: #fff;
}
.promo-page .promo-reviews .title {
  margin: 0 105px 0 0;
  font-size: 1.375em;
  line-height: 1.25em;
}
.promo-page .promo-reviews .items {
  margin: 30px 0 0;
}
.promo-page .promo-reviews .items .owl-stage {
  display: flex;
}
.promo-page .promo-reviews .items .owl-item {
  flex-grow: 1;
  flex-shrink: 0;
  padding-right: 1px;
  box-sizing: border-box;
}
.promo-page .promo-reviews .items .item {
  height: 100%;
  padding: 29px 29px 33px;
  border: 1px solid #e7e7e7;
  box-sizing: border-box;
}
.promo-page .promo-reviews .items .item .review-info {
  display: flex;
  align-items: center;
}
.promo-page .promo-reviews .items .item .author-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.promo-page .promo-reviews .items .item .author-img-container {
  position: relative;
  width: 100px;
  height: 100px;
  margin-right: 31px;
  flex-shrink: 0;
}
.promo-page .promo-reviews .items .item .author-img-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--main-color);
  background-image: url('/local/templates/magnet_s1/img/icons/commas.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  border-radius: 50%;
}
.promo-page .promo-reviews .items .item .author-info .name {
  font-size: 1.125em;
  color: #000;
  font-weight: 700;
  line-height: 1.2em;
}
.promo-page .promo-reviews .items .item .author-info .review-product {
  margin-top: 6px;
  font-size: 0.875em;
  color: #828282;
}
.promo-page .promo-reviews .items .item .author-info .review-product a {
  display: inline-block;
}
.promo-page .promo-reviews .items .item .author-info .review-product a:hover {
  text-decoration: underline;
}
.promo-page .promo-reviews .items .item .review-text {
  margin-top: 19px;
  font-size: 0.875em;
  line-height: 1.5em;
}
.promo-page .promo-reviews .items .item .review-read-more {
  display: none;
}
.promo-page .promo-reviews .owl-dots {
  position: static;
  margin-top: 15px;
}
.promo-page .promo-steps {
  margin-bottom: 24px;
  padding: 39px 40px 19px;
  background-color: #fff;
}
.promo-page .promo-steps .title {
  margin: 0;
  font-size: 1.375em;
  line-height: 1.25em;
}
.promo-page .promo-steps .items {
  display: flex;
  flex-wrap: wrap;
  margin: 30px -85px 0 0;
  padding: 0;
  list-style: none;
}
.promo-page .promo-steps .items .item {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: calc(25% - 85px);
  margin: 0 85px 30px 0;
  box-sizing: border-box;
  counter-increment: list-counter;
}
.promo-page .promo-steps .items .item::before {
  content: counter(list-counter);
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 20px;
  background-color: var(--main-color);
  border-radius: 50%;
}
.promo-page .promo-steps .items .item::after {
  content: '';
  position: absolute;
  top: 22px;
  right: -46px;
  display: block;
  width: 26px;
  height: 16px;
  background-image: url('/local/templates/magnet_s1/img/icons/arrow-right.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.promo-page .promo-steps .items .item .icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  margin-right: 5.845%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
  border: 1px solid #282828;
  border-radius: 50%;
  box-sizing: border-box;
}
.promo-page .promo-steps .items .item .name {
  color: #282828;
  font-weight: 700;
  line-height: 1.25em;
}
.promo-page .promo-steps .items .item .desc {
  margin-top: 5px;
  font-size: 0.875em;
  line-height: 1.5em;
}
.promo-page .promo-steps .items .item:last-child::after {
  content: none;
}
.promo-page .promo-steps-content {
  overflow: hidden;
}
.promo-page .promo-faq {
  margin-bottom: 24px;
  padding: 39px 40px 16px;
  background-color: #fff;
}
.promo-page .promo-faq .title {
  margin: 0;
  font-size: 1.375em;
  line-height: 1.25em;
}
.promo-page .promo-faq .desc {
  margin-top: 18px;
}
.promo-page .promo-faq .columns {
  display: flex;
  margin: 10px -12px 0;
}
.promo-page .promo-faq .columns .column {
  flex: 1 1 50%;
  max-width: 100%;
  margin: 0 12px;
}
.tel-container .tel {
  line-height: 1.3;
}
.tel-container .tel a {
  font-size: 1.125em;
  color: #282828;
  font-weight: 700;
  white-space: nowrap;
}
.tel-container .tel a:hover {
  color: var(--main-color);
}
.tel-container .tel .schedule {
  font-size: 0.75em;
  color: #acacac;
}
header {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 22;
}
header .top {
  margin-left: 3px;
  padding: 9px 0 8px;
  border-bottom: 1px solid #e7e7e7;
}
header .top .container {
  display: flex;
}
header .middle {
  padding: 11px 0 12px;
  border-bottom: 1px solid #e7e7e7;
}
header .middle .container {
  display: flex;
  align-items: center;
  gap: 0 25px;
}
header .middle .container > div[id*="bx_incl"] {
  width: 100%;
  max-width: 500px;
}
header .middle .tel-container {
  display: flex;
  align-items: center;
  gap: 25px;
  width: min-content;
  margin: 0 2%;
  white-space: nowrap;
}
header .middle .tel-container .call-me {
  display: flex;
  font-size: 0.875em;
  line-height: 1;
  --call-me-color: #e7e7e7;
  --call-me-color-text: #acacac;
  transition: all 0.3s;
}
header .middle .tel-container .call-me .callback-popup-btn {
  padding: 14px 20px 12px;
  color: var(--call-me-color-text);
  transition: all 0.3s;
  border: 2px solid var(--call-me-color);
  border-radius: 30px 30px 30px 30px;
}
header .middle .tel-container .call-me .callback-popup-btn:hover {
  --call-me-color: var(--main-color);
  --call-me-color-text: #fff;
  background: var(--main-color);
}
header .middle .tel-container .call-me .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  border: 2px solid var(--call-me-color);
  border-left: 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 30px;
  transition: all 0.3s;
}
header .middle .tel-container .call-me .icon path {
  fill: var(--call-me-color-text);
}
header .middle .tel-container .call-me .icon:before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  border-left: 1px solid var(--call-me-color);
}
header .middle .tel-container .call-me .icon:not(:last-child) {
  border-right: 0;
}
header .middle .tel-container .call-me .icon:last-child {
  border-radius: 0 30px 30px 0;
  padding-right: 10px;
}
header .middle .tel-container .call-me .icon:hover {
  background: var(--main-color);
  --call-me-color: var(--main-color);
  --call-me-color-text: #fff;
}
header .middle .tel-container .call-me .icon:hover:before {
  opacity: 0;
}
header .city {
  position: relative;
  margin-right: auto;
  font-size: 0.875em;
}
header .city .current {
  color: #828282;
}
header .city .current a {
  display: inline-block;
  margin-left: 3px;
  color: var(--main-color);
}
header .city .current:after {
  content: '';
  position: relative;
  top: 2px;
  display: inline-block;
  margin-left: 5px;
  border: 4px solid transparent;
  border-top: 4px solid #000;
}
header .city .list {
  position: absolute;
  top: 100%;
  left: 65px;
  display: none;
  padding: 0;
  list-style: none;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
  z-index: 20;
}
header .city .list li {
  margin-bottom: 0;
  padding-left: 0;
  line-height: 1em;
  white-space: nowrap;
}
header .city .list li:not(:last-child) {
  border-bottom: 1px solid #e7e7e7;
}
header .city .list li:before {
  content: none;
}
header .city .list li a {
  display: block;
  padding: 13px;
  color: #424242;
}
header .city .list li:hover {
  background-color: #f5f5f5;
}
header .city .popup-city {
  position: absolute;
  top: 30px;
  background: #FFFFFF;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
  border-radius: 11px;
  padding: 30px 20px 15px;
  z-index: 50;
}
header .city .popup-city p {
  font-family: Roboto;
  font-size: 14px;
  line-height: 16px;
  color: #828282;
  margin: 0;
}
header .city .popup-city p span {
  color: #282828;
  font-weight: 600;
}
header .city .popup-city .city-wrap__other {
  display: block;
  width: 105px;
  margin: 0 auto;
  border-bottom: 1px dashed var(--main-color);
  transition: 0.2s ease;
}
header .city .popup-city .city-wrap__other:hover {
  border-color: transparent;
}
header .city .city-wrap__btns {
  display: flex;
  align-items: center;
  padding: 24px 0;
}
header .city .city-wrap__btns a {
  display: inline-block;
  color: #282828;
  padding: 12px 45px;
  border: 1px solid var(--main-color);
  border-radius: 50px;
  transition: 0.2s ease;
}
header .city .city-wrap__btns a:hover {
  background: var(--main-color);
  color: #ffffff;
}
header .city .city-wrap__btns .city-wrap__yes {
  margin-right: 16px;
}
header .city.open .list {
  display: block;
}
header .links {
  margin-left: 5%;
  font-size: 0.75em;
  white-space: nowrap;
  text-transform: uppercase;
}
header .links a {
  color: #424242;
}
header .links a:hover {
  color: var(--main-color);
}
header .logo {
  max-width: 150px;
  flex-shrink: 0;
}
header .logo > a {
  display: flex;
  align-items: center;
  height: 56px;
  line-height: 0;
}
header .logo svg {
  max-width: 100%;
  max-height: 100%;
}
header .logo svg rect {
  fill: var(--main-color);
  transition: fill 0.3s ease;
}
header .logo svg:hover rect {
  fill: #f00;
}
header .slogan {
  font-size: 0.875em;
  line-height: 1.2em;
  color: #aaa;
  flex-shrink: 0;
  margin-right: auto;
}
header .tools {
  margin-left: auto;
  display: flex;
  gap: 15px;
  font-size: 0.75em;
  line-height: 1.15em;
  white-space: nowrap;
}
header .tools .tool-link {
  color: #424242;
  position: relative;
  text-align: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
header .tools .tool-link:before {
  font-size: 22px;
  margin-bottom: 7px;
  position: relative;
}
header .tools .tool-link:hover {
  color: var(--main-color);
}
header .tools .tool-link.compare-link:before {
  content: '\0042';
}
header .tools .tool-link.wishlist-link:before {
  content: '\0043';
}
header .tools .tool-link.basket-link {
  line-height: 1;
}
header .tools .tool-link.basket-link:before {
  content: '';
  background: no-repeat url(../img/icons/basket.svg) 50% 50% / contain;
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-bottom: 3.5px;
}
header .basket-container {
  display: flex;
  width: auto;
  flex-shrink: 0;
  color: #626262;
}
header .basket-container .basket-container-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
header .basket-container .basket-container-items > div[id*="bx_incl"] {
  display: flex;
}
header .basket-container .basket-link .items-counter {
  position: absolute;
  top: -8px;
  right: 0;
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 17px;
  padding: 0 4px;
  color: #fff;
  text-align: center;
  background-color: #626262;
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: 0 0 0 1px #fff;
}
header .socials {
  height: 28px;
  margin: -3px 25px 0 0;
}
header .socials .item {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 5px;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  transition: all 0.2s ease;
  background-size: cover;
}
header .socials .item.youtube {
  background-image: url("/local/templates/magnet_s1/img/icons/youtube-icon2.svg");
}
header .socials .item.telegram {
  background-image: url("/local/templates/magnet_s1/img/icons/telegram-icon.svg");
}
header .socials .item.vk {
  background-image: url("/local/templates/magnet_s1/img/icons/vk-icon.svg");
}
.search-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  height: 40px;
  padding: 0 20px;
  gap: 15px;
  border-radius: 25px;
  border: 2px solid var(--main-color);
  font-size: 0.875em;
  line-height: 1;
  color: #bbb;
  cursor: pointer;
  transition: all 0.3s;
}
.search-toggle:hover {
  color: var(--main-color);
}
.search-toggle .icon-custom:before {
  content: '\0045';
  font-size: 14px;
}
.search {
  position: fixed;
  z-index: 60;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background: rgba(0, 0, 0, 0.2);
  max-width: 100vw;
  max-height: 100vh;
}
.search.is-active {
  display: block;
}
.search .search-wrapper {
  background: #fff;
  padding: 50px;
}
.search form {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  font-size: 0.875em;
  background-color: #f5f5f5;
  border-radius: 25px;
  border: 2px solid var(--main-color);
}
.search form input {
  flex-grow: 1;
  height: 100%;
  padding: 0 5px 0 18px;
  background-color: transparent;
  border: none;
  box-sizing: border-box;
}
.search form input::-webkit-input-placeholder {
  color: #828282;
}
.search form input::-moz-placeholder {
  color: #828282;
}
.search form input:-ms-input-placeholder {
  color: #828282;
}
.search form input:-moz-placeholder {
  color: #828282;
}
.search form input:-webkit-autofill {
  border-radius: 25px;
  background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 174, 255, 0.04) 50%, rgba(255, 255, 255, 0) 51%, rgba(0, 174, 255, 0.03) 100%);
  box-shadow: inset 0 0 0px 1000px #f5f5f5;
}
.search form input:-webkit-autofill:hover {
  border-radius: 25px;
  background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 174, 255, 0.04) 50%, rgba(255, 255, 255, 0) 51%, rgba(0, 174, 255, 0.03) 100%);
  box-shadow: inset 0 0 0px 1000px #f5f5f5;
}
.search form input:-webkit-autofill:focus {
  border-radius: 25px;
  background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 174, 255, 0.04) 50%, rgba(255, 255, 255, 0) 51%, rgba(0, 174, 255, 0.03) 100%);
  box-shadow: inset 0 0 0px 1000px #f5f5f5;
}
.search form button {
  width: auto;
  height: 40px;
  min-width: 40px;
  margin: 0 3px 0 auto;
  padding: 0 10px;
  background-color: #fff;
  border-radius: 25px;
  border: none;
  text-align: center;
  line-height: 1.15em;
  flex-shrink: 0;
  box-sizing: border-box;
  cursor: pointer;
}
.search form button:before {
  content: '\0045';
  font-size: 14px;
}
.search form button span {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 0;
  font-size: 14px;
  padding-left: 0;
  overflow: hidden;
  transition: width 0.4s ease, padding-left 0.1s ease 0.3s;
}
.search form button:hover span {
  width: 45px;
  padding-left: 5px;
  transition: width 0.4s ease, padding-left 0.1s ease;
}
.search form button:hover:focus {
  box-shadow: none;
}
.search form button:focus {
  box-shadow: 0 0 2px 2px #b0caf1;
}
.search form button:focus span {
  width: 45px;
  padding-left: 5px;
  transition: width 0.4s ease, padding-left 0.1s ease;
}
.search-page {
  display: flex;
  align-items: center;
  margin: 35px 0 26px 0;
  padding: 24px 24px;
  background-color: #FFFFFF;
}
.search-page .empty-result {
  margin-left: 33px;
  font-size: 0.9em;
  color: #828282;
}
.search-page .search-language-guess {
  margin-top: 10px;
  margin-left: 20px;
  font-size: 0.8em;
  color: #828282;
}
#fly-basket-container-overlay {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
}
#fly-basket-container-overlay.open {
  display: block;
  z-index: 1000;
}
.fly-basket-container {
  position: fixed;
  top: 314px;
  right: -800px;
  width: 800px;
  transition: right 0.2s ease;
  z-index: 50;
}
.fly-basket-container .basket-link {
  position: absolute;
  top: 0;
  left: -64px;
  display: block;
  width: 64px;
  height: 64px;
  background-color: var(--main-color);
  border-radius: 4px 0 0 4px;
  box-shadow: -2px 0 8px -2px #424242;
}
.fly-basket-container .basket-link::before {
  content: '\0046';
  position: absolute;
  top: 13px;
  left: 12px;
  width: 38px;
  height: 38px;
  font-size: 38px;
  color: #fff;
}
.fly-basket-container .basket-link .items-counter {
  position: absolute;
  top: 8px;
  right: 8px;
  display: block;
  width: 18px;
  height: 18px;
  font-size: 11px;
  font-weight: 700;
  line-height: 19px;
  color: #fff;
  text-align: center;
  background-color: #626262;
  border-radius: 50%;
  box-sizing: border-box;
}
.fly-basket-container .basket-list {
  width: 100%;
  background-color: #fff;
}
.fly-basket-container .basket-list .basket-list-content {
  padding: 30px 2px 0 30px;
}
.fly-basket-container .basket-list .basket-list-content .basket-list-header {
  display: flex;
  padding-right: 38px;
}
.fly-basket-container .basket-list .basket-list-content .basket-list-header .title {
  margin: 0;
}
.fly-basket-container .basket-list .basket-list-content .basket-list-header .clear-basket {
  margin-left: auto;
  font-size: 0.9em;
  color: #828282;
}
.fly-basket-container .basket-list .basket-list-content .basket-list-header .clear-basket:before {
  content: "";
  background: url('/local/templates/magnet_s1/img/icons/icon-close-basket-popup.svg') no-repeat;
  background-size: 12px;
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 5px;
}
.fly-basket-container .basket-list .basket-list-content table {
  width: 100%;
  border: none;
  border-collapse: collapse;
}
.fly-basket-container .basket-list .basket-list-content table td {
  font-size: 0.9em;
  font-weight: normal;
  vertical-align: middle;
}
.fly-basket-container .basket-list .basket-list-content table th {
  font-size: 0.9em;
  font-weight: normal;
  vertical-align: middle;
}
.fly-basket-container .basket-list .basket-list-content table thead th {
  padding-bottom: 12px;
  color: #828282;
  text-align: left;
  border-bottom: 1px solid #e7e7e7;
}
.fly-basket-container .basket-list .basket-list-content table tbody td {
  padding: 10px 20px 10px 0;
  color: #282828;
  border-bottom: 1px solid #e7e7e7;
}
.fly-basket-container .basket-list .basket-list-content table tbody td.picture {
  width: 60px;
}
.fly-basket-container .basket-list .basket-list-content table tbody td.picture a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fly-basket-container .basket-list .basket-list-content table tbody td.picture img {
  max-width: 100%;
  max-height: 100%;
}
.fly-basket-container .basket-list .basket-list-content table tbody td.name {
  width: 40%;
}
.fly-basket-container .basket-list .basket-list-content table tbody td.price {
  font-size: 1em;
  font-weight: 500;
  white-space: nowrap;
}
.fly-basket-container .basket-list .basket-list-content table tbody td.price .old {
  font-size: 0.8em;
  color: #828282;
  font-weight: normal;
  text-decoration: line-through;
}
.fly-basket-container .basket-list .basket-list-content table tbody td.sum {
  font-size: 1em;
  font-weight: 500;
  white-space: nowrap;
}
.fly-basket-container .basket-list .basket-list-content table tbody td.sum .old {
  font-size: 0.8em;
  color: #828282;
  font-weight: normal;
  text-decoration: line-through;
}
.fly-basket-container .basket-list .basket-list-content table tbody td.delete {
  width: 12px;
}
.fly-basket-container .basket-list .basket-list-content table tbody td.delete a {
  display: block;
  background: url('/local/templates/magnet_s1/img/icons/icon-fly-basket-delete.svg') no-repeat;
  width: 12px;
  height: 12px;
}
.fly-basket-container .basket-list .basket-list-content table tbody td.delete a:hover {
  opacity: 0.8;
}
.fly-basket-container .basket-list .basket-list-content table tbody tr:last-child td {
  border-bottom: none;
}
.fly-basket-container .basket-list .basket-list-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px 24px 30px;
  background: #f5f5f5 linear-gradient(180deg, #f5f5f5 0%, rgba(245, 245, 245, 0) 100%);
}
.fly-basket-container .basket-list .basket-list-footer .total-price {
  color: #282828;
  font-weight: 500;
}
.fly-basket-container .basket-list .basket-list-footer .total-price span {
  display: inline-block;
  margin-left: 10px;
}
.fly-basket-container .basket-list .basket-list-footer .right .btn {
  text-align: center;
}
.fly-basket-container .basket-list .basket-list-footer .right .btn.transparent {
  margin-right: 12px;
  padding: 8px 25px;
  color: var(--main-color);
  border: 2px solid var(--main-color);
}
.fly-basket-container .basket-list .basket-list-footer .right .btn.transparent:hover {
  color: #fff;
  background-color: var(--main-color);
  opacity: 1;
}
.fly-basket-container .basket-list .tabs-container .tabs {
  display: inline-flex;
  margin: 0 auto;
  border-bottom: 1px solid #e7e7e7;
}
.fly-basket-container .basket-list .tabs-container .tabs .tab {
  position: relative;
  display: inline-block;
  padding: 0 20px 16px;
  font-size: 0.8125em;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.fly-basket-container .basket-list .tabs-container .tabs .tab:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  transition: all 0.3s ease;
}
.fly-basket-container .basket-list .tabs-container .tabs .tab:hover:after {
  left: 0;
  width: 100%;
}
.fly-basket-container .basket-list .tabs-container .tabs .tab span {
  color: #828282;
}
.fly-basket-container .basket-list .tabs-container .tabs .tab.active {
  color: #424242;
}
.fly-basket-container .basket-list .tabs-container .tabs .tab.active:after {
  left: 0;
  width: 100%;
}
.fly-basket-container .basket-list .tabs-content {
  margin-top: 20px;
}
.fly-basket-container .basket-list .tab-content {
  display: none;
}
.fly-basket-container .basket-list .tab-content.scrollbar-inner {
  max-height: 250px;
  padding: 0 13px 10px 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.fly-basket-container .basket-list .tab-content.active {
  display: block;
}
.fly-basket-container .basket-list .basket-list-empty {
  display: flex;
  padding: 30px 0 40px;
}
.fly-basket-container .basket-list .basket-list-empty::before {
  content: "";
  width: 70px;
  height: 70px;
  margin-right: 20px;
  background: url('/local/templates/magnet_s1/img/icons/icon-empty-fly-basket.svg') no-repeat;
}
.fly-basket-container .basket-list .basket-list-empty .title {
  margin: 0 0 8px 0;
}
.fly-basket-container .basket-list .basket-list-empty .message {
  margin-bottom: 30px;
}
.fly-basket-container.open {
  right: 0;
  z-index: 1001;
}
.fly-basket-container.open .basket-link {
  box-shadow: none;
}
.fly-basket-container.open .basket-list {
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
}
footer {
  flex: 0 0 auto;
  background: #1a1a1a;
  color: #acacac;
  padding-left: 148px;
  margin-top: 50px;
}
footer .name {
  color: #fff;
  font-weight: 700;
  font-size: 1.125em;
}
footer .footer-contacts {
  background: #282828;
  padding: 34px 0;
}
footer .footer-contacts .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 7%;
}
footer .footer-contacts a {
  color: var(--main-color-light);
}
footer .top {
  margin-top: 12px;
}
footer .top .container {
  display: flex;
  padding: 22px 0;
}
footer .contacts-container,
footer .social {
  margin-left: 6.45%;
}
footer .bottom {
  margin-top: 8px;
}
footer .bottom .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0 50px;
  padding: 20px 0 25px;
}
footer .footer-menu {
  display: flex;
  justify-content: space-between;
  width: 44.3%;
}
footer .footer-menu .column {
  padding-right: 10px;
}
footer .footer-menu .column .links {
  margin-top: 11px;
}
footer .footer-menu .column .links li {
  margin-bottom: 9px;
  padding-left: 0;
  line-height: 1em;
}
footer .footer-menu .column .links li:before {
  content: none;
}
footer .footer-menu .column .links a {
  font-size: 0.875em;
  color: #acacac;
}
footer .footer-menu .column .links a:hover {
  color: var(--main-color-light);
}
footer .address-list {
  column-count: 2;
  column-gap: 30px;
  margin-top: 7px;
}
footer .address {
  break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 7px;
}
footer .address > b {
  color: #fff;
}
footer .address > div {
  font-size: 0.75em;
  margin-left: 17px;
}
footer .address::before {
  content: '\0041';
  display: inline-block;
  width: 8px;
  height: 11px;
  margin-right: 6px;
  font-size: 11px;
  color: #424242;
}
footer .tel-container {
  position: relative;
}
footer .tel-container .call-me {
  padding-top: 6px;
}
footer .tel-container .call-me a {
  display: inline-block;
  border: 1px solid;
  padding: 10px 34px;
  border-radius: 30px;
  transition: all 0.3s;
}
footer .tel-container .call-me a:hover {
  text-decoration: none;
  color: #fff;
}
footer .tel-container .tel {
  font-size: 1.75em;
}
footer .tel-container .tel a {
  color: #fff;
}
footer .tel-container.open .tel {
  top: -35px;
  left: -12px;
}
footer .tel-container.open .call-me {
  margin-top: 32px;
}
footer .payments {
  cursor: default;
}
footer .payments .item {
  display: inline-block;
  width: 45px;
  height: 24px;
  margin-right: 7px;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  opacity: 0.5;
  transition: all 0.3s;
}
footer .payments .item:hover {
  opacity: 1;
}
footer .payments .item.visa {
  background-image: url(/local/templates/magnet_s1/img/icons/payments/visa.svg);
  background-position: center 80%;
}
footer .payments .item.mastercard {
  width: 29px;
  margin-right: 8px;
  background-image: url(/local/templates/magnet_s1/img/icons/payments/mastercard.svg);
}
footer .payments .item.maestro {
  width: 29px;
  margin-right: 9px;
  background-image: url(/local/templates/magnet_s1/img/icons/payments/maestro.svg);
}
footer .payments .item.yandex {
  width: 18px;
  background-image: url(/local/templates/magnet_s1/img/icons/payments/yandex.svg);
}
footer .payments .item.qiwi {
  width: 23px;
  margin-right: 9px;
  background-image: url(/local/templates/magnet_s1/img/icons/payments/qiwi.svg);
}
footer .payments .item.sberbank {
  width: 22px;
  background-image: url(/local/templates/magnet_s1/img/icons/payments/sberbank.svg);
  background-position: center 80%;
}
footer .socials .links {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
footer .copyright {
  display: inline-block;
  font-size: 0.875em;
  color: #828282;
}
footer .policy {
  display: inline-block;
  font-size: 0.875em;
  color: #828282;
}
footer .policy a {
  padding-bottom: 1px;
  color: #828282;
  border-bottom: 1px solid #bdbdbd;
}
footer .policy a:hover {
  border-color: transparent;
}
footer .subscribe-container img {
  display: inline-block;
  margin-top: 12px;
}
footer .subscribe-block {
  margin-top: 24px;
}
footer .subscribe-block .container {
  display: flex;
  align-items: center;
  border-top: none;
}
footer .subscribe-block .container::before {
  content: '\0077';
  display: block;
  margin-right: 20px;
  font-family: 'Icon Custom';
  font-size: 57px;
  color: var(--main-color);
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
footer .subscribe-block .name {
  max-width: 26.996%;
  margin-right: 1.3%;
  font-size: 1.125em;
  line-height: 1.2em;
}
footer .subscribe-block .name.mobile {
  display: none;
}
footer .subscribe-block .desc {
  width: 31.55%;
  margin-left: 1.4%;
  font-size: 0.875em;
  color: #828282;
  line-height: 1.2em;
}
footer .subscribe-block .form-container {
  flex-grow: 1;
  max-width: 42%;
  margin-right: auto;
}
footer .subscribe-block .form-container form {
  position: relative;
}
footer .subscribe-block .form-container form .bx-form-control {
  width: 100%;
  padding: 10px 130px 11px 14px;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 32px;
  box-sizing: border-box;
}
footer .subscribe-block .form-container form .bx_subscribe_submit_container .btn-subscribe {
  position: absolute;
  top: 2px;
  right: 2px;
  padding: 10px 21px 9px;
  font-size: 0.875em;
  color: #fff;
  font-weight: 700;
  background-color: var(--main-color);
  border: none;
  border-radius: 32px;
  box-sizing: border-box;
  cursor: pointer;
}
footer .subscribe-block .form-container form .bx_subscribe_submit_container .btn-subscribe:hover {
  opacity: 0.9;
}
footer .subscribe-block + .top {
  margin-top: 17px;
}
footer .review-info--list {
  display: flex;
  margin-top: 10px;
}
footer .review-info--item {
  display: flex;
  gap: 15px;
  border: 1px solid #fff;
  padding: 10px 15px;
}
footer .review-info--item:first-child {
  border-right: 0;
}
.socials-item {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-bottom: 3px;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  transition: all 0.2s ease;
}
.socials-item:before {
  color: var(--main-color);
  font-size: 18px;
  line-height: 42px;
  transition: all 0.2s ease;
}
.socials-item:hover {
  background-color: var(--main-color);
}
.socials-item:hover:before {
  color: #fff;
}
.socials-item.callback:before {
  content: '\0079';
}
.socials-item.vk:before {
  content: '\004f';
}
.socials-item.telegram,
.socials-item.twitter {
  display: flex;
  align-items: center;
  justify-content: center;
}
.socials-item.telegram:before,
.socials-item.twitter:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("/local/templates/magnet_s1/img/icons/telegram-icon2.svg");
  background-size: contain;
}
.socials-item.telegram:hover:before,
.socials-item.twitter:hover:before {
  background-image: url("/local/templates/magnet_s1/img/icons/telegram-icon2-white.svg");
}
.socials-item.facebook,
.socials-item.max {
  display: flex;
  align-items: center;
  justify-content: center;
}
.socials-item.facebook:before,
.socials-item.max:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("/local/templates/magnet_s1/img/icons/max.svg");
  background-size: contain;
}
.socials-item.facebook:hover:before,
.socials-item.max:hover:before {
  background-image: url("/local/templates/magnet_s1/img/icons/max-white.svg");
}
.socials-item.youtube:before {
  content: '\0052';
}
.socials-item.instagram {
  top: -1px;
}
.socials-item.instagram:before {
  content: '\0053';
  font-size: 13px;
}
.socials-item.ok:before {
  content: '\0054';
}
.catalog-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 150px;
  height: 100%;
  background-color: #fff;
  border-right: 1px solid #e7e7e7;
  z-index: 50;
}
.catalog-menu .content {
  position: absolute;
  width: 150px;
  transition: width 0.2s ease, box-shadow 0.05s ease 0.15s;
  height: auto;
  max-height: 100%;
  box-sizing: border-box;
}
.catalog-menu nav {
  position: relative;
  display: flex;
  flex-direction: column;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 3rem 0;
  background-color: #fff;
  box-sizing: border-box;
  max-height: 100%;
}
.catalog-menu nav .head {
  position: relative;
  height: 23px;
  margin: 0 0 20px 41px;
  flex-shrink: 0;
}
.catalog-menu nav .head .burger-button {
  position: absolute;
  left: 0;
  display: block;
  width: 20px;
  height: 14px;
  margin-left: 20px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.catalog-menu nav .head .burger-button span {
  position: absolute;
  left: 2px;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.catalog-menu nav .head .burger-button span:nth-child(1) {
  top: 0px;
}
.catalog-menu nav .head .burger-button span:nth-child(2) {
  top: 5px;
}
.catalog-menu nav .head .burger-button span:nth-child(3) {
  top: 10px;
}
.catalog-menu nav .head .burger-button.open span:nth-child(1) {
  top: 5px;
  transform: rotate(135deg);
}
.catalog-menu nav .head .burger-button.open span:nth-child(2) {
  left: 0px;
  opacity: 0;
}
.catalog-menu nav .head .burger-button.open span:nth-child(3) {
  top: 5px;
  transform: rotate(-135deg);
}
.catalog-menu nav .head .title {
  display: inline-block;
  width: 0;
  margin-top: -6px;
  padding-left: 87px;
  font-size: 1.125em;
  font-weight: 700;
  overflow: hidden;
  transition: width 0.2s ease;
  box-sizing: border-box;
}
.catalog-menu nav .head .title a {
  color: #424242;
}
.catalog-menu nav .head .title a:hover {
  color: var(--main-color);
}
.catalog-menu nav .scroll {
  height: 100%;
  position: relative;
}
.catalog-menu nav .scroll > .list {
  height: 100%;
  background-color: #fff;
  overflow-y: auto;
}
.catalog-menu nav .scroll > .list .item {
  height: 66px;
  margin: 0 0 0 3px;
  padding: 0 0 14px;
}
.catalog-menu nav .scroll > .list .item.back {
  display: none;
}
.catalog-menu nav .scroll > .list .item:before {
  content: none;
}
.catalog-menu nav .scroll > .list .item:last-child {
  padding-bottom: 14px;
}
.catalog-menu nav .scroll > .list .item > a {
  display: flex;
  align-items: center;
  width: 125px;
  padding-left: 41px;
  overflow: hidden;
  transition: width 0.15s ease;
  box-sizing: border-box;
}
.catalog-menu nav .scroll > .list .item > a .img {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  min-width: 60px;
  transition: transform 0.15s ease;
}
.catalog-menu nav .scroll > .list .item > a .img img {
  max-width: 50px;
  max-height: 50px;
}
.catalog-menu nav .scroll > .list .item > a .text {
  display: inline-block;
  margin-left: 24px;
  min-width: 224px;
  color: #424242;
  font-size: 0.875em;
  font-weight: 700;
  transition: all 0.2s ease;
  overflow: hidden;
}
.catalog-menu nav .scroll > .list .item > a:hover .img {
  transform: scale(1.1);
}
.catalog-menu nav .scroll > .list .item > a:hover .text {
  color: var(--main-color);
}
.catalog-menu nav .sub {
  display: none;
}
.content-menu {
  margin-right: auto;
  overflow: hidden;
}
.content-menu .list {
  display: flex;
  font-size: 0.875em;
  letter-spacing: 0.01em;
  gap: 0 24px;
}
.content-menu .list .item {
  position: relative;
}
.content-menu .list .item:before {
  content: none;
}
.content-menu .list .item a {
  display: inline-block;
  color: #424242;
  white-space: nowrap;
}
.content-menu .list .item a:hover {
  color: var(--main-color);
}
.content-menu .list .item a:focus {
  color: var(--main-color);
}
.content-menu .list .item:hover > .sub-menu {
  display: block;
}
.content-menu .list .item .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -12px;
  background-color: #fff;
  box-shadow: 0px 10px 24px -3px rgba(0, 0, 0, 0.12);
  z-index: 50;
}
.content-menu .list .item .sub-menu .item {
  margin-right: 0;
  padding-bottom: 0;
  border-top: 1px solid #e7e7e7;
}
.content-menu .list .item .sub-menu .item a {
  display: block;
  width: 100%;
  padding: 9px 15px 8px;
  box-sizing: border-box;
}
.content-menu .list .item .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  box-shadow: 0px 0px 24px -3px rgba(0, 0, 0, 0.12);
}
.content-menu .list .item .sub-menu .sub-menu .item:first-child {
  border-top: none;
}
.content-menu .list .item.active > a {
  box-shadow: inset 0 -2px 0 0 var(--main-color);
}
.content-menu .list .item.more .sub-menu {
  left: initial;
  right: 0;
}
.content-menu.calc {
  overflow: visible;
}
@media (min-width: 1025px) {
  .catalog-menu {
    --menu-step: 352px;
    --level-offset: var(--menu-step);
  }
  .catalog-menu .content-menu,
  .catalog-menu .tel-container-top {
    display: none;
  }
  .catalog-menu.open:not(.open-on-hover) .content,
  .catalog-menu.open-on-hover .content:hover {
    width: var(--menu-step);
    max-height: 100vh;
    height: 100vh;
    border-right: none;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
    transition: width 0.2s ease;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .head .title,
  .catalog-menu.open-on-hover .content:hover nav .head .title {
    width: 100%;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .scroll > .list,
  .catalog-menu.open-on-hover .content:hover nav .scroll > .list {
    box-shadow: 7px 15px 12px 0 rgba(0, 0, 0, 0.12);
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .scroll > .list .item > a,
  .catalog-menu.open-on-hover .content:hover nav .scroll > .list .item > a {
    width: 100%;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .scroll > .list .item > a .text,
  .catalog-menu.open-on-hover .content:hover nav .scroll > .list .item > a .text {
    width: 100%;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .scroll > .list .item .sub,
  .catalog-menu.open-on-hover .content:hover nav .scroll > .list .item .sub {
    width: calc(var(--menu-step) - 2px);
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .scroll > .list .item.has-sub > a,
  .catalog-menu.open-on-hover .content:hover nav .scroll > .list .item.has-sub > a {
    position: relative;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .scroll > .list .item.has-sub > a:after,
  .catalog-menu.open-on-hover .content:hover nav .scroll > .list .item.has-sub > a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -4px;
    border: 3px solid transparent;
    border-left: 4px solid #282828;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .scroll > .list .item.open > a,
  .catalog-menu.open-on-hover .content:hover nav .scroll > .list .item.open > a {
    box-shadow: -3px 0 0 0 var(--main-color);
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .scroll > .list .item.open > a .img,
  .catalog-menu.open-on-hover .content:hover nav .scroll > .list .item.open > a .img {
    transform: none;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .scroll > .list .item.open > .sub,
  .catalog-menu.open-on-hover .content:hover nav .scroll > .list .item.open > .sub {
    display: block;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .items,
  .catalog-menu.open-on-hover .content:hover nav .items {
    margin-top: 29px;
    overflow: auto !important;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .items .mCustomScrollBox,
  .catalog-menu.open-on-hover .content:hover nav .items .mCustomScrollBox {
    width: 100%;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .items .mCSB_container,
  .catalog-menu.open-on-hover .content:hover nav .items .mCSB_container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .items .item,
  .catalog-menu.open-on-hover .content:hover nav .items .item {
    height: auto;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .items .item:before,
  .catalog-menu.open-on-hover .content:hover nav .items .item:before {
    content: none;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .items .item:hover > a,
  .catalog-menu.open-on-hover .content:hover nav .items .item:hover > a {
    box-shadow: none;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .items .item.back,
  .catalog-menu.open-on-hover .content:hover nav .items .item.back {
    display: none;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .items .item a,
  .catalog-menu.open-on-hover .content:hover nav .items .item a {
    display: flex;
    align-items: center;
    padding: 0 25px 0 34px;
    color: #424242;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .items .item a .img,
  .catalog-menu.open-on-hover .content:hover nav .items .item a .img {
    margin-right: 23px;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .items .item a .text,
  .catalog-menu.open-on-hover .content:hover nav .items .item a .text {
    min-width: auto;
    margin-left: 0;
    font-size: 0.875em;
    font-weight: 400;
    overflow: visible;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .items .item a:hover,
  .catalog-menu.open-on-hover .content:hover nav .items .item a:hover {
    color: var(--main-color);
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .items .item a:hover .img,
  .catalog-menu.open-on-hover .content:hover nav .items .item a:hover .img {
    transform: none;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .sub,
  .catalog-menu.open-on-hover .content:hover nav .sub {
    position: fixed;
    top: 0;
    left: var(--level-offset);
    display: none;
    height: 100vh;
    padding: 68px 0 60px;
    background-color: #fff;
    border-left: 1px solid #e7e7e7;
    box-shadow: 8px 15px 12px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .sub .sub,
  .catalog-menu.open-on-hover .content:hover nav .sub .sub {
    --level-offset: calc(var(--menu-step) * 2 - 2px);
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .sub .sub .sub,
  .catalog-menu.open-on-hover .content:hover nav .sub .sub .sub {
    --level-offset: calc(var(--menu-step) * 3 - 4px);
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .sub .sub .item:not(.back),
  .catalog-menu.open-on-hover .content:hover nav .sub .sub .item:not(.back) {
    margin: 0;
    padding: 0;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .sub .sub .item:not(.back) a,
  .catalog-menu.open-on-hover .content:hover nav .sub .sub .item:not(.back) a {
    display: block;
    white-space: nowrap;
    font-size: 0.85em;
    line-height: 1.4em;
    padding: 3px 30px;
    text-decoration: none;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .sub .scrollbar-inner,
  .catalog-menu.open-on-hover .content:hover nav .sub .scrollbar-inner {
    min-height: 100px;
    height: 100%;
    overflow-y: auto;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .sub .title,
  .catalog-menu.open-on-hover .content:hover nav .sub .title {
    padding: 0 33px;
    font-size: 1.125em;
    font-weight: 700;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .sub .banner,
  .catalog-menu.open-on-hover .content:hover nav .sub .banner {
    margin: auto 0 -60px;
    max-height: 367px;
    padding-top: 10px;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .sub .banner a,
  .catalog-menu.open-on-hover .content:hover nav .sub .banner a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
  }
  .catalog-menu.open:not(.open-on-hover) .content nav .sub.show,
  .catalog-menu.open-on-hover .content:hover nav .sub.show {
    display: block;
    max-height: 100vh;
  }
  .catalog-menu.open-on-hover .content:hover nav .list .item.has-sub:hover > a {
    box-shadow: -3px 0 0 0 var(--main-color);
  }
  .catalog-menu.open-on-hover .content:hover nav .list .item.has-sub:hover > a .img {
    transform: none;
  }
  .catalog-menu.open-on-hover .content:hover nav .list .item.has-sub:hover > .sub {
    display: block;
  }
  .catalog-menu.open-on-hover .content:hover nav .head .burger-button {
    cursor: default;
  }
  .catalog-menu.open-on-hover .content:hover nav .head .burger-button span:nth-child(1) {
    top: 5px;
    transform: rotate(135deg);
  }
  .catalog-menu.open-on-hover .content:hover nav .head .burger-button span:nth-child(2) {
    left: 0px;
    opacity: 0;
  }
  .catalog-menu.open-on-hover .content:hover nav .head .burger-button span:nth-child(3) {
    top: 5px;
    transform: rotate(-135deg);
  }
}
.header-catalog-menu {
  position: relative;
  align-self: flex-start;
  margin-right: 1.6%;
}
.header-catalog-menu .list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
  z-index: 25;
}
.header-catalog-menu .list > .item {
  position: static;
  margin: 0;
  padding: 0 24px;
}
.header-catalog-menu .list > .item::before {
  content: none;
}
.header-catalog-menu .list > .item:not(:last-child) > a {
  border-bottom: 1px solid #e7e7e7;
}
.header-catalog-menu .list > .item:last-child {
  margin-bottom: 7px;
}
.header-catalog-menu .list > .item > a {
  position: relative;
  display: block;
  padding: 15px 0 14px;
  font-size: 0.875em;
  color: #424242;
  font-weight: 700;
  line-height: 1.4em;
}
.header-catalog-menu .list > .item > a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  margin-top: -3px;
  border: 3px solid transparent;
  border-left: 3px solid #424242;
}
.header-catalog-menu .list > .item > a:hover {
  color: var(--main-color);
}
.header-catalog-menu .list > .item .sub {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
  width: 680px;
  padding-top: 23px;
  background-color: #fff;
  border-left: 1px solid #e7e7e7;
  box-shadow: 8px 0px 16px -2px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}
.header-catalog-menu .list > .item .sub .title {
  padding: 0 30px;
  font-size: 1.125em;
  font-weight: 700;
}
.header-catalog-menu .list > .item .sub .items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 29px;
  padding: 0 30px;
}
.header-catalog-menu .list > .item .sub .items .item {
  display: inline-block;
  width: 47.5%;
  margin-bottom: 12px;
  padding-left: 0;
}
.header-catalog-menu .list > .item .sub .items .item:not(:nth-child(2n)) {
  margin-right: 4.5%;
}
.header-catalog-menu .list > .item .sub .items .item:before {
  content: none;
}
.header-catalog-menu .list > .item .sub .items .item a {
  display: flex;
  align-items: center;
  padding-right: 25px;
  color: #424242;
}
.header-catalog-menu .list > .item .sub .items .item a .img {
  margin-right: 23px;
}
.header-catalog-menu .list > .item .sub .items .item a .text {
  font-size: 0.875em;
}
.header-catalog-menu .list > .item .sub .items .item a:hover {
  color: var(--main-color);
}
.header-catalog-menu .list > .item .sub .items .item.back {
  display: none;
}
.header-catalog-menu .list > .item .sub .banner {
  margin-top: auto;
  max-height: 368px;
  padding-top: 10px;
}
.header-catalog-menu .list > .item .sub .banner a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}
.header-catalog-menu .list > .item .sub.show {
  display: block;
}
.header-catalog-menu .list > .item:hover {
  box-shadow: inset 3px 0 0 0 var(--main-color);
}
.header-catalog-menu .list > .item:hover .sub {
  display: block;
}
.header-catalog-menu .head {
  position: relative;
  display: block;
  min-width: 300px;
  padding: 9px 24px 10px;
  color: #fff;
  font-weight: 700;
  background-color: var(--main-color);
  border-radius: 20px;
  box-sizing: border-box;
}
.header-catalog-menu .head .burger-button {
  position: absolute;
  top: 50%;
  right: 24px;
  display: block;
  width: 20px;
  height: 10px;
  margin-top: -5px;
  cursor: pointer;
}
.header-catalog-menu .head .burger-button span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 9px;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  opacity: 1;
}
.header-catalog-menu .head .burger-button span:nth-child(1) {
  top: 0px;
}
.header-catalog-menu .head .burger-button span:nth-child(2) {
  top: 4px;
}
.header-catalog-menu .head .burger-button span:nth-child(3) {
  top: 4px;
}
.header-catalog-menu .head .burger-button span:nth-child(4) {
  top: 8px;
}
.header-catalog-menu .scroll {
  position: relative;
}
.header-catalog-menu.open .head .burger-button span:nth-child(1) {
  top: 4px;
  left: 50%;
  width: 0%;
}
.header-catalog-menu.open .head .burger-button span:nth-child(2) {
  transform: rotate(45deg);
}
.header-catalog-menu.open .head .burger-button span:nth-child(3) {
  transform: rotate(-45deg);
}
.header-catalog-menu.open .head .burger-button span:nth-child(4) {
  top: 4px;
  left: 50%;
  width: 0%;
}
.header-catalog-menu.open .list {
  display: block;
}
.header-catalog-menu.open-on-hover:hover .head .burger-button span:nth-child(1) {
  top: 4px;
  left: 50%;
  width: 0%;
}
.header-catalog-menu.open-on-hover:hover .head .burger-button span:nth-child(2) {
  transform: rotate(45deg);
}
.header-catalog-menu.open-on-hover:hover .head .burger-button span:nth-child(3) {
  transform: rotate(-45deg);
}
.header-catalog-menu.open-on-hover:hover .head .burger-button span:nth-child(4) {
  top: 4px;
  left: 50%;
  width: 0%;
}
.header-catalog-menu.open-on-hover:hover .list {
  display: block;
}
.products-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.products-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.product-wrap {
  position: relative;
  margin: 0 12px 25px;
  width: calc((100% - 144px) / 6);
}
.product-wrap > div {
  height: 100%;
}
.labels {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}
.labels .label {
  margin-bottom: 2px;
  padding: 5px 8px;
  font-size: 0.6875em;
  color: #fff;
  font-weight: 700;
  line-height: 1em;
  border-radius: 30px;
  background-color: #eb5757;
}
.labels .label.recommend {
  background-color: #2d9cdb;
}
.labels .label.new {
  background-color: var(--main-color);
}
.labels .label.sale {
  background-color: #f2994a;
}
.labels .label.discount {
  background-color: #f2c94c;
}
.labels .label.credit {
  background-color: #f8044a;
}
.labels .label.installment {
  background-color: #ed9337;
}
.additional-links {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}
.additional-links .compare {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-bottom: 5px;
  font-size: 12px;
  color: #424242;
  border-radius: 50%;
  text-align: center;
}
.additional-links .compare::before {
  width: 100%;
  line-height: 32px;
  content: '\0042';
}
.additional-links .compare::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background-color: var(--main-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.additional-links .compare:hover {
  color: var(--main-color);
}
.additional-links .wishlist {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-bottom: 5px;
  font-size: 12px;
  color: #424242;
  border-radius: 50%;
  text-align: center;
}
.additional-links .wishlist::before {
  width: 100%;
  line-height: 32px;
  content: '\0043';
  line-height: 34px;
}
.additional-links .wishlist::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background-color: var(--main-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.additional-links .wishlist:hover {
  color: var(--main-color);
}
.additional-links .compare.active {
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.additional-links .compare.active::after {
  transform: scale(1);
}
.additional-links .compare.active:hover {
  color: #fff;
}
.additional-links .wishlist.active {
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.additional-links .wishlist.active::after {
  transform: scale(1);
}
.additional-links .wishlist.active:hover {
  color: #fff;
}
.additional-links.inline {
  position: static;
  display: block;
}
.additional-links.inline .compare {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  margin: 0 26px 0 0;
  padding: 7px 10px;
  font-size: 0.875em;
  text-align: left;
  background-color: transparent;
  border-radius: 0;
  z-index: 1;
}
.additional-links.inline .compare::before {
  width: auto;
  margin: -1px 15px 0 0;
  font-size: 12px;
  line-height: 1em;
}
.additional-links.inline .compare::after {
  top: 2px;
  left: -1px;
}
.additional-links.inline .compare:hover {
  color: var(--main-color);
}
.additional-links.inline .wishlist {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  margin: 0 26px 0 0;
  padding: 7px 10px;
  font-size: 0.875em;
  text-align: left;
  background-color: transparent;
  border-radius: 0;
  z-index: 1;
}
.additional-links.inline .wishlist::before {
  width: auto;
  margin: -1px 15px 0 0;
  font-size: 12px;
  line-height: 1em;
}
.additional-links.inline .wishlist::after {
  top: 2px;
  left: -1px;
}
.additional-links.inline .wishlist:hover {
  color: var(--main-color);
}
.additional-links.inline .compare.active {
  color: #424242;
}
.additional-links.inline .compare.active::before {
  color: #fff;
}
.additional-links.inline .wishlist.active {
  color: #424242;
}
.additional-links.inline .wishlist.active::before {
  color: #fff;
}
.iblock-vote {
  letter-spacing: -1px;
}
.iblock-vote .star-active {
  padding-right: 3px;
  font-size: 16px;
  color: #f2c94c;
  cursor: pointer;
}
.iblock-vote .star-active:before {
  content: '\0049';
  display: inline-block;
  font-family: 'Icon Custom';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.iblock-vote .star-empty {
  padding-right: 3px;
  font-size: 16px;
  color: #f2c94c;
  cursor: pointer;
}
.iblock-vote .star-empty:before {
  content: '\0049';
  display: inline-block;
  font-family: 'Icon Custom';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.iblock-vote .star {
  padding-right: 3px;
  font-size: 16px;
  color: #f2c94c;
  cursor: pointer;
  cursor: default;
}
.iblock-vote .star:before {
  content: '\0049';
  display: inline-block;
  font-family: 'Icon Custom';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.iblock-vote .star-active.star-over:before {
  content: '\004a';
  color: #ffc000;
}
.iblock-vote .star-empty.star-over:before {
  content: '\004a';
  color: #ffc000;
}
.iblock-vote .star.star-over:before {
  content: '\004a';
  color: #ffc000;
}
.iblock-vote .star-voted {
  padding-right: 3px;
  font-size: 16px;
  color: #f2c94c;
  cursor: pointer;
}
.iblock-vote .star-voted:before {
  content: '\004a';
  display: inline-block;
  font-family: 'Icon Custom';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.iblock-vote .vote-result {
  position: relative;
  top: -1px;
  padding-left: 4px;
  font-size: 12px;
  color: #828282;
  letter-spacing: 0;
  vertical-align: top;
}
.iblock-vote.readonly .star-voted {
  cursor: default;
}
.iblock-vote.readonly .star-empty {
  cursor: default;
}
.stock {
  font-size: 0.75em;
}
.stock:before {
  content: '\004b';
  position: relative;
  top: 1px;
  margin-right: 4px;
  font-size: 10px;
  color: #27ae60;
}
.stock.out:before {
  content: '\004c';
  color: #eb5757;
}
.price-container .old-price {
  font-size: 0.75em;
  color: #828282;
  text-decoration: line-through;
}
.price-container .price {
  font-size: 1.125em;
  color: #282828;
  font-weight: 700;
}
.price-container .price.crossed {
  text-decoration: line-through;
}
.price-container .saving {
  display: inline-block;
  margin-top: 9px;
  padding: 4px 6px 5px;
  font-size: 0.75em;
  line-height: 1em;
  border: 2px solid #f2c94c;
}
.price-container .product-item-detail-info-container {
  position: relative;
  display: inline-block;
  margin-left: -1px;
}
.price-container .product-item-detail-info-container::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(/local/templates/magnet_s1/img/icons/wholesale.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 6px;
  background-color: #f5f5f5;
  border: 1px solid #e7e7e7;
  border-radius: 50%;
  cursor: pointer;
  box-sizing: border-box;
}
.price-container .product-item-detail-info-container .product-item-detail-properties {
  position: absolute;
  left: 100%;
  bottom: 100%;
  display: none;
  margin: 0;
  padding: 20px 20px 22px;
  font-size: 0.875rem;
  color: #424242;
  font-weight: 400;
  line-height: 1.5em;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  z-index: 10;
}
.price-container .product-item-detail-info-container .product-item-detail-properties > div {
  display: flex;
  justify-content: space-between;
}
.price-container .product-item-detail-info-container .product-item-detail-properties dt {
  display: inline-block;
  white-space: nowrap;
}
.price-container .product-item-detail-info-container .product-item-detail-properties dd {
  display: inline-block;
  margin: 0;
  padding-left: 22px;
  font-weight: 700;
  white-space: nowrap;
}
.price-container .product-item-detail-info-container:hover .product-item-detail-properties {
  display: block;
}
.price-container .price-note {
  margin-top: 10px;
  font-size: 12px;
  color: #777;
}
.counter {
  display: inline-flex;
  justify-content: space-around;
  align-items: center;
  width: 101px;
  padding: 6px 7px;
  font-size: 14px;
  background-color: #f5f5f5;
  border-radius: 30px;
  box-sizing: border-box;
}
.counter input {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  font-size: 1em;
  color: #424242;
  text-align: center;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: textfield;
}
.counter input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.counter input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.counter .minus {
  font-size: 12px;
  color: #424242;
  line-height: 12px;
}
.counter .minus:hover {
  color: var(--main-color);
}
.counter .minus:before {
  content: '\004d';
}
.counter .plus {
  font-size: 12px;
  color: #424242;
  line-height: 12px;
}
.counter .plus:hover {
  color: var(--main-color);
}
.counter .plus:before {
  content: '\004e';
}
.counter + .btn {
  min-width: 50%;
  padding: 10px 7.7%;
}
.product-item-info-container .product-item-scu-name {
  font-size: 0.75em;
}
.product-item-info-container .product-item-scu-list .product-item-scu-item-list {
  display: flex;
  flex-wrap: wrap;
}
.product-item-info-container .product-item-scu-list li {
  display: inline-block;
  min-width: 30px;
  height: 30px;
  margin-right: 5px;
  margin-bottom: 5px;
  padding-left: 0;
  font-size: 0.75em;
  text-align: center;
  background-color: #f5f5f5;
  border: 2px solid #f5f5f5;
  border-radius: 3px;
  box-sizing: border-box;
  cursor: pointer;
}
.product-item-info-container .product-item-scu-list li:before {
  content: none;
}
.product-item-info-container .product-item-scu-list li div {
  height: 100%;
}
.product-item-info-container .product-item-scu-list li.selected {
  border-color: var(--main-color);
}
.product-item-info-container .product-item-scu-list li.notallowed {
  background-color: #e8e8e8;
  border-color: #e8e8e8;
}
.product-item-info-container .product-item-scu-list li.notallowed .product-item-scu-item-text {
  opacity: 0.3;
}
.product-item-info-container .product-item-scu-list li.notallowed.selected {
  border-color: var(--main-color);
}
.product-item-info-container .product-item-scu-list .product-item-scu-item-text {
  padding: 0 5px;
  line-height: 26px;
}
.product-item-info-container .product-item-scu-list .product-item-scu-item-color .scu-item-color-title {
  padding: 0 5px;
  line-height: 26px;
}
.product-card {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px 20px 16px;
  background-color: #fff;
  transition: box-shadow 0.2s ease;
  box-sizing: border-box;
  z-index: 20;
}
.product-card .static {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card .labels {
  top: 12px;
  left: 13px;
  z-index: 2;
}
.product-card .additional-links {
  top: 12px;
  right: 11px;
  z-index: 2;
}
.product-card .img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 224px;
  flex-shrink: 0;
}
.product-card .img img {
  width: auto;
}
.product-card .img.fast-view .img-product-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.product-card .img.fast-view .img-product-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #5a5a5a;
  border-radius: 3px;
  opacity: 0;
  transition: opacity 0.2s ease-out;
  z-index: 1;
}
.product-card .img.fast-view .link-fast-view {
  position: absolute;
  width: 156px;
  margin: 0 auto;
  padding: 10px 5px;
  font-size: 0.875em;
  color: #282828;
  text-align: center;
  background-color: #fff;
  border-radius: 50px;
  opacity: 0;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.15);
  transition: opacity 0.1s ease-out;
  z-index: 10;
}
.product-card .img.fast-view:hover .img-product-link::before {
  opacity: 0.2;
}
.product-card .img.fast-view:hover .link-fast-view {
  opacity: 1;
}
.product-card .iblock-vote {
  margin-top: 8px;
}
.product-card .name {
  flex-grow: 1;
  margin-top: 3px;
  font-size: 0.875em;
  color: #424242;
  line-height: 1.3em;
}
.product-card .name:hover {
  color: var(--main-color);
}
.product-card .price-container {
  margin-top: 19px;
}
.product-card .stock {
  margin-top: 6px;
}
.product-card .hover-content {
  display: none;
  margin: 16px 0 4px;
}
.product-card .hover-content .counter {
  width: 42.61%;
  margin-right: 4px;
}
.product-card .hover-content .product-item-info-container {
  margin-bottom: 5px;
}
.product-card .hover-content .product-item-info-container:last-child {
  margin-bottom: 15px;
}
.product-card .hover-content .product-item-button-container {
  display: inline-block;
  max-width: 49.1%;
  vertical-align: top;
}
.product-card .hover-content .product-item-button-container.sku-only {
  display: none;
}
.product-card .hover-content .btn {
  display: inline-block;
  min-width: inherit;
  padding: 10px 19px;
  line-height: 1.3em;
  white-space: nowrap;
}
.product-card .hover-content .btn.bx-catalog-subscribe-button {
  margin-bottom: 0;
  padding: 8px 8px 7px;
  color: var(--main-color);
  background-color: #fff;
  border: 2px solid var(--main-color);
}
.product-card .hover-content .btn.bx-catalog-subscribe-button:hover {
  color: #fff;
  background-color: var(--main-color);
  opacity: 1;
}
.product-card .hover-content .btn.bx-catalog-subscribe-button.disabled {
  padding: 7px 8px;
  font-size: 0.735em;
  color: #fff;
  line-height: 1.72em;
  background-color: var(--main-color);
  opacity: 0.6;
  cursor: default;
}
.product-card:hover {
  position: absolute;
  height: auto;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
  z-index: 21;
}
.product-card:hover .hover-content {
  display: block;
}
.product-card .price-beznal {
  padding-top: 1vh;
}
.product-card.bx-context-toolbar-empty-area {
  background-color: #fff !important;
}
.product-fast-view {
  position: relative;
  display: flex;
}
.product-fast-view .left {
  flex-shrink: 0;
  width: 340px;
  padding: 32px 20px 30px;
  border-right: 1px solid #e7e7e7;
  box-sizing: border-box;
}
.product-fast-view .center:not(.owl-item) {
  flex-shrink: 0;
  width: 340px;
  padding: 17px 30px 30px;
  border-right: 1px solid #e7e7e7;
  box-sizing: border-box;
}
.product-fast-view .right {
  flex-shrink: 0;
  min-width: 239px;
  padding: 38px 20px 30px;
  box-sizing: border-box;
}
.product-fast-view .close-popup-icon {
  position: absolute;
  top: 17px;
  right: 19px;
  font-size: 12px;
  color: #aaa;
  transition: color 0.1s ease;
}
.product-fast-view .close-popup-icon::before {
  content: '\006a';
}
.product-fast-view .close-popup-icon:hover {
  color: var(--main-color);
}
.product-fast-view .iblock-vote {
  margin-left: 1px;
}
.product-fast-view .iblock-vote .star {
  padding-right: 3px;
  font-size: 16px;
  color: #f2c94c;
}
.product-fast-view .iblock-vote .star::before {
  content: '\0049';
  display: inline-block;
  font-family: 'Icon Custom';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.product-fast-view .iblock-vote .star-empty {
  cursor: default;
}
.product-fast-view .iblock-vote .star-voted {
  cursor: default;
}
.product-fast-view .code {
  font-size: 0.75em;
}
.product-fast-view .stock {
  margin-top: 2px;
}
.product-fast-view .stock::before {
  margin-right: 1px;
}
.product-fast-view .brand-img {
  width: 100%;
  height: 50px;
  margin-top: 10px;
}
.product-fast-view .product-img {
  position: relative;
}
.product-fast-view .product-img .labels {
  top: 0;
  left: 0;
}
.product-fast-view .product-img .additional-links {
  top: 0;
  right: 0;
}
.product-fast-view .product-img .main-img {
  display: flex;
  width: 300px;
  height: 300px;
}
.product-fast-view .product-img .main-img > div {
  display: none;
  width: 100%;
  height: 100%;
  margin: auto;
}
.product-fast-view .product-img .main-img > div.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-fast-view .product-img .thumbnails {
  max-width: 100%;
  margin-top: 10px;
  padding: 0 26px;
  box-sizing: border-box;
}
.product-fast-view .product-img .thumbnails .preview {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  padding: 2px;
  border: 2px solid transparent;
  box-sizing: border-box;
}
.product-fast-view .product-img .thumbnails .preview img {
  width: auto;
}
.product-fast-view .product-img .thumbnails .preview.active {
  border-color: var(--main-color);
}
.product-fast-view .product-img .thumbnails .owl-stage {
  margin: 0 auto;
}
.product-fast-view .product-img .thumbnails .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.product-fast-view .product-img .thumbnails .owl-nav .owl-prev {
  position: absolute;
  transition: opacity 0.1s ease;
  left: 0;
}
.product-fast-view .product-img .thumbnails .owl-nav .owl-next {
  position: absolute;
  transition: opacity 0.1s ease;
  right: 0;
}
.product-fast-view .product-img .thumbnails .owl-nav .owl-prev.disabled {
  opacity: 0;
  pointer-events: none;
}
.product-fast-view .product-img .thumbnails .owl-nav .owl-next.disabled {
  opacity: 0;
  pointer-events: none;
}
.product-fast-view .product-img .thumbnails .owl-nav .prev {
  width: 20px;
  height: 60px;
  text-align: center;
  background-color: #fff;
  transition: all 0.2s ease;
}
.product-fast-view .product-img .thumbnails .owl-nav .prev:before {
  position: relative;
  font-size: 14px;
  line-height: 60px;
  content: '\0047';
}
.product-fast-view .product-img .thumbnails .owl-nav .prev:hover:before {
  color: var(--main-color);
}
.product-fast-view .product-img .thumbnails .owl-nav .next {
  width: 20px;
  height: 60px;
  text-align: center;
  background-color: #fff;
  transition: all 0.2s ease;
}
.product-fast-view .product-img .thumbnails .owl-nav .next:before {
  position: relative;
  font-size: 14px;
  line-height: 60px;
  content: '\0048';
}
.product-fast-view .product-img .thumbnails .owl-nav .next:hover:before {
  color: var(--main-color);
}
.product-fast-view .product-img .thumbnails .owl-nav.disabled {
  display: none;
}
.product-fast-view .product-img.popup {
  left: 0;
  width: auto;
  background-color: inherit;
  box-shadow: none;
}
.product-fast-view .product-img.popup .main-img {
  background-color: #f5f5f5;
}
.product-fast-view .product-img.popup .main-img::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 15, 28, 0.75);
  opacity: 0.5;
  z-index: 24;
}
.product-fast-view .product-img.popup .main-img .active {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 470px;
  height: 470px;
  margin: -255px 0 0 -255px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
  cursor: zoom-out;
  z-index: 25;
}
.product-fast-view .product-name {
  font-size: 1.15em;
  color: #282828;
  font-weight: 700;
  line-height: 1.5em;
}
.product-fast-view .preview-text {
  margin-top: 10px;
  font-size: 0.875em;
  line-height: 1.45em;
}
.product-fast-view .characteristics {
  margin-top: 19px;
  color: #828282;
  font-size: 0.875em;
  line-height: 1.5em;
}
.product-fast-view .characteristics table {
  width: 100%;
  border: none;
  border-collapse: collapse;
}
.product-fast-view .characteristics table td {
  padding: 0;
}
.product-fast-view .characteristics table .type {
  background-image: url(/local/templates/magnet_s1/img/icons/background-line.svg);
  background-repeat: repeat-x;
  background-position: 0px 13px;
}
.product-fast-view .characteristics table .type span {
  display: inline-block;
  padding-right: 15px;
  background-color: #fff;
}
.product-fast-view .characteristics table .value {
  padding-left: 15px;
}
.product-fast-view .price-container {
  margin: 20px 0 0 1px;
  padding-top: 19px;
  border-top: 1px solid #e7e7e7;
}
.product-fast-view .price-container .old-price {
  margin-bottom: 2px;
  font-size: 0.875em;
}
.product-fast-view .price-container .price {
  font-size: 1.25em;
  line-height: 1.3em;
}
.product-fast-view .price-container .price .product-item-detail-info-container {
  left: 2px;
  bottom: -3px;
  margin-left: 0;
}
.product-fast-view .price-container .saving {
  margin-top: 7px;
}
.product-fast-view .product-item-info-container {
  margin: 14px 0 20px;
}
.product-fast-view .product-item-info-container .product-item-scu-container {
  margin-top: 17px;
}
.product-fast-view .product-item-info-container .product-item-scu-name {
  margin-bottom: 9px;
  font-size: 0.875em;
}
.product-fast-view .order-container {
  margin-top: 30px;
}
.product-fast-view .order-container .details {
  margin-bottom: 10px;
}
.product-fast-view .order-container .buttons .counter {
  justify-content: space-between;
  width: 100%;
  padding: 8px 15px;
}
.product-fast-view .order-container .buttons .product-item-button-container > div {
  display: flex;
  flex-direction: column;
}
.product-fast-view .order-container .buttons .btn {
  width: 100%;
  min-width: auto;
  margin-top: 6px;
}
.product-fast-view .product-timer {
  width: 100%;
  margin: 16px auto -10px;
}
.product-card-list {
  display: flex;
  width: 100%;
  padding: 40px;
  background-color: #fff;
  box-sizing: border-box;
}
.product-card-list .img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 11.667vw;
  height: 11.667vw;
  max-width: 224px;
  max-height: 224px;
  margin-right: 29px;
}
.product-card-list .content {
  width: 100%;
}
.product-card-list .content .top {
  padding-bottom: 20px;
}
.product-card-list .content .top .info {
  display: flex;
}
.product-card-list .content .top .info .iblock-vote {
  margin-right: 18px;
}
.product-card-list .content .top .info .stock {
  margin-right: 20px;
  line-height: 17px;
}
.product-card-list .content .top .info .stock:before {
  margin-right: 2px;
}
.product-card-list .content .top .info .code {
  font-size: 0.75em;
  line-height: 17px;
}
.product-card-list .content .top .name {
  margin-top: 2px;
  font-size: 1.125em;
  font-weight: 700;
}
.product-card-list .content .top .name a {
  color: #424242;
}
.product-card-list .content .top .name a:hover {
  color: var(--main-color);
}
.product-card-list .content .top .labels {
  position: static;
  display: block;
  margin-top: 12px;
}
.product-card-list .content .top .labels .label {
  display: inline-block;
  margin: 0 3px 0 0;
}
.product-card-list .content .desc {
  margin-top: 10px;
  padding: 16px 0;
  font-size: 0.875em;
  color: #828282;
  line-height: 1.5em;
  border-top: 1px solid #e7e7e7;
}
.product-card-list .content .additional-links {
  padding: 10px 0 0 2px;
  border-top: 1px solid #e7e7e7;
}
.product-card-list .params {
  flex-shrink: 0;
  width: 220px;
  margin-left: 40px;
}
.product-card-list .params .price-container .old-price {
  margin-bottom: 7px;
  line-height: 1.5em;
}
.product-card-list .params .price-container .saving {
  margin-top: 15px;
}
.product-card-list .params .sku {
  margin-top: 20px;
}
.product-card-list .params .product-item-info-container {
  margin-bottom: 10px;
}
.product-card-list .params .counter {
  margin-top: 19px;
  padding: 8px 7px;
  vertical-align: bottom;
}
.product-card-list .params .product-item-button-container {
  display: inline-block;
  margin: 19px 0 0 2px;
  vertical-align: bottom;
}
.product-card-list .params .product-item-button-container .btn {
  padding: 9px 20px 10px;
}
.product-card-list .params .product-item-button-container .btn.bx-catalog-subscribe-button {
  min-width: auto;
  padding: 8px 20px 7px;
  color: var(--main-color);
  background-color: #fff;
  border: 2px solid var(--main-color);
}
.product-card-list .params .product-item-button-container .btn.bx-catalog-subscribe-button:hover {
  color: #fff;
  background-color: var(--main-color);
  opacity: 1;
}
.product-card-list .params .product-item-button-container .btn.bx-catalog-subscribe-button.disabled {
  color: #fff;
  background-color: var(--main-color);
  opacity: 0.6;
  cursor: default;
}
.product-card-list .params .product-item-button-container.sku-only {
  display: none;
}
.product-card-pricelist {
  display: flex;
  align-items: center;
}
.product-card-pricelist .img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  margin-right: 20px;
}
.product-card-pricelist .content {
  max-width: 52%;
  margin-right: auto;
  padding-right: 10px;
}
.product-card-pricelist .content .info {
  display: flex;
}
.product-card-pricelist .content .info .iblock-vote {
  margin-right: 18px;
}
.product-card-pricelist .content .info .stock {
  margin-right: 20px;
  line-height: 17px;
}
.product-card-pricelist .content .info .stock:before {
  margin-right: 2px;
}
.product-card-pricelist .content .info .code {
  font-size: 0.75em;
  line-height: 17px;
}
.product-card-pricelist .content .name {
  margin: 2px 0 12px;
  font-weight: 700;
}
.product-card-pricelist .content .name a {
  color: #424242;
}
.product-card-pricelist .content .name a:hover {
  color: var(--main-color);
}
.product-card-pricelist .content div[id*="sku_tree"] {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -5px;
}
.product-card-pricelist .content div[id*="sku_tree"] .product-item-info-container {
  margin: 0 25px 5px 0;
}
.product-card-pricelist .content div[id*="sku_tree"] .product-item-scu-container {
  display: flex;
  align-items: flex-start;
}
.product-card-pricelist .content div[id*="sku_tree"] .product-item-scu-container .product-item-scu-name {
  margin: 4px 10px 0 0;
}
.product-card-pricelist .content div[id*="sku_tree"] .product-item-scu-container .product-item-scu-item-color {
  line-height: 26px;
}
.product-card-pricelist .price-container {
  margin-right: 2.45%;
}
.product-card-pricelist .price-container .old-price {
  text-align: right;
  line-height: 1.35em;
}
.product-card-pricelist .price-container .price {
  display: inline-block;
  font-size: 1em;
  line-height: 1em;
  white-space: nowrap;
  vertical-align: bottom;
}
.product-card-pricelist .price-container .saving {
  display: none;
}
.product-card-pricelist .buttons {
  display: flex;
  justify-content: flex-end;
  width: 20.2%;
}
.product-card-pricelist .product-item-button-container {
  margin-left: 7px;
}
.product-card-pricelist .product-item-button-container .btn {
  margin-bottom: 0;
  padding: 9px 20px;
}
.product-card-pricelist .product-item-button-container .btn.bx-catalog-subscribe-button {
  min-width: auto;
  padding: 7px 20px;
  color: var(--main-color);
  background-color: #fff;
  border: 2px solid var(--main-color);
}
.product-card-pricelist .product-item-button-container .btn.bx-catalog-subscribe-button:hover {
  color: #fff;
  background-color: var(--main-color);
  opacity: 1;
}
.product-card-pricelist .product-item-button-container .btn.bx-catalog-subscribe-button.disabled {
  color: #fff;
  background-color: var(--main-color);
  opacity: 0.6;
  cursor: default;
}
.product-card-pricelist .product-item-button-container.sku-only {
  display: none;
}
.product-card-pricelist .additional-links {
  position: static;
  display: block;
  margin-left: 23px;
}
.product-card-pricelist .additional-links .compare {
  margin: 0;
}
.product-card-pricelist .additional-links .compare::before {
  padding-left: 1px;
}
.product-card-pricelist .additional-links .wishlist {
  margin: 0;
}
section.catalog {
  margin-top: 32px;
}
section.catalog .title {
  display: inline-block;
  margin: 0 15px 0 0;
  font-size: 1.5em;
}
section.catalog .link {
  display: inline-block;
  margin-left: 17px;
  font-size: 0.875em;
  color: #828282;
}
section.catalog .link:hover {
  color: var(--main-color);
}
section.catalog .categories {
  margin: 18px -12px 23px;
}
section.catalog .categories .category-wrap {
  --catalog-count: 4;
}
section.catalog .category .text {
  width: 100%;
}
section.catalog .category .text .name {
  color: var(--main-color);
  font-size: 20px;
}
section.catalog .category .text .sub {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 30px;
}
section.catalog .category .text .sub .item {
  padding: 3px 0;
}
.catalog .categories {
  display: flex;
  flex-wrap: wrap;
  margin: 36px -12px -24px;
  --catalog-count: 3;
}
.catalog .categories .category-wrap {
  position: relative;
  width: calc((100% - var(--catalog-count) * 24px) / var(--catalog-count));
  margin: 0 12px 24px;
}
.catalog .category {
  width: 100%;
  height: 100%;
  padding: 30px 30px 26px;
  background-color: #fff;
  transition: box-shadow 0.2s ease;
  box-sizing: border-box;
}
.catalog .category .static {
  display: flex;
}
.catalog .category .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-right: 18px;
  flex-shrink: 0;
}
.catalog .category .text {
  width: calc(100% - 100px);
}
.catalog .category .text .name {
  color: #282828;
  font-weight: 700;
}
.catalog .category .text .name:hover {
  color: var(--main-color);
}
.catalog .category .text .sub {
  margin-top: 8px;
}
.catalog .category .text .sub .item {
  display: inline-block;
  max-width: 100%;
  margin-right: 10px;
  font-size: 0.875em;
  color: #424242;
  line-height: 1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.catalog .category .text .sub .item:hover {
  color: var(--main-color);
}
.catalog .category .desc {
  display: none;
  width: 100%;
  margin-top: 2.9%;
  padding: 4.25% 0 1.25%;
  font-size: 0.875em;
  color: #828282;
  line-height: 1.4em;
  border-top: 1px solid #e7e7e7;
}
.catalog .category:hover {
  position: absolute;
  height: auto;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
  z-index: 20;
}
.catalog .category:hover .desc {
  display: block;
}
.catalog .category.no-description:hover {
  position: relative;
  height: 100%;
}
.catalog .short-categories {
  display: flex;
  flex-wrap: wrap;
  margin: 35px -12px -12px;
}
.catalog .short-category {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: calc((100% / 4) - 24px);
  margin: 0 12px 24px;
  padding: 30px 30px 17px;
  background-color: #fff;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.catalog .short-category .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  transition: opacity 0.25s ease, transform 0.55s ease;
}
.catalog .short-category .text {
  position: relative;
  width: 100%;
  margin-top: auto;
  padding-top: 19px;
  align-self: flex-start;
  overflow: hidden;
}
.catalog .short-category .name {
  margin-bottom: 10px;
  font-size: 1.125em;
  color: #282828;
  font-weight: 700;
}
.catalog .short-category .name:hover {
  color: var(--main-color);
}
.catalog .short-category .desc {
  max-height: 0;
  padding-bottom: 0;
  font-size: 0.875em;
  color: #424242;
  line-height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.85s ease;
}
.catalog .short-category:hover {
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
}
.catalog .short-category:hover .img {
  opacity: 0.5;
  transform: scale(0.85);
}
.catalog .short-category:hover .img.no-img {
  opacity: 0.75;
  transform: scale(0.9);
}
.catalog .short-category:hover .desc {
  max-height: 100px;
}
.catalog .short-category.loaded .img {
  position: absolute;
}
.catalog .subcategories {
  display: flex;
  flex-wrap: wrap;
  margin: 39px -12px -24px;
}
.catalog .subcategories .item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 144px) / 6);
  margin: 0 12px 24px;
  padding: 20px;
  background-color: #fff;
  text-align: center;
  box-sizing: border-box;
}
.catalog .subcategories .item .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  transition: transform 0.2s ease;
}
.catalog .subcategories .item .img + .name {
  margin-top: 18px;
}
.catalog .subcategories .item .name {
  display: block;
  font-weight: 700;
  color: #282828;
}
.catalog .subcategories .item .name:hover {
  color: var(--main-color);
}
.catalog .subcategories .item:last-child {
  flex-grow: 0;
}
.catalog .subcategories .item:hover .img {
  transform: scale(1.1);
}
.catalog .light-categories {
  background: #fff;
  padding: 24px 24px 20px 24px;
  margin-top: 24px;
}
.catalog .light-categories .items {
  display: flex;
  flex-wrap: wrap;
}
.catalog .light-categories .items > a {
  text-decoration: none;
  margin-right: 4px;
  margin-bottom: 4px;
  background: #F3F4F7;
  padding: 8px 16px;
  border-radius: 4px;
  white-space: nowrap;
}
.catalog .light-categories .items > a span {
  white-space: nowrap;
}
.catalog .light-categories .items > a i {
  font-style: normal;
  color: #9499B0;
  display: inline-block;
  margin-left: 8px;
}
.catalog .light-categories .items > a:hover {
  background-color: var(--main-color);
}
.catalog .light-categories .items > a:hover span {
  color: #fff;
}
.catalog .light-categories .items > a:hover i {
  color: #fff;
}
.catalog .sort {
  display: flex;
  align-items: center;
  margin-top: 24px;
  padding: 18px 30px 15px;
  background-color: #fff;
}
.catalog .sort .filter-btn {
  position: relative;
  margin-right: 15px;
  padding: 11px 11px 10px 30px;
  font-size: 14px;
  color: #424242;
  line-height: 1em;
}
.catalog .sort .filter-btn:before {
  content: '';
  position: absolute;
  top: 12px;
  left: 10px;
  width: 14px;
  height: 12px;
  background-image: url(/local/templates/magnet_s1/img/icons/filter.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.catalog .sort .filter-btn.open {
  background-color: #e7e7e7;
}
.catalog .sort .filter-btn.desktop-hide {
  display: none;
}
.catalog .sort .sort-filter .item {
  margin-right: 26px;
  font-size: 0.875em;
  color: #828282;
}
.catalog .sort .sort-filter .item:after {
  content: '';
  position: relative;
  top: 0px;
  display: inline-block;
  margin-left: 8px;
  border: 3px solid transparent;
  border-top: 4px solid #828282;
}
.catalog .sort .sort-filter .item:hover {
  color: #424242;
}
.catalog .sort .sort-filter .item:hover:after {
  border-top: 4px solid #424242;
}
.catalog .sort .sort-filter .item:hover.asc:after {
  border-top: 3px solid transparent;
  border-bottom: 4px solid #424242;
}
.catalog .sort .sort-filter .item.active {
  color: #282828;
}
.catalog .sort .sort-filter .item.active:after {
  border-top: 4px solid #282828;
}
.catalog .sort .sort-filter .item.active.asc:after {
  border-top: 3px solid transparent;
  border-bottom: 4px solid #282828;
}
.catalog .sort .sort-filter .item.asc:after {
  top: -3px;
  border-top: 3px solid transparent;
  border-bottom: 4px solid #828282;
}
.catalog .sort .display {
  margin-left: auto;
}
.catalog .sort .display .item {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-left: 4px;
  color: var(--main-color);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17px;
  text-align: center;
  vertical-align: top;
}
.catalog .sort .display .item:before {
  font-size: 17px;
  line-height: 25px;
}
.catalog .sort .display .item.block:before {
  content: '\0055';
}
.catalog .sort .display .item.list:before {
  content: '\0056';
}
.catalog .sort .display .item.table:before {
  content: '\0057';
}
.catalog .sort .display .item.active {
  background-color: var(--main-color);
  color: #fff;
}
.catalog .sort .display .item.active:before {
  content: none;
}
.catalog .sort .display .item.active.block {
  background-image: url(/local/templates/magnet_s1/img/icons/display-block.svg);
}
.catalog .sort .display .item.active.list {
  background-image: url(/local/templates/magnet_s1/img/icons/display-list.svg);
}
.catalog .sort .display .item.active.table {
  background-image: url(/local/templates/magnet_s1/img/icons/display-table.svg);
}
.catalog .products-container {
  display: flex;
  flex-wrap: nowrap;
  margin: 24px 0;
}
.catalog .products-container .products {
  flex-grow: 1;
}
.catalog .products-container .products .products-list {
  margin-bottom: -25px;
}
.catalog .products-container .products .products-list.list {
  display: block;
  margin: 0 0 -24px;
}
.catalog .products-container .products .products-list.list .product-wrap {
  width: 100%;
  max-width: none;
  margin: 0 0 24px;
}
.catalog .products-container .products .products-list.pricelist {
  display: block;
  margin: 0;
  padding: 18px 19px 25px;
  background-color: #fff;
}
.catalog .products-container .products .products-list.pricelist .product-wrap {
  width: 100%;
  max-width: none;
  margin: 0 0 16px;
}
.catalog .products-container .products .products-list.pricelist .product-wrap:not(:first-child) {
  padding-top: 18px;
  border-top: 1px solid #e7e7e7;
}
.catalog .products-container .products .products-list.pricelist .product-wrap:last-child {
  margin-bottom: 0;
}
.catalog .products-container.has-filter:not(.top) .products .products-list.card .product-wrap {
  width: calc((100% - 120px) / 5);
}
.catalog .products-container.has-filter.right .filter {
  margin: 0 0 0 25px;
  order: 1;
}
.catalog .products-container.has-filter.right .filter .bx_filter_container_modef {
  left: initial;
  right: 100%;
  box-shadow: -2px 0px 11px -3px #666;
}
.catalog .products-container.has-filter.right .filter .bx_filter_container_modef .bx_filter_popup_result {
  display: flex !important;
  align-items: center;
  padding-left: 12px;
}
.catalog .products-container.has-filter.right .filter .bx_filter_container_modef .bx_filter_popup_result a {
  margin: 0 12px 0 0;
  order: -1;
}
.catalog .products-container.has-filter.top {
  flex-direction: column;
}
.catalog .products-container.has-filter.top .filter {
  display: none;
  width: 100%;
  padding-top: 0;
}
.catalog .products-container.has-filter.top .filter form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 25px 10px;
}
.catalog .products-container.has-filter.top .filter .params-container {
  display: none;
}
.catalog .products-container.has-filter.top .filter .bx_filter_block {
  height: auto !important;
  opacity: 1 !important;
  margin-top: 0;
}
.catalog .products-container.has-filter.top .filter .bx_filter_block.price {
  margin-bottom: -2px;
}
.catalog .products-container.has-filter.top .filter .bx_filter_actions {
  margin-top: 12px;
}
.catalog .products-container.has-filter.top .filter .bx_filter_actions .btn {
  padding: 8px 15px;
}
.catalog .products-container.has-filter.top .filter .bx_filter_actions .btn.transparent {
  margin-left: 8px;
  padding: 7px 15px;
}
.catalog .products-container.has-filter.top .filter .bx_filter_parameters_box {
  margin-bottom: 10px;
  padding: 0;
  border-bottom: none;
}
.catalog .products-container.has-filter.top .filter .bx_filter_parameters_box .bx_filter_parameters_box_title {
  margin-right: 18px;
}
.catalog .products-container.has-filter.top .filter .bx_filter_parameters_box .bx_filter_parameters_box_title::before {
  content: none;
}
.catalog .products-container.has-filter.top .filter .bx_filter_parameters_box .bx_filter_parameters_box_title::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 6px;
  display: block;
  width: 4px;
  height: 4px;
  margin-top: -3px;
  background-color: transparent;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(45deg);
  transition: all 0.2s ease;
}
.catalog .products-container.has-filter.top .filter .bx_filter_parameters_box .params-container {
  position: absolute;
  top: 100%;
  width: 264px;
  height: auto !important;
  margin-top: 6px;
  padding: 15px 20px;
  background-color: #fff;
  border: 1px solid #dedede;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  z-index: 30;
}
.catalog .products-container.has-filter.top .filter .bx_filter_parameters_box .params-container::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 14px;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #dedede;
  border-left: 1px solid #dedede;
  background-color: #fff;
  transform: rotate(45deg);
}
.catalog .products-container.has-filter.top .filter .bx_filter_parameters_box.active .bx_filter_parameters_box_title::after {
  margin-top: -2px;
  transform: rotate(-135deg);
}
.catalog .products-container.has-filter.top .filter .bx_filter_parameters_box.active .params-container {
  display: block;
}
.catalog .products-container.has-filter.top .filter .bx_filter_param_label.dib {
  display: inline-block;
  padding-left: 0;
  line-height: 0;
}
.catalog .products-container.has-filter.top .filter .bx_filter_param_label.dib::before {
  content: none;
}
.catalog .products-container.has-filter.top .filter .bx_filter_param_label.dib .bx_color_sl .bx_filter_btn_color_icon {
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 2px solid #f5f5f5;
  border-radius: 3px;
  cursor: pointer;
}
.catalog .products-container.has-filter.top .filter .bx_filter_param_label.dib.active .bx_color_sl .bx_filter_btn_color_icon {
  border-color: var(--main-color);
}
.catalog .products-container.has-filter.top .filter .bx_filter_select_block {
  margin-top: 0;
}
.catalog .products-container.has-filter.top .filter .bx_ui_slider_track {
  width: 100%;
  height: 55px;
  margin-top: 16px;
}
.catalog .products-container.has-filter.top .filter .bx_ui_slider_track .bx_ui_slider_part.p1 {
  position: absolute;
  top: 0;
  display: inline-block;
  left: 2px;
}
.catalog .products-container.has-filter.top .filter .bx_ui_slider_track .bx_ui_slider_part.p5 {
  position: absolute;
  top: 0;
  display: inline-block;
  right: 0;
}
.catalog .products-container.has-filter.top .filter .bx_ui_slider_track .bx_ui_slider_pricebar_VD {
  top: 35px;
}
.catalog .products-container.has-filter.top .filter .bx_ui_slider_track .bx_ui_slider_pricebar_VN {
  top: 35px;
}
.catalog .products-container.has-filter.top .filter .bx_ui_slider_track .bx_ui_slider_pricebar_V {
  top: 35px;
}
.catalog .products-container.has-filter.top .filter .bx_ui_slider_track .bx_ui_slider_range {
  top: 35px;
}
.catalog .products-container.has-filter.top .filter .bx_filter_input_checkbox {
  margin-top: 0;
}
.catalog .products-container.has-filter.top .filter .bx_filter_popup_result {
  display: none !important;
}
.catalog .products-container.has-filter.top .filter .bx_filter_button_box {
  display: none;
}
.catalog .products-container.has-filter.top .filter.open {
  display: block;
  margin: 0 0 24px;
  padding-top: 19px;
}
.catalog .category-desc {
  margin: 24px 0;
  padding: 34px 39px;
  font-size: 0.875em;
  line-height: 1.5em;
  background-color: #fff;
}
.catalog .category-desc h1 {
  margin-bottom: 27px;
  font-size: 24px;
  line-height: 23px;
}
.catalog .category-desc h2 {
  margin-bottom: 27px;
  font-size: 24px;
  line-height: 23px;
}
.catalog .category-desc h3 {
  margin-bottom: 27px;
  font-size: 24px;
  line-height: 23px;
}
section.news {
  display: flex;
  flex-wrap: wrap;
  width: 49.35%;
  margin: 24px 0 0 auto;
  padding: 38px 40px 24px;
  background-color: #fff;
  box-sizing: border-box;
}
section.news .title {
  margin: 0 0 5px;
  font-size: 1.5em;
}
section.news .all {
  display: inline-block;
  margin-left: auto;
  font-size: 0.875em;
  color: #828282;
  line-height: 1.5em;
}
section.news .all:hover {
  color: var(--main-color);
}
section.news .previews {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  width: 100%;
  margin: 23px -12px 0;
}
section.news .previews .item {
  width: calc((100% - 96px) / 4);
  margin: 0 12px 15px;
}
section.news .previews .item .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 69%;
  line-height: 0;
  overflow: hidden;
}
section.news .previews .item .name {
  display: block;
  margin-top: 11px;
  font-size: 0.875em;
  line-height: 1.29em;
}
section.news .previews .item .date {
  margin-top: 4px;
  font-size: 0.75em;
  color: #828282;
}
section.news .previews.line {
  align-items: flex-start;
  height: 78.78%;
  margin: 15px 0 0;
}
section.news .previews.line .item {
  display: flex;
  width: 100%;
  margin: 0 0 15px;
}
section.news .previews.line .item .img {
  width: 140px;
  margin-right: 15px;
  flex-shrink: 0;
}
section.news .previews.line .item .name {
  margin-top: 1px;
  font-size: 1em;
}
section.news .previews.line .item:only-child {
  margin-top: 10px;
}
section.news .previews.line .item:only-child .img {
  width: 200px;
}
section.news .previews.line .item:only-child .name {
  font-size: 1.1em;
}
section.news .previews.line .item:only-child .date {
  font-size: 0.875em;
}
.brands {
  margin: 24px 0;
  background-color: #fff;
}
.brands .items {
  position: relative;
  height: 120px;
  padding: 0 62px;
  box-sizing: border-box;
}
.brands .items .owl-stage-outer {
  z-index: 5;
}
.brands .items .owl-stage {
  margin: 0 auto;
}
.brands .items .item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin: 10px 0;
  padding: 22px 20px;
  box-sizing: border-box;
}
.brands .items .item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.brands .items .item img {
  width: auto;
}
.brands .items .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  width: 100%;
  margin-top: -21px;
  z-index: 2;
}
.brands .items .owl-nav .owl-prev {
  margin-left: 20px;
}
.brands .items .owl-nav .owl-next {
  margin: 0 21px 0 auto;
}
.previously {
  margin: 24px 0 12px;
}
.previously .title {
  display: inline-block;
  font-size: 1.5em;
}
.previously .items {
  margin-top: 4px;
  transition: height 0.2s ease;
}
.previously .items .owl-stage-outer {
  margin: 0 -20px;
  padding: 0 20px;
}
.previously .items .owl-stage {
  display: flex;
}
.previously .items .owl-stage .owl-item {
  display: flex;
  flex-shrink: 0;
}
.previously .items .item {
  display: flex;
  width: 100%;
  margin: 20px 0;
  padding: 20px;
  background-color: #fff;
  box-sizing: border-box;
}
.previously .items .item .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-right: 20px;
  flex-shrink: 0;
}
.previously .items .item .img img {
  width: auto;
}
.previously .items .item .content .name {
  display: inline-block;
  font-size: 0.875em;
  color: #424242;
  line-height: 1.29em;
}
.previously .items .item .content .name:hover {
  color: var(--main-color);
}
.previously .items .item .content .price {
  margin-top: 5px;
  font-size: 0.875em;
  font-weight: 700;
}
.previously .items .item:hover {
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
}
.previously .items .owl-nav {
  position: absolute;
  top: -45px;
  right: 0;
}
.popup-window:not([id*="smartFilterDropDown"]) {
  width: 380px;
  padding: 35px 39px 38px;
  font-family: 'Roboto';
  font-size: 1rem;
  border-top: 5px solid var(--main-color);
  box-sizing: border-box;
}
.popup-window:not([id*="smartFilterDropDown"]) .bx_subscribe_response_container table {
  border-spacing: 0;
  border-collapse: collapse;
}
.popup-window:not([id*="smartFilterDropDown"]) .bx_subscribe_response_container .img {
  display: none;
}
.popup-window:not([id*="smartFilterDropDown"]) .bx_subscribe_response_container .name {
  font-size: 1.375rem;
  color: #282828;
  font-weight: 700;
}
.popup-window:not([id*="smartFilterDropDown"]) .bx_subscribe_response_container .name + .text {
  margin-top: 21px;
}
.popup-window:not([id*="smartFilterDropDown"]) .bx_subscribe_response_container .text {
  font-size: 1rem;
  line-height: 1.35em;
}
.popup-window:not([id*="smartFilterDropDown"]) .popup-window-close-icon {
  top: 13px;
  right: 18px;
  width: 16px;
  height: 16px;
}
.popup-window:not([id*="smartFilterDropDown"]) .popup-window-close-icon::after {
  width: 100%;
  height: 100%;
}
.popup-window-with-titlebar .popup-window-titlebar {
  height: auto;
}
.popup-window-with-titlebar .popup-window-titlebar .popup-window-titlebar-text {
  padding: 0;
  font-size: 1.375em;
  color: #282828;
  font-weight: 700;
  line-height: 1.25em;
  white-space: normal;
}
.popup-window-with-titlebar .popup-window-content {
  margin: 15px 0 2px;
  padding: 0;
}
.popup-window-with-titlebar .popup-window-content .bx-catalog-popup-content {
  width: 100%;
  max-width: none;
}
.popup-window-with-titlebar .popup-window-content .bx-catalog-popup-content .bx-catalog-popup-message {
  max-width: none;
  font-weight: 400;
}
.popup-window-with-titlebar .popup-window-buttons {
  display: none;
}
.popup-window-with-titlebar[id*="subscribe"] .popup-window-buttons {
  display: block;
  padding-bottom: 0;
}
.popup-window-with-titlebar[id*="subscribe"] .popup-window-buttons .btn {
  line-height: 1.5em;
}
.popup-window-with-titlebar[id*="subscribe"] .popup-window-buttons .btn:not(.btn-primary) {
  display: none;
}
.main-title {
  margin-top: 30px;
}
div[id*="bx_incl"] + .main-title {
  margin: 9px 0 3px;
}
.pagination {
  width: 100%;
  margin-top: 25px;
  background-color: #fff;
}
.pagination .items {
  display: flex;
  padding: 9px 8px 10px;
}
.pagination .items .item {
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-right: 6px;
  padding-top: 1px;
  color: #000;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  box-sizing: border-box;
}
.pagination .items .item:not(span):hover {
  color: var(--main-color);
}
.pagination .items .item.prev {
  padding-top: 2px;
}
.pagination .items .item.prev:before {
  content: '\0047';
  font-size: 14px;
}
.pagination .items .item.next {
  padding-top: 2px;
}
.pagination .items .item.next:before {
  content: '\0048';
  font-size: 14px;
}
.pagination .items .item.active {
  color: #fff;
  background-color: var(--main-color);
}
.pagination .items .item.active:hover {
  color: #fff;
}
.pagination .items span {
  cursor: default;
}
.popup {
  position: absolute;
  z-index: 1000;
  left: 50%;
  width: 380px;
  background-color: #fff;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
}
.popup .popup-content {
  width: 370px;
  background: #fff;
  width: auto;
  padding: 36px 40px 40px;
  box-sizing: border-box;
}
.popup .popup-header {
  position: relative;
}
.popup .popup-header .popup-title {
  font-size: 1.375em;
  font-weight: 700;
}
.popup .popup-header .close-popup-icon {
  position: absolute;
  top: -24px;
  right: -21px;
  font-size: 12px;
  color: #aaa;
  transition: color 0.1s ease;
}
.popup .popup-header .close-popup-icon::before {
  content: '\006a';
}
.popup .popup-header .close-popup-icon:hover {
  color: var(--main-color);
}
.popup .popup-body {
  margin-top: 28px;
}
.popup .popup-body .form-group {
  margin-bottom: 16px;
}
.popup .popup-body .form-group .control-label {
  margin: 0 0 2px 1px;
  font-size: 0.875em;
}
.popup .popup-body .form-group .control-label .danger-color {
  color: #eb5757;
}
.popup .popup-body .form-group input[type="text"] {
  width: 100%;
  padding: 12px 19px;
  border: none;
  border-radius: 4px;
}
.popup .popup-body .form-group input[type="num"] {
  width: 100%;
  padding: 12px 19px;
  border: none;
  border-radius: 4px;
}
.popup .popup-body .form-group input[type="password"] {
  width: 100%;
  padding: 12px 19px;
  border: none;
  border-radius: 4px;
}
.popup .popup-body .form-group textarea {
  width: 100%;
  padding: 12px 19px;
  border: none;
  border-radius: 4px;
  height: 100px;
}
.popup .popup-body .form-captcha {
  margin-bottom: 16px;
}
.popup .popup-body .form-captcha .control-label {
  margin: 0 0 2px 1px;
  font-size: 0.875em;
}
.popup .popup-body .form-captcha .control-label .danger-color {
  color: #eb5757;
}
.popup .popup-body .form-captcha input[type="text"] {
  width: 100%;
  padding: 12px 19px;
  border: none;
  border-radius: 4px;
}
.popup .popup-body .form-captcha input[type="num"] {
  width: 100%;
  padding: 12px 19px;
  border: none;
  border-radius: 4px;
}
.popup .popup-body .form-captcha input[type="password"] {
  width: 100%;
  padding: 12px 19px;
  border: none;
  border-radius: 4px;
}
.popup .popup-body .form-captcha textarea {
  width: 100%;
  padding: 12px 19px;
  border: none;
  border-radius: 4px;
  height: 100px;
}
.popup .popup-body .policy {
  margin-top: 20px;
  font-size: 0.875em;
  color: #828282;
}
.popup .popup-footer {
  margin-top: 19px;
}
.popup .popup-errors {
  margin-top: 30px;
  padding: 19px 20px 20px;
  font-size: 0.875em;
  color: #eb5757;
  line-height: 1.2em;
  background-color: #feeeee;
  border: 1px solid #f5a3a3;
  border-radius: 3px;
  box-sizing: border-box;
}
.popup .popup-errors p {
  margin: 0;
}
.popup .popup-success {
  position: relative;
}
.popup .popup-success .title {
  font-size: 1.375em;
  font-weight: 700;
}
.popup .popup-success .text {
  margin-top: 20px;
}
.popup .popup-success .close-popup-icon {
  position: absolute;
  top: -24px;
  right: -21px;
  font-size: 12px;
  color: #aaa;
  font-weight: 700;
}
.popup .popup-success .close-popup-icon::before {
  content: '\006a';
}
.popup .popup-success .close-popup-icon:hover {
  color: var(--main-color);
}
.jqmOverlay {
  background-color: rgba(3, 15, 28, 0.75);
}
.jqmOverlay.product-image {
  z-index: 1001 !important;
}
.filter {
  width: 264px;
  margin-right: 25px;
  padding-top: 19px;
  background-color: #fff;
  flex-shrink: 0;
}
.filter .bx_filter_block {
  display: none;
}
.filter .bx_filter_title {
  padding: 0 20px 19px;
  font-weight: 700;
  border-bottom: 1px solid #e7e7e7;
}
.filter .bx_filter_parameters_box {
  position: relative;
  padding: 17px 20px;
  border-bottom: 1px solid #e7e7e7;
}
.filter .bx_filter_parameters_box .bx_filter_parameters_box_title {
  position: relative;
  padding-right: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.filter .bx_filter_parameters_box .bx_filter_parameters_box_title:before {
  content: '';
  position: absolute;
  top: 11px;
  right: 0;
  display: block;
  width: 12px;
  height: 2px;
  background-color: #424242;
  transition: all 0.3s ease;
}
.filter .bx_filter_parameters_box .bx_filter_parameters_box_title:after {
  content: '';
  position: absolute;
  top: 6px;
  right: 5px;
  display: block;
  width: 2px;
  height: 12px;
  background-color: #424242;
  transition: all 0.3s ease;
}
.filter .bx_filter_parameters_box.active .bx_filter_parameters_box_title:before {
  transform: rotate(90deg);
  opacity: 0;
}
.filter .bx_filter_parameters_box.active .bx_filter_parameters_box_title:after {
  transform: rotate(90deg);
}
.filter .bx_filter_parameters_box.active .bx_filter_block {
  margin-top: 13px;
  display: block;
}
.filter .bx_filter_parameters_box_container_block {
  display: inline-block;
}
.filter .bx_filter_parameters_box_container_block:first-child .bx_filter_input_container {
  position: relative;
}
.filter .bx_filter_parameters_box_container_block:first-child .bx_filter_input_container:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 2px;
  width: 12px;
  height: 1px;
  background-color: #828282;
}
.filter .bx_filter_param_label.disabled .bx_filter_input_checkbox {
  pointer-events: none;
}
.filter .bx_filter_param_label.disabled .bx_filter_input_checkbox .bx_filter_param_text {
  opacity: 0.4;
}
.filter .bx_filter_param_label.disabled .bx_filter_input_checkbox .bx_filter_param_text:before {
  opacity: 0.4;
}
.filter .bx_filter_checkbox_w_pic {
  display: inline-block !important;
  padding-left: 0 !important;
  font-size: 0.85em;
}
.filter .bx_filter_checkbox_w_pic:before {
  display: none !important;
}
.filter .bx_filter_checkbox_w_pic .bx_filter_icon {
  display: inline-block;
  min-width: 30px;
  height: 30px;
  background-color: #f5f5f5;
  border: 2px solid #f5f5f5;
  border-radius: 3px;
  box-sizing: border-box;
  cursor: pointer;
}
.filter .bx_filter_checkbox_w_pic.active .bx_filter_icon {
  border-color: var(--main-color);
}
.filter .bx_filter_checkbox_w_pic_label {
  display: flex !important;
  align-items: center;
  padding-left: 0 !important;
  font-size: 0.85em;
}
.filter .bx_filter_checkbox_w_pic_label:before {
  display: none !important;
}
.filter .bx_filter_checkbox_w_pic_label .bx_filter_icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #f5f5f5;
  border: 2px solid #f5f5f5;
  border-radius: 3px;
  box-sizing: border-box;
  cursor: pointer;
  margin-right: 8px;
}
.filter .bx_filter_checkbox_w_pic_label.active .bx_filter_icon {
  border-color: var(--main-color);
}
.filter .bx_filter_input_container {
  display: inline-block;
}
.filter .bx_filter_input_container .min-price {
  display: inline-block;
  width: 99px;
  margin-right: 20px;
}
.filter .bx_filter_input_container .max-price {
  display: inline-block;
  width: 99px;
}
.filter .bx_ui_slider_track {
  position: relative;
  margin-top: 16px;
  height: 18px;
  overflow: hidden;
}
.filter .bx_ui_slider_track .bx_ui_slider_part {
  display: none;
}
.filter .bx_ui_slider_track .bx_ui_slider_pricebar_VN {
  position: absolute;
  top: 7px;
  width: 100%;
  height: 4px;
  background-color: #f5f5f5;
  z-index: 5;
}
.filter .bx_ui_slider_track .bx_ui_slider_pricebar_V {
  position: absolute;
  top: 7px;
  width: 100%;
  height: 4px;
  background-color: #f5f5f5;
  z-index: 5;
}
.filter .bx_ui_slider_track .bx_ui_slider_pricebar_VD {
  position: absolute;
  top: 7px;
  height: 4px;
  background-color: var(--main-color);
  z-index: 10;
}
.filter .bx_ui_slider_track .bx_ui_slider_range {
  position: relative;
  top: 7px;
}
.filter .bx_ui_slider_track .bx_ui_slider_range .bx_ui_slider_handle {
  position: absolute;
  top: -7px;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
  border: 3px solid var(--main-color);
  box-sizing: border-box;
  z-index: 15;
  cursor: grab;
}
.filter .bx_ui_slider_track .bx_ui_slider_range .bx_ui_slider_handle:active {
  cursor: grabbing;
}
.filter .bx_filter_select_block {
  position: relative;
  margin-top: 10px;
}
.filter .bx_filter_select_block .bx_filter_select_text {
  width: 100%;
  padding: 6px 10px 5px;
  font-size: 0.875em;
  background-color: #f5f5f5;
  border: 1px solid #e7e7e7;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.filter .bx_filter_select_block .bx_filter_select_arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -2px;
  border: 3px solid transparent;
  border-top: 4px solid #444;
}
.filter .bx_filter_input_checkbox {
  display: block;
  margin-top: 9px;
}
.filter .bx_filter_input_checkbox input[type='checkbox'] {
  display: none;
}
.filter .bx_filter_input_checkbox input[type='checkbox']:checked + .bx_filter_param_text:before {
  background-image: url(/local/templates/magnet_s1/img/icons/check.svg);
  background-color: var(--main-color);
  border-color: var(--main-color);
}
.filter .bx_filter_input_checkbox .bx_filter_param_text {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  font-size: 14px;
  cursor: pointer;
}
.filter .bx_filter_input_checkbox .bx_filter_param_text:before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  background-color: #f5f5f5;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  border-radius: 2px;
  border: 1px solid #aaa;
  box-sizing: border-box;
}
.filter .bx_filter_button_box {
  padding: 19px 20px;
}
.filter .bx_filter_button_box .bx_filter_block {
  display: block;
}
.filter .bx_filter_button_box input[type="submit"] {
  padding: 11px 19px 12px;
  font-size: 14px;
  color: #828282;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 100px;
  cursor: pointer;
}
.filter .bx_filter_button_box input[type="submit"].bx_filter_search_button {
  color: #fff;
  font-weight: 700;
  background-color: var(--main-color);
  border-color: var(--main-color);
  transition: opacity 0.2s ease;
}
.filter .bx_filter_button_box input[type="submit"].bx_filter_search_button:hover {
  opacity: 0.9;
}
.filter .bx_filter_button_box input[type="submit"].bx_filter_search_reset {
  padding: 11px 23px 12px;
  transition: all 0.2s ease;
}
.filter .bx_filter_button_box input[type="submit"].bx_filter_search_reset:hover {
  color: #5c5c5c;
  border-color: #bcbcbc;
}
.filter .bx_filter_container_modef {
  position: absolute;
  left: 100%;
  background-color: #fff;
  box-shadow: 1px 0px 11px -3px #666;
  z-index: 25;
}
.filter .bx_filter_container_modef .bx_filter_popup_result {
  padding: 13px 15px 13px 16px;
  font-size: 0.875em;
  color: #828282;
  white-space: nowrap;
  box-sizing: border-box;
}
.filter .bx_filter_container_modef .bx_filter_popup_result a {
  display: inline-block;
  margin-left: 7px;
  padding: 9px 20px;
  color: #fff;
  font-weight: 700;
  background-color: var(--main-color);
  border-radius: 100px;
  transition: opacity 0.2s ease;
}
.filter .bx_filter_container_modef .bx_filter_popup_result a:hover {
  opacity: 0.9;
}
.popup-window-content .bx_filter_select_popup {
  width: 204px;
  font-size: 14px;
}
.popup-window-content .bx_filter_select_popup ul li {
  padding-left: 4px;
}
.popup-window-content .bx_filter_select_popup ul li:not(:last-child) {
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: 1px solid #e7e7e7;
}
.popup-window-content .bx_filter_select_popup ul li:before {
  content: none;
}
.popup-window-content .bx_filter_select_popup ul li label {
  display: block;
  width: 100%;
  cursor: pointer;
}
.popup-window-content .bx_filter_select_popup ul li label:hover {
  color: var(--main-color);
}
.popup-window-content .bx_filter_select_popup ul li label.disabled {
  color: #b5b5b5;
}
.title-search-result {
  background-color: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.12);
  z-index: 60;
  margin-top: -5px;
}
.title-search-result .content .item {
  display: flex;
  align-items: center;
  padding: 20px 20px 17px;
  border-bottom: 1px solid #e7e7e7;
  box-sizing: border-box;
}
.title-search-result .content .item .image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-right: 10px;
  flex-shrink: 0;
}
.title-search-result .content .item .info {
  display: flex;
  flex-wrap: wrap;
}
.title-search-result .content .item .info .name {
  display: block;
  width: 100%;
  margin-bottom: 4px;
  font-size: 0.875em;
  color: #424242;
  line-height: 1.3em;
}
.title-search-result .content .item .info .name:hover {
  color: var(--main-color);
}
.title-search-result .content .item .info .price {
  color: #282828;
  font-weight: 700;
}
.title-search-result .content .item .info .old-price {
  margin-left: 10px;
  font-size: 0.75em;
  color: #828282;
  line-height: 1.6em;
  text-decoration: line-through;
  align-self: flex-end;
  order: 1;
}
.timer-stock {
  margin-top: 2px;
  background-color: #f5f5f5;
  border-radius: 3px;
}
.timer-stock span {
  font-weight: 700;
}
.popup.open {
  border-top: 5px solid var(--main-color);
}
.popup.fastview-popup {
  width: auto;
  border-top: none;
}
.popup.product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em 3em;
  border-top: 5px solid var(--main-color);
  box-sizing: border-box;
  z-index: 1001;
}
.popup.product-image .close-popup-icon {
  position: absolute;
  top: 17px;
  right: 19px;
  font-size: 12px;
  color: #aaa;
  transition: color 0.1s ease;
}
.popup.product-image .close-popup-icon::before {
  content: '\006a';
}
.popup.product-image .close-popup-icon:hover {
  color: var(--main-color);
}
.ui-autocomplete {
  background: #fff;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
  z-index: 1000;
}
.ui-autocomplete .ui-menu-item {
  padding: 0;
  border-top: 1px solid #e7e7e7;
}
.ui-autocomplete .ui-menu-item::before {
  content: none;
}
.ui-autocomplete .ui-menu-item:first-child {
  border-top-color: #fff;
}
.ui-autocomplete .ui-menu-item .ui-menu-item-wrapper {
  padding: 7px 18px;
  font-size: 0.85em;
  color: #424242;
}
.ui-autocomplete .ui-menu-item .ui-menu-item-wrapper:hover {
  background: #E7E7E7;
}
.ui-autocomplete .ui-state-active {
  margin: 0;
}
.locations-list-popup {
  display: none;
  width: 840px;
  margin-left: 0 !important;
  transform: translateX(-50%);
}
.locations-list-popup .popup-content {
  padding: 41px 50px 38px;
}
.locations-list-popup .popup-header {
  position: relative;
}
.locations-list-popup .popup-header .close-popup-icon {
  position: absolute;
  top: -20px;
  right: -28px;
  font-size: 16px;
}
.locations-list-popup .popup-body {
  margin-top: 32px;
}
.locations-list-popup .popup-body .search {
  position: relative;
  max-width: 100%;
}
.locations-list-popup .popup-body .search::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 15px;
  width: 14px;
  height: 14px;
  background-image: url(/local/templates/magnet_s1/img/icons/search-autocomplete.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 10;
}
.locations-list-popup .popup-body .search input[type=text] {
  display: block;
  width: 100%;
  padding: 11px 40px 10px 14px;
  color: #828282;
  background-color: #f5f5f5;
  border: 1px solid #e7e7e7;
  border-radius: 2px;
}
.locations-list-popup .popup-body .favorite {
  margin: 7px 0 20px 0;
  font-size: 0.875em;
}
.locations-list-popup .popup-body .favorite span {
  display: inline-block;
}
.locations-list-popup .popup-body .favorite a {
  display: inline-block;
  margin: 0 5px;
  line-height: 1.2em;
  text-decoration: none;
  border-bottom: 1px dashed var(--main-color);
}
.locations-list-popup .popup-body .items {
  display: flex;
  margin-left: -10px;
}
.locations-list-popup .popup-body .items .section {
  width: 100%;
}
.locations-list-popup .popup-body .items .section:not(:last-child) {
  margin-right: 14px;
}
.locations-list-popup .popup-body .items .section .link {
  position: relative;
  display: block;
  margin: 5px 0;
}
.locations-list-popup .popup-body .items .section .link .item {
  position: relative;
  display: inline-block;
  padding: 6px 11px 7px 10px;
  font-size: 0.875em;
  color: #424242;
  line-height: 1.2em;
  border-radius: 3px;
}
.locations-list-popup .popup-body .items .section .link .item.active {
  color: #fff;
  background-color: var(--main-color);
  color: #424242;
  background-color: transparent;
}
.locations-list-popup .popup-body .items .section .link .item.is-favorite {
  font-weight: 700;
}
.locations-list-popup.open {
  display: block;
  border-top: none;
}
.offers {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px -24px;
}
.offers > div[id*="bx_incl"] {
  display: flex;
  flex-wrap: wrap;
}
.offers .offer-wrap {
  position: relative;
  width: calc((100% - 144px) / 6);
  margin: 0 12px 24px;
}
.offers .offer-wrap.big {
  width: calc(((100% - 144px) / 6) * 2 + 24px);
}
.offers .offer-wrap.big .item {
  width: 100%;
}
.offers .offer-wrap.big .item .img {
  height: 340px;
}
.offers .offer-wrap.big .item .name {
  font-size: 1.375em;
}
.offers .offer-wrap.big .item .desc {
  margin-top: 19px;
  font-size: 1em;
}
.offers .item {
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: #fff;
  transition: box-shadow 0.2s ease;
  box-sizing: border-box;
}
.offers .item .static {
  height: 100%;
}
.offers .item .hover {
  display: none;
  padding-top: 20px;
}
.offers .item .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 150px;
}
.offers .item .img img {
  width: auto;
}
.offers .item .name {
  display: block;
  margin-top: 20px;
  font-size: 1.125em;
  line-height: 1.2em;
  color: #282828;
  font-weight: 700;
}
.offers .item .name:hover {
  color: var(--main-color);
}
.offers .item .date {
  margin-top: 12px;
}
.offers .item .desc {
  margin-top: 19px;
  font-size: 0.875em;
  line-height: 1.5em;
}
.offers .item:hover {
  position: absolute;
  height: auto;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
  z-index: 10;
}
.offers .item:hover .hover {
  display: block;
}
.other-elements {
  width: 408px;
  margin: 0 0 24px 24px;
  padding: 41px 40px 40px;
  background-color: #fff;
  flex-shrink: 0;
  box-sizing: border-box;
}
.other-elements .name {
  font-size: 1.375em;
  font-weight: 700;
}
.other-elements .items {
  margin-top: 9.75%;
}
.other-elements .items .item {
  display: flex;
}
.other-elements .items .item:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 19px;
  border-bottom: 1px solid #e7e7e7;
}
.other-elements .items .item .img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  margin-right: 20px;
}
.other-elements .items .item .title {
  display: inline-block;
  font-size: 0.875em;
  color: #424242;
  line-height: 1.35em;
}
.other-elements .items .item .title:hover {
  color: var(--main-color);
}
.other-elements .items .item .date {
  margin-top: 11px;
}
.product-tabs-container .tabs-container {
  margin: 0;
  padding: 0;
  background-color: transparent;
}
.product-tabs-container .tabs-container .tabs {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 0;
  background-color: transparent;
  border-bottom: 1px solid #e7e7e7;
}
.product-tabs-container .tabs-container .tabs .tab {
  position: relative;
  display: inline-block;
  padding: 0 20px 16px;
  font-size: 0.8125em;
  color: #424242;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.product-tabs-container .tabs-container .tabs .tab::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  transition: all 0.3s ease;
}
.product-tabs-container .tabs-container .tabs .tab:hover::after {
  left: 0;
  width: 100%;
}
.product-tabs-container .tabs-container .tabs .tab.active {
  color: var(--main-color);
}
.product-tabs-container .tabs-container .tabs .tab.active::after {
  left: 0;
  width: 100%;
}
.product-tabs-container .tabs-container .tabs-content {
  margin-top: 0;
}
.product-tabs-container .tabs-container .tabs-content .tab-content {
  display: none;
  margin-top: 0;
  opacity: 0;
  transition: opacity 10s ease;
}
.product-tabs-container .tabs-container .tabs-content .tab-content .products-carousel {
  margin-bottom: 0;
}
.product-tabs-container .tabs-container .tabs-content .tab-content .products-carousel .owl-carousel .owl-hidden {
  opacity: 1;
}
.product-tabs-container .tabs-container .tabs-content .tab-content .products-carousel .owl-container {
  margin: 0;
}
.product-tabs-container .tabs-container .tabs-content .tab-content .products-carousel .owl-stage {
  display: flex;
}
.product-tabs-container .tabs-container .tabs-content .tab-content.active {
  display: block;
  opacity: 1;
}
.empty-basket {
  width: 100%;
  margin: 2.5% 0 24px;
  padding: 7.65% 0 11.9%;
  background-color: #fff;
  text-align: center;
}
.empty-basket .icon {
  width: 170px;
  height: 157px;
  margin: 0 auto;
  background-image: url(/local/templates/magnet_s1/img/icons/icon-cart.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.empty-basket .text {
  margin-top: 2.65%;
  font-size: 1.625em;
  color: #282828;
  font-weight: 700;
}
.empty-basket .btn {
  margin-top: 1.9%;
}
.gift-container {
  margin: 24px 0 24px;
}
.gift-container .title {
  margin-left: 6px;
  font-size: 1.375em;
  color: #282828;
  font-weight: 700;
}
.gift-container .products-list {
  position: relative;
  margin: 1.9% 0 0;
  z-index: 25;
}
.gift-container .products-list .owl-stage-outer {
  height: 100%;
}
.gift-container .products-list .owl-stage-outer:hover {
  height: 150%;
  pointer-events: none;
}
.gift-container .products-list .owl-stage-outer:hover .product-wrap {
  pointer-events: auto;
}
.gift-container .products-list .owl-stage {
  display: flex;
}
.gift-container .products-list .product-wrap {
  width: auto;
  max-width: 240px;
}
.gift-container .products-list .product-wrap .price-container {
  margin-top: 0;
}
.gift-container .products-list .product-card:hover {
  position: static;
}
.gift-container .products-list .product-card .product-item-button-container {
  margin-top: 20px;
}
.gift-container .products-list .product-card .product-item-button-container .btn {
  min-width: auto;
}
.gift-container .products-list .owl-nav {
  position: absolute;
  top: -64px;
  right: 0;
}
.ask-question {
  flex-shrink: 0;
  width: 408px;
  margin: 0 0 24px 24px;
  padding: 40px 40px;
  text-align: center;
  background-color: #fff;
  box-sizing: border-box;
}
.ask-question:before {
  content: '';
  display: block;
  width: 100px;
  height: 92px;
  margin: 0 auto;
  background-image: url(/local/templates/magnet_s1/img/icons/icon-questions.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.ask-question .name {
  margin-top: 19px;
  font-size: 1.125em;
  color: #282828;
  font-weight: 700;
}
.ask-question .desc {
  margin-top: 11px;
  color: #828282;
  line-height: 1.5em;
}
.ask-question .btn {
  margin-top: 23px;
}
.additional-menu {
  width: 408px;
  margin: 0 0 24px 24px;
  padding: 37px 40px 20px;
  background-color: #fff;
  box-sizing: border-box;
}
.additional-menu .items .item {
  padding: 0 0 16px;
  font-size: 0.875em;
  font-weight: 700;
}
.additional-menu .items .item:not(:last-child) {
  margin-bottom: 17px;
  border-bottom: 1px solid #e7e7e7;
}
.additional-menu .items .item:before {
  content: none;
}
.additional-menu .items .item .link {
  color: #282828;
}
.additional-menu .items .item .link:hover {
  color: var(--main-color);
}
.additional-menu .items .item.active .link {
  color: var(--main-color);
}
.news:not(section) {
  display: flex;
  align-items: flex-start;
  margin: 32px 0 24px;
}
.news:not(section) .date {
  display: inline-block;
  padding: 5px 9px;
  font-size: 0.875em;
  color: #828282;
  line-height: 1em;
  background-color: #f5f5f5;
  border-radius: 3px;
}
.news:not(section) .news-previews {
  position: relative;
  flex-grow: 1;
  background-color: #fff;
}
.news:not(section) .news-previews .tabs {
  position: absolute;
  top: -61px;
  right: 0;
  display: inline-flex;
  border-bottom: 1px solid #e7e7e7;
}
.news:not(section) .news-previews .tabs .tab {
  position: relative;
  padding: 0 20px 16px;
  font-size: 0.8125em;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.news:not(section) .news-previews .tabs .tab:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  transition: all 0.3s ease;
}
.news:not(section) .news-previews .tabs .tab:not(.active):hover:after {
  left: 0;
  width: 100%;
}
.news:not(section) .news-previews .tabs .tab.active {
  color: #424242;
}
.news:not(section) .news-previews .tabs .tab.active:after {
  left: 0;
  width: 100%;
}
.news:not(section) .news-previews .items {
  padding: 40px 40px;
}
.news:not(section) .news-previews .items .item {
  display: flex;
  padding-bottom: 3.375%;
  border-bottom: 1px solid #e7e7e7;
}
.news:not(section) .news-previews .items .item .img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 224px;
  height: 150px;
  margin-right: 20px;
}
.news:not(section) .news-previews .items .item .content .name {
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.25em;
}
.news:not(section) .news-previews .items .item .content .name a {
  color: #282828;
}
.news:not(section) .news-previews .items .item .content .name a:hover {
  color: var(--main-color);
}
.news:not(section) .news-previews .items .item .content .date {
  margin-top: 13px;
}
.news:not(section) .news-previews .items .item .content .desc {
  margin-top: 14px;
  line-height: 1.5em;
}
.news:not(section) .news-previews .items .item .content .btn {
  margin-top: 24px;
  padding: 7px 16px;
}
.news:not(section) .news-previews .items .item:not(:last-child) {
  margin-bottom: 3.35%;
}
.news:not(section) .news-detail {
  width: 100%;
  padding: 40px;
  background-color: #fff;
  box-sizing: border-box;
}
.news:not(section) .news-detail .detail-img {
  max-width: 78.8%;
  max-height: 456px;
  margin: 0 auto;
  text-align: center;
  line-height: 0;
}
.news:not(section) .news-detail .date {
  margin-top: 3%;
}
.news:not(section) .news-detail .desc {
  margin-top: 2.4%;
  font-size: 1.25em;
  line-height: 1.4em;
}
.news:not(section) .news-detail .content {
  margin-top: 2.75%;
}
.news:not(section) .news-detail .buttons {
  display: flex;
  margin-top: 25px;
}
.news:not(section) .news-detail .buttons .right {
  margin-left: auto;
}
.news:not(section) .news-products {
  width: 100%;
  margin-top: 3.45%;
}
.news:not(section) .news-products > .name {
  margin-left: 6px;
  font-size: 1.375em;
  font-weight: 700;
}
.news:not(section) .news-products .owl-container {
  position: relative;
  margin: 1.9% -12px -24px;
  min-height: 408px;
}
.news:not(section) .news-products .items {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
}
.news:not(section) .news-products .items .owl-stage-outer:hover {
  height: 150%;
  pointer-events: none;
}
.news:not(section) .news-products .items .owl-stage-outer:hover .product-card:hover {
  pointer-events: auto;
}
.news:not(section) .news-products .items .owl-nav {
  position: absolute;
  top: -63px;
  right: 12px;
}
.news:not(section) .service-detail {
  width: 100%;
  padding: 40px;
  background-color: #fff;
  box-sizing: border-box;
}
.news:not(section) .service-detail .service-header-columns {
  display: flex;
  margin-bottom: 30px;
}
.news:not(section) .service-detail .service-header-columns .detail-img {
  flex-shrink: 0;
  width: 42.954%;
  max-height: 17.709vw;
  margin-right: 40px;
}
.news:not(section) .service-detail .service-order-block {
  display: flex;
  align-items: center;
  padding: 30px 30px 33px;
  background-color: rgba(115, 195, 25, 0.1);
  border-radius: 3px;
  box-sizing: border-box;
}
.news:not(section) .service-detail .service-order-block .info {
  padding-right: 20px;
}
.news:not(section) .service-detail .service-order-block .name {
  margin-bottom: 12px;
  font-size: 1.375em;
  font-weight: 700;
}
.news:not(section) .service-detail .service-order-block .btn {
  flex-shrink: 0;
  margin-left: auto;
}
.news:not(section) .service-detail .detail-desc {
  margin-top: 30px;
}
.news:not(section) .service-detail .buttons {
  display: flex;
  margin-top: 29px;
  padding-top: 30px;
  border-top: 1px solid #e7e7e7;
}
.news:not(section) .service-detail .buttons .right {
  margin-left: auto;
}
.brand-products-list {
  width: 100%;
  margin-top: 45px;
}
.brand-products-list .section-name {
  margin: 0 0 30px;
}
.brand-products-list .product-wrap {
  width: calc((100% - 120px) / 5);
}
.custom-page {
  display: flex;
  align-items: flex-start;
  margin: 2.5% 0 24px;
}
.custom-page .custom-content {
  width: 100%;
  padding: 40px 40px;
  background-color: #fff;
  box-sizing: border-box;
}
.about {
  display: flex;
  align-items: flex-start;
  margin: 2.5% 0 24px;
}
.about .about-content {
  width: 100%;
  padding: 40px 40px;
  background-color: #fff;
  box-sizing: border-box;
}
.content-column.content-page {
  margin: 32px 0 24px;
  padding: 40px;
  background-color: #fff;
  box-sizing: border-box;
}
body.aside-right .content-wrapper {
  display: flex;
  align-items: flex-start;
}
body.aside-right .content-wrapper .content-column {
  min-width: 0;
  flex-grow: 1;
}
body.aside-right .content-wrapper .right-column {
  margin-top: 32px;
}
body.aside-right .content-wrapper .right-column .brand-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 408px;
  height: 230px;
  margin: 0 0 24px 24px;
  padding: 40px;
  background-color: #fff;
  box-sizing: border-box;
}
body.aside-right .content-wrapper .right-column .brand-img .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 54px;
  text-align: center;
}
body.aside-right .content-wrapper .right-column .through-banners {
  margin: 0 0 24px 24px;
}
body.aside-right .content-wrapper .right-column .through-banners .banner-item {
  width: 100%;
  height: 350px;
}
.through-banners .banner-item {
  display: block;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.through-banners.header_before .banner-item {
  display: block;
  width: 100%;
  height: 60px;
}
.through-banners.header_after .banner-item {
  display: block;
  width: 100%;
  height: 60px;
}
.through-banners.footer_before {
  margin-top: 25px;
}
.through-banners.footer_before .banner-item {
  display: block;
  width: 100%;
  height: 60px;
}
.content-page > *:first-child {
  margin-top: 0;
}
.content-page > [id*='bx_incl_area'] > *:first-child {
  margin-top: 0;
}
.content-page h2 {
  margin-top: 30px;
}
.content-page h3 {
  margin-top: 22px;
}
.content-page h3 + code {
  margin-top: 15px;
}
.content-page ul {
  margin: 10px 0;
}
.content-page table {
  margin: 20px 0;
  border-collapse: collapse;
}
.content-page table th {
  padding: 12px 19px;
  color: #282828;
  line-height: 1.25em;
  text-align: left;
  background-color: #f0f0f0;
  border: 1px solid #e7e7e7;
}
.content-page table td {
  padding: 12px 19px;
  line-height: 1.25em;
  border: 1px solid #e7e7e7;
  vertical-align: top;
}
.content-page code {
  display: inline-block;
  margin: 0;
  padding: 8px 14px 6px 10px;
  font-family: courier, monospace;
  color: #333;
  line-height: 1.25em;
  background-color: #eee;
  border-radius: 3px;
}
.content-page code pre {
  margin: 0;
}
.code-subtitle {
  margin: 25px 0 15px;
}
.code-content {
  display: flex;
  align-items: flex-start;
  margin: 25px 0;
}
.code-content h2 {
  margin: 0 0 10px;
}
.code-content h3 {
  margin: 0 0 10px;
}
.code-content h4 {
  margin: 0 0 10px;
}
.code-content h5 {
  margin: 0 0 10px;
}
.code-content h6 {
  margin: 0 0 10px;
}
.code-content code {
  align-self: center;
  margin-right: 20px;
}
.code-content code + ul,
.code-content code + ol {
  margin-top: 3px;
}
.code-content code + h2,
.code-content code + h3,
.code-content code + h4,
.code-content code + h5,
.code-content code + h6 {
  align-self: center;
  margin: 0;
}
.code-content table {
  margin-top: 3px;
}
.gallery {
  margin: 32px 0 24px;
  flex-grow: 1;
}
.gallery .content {
  width: 100%;
  padding: 40px 40px 60px;
  background-color: #fff;
  box-sizing: border-box;
}
.gallery .content .gallery-category:not(:last-child) {
  margin-bottom: 3.45%;
}
.gallery .content .gallery-category .title {
  font-size: 1.375em;
  color: #282828;
  font-weight: 700;
}
.gallery .content .gallery-category .desc {
  margin-top: 1.678%;
  line-height: 1.5em;
}
.gallery .items {
  display: flex;
  flex-wrap: wrap;
  margin: 32px -10px -20px;
}
.gallery .items .item {
  width: calc((100% - 80px) / 4);
  margin: 0 10px 20px;
  padding: 30px 30px 32px;
  border: 1px solid #e7e7e7;
  transition: all 0.15s ease;
  box-sizing: border-box;
}
.gallery .items .item .img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 226px;
  margin-bottom: 17px;
}
.gallery .items .item .img::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  background-color: var(--main-color);
  background-image: url(/local/templates/magnet_s1/img/icons/full-image.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  border-radius: 50%;
}
.gallery .items .item .img:hover::before {
  display: block;
}
.gallery .items .item .name {
  color: #282828;
  font-weight: 700;
}
.gallery .items .item .description {
  margin-top: 8px;
  font-size: 0.875em;
  color: #828282;
  line-height: 1.5em;
}
.gallery .items .item:hover {
  border-color: transparent;
  border-radius: 3px;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
}
.jobs {
  margin: 32px 0 24px;
  flex-grow: 1;
}
.jobs .jobs-list {
  width: 100%;
  padding: 40px 40px 60px;
  background-color: #fff;
  box-sizing: border-box;
}
.jobs .jobs-list .title {
  font-size: 1.375em;
  color: #282828;
  font-weight: 700;
}
.jobs .jobs-list .desc {
  margin-top: 1.678%;
  letter-spacing: 0.001em;
}
.jobs .jobs-list .department:not(:last-child) {
  margin-bottom: 3.475%;
}
.jobs .jobs-list .items {
  margin-top: 2.8%;
}
.jobs .jobs-list .items .item {
  border: 1px solid #e7e7e7;
}
.jobs .jobs-list .items .item:not(:last-child) {
  border-bottom: none;
}
.jobs .jobs-list .items .item .name {
  position: relative;
  display: block;
  padding: 17px 50px 18px 30px;
  font-size: 1.125em;
  color: #424242;
  font-weight: 700;
  transition: color 0.1s ease;
}
.jobs .jobs-list .items .item .name::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 29px;
  display: block;
  width: 14px;
  height: 8px;
  margin-top: -4px;
  background-image: url(/local/templates/magnet_s1/img/icons/shevron.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s ease;
}
.jobs .jobs-list .items .item .name:hover {
  color: var(--main-color);
}
.jobs .jobs-list .items .item .description {
  display: none;
  padding: 20px 30px 41px;
  background-color: #fafafa;
  border-top: 1px solid #e7e7e7;
}
.jobs .jobs-list .items .item.open .name::after {
  margin-top: -5px;
  transform: rotate(-180deg);
}
.jobs .jobs-list .items .item.open .description {
  display: block;
}
.error-404 {
  display: flex;
  margin-top: 2.5%;
  padding: 40px;
  background-color: #fff;
}
.error-404 .content {
  margin: 3.7% auto 3.65%;
  text-align: center;
}
.error-404 .img {
  width: 448px;
  height: 200px;
  margin: 0 auto;
}
.error-404 .name {
  margin-top: 7.25%;
  font-size: 1.625em;
  color: #282828;
  font-weight: 700;
}
.error-404 .text {
  margin-top: 1.9%;
}
.error-404 .text p {
  margin: 1px 0;
}
.error-404 .buttons {
  margin-top: 5.35%;
}
.error-404 .buttons .btn {
  margin: 0 5px;
}
.error-404 .buttons .btn.transparent {
  padding: 10px 20px;
}
.sale-order-detail-payment-options-methods-template {
  position: relative;
  margin: 24px 0 14px;
}
.sale-order-detail-payment-options-methods-template .sale-paysystem-close {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 10;
}
.sale-order-detail-payment-options-methods-template .sale-paysystem-close .sale-paysystem-close-item {
  width: auto;
  height: auto;
  font-size: 12px;
  color: #aaa;
  background: none;
  transition: color 0.1s ease;
  cursor: pointer;
}
.sale-order-detail-payment-options-methods-template .sale-paysystem-close .sale-paysystem-close-item::before {
  content: '\006a';
  display: inline-block;
  font-family: 'Icon Custom';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.sale-order-detail-payment-options-methods-template .sale-paysystem-close .sale-paysystem-close-item:hover {
  color: var(--main-color);
  opacity: 1;
}
.sale-paysystem-wrapper {
  width: 100%;
  margin: 0;
  padding: 30px 30px 32px;
  font-family: 'Roboto';
  font-size: 1rem;
  color: #424242;
  border: 1px solid #e7e7e7;
  box-sizing: border-box;
}
.sale-paysystem-wrapper .tablebodytext {
  line-height: 1.5em;
}
.sale-paysystem-wrapper .tablebodytext br + br {
  display: none;
}
.sale-paysystem-wrapper form {
  margin-top: 2.1%;
}
.sale-paysystem-wrapper form .sale-paysystem-description {
  display: block;
  margin-top: 2.6%;
  font-family: 'Roboto';
  font-size: 0.875rem;
  color: #424242;
}
.sale-paysystem-wrapper form span {
  margin: 0;
  font-size: 0.875rem;
  color: #828282;
}
.sale-paysystem-wrapper form input[type="submit"] {
  display: inline-block;
  margin-right: 16px;
  height: auto;
  padding: 12px 24px 13px;
  font-family: 'Roboto';
  font-size: 1.125rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.5em;
  background-color: var(--main-color);
  border: none;
  border-radius: 30px;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.2s ease;
  cursor: pointer;
}
.sale-paysystem-wrapper form input[type="submit"]:hover {
  opacity: 0.9;
}
.auth {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  margin: 32px 0 24px;
  padding: 40px;
  background-color: #fff;
  box-sizing: border-box;
}
.auth .left-column {
  width: 33%;
  margin-right: 3.75%;
}
.auth .right-column {
  position: relative;
  top: 2px;
  width: 30.5%;
  padding: 31px 30px;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
}
.auth .name {
  margin-bottom: 10px;
  font-size: 1.375em;
  color: #000;
  font-weight: 700;
}
.auth .text {
  line-height: 1.5em;
}
.auth .reg-link {
  margin-top: 17px;
  padding: 7px 18px 8px;
}
.auth .auth-link {
  font-size: 0.875em;
  line-height: 1.5em;
  border-bottom: 1px dashed var(--main-color);
}
.auth .auth-link:hover {
  border-color: transparent;
}
.auth .form {
  position: relative;
  margin-top: 30px;
}
.auth .form .input-container {
  margin-bottom: 17px;
  font-size: 0.875em;
}
.auth .form input {
  width: 100%;
  padding: 11px 14px 10px;
}
.auth .form .label {
  position: relative;
  margin-bottom: 9px;
}
.auth .form .checkbox {
  margin-top: 19px;
}
.auth .form .forgot-password {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.875em;
}
.auth .form .tip {
  margin: 5px 0;
  font-size: 0.8572em;
  color: #828282;
  line-height: 1.5em;
}
.auth .form .tip.right {
  text-align: right;
}
.auth .form .line {
  position: relative;
  margin-bottom: 10px;
  text-align: center;
}
.auth .form .line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #424242;
  z-index: 1;
}
.auth .form .line span {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  background-color: #fff;
  z-index: 2;
}
.auth .form .required {
  color: #eb5757;
}
.auth .form .submit {
  margin-top: 28px;
}
.auth .form .buttons {
  display: flex;
  align-items: center;
  margin-top: 28px;
}
.auth .form .buttons .submit {
  margin: 0 auto 0 0;
}
.auth .form .buttons .auth-link {
  position: relative;
  top: -3px;
}
.auth input[type="checkbox"]:not(.adm-designed-checkbox) {
  display: none;
}
.auth input[type="checkbox"]:not(.adm-designed-checkbox) + span {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
}
.auth input[type="checkbox"]:not(.adm-designed-checkbox) + span:before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  background-color: #f5f5f5;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
  border: 1px solid #aaa;
  border-radius: 2px;
  cursor: pointer;
  box-sizing: border-box;
}
.auth input[type="checkbox"]:not(.adm-designed-checkbox):checked + span:before {
  background-image: url(/local/templates/magnet_s1/img/icons/check.svg);
  background-color: var(--main-color);
  border-color: var(--main-color);
}
.auth .reg {
  width: 100%;
}
.auth .reg .form {
  width: 33%;
}
.popup-basket-add {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.popup-basket-add .overflow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-basket-add .box {
  position: relative;
  width: 240px;
  padding: 40px 50px;
  background-color: #fff;
  text-align: center;
}
.popup-basket-add .box .close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  width: 12px;
  height: 12px;
  background: url('/local/templates/magnet_s1/img/icons/icon-close-basket-popup.svg') no-repeat;
}
.popup-basket-add .box .title {
  margin: 0 0 20px 0;
  font-size: 1.25em;
  font-weight: 500;
}
.popup-basket-add .box .title:before {
  content: "";
  display: block;
  margin: 0 auto 20px auto;
  width: 78px;
  height: 74px;
  background-image: url('/local/templates/magnet_s1/img/icons/icon-basket-popup.svg');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}
.popup-basket-add .box .btn {
  display: block;
  width: 100%;
  margin-bottom: 6px;
  padding-left: 0;
  padding-right: 0;
}
.owl-dots.disable {
  display: none;
}
.header-mobile-menus {
  display: none;
}
.content-column > p > .notetext {
  display: block;
  width: 100%;
  margin: 32px 0 24px;
  padding: 30px 40px;
  color: #424242;
  background-color: #fff;
  box-sizing: border-box;
}
.vote-table {
  border: none;
  border-spacing: 0;
}
.vote-table td {
  padding: 0;
}
.catalog-delivery-popup {
  width: 840px;
}
.catalog-delivery-popup .delivery-popup {
  padding: 36px 50px 50px;
}
.catalog-delivery-popup .delivery-popup .title {
  font-size: 1.375em;
  color: #282828;
  font-weight: 700;
  line-height: 1.5em;
}
.catalog-delivery-popup .delivery-popup .desc {
  margin-top: 15px;
}
.catalog-delivery-popup .delivery-popup .close-popup-icon {
  top: -15px;
  right: -28px;
  font-size: 15px;
}
.catalog-delivery-popup .delivery-popup .delivery-search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 16px;
}
.catalog-delivery-popup .delivery-popup .delivery-search .search-filed {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}
.catalog-delivery-popup .delivery-popup .delivery-search .search-filed::after {
  content: '';
  position: absolute;
  top: 16px;
  right: 15px;
  width: 14px;
  height: 14px;
  background-image: url(/local/templates/magnet_s1/img/icons/search-autocomplete.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 10;
}
.catalog-delivery-popup .delivery-popup .delivery-search .search-filed input {
  width: 100%;
  height: 46px;
  padding: 11px 40px 10px 15px;
  border-radius: 2px;
}
.catalog-delivery-popup .delivery-popup .delivery-search .search-filed .suggestions {
  display: none;
  margin: 0 -5px;
}
.catalog-delivery-popup .delivery-popup .delivery-search .search-filed .suggestions .item {
  display: inline-block;
  margin: 10px 5px 0;
  font-size: 0.875em;
  line-height: 1.2em;
  text-decoration: none;
  border-bottom: 1px dashed var(--main-color);
}
.catalog-delivery-popup .delivery-popup .delivery-search .search-filed .suggestions .item:hover {
  border-color: transparent;
}
.catalog-delivery-popup .delivery-popup .delivery-search .search-filed .suggestions.open {
  display: block;
}
.catalog-delivery-popup .delivery-popup .delivery-search .counter-container {
  display: flex;
  align-items: center;
  margin-right: 31px;
}
.catalog-delivery-popup .delivery-popup .delivery-search .counter-container .label {
  margin-right: 10px;
  font-size: 0.875em;
}
.catalog-delivery-popup .delivery-popup .delivery-search .checkbox {
  font-size: 0.875em;
}
.catalog-delivery-popup .delivery-popup .delivery-search .checkbox input[type="checkbox"] + label {
  padding-left: 28px;
}
.catalog-delivery-popup .delivery-popup .delivery-search .checkbox input[type="checkbox"] + label::before {
  top: -2px;
  width: 20px;
  height: 20px;
  border: 1px solid #aaa;
  border-radius: 2px;
  box-sizing: border-box;
}
.catalog-delivery-popup .delivery-popup .delivery-search .checkbox input[type="checkbox"]:checked + label::before {
  border-color: var(--main-color);
}
.catalog-delivery-popup .delivery-popup .list {
  margin-top: 30px;
  border-top: 1px solid #e7e7e7;
}
.catalog-delivery-popup .delivery-popup .list .item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 18px 0 19px;
  border-bottom: 1px solid #e7e7e7;
}
.catalog-delivery-popup .delivery-popup .list .item .img {
  width: 120px;
  height: 80px;
  margin: 2px 20px 0 0;
  flex-shrink: 0;
}
.catalog-delivery-popup .delivery-popup .list .item .info {
  width: 100%;
}
.catalog-delivery-popup .delivery-popup .list .item .name {
  color: #282828;
  font-weight: 700;
}
.catalog-delivery-popup .delivery-popup .list .item .text {
  font-size: 0.875em;
  line-height: 1.6em;
}
.catalog-delivery-popup .delivery-popup .list .item .price {
  margin-left: auto;
  padding-left: 20px;
  color: #282828;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.catalog-delivery-popup.open {
  border-top: none;
}
.cookie {
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  z-index: 200;
}
.cookie .text {
  font-size: 0.875em;
  line-height: 1.35em;
}
.cookie .btn {
  flex-shrink: 0;
  padding: 10px 25px;
}
.cookie.type-1 {
  justify-content: flex-start;
  left: 50%;
  bottom: -200px;
  width: 600px;
  margin-left: -300px;
  padding: 20px 20px 21px;
  border-radius: 3px;
}
.cookie.type-1 .btn {
  margin-left: 7px;
}
.cookie.type-1.show {
  bottom: 20px;
  transition: bottom 0.85s cubic-bezier(0.13, 0.04, 0.39, 1.3);
}
.cookie.type-1.hide {
  bottom: -200px;
  transition: bottom 0.85s cubic-bezier(0.68, -0.15, 0.74, 0.05);
}
.cookie.type-2 {
  bottom: -200px;
  padding: 15px 35px 16px;
}
.cookie.type-2 .btn {
  margin-left: 20px;
}
.cookie.type-2.show {
  bottom: 0px;
  transition: bottom 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cookie.type-2.hide {
  bottom: -200px;
  transition: bottom 0.525s cubic-bezier(0.64, 0.04, 0.95, 0.77);
}
.cookie.type-3 {
  bottom: -200px;
  padding: 16px 35px 17px;
}
.cookie.type-3 .btn {
  position: absolute;
  top: 6px;
  right: 13px;
  min-width: auto;
  padding: 0;
  border-radius: 0;
}
.cookie.type-3 .btn::before {
  content: '\006a';
  font-family: 'Icon Custom';
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.cookie.type-3 .btn span {
  display: none;
}
.cookie.type-3.black .btn {
  color: #fff;
  background-color: transparent;
}
.cookie.type-3.black .btn:hover {
  color: #fff;
  opacity: 0.8;
}
.cookie.type-3.color .btn {
  color: #fff;
  background-color: transparent;
}
.cookie.type-3.color .btn:hover {
  color: #fff;
  opacity: 0.8;
}
.cookie.type-3.white .btn {
  color: #424242;
  background-color: transparent;
}
.cookie.type-3.white .btn:hover {
  color: #424242;
  opacity: 0.8;
}
.cookie.type-3.show {
  bottom: 0px;
  transition: bottom 0.725s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cookie.type-3.hide {
  bottom: -200px;
  transition: bottom 0.6s cubic-bezier(0.64, 0.04, 0.95, 0.77);
}
.cookie.black {
  color: #fff;
  background-color: rgba(40, 40, 40, 0.9);
}
.cookie.black .btn {
  color: #282828;
  background-color: #fff;
}
.cookie.black .btn:hover {
  color: #424242;
  opacity: 1;
}
.cookie.color {
  color: #fff;
  background-color: rgba(115, 195, 25, 0.9);
}
.cookie.color .btn {
  color: #282828;
  background-color: #fff;
}
.cookie.color .btn:hover {
  color: #424242;
  opacity: 1;
}
.cookie.white {
  background-color: #fff;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
}
.to-top {
  position: fixed;
  right: 1.85%;
  bottom: 10%;
  width: 50px;
  height: 50px;
  z-index: 80;
  opacity: 0;
  transition: 0.3s;
}
.to-top::before {
  content: '\007a';
  font-size: 16px;
  color: #fff;
  z-index: 80;
}
.to-top.show {
  opacity: 1;
}
.to-top.type-1 {
  border-radius: 50%;
}
.to-top.type-1::before {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background-color: var(--main-color);
  border-radius: 50%;
  box-sizing: border-box;
}
.to-top.type-1::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  width: 48px;
  height: 48px;
  background-color: rgba(115, 195, 25, 0.3);
  border-radius: 50%;
  opacity: 1;
  z-index: 78;
}
.to-top.type-1:hover::after {
  animation: shadow 0.6s ease-in-out;
}
.to-top.type-1.white::before {
  background-color: #fff;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
}
.to-top.type-2 {
  text-align: center;
  background-color: var(--main-color);
  border-radius: 6px;
  overflow: hidden;
}
.to-top.type-2::before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
}
.to-top.type-2:hover::before {
  animation: arrow 0.6s ease-in-out;
}
.to-top.type-2.white {
  background-color: #fff;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
}
.to-top.white::before {
  color: #282828;
}
.accordeon {
  margin: 24px 0;
  border: 1px solid #e7e7e7;
}
.accordeon:not(:last-of-type) {
  margin-bottom: 0;
}
.accordeon + .accordeon {
  margin-top: 0;
  border-top: none;
}
.accordeon .name {
  position: relative;
  display: block;
  padding: 17px 50px 18px 30px;
  font-size: 1.125em;
  color: #424242;
  font-weight: 700;
  transition: color 0.1s ease;
}
.accordeon .name::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 29px;
  display: block;
  width: 14px;
  height: 8px;
  margin-top: -4px;
  background-image: url(/local/templates/magnet_s1/img/icons/shevron.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s ease;
}
.accordeon .name:hover {
  color: var(--main-color);
}
.accordeon .text {
  display: none;
  padding: 20px 30px;
  background-color: #fafafa;
  border-top: 1px solid #e7e7e7;
}
.accordeon.open .name::after {
  margin-top: -5px;
  transform: rotate(-180deg);
}
.accordeon.open .text {
  display: block;
}
.bootstrap .desc {
  margin: 10px 0 20px;
}
.bootstrap .desc code {
  padding: 0 5px;
}
.bootstrap .bs-container {
  margin: 20px 0;
}
.bootstrap .bs-container div[class^="bs-col"] {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background-color: rgba(86, 61, 124, 0.15);
  border: 1px solid rgba(86, 61, 124, 0.2);
}
.catalog-empty-section {
  padding: 8.342% 0;
  text-align: center;
  background-color: #fff;
}
.catalog-empty-section::before {
  content: '';
  display: block;
  width: 190px;
  height: 190px;
  margin: 0 auto 30px;
  background-image: url('/local/templates/magnet_s1/img/icons/empty-category.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.catalog-empty-section .title {
  margin-bottom: 10px;
  font-size: 1.625em;
  color: #282828;
  font-weight: 700;
}
.catalog-empty-section .btn {
  margin-top: 20px;
}
.bx_subscribe_checkbox_container {
  margin-top: 10px;
}
.bx_subscribe_checkbox_container .main-user-consent-request-announce {
  display: block;
  font-size: 10px;
  color: inherit;
  line-height: 15px;
}
.bx_subscribe_checkbox_container input[type="checkbox"] + .main-user-consent-request-announce {
  position: relative;
  margin-left: 5px;
  padding-left: 21px;
}
.bx_subscribe_checkbox_container input[type="checkbox"] + .main-user-consent-request-announce::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 14px;
  height: 14px;
  background-color: #e7e7e7;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
  border-radius: 4px;
  cursor: pointer;
  box-sizing: border-box;
}
.bx_subscribe_checkbox_container input[type="checkbox"]:checked + .main-user-consent-request-announce::before {
  background-image: url(/local/templates/magnet_s1/img/icons/check.svg);
  background-color: var(--main-color);
}
.lazy-load-container {
  margin: 24px 0;
}
.lazy-load-container .lazy-load-btn {
  display: block;
  padding: 20px;
  font-size: 0.875em;
  font-weight: 700;
  text-align: center;
  border-radius: 100px;
  background-color: rgba(115, 195, 25, 0.1);
}
.lazy-load-container .dots {
  position: relative;
  top: -2px;
  left: 7px;
  display: inline-flex;
}
.lazy-load-container .dots span {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 3px;
  background-color: var(--main-color);
  border-radius: 50%;
  animation-name: blink;
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}
.lazy-load-container .dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.lazy-load-container .dots span:nth-child(3) {
  animation-delay: 0.4s;
}
.fixed-product-header {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  padding: 12px 0;
  padding-left: 146px;
  background-color: #fff;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  transition: bottom 1s ease, top 1s ease;
  z-index: 40;
}
.fixed-product-header .fixed-product-header-container {
  display: flex;
  align-items: center;
  max-width: 100%;
}
.fixed-product-header .logo a {
  display: block;
  line-height: 0;
}
.fixed-product-header .logo svg rect {
  fill: var(--main-color);
}
.fixed-product-header .product-container {
  display: flex;
  align-items: center;
  margin-left: 4.7%;
  flex-grow: 1;
}
.fixed-product-header .product-container .info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 4px auto 0 0;
  padding-right: 20px;
}
.fixed-product-header .product-container .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-right: 15px;
  flex-shrink: 0;
}
.fixed-product-header .product-container .name {
  width: 100%;
  color: #282828;
  font-weight: 700;
  line-height: 1.4em;
}
.fixed-product-header .product-container .iblock-vote {
  margin: 6px 18px 0 0;
}
.fixed-product-header .product-container .stock {
  margin-top: 6px;
}
.fixed-product-header .product-container .stock::before {
  margin-right: 1px;
}
.fixed-product-header .product-container .price-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.fixed-product-header .product-container .price-container .old-price {
  margin-right: 10px;
  font-size: 1em;
  word-spacing: -0.12em;
}
.fixed-product-header .product-container .price-container .price {
  word-spacing: -0.12em;
}
.fixed-product-header .btn-container {
  margin: 0 28px 0 4.1%;
}
.fixed-product-header .btn-container .btn {
  padding: 10px 24px;
  white-space: nowrap;
}
.fixed-product-header .additional-links {
  position: static;
  flex-direction: row;
  flex-shrink: 0;
  margin-right: 10.2%;
}
.fixed-product-header .additional-links .compare {
  margin: 0 0 0 2px;
}
.fixed-product-header .additional-links .wishlist {
  margin: 0 0 0 2px;
}
.fixed-product-header.show {
  top: 0;
  transition: bottom 0.6s ease, top 0.6s ease;
}
.component-reviews {
  display: none;
}
.component-reviews .st {
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNiAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuOTk5NTggMTIuMDIzMkwzLjA1NTE1IDE1TDQuMzk5MzUgOS40NDQ0NEwwIDUuNzI5NjhMNS43NzQ2NyA1LjI3MzYzTDcuOTk5NTggMEwxMC4yMjQ1IDUuMjczNjNMMTYgNS43Mjk2OEwxMS41OTk4IDkuNDQ0NDRMMTIuOTQ0IDE1TDcuOTk5NTggMTIuMDIzMlpNNy45OTk1OCAxMC4wNzk2TDEwLjM2OTIgMTEuNTA1OEw5LjcyNDgzIDguODQ0MTFMMTEuODMzNyA3LjA2Mzg1TDkuMDY2MTkgNi44NDQ5NEw3Ljk5OTU4IDQuMzE4NDFMNi45MzI5NyA2Ljg0NDk0TDQuMTY1NSA3LjA2Mzg1TDYuMjc0MzMgOC44NDQxMUw1LjYyOTk5IDExLjUwNThMNy45OTk1OCAxMC4wODA0VjEwLjA3OTZaIiBmaWxsPSIjRERCQjAwIi8+Cjwvc3ZnPgo=");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
}
.component-reviews .st.f {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNiAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuOTk5NTggMTIuMDIzMkwzLjA1NTE1IDE1TDQuMzk5MzUgOS40NDQ0NEwwIDUuNzI5NjhMNS43NzQ2NyA1LjI3MzYzTDcuOTk5NTggMEwxMC4yMjQ1IDUuMjczNjNMMTYgNS43Mjk2OEwxMS41OTk4IDkuNDQ0NDRMMTIuOTQ0IDE1TDcuOTk5NTggMTIuMDIzMloiIGZpbGw9IiNEREJCMDAiLz4KPC9zdmc+Cg==");
}
.component-reviews .st.h {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNiAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuOTk5NTggMTAuMDc5NkwxMC4zNjkyIDExLjUwNThMOS43MjQ4MyA4Ljg0NDExTDExLjgzMzcgNy4wNjM4NUw5LjA2NjE5IDYuODQ0OTRMNy45OTk1OCA0LjMxODQxVjEwLjA3OTZaTTcuOTk5NTggMTIuMDIzMkwzLjA1NTE1IDE1TDQuMzk5MzUgOS40NDQ0NEwwIDUuNzI5NjhMNS43NzQ2NyA1LjI3MzYzTDcuOTk5NTggMEwxMC4yMjQ1IDUuMjczNjNMMTYgNS43Mjk2OEwxMS41OTk4IDkuNDQ0NDRMMTIuOTQ0IDE1TDcuOTk5NTggMTIuMDIzMloiIGZpbGw9IiNEREJCMDAiLz4KPC9zdmc+Cg==");
}
.component-reviews .stars {
  display: flex;
}
.component-reviews .stars .st {
  margin-right: 8px;
}
.component-reviews .stars.big .st {
  width: 20px;
  height: 20px;
}
.component-reviews .total-values {
  margin-right: 16px;
}
.component-reviews .total-values .total-value {
  font-size: 64px;
  line-height: 64px;
  color: #000;
  margin-bottom: 4px;
}
.component-reviews .total-values .total-label {
  margin-top: 8px;
  font-size: 0.85em;
  color: #424242;
}
.component-reviews .total-values .add-review {
  margin-top: 24px;
}
.component-reviews .transcript .line {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.component-reviews .transcript .line .rating {
  margin-right: 16px;
  width: 40px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.component-reviews .transcript .line .progress {
  width: 100%;
  overflow: hidden;
  background-color: #e7e7e7;
  border-radius: 2px;
  height: 8px;
  position: relative;
}
.component-reviews .transcript .line .progress span {
  display: block;
  position: absolute;
  width: auto;
  left: 0;
  top: 0;
  height: 8px;
  background-color: var(--main-color);
}
.component-reviews .transcript .line .link {
  width: 150px;
  flex-shrink: 0;
  text-align: left;
  margin-left: 16px;
  color: #828282;
}
.component-reviews .transcript .line .link a {
  color: var(--main-color);
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px dotted var(--main-color);
  line-height: 130%;
}
.component-reviews .top-line {
  display: flex;
}
.component-reviews .top-line > .total-values {
  width: 25%;
  flex-shrink: 0;
}
.component-reviews .top-line > .transcript {
  width: 100%;
}
.component-reviews .items {
  margin-top: 32px;
}
.component-reviews .items .item {
  position: relative;
  background-color: #efefef;
  padding: 24px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.component-reviews .items .item .vote {
  position: absolute;
  right: 15px;
  top: 25px;
  display: flex;
}
.component-reviews .items .item .vote a {
  display: flex;
  align-items: center;
  margin-right: 16px;
  font-size: 0.85em;
  color: #424242;
  text-decoration: none;
}
.component-reviews .items .item .vote a:before {
  content: "";
  width: 16px;
  height: 16px;
  background-size: cover;
  background-position: center center;
  margin-right: 6px;
}
.component-reviews .items .item .vote .up:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuNzMzNDIgNS4zMzMxMUgxNC4wMDAxQzE0LjM1MzcgNS4zMzMxMSAxNC42OTI4IDUuNDczNTggMTQuOTQyOSA1LjcyMzYzQzE1LjE5MjkgNS45NzM2OCAxNS4zMzM0IDYuMzEyODIgMTUuMzMzNCA2LjY2NjQ0VjguMDY5MTFDMTUuMzMzNiA4LjI0MzM1IDE1LjI5OTYgOC40MTU5MyAxNS4yMzM0IDguNTc3MTFMMTMuMTcwMSAxMy41ODcxQzEzLjExOTcgMTMuNzA5MyAxMy4wMzQzIDEzLjgxMzcgMTIuOTI0NSAxMy44ODcyQzEyLjgxNDcgMTMuOTYwNiAxMi42ODU1IDEzLjk5OTggMTIuNTUzNCAxMy45OTk4SDEuMzMzNDFDMS4xNTY2IDEzLjk5OTggMC45ODcwMzQgMTMuOTI5NSAwLjg2MjAxIDEzLjgwNDVDMC43MzY5ODYgMTMuNjc5NSAwLjY2Njc0OCAxMy41MDk5IDAuNjY2NzQ4IDEzLjMzMzFWNi42NjY0NEMwLjY2Njc0OCA2LjQ4OTYzIDAuNzM2OTg2IDYuMzIwMDYgMC44NjIwMSA2LjE5NTA0QzAuOTg3MDM0IDYuMDcwMDEgMS4xNTY2IDUuOTk5NzcgMS4zMzM0MSA1Ljk5OTc3SDMuNjU0NzVDMy43NjE0OCA1Ljk5OTggMy44NjY2NiA1Ljk3NDIgMy45NjE0NCA1LjkyNTEzQzQuMDU2MjIgNS44NzYwNiA0LjEzNzgzIDUuODA0OTQgNC4xOTk0MSA1LjcxNzc3TDcuODM0NzUgMC41NjY0NEM3Ljg4MDcgMC41MDEzMTUgNy45NDg0NyAwLjQ1NDgxMyA4LjAyNTc3IDAuNDM1MzY3QzguMTAzMDcgMC40MTU5MiA4LjE4NDc4IDAuNDI0ODE1IDguMjU2MDggMC40NjA0NEw5LjQ2NTQyIDEuMDY1MTFDOS44MDU3NSAxLjIzNTIxIDEwLjA3NzYgMS41MTY2NSAxMC4yMzU5IDEuODYyNjVDMTAuMzk0MiAyLjIwODY1IDEwLjQyOTMgMi41OTgzOSAxMC4zMzU0IDIuOTY3MTFMOS43MzM0MiA1LjMzMzExWk00LjY2Njc1IDcuMDU4NDRWMTIuNjY2NEgxMi4xMDY3TDE0LjAwMDEgOC4wNjkxMVY2LjY2NjQ0SDkuNzMzNDJDOS41MzAzNSA2LjY2NjQxIDkuMzI5OTcgNi42MiA5LjE0NzU3IDYuNTMwNzVDOC45NjUxNyA2LjQ0MTQ5IDguODA1NTYgNi4zMTE3NSA4LjY4MDkzIDYuMTUxNDNDOC41NTYzIDUuOTkxMTEgOC40Njk5MyA1LjgwNDQ0IDguNDI4NDMgNS42MDU2NkM4LjM4NjkyIDUuNDA2ODggOC4zOTEzNiA1LjIwMTI0IDguNDQxNDEgNS4wMDQ0NEw5LjA0MzQyIDIuNjM5MTFDOS4wNjIyNiAyLjU2NTMyIDkuMDU1MjcgMi40ODczMiA5LjAyMzYxIDIuNDE4MDZDOC45OTE5NSAyLjM0ODggOC45Mzc1NCAyLjI5MjQ3IDguODY5NDIgMi4yNTg0NEw4LjQyODc1IDIuMDM4NDRMNS4yODg3NSA2LjQ4NjQ0QzUuMTIyMDggNi43MjI0NCA0LjkwODc1IDYuOTE1NzcgNC42NjY3NSA3LjA1ODQ0Wk0zLjMzMzQxIDcuMzMzMTFIMi4wMDAwOFYxMi42NjY0SDMuMzMzNDFWNy4zMzMxMVoiIGZpbGw9IiM4RjhGOUQiLz4KPC9zdmc+Cg==");
}
.component-reviews .items .item .vote .down:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYuMjY2NzUgMTAuNjY2N0gyLjAwMDA4QzEuNjQ2NDYgMTAuNjY2NyAxLjMwNzMyIDEwLjUyNjIgMS4wNTcyNyAxMC4yNzYxQzAuODA3MjI1IDEwLjAyNjEgMC42NjY3NDkgOS42ODY5NiAwLjY2Njc0OSA5LjMzMzMzVjcuOTMwNjdDMC42NjY1NjkgNy43NTY0MyAwLjcwMDU0MyA3LjU4Mzg0IDAuNzY2NzQ5IDcuNDIyNjdMMi44MzA3NSAyLjQxMzMzQzIuODgwOTQgMi4yOTExNyAyLjk2NjI4IDIuMTg2NjYgMy4wNzU5NSAyLjExMzA3QzMuMTg1NjIgMi4wMzk0OSAzLjMxNDY4IDIuMDAwMTMgMy40NDY3NSAySDE0LjY2NjdDMTQuODQzNiAyIDE1LjAxMzEgMi4wNzAyNCAxNS4xMzgyIDIuMTk1MjZDMTUuMjYzMiAyLjMyMDI5IDE1LjMzMzQgMi40ODk4NiAxNS4zMzM0IDIuNjY2NjdWOS4zMzMzM0MxNS4zMzM0IDkuNTEwMTQgMTUuMjYzMiA5LjY3OTcxIDE1LjEzODIgOS44MDQ3NEMxNS4wMTMxIDkuOTI5NzYgMTQuODQzNiAxMCAxNC42NjY3IDEwSDEyLjM0NTRDMTIuMjM4NyA5Ljk5OTk3IDEyLjEzMzUgMTAuMDI1NiAxMi4wMzg3IDEwLjA3NDZDMTEuOTQzOSAxMC4xMjM3IDExLjg2MjMgMTAuMTk0OCAxMS44MDA3IDEwLjI4Mkw4LjE2NTQyIDE1LjQzMjdDOC4xMTk0NiAxNS40OTc4IDguMDUxNjkgMTUuNTQ0MyA3Ljk3NDM5IDE1LjU2MzdDNy44OTcwOSAxNS41ODMyIDcuODE1MzggMTUuNTc0MyA3Ljc0NDA4IDE1LjUzODdMNi41MzQ3NSAxNC45MzMzQzYuMTk0NDEgMTQuNzYzMiA1LjkyMjUzIDE0LjQ4MTggNS43NjQyNiAxNC4xMzU4QzUuNjA2IDEzLjc4OTggNS41NzA4OCAxMy40MDAxIDUuNjY0NzUgMTMuMDMxM0w2LjI2Njc1IDEwLjY2NjdaTTExLjMzMzQgOC45NDEzM1YzLjMzMzMzSDMuODkzNDJMMi4wMDAwOCA3LjkzMDY3VjkuMzMzMzNINi4yNjY3NUM2LjQ2OTgyIDkuMzMzMzYgNi42NzAxOSA5LjM3OTc3IDYuODUyNiA5LjQ2OTAzQzcuMDM1IDkuNTU4MjggNy4xOTQ2IDkuNjg4MDIgNy4zMTkyMyA5Ljg0ODM0QzcuNDQzODYgMTAuMDA4NyA3LjUzMDIzIDEwLjE5NTMgNy41NzE3NCAxMC4zOTQxQzcuNjEzMjUgMTAuNTkyOSA3LjYwODgxIDEwLjc5ODUgNy41NTg3NSAxMC45OTUzTDYuOTU2NzUgMTMuMzYwN0M2LjkzNzkxIDEzLjQzNDQgNi45NDQ5IDEzLjUxMjUgNi45NzY1NSAxMy41ODE3QzcuMDA4MjEgMTMuNjUxIDcuMDYyNjMgMTMuNzA3MyA3LjEzMDc1IDEzLjc0MTNMNy41NzE0MiAxMy45NjEzTDEwLjcxMTQgOS41MTMzM0MxMC44NzgxIDkuMjc3MzMgMTEuMDkxNCA5LjA4NCAxMS4zMzM0IDguOTQxMzNaTTEyLjY2NjcgOC42NjY2N0gxNC4wMDAxVjMuMzMzMzNIMTIuNjY2N1Y4LjY2NjY3WiIgZmlsbD0iIzhGOEY5RCIvPgo8L3N2Zz4K");
}
.component-reviews .items .item .vote .up.active:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuNzMzNDIgNS4zMzMxMUgxNC4wMDAxQzE0LjM1MzcgNS4zMzMxMSAxNC42OTI4IDUuNDczNTggMTQuOTQyOSA1LjcyMzYzQzE1LjE5MjkgNS45NzM2OCAxNS4zMzM0IDYuMzEyODIgMTUuMzMzNCA2LjY2NjQ0VjguMDY5MTFDMTUuMzMzNiA4LjI0MzM1IDE1LjI5OTYgOC40MTU5MyAxNS4yMzM0IDguNTc3MTFMMTMuMTcwMSAxMy41ODcxQzEzLjExOTcgMTMuNzA5MyAxMy4wMzQzIDEzLjgxMzcgMTIuOTI0NSAxMy44ODcyQzEyLjgxNDcgMTMuOTYwNiAxMi42ODU1IDEzLjk5OTggMTIuNTUzNCAxMy45OTk4SDEuMzMzNDFDMS4xNTY2IDEzLjk5OTggMC45ODcwMzQgMTMuOTI5NSAwLjg2MjAxIDEzLjgwNDVDMC43MzY5ODYgMTMuNjc5NSAwLjY2Njc0OCAxMy41MDk5IDAuNjY2NzQ4IDEzLjMzMzFWNi42NjY0NEMwLjY2Njc0OCA2LjQ4OTYzIDAuNzM2OTg2IDYuMzIwMDYgMC44NjIwMSA2LjE5NTA0QzAuOTg3MDM0IDYuMDcwMDEgMS4xNTY2IDUuOTk5NzcgMS4zMzM0MSA1Ljk5OTc3SDMuNjU0NzVDMy43NjE0OCA1Ljk5OTggMy44NjY2NiA1Ljk3NDIgMy45NjE0NCA1LjkyNTEzQzQuMDU2MjIgNS44NzYwNiA0LjEzNzgzIDUuODA0OTQgNC4xOTk0MSA1LjcxNzc3TDcuODM0NzUgMC41NjY0NEM3Ljg4MDcgMC41MDEzMTUgNy45NDg0NyAwLjQ1NDgxMyA4LjAyNTc3IDAuNDM1MzY3QzguMTAzMDcgMC40MTU5MiA4LjE4NDc4IDAuNDI0ODE1IDguMjU2MDggMC40NjA0NEw5LjQ2NTQyIDEuMDY1MTFDOS44MDU3NSAxLjIzNTIxIDEwLjA3NzYgMS41MTY2NSAxMC4yMzU5IDEuODYyNjVDMTAuMzk0MiAyLjIwODY1IDEwLjQyOTMgMi41OTgzOSAxMC4zMzU0IDIuOTY3MTFMOS43MzM0MiA1LjMzMzExWk00LjY2Njc1IDcuMDU4NDRWMTIuNjY2NEgxMi4xMDY3TDE0LjAwMDEgOC4wNjkxMVY2LjY2NjQ0SDkuNzMzNDJDOS41MzAzNSA2LjY2NjQxIDkuMzI5OTcgNi42MiA5LjE0NzU3IDYuNTMwNzVDOC45NjUxNyA2LjQ0MTQ5IDguODA1NTYgNi4zMTE3NSA4LjY4MDkzIDYuMTUxNDNDOC41NTYzIDUuOTkxMTEgOC40Njk5MyA1LjgwNDQ0IDguNDI4NDMgNS42MDU2NkM4LjM4NjkyIDUuNDA2ODggOC4zOTEzNiA1LjIwMTI0IDguNDQxNDEgNS4wMDQ0NEw5LjA0MzQyIDIuNjM5MTFDOS4wNjIyNiAyLjU2NTMyIDkuMDU1MjcgMi40ODczMiA5LjAyMzYxIDIuNDE4MDZDOC45OTE5NSAyLjM0ODggOC45Mzc1NCAyLjI5MjQ3IDguODY5NDIgMi4yNTg0NEw4LjQyODc1IDIuMDM4NDRMNS4yODg3NSA2LjQ4NjQ0QzUuMTIyMDggNi43MjI0NCA0LjkwODc1IDYuOTE1NzcgNC42NjY3NSA3LjA1ODQ0Wk0zLjMzMzQxIDcuMzMzMTFIMi4wMDAwOFYxMi42NjY0SDMuMzMzNDFWNy4zMzMxMVoiIGZpbGw9IiMyMkFBMzMiLz4KPC9zdmc+Cg==");
}
.component-reviews .items .item .vote .down.active:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYuMjY2NzUgMTAuNjY2N0gyLjAwMDA4QzEuNjQ2NDYgMTAuNjY2NyAxLjMwNzMyIDEwLjUyNjIgMS4wNTcyNyAxMC4yNzYxQzAuODA3MjI1IDEwLjAyNjEgMC42NjY3NDkgOS42ODY5NiAwLjY2Njc0OSA5LjMzMzMzVjcuOTMwNjdDMC42NjY1NjkgNy43NTY0MyAwLjcwMDU0MyA3LjU4Mzg0IDAuNzY2NzQ5IDcuNDIyNjdMMi44MzA3NSAyLjQxMzMzQzIuODgwOTQgMi4yOTExNyAyLjk2NjI4IDIuMTg2NjYgMy4wNzU5NSAyLjExMzA3QzMuMTg1NjIgMi4wMzk0OSAzLjMxNDY4IDIuMDAwMTMgMy40NDY3NSAySDE0LjY2NjdDMTQuODQzNiAyIDE1LjAxMzEgMi4wNzAyNCAxNS4xMzgyIDIuMTk1MjZDMTUuMjYzMiAyLjMyMDI5IDE1LjMzMzQgMi40ODk4NiAxNS4zMzM0IDIuNjY2NjdWOS4zMzMzM0MxNS4zMzM0IDkuNTEwMTQgMTUuMjYzMiA5LjY3OTcxIDE1LjEzODIgOS44MDQ3NEMxNS4wMTMxIDkuOTI5NzYgMTQuODQzNiAxMCAxNC42NjY3IDEwSDEyLjM0NTRDMTIuMjM4NyA5Ljk5OTk3IDEyLjEzMzUgMTAuMDI1NiAxMi4wMzg3IDEwLjA3NDZDMTEuOTQzOSAxMC4xMjM3IDExLjg2MjMgMTAuMTk0OCAxMS44MDA3IDEwLjI4Mkw4LjE2NTQyIDE1LjQzMjdDOC4xMTk0NiAxNS40OTc4IDguMDUxNjkgMTUuNTQ0MyA3Ljk3NDM5IDE1LjU2MzdDNy44OTcwOSAxNS41ODMyIDcuODE1MzggMTUuNTc0MyA3Ljc0NDA4IDE1LjUzODdMNi41MzQ3NSAxNC45MzMzQzYuMTk0NDEgMTQuNzYzMiA1LjkyMjUzIDE0LjQ4MTggNS43NjQyNiAxNC4xMzU4QzUuNjA2IDEzLjc4OTggNS41NzA4OCAxMy40MDAxIDUuNjY0NzUgMTMuMDMxM0w2LjI2Njc1IDEwLjY2NjdaTTExLjMzMzQgOC45NDEzM1YzLjMzMzMzSDMuODkzNDJMMi4wMDAwOCA3LjkzMDY3VjkuMzMzMzNINi4yNjY3NUM2LjQ2OTgyIDkuMzMzMzYgNi42NzAxOSA5LjM3OTc3IDYuODUyNiA5LjQ2OTAzQzcuMDM1IDkuNTU4MjggNy4xOTQ2IDkuNjg4MDIgNy4zMTkyMyA5Ljg0ODM0QzcuNDQzODYgMTAuMDA4NyA3LjUzMDIzIDEwLjE5NTMgNy41NzE3NCAxMC4zOTQxQzcuNjEzMjUgMTAuNTkyOSA3LjYwODgxIDEwLjc5ODUgNy41NTg3NSAxMC45OTUzTDYuOTU2NzUgMTMuMzYwN0M2LjkzNzkxIDEzLjQzNDQgNi45NDQ5IDEzLjUxMjUgNi45NzY1NSAxMy41ODE3QzcuMDA4MjEgMTMuNjUxIDcuMDYyNjMgMTMuNzA3MyA3LjEzMDc1IDEzLjc0MTNMNy41NzE0MiAxMy45NjEzTDEwLjcxMTQgOS41MTMzM0MxMC44NzgxIDkuMjc3MzMgMTEuMDkxNCA5LjA4NCAxMS4zMzM0IDguOTQxMzNaTTEyLjY2NjcgOC42NjY2N0gxNC4wMDAxVjMuMzMzMzNIMTIuNjY2N1Y4LjY2NjY3WiIgZmlsbD0iI0ZGNDQyMiIvPgo8L3N2Zz4K");
}
.component-reviews .items .item .name {
  margin-bottom: 8px;
  font-weight: 500;
}
.component-reviews .items .item .short-info {
  margin-bottom: 16px;
  color: #424242;
}
.component-reviews .items .item .short-info .row {
  display: flex;
}
.component-reviews .items .item .short-info .row > div {
  font-size: 0.85em;
  margin-right: 16px;
}
.component-reviews .items .item .text {
  margin-bottom: 16px;
}
.component-reviews .items .item .text .title {
  margin-bottom: 8px;
  color: #424242;
  font-weight: 500;
}
.component-reviews .items .item .admin-tools {
  border-top: 1px solid #e7e7e7;
  margin-top: 16px;
  padding-top: 8px;
  display: flex;
  font-size: 0.85em;
}
.component-reviews .items .item .admin-tools a {
  margin-right: 8px;
  color: #828282;
}
.component-reviews .items .item .need-moderate {
  position: absolute;
  z-index: 1;
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.component-reviews .empty-reviews {
  display: flex;
}
.component-reviews .empty-reviews:before {
  content: "";
  width: 160px;
  height: 160px;
  background-image: url('/local/templates/magnet_s1/img/empty-review.svg');
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 40px;
  flex-shrink: 0;
}
.component-reviews .empty-reviews .title {
  margin: 0 0 8px 0;
}
.component-reviews .empty-reviews .text {
  margin-bottom: 24px;
  color: #424242;
}
.component-reviews-form {
  display: none;
}
.component-reviews-form .st {
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNiAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuOTk5NTggMTIuMDIzMkwzLjA1NTE1IDE1TDQuMzk5MzUgOS40NDQ0NEwwIDUuNzI5NjhMNS43NzQ2NyA1LjI3MzYzTDcuOTk5NTggMEwxMC4yMjQ1IDUuMjczNjNMMTYgNS43Mjk2OEwxMS41OTk4IDkuNDQ0NDRMMTIuOTQ0IDE1TDcuOTk5NTggMTIuMDIzMlpNNy45OTk1OCAxMC4wNzk2TDEwLjM2OTIgMTEuNTA1OEw5LjcyNDgzIDguODQ0MTFMMTEuODMzNyA3LjA2Mzg1TDkuMDY2MTkgNi44NDQ5NEw3Ljk5OTU4IDQuMzE4NDFMNi45MzI5NyA2Ljg0NDk0TDQuMTY1NSA3LjA2Mzg1TDYuMjc0MzMgOC44NDQxMUw1LjYyOTk5IDExLjUwNThMNy45OTk1OCAxMC4wODA0VjEwLjA3OTZaIiBmaWxsPSIjRERCQjAwIi8+Cjwvc3ZnPgo=");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
}
.component-reviews-form .st.f {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNiAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuOTk5NTggMTIuMDIzMkwzLjA1NTE1IDE1TDQuMzk5MzUgOS40NDQ0NEwwIDUuNzI5NjhMNS43NzQ2NyA1LjI3MzYzTDcuOTk5NTggMEwxMC4yMjQ1IDUuMjczNjNMMTYgNS43Mjk2OEwxMS41OTk4IDkuNDQ0NDRMMTIuOTQ0IDE1TDcuOTk5NTggMTIuMDIzMloiIGZpbGw9IiNEREJCMDAiLz4KPC9zdmc+Cg==");
}
.component-reviews-form .st.h {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNiAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuOTk5NTggMTAuMDc5NkwxMC4zNjkyIDExLjUwNThMOS43MjQ4MyA4Ljg0NDExTDExLjgzMzcgNy4wNjM4NUw5LjA2NjE5IDYuODQ0OTRMNy45OTk1OCA0LjMxODQxVjEwLjA3OTZaTTcuOTk5NTggMTIuMDIzMkwzLjA1NTE1IDE1TDQuMzk5MzUgOS40NDQ0NEwwIDUuNzI5NjhMNS43NzQ2NyA1LjI3MzYzTDcuOTk5NTggMEwxMC4yMjQ1IDUuMjczNjNMMTYgNS43Mjk2OEwxMS41OTk4IDkuNDQ0NDRMMTIuOTQ0IDE1TDcuOTk5NTggMTIuMDIzMloiIGZpbGw9IiNEREJCMDAiLz4KPC9zdmc+Cg==");
}
.component-reviews-form .errors-message {
  margin-top: 30px;
  padding: 19px 20px 20px;
  font-size: 0.875em;
  color: #eb5757;
  line-height: 1.2em;
  background-color: #feeeee;
  border: 1px solid #f5a3a3;
  border-radius: 3px;
  box-sizing: border-box;
  margin-bottom: 24px;
}
.component-reviews-form .errors-message p {
  margin: 0;
}
.component-reviews-form .success-message {
  position: relative;
}
.component-reviews-form .success-message .title {
  font-size: 1.375em;
  font-weight: 700;
}
.component-reviews-form .success-message .text {
  margin-top: 20px;
}
.component-reviews-form form > .title {
  margin: 0;
  margin-bottom: 16px;
}
.component-reviews-form form > blockquote {
  margin-bottom: 32px;
  font-size: 0.875em;
  line-height: 1.5em;
  padding-bottom: 18px;
  margin-bottom: 24px;
}
.component-reviews-form .stars {
  display: flex;
  margin-top: 8px;
}
.component-reviews-form .stars .st {
  background-position: left center;
  width: 24px;
  height: 20px;
}
.component-reviews-form .form-group.custom {
  margin-bottom: 24px;
}
.component-reviews-form .form-group.custom > label {
  font-weight: 500;
  color: #424242;
}
.component-reviews-form .radio-line {
  display: flex;
  margin-top: 16px;
}
.component-reviews-form .radio-line > div {
  margin: 0 24px 0 0;
}
.component-reviews-form .radio-line > div label input[type="radio"] {
  display: none;
}
.component-reviews-form .radio-line > div label input[type="radio"]:checked + span::before {
  background-image: url(/local/templates/magnet_s1/img/icons/check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
  background-color: var(--main-color);
  border-color: var(--main-color);
}
.component-reviews-form .radio-line > div label span {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 1em;
}
.component-reviews-form .radio-line > div label span::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  background-color: #f5f5f5;
  border-radius: 50%;
  border: 1px solid #e7e7e7;
  box-sizing: border-box;
}
.component-reviews-form .form-group {
  margin-bottom: 16px;
}
.component-reviews-form .form-group .control-label {
  margin: 0 0 2px 1px;
  font-size: 0.875em;
}
.component-reviews-form .form-group .control-label .danger-color {
  color: #eb5757;
}
.component-reviews-form .form-group input[type=text] {
  width: 100%;
}
.component-reviews-form .form-group textarea {
  width: 100%;
}
.component-reviews-form .form-actions {
  margin-top: 32px;
}
.component-reviews-form .form-actions .btn {
  margin-right: 16px;
}
.component-reviews.open {
  display: block;
}
.component-reviews-form.open {
  display: block;
}
.ym-block {
  background: #f5c400;
  margin: 30px 0;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ym-block img {
  max-width: 100%;
}
.ym-block .common {
  margin-right: 100px;
}
.ym-block .common .btn {
  color: #f5c400;
  background: #fff;
  border: 0;
}
.ym-block .common .btn:hover {
  opacity: 0.8;
}
.ym-block .rating {
  display: flex;
  align-items: baseline;
  line-height: 1;
  margin: 20px 0 0;
}
.ym-block .rating .text {
  color: #303030;
  font-size: 36px;
  font-weight: 500;
  text-transform: uppercase;
}
.ym-block .rating .percent {
  margin-left: 10px;
  color: #f00;
  font-size: 80px;
  font-weight: 700;
}
.ym-block .reviews-count {
  font-size: 29px;
  margin: 10px 0 30px;
}
.ym-block .ym-info {
  max-width: 400px;
  margin-top: 15px;
}
.ym-block .ym-info--title {
  margin-bottom: 20px;
}
.ym-block .ym-info--item {
  padding-bottom: 15px;
  line-height: 16px;
  font-size: 14px;
}
.ym-block .ym-info--item-text {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.ym-block .ym-info--item-text > div {
  padding-right: 20px;
}
.ym-block .ym-info--item-progress {
  height: 4px;
  opacity: 0.8;
  background-color: #e8e8e8;
  border-radius: 2px;
  overflow: hidden;
}
.ym-block .ym-info--item-progress span {
  display: block;
  height: 100%;
  background: #149218;
}
.section.section-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.popup-registration {
  background: #FFFFFF;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
  border-radius: 11px;
  padding: 30px 20px 15px;
  z-index: 70;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -75px 0 0 -237px;
}
.registration-wrap {
  font-size: 0.875em;
}
.registration-wrap p {
  font-family: Roboto;
  font-size: 14px;
  line-height: 16px;
  color: #828282;
  margin: 0;
}
.registration-wrap span {
  color: #282828;
  font-weight: 600;
}
.registration-wrap__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0 10px 0;
}
.registration-wrap__btns a {
  display: inline-block;
  color: #282828;
  padding: 12px 39px;
  border: 1px solid var(--main-color);
  border-radius: 50px;
  transition: 0.2s e;
}
.registration-wrap__yes {
  margin-right: 16px;
}
.price-beznal {
  padding-top: 2vh;
  color: var(--main-color);
}
.price-beznal.show0 {
  display: none;
}
div.price-note {
  line-height: normal;
}
.contact-menu {
  position: fixed;
  z-index: 100;
  display: inline-block;
  bottom: 15px;
  right: 30px;
}
.contact-menu--trigger {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s linear;
  border-radius: 60px;
  width: 60px;
  height: 60px;
  background: var(--main-color) no-repeat url("data:image/svg+xml,%3Csvg%20width%3D%2230%22%20height%3D%2231%22%20viewBox%3D%220%200%2030%2031%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M2.967%2022.226l-.025.008s7.698%2013.9%2026.975%205.546c0%200-1.495-1.752-4.384-3.52a14.067%2014.067%200%200%200%202.588-14.047c-2.655-7.297-10.7-11.07-17.964-8.425C2.89%204.433-.847%2012.492%201.81%2019.79c.313.863.703%201.677%201.157%202.436z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E%0A") 50% 50% / 30px;
  animation: pulse-green 5s infinite;
}
.contact-menu--trigger:hover {
  animation: none;
  transform: scale(1);
}
.contact-menu .contact-menu--list {
  position: absolute;
  bottom: 80px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  flex-direction: column;
  width: 280px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 17px 1px, rgba(0, 0, 0, 0.16) 0 0 4px;
  border-radius: 25px;
  overflow: hidden;
  transition: 0.15s ease-in-out;
}
.contact-menu .contact-menu--list::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 20px;
}
.contact-menu .contact-menu--list > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  width: auto;
  height: auto;
  background: none;
  justify-content: flex-start;
  border-radius: 0;
  margin: 0;
}
.contact-menu .contact-menu--list > a:before {
  line-height: 1;
}
.contact-menu .contact-menu--list > a:not(:last-child) {
  border-bottom: 1px solid #e7e7e7;
}
.contact-menu .contact-menu--list > a:hover {
  background: var(--main-color);
  color: #fff;
}
.contact-menu:hover .contact-menu--list {
  opacity: 1;
  visibility: visible;
}
@media screen and (-ms-high-contrast: active) {
  body {
    display: block;
  }
  main {
    display: block;
  }
  input::-ms-clear {
    display: none;
  }
  input::-ms-reveal {
    display: none;
  }
  header .logo img {
    width: 100%;
  }
  header .basket-container {
    margin-left: auto;
  }
  .product-card-pricelist .img {
    position: relative;
    display: block;
  }
  .product-card-pricelist .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
  }
  .product-card .img {
    position: relative;
    display: block;
  }
  .product-card .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
  }
  .product-card .img.fast-view .link-fast-view {
    top: 50%;
    left: 50%;
    margin: -21px 0 0 -78px;
  }
  .product-card-list .img {
    position: relative;
    display: block;
  }
  .product-card-list .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
  }
  .previously .items .item .img {
    position: relative;
  }
  .previously .items .item .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
  }
  .product-fast-view .product-img .main-img {
    position: relative;
  }
  .product-fast-view .product-img .main-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
  }
  .product-fast-view .product-img .thumbnails .preview img {
    min-width: 1px;
    min-height: 1px;
  }
  body.aside-right .content-wrapper .right-column .brand-img .img {
    position: relative;
  }
  body.aside-right .content-wrapper .right-column .brand-img .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
  }
  body.aside-right .content-wrapper .content-column {
    width: 100%;
  }
  .offers .item .img img {
    min-width: 1px;
    min-height: 1px;
  }
  .offers .offer-wrap {
    width: calc((100% - 145px) / 6);
  }
  .brands .items .item img {
    min-width: 1px;
    min-height: 1px;
  }
  .promo-main-banner-img img {
    min-width: 1px;
    min-height: 1px;
  }
  section.news .previews .item .img img {
    min-width: 1px;
    min-height: 1px;
  }
  .news:not(section) .news-previews {
    width: 100%;
  }
  .catalog .products-container .products {
    width: 100%;
  }
  .catalog .subcategories .item {
    width: calc((100% - 145px) / 6);
  }
  .catalog:not(.top).products-container.has-filter .products .products-list.card .product-wrap {
    width: calc((100% - 121px) / 5);
  }
  .product-wrap {
    width: calc((100% - 145px) / 6);
  }
  .gallery .content .gallery-category .items .item {
    width: calc((100% - 81px) / 4);
  }
  .promo-page .promo-text .video-section .item {
    width: calc((100% - 42px) / 2);
  }
  .catalog-menu.open:not(.open-on-hover) nav .sub .items,
  .catalog-menu.open-on-hover .content:hover nav .sub .items {
    max-height: 450px;
  }
  .catalog-menu nav .sub {
    height: 1px;
  }
}
@media (-ms-high-contrast: none) {
  body {
    display: block;
  }
  main {
    display: block;
  }
  input::-ms-clear {
    display: none;
  }
  input::-ms-reveal {
    display: none;
  }
  header .logo img {
    width: 100%;
  }
  header .basket-container {
    margin-left: auto;
  }
  header .middle .tel-container {
    width: 15%;
  }
  .product-card-pricelist .img {
    position: relative;
    display: block;
  }
  .product-card-pricelist .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
  }
  .product-card .img {
    position: relative;
    display: block;
  }
  .product-card .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
  }
  .product-card .img.fast-view .link-fast-view {
    top: 50%;
    left: 50%;
    margin: -21px 0 0 -78px;
  }
  .product-card-list .img {
    position: relative;
    display: block;
  }
  .product-card-list .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
  }
  .previously .items .item .img {
    position: relative;
  }
  .previously .items .item .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
  }
  .product-fast-view .product-img .main-img {
    position: relative;
  }
  .product-fast-view .product-img .main-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
  }
  .product-fast-view .product-img .thumbnails .preview img {
    min-width: 1px;
    min-height: 1px;
  }
  body.aside-right .content-wrapper .right-column .brand-img .img {
    position: relative;
  }
  body.aside-right .content-wrapper .right-column .brand-img .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
  }
  body.aside-right .content-wrapper .content-column {
    width: 100%;
  }
  .offers .item .img img {
    min-width: 1px;
    min-height: 1px;
  }
  .offers .offer-wrap {
    width: calc((100% - 145px) / 6);
  }
  .brands .items .item img {
    min-width: 1px;
    min-height: 1px;
  }
  .promo-main-banner-img img {
    min-width: 1px;
    min-height: 1px;
  }
  section.news .previews .item .img img {
    min-width: 1px;
    min-height: 1px;
  }
  .news:not(section) .news-previews {
    width: 100%;
  }
  .catalog .products-container .products {
    width: 100%;
  }
  .catalog .subcategories .item {
    width: calc((100% - 145px) / 6);
  }
  .catalog:not(.top).products-container.has-filter .products .products-list.card .product-wrap {
    width: calc((100% - 121px) / 5);
  }
  .product-wrap {
    width: calc((100% - 145px) / 6);
  }
  .gallery .content .gallery-category .items .item {
    width: calc((100% - 81px) / 4);
  }
  .promo-page .promo-text .video-section .item {
    width: calc((100% - 42px) / 2);
  }
  .catalog-menu.open:not(.open-on-hover) nav .sub .items {
    max-height: 450px;
  }
  .catalog-menu.open-on-hover .content:hover nav .sub .items {
    max-height: 450px;
  }
  .catalog-menu nav .sub {
    height: 1px;
  }
}
@media (pointer: coarse) {
  .catalog .category .text .sub .item:hover {
    color: #424242;
  }
  .catalog .category .text .name:hover {
    color: #282828;
  }
  .catalog .subcategories .item .name:hover {
    color: #282828;
  }
  .catalog .subcategories .item:hover .img {
    transform: none;
  }
  .catalog .short-category:hover {
    box-shadow: none;
  }
  .catalog .short-category:hover .img {
    opacity: 1;
    transform: none;
  }
  .catalog .short-category:hover .desc {
    max-height: 0;
  }
  .catalog .short-category .text {
    margin-top: 0;
  }
  .catalog .short-category.loaded .img {
    position: static;
  }
  .product-card {
    position: relative;
  }
  .product-card .name {
    padding-right: 60px;
    box-sizing: border-box;
  }
  .product-card .name:hover {
    color: #424242;
  }
  .product-card .price-container {
    padding-right: 60px;
    box-sizing: border-box;
  }
  .product-card:hover {
    position: relative;
    height: 100%;
    box-shadow: none;
  }
  .product-card:hover .hover-content {
    margin: 0;
  }
  .product-card .hover-content {
    display: block;
    margin: 0;
  }
  .product-card .hover-content > div:not(.product-item-button-container) {
    display: none;
  }
  .product-card .hover-content .product-item-button-container {
    position: absolute;
    right: 22px;
    bottom: 22px;
  }
  .product-card .hover-content .product-item-button-container .btn {
    display: none;
  }
  .product-card .hover-content .product-item-button-container .btn.loaded::before {
    background-image: none;
  }
  .product-card .hover-content .product-item-button-container .btn.order-btn {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    background-image: url(/local/templates/magnet_s1/img/icons/mobile-cart-button.svg);
    background-repeat: no-repeat;
    background-position: 9px center;
    background-size: 32px;
  }
  .product-card .hover-content .product-item-button-container .btn.order-btn span {
    display: none;
  }
  .product-card .hover-content .product-item-button-container .btn.order-btn::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 21px;
    display: block;
    width: 10px;
    height: 2px;
    margin: 0;
    background-image: none;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.2s;
    animation: none;
    box-shadow: none;
  }
  .product-card .hover-content .product-item-button-container .btn.order-btn::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 21px;
    display: block;
    width: 10px;
    height: 2px;
    margin: 0;
    background-image: none;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.2s;
    animation: none;
    box-shadow: none;
    transform: rotate(90deg);
  }
  .product-card .hover-content .product-item-button-container .btn.order-btn.in-basket::before {
    top: 20px;
    width: 5px;
    transform: rotate(-135deg) translate(5%, -10%);
  }
  .product-card .hover-content .product-item-button-container .btn.order-btn.in-basket::after {
    top: 20px;
    width: 11px;
    transform: rotate(-45deg) translate(20%, 10%);
  }
  .product-card .hover-content .product-item-button-container .btn.detail {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
  }
  .product-card .hover-content .product-item-button-container .btn.detail::before {
    content: '\0048';
    display: inline-block;
    padding-left: 3px;
    font-family: 'Icon Custom';
    font-size: 20px;
    color: #fff;
    font-style: normal;
    font-weight: normal;
    line-height: 50px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .product-card .hover-content .product-item-button-container .btn.detail span {
    display: none;
  }
  .previously .items .item .content .name:hover {
    color: #424242;
  }
  .previously .items .item:hover {
    box-shadow: none;
  }
  .other-elements .items .item .title:hover {
    color: #424242;
  }
  .jobs .jobs-list .items .item .name:hover {
    color: #424242;
  }
  .offers .item .name:hover {
    color: #282828;
  }
  .offers .item:hover {
    box-shadow: none;
  }
  .news:not(section) .news-previews .items .item .content .name a:hover {
    color: #282828;
  }
  .additional-menu .items .item .link:hover {
    color: #282828;
  }
  section.catalog .link:hover {
    color: #828282;
  }
  .product-card.has-offers .hover-content .product-item-button-container {
    display: none;
  }
  .product-card.has-offers .hover-content .product-item-button-container.sku-only {
    display: block;
  }
  .additional-links .compare {
    background-color: #fff;
  }
  .additional-links .compare::after {
    content: none;
  }
  .additional-links .compare:hover {
    color: #424242;
  }
  .additional-links .wishlist {
    background-color: #fff;
  }
  .additional-links .wishlist::after {
    content: none;
  }
  .additional-links .wishlist:hover {
    color: #424242;
  }
  .additional-links .compare.active {
    background-color: var(--main-color);
  }
  .additional-links .compare.active:hover {
    color: #fff;
    background-color: var(--main-color);
  }
  .additional-links .wishlist.active {
    background-color: var(--main-color);
  }
  .additional-links .wishlist.active:hover {
    color: #fff;
    background-color: var(--main-color);
  }
  .additional-links.inline .compare {
    padding-left: 0;
  }
  .additional-links.inline .compare::before {
    width: 32px;
    height: 32px;
    margin: -2px 8px 0 0;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
  }
  .additional-links.inline .compare:hover {
    color: #424242;
  }
  .additional-links.inline .wishlist {
    padding-left: 0;
  }
  .additional-links.inline .wishlist::before {
    width: 32px;
    height: 32px;
    margin: -2px 8px 0 0;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
  }
  .additional-links.inline .wishlist:hover {
    color: #424242;
  }
  .additional-links.inline .compare.active {
    background-color: transparent;
  }
  .additional-links.inline .compare.active::before {
    background-color: var(--main-color);
  }
  .additional-links.inline .compare.active:hover {
    color: #424242;
    background-color: transparent;
  }
  .additional-links.inline .wishlist.active {
    background-color: transparent;
  }
  .additional-links.inline .wishlist.active::before {
    background-color: var(--main-color);
  }
  .additional-links.inline .wishlist.active:hover {
    color: #424242;
    background-color: transparent;
  }
  .btn:hover {
    opacity: 1;
  }
  .filter .bx_filter_button_box input[type="submit"].bx_filter_search_button:hover {
    opacity: 1;
  }
  .filter .bx_filter_button_box input[type="submit"].bx_filter_search_reset:hover {
    color: #828282;
    border-color: #e7e7e7;
  }
  .btn.white:hover {
    color: var(--main-color);
    background-color: #fff;
  }
  .btn.transparent:hover {
    color: #828282;
    border-color: #e7e7e7;
  }
  .counter .minus:hover {
    color: #424242;
  }
  .counter .minus:active {
    color: var(--main-color);
  }
  .counter .plus:hover {
    color: #424242;
  }
  .counter .plus:active {
    color: var(--main-color);
  }
  section .owl-nav .prev:hover {
    color: #424242;
    background-color: #fff;
  }
  section .owl-nav .prev:active {
    color: #fff;
    background-color: var(--main-color);
  }
  section .owl-nav .next:hover {
    color: #424242;
    background-color: #fff;
  }
  section .owl-nav .next:active {
    color: #fff;
    background-color: var(--main-color);
  }
  .gallery .items .item:hover {
    border-radius: 0;
    border-color: #e7e7e7;
    box-shadow: none;
  }
  .gallery .items .item .img:hover::before {
    display: none;
  }
  footer .social .links .item:hover {
    background-color: #fff;
  }
  .price-container .product-item-detail-info-container {
    width: 100%;
  }
  .price-container .product-item-detail-info-container::before {
    content: none;
  }
  .price-container .product-item-detail-info-container .product-item-detail-properties {
    position: static;
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 15px 10px;
    background-color: #f5f5f5;
    border: 1px solid #e7e7e7;
    box-shadow: none;
  }
}
@media (max-width: 1771px) {
  .product-wrap {
    max-width: inherit;
  }
  .product-card-list {
    padding: 2.827%;
  }
  .product-card-list .content .top {
    padding-bottom: 2.434%;
  }
  .product-card-list .content .desc {
    margin-top: 1.218%;
  }
  .product-card-list .params {
    margin-left: 2.997%;
  }
  .product-card-pricelist .additional-links {
    display: flex;
    margin-left: 1.671%;
  }
  .product-card-pricelist .img {
    margin-right: 1.453%;
  }
  .product-card-pricelist .buttons {
    width: auto;
  }
  .offers .offer-wrap {
    width: calc((100% - 120px) / 5);
  }
  .offers .offer-wrap.big {
    width: calc(((100% - 120px) / 5) * 2 + 24px);
  }
  .other-elements {
    padding: 2.407% 2.348% 2.348%;
  }
  .other-elements .items .item:not(:last-child) {
    margin-bottom: 6.1%;
    padding-bottom: 5.795%;
  }
  .ask-question {
    padding: 9.26%;
  }
  .gallery .items .item {
    width: calc((100% - 60px) / 3);
  }
  body.aside-right .content-wrapper .content-column {
    width: 50%;
  }
  .brand-products-list .product-wrap {
    width: calc((100% - 96px) / 4);
  }
}
@media (max-width: 1680px) {
  .product-wrap {
    width: calc((100% - 120px) / 5);
  }
  .catalog .subcategories .item {
    width: calc((100% - 120px) / 5);
  }
  .catalog .products-container.has-filter:not(.top) .products .products-list.card .product-wrap {
    width: calc((100% - 96px) / 4);
  }
  .product-card-pricelist .content {
    max-width: 40%;
  }
}
@media (max-width: 1550px) {
  body.aside-right .content-wrapper .right-column {
    width: 32%;
    flex-shrink: 0;
  }
  body.aside-right .content-wrapper .right-column .through-banners .banner-item {
    height: 295px;
  }
  body.aside-right .content-wrapper .right-column .ask-question {
    width: auto;
  }
  body.aside-right .content-wrapper .right-column .other-elements {
    width: auto;
    padding: 7.5% 7.33% 7.33%;
  }
  body.aside-right .content-wrapper .right-column .additional-menu {
    width: auto;
  }
  body.aside-right .content-wrapper .right-column .brand-img {
    width: auto;
    height: 11.9799vw;
  }
  header .basket-container {
    width: auto;
  }
  header .middle .tel-container {
    margin: 0 1%;
  }
  section.news {
    width: 100%;
  }
  section.news .all {
    align-self: center;
    margin-left: 22px;
  }
  section.news .previews .item {
    width: 22.644%;
  }
  section.news .previews.line {
    margin-top: 23px;
  }
  section.news .previews.line .item {
    width: 49.5%;
  }
  section.news .previews.line .item:first-child {
    margin-right: 1%;
  }
  section.news .previews.line .item:only-child {
    width: 100%;
  }
  footer .top .footer-menu {
    width: 47.3%;
  }
  footer .top .contacts-container {
    margin-left: 4.5%;
  }
  .product-card-pricelist .img {
    align-self: flex-start;
    margin-top: 3px;
  }
  .product-card-pricelist .content .info {
    flex-wrap: wrap;
    margin-bottom: 6px;
  }
  .product-card-pricelist .content .info .iblock-vote {
    width: 100%;
    margin: 0;
  }
  .product-card-pricelist .content .info .stock {
    order: 1;
    margin-right: 0;
  }
  .product-card-pricelist .content .info .code {
    margin-right: 20px;
  }
  .product-card-pricelist .content .name {
    margin-bottom: 10px;
  }
  .catalog .categories .category-wrap {
    width: calc((100% - 48px) / 2);
  }
  .catalog .short-category {
    width: calc((100% / 3) - 24px);
  }
  .catalog .subcategories .item {
    width: calc((100% - 96px) / 4);
  }
  .catalog .category .text .sub .item {
    display: inline-block;
    line-height: 1.5em;
    white-space: inherit;
  }
  .offers .offer-wrap {
    width: calc((100% - 96px) / 4);
  }
  .offers .offer-wrap.big {
    width: calc(((100% - 96px) / 4) * 2 + 24px);
  }
  .other-elements {
    width: 30%;
  }
  .news:not(section) .news-previews .items .item .img {
    width: 13vw;
    height: 9vw;
    max-width: 224px;
    max-height: 150px;
    margin-top: 1px;
  }
  .news:not(section) .news-detail .desc {
    font-size: 1.15em;
    line-height: 1.3em;
  }
  .about .about-content {
    padding: 20px 40px;
  }
  .gallery .items .item {
    width: calc((100% - 40px) / 2);
  }
  .products-carousel .owl-container {
    margin-top: 30px;
  }
  .brand-products-list .product-wrap {
    width: calc((100% - 72px) / 3);
  }
  .fixed-product-header .additional-links {
    margin-right: 2.5%;
  }
}
@media screen and (max-width: 1550px) and (-ms-high-contrast: active) {
  header .middle .tel-container {
    width: 15%;
  }
  header .basket-container {
    margin-left: auto;
  }
}
@media (max-width: 1439px) {
  header .middle .tel-container {
    margin: 0 auto;
  }
  header .tools {
    order: 5;
    margin-left: 0;
  }
  .search-toggle {
    flex-grow: inherit;
    gap: 4px;
    width: 20px;
    padding: 0 10px;
    font-size: 0.75em;
    border: 0;
    text-align: center;
    flex-direction: column;
    order: 4;
    color: #424242;
  }
  .search-toggle .icon-custom {
    order: -1;
  }
  .search-toggle .icon-custom:before {
    font-size: 22px;
  }
  .catalog .products-container.has-filter:not(.top) .products .products-list.card .product-wrap {
    width: calc((100% - 72px) / 3);
  }
  .product-card-pricelist .content div[id*="sku_tree"] .product-item-info-container {
    margin-right: 15px;
  }
  .fixed-product-header .product-container .info {
    margin-top: 0;
  }
  .fixed-product-header .product-container .price-container {
    flex-direction: column;
    align-items: flex-end;
  }
  .fixed-product-header .product-container .price-container .old-price {
    margin-right: 0;
    font-size: 0.75em;
    word-spacing: normal;
    line-height: 1.25em;
  }
  .promo-page .promo-main-banner-info {
    width: 60%;
  }
  .promo-page .promo-main-banner-img {
    width: 40%;
  }
  .promo-page .promo-text {
    flex-direction: column;
    padding-bottom: 30px;
  }
  .promo-page .promo-text .content {
    padding: 0;
  }
  .promo-page .promo-text .video-section .item {
    height: 21.4vw;
  }
  .promo-page .promo-text .promo-docs {
    width: 100%;
    margin-top: 45px;
    padding: 0;
    border: none;
  }
  .promo-page .promo-text .promo-docs .documents .items {
    flex-direction: row;
    margin: 30px 0 0;
  }
  .promo-page .promo-text .promo-docs .documents .items .item {
    width: calc(50% - 24px);
    margin: 0 12px 24px;
  }
  .promo-page .promo-steps .items .item {
    width: calc(33% - 85px);
  }
}
@media (max-width: 1330px) {
  .catalog .short-category {
    width: calc((100% / 2) - 24px);
  }
  .catalog .short-category .text {
    padding-top: 26px;
    text-align: center;
  }
  .product-wrap {
    width: calc((100% - 96px) / 4);
  }
  .fixed-product-header .product-container {
    margin-left: 2.7%;
  }
  .fixed-product-header .btn-container {
    margin: 0 15px 0 25px;
  }
}
@media (max-width: 1270px) {
  .hide-mobile {
    display: none !important;
  }
  .container {
    width: calc(100% - 30px);
  }
  blockquote {
    font-size: 1.1em;
  }
  header .middle .container {
    gap: 0 15px;
  }
  header .middle .slogan {
    display: none;
  }
  header .middle .search {
    max-width: 100%;
    margin-top: 12px;
    order: 1;
  }
  header .middle .search form input {
    width: 92.5%;
  }
  header .middle .search form button:hover span {
    width: 0;
    padding-left: 0;
  }
  header .city .current > span {
    display: none;
  }
  header .links {
    display: flex;
    align-items: center;
  }
  header .links .personal-link {
    display: flex;
    align-items: center;
  }
  header .links .personal-link span {
    max-width: 70px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .product-card .img {
    height: 220px;
  }
  section.catalog {
    margin-top: 32px;
  }
  .catalog .sort {
    padding: 13px 20px 13px 13px;
  }
  .catalog .sort .filter-btn {
    padding-top: 10px;
  }
  .catalog .sort .filter-btn:before {
    top: 11px;
  }
  .catalog .sort .filter-btn.desktop-hide {
    display: block;
  }
  .catalog .sort .filter-btn.mobile-hidden {
    display: none;
  }
  .catalog .subcategories {
    margin-top: 15px;
  }
  .catalog .subcategories .item {
    width: calc((100% - 72px) / 3);
  }
  .catalog .category .img {
    margin-right: 20px;
  }
  .catalog .category .text .sub {
    margin-top: 5px;
  }
  .catalog .category .text .sub .item {
    display: inline-block;
    line-height: 1.8em;
    white-space: normal;
  }
  .catalog .category:hover {
    position: relative;
    height: 100%;
    box-shadow: none;
  }
  .catalog .category:hover .desc {
    display: none;
  }
  .catalog .products-container.has-filter:not(.top) {
    position: relative;
    flex-direction: column;
  }
  .catalog .products-container.has-filter:not(.top) .filter {
    width: 100%;
    height: 0;
    padding-top: 0;
    overflow: hidden;
  }
  .catalog .products-container.has-filter:not(.top) .filter form {
    display: flex;
    flex-wrap: wrap;
  }
  .catalog .products-container.has-filter:not(.top) .filter .bx_filter_parameters_box {
    width: 100%;
  }
  .catalog .products-container.has-filter:not(.top) .filter .bx_filter_container_modef {
    display: none;
  }
  .catalog .products-container.has-filter:not(.top) .filter.open {
    position: absolute;
    top: -12px;
    left: 0;
    width: 50%;
    height: auto;
    margin: 0 0 24px;
    padding-top: 19px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
    z-index: 50;
  }
  section.news .all {
    margin-left: auto;
  }
  section.news .previews {
    margin: 23px -10px 0;
  }
  section.news .previews .item {
    width: 22.35%;
    margin: 0px 10px 15px;
  }
  footer .top .container {
    flex-wrap: wrap;
    gap: 0 10%;
    padding-bottom: 10px;
  }
  footer .top .footer-menu {
    width: 100%;
    margin-bottom: 13px;
  }
  footer .top .footer-menu .column {
    width: 30.1%;
  }
  footer .top .contacts-container {
    width: 34.3%;
    margin-left: 0;
    padding-right: 10px;
    box-sizing: border-box;
  }
  footer .top .social {
    margin-left: 0;
  }
  footer .top .social .links {
    margin: 10px 0 0;
  }
  footer .bottom .copyright {
    margin-right: 6.5%;
  }
  .other-elements {
    width: 100%;
    margin: 24px 0;
    padding: 40px;
  }
  .other-elements .items {
    margin-top: 30px;
  }
  .other-elements .items .item:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .other-elements .items .item .title {
    display: block;
  }
  .offers .offer-wrap {
    width: calc((100% - 72px) / 3);
  }
  .offers .offer-wrap.big {
    width: calc((100% - 72px) / 3);
  }
  .offers .offer-wrap.big .item .img {
    height: 150px;
  }
  .offers .offer-wrap.big .item .name {
    font-size: 1.125em;
  }
  .offers .offer-wrap.big .item .desc {
    font-size: 0.875em;
  }
  .offers .item:hover .hover {
    display: none;
  }
  body.aside-right .content-wrapper {
    flex-wrap: wrap;
  }
  body.aside-right .content-wrapper .content-column {
    width: 100%;
  }
  body.aside-right .content-wrapper .right-column {
    width: 100%;
    margin: 24px 0 0;
  }
  body.aside-right .content-wrapper .right-column .ask-question {
    margin-left: 0;
  }
  body.aside-right .content-wrapper .right-column .through-banners {
    margin-left: 0;
  }
  body.aside-right .content-wrapper .right-column .through-banners .banner-item {
    background-size: contain;
  }
  body.aside-right .content-wrapper .right-column .other-elements {
    margin-top: 0;
    padding: 40px;
  }
  body.aside-right .content-wrapper .right-column .additional-menu {
    margin-left: auto;
  }
  body.aside-right .content-wrapper .right-column .brand-img {
    margin-left: 0;
  }
  body.aside-right .content-wrapper .right-column .brand-img.mobile-hide {
    display: none;
  }
  .news:not(section) {
    margin-bottom: 0;
  }
  .auth .left-column {
    width: 50%;
  }
  .auth .right-column {
    width: 50%;
  }
  .content-column.content-page {
    margin-bottom: 0;
  }
  .gift-container {
    margin-top: 36px;
  }
  .promo-page .promo-main-banner {
    padding: 45px 40px;
    min-height: 320px;
    box-sizing: border-box;
  }
  .promo-page .promo-main-banner .title {
    line-height: 1.1em;
  }
  .promo-page .promo-main-banner .btn {
    margin-top: 25px;
  }
  .promo-page .promo-main-banner-info {
    width: 66%;
  }
  .promo-page .promo-main-banner-img {
    width: 34%;
    height: auto;
  }
  .promo-page .promo-text {
    padding-top: 35px;
  }
  .promo-page .promo-text .main-text {
    margin-top: 18px;
  }
  .promo-page .promo-text .video-section {
    margin-top: 28px;
  }
  .promo-page .promo-text .video-section .item {
    height: 19.4vw;
  }
  .promo-page .promo-text .promo-docs {
    margin-top: 30px;
  }
  .promo-page .promo-banner {
    padding: 35px;
  }
  .promo-page .promo-banner-info {
    width: 100%;
  }
  .promo-page .promo-gallery {
    padding-top: 35px;
  }
  .promo-page .promo-gallery .items {
    margin-top: 3px;
  }
  .promo-page .promo-reviews {
    padding-top: 35px;
  }
  .promo-page .promo-reviews .items {
    margin-top: 24px;
  }
  .promo-page .promo-reviews .items .item .review-info {
    flex-direction: column;
    align-items: center;
  }
  .promo-page .promo-reviews .items .item .author-img-container {
    margin-right: 0;
  }
  .promo-page .promo-reviews .items .item .author-img-container::after {
    top: inherit;
    bottom: 0;
  }
  .promo-page .promo-reviews .items .item .author-info {
    width: 75%;
    margin-top: 3.59%;
    text-align: center;
  }
  .promo-page .promo-steps {
    padding-top: 35px;
  }
  .promo-page .promo-steps .items .item {
    width: calc(50% - 85px);
  }
  .promo-page .promo-faq {
    padding: 35px 40px 40px;
  }
  .promo-page .promo-faq .columns {
    flex-wrap: wrap;
    margin: 30px 0 0;
  }
  .promo-page .promo-faq .columns .column {
    flex: 1 0 100%;
    margin: 0;
  }
  .promo-page .promo-faq .columns .column .accordeon {
    margin: 0;
  }
  .promo-page .promo-faq .columns .column:not(:last-child) .accordeon:last-child {
    border-bottom: none;
  }
}
@media (max-width: 1150px) {
  .product-wrap {
    width: calc((100% - 72px) / 3);
  }
  .fixed-product-header .product-container .iblock-vote {
    display: none;
  }
  .fixed-product-header .product-container .stock {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .section.section-cities {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  header {
    position: fixed;
    width: 100%;
  }

  .contact-menu {
    bottom: 80px;
  }

  body.sidebar-type1 .fixed-product-header {
    padding-left: 0;
  }
  .header-catalog-menu {
    display: none;
  }
  .header-mobile-menus {
    display: block;
  }
  header .bottom,
  header .top {
    display: none;
  }
  header .middle {
    padding-left: 40px;
  }
  header .middle .tel-container {
    gap: 0;
    margin: 0 auto;
  }
  header .middle .tel-container .tel a {
    position: relative;
    display: block;
    width: 0;
    height: 0;
    padding: 40px 0 0 40px;
    overflow: hidden;
  }
  header .middle .tel-container .tel a::before {
    content: '\0079';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 40px;
    height: 40px;
    padding-right: 1px;
    font-family: 'Icon Custom';
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    line-height: 40px;
    border: 1px solid #e7e7e7;
    border-radius: 50% 50% 50% 50%;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  header .middle .tel-container .tel a:active::before {
    border-color: var(--main-color);
  }
  header .middle .tel-container .tel .schedule {
    display: none;
  }
  header .middle .tel-container .call-me {
    --call-me-color-text: #282828;
  }
  header .middle .tel-container .call-me .callback-popup-btn {
    display: none;
  }
  header .middle .tel-container .call-me .icon {
    height: 38px;
    border-width: 1px;
  }
  header .middle .tel-container .call-me .icon:last-child {
    padding: 0;
  }
  .catalog-menu {
    border: 0;
    height: auto;
    width: 40px;
    max-width: 100vw;
  }
  .catalog-menu .tel-container {
    margin: 15px 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .catalog-menu .tel-container .tel a {
    font-size: 1.5em;
  }
  .catalog-menu .call-me {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 5px;
  }
  .catalog-menu .call-me .callback-popup-btn {
    background: var(--main-color);
    color: #fff;
    border-radius: 25px;
    padding: 10px 25px;
    text-align: center;
  }
  .catalog-menu .call-me .icon {
    display: flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
  }
  .catalog-menu .call-me .icon path {
    fill: var(--main-color);
  }
  .catalog-menu .img {
    display: none !important;
  }
  .catalog-menu .scroll > .list {
    margin-left: 3px;
  }
  .catalog-menu .scroll > .list .item {
    height: 66px;
    margin-bottom: 0;
    padding-left: 0;
  }
  .catalog-menu .scroll > .list .item:before {
    content: none;
  }
  .catalog-menu .scroll > .list .item a {
    display: flex;
    align-items: center;
    width: 125px;
    height: 100%;
    padding-left: 41px;
    overflow: hidden;
    transition: width 0.15s ease;
    box-sizing: border-box;
  }
  .catalog-menu .scroll > .list .item a .text {
    display: inline-block;
    margin-left: 24px;
    min-width: 224px;
    color: #424242;
    font-size: 0.875em;
    font-weight: 700;
    transition: all 0.2s ease;
    overflow: hidden;
  }
  .catalog-menu .scroll > .list .item a:hover .img {
    transform: scale(1.1);
  }
  .catalog-menu .scroll > .list .item a:hover .text {
    color: var(--main-color);
  }
  .catalog-menu .sub {
    display: none;
  }
  .catalog-menu .content {
    position: static;
    width: 100%;
    border-right: none;
  }
  .catalog-menu .content nav {
    position: relative;
    padding: 0;
    z-index: 35;
  }
  .catalog-menu .content nav .head {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    width: 50px;
    margin: 0;
    line-height: 1;
    text-align: center;
    background-color: #fff;
    z-index: 10;
  }
  .catalog-menu .content nav .head .burger-button {
    position: relative;
    top: 5px;
    left: -2px;
    display: inline-block;
    margin-left: 0;
    pointer-events: none;
  }
  .catalog-menu .content nav .head .title {
    display: none;
  }
  .catalog-menu .content nav .scroll {
    display: none;
  }
  .catalog-menu .content nav .list {
    display: block;
    margin-left: 0;
    transition: transform 0.4s ease;
    box-shadow: none !important;
    overflow: visible;
  }
  .catalog-menu .content nav .list .item {
    position: static;
    height: auto;
    padding: 0;
    margin: 0;
  }
  .catalog-menu .content nav .list .item.back {
    display: block;
  }
  .catalog-menu .content nav .list .item img {
    display: none;
  }
  .catalog-menu .content nav .list .item:last-child {
    padding: 0;
  }
  .catalog-menu .content nav .list .item:not(:last-child) a {
    border-bottom: 1px solid #e7e7e7;
  }
  .catalog-menu .content nav .list .item a {
    position: relative;
    display: block;
    width: calc(100% - 30px);
    margin: 0 15px;
    padding: 10px 0;
    line-height: 1em;
  }
  .catalog-menu .content nav .list .item a:hover .text {
    color: #424242;
  }
  .catalog-menu .content nav .list .item a .img {
    display: none;
  }
  .catalog-menu .content nav .list .item a .text {
    margin-left: 0;
    font-weight: 400;
  }
  .catalog-menu .content nav .list .item:hover > a {
    box-shadow: none;
  }
  .catalog-menu .content nav .list .item.open > .sub {
    display: block;
  }
  .catalog-menu .content nav .list .item.has-sub > a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1px;
    margin-top: -4px;
    border: 3px solid transparent;
    border-left: 4px solid #282828;
  }
  .catalog-menu .content nav .list.open-sub {
    transform: translateX(-100%);
  }
  .catalog-menu .content nav .list.open-sub + .content-menu {
    display: none;
  }
  .catalog-menu .content nav .sub {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    background-color: #fff;
    z-index: 10;
  }
  .catalog-menu .content nav .sub .title {
    display: none;
  }
  .catalog-menu .content nav .sub .items {
    width: 93.5%;
    margin: 0 auto;
  }
  .catalog-menu .content nav .sub .items .item {
    margin-bottom: 0;
  }
  .catalog-menu .content nav .sub .items .item:before {
    display: none;
  }
  .catalog-menu .content nav .sub .items .item:not(:nth-child(2n)) {
    margin-right: 0;
  }
  .catalog-menu .content nav .sub .items .item.back a {
    padding-left: 18px;
    font-size: 0.875em;
  }
  .catalog-menu .content nav .sub .items .item.back a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -2px;
    margin-top: -3px;
    border: 3px solid transparent;
    border-right: 4px solid #282828;
  }
  .catalog-menu .content nav .sub .items .item.back a:after {
    content: none;
  }
  .catalog-menu .content nav .sub .items .item.back a:hover {
    color: #424242;
  }
  .catalog-menu .content nav .sub .banner {
    max-height: inherit;
  }
  .catalog-menu .content nav .sub .banner a {
    display: block;
    line-height: 0;
  }
  .catalog-menu .content nav .sub.open {
    position: static;
  }
  .catalog-menu .content nav .sub.open > .items > .item {
    display: none;
  }
  .catalog-menu .content nav .sub.open > .items > .item.open {
    display: block;
  }
  .catalog-menu .content nav .content-menu {
    background: #f5f5f5;
    padding-top: 10px;
  }
  .catalog-menu .content nav .content-menu .list .item a {
    color: #777;
    border: 0;
    padding: 8px 0;
  }
  .catalog-menu.open {
    background: #f5f5f5;
    height: 100vh;
    max-height: 100vh;
    overflow: auto;
    width: auto;
    min-width: 80vw;
    max-width: 90vw;
  }
  .catalog-menu.open .content {
    background: #fff;
    width: 100%;
    box-shadow: none !important;
  }
  .catalog-menu.open .content nav .scroll {
    display: block;
    margin-top: -3.75rem;
  }
  .catalog-menu.open .content nav .sub {
    padding-top: 0;
  }
  .catalog-menu.open .content nav .sub .items {
    margin-top: 0;
    padding: 0;
  }
  .catalog-menu.open .content nav .sub .items .item {
    width: 100%;
  }
  .catalog-menu.open .content nav .sub .items .item:not(:last-child) {
    margin-right: 0;
  }
  .catalog-menu.open .content nav .sub .items .item.back {
    display: block;
  }
  .wrapper {
    padding-left: 0;
  }
  .content-page h2 {
    margin-top: 24px;
  }
  .content-page h3 {
    margin-top: 16px;
  }
  .product-card .img {
    height: 184px;
  }
  .product-card .additional-links {
    right: 12px;
  }
  .product-card .name {
    flex-grow: 0;
  }
  .product-card .price-container {
    margin-top: auto;
    padding-top: 10px;
  }
  .product-card .price-container .saving {
    margin-top: 10px;
  }
  .product-card .stock::before {
    margin-right: 1px;
  }
  .catalog .categories {
    margin: 23px -24px -24px;
  }
  .catalog .category {
    padding: 29px 23px 26px;
  }
  .catalog .category .text .sub .item {
    display: block;
    margin: 0 0 1px;
  }
  .catalog .subcategories .item .img {
    width: 120px;
    height: 120px;
  }
  section.news {
    padding: 28px 30px 26px;
  }
  section.news .previews {
    margin: 22px -15px 0;
  }
  section.news .previews .item {
    width: 28.975%;
    margin: 0 15px;
  }
  section.news .previews .item:nth-child(n+4) {
    display: none;
  }
  .brands .items .owl-nav .owl-prev {
    margin-left: 11px;
  }
  .brands .items .owl-nav .owl-next {
    margin-right: 11px;
  }
  .previously {
    margin-top: 35px;
  }
  .previously .items .item {
    margin: 8px 0;
  }
  .previously .items .owl-nav {
    top: -47px;
  }
  footer {
    padding-left: 0;
  }
  footer .top {
    margin-top: 16px;
  }
  footer .top .footer-menu .column {
    padding: 0 7px 0 0;
  }
  footer .bottom .copyright {
    margin-right: 7.1%;
  }
  .news:not(section) .news-previews .tabs {
    display: none;
  }
  .news:not(section) .news-previews .items .item {
    padding-bottom: 30px;
  }
  .news:not(section) .news-previews .items .item:not(:last-child) {
    margin-bottom: 40px;
  }
  .news:not(section) .news-previews .items .item .img {
    width: 19vw;
    height: 13vw;
  }
  .news:not(section) .news-previews .items .item .content .desc {
    margin-top: 10px;
  }
  .news:not(section) .news-previews .items .item .content .btn {
    margin-top: 17px;
  }
  .news:not(section) .news-detail .detail-img {
    max-width: 100%;
  }
  .news:not(section) .service-detail .service-header-columns .detail-img {
    position: relative;
    top: 3px;
    width: 31%;
  }
  .gift-container .product-card .static {
    height: auto;
  }
  .gift-container .product-card .hover-content {
    display: block;
  }
  .locations-list-popup {
    width: 600px;
  }
  .product-card-pricelist .content {
    min-width: 250px;
  }
  .product-card-pricelist .price-container {
    flex-shrink: 0;
  }
  .product-card-pricelist .buttons {
    width: 113px;
    flex-wrap: wrap;
  }
  .product-card-pricelist .buttons .counter {
    width: 100%;
    margin-bottom: 5px;
  }
  .product-card-pricelist .additional-links {
    display: flex;
  }
  .product-card-list .params {
    width: 175px;
    margin-left: 20px;
  }
  .product-card-list .params .price-container {
    padding-left: 3px;
  }
  .product-card-list .params .sku {
    padding-left: 3px;
  }
  .product-card-list .params .counter {
    width: 100%;
  }
  .product-card-list .params .product-item-button-container {
    width: 100%;
    margin: 10px 0 0;
  }
  .product-card-list .params .product-item-button-container .btn {
    width: 100%;
  }
  .product-fast-view {
    width: 550px;
    flex-wrap: wrap;
  }
  .product-fast-view .left {
    width: 100%;
    padding: 25px 20px;
  }
  .product-fast-view .center:not(.owl-item) {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 0 0 20px;
    border-right: none;
    border-bottom: 1px solid #e7e7e7;
  }
  .product-fast-view .right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 20px 20px 25px;
  }
  .product-fast-view .product-img .main-img {
    margin: 0 auto;
  }
  .product-fast-view .product-img .additional-links {
    top: -14px;
    right: 20px;
  }
  .product-fast-view .brand-img {
    display: flex;
    align-items: center;
    width: auto;
    max-width: 130px;
    margin: 0 auto 0 0;
    padding-right: 10px;
    order: -1;
  }
  .product-fast-view .iblock-vote {
    margin-right: 20px;
  }
  .product-fast-view .code {
    margin-right: 20px;
  }
  .product-fast-view .stock {
    margin-top: 0;
  }
  .product-fast-view .product-timer {
    width: 44%;
    margin: 0 0 0 1%;
  }
  .product-fast-view .price-container {
    width: 55%;
    align-self: flex-start;
    margin: 15px 0 0;
    padding-top: 0;
    border-top: none;
  }
  .product-fast-view .order-container {
    min-width: 45%;
    margin: 15px 0 0;
    flex-grow: 1;
  }
  .catalog-delivery-popup {
    width: 95%;
  }
  .fixed-product-header .logo {
    display: none;
  }
  .fixed-product-header .product-container {
    margin-left: 0;
  }
  .promo-page .promo-main-banner .title {
    font-size: 1.75em;
  }
  .promo-page .promo-text .video-section .item {
    height: 22.4vw;
  }
  .promo-page .promo-gallery {
    padding: 30px 38px;
  }
  .promo-page .promo-gallery .items {
    margin: 20px 0 0;
  }
  .promo-page .promo-gallery .items .owl-stage-outer {
    width: 100%;
    padding: 0;
  }
  .promo-page .promo-gallery .owl-nav {
    top: -56px;
    right: 0;
  }
  .promo-page .promo-reviews {
    padding: 30px 40px;
  }
  .promo-page .promo-steps {
    padding-top: 30px;
  }
  .promo-page .promo-faq {
    padding: 30px 40px 35px;
  }
  .promo-page .promo-faq .desc {
    margin-top: 12px;
  }
  .promo-page .promo-faq .columns {
    margin-top: 22px;
  }
}
@media (max-width: 779px) {
  .product-tabs-container .tabs-container .tabs-content .tab-content .products-carousel .owl-container {
    height: auto !important;
  }
  .product-tabs-container .tabs-container .tabs-content .tab-content .products-carousel .owl-container .owl-item {
    flex-shrink: 0;
  }
  .product-tabs-container .tabs-container .tabs-content .tab-content .products-carousel .owl-container .product-wrap {
    width: 100%;
  }
  .products-carousel .items {
    flex-wrap: wrap;
    height: auto;
  }
  .products-carousel .items .owl-dots {
    position: static;
    margin-top: 8px;
  }
  footer .top .contacts-container {
    width: auto;
    padding-right: 15px;
  }
  .to-top {
    display: none;
  }
  .fixed-product-header {
    top: inherit;
    bottom: -100%;
  }
  .fixed-product-header .additional-links {
    display: none;
  }
  .fixed-product-header.show {
    top: inherit;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .section.section-cities {
    grid-template-columns: 1fr;
  }
  .popup-registration {
    max-width: 242px;
    margin: -83px 0 0 -141px;
  }
}
@media (max-width: 767px) {
  .catalog .light-categories {
    background: none;
    padding: 0;
  }
  .catalog .light-categories .items {
    flex-wrap: nowrap;
    padding: 0 0 10px;
    overflow: auto;
  }
  .catalog .light-categories .items > a {
    background: #fff;
    padding: 4px 8px;
    font-size: 13px;
    margin: 0 10px 0 0;
  }
  .catalog .light-categories .items > a i {
    display: none;
  }
  .catalog .category {
    padding: 28px 30px 26px;
  }
  .catalog .category .text .sub {
    margin-top: 7px;
  }
  .catalog .category .text .sub .item {
    margin: 0;
  }
  .catalog .category .text .sub .item:hover {
    color: #424242;
  }
  .catalog .category .text .name:hover {
    color: #282828;
  }
  .catalog .category .img {
    margin-top: 2px;
  }
  .catalog .subcategories {
    margin-top: 24px;
  }
  .catalog .subcategories .item .name:hover {
    color: #282828;
  }
  .catalog .subcategories .item:hover .img {
    transform: none;
  }
  .catalog .subcategories .item .img {
    width: 100px;
    height: 100px;
  }
  .catalog .subcategories .item .img + .name {
    margin-top: 19px;
  }
  .catalog .short-category:hover {
    box-shadow: none;
  }
  .catalog .short-category:hover .img {
    opacity: 1;
    transform: none;
  }
  .catalog .short-category:hover .desc {
    max-height: 0;
  }
  .catalog .short-category .text {
    margin-top: 0;
  }
  .catalog .short-category.loaded .img {
    position: static;
  }
  .catalog .sort {
    padding: 0;
  }
  .catalog .sort .filter-btn {
    width: 100%;
    padding: 23px 31px 23px 43px;
    margin-right: 0;
    box-sizing: border-box;
  }
  .catalog .sort .filter-btn::before {
    top: 50%;
    left: 21px;
    margin-top: -7px;
  }
  .catalog .sort .filter-btn.open {
    background-color: #fdfdfd;
  }
  .catalog .sort .sort-filter {
    display: none;
  }
  .catalog .sort .display {
    display: none;
  }
  .catalog .categories {
    display: block;
    margin: 33px 0 0;
  }
  .catalog .categories .category-wrap {
    width: 100%;
    margin: 0 0 24px;
  }
  .catalog .category-desc {
    padding: 20px 20px;
  }
  .catalog .products-container.has-filter:not(.top) .filter.open {
    top: -24px;
    width: 100%;
    border-top: 1px solid #e7e7e7;
    box-shadow: 0px 11px 24px rgba(0, 0, 0, 0.12);
  }
  .catalog .products-container.has-filter.top {
    position: relative;
    flex-direction: column;
  }
  .catalog .products-container.has-filter.top .filter {
    width: 100%;
    height: 0;
    padding-top: 0;
    overflow: hidden;
  }
  .catalog .products-container.has-filter.top .filter form {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }
  .catalog .products-container.has-filter.top .filter .bx_filter_parameters_box {
    width: 100%;
    margin-bottom: 0;
    padding: 17px 20px;
    border-bottom: 1px solid #e7e7e7;
  }
  .catalog .products-container.has-filter.top .filter .bx_filter_parameters_box .bx_filter_parameters_box_title {
    margin-right: 0;
    padding-right: 20px;
  }
  .catalog .products-container.has-filter.top .filter .bx_filter_parameters_box .bx_filter_parameters_box_title::before {
    content: '';
  }
  .catalog .products-container.has-filter.top .filter .bx_filter_parameters_box .bx_filter_parameters_box_title::after {
    position: absolute;
    top: 6px;
    right: 5px;
    display: block;
    width: 2px;
    height: 12px;
    margin-top: 0;
    background-color: #424242;
    border: none;
    transform: rotate(0deg);
    transition: all 0.3s ease;
  }
  .catalog .products-container.has-filter.top .filter .bx_filter_parameters_box .params-container {
    position: static;
    width: auto;
    margin-top: 13px;
    padding: 0;
    border: none;
    box-shadow: none;
  }
  .catalog .products-container.has-filter.top .filter .bx_filter_parameters_box .params-container::before {
    content: none;
  }
  .catalog .products-container.has-filter.top .filter .bx_filter_parameters_box .params-container .bx_filter_actions {
    display: none;
  }
  .catalog .products-container.has-filter.top .filter .bx_filter_parameters_box.active .bx_filter_parameters_box_title::after {
    margin-top: 0;
    transform: rotate(90deg);
  }
  .catalog .products-container.has-filter.top .filter .bx_filter_container_modef {
    display: none;
  }
  .catalog .products-container.has-filter.top .filter .bx_filter_button_box {
    display: block;
  }
  .catalog .products-container.has-filter.top .filter.open {
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: auto;
    margin: 0 0 24px;
    padding-top: 19px;
    box-shadow: 0px 11px 24px rgba(0, 0, 0, 0.12);
    z-index: 50;
  }
  .catalog .products-container .products .products-list.pricelist {
    display: flex;
    margin: 0 -12px;
    padding: 0;
    background-color: transparent;
  }
  .catalog .products-container .products .products-list.pricelist .product-wrap {
    width: calc((100% - 48px) / 2);
    margin: 0 12px 24px;
    padding: 20px 20px 30px;
    background-color: #fff;
    box-sizing: border-box;
  }
  .catalog .products-container .products .products-list.pricelist .product-wrap:not(:first-child) {
    border-top: none;
  }
  .catalog .products-container .products .products-list.pricelist .product-wrap:last-child {
    margin-bottom: 24px;
  }
  .catalog .products-container .products .products-list.list {
    display: flex;
    margin: 0 -12px;
  }
  .catalog .products-container .products .products-list.list .product-wrap {
    width: calc((100% - 48px) / 2);
    margin: 0 12px 24px;
    height: 100%;
  }
  .catalog .products-container .products .products-list.list .product-wrap .static {
    height: 100%;
  }
  .ym-block {
    flex-wrap: wrap;
    padding: 25px;
  }
  .ym-block .reviews-count {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .ym-block .common {
    margin: 0 0 30px;
  }
  .ym-block .rating .text {
    font-size: 28px;
  }
  .ym-block .rating .percent {
    font-size: 46px;
  }
  header .logo {
    margin-right: auto;
    max-width: 100px;
  }
  header .tools a:before {
    margin: 0;
  }
  header .tools a div {
    display: none;
  }
  header .middle .container {
    gap: 0;
  }
  header .tools {
    gap: 5px;
  }
  header .tools a {
    width: 35px;
    height: 40px;
    font-size: 21px;
  }
  header .tools a:before {
    top: 9px;
  }
  .search-toggle {
    font-size: 0;
    gap: 0;
    justify-content: center;
  }
  .search .search-wrapper {
    padding: 40px 15px;
  }
  .product-card {
    position: relative;
  }
  .product-card .name {
    padding-right: 60px;
    box-sizing: border-box;
  }
  .product-card .name:hover {
    color: #424242;
  }
  .product-card .price-container {
    padding-right: 60px;
    box-sizing: border-box;
  }
  .product-card:hover {
    position: relative;
    height: 100%;
    box-shadow: none;
  }
  .product-card:hover .hover-content {
    margin: 0;
  }
  .product-card .hover-content {
    display: block;
    margin: 0;
  }
  .product-card .hover-content > div:not(.product-item-button-container) {
    display: none;
  }
  .product-card .hover-content .product-item-button-container {
    position: absolute;
    right: 22px;
    bottom: 22px;
  }
  .product-card .hover-content .product-item-button-container .btn {
    display: none;
  }
  .product-card .hover-content .product-item-button-container .btn.loaded::before {
    background-image: none;
  }
  .product-card .hover-content .product-item-button-container .btn.order-btn {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    background-image: url(/local/templates/magnet_s1/img/icons/mobile-cart-button.svg);
    background-repeat: no-repeat;
    background-position: 9px center;
    background-size: 32px;
  }
  .product-card .hover-content .product-item-button-container .btn.order-btn span {
    display: none;
  }
  .product-card .hover-content .product-item-button-container .btn.order-btn::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 21px;
    display: block;
    width: 10px;
    height: 2px;
    margin: 0;
    background-image: none;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.2s;
    animation: none;
    box-shadow: none;
  }
  .product-card .hover-content .product-item-button-container .btn.order-btn::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 21px;
    display: block;
    width: 10px;
    height: 2px;
    margin: 0;
    background-image: none;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.2s;
    animation: none;
    box-shadow: none;
    transform: rotate(90deg);
  }
  .product-card .hover-content .product-item-button-container .btn.order-btn.in-basket::before {
    top: 20px;
    width: 5px;
    transform: rotate(-135deg) translate(5%, -10%);
  }
  .product-card .hover-content .product-item-button-container .btn.order-btn.in-basket::after {
    top: 20px;
    width: 11px;
    transform: rotate(-45deg) translate(20%, 10%);
  }
  .product-card .hover-content .product-item-button-container .btn.detail {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
  }
  .product-card .hover-content .product-item-button-container .btn.detail::before {
    content: '\0048';
    display: inline-block;
    padding-left: 3px;
    font-family: 'Icon Custom';
    font-size: 20px;
    color: #fff;
    font-style: normal;
    font-weight: normal;
    line-height: 50px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .product-card .hover-content .product-item-button-container .btn.detail span {
    display: none;
  }
  .product-card .labels {
    left: 12px;
  }
  .product-card .img {
    height: 164px;
  }
  .previously {
    margin-top: 24px;
  }
  .previously .items {
    margin: 10px 0 48px;
  }
  .previously .items .item {
    margin: 0;
    padding: 12px 20px 10px;
  }
  .previously .items .item .content .name:hover {
    color: #424242;
  }
  .previously .items .item:hover {
    box-shadow: none;
  }
  .previously .items .item .img {
    margin-right: 15px;
  }
  .previously .items .owl-stage {
    display: block;
  }
  .previously .title {
    margin-bottom: 0;
    font-size: 1.25em;
  }
  .previously .owl-dots {
    bottom: -32px;
  }
  .other-elements {
    padding: 20px;
  }
  .other-elements .items .item .title:hover {
    color: #424242;
  }
  .other-elements .items .item .img {
    width: 70px;
    height: 49px;
    margin-right: 12px;
  }
  .jobs {
    margin: 24px 0 0;
  }
  .jobs .jobs-list {
    padding: 20px;
  }
  .jobs .jobs-list .items {
    margin-top: 15px;
  }
  .jobs .jobs-list .items .item .name {
    padding: 17px 35px 18px 15px;
    font-size: 1em;
  }
  .jobs .jobs-list .items .item .name:hover {
    color: #424242;
  }
  .jobs .jobs-list .items .item .name::after {
    right: 20px;
  }
  .jobs .jobs-list .items .item .description {
    padding: 15px;
  }
  .jobs .jobs-list .title {
    font-size: 1.1em;
  }
  .jobs .jobs-list .desc {
    display: none;
  }
  .jobs .jobs-list .department:not(:last-child) {
    margin-bottom: 25px;
  }
  .offers .item .name:hover {
    color: #282828;
  }
  .offers .item:hover {
    box-shadow: none;
  }
  .offers .offer-wrap {
    width: calc((100% - 48px) / 2);
  }
  .offers .offer-wrap.big {
    width: calc((100% - 48px) / 2);
  }
  .news:not(section) {
    margin-top: 24px;
  }
  .news:not(section) .news-previews .items {
    padding: 20px;
  }
  .news:not(section) .news-previews .items .item {
    flex-wrap: wrap;
  }
  .news:not(section) .news-previews .items .item .content .name a:hover {
    color: #282828;
  }
  .news:not(section) .news-previews .items .item .img {
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
    margin: 0 0 15px;
  }
  .news:not(section) .service-detail {
    padding: 20px;
  }
  .news:not(section) .service-detail .service-header-columns {
    flex-wrap: wrap;
  }
  .news:not(section) .service-detail .service-header-columns .detail-img {
    width: 100%;
    height: auto;
    max-height: none;
    margin: 0 0 15px;
  }
  .news:not(section) .service-detail .service-order-block {
    flex-wrap: wrap;
    padding: 20px;
  }
  .news:not(section) .service-detail .service-order-block .info {
    width: 100%;
    padding-right: 0;
  }
  .news:not(section) .service-detail .service-order-block .btn {
    width: 100%;
    margin: 15px 0 0;
  }
  .news:not(section) .news-detail {
    padding: 20px;
  }
  .news:not(section) .news-detail .desc {
    font-size: 1em;
    line-height: 1.5em;
  }
  .additional-menu .items .item .link:hover {
    color: #282828;
  }
  section.catalog {
    margin-top: 25px;
  }
  section.catalog .link:hover {
    color: #828282;
  }
  section.catalog .categories {
    margin: 23px 0 0;
  }
  .product-card.has-offers .hover-content .product-item-button-container {
    display: none;
  }
  .product-card.has-offers .hover-content .product-item-button-container.sku-only {
    display: block;
  }
  .additional-links .compare {
    background-color: #fff;
  }
  .additional-links .compare::after {
    content: none;
  }
  .additional-links .compare:hover {
    color: #424242;
  }
  .additional-links .wishlist {
    background-color: #fff;
  }
  .additional-links .wishlist::after {
    content: none;
  }
  .additional-links .wishlist:hover {
    color: #424242;
  }
  .additional-links .compare.active {
    background-color: var(--main-color);
  }
  .additional-links .compare.active:hover {
    color: #fff;
    background-color: var(--main-color);
  }
  .additional-links .wishlist.active {
    background-color: var(--main-color);
  }
  .additional-links .wishlist.active:hover {
    color: #fff;
    background-color: var(--main-color);
  }
  .additional-links.inline .compare {
    padding-left: 0;
  }
  .additional-links.inline .compare::before {
    width: 32px;
    height: 32px;
    margin: -2px 8px 0 0;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
  }
  .additional-links.inline .compare:hover {
    color: #424242;
  }
  .additional-links.inline .wishlist {
    padding-left: 0;
  }
  .additional-links.inline .wishlist::before {
    width: 32px;
    height: 32px;
    margin: -2px 8px 0 0;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
  }
  .additional-links.inline .wishlist:hover {
    color: #424242;
  }
  .additional-links.inline .compare.active {
    background-color: transparent;
  }
  .additional-links.inline .compare.active::before {
    background-color: var(--main-color);
  }
  .additional-links.inline .compare.active:hover {
    color: #424242;
    background-color: transparent;
  }
  .additional-links.inline .wishlist.active {
    background-color: transparent;
  }
  .additional-links.inline .wishlist.active::before {
    background-color: var(--main-color);
  }
  .additional-links.inline .wishlist.active:hover {
    color: #424242;
    background-color: transparent;
  }
  .btn:hover {
    opacity: 1;
  }
  .filter .bx_filter_button_box input[type="submit"].bx_filter_search_button:hover {
    opacity: 1;
  }
  .filter .bx_filter_button_box input[type="submit"].bx_filter_search_reset:hover {
    color: #828282;
    border-color: #e7e7e7;
  }
  .btn.white:hover {
    color: var(--main-color);
    background-color: #fff;
  }
  .btn.transparent:hover {
    color: #828282;
    border-color: #e7e7e7;
  }
  .counter .minus:hover {
    color: #424242;
  }
  .counter .minus:active {
    color: var(--main-color);
  }
  .counter .plus:hover {
    color: #424242;
  }
  .counter .plus:active {
    color: var(--main-color);
  }
  section .owl-nav .prev:hover {
    color: #424242;
    background-color: #fff;
  }
  section .owl-nav .prev:active {
    color: #fff;
    background-color: var(--main-color);
  }
  section .owl-nav .next:hover {
    color: #424242;
    background-color: #fff;
  }
  section .owl-nav .next:active {
    color: #fff;
    background-color: var(--main-color);
  }
  .gallery .items .item {
    padding: 20px;
  }
  .gallery .items .item:hover {
    border-radius: 0;
    border-color: #e7e7e7;
    box-shadow: none;
  }
  .gallery .items .item .img:hover::before {
    display: none;
  }
  .gallery .items .item .name {
    line-height: 1.15em;
  }
  .gallery .items .item .description {
    display: none;
  }
  .gallery .content {
    padding: 20px;
  }
  footer .social .links .item:hover {
    background-color: #fff;
  }
  footer .top {
    margin-top: 14px;
  }
  footer .top .social {
    margin-left: 0;
  }
  .price-container .product-item-detail-info-container {
    width: 100%;
  }
  .price-container .product-item-detail-info-container::before {
    content: none;
  }
  .price-container .product-item-detail-info-container .product-item-detail-properties {
    position: static;
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 15px 10px;
    background-color: #f5f5f5;
    border: 1px solid #e7e7e7;
    box-shadow: none;
  }
  .through-banners.header_before .banner-item {
    display: none;
  }
  .through-banners.header_after .banner-item {
    display: none;
  }
  .through-banners.footer_before .banner-item {
    display: none;
  }
  body.aside-right .content-wrapper .right-column .through-banners .banner-item {
    height: 74vw;
  }
  body.aside-right .content-wrapper .right-column .other-elements {
    padding: 20px;
  }
  body.aside-right .content-wrapper .right-column .other-elements .name {
    font-size: 1.25em;
  }
  body.aside-right .content-wrapper .right-column .additional-menu {
    padding: 20px;
  }
  body.aside-right .content-wrapper .right-column .additional-menu .name {
    font-size: 1.25em;
  }
  body.aside-right .content-wrapper .right-column .additional-menu .item:last-child {
    padding-bottom: 0;
  }
  .share {
    display: none;
  }
  h1 {
    font-size: 1.4em;
  }
  h2 {
    font-size: 1.25em;
  }
  h3 {
    font-size: 1.1em;
  }
  h4 {
    font-size: 1.05em;
  }
  h5 {
    font-size: 1.05em;
  }
  section.news {
    display: none;
  }
  .products-carousel > .name {
    margin-left: 0;
  }
  .product-tabs-container {
    margin-bottom: 12px;
  }
  .product-tabs-container .tabs-container {
    padding: 0;
  }
  .content-column.content-page {
    margin-top: 24px;
    padding: 20px;
  }
  .auth {
    flex-wrap: wrap;
    padding: 25px 20px 35px;
  }
  .auth .left-column {
    width: 100%;
    margin-right: 0;
  }
  .auth .right-column {
    width: 100%;
    margin-top: 24px;
    padding: 25px 0 0;
    border-top: 1px solid #e7e7e7;
    box-shadow: none;
  }
  .auth .auth-label {
    font-size: 0.875em;
  }
  .auth .auth-label .auth-label-text {
    padding-left: 26px;
  }
  .auth .auth-label .auth-label-text::before {
    width: 18px;
    height: 18px;
  }
  .auth .text {
    font-size: 0.875em;
  }
  .auth .form {
    margin-top: 20px;
  }
  .auth .form .submit {
    margin-top: 16px;
  }
  .gift-container .products-list {
    margin-top: 65px;
  }
  .gift-container .products-list .owl-nav {
    top: -56px;
    width: 100%;
    text-align: center;
  }
  .sale-order-detail-payment-options-methods-template {
    margin: 0;
  }
  .sale-order-detail-payment-options-methods-template .sale-paysystem-close {
    display: none;
  }
  .sale-paysystem-wrapper {
    margin-top: 12px;
    padding: 0;
    border: none;
  }
  .sale-paysystem-wrapper .tablebodytext {
    font-size: 0.875em;
    line-height: 0.85em;
  }
  .sale-paysystem-wrapper .tablebodytext b {
    display: inline-block;
    margin-bottom: 15px;
  }
  .sale-paysystem-wrapper form span {
    display: block;
    margin-top: 12px;
    line-height: 1.2em;
  }
  .sale-paysystem-wrapper form input[type="submit"] {
    display: block;
    width: 100%;
    margin: 10px 0 0;
    padding: 10px 24px;
    font-size: 14px;
    text-align: center;
  }
  .sale-paysystem-wrapper form .sale-paysystem-description {
    line-height: 1.3em;
  }
  .sale-paysystem-wrapper form .sale-paysystem-description b {
    margin-bottom: 0;
  }
  .product-card-pricelist {
    position: relative;
    flex-direction: column;
    height: 100%;
  }
  .product-card-pricelist .img {
    width: 200px;
    height: 200px;
    margin: 0 auto 10px;
  }
  .product-card-pricelist .content {
    width: 100%;
    min-width: auto;
    max-width: none;
    margin-bottom: 20px;
  }
  .product-card-pricelist .content .info .code {
    margin: 0 10px 2px 0;
  }
  .product-card-pricelist .content .name {
    margin-bottom: 5px;
    font-weight: 400;
    line-height: 1.35em;
  }
  .product-card-pricelist .content div[id*="sku_tree"] {
    display: none;
  }
  .product-card-pricelist .price-container {
    width: 100%;
    margin: auto 0 0;
    padding-top: 10px;
  }
  .product-card-pricelist .price-container .old-price {
    margin-bottom: 7px;
    text-align: left;
    line-height: 1.5em;
  }
  .product-card-pricelist .price-container .price {
    display: block;
    font-size: 1.125em;
  }
  .product-card-pricelist .price-container .saving {
    display: inline-block;
    margin-top: 15px;
  }
  .product-card-pricelist .buttons {
    display: block;
    width: 100%;
  }
  .product-card-pricelist .buttons > div:not(.product-item-button-container) {
    display: none;
  }
  .product-card-pricelist .buttons .product-item-button-container {
    position: absolute;
    right: 0;
    bottom: -5px;
  }
  .product-card-pricelist .buttons .product-item-button-container .btn {
    display: none;
    min-width: auto;
  }
  .product-card-pricelist .buttons .product-item-button-container .btn.loaded::before {
    background-image: none;
  }
  .product-card-pricelist .buttons .product-item-button-container .btn.order-btn {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    background-image: url(/local/templates/magnet_s1/img/icons/mobile-cart-button.svg);
    background-repeat: no-repeat;
    background-position: 9px center;
    background-size: 32px;
  }
  .product-card-pricelist .buttons .product-item-button-container .btn.order-btn span {
    display: none;
  }
  .product-card-pricelist .buttons .product-item-button-container .btn.order-btn::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 21px;
    display: block;
    width: 10px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.2s;
  }
  .product-card-pricelist .buttons .product-item-button-container .btn.order-btn::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 21px;
    display: block;
    width: 10px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.2s;
    transform: rotate(90deg);
  }
  .product-card-pricelist .buttons .product-item-button-container .btn.order-btn.in-basket::before {
    top: 20px;
    width: 5px;
    transform: rotate(-135deg) translate(5%, -10%);
  }
  .product-card-pricelist .buttons .product-item-button-container .btn.order-btn.in-basket::after {
    top: 20px;
    width: 11px;
    transform: rotate(-45deg) translate(20%, 10%);
  }
  .product-card-pricelist .buttons .product-item-button-container .btn.detail {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
  }
  .product-card-pricelist .buttons .product-item-button-container .btn.detail::before {
    content: '\0048';
    display: inline-block;
    padding-left: 3px;
    font-family: 'Icon Custom';
    font-size: 20px;
    color: #fff;
    font-style: normal;
    font-weight: normal;
    line-height: 50px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .product-card-pricelist .buttons .product-item-button-container .btn.detail span {
    display: none;
  }
  .product-card-pricelist .additional-links {
    position: absolute;
    top: 0;
    right: -9px;
  }
  .product-card-pricelist.has-offers .product-item-button-container {
    display: none;
  }
  .product-card-pricelist.has-offers .product-item-button-container.sku-only {
    display: block;
  }
  .product-card-list {
    position: relative;
    flex-direction: column;
    height: 100%;
    padding: 25px 20px;
  }
  .product-card-list .img {
    width: 200px;
    height: 200px;
    margin: 0 auto 10px;
  }
  .product-card-list .content .top {
    padding-bottom: 10px;
  }
  .product-card-list .content .top .labels {
    position: absolute;
    top: 25px;
    left: 20px;
    display: flex;
    margin-top: 0;
  }
  .product-card-list .content .top .labels .label {
    margin: 0 0 5px;
  }
  .product-card-list .content .top .info {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .product-card-list .content .top .info .iblock-vote {
    width: 100%;
    margin-right: 0;
  }
  .product-card-list .content .top .info .stock {
    margin-right: 10px;
  }
  .product-card-list .content .top .name {
    padding-right: 60px;
    font-size: 0.875em;
    font-weight: 400;
    line-height: 1.35em;
    box-sizing: border-box;
  }
  .product-card-list .content .desc {
    display: none;
  }
  .product-card-list .content .additional-links {
    position: absolute;
    top: 18px;
    right: 13px;
    display: flex;
    padding: 0;
    border-top: none;
  }
  .product-card-list .content .additional-links.inline .compare {
    margin: 0 0 5px;
    padding: 0;
  }
  .product-card-list .content .additional-links.inline .compare::before {
    margin: 0;
    padding-left: 0;
  }
  .product-card-list .content .additional-links.inline .compare span {
    display: none;
  }
  .product-card-list .content .additional-links.inline .wishlist {
    margin: 0 0 5px;
    padding: 0;
  }
  .product-card-list .content .additional-links.inline .wishlist::before {
    margin: 0;
    padding-left: 0;
  }
  .product-card-list .content .additional-links.inline .wishlist span {
    display: none;
  }
  .product-card-list .params {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto 0 0;
    padding-right: 60px;
  }
  .product-card-list .params .sku {
    display: none;
  }
  .product-card-list .params .price-container {
    margin-top: 10px;
    padding-left: 0;
  }
  .product-card-list .params .price-container .old-price {
    margin-bottom: 3px;
  }
  .product-card-list .params .price-container .price {
    font-size: 1.125em;
  }
  .product-card-list .params .price-container .saving {
    display: none;
  }
  .product-card-list .params .counter {
    display: none;
  }
  .product-card-list .params .product-item-button-container {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: auto;
    margin: 0;
  }
  .product-card-list .params .product-item-button-container .btn {
    display: none;
    min-width: auto;
  }
  .product-card-list .params .product-item-button-container .btn.loaded::before {
    background-image: none;
  }
  .product-card-list .params .product-item-button-container .btn.order-btn {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    background-image: url(/local/templates/magnet_s1/img/icons/mobile-cart-button.svg);
    background-repeat: no-repeat;
    background-position: 9px center;
    background-size: 32px;
  }
  .product-card-list .params .product-item-button-container .btn.order-btn span {
    display: none;
  }
  .product-card-list .params .product-item-button-container .btn.order-btn::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 21px;
    display: block;
    width: 10px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.2s;
  }
  .product-card-list .params .product-item-button-container .btn.order-btn::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 21px;
    display: block;
    width: 10px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.2s;
    transform: rotate(90deg);
  }
  .product-card-list .params .product-item-button-container .btn.order-btn.in-basket::before {
    top: 20px;
    width: 5px;
    transform: rotate(-135deg) translate(5%, -10%);
  }
  .product-card-list .params .product-item-button-container .btn.order-btn.in-basket::after {
    top: 20px;
    width: 11px;
    transform: rotate(-45deg) translate(20%, 10%);
  }
  .product-card-list .params .product-item-button-container .btn.detail {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
  }
  .product-card-list .params .product-item-button-container .btn.detail::before {
    content: '\0048';
    display: inline-block;
    padding-left: 3px;
    font-family: 'Icon Custom';
    font-size: 20px;
    color: #fff;
    font-style: normal;
    font-weight: normal;
    line-height: 50px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .product-card-list .params .product-item-button-container .btn.detail span {
    display: none;
  }
  .product-card-list.has-offers .product-item-button-container {
    display: none;
  }
  .product-card-list.has-offers .product-item-button-container.sku-only {
    display: block;
  }
  .empty-basket {
    margin-top: 24px;
    padding: 25px 20px;
    box-sizing: border-box;
  }
  .empty-basket .icon {
    width: 100%;
    height: 25vw;
  }
  .empty-basket .text {
    margin-top: 15px;
    font-size: 1.25em;
  }
  .empty-basket .btn {
    margin-top: 15px;
  }
  blockquote {
    margin: 16px 0;
    padding: 12px 15px;
    font-size: 1em;
  }
  .cookie.type-2 {
    padding: 15px 45px 16px;
  }
  .cookie.type-3 {
    padding: 16px 30px 17px 25px;
  }
  .cookie.type-3 .btn {
    top: 7px;
  }
  .accordeon .name {
    padding: 12px 45px 12px 15px;
    font-size: 1em;
    line-height: 1.3em;
  }
  .accordeon .name::after {
    right: 20px;
  }
  .accordeon .text {
    padding: 15px;
    line-height: 1.35em;
  }
  .catalog-empty-section {
    padding: 15% 25px;
  }
  .brand-products-list .product-wrap {
    width: calc((100% - 48px) / 2);
  }
  .promo-page .promo-main-banner {
    padding: 25px 20px;
    min-height: auto;
  }
  .promo-page .promo-main-banner .title {
    font-size: 1.5em;
  }
  .promo-page .promo-main-banner .desc {
    line-height: 1.25em;
  }
  .promo-page .promo-main-banner-info {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .promo-page .promo-main-banner-img {
    display: none;
  }
  .promo-page .promo-text {
    padding: 25px 20px;
  }
  .promo-page .promo-text .content .subtitle {
    font-size: 1.275em;
  }
  .promo-page .promo-text .content .main-text {
    margin-top: 10px;
  }
  .promo-page .promo-text .content .video-section {
    margin: 20px 0 0;
  }
  .promo-page .promo-text .content .video-section .item {
    width: 100%;
    height: 41.5vw;
    margin: 0 0 15px;
  }
  .promo-page .promo-text .content .video-section .item:last-child {
    margin-bottom: 0;
  }
  .promo-page .promo-text .promo-docs .documents .name {
    font-size: 1.25em;
  }
  .promo-page .promo-text .promo-docs .documents .items {
    margin: 18px 0 0;
  }
  .promo-page .promo-text .promo-docs .documents .items .item {
    width: 100%;
    margin: 0 0 15px;
    padding-left: 42px;
  }
  .promo-page .promo-text .promo-docs .documents .items .item:last-child {
    margin-bottom: 0;
  }
  .promo-page .promo-text .promo-docs .documents .items .item::before {
    top: 3px;
    width: 32px;
    height: 30px;
  }
  .promo-page .promo-banner {
    padding: 25px 20px 32px;
  }
  .promo-page .promo-banner .title {
    font-size: 1.5em;
    line-height: 1.2em;
  }
  .promo-page .promo-banner .desc {
    margin-top: 12px;
  }
  .promo-page .promo-banner .btn {
    margin-top: 24px;
  }
  .promo-page .promo-gallery {
    padding: 20px;
  }
  .promo-page .promo-gallery .items .owl-stage {
    display: block;
  }
  .promo-page .promo-gallery .items .item {
    height: auto;
  }
  .promo-page .promo-gallery .owl-dots {
    margin-top: 10px;
  }
  .promo-page .promo-reviews {
    padding: 20px;
  }
  .promo-page .promo-reviews .items {
    margin-top: 20px;
  }
  .promo-page .promo-reviews .items .item {
    padding: 20px 20px;
  }
  .promo-page .promo-reviews .items .item .author-img-container {
    width: 80px;
    height: 80px;
  }
  .promo-page .promo-reviews .items .item .author-img-container::after {
    width: 25px;
    height: 25px;
    background-size: 14px;
  }
  .promo-page .promo-reviews .items .item .author-info {
    width: 100%;
    margin-top: 12px;
  }
  .promo-page .promo-reviews .items .item .author-info .review-product {
    line-height: 1.35em;
  }
  .promo-page .promo-reviews .items .item .review-text {
    height: 130px;
    margin-top: 12px;
    overflow: hidden;
  }
  .promo-page .promo-reviews .items .item .review-read-more {
    display: block;
    font-size: 14px;
    text-align: center;
  }
  .promo-page .promo-reviews .items .item.open .review-text {
    height: auto;
  }
  .promo-page .promo-steps {
    padding: 20px;
  }
  .promo-page .promo-steps .items {
    margin: 20px 0 0;
  }
  .promo-page .promo-steps .items .item {
    width: 100%;
    margin: 0 0 20px;
  }
  .promo-page .promo-steps .items .item:last-child {
    margin-bottom: 10px;
  }
  .promo-page .promo-steps .items .item::before {
    width: 15px;
    height: 15px;
    font-size: 10px;
    line-height: 15px;
  }
  .promo-page .promo-steps .items .item::after {
    content: none;
  }
  .promo-page .promo-steps .items .item .icon {
    width: 50px;
    height: 50px;
  }
  .promo-page .promo-steps .items .item .name {
    line-height: 1.15em;
  }
  .promo-page .promo-steps .items .item .desc {
    line-height: 1.25em;
  }
  .promo-page .promo-faq {
    padding: 20px;
  }
  .contact-menu {
    right: 15px;
  }
  .contact-menu--trigger::before,
  .contact-menu--trigger::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.2s ease;
    left: 18px;
    top: 28px;
  }
  .contact-menu:not(.active) .contact-menu--list {
    visibility: hidden;
    opacity: 0;
  }
  .contact-menu.active {
    z-index: 101;
  }
  .contact-menu.active .contact-menu--trigger {
    background-image: none;
  }
  .contact-menu.active .contact-menu--trigger::before {
    opacity: 1;
    transform: rotate(45deg);
  }
  .contact-menu.active .contact-menu--trigger::after {
    opacity: 1;
    transform: rotate(-45deg);
  }
  .contact-menu.active .contact-menu--list {
    width: calc(100vw - 30px);
  }
  .overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
  }
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 700px) {
  .product-wrap {
    width: calc((100% - 48px) / 2);
  }
  .catalog .subcategories .item {
    width: calc((100% - 48px) / 2);
  }
  .catalog .products-container.has-filter:not(.top) .products .products-list.card .product-wrap {
    width: calc((100% - 48px) / 2);
  }
  .error-404 {
    padding: 20px;
  }
  .error-404 .img {
    width: 100%;
    height: auto;
  }
  .error-404 .buttons .btn {
    margin-bottom: 10px;
  }
  .locations-list-popup {
    width: 95%;
  }
  .locations-list-popup .popup-header .close-popup-icon {
    top: 0;
    right: 0;
  }
  .locations-list-popup .popup-body {
    margin-top: 20px;
  }
  .locations-list-popup .popup-body .favorite {
    margin-bottom: 15px;
  }
  .locations-list-popup .popup-body .items {
    flex-direction: column;
    margin-left: 0;
  }
  .locations-list-popup .popup-body .items .section {
    display: flex;
    flex-wrap: wrap;
    padding: 8px 0;
  }
  .locations-list-popup .popup-body .items .section:not(:last-child) {
    margin-right: 0;
    border-bottom: 1px solid #efefef;
  }
  .locations-list-popup .popup-dialog .popup-content {
    padding: 21px 25px 12px;
  }
  .catalog-delivery-popup .delivery-popup .list .item {
    flex-direction: column;
    align-items: center;
    padding: 5% 0;
  }
  .catalog-delivery-popup .delivery-popup .list .item .img {
    width: 240px;
    height: 160px;
    margin: 0;
  }
  .catalog-delivery-popup .delivery-popup .list .item .info {
    margin-top: 25px;
    text-align: center;
  }
  .catalog-delivery-popup .delivery-popup .list .item .price {
    margin: 20px 0 0;
    padding-left: 0;
  }
  .cookie.type-2 {
    flex-direction: column;
    bottom: -400px;
    padding: 21px 35px 20px;
  }
  .cookie.type-2 .text {
    text-align: center;
  }
  .cookie.type-2 .btn {
    margin: 10px 0 0;
  }
}
@media (max-width: 610px) {
  .catalog .short-category {
    padding-bottom: 30px;
  }
  .catalog .short-category .img {
    width: 20vw;
    height: 20vw;
  }
  .catalog .short-category .name {
    margin-bottom: 0;
  }
  .product-card .img.fast-view .img-product-link::before {
    content: none;
  }
  .product-card .img.fast-view .link-fast-view {
    display: none;
  }
  .cookie.type-1 {
    left: 7%;
    width: 86%;
    margin: 0;
  }
  .content-page table td {
    padding: 12px;
  }
  .content-page code {
    display: none;
  }
  .content-page .bootstrap .desc code {
    display: inline-block;
  }
  .code-content {
    margin: 0;
  }
  .code-content code + h2,
  .code-content code + h3,
  .code-content code + h4,
  .code-content code + h5 {
    margin-bottom: 15px;
  }
  .fixed-product-header {
    display: none;
  }
  .fixed-product-header .product-container {
    flex-wrap: wrap;
  }
  .fixed-product-header .product-container .img {
    margin: 0 10px 7px 0;
  }
  .fixed-product-header .product-container .info {
    width: calc(100% - 70px);
    margin-bottom: 7px;
    padding: 0;
  }
  .fixed-product-header .product-container .price-container {
    align-items: flex-start;
  }
  .fixed-product-header .btn-container {
    margin: 0 0 0 auto;
  }
  .fixed-product-header.show-mobile {
    display: block;
  }
  footer {
    padding-bottom: 63px;
  }  
  .contact-menu {
    bottom: 80px;
  }
}
@media (max-width: 570px) {
  .catalog .products-container .products .products-list {
    margin-bottom: 0;
  }
  .catalog .products-container .products .products-list.list .product-wrap {
    width: 100%;
  }
  .catalog .products-container .products .products-list.pricelist .product-wrap {
    width: 100%;
  }
  .catalog .short-category {
    padding: 20px 12px;
  }
  .catalog .short-category .text {
    padding-top: 18px;
  }
  .catalog .short-category .name {
    font-size: 1em;
  }
  .catalog-delivery-popup .delivery-popup {
    padding: 14.2% 7% 9.5%;
  }
  .catalog-delivery-popup .delivery-popup .close-popup-icon.icon-custom {
    top: -15px;
    right: 3px;
  }
  .catalog-delivery-popup .delivery-popup .title {
    line-height: 1.25em;
  }
  .catalog-delivery-popup .delivery-popup .desc {
    margin-top: 18px;
    line-height: 1.5em;
  }
  .catalog-delivery-popup .delivery-popup .delivery-search {
    margin-top: 9.85%;
  }
  .catalog-delivery-popup .delivery-popup .delivery-search .checkbox {
    width: 100%;
    margin-top: 12px;
  }
  .catalog-delivery-popup .delivery-popup .list .item {
    padding: 8.5% 0 7%;
  }
  .catalog-delivery-popup .delivery-popup .list .item .img {
    width: 37.5vw;
    height: 25vw;
  }
  .catalog-delivery-popup .delivery-popup .list .item .info {
    margin-top: 8%;
  }
  .catalog-delivery-popup .delivery-popup .list .item .price {
    margin-top: 2%;
  }
  .cookie.type-1 {
    flex-direction: column;
    bottom: -500px;
    padding: 16px 15px 16px;
  }
  .cookie.type-1 .text {
    text-align: center;
  }
  .cookie.type-1 .btn {
    margin: 13px 0 0;
  }
  .cookie.type-2 {
    padding: 16px 20px 16px;
  }
  .cookie.type-2 .btn {
    margin-top: 13px;
  }
  footer .top .footer-menu {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  footer .top .footer-menu .column {
    width: 100%;
    margin-bottom: 13px;
    padding: 0;
  }
  footer .top .contacts-container {
    width: 100%;
    margin-bottom: 17px;
  }
  footer .bottom {
    margin-top: 13px;
  }
  footer .bottom .container {
    padding: 24px 0;
  }
  footer .bottom .copyright {
    margin-right: 0;
    line-height: 1.2em;
  }
  footer .bottom .policy {
    width: 100%;
    margin-top: 7px;
  }
  .lazy-load-container {
    margin-top: 0;
  }
  .lazy-load-container .lazy-load-btn {
    padding: 10px;
  }
  .brand-products-list {
    margin-top: 12px;
  }
  .brand-products-list .section-name {
    margin-bottom: 18px;
  }
  .brand-products-list .product-wrap {
    width: 100%;
  }
  header .wishlist-link {
    display: none;
  }
  header .middle .tel-container {
    margin: 0;
  }
  header .middle .tel-container .tel a:before {
    border: 0;
  }
  header .middle .tel-container .call-me {
    display: none;
  }
}
@media (max-width: 480px) {
  section.catalog .link {
    margin: 10px 0 0;
  }
  .catalog .category {
    padding: 20px;
  }
  .catalog .category .static {
    flex-wrap: wrap;
  }
  .catalog .category .static .text {
    width: 100%;
    margin-top: 18px;
  }
  .catalog .category .img {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }
  .catalog .subcategories {
    margin-bottom: 0;
  }
  .catalog .subcategories .item {
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin: 0 12px;
    padding: 15px 20px;
  }
  .catalog .subcategories .item:not(:first-child) {
    border-top: 1px solid #e7e7e7;
  }
  .catalog .subcategories .item .img {
    width: 50px;
    height: 50px;
    margin: 0;
    flex-shrink: 0;
  }
  .catalog .subcategories .item .img + .name {
    margin: 0 0 0 15px;
  }
  .catalog .subcategories .item .name {
    text-align: left;
  }
  .catalog .products-container.has-filter:not(.top) .products .products-list.card .product-wrap {
    width: 100%;
  }
  .offers .offer-wrap {
    width: 100%;
  }
  .offers .offer-wrap.big {
    width: 100%;
  }
  .popup {
    width: 95%;
  }
  .popup .popup-content {
    padding: 21px 25px;
  }
  .popup .popup-header .close-popup-icon {
    top: 0;
    right: 0;
  }
  .gallery .content .gallery-category .desc {
    display: none;
  }
  .gallery .items {
    margin-top: 24px;
  }
  .gallery .items .item {
    width: 100%;
  }
  .gallery .items .item .img {
    height: 200px;
  }
  .auth .reg .form {
    width: 100%;
  }
  .search-page {
    flex-wrap: wrap;
  }
  .search-page .search {
    width: 100%;
  }
  .search-page .empty-result {
    width: 100%;
    margin: 15px 0 0;
  }
  .previously .items .item .img {
    width: 60px;
    height: 60px;
  }
  .catalog-delivery-popup {
    width: 85%;
  }
  .catalog-empty-section::before {
    width: 40vw;
    height: 40vw;
  }
}
@media (max-width: 460px) {
  .product-wrap {
    width: 100%;
  }
  .offers .item .img {
    height: auto;
  }
  footer .subscribe-block .container {
    flex-wrap: wrap;
    justify-content: center;
    border-top: 1px solid #e7e7e7;
  }
  footer .subscribe-block .container::before {
    content: none;
  }
  .cookie.type-1 {
    left: 2.5%;
    width: 95%;
  }
  .cookie.type-1.show {
    bottom: 10px;
  }
  .cookie.black {
    background-color: rgba(40, 40, 40, 0.975);
  }
  .cookie.color {
    background-color: rgba(115, 195, 25, 0.975);
    box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.24);
  }
  .cookie.white {
    box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.24);
  }
}
@media (max-width: 420px) {
  .catalog .category {
    padding: 25px 20px;
  }
  .catalog .category .img {
    margin-top: 0;
  }
  .catalog .short-categories {
    margin: 25px -12px 0;
  }
  .catalog .short-category {
    flex-direction: row;
    width: 100%;
    margin-bottom: 18px;
    padding: 15px 20px;
  }
  .catalog .short-category .img {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }
  .catalog .short-category .text {
    padding-top: 0;
    align-self: center;
    text-align: left;
  }
  .catalog .short-category .name {
    line-height: 1.25em;
  }
  .popup-basket-add .box {
    width: 95%;
    box-sizing: border-box;
  }
  .popup-window:not([id*="smartFilterDropDown"]) {
    width: 95%;
    padding: 30px 25px;
  }
  .brands-page .brands-list .list .row {
    padding: 0;
  }
  .brands-page .brands-list .list .table .item {
    width: 100%;
  }
}
/* === COOKIE-BANNER GSM22 === */

#gsm22-cookie{
  position: fixed;
  bottom: 90px; /* чтобы не перекрывать мобильную панель */
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 760px;
  z-index: 999999;
}

#gsm22-cookie .cookie-content-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  background: #ffffff;
  color: #111;

  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

#gsm22-cookie .cookie-text{
  font-size: 13px;
  line-height: 1.4;
}

#gsm22-cookie a{
  color: #2563eb;
}

#gsm22-cookie-btn{
  background: #10b981;
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
}

#gsm22-cookie-btn:hover{
  background: #059669;
}

.bottom-panel{
  display: none;
  position:fixed !important;
  bottom:0 !important;
  left:0 !important;
  width:100% !important;
  background:#fff !important;
}

/* мобильная версия */
@media (max-width: 1024px){

  #gsm22-cookie{
    bottom: 90px;
    width: calc(100% - 20px);
  }

  #gsm22-cookie .cookie-content-wrapper{
    flex-direction: column;
    align-items: flex-start;
  }

  #gsm22-cookie-btn{
    width: 100%;
  }

  .bottom-panel {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    background: #f7f7f7;
    width: 100vw;
    box-sizing: border-box;
    padding: 0 10px;    
    justify-content: space-around;
    text-align: center;
    font-size: 10px;
    padding-top: 0.5rem;
  }
  .bottom-panel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
    color: #333;
  }
  .bottom-panel-item path {
    fill: #333;
  }
  .bottom-panel-item--icon {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bottom-panel-item--icon svg {
    height: 24px;
    width: auto;
  }
}

#gsm22-cookie{
  bottom: 70px !important; /* было 90px — это ломало UX */
  z-index:999999 !important;
}

/* Секция стилей для поиска (НАЧАЛО) */
.search-wrapper {
  position: relative;
}

.search-result {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #e5e5e5;
  display: none;
  z-index: 100;

  max-height: 67vh;
  overflow-y: auto;

  -webkit-overflow-scrolling: touch;
}

.search-result.active {
  display: block;
  .search-content {
    overflow-y: auto;
  }
}

.search-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  text-decoration: none;
  border-bottom: 1px solid #f3f3f3;
}

.search-row:hover {
  background: #f8f8f8;
  .search-row__title {
    color: #1C9C53;
  }  
}

.search-row__image {
  width: 48px;
  flex-shrink: 0;
}

.search-row__image img {
  width: 100%;
  display: block;
}

.search-row__info {
  display: flex;
  flex-direction: column;
}

.search-row__title {
  font-size: 14px;
  color: #222;
  line-height: 1.3;
}

.search-row__price {
  margin-top: 4px;
  font-weight: 600;
  color: #111;
}

.search-empty {
  padding: 14px;
  font-size: 14px;
}

.search-more {
  padding: 12px;
  text-align: center;
}

.search-more a {
  font-size: 13px;
}
/* Секция стилей для поиска (КОНЕЦ) */