@charset "UTF-8";
:root {
  --color1: #db3d3d;
  --color2: #528dca;
  --btnColor: #FFF; }

/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
body, html {
  margin: 0;
  padding: 0;
  color: #000;
  height: 100%;
  min-width: 1170px;
  background: #FFF; }

body {
  font: 14px/20px 'Ubuntu','Trebuchet MS', Tahoma, Verdana, sans-serif; }

h1, h2, h3, h4, h5, h6, p, img, table, ul, ol, form, li, fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  list-style: none; }

input, textarea, select, button {
  outline: none;
  font: inherit;
  margin: 0; }

a {
  color: #000;
  outline: none; }

a:hover {
  color: var(--color2, #528dca); }

* {
  outline: none; }

img, area {
  outline: none; }

p {
  margin: 0 0 10px; }

button {
  padding: 0;
  margin: 0;
  vertical-align: middle; }

h1, h2, h3, h4, h5 {
  font: 500 36px/36px 'Ubuntu', sans-serif;
  margin: 0 0 30px;
  padding: 0; }

h2 {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 20px;
  font-weight: 400;
  color: #000; }

h3 {
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #000; }

h4 {
  font-size: 16px;
  margin-bottom: 15px;
  margin-top: 25px;
  color: var(--color1, #db3d3d);
  color: #db3e3e;
  line-height: 22px; }

h5 {
  font-size: 14px;
  margin: 0 0 20px;
  line-height: 22px;
  color: #717a81;
  font-weight: bold; }

h6 {
  font-size: 14px;
  margin: 0 0 10px;
  line-height: 20px;
  color: #717a81;
  text-transform: uppercase;
  font-weight: normal; }

@media (max-width: 999px) {
  h1 {
    font-size: 30px; } }

@media (max-width: 509px) {
  h1 {
    font-size: 26px;
    margin-bottom: 20px; } }

.form h3 {
  margin-top: 20px; }

.form h3:first-child {
  margin-top: 0; }

td, th {
  vertical-align: top;
  text-align: left; }

ul, ol {
  margin: 0; }

li {
  list-style: none; }

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

b {
  font-weight: bold; }

#main {
  min-height: 100%;
  position: relative;
  background-color: #f3f4f6; }

.header, .footer {
  position: absolute;
  left: 0;
  right: 0;
  background-color: #fff; }

.header {
  top: 0;
  height: 130px; }

.middle {
  padding: 200px 0 290px;
  position: relative; }

.index .middle {
  padding-top: 130px;
  padding-bottom: 220px; }

.center {
  width: 1170px;
  margin: 0 auto;
  position: relative; }

.nav > li {
  text-transform: uppercase;
  font-weight: bold; }
  .nav > li > a {
    padding: 0; }

.nav > li a {
  color: #717a81;
  text-decoration: none; }

.nav > li a:hover {
  color: var(--color2, #528dca);
  text-decoration: underline; }

.nav > li a.current {
  color: var(--color1, #db3d3d);
  text-decoration: none; }

.main-nav.nav {
  /*overflow: hidden;*/
  display: flex;
  gap: 0 24px;
  flex-wrap: wrap;
  justify-content: space-between; }

.main-nav.nav > li {
  display: inline-block;
  margin: 5px 0; }

.main-nav.nav > li:last-child {
  margin-right: auto; }

.main-nav.nav > li > a {
  color: #000;
  text-decoration: none; }

.bottom-nav .main-nav > li > a:hover, .main-nav > li > a:hover {
  color: var(--color2, #528dca); }

.bottom-nav .main-nav > li > a.current, .main-nav > li > a.current {
  color: var(--color1, #db3d3d); }

.alert {
  position: relative;
  padding: 12px 20px;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 10px; }

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff; }

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb; }

.alert-error,
.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb; }

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba; }

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb; }

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto; }

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute; }

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute; }

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent; }

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6; }

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9; }

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute; }

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute; }

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px; }

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px; }

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important; } }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important; } }

a {
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -khtml-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }

.sale-order-detail-payment-options-methods-button-element.active-button:hover {
  background-color: var(--color1, #db3d3d); }

body .sale-order-detail-payment-options-methods-button-element,
body .sale-order-detail-payment-options-methods-button-element-new-window,
.sale-order-list-button,
.sale-order-detail-about-order-inner-container-repeat-button,
*[class^=bx-] .btn.btn-default,
body .bx-blue .btn.btn-default,
.btn {
  display: inline-block;
  cursor: pointer;
  border: 0 solid rgba(0, 0, 0, 0.01);
  background-color: var(--color1, #db3d3d);
  color: var(--btnColor, #FFF);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 24px;
  padding: 5px 15px 8px;
  border-radius: 3px;
  cursor: pointer;
  box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.2) inset;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.1s; }
  body .sale-order-detail-payment-options-methods-button-element:hover,
  body .sale-order-detail-payment-options-methods-button-element-new-window:hover,
  .sale-order-list-button:hover,
  .sale-order-detail-about-order-inner-container-repeat-button:hover,
  *[class^=bx-] .btn.btn-default:hover,
  body .bx-blue .btn.btn-default:hover,
  .btn:hover {
    /*background-color: #ffde85; box-shadow: 0 3px 0 #ffc65a;*/
    color: var(--color1, #db3d3d);
    opacity: 0.7;
    color: var(--btnColor, #FFF);
    text-decoration: none; }
  body .sale-order-detail-payment-options-methods-button-element:active, body .sale-order-detail-payment-options-methods-button-element.active,
  body .sale-order-detail-payment-options-methods-button-element-new-window:active,
  body .sale-order-detail-payment-options-methods-button-element-new-window.active,
  .sale-order-list-button:active,
  .sale-order-list-button.active,
  .sale-order-detail-about-order-inner-container-repeat-button:active,
  .sale-order-detail-about-order-inner-container-repeat-button.active,
  *[class^=bx-] .btn.btn-default:active,
  *[class^=bx-] .btn.btn-default.active,
  body .bx-blue .btn.btn-default:active,
  body .bx-blue .btn.btn-default.active,
  .btn:active,
  .btn.active {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2) inset;
    border-top: 0px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 5px;
    padding-top: 8px; }
  body .sale-order-detail-payment-options-methods-button-element.big-btn,
  body .sale-order-detail-payment-options-methods-button-element-new-window.big-btn,
  .sale-order-list-button.big-btn,
  .sale-order-detail-about-order-inner-container-repeat-button.big-btn,
  *[class^=bx-] .btn.btn-default.big-btn,
  body .bx-blue .btn.btn-default.big-btn,
  .btn.big-btn {
    padding: 15px 15px 18px; }
    body .sale-order-detail-payment-options-methods-button-element.big-btn:active, body .sale-order-detail-payment-options-methods-button-element.big-btn.active,
    body .sale-order-detail-payment-options-methods-button-element-new-window.big-btn:active,
    body .sale-order-detail-payment-options-methods-button-element-new-window.big-btn.active,
    .sale-order-list-button.big-btn:active,
    .sale-order-list-button.big-btn.active,
    .sale-order-detail-about-order-inner-container-repeat-button.big-btn:active,
    .sale-order-detail-about-order-inner-container-repeat-button.big-btn.active,
    *[class^=bx-] .btn.btn-default.big-btn:active,
    *[class^=bx-] .btn.btn-default.big-btn.active,
    body .bx-blue .btn.btn-default.big-btn:active,
    body .bx-blue .btn.btn-default.big-btn.active,
    .btn.big-btn:active,
    .btn.big-btn.active {
      padding-bottom: 15px;
      padding-top: 18px; }
  body .sale-order-detail-payment-options-methods-button-element.gray,
  body .sale-order-detail-payment-options-methods-button-element-new-window.gray,
  .sale-order-list-button.gray,
  .sale-order-detail-about-order-inner-container-repeat-button.gray,
  *[class^=bx-] .btn.btn-default.gray,
  body .bx-blue .btn.btn-default.gray,
  .btn.gray {
    background-color: #f3f4f6;
    color: #000; }
    body .sale-order-detail-payment-options-methods-button-element.gray:hover,
    body .sale-order-detail-payment-options-methods-button-element-new-window.gray:hover,
    .sale-order-list-button.gray:hover,
    .sale-order-detail-about-order-inner-container-repeat-button.gray:hover,
    *[class^=bx-] .btn.btn-default.gray:hover,
    body .bx-blue .btn.btn-default.gray:hover,
    .btn.gray:hover {
      background-color: #f8f8f8;
      color: #000;
      opacity: 0.9; }
    body .sale-order-detail-payment-options-methods-button-element.gray.active,
    body .sale-order-detail-payment-options-methods-button-element-new-window.gray.active,
    .sale-order-list-button.gray.active,
    .sale-order-detail-about-order-inner-container-repeat-button.gray.active,
    *[class^=bx-] .btn.btn-default.gray.active,
    body .bx-blue .btn.btn-default.gray.active,
    .btn.gray.active {
      box-shadow: none; }
  body .sale-order-detail-payment-options-methods-button-element.white,
  body .sale-order-detail-payment-options-methods-button-element-new-window.white,
  .sale-order-list-button.white,
  .sale-order-detail-about-order-inner-container-repeat-button.white,
  *[class^=bx-] .btn.btn-default.white,
  body .bx-blue .btn.btn-default.white,
  .btn.white {
    background-color: #FFF;
    color: #878787;
    font-size: 13px;
    box-shadow: none;
    text-transform: none; }
    body .sale-order-detail-payment-options-methods-button-element.white:hover, body .sale-order-detail-payment-options-methods-button-element.white:focus,
    body .sale-order-detail-payment-options-methods-button-element-new-window.white:hover,
    body .sale-order-detail-payment-options-methods-button-element-new-window.white:focus,
    .sale-order-list-button.white:hover,
    .sale-order-list-button.white:focus,
    .sale-order-detail-about-order-inner-container-repeat-button.white:hover,
    .sale-order-detail-about-order-inner-container-repeat-button.white:focus,
    *[class^=bx-] .btn.btn-default.white:hover,
    *[class^=bx-] .btn.btn-default.white:focus,
    body .bx-blue .btn.btn-default.white:hover,
    body .bx-blue .btn.btn-default.white:focus,
    .btn.white:hover,
    .btn.white:focus {
      background-color: #fff;
      color: #000; }
  body .sale-order-detail-payment-options-methods-button-element.main-user-consent-request-popup-buttons,
  body .sale-order-detail-payment-options-methods-button-element-new-window.main-user-consent-request-popup-buttons,
  .sale-order-list-button.main-user-consent-request-popup-buttons,
  .sale-order-detail-about-order-inner-container-repeat-button.main-user-consent-request-popup-buttons,
  *[class^=bx-] .btn.btn-default.main-user-consent-request-popup-buttons,
  body .bx-blue .btn.btn-default.main-user-consent-request-popup-buttons,
  .btn.main-user-consent-request-popup-buttons {
    align-items: flex-start; }
  body .sale-order-detail-payment-options-methods-button-element.main-user-consent-request-popup-button,
  body .sale-order-detail-payment-options-methods-button-element-new-window.main-user-consent-request-popup-button,
  .sale-order-list-button.main-user-consent-request-popup-button,
  .sale-order-detail-about-order-inner-container-repeat-button.main-user-consent-request-popup-button,
  *[class^=bx-] .btn.btn-default.main-user-consent-request-popup-button,
  body .bx-blue .btn.btn-default.main-user-consent-request-popup-button,
  .btn.main-user-consent-request-popup-button {
    vertical-align: top;
    height: 39px;
    line-height: 30px; }
  body .sale-order-detail-payment-options-methods-button-element.btn-link, body .sale-order-detail-payment-options-methods-button-element.btn-alternate,
  body .sale-order-detail-payment-options-methods-button-element-new-window.btn-link,
  body .sale-order-detail-payment-options-methods-button-element-new-window.btn-alternate,
  .sale-order-list-button.btn-link,
  .sale-order-list-button.btn-alternate,
  .sale-order-detail-about-order-inner-container-repeat-button.btn-link,
  .sale-order-detail-about-order-inner-container-repeat-button.btn-alternate,
  *[class^=bx-] .btn.btn-default.btn-link,
  *[class^=bx-] .btn.btn-default.btn-alternate,
  body .bx-blue .btn.btn-default.btn-link,
  body .bx-blue .btn.btn-default.btn-alternate,
  .btn.btn-link,
  .btn.btn-alternate {
    background-color: var(--color2, #528dca); }

button.btn::-moz-focus-inner,
input.btn::-moz-focus-inner {
  margin: -1px 0;
  padding: 0; }

.btn-white {
  display: inline-block;
  border-radius: 3px;
  box-shadow: none;
  background-color: #FFF;
  color: #878787;
  text-transform: none;
  font-size: 13px;
  font-weight: normal;
  padding: 10px 15px 10px 15px;
  line-height: 15px;
  text-decoration: none; }
  .btn-white:hover {
    color: #000; }

.btn-gray {
  display: inline-block;
  border-radius: 3px;
  box-shadow: none;
  background-color: #f3f4f6;
  color: #878787;
  text-transform: none;
  font-size: 13px;
  font-weight: normal;
  padding: 10px 15px 10px 15px;
  line-height: 15px;
  text-decoration: none; }
  .btn-gray:hover {
    color: #000; }

.btn-more {
  padding-right: 40px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAJCAYAAAARml2dAAAAZElEQVR42mP4+vXbx517D358+er1x////8Mxw/lLV/5nFlf9b+zs///w8ZP/MMDw+/fv/6s3bAZLlje0/b9+6zZEAqZi594DYInimiaQTpAEAkyYPhukE6QIpw7cduB0FU5/AAB8rbdOFE6YxwAAAABJRU5ErkJggg==);
  background-position: top 50% right 13px;
  background-repeat: no-repeat; }

.action-timer {
  position: absolute;
  background-color: #fff6d5;
  padding: 15px 20px 15px 15px;
  height: 75px;
  box-sizing: border-box;
  font-size: 10px;
  line-height: 12px; }
  .action-timer:before {
    position: absolute;
    content: '';
    border-style: solid;
    border-width: 37px 18px 37px 0;
    border-color: transparent #fff6d5;
    left: -18px;
    top: 0;
    height: 1px; }
  .action-timer .time {
    margin: 0;
    padding: 0; }
    .action-timer .time li {
      list-style: none;
      display: inline-block;
      vertical-align: middle;
      position: relative;
      margin: 0 0 0 15px;
      text-align: center; }
      .action-timer .time li:first-child {
        margin-left: 0; }
        .action-timer .time li:first-child:before {
          display: none; }
      .action-timer .time li:before {
        content: ':';
        position: absolute;
        left: -9px;
        font-size: 18px;
        line-height: 24px;
        top: 0;
        margin: 0;
        font-family: inherit; }
      .action-timer .time li .num {
        font-size: 18px;
        line-height: 24px;
        font-weight: 500; }
  .action-timer .action-link {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0; }

.hint-block, .favorite-link {
  user-select: none; }
  .hint-block .hint-text, .favorite-link .hint-text {
    width: 160px;
    background-color: #f8f5eb;
    font-size: 11px;
    line-height: 14px;
    position: absolute;
    bottom: 30px;
    left: -100px;
    font-weight: normal;
    transform: translateY(-15px);
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    margin-left: 5px; }
    .hint-block .hint-text:after, .favorite-link .hint-text:after {
      content: '';
      position: absolute;
      border-style: solid;
      border-color: #f8f5eb transparent;
      border-width: 8px 8px 0;
      left: 50%;
      margin-left: -8px;
      bottom: -8px; }
  @media (min-width: 1000px) {
    .hint-block:hover .hint-text, .favorite-link:hover .hint-text {
      visibility: visible;
      opacity: 1;
      transform: translateY(0); } }
  @media (max-width: 999px) {
    .hint-block .hint-text, .favorite-link .hint-text {
      display: none; } }

.hint-block {
  position: relative;
  width: 10px;
  height: 10px;
  border: 1px solid #c3c7ca;
  background-color: #fff;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
  vertical-align: middle; }
  .hint-block .hint-icon {
    line-height: 10px;
    text-align: center;
    font-size: 9px; }
  .hint-block:hover {
    background-color: #e8edf1;
    border-color: #e8edf1; }

.favorite-link {
  position: relative; }
  .favorite-link .hint-text {
    left: -92px;
    color: #000;
    text-align: center; }
    @media (max-width: 675px) {
      .favorite-link .hint-text {
        left: auto;
        right: 0; }
        .favorite-link .hint-text:after {
          left: auto;
          right: 5px; } }

.compare-float-block {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 141, 202, 0.85);
  background-color: RGB(from var(--color2, #528dca) r g b/0.95);
  color: #FFF;
  padding: 5px 0;
  -webkit-transition: all 0.3s;
  -khtml-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1; }
  .compare-float-block .toggle-holder {
    position: absolute;
    right: 0;
    width: 50px;
    height: 50px;
    top: -29px; }
    .compare-float-block .toggle-holder .toggle {
      width: 50px;
      height: 50px;
      background: #FFF url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAARCAYAAADtyJ2fAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHhJREFUeNpinD9/PgMSsAPigwxEABY0TWuhbEZsihMSEsD0ggUL/jOhaQplIBIwoWk6QKxGFiQ/7Ud3EjF+ZGQgEbDgsgUUAFBxRjRxuB/JAkzotsBsIkkj2TbiAthcQlsbsQFGYCL/T0Y8/qe/U2Ep5z+pGgECDABSByUqTGlbWQAAAABJRU5ErkJggg==) 50% 50% no-repeat;
      border-radius: 50%;
      cursor: pointer;
      position: relative;
      box-shadow: 0 0 6px rgba(0, 0, 0, 0.2); }
    .compare-float-block .toggle-holder .qty {
      width: 15px;
      height: 15px;
      color: #FFF;
      background-color: var(--color1, #db3d3d);
      position: absolute;
      right: 12px;
      top: 9px;
      border-radius: 50%;
      line-height: 15px;
      text-align: center;
      font-size: 10px;
      font-weight: 500;
      display: block; }
  .compare-float-block .block-content {
    display: flex;
    align-items: center;
    -webkit-ustify-content: space-between;
    justify-content: space-between;
    -webkit-ustify-content: space-evenly;
    position: relative;
    margin: 0 100px;
    overflow: hidden;
    max-height: 0;
    -webkit-transition: all 0.3s;
    -khtml-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    .compare-float-block .block-content .title {
      font-size: 18px;
      text-transform: uppercase;
      font-weight: 500; }
      .compare-float-block .block-content .title .added {
        display: none; }
      .compare-float-block .block-content .title.item-added .default {
        display: none; }
      .compare-float-block .block-content .title.item-added .added {
        display: block; }
  .compare-float-block.open {
    padding: 20px 0; }
    .compare-float-block.open .toggle-holder {
      top: -45px; }
      .compare-float-block.open .toggle-holder .toggle {
        background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAQAAADY4iz3AAAAmElEQVR42nXQuwnCABSF4YsSH0QncJ6so4WuoMSAlYJ23zbaOUo2kGujkAQ97Q/nFSpbi+jJwlYVNtLVrANmrtImlI5ezqYfMHX2clRGhLFGuphHmLtIjfHXotBIJysnqVF0gycOWnetg0kMWi09paflEBT2Wg+tfd/uX5aRetCwNooIpfrHrloZ1tJt8MZNWofK7seHO9UbOUdwju8vVcIAAAAASUVORK5CYII=) 50% 50% no-repeat; }
        .compare-float-block.open .toggle-holder .toggle .qty {
          display: none; }
    .compare-float-block.open .block-content {
      max-height: 200px; }

.buy-btn {
  font-size: 10px;
  position: relative;
  text-transform: uppercase;
  color: #acacac;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: top;
  width: 24px;
  height: 24px;
  margin-top: 15px;
  margin-left: 40px;
  overflow: hidden; }
  .buy-btn .icon path {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #B0B0B0;
    transition: all .2s; }
  .buy-btn .icon .st-active {
    display: none; }
  .buy-btn:hover {
    overflow: visible; }
    .buy-btn:hover span {
      display: block;
      transform: translateX(-105%);
      opacity: 1;
      visibility: visible; }
    .buy-btn:hover .icon path {
      fill: var(--color1, #db3d3d); }
  .buy-btn span {
    /*display: none;*/
    position: absolute;
    left: 0px;
    top: 2px;
    white-space: nowrap;
    overflow: hidden;
    opacity: 0;
    transition: all .2s;
    transform: translateX(-50%);
    visibility: hidden; }
  .buy-btn.in .icon path {
    fill: var(--color1, #db3d3d); }
  .buy-btn.in .icon .st-active {
    display: inline; }
  .buy-btn.in .icon .st-default {
    display: none; }

.social-nav {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 15px; }
  .social-nav a {
    background: var(--color2, #528dca);
    color: #FFF;
    text-decoration: none;
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 2px;
    font-size: 18px; }
    .social-nav a:hover {
      opacity: 0.8; }
    .social-nav a img {
      vertical-align: middle; }
  .social-nav.single-color a {
    color: var(--btnColorSecond, #FFF); }
  .social-nav:not(.single-color) a.fa-ok, .social-nav:not(.single-color) a.fa-odnoklassniki {
    background-color: #ec760d; }
  .social-nav:not(.single-color) a.fa-google-plus {
    background-color: #dc5246; }
  .social-nav:not(.single-color) a.yandex {
    background-color: #ef3124; }
  .social-nav:not(.single-color) a.b24 {
    background-color: #23bfef; }
  .social-nav:not(.single-color) a.boxcom {
    background-color: #2d82c0; }
  .social-nav:not(.single-color) a.fa-dropbox {
    background-color: #1975cc; }
  .social-nav:not(.single-color) a.fa-google {
    background-color: #0058c6; }
  .social-nav:not(.single-color) a.liveid {
    background-color: #e7ebed; }
  .social-nav:not(.single-color) a.office365 {
    background-color: #eb3d01; }
  .social-nav:not(.single-color) a.mm {
    background-color: #3d6cb0; }
  .social-nav:not(.single-color) a.lj {
    background-color: #e7ebed; }
  .social-nav:not(.single-color) a.mailru {
    background-color: #134785; }
    .social-nav:not(.single-color) a.mailru:hover {
      background-color: #2761a7; }
  .social-nav:not(.single-color) a.li {
    background-color: #30889e; }
  .social-nav:not(.single-color) a.blogger {
    background-color: #fe6700; }
  .social-nav:not(.single-color) a.fa-openid {
    background-color: #ff6200; }
  .social-nav:not(.single-color) a.fa-instagram {
    background-color: #D52A8E; }
  .social-nav:not(.single-color) a.fa-telegram {
    background-color: #33A8E1; }
  .social-nav:not(.single-color) a.fa-whatsapp {
    background-color: #08AF2B; }
  .social-nav:not(.single-color) a.fa-vk {
    background-color: #4e759d; }
  .social-nav:not(.single-color) a.fa-facebook {
    background-color: #4065b4; }
  .social-nav:not(.single-color) a.fa-youtube {
    background-color: #c13a35; }
  .social-nav:not(.single-color) a.fa-twitter, .social-nav:not(.single-color) a.fa-x-twitter {
    background-color: #000; }

.fa-ok:before {
  content: "\f263"; }

.fa-ok:before {
  content: "\f263"; }

.splash-form .social-nav {
  margin-bottom: -15px; }
  .splash-form .social-nav li {
    margin-bottom: 15px; }

.file-block {
  overflow: hidden; }
  .file-block .icon {
    float: left;
    margin-right: 10px;
    margin-top: 5px; }
  .file-block .text {
    overflow: hidden;
    word-wrap: break-word; }
  .file-block .meta {
    color: #8f969c; }

.main-box {
  border-style: solid;
  padding: 20px;
  border-width: 3px;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative; }

.main-box.form,
.main-box.c1 {
  background-color: #fff;
  border-color: var(--color1, #db3d3d); }

.main-box.form {
  padding: 25px 30px; }

.main-box.form h3 {
  font-weight: bold;
  text-transform: none; }

.main-box.form .controlls {
  margin-top: 0; }

.show-up-button.showup-btn .up-btn {
  opacity: 1; }

.up-btn {
  position: fixed;
  left: 20px;
  bottom: 50px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 3px;
  background: var(--color1);
  transition: all 0.3s;
  z-index: 1;
  box-shadow: 0 0 5px #f3f4f6;
  opacity: 0;
  visibility: hidden;
  color: var(--btnColor, #FFF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px; }
  .up-btn-second-color .up-btn, .up-btn.up-btn-second-color {
    background-color: var(--color2); }
  .up-btn-right .up-btn, .up-btn.up-btn-right {
    left: auto;
    right: 20px; }
  .up-btn-round .up-btn, .up-btn.up-btn-round {
    border-radius: 50%; }
  .up-btn.show {
    opacity: 1;
    visibility: visible; }

.tags {
  position: absolute;
  right: 5px;
  top: 10px;
  transition: all .2s; }
  .tags .tag {
    margin: 0 5px;
    float: left;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 11px;
    line-height: 20px;
    padding: 0 6px 0 4px;
    position: relative; }
    .tags .tag .hint-block {
      margin-left: 10px;
      margin: 0 -6px 0 5px;
      border: none;
      height: 20px;
      border-radius: 0;
      float: right;
      background: #d11010;
      width: 15px;
      text-transform: none; }
      .tags .tag .hint-block .hint-icon {
        display: block;
        line-height: 20px;
        height: 20px;
        font-size: 12px;
        color: #FFF;
        text-decoration: none; }
      .tags .tag .hint-block .hint-text {
        color: #000;
        text-align: center; }
        @media (max-width: 675px) {
          .tags .tag .hint-block .hint-text {
            right: 0;
            left: auto; }
            .tags .tag .hint-block .hint-text:after {
              left: auto;
              right: 2px; } }
    .tags .tag:before {
      content: '';
      position: absolute;
      right: 100%;
      top: 0;
      border-style: solid;
      border-width: 10px 5px 10px 0;
      border-color: inherit; }
    .tags .tag.new {
      background-color: #528dca;
      border-color: transparent #528dca; }
    .tags .tag.action {
      background-color: #ff4747;
      border-color: transparent #ff4747; }
      .tags .tag.action .hint-block {
        background-color: #d11010; }
    .tags .tag.hit {
      background-color: #4ab900;
      border-color: transparent #4ab900; }

.viewed-goods {
  background-color: #eceef3;
  padding: 65px 0;
  clear: both;
  margin: 70px 0 -75px; }

.share-link {
  padding-right: 20px;
  color: #717a81;
  position: relative; }
  .share-link:after {
    content: '\f1e0';
    font-family: 'FontAwesome';
    text-decoration: none;
    font-size: 12px;
    position: absolute;
    right: 0; }

.page-bottom-options {
  display: flex;
  gap: 20px;
  margin-top: 30px; }
  .page-bottom-options .back-link {
    position: relative;
    margin-left: 20px; }
  .page-bottom-options .share-link {
    margin-left: auto; }

.page-share-block {
  position: relative;
  margin-left: auto; }
  .page-share-block .networks {
    cursor: default;
    position: absolute;
    margin: 0;
    top: -6px;
    right: 100%;
    white-space: nowrap;
    padding: 5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
  .page-share-block:hover .networks {
    opacity: 1;
    visibility: visible; }

body .ya-share2__container.ya-share2__container_color-scheme_blackwhite .ya-share2__badge,
body .ya-share2__container.ya-share2__container_color-scheme_blackwhite .ya-share2__mobile-popup-badge {
  background-color: var(--color2, #000); }

.page-share-nav {
  float: right;
  position: relative;
  cursor: pointer;
  color: #717a81; }
  .page-share-nav i {
    color: #c7ccd0;
    margin-left: 5px; }
  .page-share-nav .page-share-block {
    cursor: default;
    position: absolute;
    margin: 0;
    top: -6px;
    right: 100%;
    white-space: nowrap;
    padding: 5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
  .page-share-nav:hover .page-share-block {
    opacity: 1;
    visibility: visible; }

.pagination {
  margin: 0 0 50px 0; }
  .pagination .pages li {
    list-style: none;
    display: inline-block;
    list-style: none;
    font-size: 15px;
    line-height: 30px;
    vertical-align: middle; }
    .pagination .pages li a {
      display: block;
      text-align: center;
      width: 30px;
      text-decoration: none;
      color: #000; }
      .pagination .pages li a:hover {
        color: var(--color1, #db3d3d); }
    .pagination .pages li.current a {
      border-radius: 2px;
      background-color: var(--color1, #db3d3d);
      color: #FFF; }
    .pagination .pages li.page.prev {
      margin-right: 10px; }
    .pagination .pages li.page.next {
      margin-left: 10px; }
    .pagination .pages li.page.disabled a {
      color: #beccd6; }
    .pagination .pages li.page a {
      text-align: center;
      color: #717a81;
      width: auto;
      font-size: 22px; }
      .pagination .pages li.page a:hover {
        color: var(--color1, #db3d3d); }

@media screen and (max-width: 999px) {
  .up-btn {
    left: 10px;
    width: 30px;
    height: 30px;
    bottom: 40px;
    background-size: 50%; }
  .social-nav.bottom-social-nav {
    max-width: 135px; }
  .viewed-goods {
    background-color: #eceef3;
    padding: 50px 0;
    clear: both;
    margin: 50px 0 -20px; }
  .compare-float-block .block-content {
    flex-direction: column;
    align-items: flex-start; }
    .compare-float-block .block-content .count-str {
      margin: 15px 0; } }

@media screen and (max-width: 509px) {
  .social-nav.bottom-social-nav {
    width: 90px; }
  .compare-float-block .block-content {
    margin: 0; }
    .compare-float-block .block-content .btn {
      width: 100%; } }

/*************** SCROLLBAR BASE CSS ***************/
.scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative; }
  .scroll-wrapper > .scroll-content {
    border: none !important;
    height: auto;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none !important;
    overflow: scroll !important;
    padding: 0;
    position: relative !important;
    top: 0;
    width: auto !important; }
    .scroll-wrapper > .scroll-content::-webkit-scrollbar {
      height: 0;
      width: 0; }
  .scroll-wrapper.scroll--rtl {
    direction: rtl; }

.scroll-element {
  display: none; }
  .scroll-element .scroll-bar,
  .scroll-element .scroll-arrow {
    cursor: default; }
  .scroll-element.scroll-x.scroll-scrollx_visible, .scroll-element.scroll-y.scroll-scrolly_visible {
    display: block; }

.scroll-textarea {
  border: 1px solid #cccccc;
  border-top-color: #999999; }
  .scroll-textarea > .scroll-content {
    overflow: hidden !important; }
    .scroll-textarea > .scroll-content > textarea {
      border: none !important;
      box-sizing: border-box;
      height: 100% !important;
      margin: 0;
      max-height: none !important;
      max-width: none !important;
      overflow: scroll !important;
      outline: none;
      padding: 2px;
      position: relative !important;
      top: 0;
      width: 100% !important; }
      .scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
        height: 0;
        width: 0; }

.scroll-wrapper > .scroll-element,
.scroll-wrapper > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10; }

.scroll-wrapper > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%; }

.scroll-wrapper > .scroll-element.scroll-x {
  bottom: 2px;
  height: 8px;
  left: 0;
  width: 100%; }

.scroll-wrapper > .scroll-element.scroll-y {
  height: 100%;
  right: 3px;
  top: 0;
  width: 6px; }

.scroll-wrapper > .scroll-element .scroll-element_outer,
.scroll-wrapper > .scroll-element .scroll-element_track,
.scroll-wrapper > .scroll-element .scroll-bar {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px; }

.scroll-wrapper > .scroll-element .scroll-bar {
  box-sizing: border-box;
  background-color: #c5cdd5;
  border-radius: 8px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 12px;
  left: -3px;
  position: absolute;
  border: 2px solid #FFF;
  height: 100px; }

.scroll-wrapper > .scroll-element:hover .scroll-bar {
  background-color: #999; }

.scroll-wrapper > .scroll-element .scroll-element_track {
  background-color: #EEE; }

/*************** SIMPLE INNER SCROLLBAR ***************/
.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10; }

.scrollbar-inner > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%; }

.scrollbar-inner > .scroll-element.scroll-x {
  bottom: 2px;
  height: 8px;
  left: 0;
  width: 100%; }

.scrollbar-inner > .scroll-element.scroll-y {
  height: 100%;
  right: 2px;
  top: 0;
  width: 8px; }

.scrollbar-inner > .scroll-element .scroll-element_outer {
  overflow: hidden; }

.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px; }

.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
  opacity: 0.4; }

.scrollbar-inner > .scroll-element .scroll-element_track {
  background-color: #e0e0e0; }

.scrollbar-inner > .scroll-element .scroll-bar {
  background-color: #c2c2c2; }

.scrollbar-inner > .scroll-element:hover .scroll-bar {
  background-color: #919191; }

.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191; }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -12px; }

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -12px; }

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -12px; }

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -12px; }

/*************** SIMPLE OUTER SCROLLBAR ***************/
.scrollbar-outer > .scroll-element,
.scrollbar-outer > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10; }

.scrollbar-outer > .scroll-element {
  background-color: #ffffff; }

.scrollbar-outer > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%; }

.scrollbar-outer > .scroll-element.scroll-x {
  bottom: 0;
  height: 12px;
  left: 0;
  width: 100%; }

.scrollbar-outer > .scroll-element.scroll-y {
  height: 100%;
  right: 0;
  top: 0;
  width: 12px; }

.scrollbar-outer > .scroll-element.scroll-x .scroll-element_outer {
  height: 8px;
  top: 2px; }

.scrollbar-outer > .scroll-element.scroll-y .scroll-element_outer {
  left: 2px;
  width: 8px; }

.scrollbar-outer > .scroll-element .scroll-element_outer {
  overflow: hidden; }

.scrollbar-outer > .scroll-element .scroll-element_track {
  background-color: #eeeeee; }

.scrollbar-outer > .scroll-element .scroll-element_outer,
.scrollbar-outer > .scroll-element .scroll-element_track,
.scrollbar-outer > .scroll-element .scroll-bar {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px; }

.scrollbar-outer > .scroll-element .scroll-bar {
  background-color: #d9d9d9; }

.scrollbar-outer > .scroll-element .scroll-bar:hover {
  background-color: #c2c2c2; }

.scrollbar-outer > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191; }

/* scrollbar height/width & offset from container borders */
.scrollbar-outer > .scroll-content.scroll-scrolly_visible {
  left: -12px;
  margin-left: 12px; }

.scrollbar-outer > .scroll-content.scroll-scrollx_visible {
  top: -12px;
  margin-top: 12px; }

.scrollbar-outer > .scroll-element.scroll-x .scroll-bar {
  min-width: 10px; }

.scrollbar-outer > .scroll-element.scroll-y .scroll-bar {
  min-height: 10px; }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -14px; }

.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -14px; }

.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -14px; }

.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -14px; }

/*************** SCROLLBAR MAC OS X ***************/
.scrollbar-macosx > .scroll-element,
.scrollbar-macosx > .scroll-element div {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10; }

.scrollbar-macosx > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%; }

.scrollbar-macosx > .scroll-element .scroll-element_track {
  display: none; }

.scrollbar-macosx > .scroll-element .scroll-bar {
  background-color: #6C6E71;
  display: block;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear; }

.scrollbar-macosx:hover > .scroll-element .scroll-bar,
.scrollbar-macosx > .scroll-element.scroll-draggable .scroll-bar {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  opacity: 0.7; }

.scrollbar-macosx > .scroll-element.scroll-x {
  bottom: 0px;
  height: 0px;
  left: 0;
  min-width: 100%;
  overflow: visible;
  width: 100%; }

.scrollbar-macosx > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 0px;
  top: 0;
  width: 0px; }

/* scrollbar height/width & offset from container borders */
.scrollbar-macosx > .scroll-element.scroll-x .scroll-bar {
  height: 7px;
  min-width: 10px;
  top: -9px; }

.scrollbar-macosx > .scroll-element.scroll-y .scroll-bar {
  left: -9px;
  min-height: 10px;
  width: 7px; }

.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_outer {
  left: 2px; }

.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_size {
  left: -4px; }

.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_outer {
  top: 2px; }

.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_size {
  top: -4px; }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-macosx > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -11px; }

.scrollbar-macosx > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -11px; }

/*************** SCROLLBAR LIGHT ***************/
.scrollbar-light > .scroll-element,
.scrollbar-light > .scroll-element div {
  border: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 10; }

.scrollbar-light > .scroll-element {
  background-color: #ffffff; }

.scrollbar-light > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%; }

.scrollbar-light > .scroll-element .scroll-element_outer {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px; }

.scrollbar-light > .scroll-element .scroll-element_size {
  background: #dbdbdb;
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RiZGJkYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlOGU4ZTgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
  background: -moz-linear-gradient(left, #dbdbdb 0%, #e8e8e8 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #dbdbdb), color-stop(100%, #e8e8e8));
  background: -webkit-linear-gradient(left, #dbdbdb 0%, #e8e8e8 100%);
  background: -o-linear-gradient(left, #dbdbdb 0%, #e8e8e8 100%);
  background: -ms-linear-gradient(left, #dbdbdb 0%, #e8e8e8 100%);
  background: linear-gradient(to right, #dbdbdb 0%, #e8e8e8 100%);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px; }

.scrollbar-light > .scroll-element.scroll-x {
  bottom: 0;
  height: 17px;
  left: 0;
  min-width: 100%;
  width: 100%; }

.scrollbar-light > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 0;
  top: 0;
  width: 17px; }

.scrollbar-light > .scroll-element .scroll-bar {
  background: #fefefe;
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZlZmVmZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNWY1ZjUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
  background: -moz-linear-gradient(left, #fefefe 0%, #f5f5f5 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #fefefe), color-stop(100%, #f5f5f5));
  background: -webkit-linear-gradient(left, #fefefe 0%, #f5f5f5 100%);
  background: -o-linear-gradient(left, #fefefe 0%, #f5f5f5 100%);
  background: -ms-linear-gradient(left, #fefefe 0%, #f5f5f5 100%);
  background: linear-gradient(to right, #fefefe 0%, #f5f5f5 100%);
  border: 1px solid #dbdbdb;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px; }

/* scrollbar height/width & offset from container borders */
.scrollbar-light > .scroll-content.scroll-scrolly_visible {
  left: -17px;
  margin-left: 17px; }

.scrollbar-light > .scroll-content.scroll-scrollx_visible {
  top: -17px;
  margin-top: 17px; }

.scrollbar-light > .scroll-element.scroll-x .scroll-bar {
  height: 10px;
  min-width: 10px;
  top: 0px; }

.scrollbar-light > .scroll-element.scroll-y .scroll-bar {
  left: 0px;
  min-height: 10px;
  width: 10px; }

.scrollbar-light > .scroll-element.scroll-x .scroll-element_outer {
  height: 12px;
  left: 2px;
  top: 2px; }

.scrollbar-light > .scroll-element.scroll-x .scroll-element_size {
  left: -4px; }

.scrollbar-light > .scroll-element.scroll-y .scroll-element_outer {
  left: 2px;
  top: 2px;
  width: 12px; }

.scrollbar-light > .scroll-element.scroll-y .scroll-element_size {
  top: -4px; }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-light > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -19px; }

.scrollbar-light > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -19px; }

.scrollbar-light > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -19px; }

.scrollbar-light > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -19px; }

/*************** SCROLLBAR RAIL ***************/
.scrollbar-rail > .scroll-element,
.scrollbar-rail > .scroll-element div {
  border: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 10; }

.scrollbar-rail > .scroll-element {
  background-color: #ffffff; }

.scrollbar-rail > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%; }

.scrollbar-rail > .scroll-element .scroll-element_size {
  background-color: #999;
  background-color: rgba(0, 0, 0, 0.3); }

.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-element_size {
  background-color: #666;
  background-color: rgba(0, 0, 0, 0.5); }

.scrollbar-rail > .scroll-element.scroll-x {
  bottom: 0;
  height: 12px;
  left: 0;
  min-width: 100%;
  padding: 3px 0 2px;
  width: 100%; }

.scrollbar-rail > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  padding: 0 2px 0 3px;
  right: 0;
  top: 0;
  width: 12px; }

.scrollbar-rail > .scroll-element .scroll-bar {
  background-color: #d0b9a0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); }

.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-bar {
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); }

/* scrollbar height/width & offset from container borders */
.scrollbar-rail > .scroll-content.scroll-scrolly_visible {
  left: -17px;
  margin-left: 17px; }

.scrollbar-rail > .scroll-content.scroll-scrollx_visible {
  margin-top: 17px;
  top: -17px; }

.scrollbar-rail > .scroll-element.scroll-x .scroll-bar {
  height: 10px;
  min-width: 10px;
  top: 1px; }

.scrollbar-rail > .scroll-element.scroll-y .scroll-bar {
  left: 1px;
  min-height: 10px;
  width: 10px; }

.scrollbar-rail > .scroll-element.scroll-x .scroll-element_outer {
  height: 15px;
  left: 5px; }

.scrollbar-rail > .scroll-element.scroll-x .scroll-element_size {
  height: 2px;
  left: -10px;
  top: 5px; }

.scrollbar-rail > .scroll-element.scroll-y .scroll-element_outer {
  top: 5px;
  width: 15px; }

.scrollbar-rail > .scroll-element.scroll-y .scroll-element_size {
  left: 5px;
  top: -10px;
  width: 2px; }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -25px; }

.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -25px; }

.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -25px; }

.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -25px; }

/*************** SCROLLBAR DYNAMIC ***************/
.scrollbar-dynamic > .scroll-element,
.scrollbar-dynamic > .scroll-element div {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10; }

.scrollbar-dynamic > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%; }

.scrollbar-dynamic > .scroll-element.scroll-x {
  bottom: 2px;
  height: 7px;
  left: 0;
  min-width: 100%;
  width: 100%; }

.scrollbar-dynamic > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 2px;
  top: 0;
  width: 7px; }

.scrollbar-dynamic > .scroll-element .scroll-element_outer {
  opacity: 0.3;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px; }

.scrollbar-dynamic > .scroll-element .scroll-element_size {
  background-color: #cccccc;
  opacity: 0;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  transition: opacity 0.2s; }

.scrollbar-dynamic > .scroll-element .scroll-bar {
  background-color: #6c6e71;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px; }

/* scrollbar height/width & offset from container borders */
.scrollbar-dynamic > .scroll-element.scroll-x .scroll-bar {
  bottom: 0;
  height: 7px;
  min-width: 24px;
  top: auto; }

.scrollbar-dynamic > .scroll-element.scroll-y .scroll-bar {
  left: auto;
  min-height: 24px;
  right: 0;
  width: 7px; }

.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_outer {
  bottom: 0;
  top: auto;
  left: 2px;
  -webkit-transition: height 0.2s;
  -moz-transition: height 0.2s;
  -o-transition: height 0.2s;
  -ms-transition: height 0.2s;
  transition: height 0.2s; }

.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_outer {
  left: auto;
  right: 0;
  top: 2px;
  -webkit-transition: width 0.2s;
  -moz-transition: width 0.2s;
  -o-transition: width 0.2s;
  -ms-transition: width 0.2s;
  transition: width 0.2s; }

.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_size {
  left: -4px; }

.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_size {
  top: -4px; }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-dynamic > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -11px; }

.scrollbar-dynamic > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -11px; }

/* hover & drag */
.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer {
  overflow: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  opacity: 0.7; }

.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-element_size,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer .scroll-element_size {
  opacity: 1; }

.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-bar,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer .scroll-bar {
  height: 100%;
  width: 100%;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px; }

.scrollbar-dynamic > .scroll-element.scroll-x:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-x.scroll-draggable .scroll-element_outer {
  height: 20px;
  min-height: 7px; }

.scrollbar-dynamic > .scroll-element.scroll-y:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-y.scroll-draggable .scroll-element_outer {
  min-width: 7px;
  width: 20px; }

/*************** SCROLLBAR GOOGLE CHROME ***************/
.scrollbar-chrome > .scroll-element,
.scrollbar-chrome > .scroll-element div {
  border: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 10; }

.scrollbar-chrome > .scroll-element {
  background-color: #ffffff; }

.scrollbar-chrome > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%; }

.scrollbar-chrome > .scroll-element .scroll-element_track {
  background: #f1f1f1;
  border: 1px solid #dbdbdb; }

.scrollbar-chrome > .scroll-element.scroll-x {
  bottom: 0;
  height: 16px;
  left: 0;
  min-width: 100%;
  width: 100%; }

.scrollbar-chrome > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 0;
  top: 0;
  width: 16px; }

.scrollbar-chrome > .scroll-element .scroll-bar {
  background-color: #d9d9d9;
  border: 1px solid #bdbdbd;
  cursor: default;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px; }

.scrollbar-chrome > .scroll-element .scroll-bar:hover {
  background-color: #c2c2c2;
  border-color: #a9a9a9; }

.scrollbar-chrome > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
  border-color: #7e7e7e; }

/* scrollbar height/width & offset from container borders */
.scrollbar-chrome > .scroll-content.scroll-scrolly_visible {
  left: -16px;
  margin-left: 16px; }

.scrollbar-chrome > .scroll-content.scroll-scrollx_visible {
  top: -16px;
  margin-top: 16px; }

.scrollbar-chrome > .scroll-element.scroll-x .scroll-bar {
  height: 8px;
  min-width: 10px;
  top: 3px; }

.scrollbar-chrome > .scroll-element.scroll-y .scroll-bar {
  left: 3px;
  min-height: 10px;
  width: 8px; }

.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_outer {
  border-left: 1px solid #dbdbdb; }

.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_track {
  height: 14px;
  left: -3px; }

.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_size {
  height: 14px;
  left: -4px; }

.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_outer {
  border-top: 1px solid #dbdbdb; }

.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_track {
  top: -3px;
  width: 14px; }

.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_size {
  top: -4px;
  width: 14px; }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-chrome > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -19px; }

.scrollbar-chrome > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -19px; }

.scrollbar-chrome > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -19px; }

.scrollbar-chrome > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -19px; }

.header .center {
  height: 130px; }

#logo {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 0; }
  #logo img {
    width: auto;
    height: auto;
    max-height: 80px;
    max-width: 220px;
    display: block;
    line-height: 1.1; }
  #logo .logo-light {
    display: none; }
  .wide-nav #logo {
    margin-top: -17px; }
  @media (max-width: 999px) {
    .wide-nav #logo {
      margin-top: 0; } }

.top-contacts {
  position: absolute;
  top: 30px;
  left: 250px;
  color: #717a81;
  max-width: 650px; }
  .top-contacts div[id*="bx_incl"] {
    display: inline-block; }
  .top-contacts .phones {
    display: inline-block;
    margin-right: 28px;
    position: relative;
    max-width: 350px;
    vertical-align: -3px; }
    .top-contacts .phones:has(.splash-phones) {
      margin-right: 45px; }
      .top-contacts .phones:has(.splash-phones):after {
        content: '';
        width: 5px;
        height: 5px;
        border: solid #717a81;
        border-width: 0 0 2px 2px;
        position: absolute;
        top: 10px;
        right: -18px;
        transform: rotate(-45deg); }
    .top-contacts .phones:hover .splash-phones {
      opacity: 1;
      visibility: visible; }
  .top-contacts .phone {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
    vertical-align: -3px;
    color: #000; }
    .top-contacts .phone > div {
      display: flex;
      flex-direction: column; }
    .top-contacts .phone a {
      color: #717a81;
      text-decoration: none;
      white-space: nowrap; }
  .top-contacts .desc {
    font-size: 13px;
    line-height: 16px;
    color: #353a3d; }
  .top-contacts .splash-phones {
    position: absolute;
    background-color: #FFF;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    border-bottom: 4px solid var(--color1);
    padding: 15px 20px;
    border-radius: 4px;
    left: -20px;
    top: -15px;
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.2s;
    opacity: 0;
    visibility: hidden; }
  .top-contacts .btn {
    white-space: nowrap; }

.top-nav-block .main-nav.nav > li:last-child {
  margin-right: auto; }

.top-nav-block {
  padding: 13px 25px 14px;
  right: 50%;
  top: 98px;
  position: absolute;
  width: 900px;
  margin-right: -585px;
  display: flex;
  justify-content: center;
  align-items: center; }
  .no-border-nav:not(.solid-nav) .top-nav-block.main-box {
    border-color: #FFF;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.1); }
  .solid-nav .top-nav-block {
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.1); }
    .solid-nav .top-nav-block, .solid-nav .top-nav-block.main-box {
      background: var(--color1, #db3d3d);
      color: #FFF; }
    .solid-nav .top-nav-block .main-nav > li > a {
      color: #FFF; }
    .solid-nav .top-nav-block .main-nav .subnav-container {
      color: #000; }
  .top-nav-block .subnav-simple {
    position: absolute;
    background-color: #FFF;
    top: 60px;
    padding: 10px 20px;
    border-bottom: 3px solid var(--color1, #db3d3d);
    margin: -10px 0 0 -20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s; }
    .top-nav-block .subnav-simple:before {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      height: 15px;
      top: -15px; }
    .top-nav-block .subnav-simple li {
      margin: 5px 0; }
      .top-nav-block .subnav-simple li a {
        color: #000;
        text-transform: none; }
  .top-nav-block li:hover .subnav-simple {
    opacity: 1;
    visibility: visible;
    margin-top: 0; }
  .wide-nav:not(.nav-scrolled) .top-nav-block {
    left: 0;
    margin-right: 0;
    right: 0;
    width: auto; }
    .wide-nav:not(.nav-scrolled) .top-nav-block .subnav-block {
      text-align: left; }
      .wide-nav:not(.nav-scrolled) .top-nav-block .subnav-block.show {
        margin-left: -30px; }
    .wide-nav:not(.nav-scrolled) .top-nav-block .main-nav {
      text-align: center; }
  .float-nav.nav-scrolled .top-nav-block {
    position: fixed;
    top: -100px;
    opacity: 0;
    z-index: 1; }
    .float-nav.nav-scrolled .top-nav-block.nav-showed {
      width: 1170px;
      top: 15px;
      opacity: 1;
      -webkit-transition: opacity 0.7s;
      -khtml-transition: opacity 0.7s;
      -moz-transition: opacity 0.7s;
      -ms-transition: opacity 0.7s;
      -o-transition: opacity 0.7s;
      transition: opacity 0.7s; }
      .float-nav.nav-scrolled .top-nav-block.nav-showed .main-nav {
        margin-right: 130px;
        gap: 0 12px; }
        .float-nav.nav-scrolled .top-nav-block.nav-showed .main-nav .subnav-block.show {
          margin-left: -30px; }
        .float-nav.nav-scrolled .top-nav-block.nav-showed .main-nav .subnav-block:before {
          left: 90px; }
        .float-nav.nav-scrolled .top-nav-block.nav-showed .main-nav .subnav-block:after {
          left: 50px; }

.float-nav.nav-scrolled .header:has(.sign-link.large) .main-nav {
  margin-right: 171px; }

.top-nav-container .subnav-block,
.top-nav-block .main-nav .subnav-block {
  display: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  padding: 20px 30px 0;
  position: absolute;
  left: 0;
  width: 1230px;
  top: -9060px;
  margin-left: -9300px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 3px solid var(--color1, #db3d3d);
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  opacity: 0; }
  .top-nav-container .subnav-block .subnavs-area .subnav-container .subnav-list li:hover > a,
  .top-nav-block .main-nav .subnav-block .subnavs-area .subnav-container .subnav-list li:hover > a {
    color: var(--color1, #db3d3d); }
  .top-nav-container .subnav-block.overflow,
  .top-nav-block .main-nav .subnav-block.overflow {
    overflow: auto; }
    .top-nav-container .subnav-block.overflow .subnavs-area .subnav-container .subnav-list > li,
    .top-nav-block .main-nav .subnav-block.overflow .subnavs-area .subnav-container .subnav-list > li {
      position: static; }
      .top-nav-container .subnav-block.overflow .subnavs-area .subnav-container .subnav-list > li ul,
      .top-nav-block .main-nav .subnav-block.overflow .subnavs-area .subnav-container .subnav-list > li ul {
        left: -1000px;
        top: auto;
        margin-left: 190px;
        max-height: calc(100% - 20px); }
      .top-nav-container .subnav-block.overflow .subnavs-area .subnav-container .subnav-list > li:hover > a,
      .top-nav-block .main-nav .subnav-block.overflow .subnavs-area .subnav-container .subnav-list > li:hover > a {
        color: var(--color1, #db3d3d); }
      .top-nav-container .subnav-block.overflow .subnavs-area .subnav-container .subnav-list > li:hover ul,
      .top-nav-block .main-nav .subnav-block.overflow .subnavs-area .subnav-container .subnav-list > li:hover ul {
        left: auto; }
      .top-nav-container .subnav-block.overflow .subnavs-area .subnav-container .subnav-list > li:nth-child(3) ul,
      .top-nav-block .main-nav .subnav-block.overflow .subnavs-area .subnav-container .subnav-list > li:nth-child(3) ul {
        margin-left: -320px; }
      .top-nav-container .subnav-block.overflow .subnavs-area .subnav-container .subnav-list > li:nth-child(3):hover ul,
      .top-nav-block .main-nav .subnav-block.overflow .subnavs-area .subnav-container .subnav-list > li:nth-child(3):hover ul {
        left: auto; }

.top-nav-block .main-nav .show-on .subnav-block {
  display: block; }

.top-nav-block .main-nav .show-on > a {
  position: relative; }
  .top-nav-block .main-nav .show-on > a:hover:after {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 30px;
    content: ''; }

.top-nav-block .main-nav .subnav-block:hover {
  z-index: 999; }

.top-nav-block .main-nav .subnav-block.show {
  top: 60px;
  margin-left: -300px; }

.top-nav-block .main-nav li:hover .subnav-block {
  opacity: 1;
  z-index: 999; }

.top-nav-block .main-nav .subnav-block .subnav {
  columns: 4;
  column-gap: 30px; }

.top-nav-block .main-nav .subnav > li {
  font-size: 12px;
  line-height: 20px;
  /*display: inline-block;*/
  break-inside: avoid-column;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  width: 270px;
  text-transform: none;
  font-weight: normal;
  padding-bottom: 30px; }

.top-nav-block .main-nav .subnav.short > li {
  vertical-align: top;
  margin-left: 27px; }

.top-nav-block .main-nav .subnav .title,
.top-nav-block .main-nav .subnav .title a {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000;
  text-decoration: none;
  display: block; }

.top-nav-block .main-nav .subnav .categories {
  padding-right: 30px; }

.top-nav-block .main-nav .subnav .categories li {
  display: inline;
  margin-right: 5px; }

.top-nav-block .main-nav .subnav .categories a {
  display: inline;
  text-decoration: underline; }

.top-search-form {
  position: absolute;
  top: 30px;
  right: 200px;
  width: 270px;
  background-color: #FFF;
  border-radius: 3px;
  box-shadow: 0px 0px 5px #b5b5b5; }
  .top-search-form input[type=text] {
    color: #333;
    border: none;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    font-size: 13px;
    line-height: 15px;
    padding: 10px 30px 10px 15px;
    background: none; }
    .top-search-form input[type=text].placeholder {
      color: #a9b7c1; }
    .top-search-form input[type=text]::-moz-placeholder {
      color: #a9b7c1; }
    .top-search-form input[type=text]::-webkit-input-placeholder {
      color: #a9b7c1; }
    .top-search-form input[type=text]:-ms-input-placeholder {
      color: #a9b7c1; }
    .top-search-form input[type=text]::-ms-input-placeholder {
      color: #a9b7c1; }
  .top-search-form button {
    background: none;
    border: none;
    color: #7d858b;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 11px;
    font-size: 13px; }
  .top-search-form .results {
    position: absolute;
    background-color: #FFF;
    padding: 1px;
    left: 0;
    top: 36px;
    width: 430px;
    z-index: 3;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
    border-radius: 3px; }
    .top-search-form .results .item {
      display: flex;
      border-top: 1px solid #e3e4e6;
      padding: 15px 20px; }
      .top-search-form .results .item:first-child {
        border-top: none; }
      .top-search-form .results .item .picture {
        width: 60px;
        height: 60px;
        text-align: center;
        line-height: 60px;
        min-width: 60px;
        margin-right: 35px; }
        .top-search-form .results .item .picture img {
          max-width: 100%;
          max-height: 100%;
          width: auto;
          height: auto;
          vertical-align: middle;
          line-height: 14px;
          font-size: 11px; }
      .top-search-form .results .item .info {
        flex-grow: 1;
        padding-right: 10px; }
        .top-search-form .results .item .info .title {
          font-size: 13px;
          margin-bottom: 10px; }
          .top-search-form .results .item .info .title a {
            text-decoration: none; }
        .top-search-form .results .item .info .price-block .price {
          color: #000;
          font-weight: 500;
          font-size: 18px;
          display: inline-block; }
        .top-search-form .results .item .info .price-block .old-price {
          color: #989898;
          font-size: 13px;
          text-decoration: line-through;
          display: inline-block;
          margin-right: 3px;
          font-weight: 500; }
          .top-search-form .results .item .info .price-block .old-price + .price {
            color: #ff4747; }
      .top-search-form .results .item .extra {
        width: 90px;
        min-width: 90px; }
        .top-search-form .results .item .extra .status {
          font-size: 11px;
          line-height: 14px;
          margin-top: 5px; }
        .top-search-form .results .item .extra .buy-btn {
          margin-left: 0;
          margin-top: 5px; }
      .top-search-form .results .item.section .info .title {
        margin-bottom: 0; }
      .top-search-form .results .item.selected {
        position: relative; }
        .top-search-form .results .item.selected .extra,
        .top-search-form .results .item.selected .info {
          position: relative; }
        .top-search-form .results .item.selected:before {
          position: absolute;
          left: 0;
          top: 0;
          right: 0;
          bottom: 0;
          content: '';
          background-color: rgba(0, 0, 0, 0.05); }
    .top-search-form .results .all-results a {
      display: inline-block;
      border-radius: 3px;
      box-shadow: none;
      background-color: #f3f4f6;
      color: #878787;
      text-transform: none;
      font-size: 13px;
      font-weight: normal;
      padding: 10px 15px;
      line-height: 15px;
      text-decoration: none; }
      .top-search-form .results .all-results a:hover {
        color: #000; }
    .minimalistic-search-result .top-search-form .results .item .info .price-block,
    .minimalistic-search-result .top-search-form .results .item .extra,
    .minimalistic-search-result .top-search-form .results .item .picture {
      display: none; }

.top-basket-block {
  color: #8f969c;
  font-size: 12px;
  line-height: 14px;
  position: absolute;
  right: 0;
  top: 21px;
  border: 1px solid #e3e4e6;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAABVElEQVR42q3U03YzUQBA4d+2bdS2bdu2bdu2rms8Qv1a3RdFjNNkrS842NHM3KhoG6xBF4YRdUMXN0KGMEcuusRLiuO/MAUnOAgyxxvJ6FfsoA/tAtqwhhzJ6Bf04fU1vm0ToiUHXqEfHwWDd9EHfcnBx+jGf8HofwziseTgHbTCXDAajAZFE81wEoyWIFnRRB38BIK30A07RZNliBSIfsQQ3iqazEaiQNQa3bipaDIZSQrGb+IRXuITfsMYdvDCNPKVvWMQVpCMfFSgAa3oQBf6znWhFY2ow3dlUXfsIQuxCIUvnGGO//iCF3iIu5r8Nq4o1fWVygijKEE34hSs0ZP4Oaw0iX7GKXrhh3nE4da5r5hHKqKxAj1Noit4dP7aAAfoOLeOLon1FchUF32EEYTiCYoxArtziVjEd7zDDHw0+QlsMIcxDOOdzHwKZjGJIkVHwBlFUFe6/yFCjAAAAABJRU5ErkJggg==) 20px 50% no-repeat;
  border-radius: 3px;
  padding: 10px 0 0 53px;
  width: 87px;
  height: 41px;
  box-sizing: content-box; }
  .top-basket-block .title {
    line-height: 17px;
    color: #000;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 13px; }
  .top-basket-block.full {
    color: #FFF;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAaJJREFUeNqs1b0vBEEYBvDZu+Xu3EUjIYL4iAgqlRAaEZ2GhkqhVEgoVDqV+AdINDoFhUtcR6PQ6BBfkcjpxGdiuXPHet7k2WTMbUjmTPLL7s3tvTsz7ztzju/7C0qpakjAIWypMlsEdmEbLqFH/UNz4ZT3LzAPg/BlGe8dbl2towANMAp5i4A+dMGea3RewAo8WI50EZ4iWscbOFBpGbACUnCiB5UpF1kJNq0NopA1g35AlWXQDpk6eHrQIrOetAzaKpkP6lQZFZCyrPc6uAoLmrMcqQSMwXVYUA/iFkEbmZP7YEeZI3VCfuTwbIjxmmBCk1yuMSkl1npJUMneOIOk+OM4azDKmblaYgu8SoIy+t43p1/DET1y5DlujFdePd7ntcAlB4repKT2Yb3cU0pvsudbYJYZPYZN45lOmOBypOEorL7MNe2DejiAIZjkc6IJ5uCGL5zhS34dqbQzWOL6ZWEVurVRymG+wc/ykgE4/2ukzzDC7A9zehna4bI0Qy20B1vzR/3hP8rs64VpZv0TluFO+34K+pl5OX/XzAr4FmAADlxjKdx5a5wAAAAASUVORK5CYII=) 20px 50% no-repeat;
    background-color: var(--color2, #528dca);
    border-color: var(--color2, #528dca); }
    .top-basket-block.full .title {
      color: #FFF; }
    .top-basket-block.full .count {
      position: absolute;
      width: 17px;
      height: 17px;
      line-height: 17px;
      border-radius: 50%;
      background-color: #fff;
      text-align: center;
      font-size: 10px;
      top: 10px;
      left: 30px;
      color: var(--color1, #db3d3d); }
    .top-basket-block.full a {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }

.mobile-nav-block .top-search-form {
  width: auto;
  margin: 10px 15px 0;
  position: relative;
  top: 0;
  right: 0; }

.sign-link {
  position: absolute;
  right: 160px;
  top: 35px; }
  .sign-link svg,
  .sign-link img {
    width: 27px;
    height: auto; }
  .sign-link .text {
    display: none; }
  .sign-link.signed {
    color: var(--color1, #db3d3d); }
    .sign-link.signed .colored {
      fill: var(--color1, #db3d3d);
      color: var(--color1, #db3d3d); }
  @media (min-width: 510px) {
    .sign-link.large {
      right: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 35px;
      width: 170px;
      border: 1px solid #eaeaea;
      border-radius: 3px;
      top: 30px;
      gap: 10px;
      text-decoration: none; }
      .sign-link.large img, .sign-link.large svg {
        height: 27px;
        width: auto; }
      .sign-link.large .text {
        color: #000;
        font-size: 13px;
        display: block; }
      .sign-link.large:hover {
        background-color: RGB(from var(--color1) r g b/0.05);
        border-color: RGB(from var(--color1) r g b/0.05); } }
  @media (max-width: 1000px) {
    .sign-link.large {
      right: 50px;
      top: 33px; } }
  @media (max-width: 509px) {
    .sign-link.large {
      right: 50px;
      top: 31px; } }

.nav-trigger {
  display: none;
  position: absolute;
  right: 0;
  height: 24px;
  width: 26px;
  box-sizing: border-box;
  border-style: solid;
  border-width: 4px 0;
  cursor: pointer;
  top: 40px;
  color: var(--color1, #db3d3d); }
  .nav-trigger:before {
    display: block;
    content: '';
    border-top: 4px solid;
    margin-top: 6px; }

@media screen and (min-width: 1000px) {
  .float-nav.nav-scrolled .top-basket-block {
    right: 50%;
    position: fixed;
    top: 20px;
    margin-right: -580px;
    z-index: 2;
    color: #FFF;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAaJJREFUeNqs1b0vBEEYBvDZu+Xu3EUjIYL4iAgqlRAaEZ2GhkqhVEgoVDqV+AdINDoFhUtcR6PQ6BBfkcjpxGdiuXPHet7k2WTMbUjmTPLL7s3tvTsz7ztzju/7C0qpakjAIWypMlsEdmEbLqFH/UNz4ZT3LzAPg/BlGe8dbl2towANMAp5i4A+dMGea3RewAo8WI50EZ4iWscbOFBpGbACUnCiB5UpF1kJNq0NopA1g35AlWXQDpk6eHrQIrOetAzaKpkP6lQZFZCyrPc6uAoLmrMcqQSMwXVYUA/iFkEbmZP7YEeZI3VCfuTwbIjxmmBCk1yuMSkl1npJUMneOIOk+OM4azDKmblaYgu8SoIy+t43p1/DET1y5DlujFdePd7ntcAlB4repKT2Yb3cU0pvsudbYJYZPYZN45lOmOBypOEorL7MNe2DejiAIZjkc6IJ5uCGL5zhS34dqbQzWOL6ZWEVurVRymG+wc/ykgE4/2ukzzDC7A9zehna4bI0Qy20B1vzR/3hP8rs64VpZv0TluFO+34K+pl5OX/XzAr4FmAADlxjKdx5a5wAAAAASUVORK5CYII=) 20px 50% no-repeat;
    background-color: var(--color2, #528dca);
    border-color: var(--color2, #528dca);
    opacity: 0; }
    .float-nav.nav-scrolled .top-basket-block .title {
      color: #FFF; }
    .float-nav.nav-scrolled .top-basket-block .count {
      position: absolute;
      width: 17px;
      height: 17px;
      line-height: 17px;
      border-radius: 50%;
      background-color: #fff;
      text-align: center;
      font-size: 10px;
      top: 10px;
      left: 30px; }
    .float-nav.nav-scrolled .top-basket-block a {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0; }
  .float-nav.nav-scrolled.nav-showed .sign-link.large {
    position: fixed;
    top: 29px;
    right: 50%;
    z-index: 10;
    margin-right: -571px; }
  .float-nav.nav-scrolled.solid-nav .sign-link.large {
    color: var(--btnColorSecond, #FFF);
    border-color: var(--btnColorSecond, #FFF); }
    .float-nav.nav-scrolled.solid-nav .sign-link.large .text {
      color: var(--btnColorSecond, #FFF); }
  body.float-nav.nav-scrolled.solid-nav .top-basket-block {
    color: #8f969c;
    border: 1px solid #e3e4e6;
    background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAABVElEQVR42q3U03YzUQBA4d+2bdS2bdu2bdu2rms8Qv1a3RdFjNNkrS842NHM3KhoG6xBF4YRdUMXN0KGMEcuusRLiuO/MAUnOAgyxxvJ6FfsoA/tAtqwhhzJ6Bf04fU1vm0ToiUHXqEfHwWDd9EHfcnBx+jGf8HofwziseTgHbTCXDAajAZFE81wEoyWIFnRRB38BIK30A07RZNliBSIfsQQ3iqazEaiQNQa3bipaDIZSQrGb+IRXuITfsMYdvDCNPKVvWMQVpCMfFSgAa3oQBf6znWhFY2ow3dlUXfsIQuxCIUvnGGO//iCF3iIu5r8Nq4o1fWVygijKEE34hSs0ZP4Oaw0iX7GKXrhh3nE4da5r5hHKqKxAj1Noit4dP7aAAfoOLeOLon1FchUF32EEYTiCYoxArtziVjEd7zDDHw0+QlsMIcxDOOdzHwKZjGJIkVHwBlFUFe6/yFCjAAAAABJRU5ErkJggg==) 20px 50% no-repeat; }
    body.float-nav.nav-scrolled.solid-nav .top-basket-block .title {
      color: #000; }
    body.float-nav.nav-scrolled.solid-nav .top-basket-block .count {
      color: #FFF;
      background-color: var(--color1, #db3d3d); }
  .nav-scrolled.float-nav .header:before {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    box-shadow: 0 0 130px rgba(0, 0, 0, 0.55);
    height: 130px;
    top: -130px;
    opacity: 0; }
  .nav-showed.float-nav.nav-scrolled .header:before,
  .nav-showed.float-nav.nav-scrolled .top-basket-block {
    -webkit-transition: opacity 0.7s;
    -khtml-transition: opacity 0.7s;
    -moz-transition: opacity 0.7s;
    -ms-transition: opacity 0.7s;
    -o-transition: opacity 0.7s;
    transition: opacity 0.7s;
    opacity: 1; } }

@media screen and (max-width: 999px) {
  .header .center > .top-search-form {
    display: none; }
  .header .top-search-form {
    display: none; }
  .header, .header .center {
    height: 105px; }
  .top-basket-block {
    left: 270px;
    right: auto;
    top: 26px; }
  .nav-trigger {
    display: block; }
  .sign-link {
    right: 44px;
    top: 38px; }
    .sign-link img {
      width: 30px;
      height: auto; }
  #logo img {
    max-height: 60px; } }

@media screen and (max-width: 509px) {
  .header, .header .center {
    height: 90px; }
  #logo {
    max-width: 37.33%;
    width: 140px; }
    #logo img {
      max-width: 100%;
      width: auto;
      height: auto; }
  .top-basket-block {
    left: 37.33%;
    margin-left: 25px;
    right: auto;
    top: 18px; }
  #was_shop_auth_link + .top-basket-block,
  .was_shop_auth_link + .top-basket-block,
  #was_shop_auth_link + #basket_small_cont .top-basket-block,
  .was_shop_auth_link + #basket_small_cont .top-basket-block,
  .sign-link + .top-basket-block {
    margin-left: 10px; }
  .nav-trigger {
    top: 33px; }
  .sign-link {
    right: 33px;
    top: 31px; }
    .sign-link img {
      width: 25px; } }

.bottom-payment-nav {
  display: flex;
  flex-wrap: wrap;
  width: 455px;
  max-width: 100%; }
  .bottom-payment-nav li {
    margin-right: 23px;
    margin-bottom: 10px; }
  .bottom-payment-nav img {
    filter: gray;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    max-width: 100%;
    height: auto;
    width: auto;
    opacity: 0.6; }
    .bottom-payment-nav img:hover {
      -webkit-filter: grayscale(0);
      filter: none;
      opacity: 1; }

.footer {
  position: absolute;
  left: 0;
  right: 0;
  background-color: #fff; }

.footer {
  bottom: 0;
  height: 230px;
  border-top: 5px solid #e5e6e8; }
  .index .footer {
    border-top: none; }
  .footer .social-nav {
    max-width: 165px;
    position: absolute;
    right: 0;
    top: 60px; }
  @media (max-width: 1000px) {
    .footer .social-nav {
      top: 15px; } }
  @media (max-width: 509px) {
    .footer .social-nav {
      position: static;
      max-width: none;
      margin-top: 20px;
      order: 3; }
    .footer .bottom-nav {
      order: 1; }
      .footer .bottom-nav .main-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0 15px; } }

.agree-link {
  text-decoration: none;
  color: #969EA4;
  font-size: 11px;
  margin-top: 5px;
  font-weight: normal;
  left: 0; }

.copyright {
  position: static;
  max-width: 270px;
  color: #717a81;
  line-height: 22px;
  font-weight: bold;
  top: 56px;
  padding: 56px 0 10px; }

.dev {
  position: absolute;
  right: 0;
  text-align: right;
  padding-right: 35px;
  font-size: 12px;
  line-height: 14px;
  top: 57px; }
  .dev a {
    color: #717a81;
    text-decoration: none; }
    .dev a:hover {
      text-decoration: underline; }
    .dev a img {
      position: absolute;
      right: 0;
      top: 0px; }

.bottom-nav {
  position: absolute;
  left: 300px;
  top: 54px;
  right: 200px;
  font-weight: bold; }

.bottom-nav .main-nav {
  line-height: 26px;
  margin-bottom: 20px;
  gap: 10px 20px; }

.bottom-nav .main-nav li {
  margin: 0; }

.bottom-nav .main-nav li a {
  color: #717a81; }

.bottom-nav .main-nav li a.current {
  color: var(--color1, #db3d3d); }

.bottom-nav .main-nav li a:hover {
  color: var(--color2, #528dca); }

@media (max-width: 1000px) {
  .footer {
    height: auto;
    position: relative;
    padding-bottom: 20px; }
  .copyright {
    padding-top: 25px; }
  .bottom-nav {
    left: 0;
    top: 0;
    right: auto;
    padding-top: 30px;
    position: relative; } }

@media (max-width: 509px) {
  .footer {
    height: auto;
    padding-bottom: 20px; }
    .footer .center {
      display: flex;
      flex-direction: column; }
    .footer .bottom-nav {
      order: 1; }
  .bottom-info {
    order: 2; } }

.main-catalog-list,
.main-services-list {
  display: flex;
  margin: 0 -15px;
  flex-wrap: wrap;
  gap: 30px 0; }
  .main-catalog-list .item,
  .main-services-list .item {
    height: 200px;
    position: relative;
    width: 25%; }
    .main-catalog-list .item .picture,
    .main-services-list .item .picture {
      background-color: #f3f4f6;
      height: 100%;
      margin: 0 15px; }
      .main-catalog-list .item .picture img,
      .main-services-list .item .picture img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .main-catalog-list .item .wrapper,
    .main-services-list .item .wrapper {
      position: absolute;
      left: 15px;
      right: 15px;
      top: 0;
      bottom: 0;
      color: #000;
      text-decoration: none;
      background-repeat: no-repeat;
      background-position: 50% 0;
      background-size: cover;
      -webkit-transition: opacity 0.3s;
      -khtml-transition: opacity 0.3s;
      -moz-transition: opacity 0.3s;
      -ms-transition: opacity 0.3s;
      -o-transition: opacity 0.3s;
      transition: opacity 0.3s; }
      .main-catalog-list .item .wrapper:hover,
      .main-services-list .item .wrapper:hover {
        opacity: 0.8; }
    .main-catalog-list .item .title,
    .main-services-list .item .title {
      position: relative;
      font-size: 1.0625rem;
      background-color: #ffffffb0;
      line-height: 1.25rem;
      padding: 8px 13px 9px 13px;
      border-radius: 3px;
      display: inline-block;
      margin: 15px 30px 0 15px;
      max-width: 100%;
      word-break: break-word;
      overflow: hidden;
      max-height: 117px; }
    .main-catalog-list .item.span2,
    .main-services-list .item.span2 {
      width: 50%; }
    .main-catalog-list .item.span3,
    .main-services-list .item.span3 {
      width: 75%; }
    .main-catalog-list .item.span4,
    .main-services-list .item.span4 {
      width: 100%; }
  .main-catalog-list.items-bg-multiline .item .wrapper,
  .main-services-list.items-bg-multiline .item .wrapper {
    padding: 15px 15px; }
  .main-catalog-list.items-bg-multiline .item .title,
  .main-services-list.items-bg-multiline .item .title {
    display: inline;
    border-radius: 1px;
    padding: 1px 13px 3px 13px;
    line-height: 23px;
    background-color: #FFF;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    margin: 0; }
  .main-catalog-list.items-no-bg .title,
  .main-services-list.items-no-bg .title {
    background: none; }
  .main-catalog-list.items-bg-solid .title,
  .main-services-list.items-bg-solid .title {
    background-color: #FFF; }
  @media (max-width: 999px) {
    .main-catalog-list .item,
    .main-services-list .item {
      width: 50%; }
      .main-catalog-list .item.span3,
      .main-services-list .item.span3 {
        width: 50%; }
      .main-catalog-list .item.span2, .main-catalog-list .item.span4,
      .main-services-list .item.span2,
      .main-services-list .item.span4 {
        width: 100%; }
      .main-catalog-list .item .title,
      .main-services-list .item .title {
        margin-right: 15px; } }
  @media (max-width: 509px) {
    .main-catalog-list .item,
    .main-services-list .item {
      height: 160px; }
      .main-catalog-list .item .title,
      .main-services-list .item .title {
        font-size: 0.875rem; }
    .main-catalog-list.items-bg-multiline .item .title,
    .main-services-list.items-bg-multiline .item .title {
      line-height: 20px; } }

.main-banner {
  margin: 0; }
  .main-banner img {
    width: 100%;
    height: auto;
    display: block; }

.main-reviews-section + .center,
.center + .main-reviews-section {
  margin-top: 45px; }

.main-section {
  padding: 45px 0; }
  .main-section .main-section-content {
    width: 1170px;
    margin: 0 auto; }
  .main-section.full-width .main-section-content {
    width: auto;
    padding: 0 15px; }
  .main-section.main-section-map .main-section-content, .main-section.no-padding .main-section-content {
    padding: 0; }
  .main-section:first-child {
    padding-top: 80px; }
  .main-section.main-slider-section {
    padding-top: 0;
    padding-bottom: 30px; }
    .main-section.main-slider-section + .main-section.bg-white {
      padding-top: 1px; }
  .main-section h2 a {
    text-decoration: none; }
  .main-section.bg-white {
    background-color: #FFF; }
  .main-section.bg-white + .main-section.bg-white,
  .main-section + .main-section {
    padding-top: 1px; }
  .main-section.bg-white + .main-section:not(.bg-white),
  .instagramm-section + .main-section,
  .main-section + .main-section.bg-white {
    padding-top: 45px; }
  .main-section.bg-white + .main-section.main-map-section, .main-section.main-map-section {
    padding: 0; }
  .main-section .main-banner {
    margin: 0; }
  @media screen and (min-width: 1000px) and (max-width: 1170px) {
    .main-section .main-section-content {
      padding: 0 15px; } }
  @media screen and (max-width: 999px) {
    .main-section:first-child {
      padding-top: 1px; }
    .main-section .main-section-content {
      width: 510px; } }
  @media screen and (max-width: 509px) {
    .main-section .main-section-content {
      width: 345px; } }

@media (max-width: 999px) {
  .main-reviews-section + .center,
  .center + .main-reviews-section {
    margin-top: 30px; }
  .main-section {
    padding: 30px 0; }
    .main-section.bg-white + .main-section.bg-white,
    .main-section + .main-section {
      padding-top: 1px; }
    .main-section.bg-white + .main-section:not(.bg-white),
    .main-section + .main-section.bg-white {
      padding-top: 30px; }
    .main-map-section + .main-section,
    .main-reviews-section + .main-section,
    .main-section + .main-reviews-section {
      padding-top: 30px; }
    .main-section.main-map-section {
      padding: 0; } }

.main-about {
  overflow: hidden;
  margin: 0;
  display: flex;
  gap: 20px 0; }
  .main-about .article {
    margin: 0; }

.main-news-block {
  /*float: right; width: 470px;*/
  margin-left: 30px;
  flex: 2 0 270px; }

.main-news .shorties .item {
  margin: 20px 0; }

.main-news .shorties .data {
  color: #878787;
  margin-bottom: 10px; }

.main-text {
  flex: 1 0 570px; }
  .main-text.article {
    margin-bottom: 0; }
    .main-text.article p {
      margin-top: 0; }

.main-column-left .main-articles {
  margin-top: 30px; }

.main-articles-list {
  margin: 25px 0 20px; }
  .main-articles-list .item {
    overflow: hidden;
    margin: 20px 0; }
    .main-articles-list .item .picture {
      float: left;
      margin-right: 15px;
      width: 130px;
      max-height: 88px;
      overflow: hidden;
      line-height: 0; }
      .main-articles-list .item .picture img {
        width: 100%;
        height: auto; }
    .main-articles-list .item .text {
      overflow: hidden; }
  .main-column-left .main-articles-list .item .picture {
    width: 100px;
    height: 68px; }

.sidebar .main-news,
.sidebar .main-articles {
  margin: 40px 0; }

.main-actions-block {
  margin: 0 0 0; }

.center + .center .main-actions-block {
  margin-top: 30px; }

.main-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0 30px;
  margin-bottom: 20px; }
  .main-section .main-actions {
    margin-bottom: 0; }
  .main-actions.grid {
    grid-gap: 30px;
    justify-content: start;
    display: grid;
    grid-template: " a a b c"
 " a a d e"; }
    .main-actions.grid .item.large {
      grid-area: a; }
      .main-actions.grid .item.large + .small {
        grid-area: b; }
        .main-actions.grid .item.large + .small + .small {
          grid-area: c; }
          .main-actions.grid .item.large + .small + .small + .small {
            grid-area: d; }
            .main-actions.grid .item.large + .small + .small + .small + .small {
              grid-area: e; }
    .edge-and-ie .main-actions.grid {
      display: block; }
      .edge-and-ie .main-actions.grid .item {
        float: left;
        margin-bottom: 30px; }
        .edge-and-ie .main-actions.grid .item.large {
          height: 357px; }
        .edge-and-ie .main-actions.grid .item.small {
          margin-left: 30px; }
  .main-actions .item {
    width: 270px;
    background-color: #fff;
    position: relative; }
    .main-actions .item .btn-more {
      margin-top: 15px; }
    .main-actions .item .picture {
      height: 164px;
      overflow: hidden;
      -webkit-transition: opacity 0.3s;
      -khtml-transition: opacity 0.3s;
      -moz-transition: opacity 0.3s;
      -ms-transition: opacity 0.3s;
      -o-transition: opacity 0.3s;
      transition: opacity 0.3s; }
      .main-actions .item .picture img {
        width: 100%;
        height: auto; }
    .main-actions .item .text {
      padding: 15px 20px; }
    .main-actions .item .date {
      color: #909090;
      font-size: 12px;
      font-weight: 100;
      margin-bottom: 3px; }
    .main-actions .item .title {
      font-weight: 400;
      font-size: 16px;
      line-height: 20px;
      color: #383d41;
      margin-bottom: 10px; }
      .main-actions .item .title a {
        color: #383d41;
        text-decoration: none; }
        .main-actions .item .title a:hover {
          color: var(--color2, #528dca); }
    .main-actions .item .description {
      font-size: 12px;
      line-height: 18px; }
    .main-actions .item:hover .picture {
      opacity: 0.8; }
    .main-actions .item.small .text {
      position: absolute;
      left: 0;
      bottom: 0;
      right: 0;
      top: 5px;
      background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0) 0%, #FFF 100%);
      background-image: -o-linear-gradient(rgba(255, 255, 255, 0) 0%, #FFF 100%);
      background-image: linear-gradient(rgba(255, 255, 255, 0) 0%, #FFF 100%);
      display: flex;
      align-items: flex-end; }
  .main-actions .action-countdown {
    position: absolute;
    background-color: #db3d3d;
    color: #FFF;
    font-size: 11px;
    line-height: 13px;
    padding: 7px 7px 7px 10px;
    top: 20px;
    left: -10px; }
    .main-actions .action-countdown:after {
      content: '';
      position: absolute;
      border-style: solid;
      border-width: 28px 0 28px 14px;
      border-color: transparent #db3d3d;
      right: -14px;
      top: 0; }
    .main-actions .action-countdown .timer {
      display: flex;
      justify-content: space-between;
      margin-top: 2px; }
      .main-actions .action-countdown .timer .timer-item {
        text-align: center;
        margin-right: 21px;
        font-size: 10px; }
        .main-actions .action-countdown .timer .timer-item .dig {
          font-size: 20px;
          font-weight: 500;
          margin-bottom: 1px; }
        .main-actions .action-countdown .timer .timer-item:last-child {
          margin-right: 0; }
          .main-actions .action-countdown .timer .timer-item:last-child:after {
            display: none; }

@media (min-width: 510px) {
  .main-actions .item.large {
    width: 570px;
    display: flex;
    position: relative; }
    .main-actions .item.large:before {
      z-index: 1;
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      width: 440px;
      background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAbkAAAABCAQAAADpsxgPAAAAWklEQVR42nzQhQGAMAxE0aT7z4zzkHpjdx/NNeNYee+Qf/tYZd/YEimj+XS1mpBxVRlRK+7K4yMmfXU3uaLotfZmqkr1DbyovvdlUP4dIlzD8S8rZduwAqMAABN3AgAxFEFqAAAAAElFTkSuQmCC) 0 0 repeat; }
    .main-actions .item.large .picture {
      width: 345px;
      flex: 0 0 345px;
      min-height: 100%;
      position: relative; }
      .main-actions .item.large .picture .fit-container {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-repeat: no-repeat;
        background-size: cover; }
        .main-actions .item.large .picture .fit-container img {
          display: none; }
      .main-actions .item.large .picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 0 0; }
    .main-actions .item.large .text {
      position: relative;
      padding-left: 0;
      padding-top: 30px;
      min-height: 280px;
      z-index: 1; }
      .main-actions .item.large .text .date {
        font-size: 12px;
        margin-bottom: 5px; }
      .main-actions .item.large .text .title {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 5px; }
    .main-actions .item.large:hover .picture {
      opacity: 1; }
    .main-actions .item.large:hover .text, .main-actions .item.large:hover:before {
      z-index: 1; } }

@media (max-width: 999px) and (min-width: 510px) {
  .main-actions .item.large .picture {
    width: 300px;
    flex: 0 0 300px; } }

@media screen and (max-width: 999px) {
  .main-actions {
    margin-bottom: 0; }
    .main-actions .item {
      width: 240px;
      margin-bottom: 30px; }
      .main-actions .item .picture {
        height: 145px; }
    .main-actions.grid {
      display: flex;
      grid-gap: 0;
      justify-content: space-between; }
      .edge-and-ie .main-actions.grid {
        display: flex; }
        .edge-and-ie .main-actions.grid .item {
          float: none; }
          .edge-and-ie .main-actions.grid .item.large {
            width: 100%; }
          .edge-and-ie .main-actions.grid .item.small {
            margin-left: 0; } }

@media screen and (max-width: 509px) {
  .main-actions .item {
    width: 100%;
    margin-bottom: 30px; }
    .main-actions .item .picture {
      height: 210px; }
    .main-actions .item .description {
      font-size: 13px; }
    .main-actions .item .date {
      font-size: 13px; } }

.main-brands {
  position: relative;
  overflow: hidden; }
  .main-brands .item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto; }
  .main-brands .swiper-slide {
    box-sizing: border-box; }
  .main-brands img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    max-width: 100%;
    height: auto;
    width: auto; }
    .main-brands img:hover {
      -webkit-filter: grayscale(0);
      filter: none; }
  .main-brands.main-brands-hover-color .item img, .main-brands.main-brands-grayscale .item img,
  .main-brands-hover-color .main-brands .item img,
  .main-brands-grayscale .main-brands .item img {
    filter: gray;
    -webkit-filter: grayscale(1);
    filter: grayscale(1); }
  .main-brands.main-brands-hover-color .item img:hover,
  .main-brands-hover-color .main-brands .item img:hover {
    -webkit-filter: grayscale(0);
    filter: none; }
  .main-brands .slick-list {
    position: relative;
    overflow: hidden; }
  .main-brands .slick-track {
    display: flex;
    align-items: center; }
    .main-brands .slick-track .item {
      text-align: center; }
  .main-brands .slick-arrow {
    position: absolute;
    top: 50%;
    font-size: 32px;
    color: #889095;
    cursor: pointer;
    margin-top: -16px;
    z-index: 1; }
    .main-brands .slick-arrow.slick-disabled {
      opacity: 0;
      visibility: hidden; }
    .main-brands .slick-arrow:hover {
      color: #000; }
    .main-brands .slick-arrow.prev {
      left: 0; }
    .main-brands .slick-arrow.next {
      right: 0; }
    .main-brands .slick-arrow.slick-disabled {
      color: #889095;
      opacity: 0.4; }
  .main-brands .swiper-button {
    position: absolute;
    top: 50%;
    font-size: 32px;
    color: #889095;
    cursor: pointer;
    margin-top: -16px;
    z-index: 1; }
    .main-brands .swiper-button.slick-disabled {
      opacity: 0;
      visibility: hidden; }
    .main-brands .swiper-button:hover {
      color: #000; }
    .main-brands .swiper-button.button-prev {
      left: 0; }
    .main-brands .swiper-button.button-next {
      right: 0; }
    .main-brands .swiper-button.swiper-button-disabled {
      color: #889095;
      opacity: 0.4; }
  .main-brands.tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px 0; }
    .main-brands.tiles .item {
      text-align: center; }
  @media (max-width: 999px) {
    .main-brands {
      overflow: visible; }
      .main-brands .item {
        padding: 0 15px; }
      .main-brands img {
        -webkit-filter: grayscale(0);
        filter: none; }
      .main-brands.tiles {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); }
      .main-brands .slick-arrow {
        z-index: 1;
        width: 30px; }
        .main-brands .slick-arrow.prev {
          left: -15px; }
        .main-brands .slick-arrow.next {
          right: -15px;
          text-align: right; }
      .main-brands .swiper-button {
        z-index: 1;
        width: 30px; }
        .main-brands .swiper-button.button-prev {
          left: -15px; }
        .main-brands .swiper-button.button-next {
          right: -15px;
          text-align: right; } }

.main-slider-block {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden; }
  .main-slider-block .slider-arrow {
    position: absolute;
    width: 48px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.08);
    top: 50%;
    margin-top: -44px;
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center;
    line-height: 46px;
    color: #FFF;
    font-size: 38px;
    box-sizing: border-box; }
    .main-slider-block .slider-arrow:hover {
      background-color: rgba(0, 0, 0, 0.4); }
    .main-slider-block .slider-arrow.prev {
      left: 85px;
      padding-right: 3px; }
    .main-slider-block .slider-arrow.next {
      right: 85px;
      padding-left: 3px; }
  .main-slider-block .main-slider {
    width: 1440px;
    position: relative;
    left: 50%;
    margin-left: -720px;
    overflow: hidden;
    padding-bottom: 40px; }
    .main-slider-block .main-slider .items {
      width: 9000%;
      position: relative; }
      .main-slider-block .main-slider .items .item {
        width: 1440px;
        height: 460px;
        overflow: hidden;
        position: relative;
        float: left;
        background: #f6f6fb url(images/design/preloader.gif) no-repeat 50% 50%; }
        .main-slider-block .main-slider .items .item > a {
          display: block;
          width: 100%;
          height: 100%;
          position: relative; }
        .main-slider-block .main-slider .items .item iframe {
          position: relative;
          width: 100%;
          height: 100%; }
        .main-slider-block .main-slider .items .item video {
          width: auto;
          height: auto;
          position: relative;
          left: 50%;
          top: 50%;
          -webkit-transform: translate(-50%, -50%);
          -khtml-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
        .main-slider-block .main-slider .items .item iframe,
        .main-slider-block .main-slider .items .item video {
          max-height: 100%; }
        .main-slider-block .main-slider .items .item video,
        .main-slider-block .main-slider .items .item img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
        .main-slider-block .main-slider .items .item .fit-container {
          display: block;
          width: 100%;
          height: 100%; }
        .main-slider-block .main-slider .items .item video + .fit-container,
        .main-slider-block .main-slider .items .item video + img,
        .main-slider-block .main-slider .items .item video + a img {
          position: absolute;
          top: 0;
          left: 0; }
        .main-slider-block .main-slider .items .item .alternative {
          display: none; }
        .main-slider-block .main-slider .items .item .text {
          position: absolute;
          width: 520px;
          left: 45%;
          top: 45%;
          margin-top: 30px;
          color: #000;
          -webkit-transform: translateY(-50%);
          -khtml-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          -o-transform: translateY(-50%);
          transform: translateY(-50%); }
          .main-slider-block .main-slider .items .item .text .item-title {
            font-size: 32px;
            line-height: 38px;
            font-weight: 500;
            margin-bottom: 20px;
            margin-right: 20px;
            display: block; }
          .main-slider-block .main-slider .items .item .text .description {
            font-size: 17px;
            line-height: 26px;
            font-weight: 300;
            display: block; }
        .main-slider-block .main-slider .items .item.light .text {
          color: #FFF; }
    .main-slider-block .main-slider .navi {
      position: absolute;
      bottom: 0px;
      text-align: center;
      left: 0;
      right: 0;
      cursor: pointer; }
      .main-slider-block .main-slider .navi a {
        display: inline-block;
        width: 8px;
        height: 8px;
        border: 1px solid #c8c8c8;
        margin: 0 5px;
        border-radius: 50%; }
        .main-slider-block .main-slider .navi a.active {
          color: var(--color1, #db3d3d);
          background-color: var(--color1, #db3d3d); }

.main-features {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0; }
  .main-features .item {
    box-sizing: border-box;
    padding: 0 15px;
    flex: 0 0 25%;
    max-width: 25%;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.2222;
    font-weight: 500;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px 15px; }
    .main-features .item .icon {
      box-sizing: border-box;
      min-width: 55px;
      width: 55px;
      height: 55px;
      display: flex;
      justify-content: center;
      align-items: center;
      line-height: 0; }
      .main-features .item .icon img {
        width: 100%;
        height: 100%;
        object-fit: scale-down; }
    .main-features .item .text {
      max-width: 240px;
      word-wrap: break-word; }
      .main-features .item .text a {
        text-decoration: none; }
        .main-features .item .text a:hover {
          text-decoration: underline; }
  .main-features.items-inline .item {
    flex-direction: row; }
    .main-features.items-inline .item .text {
      align-self: center;
      max-width: calc(100% - 70px); }
  .main-features.items-inline:not(.icons-bordered) .item .icon {
    min-width: 65px;
    width: 65px;
    height: 65px; }
  .main-features.icons-bordered .icon {
    border: 1px solid var(--color2, #528dca);
    padding: 7px; }
  .main-features.icons-round .icon {
    border-radius: 50%; }
  @media (max-width: 1000px) {
    .main-features {
      margin: 25px -15px; }
      .main-features .item {
        width: 50%;
        min-width: 50%;
        font-size: 13px;
        line-height: 16px;
        gap: 15px; } }
  @media (max-width: 509px) {
    .main-features {
      margin: 25px -15px; }
      .main-features .item {
        width: 50%;
        min-width: 50%;
        font-size: 13px;
        line-height: 16px;
        gap: 15px; }
        .main-features .item .icon {
          min-width: 45px;
          width: 45px;
          height: 45px; }
      .main-features.items-inline .item {
        flex-direction: column; }
        .main-features.items-inline .item .icon {
          min-width: 45px;
          width: 45px;
          height: 45px; }
        .main-features.items-inline .item .text {
          align-self: center;
          max-width: 100%; } }

.main-offers-section {
  overflow: hidden; }
  .main-offers-section .catalog-slider {
    margin-bottom: 20px;
    margin: 0 -15px; }
    .main-offers-section .catalog-slider .slick-arrow.slick-disabled {
      display: none !important; }
    .main-offers-section .catalog-slider .items-holder {
      padding: 0;
      margin: 0; }
    .main-offers-section .catalog-slider .swiper-slide {
      box-sizing: border-box; }
    .main-offers-section .catalog-slider .catalog {
      width: auto; }
      .main-offers-section .catalog-slider .catalog .slick-list .slick-track {
        display: flex; }
      .main-offers-section .catalog-slider .catalog .item-holder {
        padding-left: 15px;
        padding-right: 15px;
        padding: 15px; }
      .main-offers-section .catalog-slider .catalog .item {
        margin: 0;
        width: auto;
        display: block;
        float: none; }

.main-reviews-block {
  display: flex;
  gap: 30px;
  width: 100%; }
  .main-reviews-block .slick-track {
    display: flex; }
  .main-reviews-block .reviews-text {
    flex: 1 1 380px; }
    .main-reviews-block .reviews-text .text-title {
      font-size: 24px;
      line-height: 1;
      margin-bottom: 20px;
      font-weight: 500;
      max-width: 280px; }
    .main-reviews-block .reviews-text .text-description {
      font-size: 0.9375rem;
      line-height: 1.375rem;
      margin-bottom: 20px; }
  .main-reviews-block .block-items {
    flex: 0 0 760px;
    width: 760px;
    margin-top: -30px; }
  .main-reviews-block .swiper-wrapper {
    height: auto; }
  .main-reviews-block .items .item {
    height: auto;
    padding: 0;
    position: relative;
    margin-top: 30px; }
    .main-reviews-block .items .item .cover-link {
      position: absolute;
      top: 0;
      left: 40px;
      right: 15px;
      bottom: 0; }
    .main-reviews-block .items .item:after {
      content: '';
      position: absolute;
      right: 35px;
      top: 0px;
      top: -23px;
      background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADEAAAAoCAQAAAD9TNrEAAADt0lEQVR42pVWA5AtOxT8tm3btm3b/s+2bdu2bds2em3vPr9V16mp1Ny5wexl+nSf6Tg5w/XClRiN5/WcNa85+oYTvo9klGB+GR9/LkaghO973NJ6IjzE7wtlMHgQe5lRwO9Cl3S0GDRCR/5uD23wOU5TvwT34wD/XzILL8ZaCnLxsaBVLH8TyqCKVGsAzma5PUu7TMKrsY/0Fjzi4apEGbjaadBYDGopvJKook54LeJILcadqkUyePjRYdBKVN8q/BPyiLfpuiiWxCzc6OFHsI34KH7GBVaDpmLwnsIdBY/CrdHSrSTm4XoPvYyTxKtxp6MF/8kD3/HQFZgouLxOOoPEGtVFL4twkHMM3hDdr2okpxOlayc6GpJKUIP8vCS2C7H+T1DX0kPnYRJRIm7RSZ+WR36gxiCNqFOIibqauhkKDSZKw416aQLJbhETblIIgwrUbcPNPlSC+8xTbqVCXYniQhhc65/OuAbxgrTSW0T6ukpMIXrGbSEzZ0oEmmmSjic5VqEhkug2eERmzg0eupOomEgrvZdkJm5S+CDxvSEs5lDXV6EORCNM0gEkhyj0gYyK2+A+6mJwqcJriF/USy/DKZIPKtyfqKHbQmo9OKInEk3SP0jO9uHdxA85Dc5Ghr/W+Et6wiCeQvJvBWWwmXCJw+Itqpb58MfEs/GA/vA5TvJaX+RPlMjwD8djFouW1DSP6O5YyVuLckHpmwwvDcT+xFyR83gxWiwh+1ZgTAfKUcbW4Vo/UZ2hrppH3IXeIu+sNbhUNvnzNczPMpYpuFGgmj//mY56MamsYZ5lfKMh63oZ3cM40wtIl3xg7I7vxOS2qPjXjE42Zl2NFb6+wS6CRxxXnWHa/bWPJesZqdp1AuRUuN4ivpt8Hs4JROsz2tY6qSdTUVuKcmu71CaWk+PV4I2VsSbWrG+omChFHEGJfZnJOfZ3mS1epGKNFJEufWYT96OinL2jbHPurDNS+Hujda+4lN+CQCyH3ytDZmEq3b60aWXFBvYe2fDn2W+3altETfs1AF+QPxwVvRyFjD/qmCTfemtRZvCHJqksopqaeB/b4YuKZNMVRAPCg/rlhx6y35ypvXsUk6urP9Pl8vaDP7SAgQN4KSA8E32lhU8aavqJsK2i4p/KWhscDC8U+WC8hhtwGa7EQ6iGnXKjeNfS379I1mr8g/twOfNuxnsYJ7EROnl7EsH3CtuhJFmvY1tU1jHUMd8oWmMVUpGPHOzGKHytKLvN75iEA8hDPpKwBI1xcyRfCvC6gWlF8BBTAAAAAElFTkSuQmCC);
      width: 49px;
      height: 40px; }
  .main-reviews-block .items .picture {
    position: absolute;
    left: 15px;
    top: 12px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #FFF; }
    .main-reviews-block .items .picture img {
      width: 100%;
      height: 100%;
      object-fit: contain; }
  .main-reviews-block .items .text {
    margin: 0 0 0 35px;
    padding: 15px 25px 15px 53px;
    background-color: #f3f4f6;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 100%; }
    .main-reviews-block .items .text:after {
      content: '';
      height: 40px;
      top: 155px;
      left: 0;
      right: 0;
      position: absolute;
      background: linear-gradient(to top, #f3f4f6 0%, transparent 100%); }
  .main-reviews-block .items .title {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 5px; }
  .main-reviews-block .items .subtitle {
    color: #7b7b7b;
    font-size: 0.75rem;
    line-height: 1rem;
    margin-bottom: 10px; }
  .main-reviews-block .items .description {
    line-height: 1.5714;
    overflow: hidden;
    max-height: 155px; }
  .main-reviews-block .controlls {
    display: flex;
    margin: 20px 0 0 23px; }
    .main-reviews-block .controlls .slider-button,
    .main-reviews-block .controlls .slick-arrow {
      padding: 12px;
      font-size: 32px;
      color: #959ca2;
      cursor: pointer; }
      .main-reviews-block .controlls .slider-button.swiper-button-disabled,
      .main-reviews-block .controlls .slick-arrow.swiper-button-disabled {
        opacity: 0.7;
        cursor: default; }
  @media (max-width: 1000px) {
    .main-reviews-block {
      display: block; }
      .main-reviews-block .reviews-text {
        margin-bottom: 40px; }
      .main-reviews-block .block-items {
        width: 100%; } }

.main-section-header {
  display: flex; }
  .main-section-header .section-options {
    display: flex;
    margin-left: auto;
    align-items: center;
    margin-bottom: 20px; }
    .main-section-header .section-options li {
      margin-right: 15px; }
      .main-section-header .section-options li a {
        display: block;
        border: 2px solid #d9d9d9;
        border-radius: 4px;
        font-size: 13px;
        line-height: 21px;
        color: #7c7c7c;
        text-decoration: none;
        padding: 5px 13px; }
        .main-section-header .section-options li a.active {
          border-color: var(--color1, #db3d3d);
          background-color: var(--color1, #db3d3d);
          color: var(--btnColor, #FFF); }
      .main-section-header .section-options li:last-child {
        margin-right: 0; }
  @media screen and (max-width: 999px) {
    .main-section-header {
      display: block; } }

@media screen and (max-width: 999px) {
  .main-about {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap; }
    .main-about .main-text {
      float: none;
      width: auto;
      flex: 0 0 100%; }
    .main-about .main-news-block {
      flex: 0 0 100%;
      margin: 30px 0 0; }
  .main-catalog-list .item {
    width: 50%; }
    .main-catalog-list .item.span3 {
      width: 50%; }
    .main-catalog-list .item.span2, .main-catalog-list .item.span4 {
      width: 100%; }
    .main-catalog-list .item .title {
      margin-right: 15px; }
  .sidebar .main-news,
  .sidebar .main-articles {
    display: none; }
  .main-column-left .main-articles,
  .show-main-articles .main-column-left .main-articles {
    display: none; }
  .main-slider-block {
    width: 510px;
    overflow: visible; }
    .main-slider-block .slider-arrow {
      color: #979ea6;
      background: none;
      margin-top: -50px;
      display: none; }
      .main-slider-block .slider-arrow:hover {
        background: none;
        color: var(--color1, #db3d3d); }
      .main-slider-block .slider-arrow.prev {
        left: -35px; }
      .main-slider-block .slider-arrow.next {
        right: -35px; }
    .main-slider-block .main-slider {
      width: 510px;
      left: 0;
      margin-left: 0;
      padding-bottom: 30px; }
      .main-slider-block .main-slider .items .item {
        width: 510px;
        height: 180px; }
        .main-slider-block .main-slider .items .item .text {
          width: auto;
          right: 20px;
          margin-top: 0;
          top: 50%;
          -webkit-transform: translateY(-50%);
          -khtml-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          -o-transform: translateY(-50%);
          transform: translateY(-50%);
          display: none; }
          .main-slider-block .main-slider .items .item .text.mobile-text-show {
            display: block; }
          .main-slider-block .main-slider .items .item .text .item-title {
            font-size: 24px;
            line-height: 26px;
            font-weight: bold;
            margin-bottom: 20px;
            margin-right: 20px; }
          .main-slider-block .main-slider .items .item .text .description {
            font-size: 12px;
            line-height: 16px; }
        .main-slider-block .main-slider .items .item .alternative {
          display: block; }
        .main-slider-block .main-slider .items .item video {
          display: none; } }

@media screen and (max-width: 509px) {
  .main-catalog-list .item {
    height: 150px; }
  .main-slider-block {
    width: 345px; }
    .main-slider-block .slider-arrow {
      display: none; }
    .main-slider-block .main-slider {
      width: 345px;
      left: 0;
      margin-left: 0;
      padding-bottom: 40px; }
      .main-slider-block .main-slider .items .item {
        width: 345px;
        height: 130px; }
        .main-slider-block .main-slider .items .item .text {
          width: auto;
          right: 20px; }
          .main-slider-block .main-slider .items .item .text .item-title {
            font-size: 18px;
            line-height: 22px;
            font-weight: bold;
            margin-bottom: 0;
            margin-right: 20px; } }

.bx-basket .r,
.form .r {
  color: #F00; }

.bx-basket .label,
.form .label {
  display: block;
  margin-bottom: 3px; }

.bx-basket .form_element,
.bx-basket .form-control,
.bx-basket .form-element,
.form .form_element,
.form .form-control,
.form .form-element {
  margin-bottom: 15px;
  color: #717a81;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #c1c1c1;
  background-color: #FFF;
  font-size: 15px;
  line-height: 23px;
  min-height: 35px;
  padding: 5px 10px;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */ }
  .bx-basket .form_element.ui-selectmenu-button,
  .bx-basket .form-control.ui-selectmenu-button,
  .bx-basket .form-element.ui-selectmenu-button,
  .form .form_element.ui-selectmenu-button,
  .form .form-control.ui-selectmenu-button,
  .form .form-element.ui-selectmenu-button {
    padding-right: 20px; }
  .bx-basket .form_element:focus, .bx-basket .form_element.ui-state-focus,
  .bx-basket .form-control:focus,
  .bx-basket .form-control.ui-state-focus,
  .bx-basket .form-element:focus,
  .bx-basket .form-element.ui-state-focus,
  .form .form_element:focus,
  .form .form_element.ui-state-focus,
  .form .form-control:focus,
  .form .form-control.ui-state-focus,
  .form .form-element:focus,
  .form .form-element.ui-state-focus {
    box-shadow: 0 0 3px #ffc426; }
  .bx-basket .form_element:disabled, .bx-basket .form_element.ui-state-disabled,
  .bx-basket .form-control:disabled,
  .bx-basket .form-control.ui-state-disabled,
  .bx-basket .form-element:disabled,
  .bx-basket .form-element.ui-state-disabled,
  .form .form_element:disabled,
  .form .form_element.ui-state-disabled,
  .form .form-control:disabled,
  .form .form-control.ui-state-disabled,
  .form .form-element:disabled,
  .form .form-element.ui-state-disabled {
    background-color: #EEE; }
  .bx-basket .form_element.error,
  .bx-basket .form-control.error,
  .bx-basket .form-element.error,
  .form .form_element.error,
  .form .form-control.error,
  .form .form-element.error {
    color: #FF868A;
    border: 1px solid #FF868A;
    background-color: #FFF0F1; }
  .bx-basket .form_element::-webkit-outer-spin-button, .bx-basket .form_element::-webkit-inner-spin-button,
  .bx-basket .form-control::-webkit-outer-spin-button,
  .bx-basket .form-control::-webkit-inner-spin-button,
  .bx-basket .form-element::-webkit-outer-spin-button,
  .bx-basket .form-element::-webkit-inner-spin-button,
  .form .form_element::-webkit-outer-spin-button,
  .form .form_element::-webkit-inner-spin-button,
  .form .form-control::-webkit-outer-spin-button,
  .form .form-control::-webkit-inner-spin-button,
  .form .form-element::-webkit-outer-spin-button,
  .form .form-element::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .bx-basket .form_element[type=number],
  .bx-basket .form-control[type=number],
  .bx-basket .form-element[type=number],
  .form .form_element[type=number],
  .form .form-control[type=number],
  .form .form-element[type=number] {
    -moz-appearance: textfield; }
  @media (max-width: 509px) {
    .bx-basket .form_element,
    .bx-basket .form-control,
    .bx-basket .form-element,
    .form .form_element,
    .form .form-control,
    .form .form-element {
      font-size: 16px; } }

.bx-basket textarea.form-element,
.form textarea.form-element {
  overflow: auto;
  resize: vertical;
  height: 115px; }

.bx-basket .error-text,
.form .error-text {
  font-size: 13px;
  color: #db3d3d;
  line-height: 16px;
  display: none; }

.bx-basket .error + .error-text,
.form .error + .error-text {
  display: block; }

.bx-basket .note,
.form .note {
  margin: 10px 0; }

.bx-basket .controlls,
.form .controlls {
  margin-top: 15px; }

.bx-basket .reset,
.form .reset {
  display: inline-block;
  border: none;
  border-bottom: 1px dotted;
  background: none;
  padding: 0;
  margin-left: 10px;
  cursor: pointer; }
  .bx-basket .reset:hover,
  .form .reset:hover {
    color: var(--color2, #528dca); }
  .bx-basket .reset::-moz-focus-inner, .bx-basket .reset::-moz-focus-inner,
  .form .reset::-moz-focus-inner,
  .form .reset::-moz-focus-inner {
    margin: -1px 0;
    padding: 0; }

.bx-basket .custom-element input,
.form .custom-element input {
  opacity: 0;
  position: absolute; }
  .bx-basket .custom-element input[type=checkbox] + .marker:after,
  .form .custom-element input[type=checkbox] + .marker:after {
    font-family: 'Font Awesome 5 Free', sans-serif;
    content: '\f00c';
    left: 1px;
    top: -1px;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s;
    font-weight: bold; }
  .bx-basket .custom-element input[type=checkbox]:checked + .marker:after,
  .form .custom-element input[type=checkbox]:checked + .marker:after {
    opacity: 1; }
  .bx-basket .custom-element input[type=checkbox].error + .marker:before,
  .form .custom-element input[type=checkbox].error + .marker:before {
    border: 1px solid #FF868A;
    background-color: #FFF0F1; }
  .bx-basket .custom-element input[type=radio] + .marker:before,
  .form .custom-element input[type=radio] + .marker:before {
    border-radius: 50%; }
  .bx-basket .custom-element input[type=radio] + .marker:after,
  .form .custom-element input[type=radio] + .marker:after {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    left: 4px;
    top: 4px;
    opacity: 0;
    transition: opacity 0.3s;
    background-color: var(--color2, #528dca); }
  .bx-basket .custom-element input[type=radio]:checked + .marker:after,
  .form .custom-element input[type=radio]:checked + .marker:after {
    opacity: 1; }

.bx-basket .custom-element .marker,
.form .custom-element .marker {
  padding-left: 25px;
  position: relative;
  color: #717a81; }
  .bx-basket .custom-element .marker:before,
  .form .custom-element .marker:before {
    content: '';
    position: absolute;
    background-color: #fff;
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    border: 1px solid #c1c1c1;
    left: 0;
    top: 0;
    cursor: pointer; }
  .bx-basket .custom-element .marker:after,
  .form .custom-element .marker:after {
    content: '';
    position: absolute;
    cursor: pointer;
    color: var(--color2, #528dca); }

.bx-basket .range-block,
.form .range-block {
  display: inline-block;
  vertical-align: middle; }
  .bx-basket .range-block .range,
  .form .range-block .range {
    position: relative;
    height: 3px;
    background-color: #c6d1da;
    margin: 7px 8px 30px;
    vertical-align: middle;
    width: 194px; }
  .bx-basket .range-block .ui-slider-range,
  .form .range-block .ui-slider-range {
    height: 3px;
    background-color: #c6d1da;
    z-index: auto; }
  .bx-basket .range-block .ui-slider-handle,
  .form .range-block .ui-slider-handle {
    position: absolute;
    background-color: var(--color1, #db3d3d);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    border: 3px solid #e4e7ea;
    top: -7px;
    z-index: auto;
    margin-left: -8px; }
  .bx-basket .range-block .value,
  .form .range-block .value {
    display: inline-block;
    width: 103px;
    text-align: right;
    color: #a4b0ba;
    line-height: 33px; }
    .bx-basket .range-block .value .form-element,
    .form .range-block .value .form-element {
      vertical-align: middle;
      margin-left: 5px;
      width: 75px;
      text-align: left;
      margin-bottom: 0; }

.bx-basket.clear-fields .form-element,
.form.clear-fields .form-element {
  background: none; }

.sidebar .bx-basket .form-title, .sidebar
.form .form-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #717a81;
  margin-bottom: 15px; }

.bx-basket .field img,
.form .field img {
  max-width: 100%;
  height: 35px;
  width: auto;
  margin: 0 0 5px; }

.feedback-form {
  width: 570px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 30px; }
  .feedback-form .field {
    width: 100%; }
    .feedback-form .field.inline {
      display: inline-block;
      vertical-align: top; }
    .feedback-form .field.long {
      width: 210px; }
    .feedback-form .field.long2 {
      width: 470px; }
    .feedback-form .field.short {
      width: 150px; }
  .feedback-form .note {
    width: 100%; }
  .feedback-form textarea.form-element {
    height: 150px; }

.order-form {
  padding: 25px 30px; }
  .order-form textarea.form-element {
    height: 95px; }
  .order-form .field {
    margin: 0; }

.fancybox-opened .fancybox-inner > form,
.fancybox-opened .fancybox-inner > div {
  max-width: 100%; }

.splash-form {
  max-width: 370px; }
  .splash-form.wide-form {
    max-width: 540px; }
  .splash-form .form-desc {
    margin-bottom: 20px; }
  .splash-form .form-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #717a81;
    margin-bottom: 15px; }
  .splash-form .fields {
    margin-left: -30px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end; }
    .splash-form .fields:after {
      clear: both;
      content: '';
      display: table; }
  .splash-form .field {
    padding-left: 30px;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%; }
    .splash-form .field.short {
      width: 50%; }
    .splash-form .field img {
      margin-bottom: 10px; }
  .splash-form .controlls .btn {
    vertical-align: middle; }
    .splash-form .controlls .btn + .btn {
      margin-left: 10px; }
  .splash-form .controlls .options {
    display: inline-block;
    vertical-align: middle; }
    .splash-form .controlls .options li {
      display: inline-block;
      margin-left: 20px; }
  @media (max-width: 509px) {
    .splash-form .field.short {
      width: 100%; } }

.splash-form.confirm-form {
  width: auto;
  min-width: 200px; }
  .splash-form.confirm-form .controlls {
    margin-top: 30px; }
    .splash-form.confirm-form .controlls .btn + .btn {
      margin-left: 20px; }

.main-user-consent-request,
.form .custom-input {
  display: inline-block;
  padding-left: 20px; }

.main-user-consent-request input,
.form .custom-input input {
  position: absolute;
  opacity: 0; }

.main-user-consent-request input + span,
.form .custom-input input + label {
  cursor: pointer;
  position: relative;
  display: inline-block;
  line-height: 16px;
  color: #717a81; }

.main-user-consent-request input + span:before,
.form .custom-input input + label:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid #c1c1c1;
  margin-top: 2px;
  margin-left: -20px;
  content: ''; }

.main-user-consent-request input:disabled + span,
.form .custom-input input:disabled + label {
  opacity: .8;
  cursor: default;
  color: #888; }

.main-user-consent-request input:disabled + span:after,
.form .custom-input input:disabled + label:after {
  opacity: .5; }

.main-user-consent-request input:checked + span:before,
.form .custom-input input[type=checkbox]:checked + label:before {
  content: '\f00c';
  font-size: 16px;
  line-height: 10px; }

.main-user-consent-request input:checked + span:before,
.form .custom-input input:checked + label:before {
  color: var(--color1, #db3d3d); }

.main-user-consent-request input.error + span:before,
.form .custom-input input[type=checkbox].error + label:before {
  border: 1px solid #FF868A;
  background-color: #FFF0F1; }

.form .custom-input input[type=radio] + label:before {
  border-radius: 50%; }

.form .custom-input input[type=radio]:checked + label:before {
  content: '';
  background-color: currentColor;
  box-shadow: inset 0 0 0 3px #FFF;
  background-clip: content-box; }

@-moz-document url-prefix() {
  .selector .form .custom-input input[type=radio]:checked + label:before {
    line-height: 13px; } }

@media screen and (max-width: 999px) {
  .feedback-form {
    width: auto; }
    .feedback-form .field,
    .feedback-form .field.short,
    .feedback-form .field.long,
    .feedback-form .field.long2 {
      width: 100%;
      margin-left: 0; } }

@media screen and (max-width: 509px) {
  .splash-form .field img {
    margin-bottom: 15px; }
  .splash-form .controlls .options,
  .splash-form .controlls .options li {
    display: block;
    margin: 10px 0 0; } }

.popup-modal-block .form {
  margin: 0;
  max-width: 375px; }
  .popup-modal-block .form .form-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #717a81;
    margin-bottom: 15px; }

.popup-modal-block .sidebar-block {
  padding: 0;
  border: none; }

.articles {
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px; }
  .articles .item {
    width: 370px;
    margin-bottom: 50px;
    background-color: #fff;
    margin-left: 30px; }
    .articles .item .picture {
      height: 251px;
      overflow: hidden; }
      .articles .item .picture img {
        width: 100%;
        height: auto;
        -webkit-transition: opacity 0.3s;
        -khtml-transition: opacity 0.3s;
        -moz-transition: opacity 0.3s;
        -ms-transition: opacity 0.3s;
        -o-transition: opacity 0.3s;
        transition: opacity 0.3s; }
    .articles .item .title {
      padding: 0 20px;
      font-weight: 400;
      font-size: 17px;
      line-height: 22px;
      color: #717a81;
      margin: 15px 0 10px; }
      .articles .item .title a {
        color: #717a81;
        text-decoration: none; }
        .articles .item .title a:hover {
          color: var(--color2, #528dca); }
    .articles .item .description {
      padding: 0 20px 20px;
      font-size: 13px;
      line-height: 20px; }
    .articles .item:hover .picture img {
      opacity: 0.8; }

@media screen and (max-width: 999px) {
  .articles .item {
    width: 240px; }
    .articles .item .picture {
      height: 163px; }
  .articles .text .description {
    font-size: 13px; } }

@media screen and (max-width: 509px) {
  .articles .item {
    width: 100%; }
    .articles .item .picture {
      height: 250px; } }

.actions,
.services {
  margin: 20px 0 0px -30px;
  line-height: 0;
  font-size: 0; }
  .actions .item,
  .services .item {
    width: 270px;
    margin: 0 0 30px 30px;
    padding-bottom: 20px;
    display: inline-block;
    vertical-align: top;
    line-height: 18px;
    font-size: 12px;
    background-color: #FFF;
    min-height: 335px; }
    .actions .item:hover .picture img,
    .services .item:hover .picture img {
      opacity: 0.8; }
  .actions .title,
  .services .title {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #717a81;
    margin: 0 20px 10px; }
    .actions .title a,
    .services .title a {
      color: #717a81;
      text-decoration: none; }
      .actions .title a:hover,
      .services .title a:hover {
        text-decoration: underline;
        color: var(--color2, #528dca); }
  .actions .text,
  .services .text {
    margin: 0 20px; }
  .actions .picture,
  .services .picture {
    margin-bottom: 15px;
    height: 165px;
    overflow: hidden; }
    .actions .picture img,
    .services .picture img {
      width: 100%;
      height: auto;
      -webkit-transition: opacity 0.3s;
      -o-transition: opacity 0.3s;
      transition: opacity 0.3s; }
  .actions .date,
  .services .date {
    color: #9b9b9b;
    font-size: 12px;
    margin: 10px 20px 3px;
    font-weight: 100; }

.action .text {
  background-color: #FFF;
  position: relative;
  padding: 85px 90px; }

.action .description {
  font-weight: 500; }
  .action .description .lead {
    color: #d73536; }

.action .action-timer {
  right: -20px;
  top: 50px; }
  .action .action-timer + .description h2 {
    margin-right: 70px; }

.action-goods {
  margin-top: 50px; }

@media screen and (max-width: 999px) {
  .actions .item,
  .services .item {
    width: 240px; }
  .action .text {
    padding: 30px; }
    .action .text .description > *:first-child {
      margin-right: 135px; }
    .action .text .description > h2:first-child {
      min-height: 52px; }
  .action .action-timer {
    top: 16px;
    right: 0; } }

@media screen and (max-width: 509px) {
  .actions .item,
  .services .item {
    width: 345px;
    min-height: 0;
    height: auto; }
  .action .text {
    padding: 80px 25px 25px; }
    .action .text .description > *:first-child {
      margin-right: 0; }
    .action .text .description > h2:first-child {
      min-height: 0; }
  .action .action-timer {
    top: 0; } }

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

:root {
  --swiper-theme-color: #007aff;
  /*
    --swiper-preloader-color: var(--swiper-theme-color);
    --swiper-wrapper-transition-timing-function: initial;
    */ }

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

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  display: block; }

.swiper-vertical > .swiper-wrapper {
  flex-direction: column; }

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

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

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

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

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

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

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto; }

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

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

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px; }

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

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

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */ }
  .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none; }

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

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

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

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

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

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

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

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

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

button.mfp-close {
  overflow: hidden; }

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 7px;
  top: 7px;
  text-decoration: none;
  text-align: center;
  opacity: 1;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
  text-indent: 100%;
  overflow: hidden; }
  .mfp-close:active {
    top: 7px !important; }
  .mfp-close:after {
    content: '\f00d';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 0;
    right: 0;
    text-indent: 0;
    width: 44px;
    height: 44px;
    font-size: 22px;
    top: 0;
    -webkit-transition: color .5s;
    -o-transition: color .5s;
    transition: color .5s;
    color: #c7ccd0;
    font-weight: bold; }
  @media (max-width: 360px) {
    .mfp-close {
      top: -5px;
      right: -5px; } }

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1; }
  .mfp-close:hover:after,
  .mfp-close:focus:after {
    color: var(--color2, #000); }

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

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

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

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

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

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

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

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

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

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

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

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

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

/************************************************************************************/
/**
 * Fade-zoom animation
 */
/* start state */
.mfp-anim-zoom-in .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8); }

/* animate in */
.mfp-anim-zoom-in.mfp-ready .mfp-content {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

/* animate out */
.mfp-anim-zoom-in.mfp-removing .mfp-content {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0; }

/* Dark overlay, start state */
.mfp-anim-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out; }

/* animate in */
.mfp-anim-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8; }

/* animate out */
.mfp-anim-zoom-in.mfp-removing.mfp-bg {
  opacity: 0; }

/**
 * Fade-move animation for second dialog
 */
/* at start */
.mfp-anim-slide-bottom .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  transform: translateY(-20px) perspective(600px) rotateX(10deg); }

/* animate in */
.mfp-anim-slide-bottom.mfp-ready .mfp-content {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  -moz-transform: translateY(0) perspective(600px) rotateX(0);
  -ms-transform: translateY(0) perspective(600px) rotateX(0);
  -o-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0); }

/* animate out */
.mfp-anim-slide-bottom.mfp-removing .mfp-content {
  opacity: 0;
  -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  transform: translateY(-10px) perspective(600px) rotateX(10deg); }

/* Dark overlay, start state */
.mfp-anim-slide-bottom.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out; }

/* animate in */
.mfp-anim-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8; }

/* animate out */
.mfp-anim-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0; }

/************************************************************************************/
.mfp-wrap.popup-modal-block .mfp-content {
  width: auto;
  max-width: 95%;
  background: #fff;
  padding: 50px;
  box-sizing: border-box; }
  @media (max-width: 509px) {
    .mfp-wrap.popup-modal-block .mfp-content {
      padding: 20px; } }

.search-query {
  margin: 20px 0;
  font-size: 16px; }

.search-form {
  margin-bottom: 20px; }
  .search-form .field {
    margin-right: 30px;
    flex: 1 1 100px; }
    .search-form .field .form-element {
      background-color: #f3f4f6; }
  .search-form .controlls {
    margin: 0; }
  .search-form .search-line {
    margin-bottom: 10px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start; }
  .search-form .search-language-guess {
    margin-bottom: 5px; }

.search-results {
  margin: 20px 0 40px 27px; }
  .search-results .item {
    margin: 20px 0; }
  .search-results .title {
    font-size: 18px;
    font-weight: 500;
    color: #717a81;
    margin-bottom: 10px; }
    .search-results .title .no {
      position: absolute;
      margin-left: -27px;
      font-weight: 300;
      color: #cacdd2;
      font-size: 15px;
      padding-top: 2px; }
    .search-results .title a {
      color: #717a81;
      text-decoration: none; }
      .search-results .title a:hover {
        color: #000; }

.basket-block {
  background-color: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), inset -300px 0 0 0 #f3f4f6;
  margin-bottom: 50px; }
  .basket-block:after {
    content: '';
    display: table;
    clear: both; }
  .basket-block .basket {
    float: left;
    width: 870px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 30px; }
  .basket-block .basket-table {
    width: 100%; }
    .basket-block .basket-table td {
      padding: 20px 0;
      vertical-align: middle;
      border-top: 1px solid #e8edf1; }
    .basket-block .basket-table tr:first-child td {
      border-top: none; }
    .basket-block .basket-table .picture {
      width: 110px; }
      .basket-block .basket-table .picture img {
        max-width: 110px;
        max-height: 110px;
        width: auto;
        height: auto; }
    .basket-block .basket-table .title {
      padding: 20px 30px;
      font-size: 16px; }
      .basket-block .basket-table .title a {
        text-decoration: none; }
    .basket-block .basket-table .qty {
      width: 90px;
      padding-bottom: 0; }
      .basket-block .basket-table .qty .unit {
        text-align: center;
        width: 88px; }
    .basket-block .basket-table .price {
      font-size: 18px;
      line-height: 24px;
      padding-left: 13px;
      min-width: 100px;
      padding-bottom: 0; }
      .basket-block .basket-table .price:after {
        content: '';
        display: block;
        height: 20px; }
      .basket-block .basket-table .price .old-price {
        display: inline-block;
        font-size: 14px;
        text-decoration: line-through;
        color: #9e9e9e;
        font-weight: normal; }
      .basket-block .basket-table .price .new-price {
        color: #db3d3d; }
      .basket-block .basket-table .price .rub {
        font-size: 16px; }
      .basket-block .basket-table .price.cost {
        font-size: 20px;
        line-height: 24px;
        font-weight: bold; }
    .basket-block .basket-table .remove {
      width: 30px;
      text-align: right; }
    .basket-block .basket-table .unit {
      font-weight: normal;
      color: #AAA;
      font-style: italic;
      font-size: 13px; }
  .basket-block .basket-total-block {
    overflow: hidden;
    padding: 35px 40px; }
    .basket-block .basket-total-block .block {
      margin-bottom: 20px; }
  .basket-block .promocode-block {
    display: flex; }
    .basket-block .promocode-block .field {
      margin: 0;
      flex-grow: 1; }
    .basket-block .promocode-block .controlls {
      margin-left: 10px;
      margin-top: 0; }
      .basket-block .promocode-block .controlls .btn {
        width: 35px;
        padding-left: 0;
        padding-right: 0;
        margin: 0; }
  .basket-block .promocodes .item {
    display: flex;
    align-items: center; }
  .basket-block .promocodes .item {
    margin-top: 10px; }
  .basket-block .promocodes .remove {
    text-decoration: none;
    color: #db3d3d;
    font-size: 1.125rem; }
  .basket-block .promocodes .promocode {
    background-color: #FFF;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    padding: 17px 20px;
    display: inline-block;
    margin-right: 10px; }
    .basket-block .promocodes .promocode:after {
      content: '\f00c';
      font-family: 'Font Awesome 5 Free';
      font-weight: bold;
      color: #4ab900;
      font-size: 20px;
      margin-left: 5px; }
  .basket-block .discount {
    color: #db3d3d;
    margin-bottom: 10px;
    font-size: 15px; }
  .basket-block .old-cost {
    font-size: 15px;
    line-height: 20px;
    color: #888;
    text-decoration: line-through; }
  .basket-block .cost {
    font-size: 32px;
    font-weight: bold;
    line-height: 40px; }
    .basket-block .cost .rub {
      font-size: 20px; }
  .basket-block .btn {
    margin: 20px 0; }

.splash-form.basket-message {
  max-width: 460px;
  padding-bottom: 5px; }
  .splash-form.basket-message .btn {
    margin-left: 25px;
    width: 215px;
    vertical-align: top; }
    .splash-form.basket-message .btn:first-child {
      margin-left: 0; }
  .splash-form.basket-message p {
    margin: 25px 0 30px; }

@media screen and (max-width: 999px) {
  .basket-block {
    box-shadow: none;
    background: none; }
    .basket-block .basket {
      float: none;
      width: auto;
      padding: 0;
      background: none; }
    .basket-block .basket-table {
      display: block;
      width: auto; }
      .basket-block .basket-table tr {
        display: flex;
        flex-direction: column;
        background-color: #fff;
        margin: 20px 0;
        position: relative;
        padding: 25px 50px 25px 125px;
        width: 100%;
        box-sizing: border-box; }
        .basket-block .basket-table tr td {
          border: none;
          display: block;
          padding: 0; }
        .basket-block .basket-table tr .picture {
          position: absolute;
          left: 25px;
          width: 80px;
          padding: 0; }
          .basket-block .basket-table tr .picture img {
            width: 100%; }
        .basket-block .basket-table tr .title {
          padding: 0;
          font-size: 16px;
          color: #000;
          order: 1;
          margin-bottom: 10px; }
          .basket-block .basket-table tr .title a {
            color: #000; }
        .basket-block .basket-table tr .price {
          order: 2;
          min-width: 0;
          padding: 0 0 15px; }
          .basket-block .basket-table tr .price.cost {
            order: 3;
            padding: 10px 0 5px; }
        .basket-block .basket-table tr .qty {
          order: 3; }
        .basket-block .basket-table tr .remove {
          position: absolute;
          bottom: 32px;
          right: 25px; }
    .basket-block .basket-total-block {
      padding: 0; }
      .basket-block .basket-total-block .block {
        display: flex;
        flex-wrap: wrap; }
      .basket-block .basket-total-block h3 {
        float: left;
        width: 125px;
        flex: 0 0 125px;
        font-size: 18px; }
        .basket-block .basket-total-block h3:first-child {
          margin-top: 5px; }
      .basket-block .basket-total-block .promocodes {
        margin-top: 15px;
        flex: 1 1 100%; }
      .basket-block .basket-total-block .btn {
        width: 100%; }
      .basket-block .basket-total-block .total {
        margin-top: 5px; }
      .basket-block .basket-total-block .reset {
        display: block;
        margin: auto; }
  .splash-form.basket-message {
    width: 100%; }
    .splash-form.basket-message .btn {
      width: 100%;
      margin: 0;
      margin-top: 10px; }
      .splash-form.basket-message .btn + .btn {
        margin-left: 0; } }

.catalog {
  margin: 10px -2px 0 -30px;
  font-size: 0;
  line-height: 0; }
  .catalog .item {
    display: inline-block;
    width: 270px;
    margin: 0 0 30px 30px;
    background-color: #FFF;
    height: 350px;
    vertical-align: middle;
    padding: 25px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 18px;
    box-shadow: 0 0 0 0 #FFF, 0 0 6px rgba(0, 0, 0, 0.05);
    position: relative;
    -webkit-transition: box-shadow .2s;
    -o-transition: box-shadow .2s;
    transition: box-shadow .2s;
    overflow: hidden; }
    .catalog .item:hover {
      box-shadow: 0 0 0 4px #FFF, 0 0 0 4px #FFF, 0 0 0 4px #FFF, 0 0 0 4px #FFF, 0 0 16px rgba(0, 0, 0, 0.2); }
      .catalog .item:hover .picture img {
        opacity: 0.8; }
  .catalog .picture {
    overflow: hidden;
    line-height: 180px;
    height: 180px;
    text-align: center;
    margin-bottom: 14px; }
    .catalog .picture img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      vertical-align: middle;
      -webkit-transition: opacity .3s;
      -o-transition: opacity .3s;
      transition: opacity .3s; }
  .catalog .title {
    overflow: hidden;
    height: 54px;
    font-weight: 500; }
    .catalog .title a {
      text-decoration: none; }
  .catalog .features {
    display: none; }
  .catalog .data {
    margin-bottom: 5px;
    overflow: hidden;
    display: inline-block;
    width: 150px; }
  .catalog .price-block {
    margin-right: 0px; }
    .catalog .price-block .old-price {
      font-size: 12px;
      line-height: 14px;
      text-decoration: line-through;
      color: #a2a2a2; }
    .catalog .price-block .price {
      font-size: 20px;
      line-height: 22px;
      font-weight: 400;
      margin-top: 14px; }
    .catalog .price-block .old-price + .price {
      color: #ff4747;
      margin-top: 0; }
    .catalog .price-block .price .rub {
      font-size: 16px; }
    .catalog .price-block .discount {
      background-color: #464646;
      border-radius: 3px;
      font-size: 11px;
      color: #FFF;
      font-weight: 500;
      line-height: 13px;
      padding: 1px 2px;
      margin-left: 3px; }
  .catalog .availability {
    font-size: 12px; }
  .sidebar .catalog {
    margin: 0; }
    .sidebar .catalog .item {
      margin-left: 0; }
      .sidebar .catalog .item:hover {
        box-shadow: 0 0 0 0 #FFF, 0 0 6px rgba(0, 0, 0, 0.05); }
  .catalog .catalog-sku-options-block {
    display: none;
    margin-bottom: 5px; }
    .catalog .catalog-sku-options-block .block-name {
      font-size: 12px;
      color: #8a8a8a;
      margin-bottom: 5px; }
    .catalog .catalog-sku-options-block .catalog-sku-options {
      display: flex;
      gap: 5px;
      flex-wrap: wrap; }
      .catalog .catalog-sku-options-block .catalog-sku-options .option {
        position: relative; }
        .catalog .catalog-sku-options-block .catalog-sku-options .option:has(input[disabled]):after {
          content: '';
          position: absolute;
          height: 100%;
          width: 100%;
          background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAdCAQAAAD8mq+EAAABKklEQVR42pTTMUqCARiAYaeaCiodwwMUXqCoI9QhPEQ3EaEhG9pqSzNBqUFCEBcRbEhEBwfhJ0EKUZ8maf1892d8U9snryS/Pdv1BGyJ7Svzow2lbeCRBnM1n3ATh2ktZqoGwHkUZvRIVIxhHYdZI6YqJpA4jcKcbybKpjB0HIUXMFKRQFc6Cq/gS9UMPmSisAB9NXOoO4zCInTV/cKzvSi8Za3jzQIe7UThHSstTUt4SEXzwFJTywruomzHIwvvOtZwG4V7nvlV1wWKUXigzlxNHyhEYcYHM1VfwHUcdkm8GAGXUXhsyFTZBL7lovBE4v+NkWwUnlkx3rzRk4lDDDZvtAJwkxs+vZpDw1EqnnvafqDsb3ykla2p0CJ53X8O0kv0VKDNqQz0BACVKIjzrPXlHwAAAABJRU5ErkJggg==) center no-repeat;
          top: 0;
          left: 0; }
        .catalog .catalog-sku-options-block .catalog-sku-options .option .option-content {
          display: block;
          font-size: 10px;
          line-height: 12px;
          color: #373737;
          border: 1px solid #eeecef;
          padding: 4px 6px;
          text-align: center;
          min-width: 30px;
          border-radius: 3px;
          box-sizing: border-box; }
        .catalog .catalog-sku-options-block .catalog-sku-options .option input {
          opacity: 0;
          position: absolute; }
          .catalog .catalog-sku-options-block .catalog-sku-options .option input:checked + .option-content {
            color: #FFF;
            background-color: var(--color2, #528dca);
            border-color: var(--color2, #528dca); }
          .catalog .catalog-sku-options-block .catalog-sku-options .option input[disabled] + .option-content {
            opacity: 0.2; }
      .catalog .catalog-sku-options-block .catalog-sku-options.colors .option .option-content {
        min-width: 23px;
        height: 23px;
        padding: 2px;
        color: inherit; }
        .catalog .catalog-sku-options-block .catalog-sku-options.colors .option .option-content:after {
          content: '';
          display: block;
          width: 100%;
          height: 100%;
          background-color: currentColor; }
      .catalog .catalog-sku-options-block .catalog-sku-options.colors .option input:checked + .option-content {
        border-width: 1px;
        color: inherit;
        background-color: #fff; }
  .catalog .gift-label {
    background-color: #ffa947;
    position: absolute;
    left: 0;
    top: 10px;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 11px;
    line-height: 20px;
    padding: 0 4px 0 6px; }
    .catalog .gift-label:before {
      content: '';
      border-width: 10px 8px	0 8px;
      border-style: solid;
      border-color: #ffa947 transparent;
      position: absolute;
      right: -8px;
      top: 0; }
    .catalog .gift-label:after {
      content: '';
      border-width: 0 8px	10px 8px;
      border-style: solid;
      border-color: #ffa947 transparent;
      position: absolute;
      right: -8px;
      bottom: 0; }
  .catalog.catalog-mb .features {
    font-size: 12px; }
    .catalog.catalog-mb .features .name {
      color: #8a8a8a; }
  .catalog.list {
    margin: 10px 0; }
    .catalog.list .catalog-sku-options-block {
      display: block; }
    .catalog.list .item {
      overflow: hidden;
      margin: 30px 0;
      display: block;
      width: auto;
      background-color: #FFF;
      height: auto;
      min-height: 230px;
      padding: 25px;
      box-shadow: none; }
      .catalog.list .item:hover .tags,
      .catalog.list .item .tags {
        right: 610px;
        top: 10px; }
    .catalog.list .picture {
      float: left;
      width: 220px;
      text-align: center;
      margin-right: 25px;
      margin-bottom: 0; }
    .catalog.list .text {
      float: left;
      width: 400px;
      margin-right: 30px; }
    .catalog.list .title {
      overflow: hidden;
      height: auto;
      font-weight: 500;
      font-size: 18px;
      line-height: 26px; }
      .catalog.list .title a {
        text-decoration: none; }
    .catalog.list .features {
      display: block;
      margin-top: 15px; }
      .catalog.list .features li {
        margin: 5px 0; }
    .catalog.list .extra {
      float: left;
      width: 145px; }
    .catalog.list .price-block {
      float: none;
      margin-right: 0; }
      .catalog.list .price-block .price {
        margin-top: 0;
        font-size: 22px;
        line-height: 30px; }
      .catalog.list .price-block .old-price {
        font-size: 13px;
        line-height: 18px;
        font-weight: 300; }
    .catalog.list .buy-btn {
      float: none;
      display: block;
      margin-top: 35px;
      margin-left: 0; }
      .catalog.list .buy-btn span {
        position: absolute; }
      .catalog.list .buy-btn:hover span {
        -webkit-transform: translate(30px);
        transform: translate(30px); }
    .catalog.list .availability {
      margin: 10px 0 0; }
  .catalog.list2 {
    margin: 10px 0 40px; }
    .catalog.list2 .item {
      overflow: hidden;
      margin: 1px 0;
      display: block;
      width: auto;
      background-color: #FFF;
      height: auto;
      min-height: 0;
      padding: 25px;
      box-shadow: none; }
      .catalog.list2 .item .catalog-sku-options-block {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 5px;
        margin: 10px 0 0; }
        .catalog.list2 .item .catalog-sku-options-block .block-name {
          margin: 0; }
      .catalog.list2 .item .tags,
      .catalog.list2 .item:hover .tags {
        right: 715px;
        display: flex;
        align-items: flex-end;
        flex-direction: column; }
        .catalog.list2 .item .tags .tag,
        .catalog.list2 .item:hover .tags .tag {
          margin-bottom: 5px; }
          .catalog.list2 .item .tags .tag:last-child,
          .catalog.list2 .item:hover .tags .tag:last-child {
            margin-bottom: 0; }
    .catalog.list2 .picture {
      float: left;
      width: 100px;
      text-align: center;
      margin-right: 50px;
      margin-bottom: 0;
      height: 80px;
      line-height: 80px; }
    .catalog.list2 .text {
      float: left;
      width: 415px;
      margin-right: 30px; }
    .catalog.list2 .title {
      overflow: hidden;
      height: auto;
      font-weight: 500;
      font-size: 18px;
      line-height: 26px; }
      .catalog.list2 .title a {
        text-decoration: none; }
    .catalog.list2 .features {
      display: block;
      margin-top: 10px;
      font-size: 12px;
      color: #6c6c6c; }
      .catalog.list2 .features li {
        margin: 0;
        display: inline-block; }
        .catalog.list2 .features li:after {
          content: ' / '; }
        .catalog.list2 .features li:last-child:after {
          content: none; }
    .catalog.list2 .extra {
      float: left;
      width: 225px; }
      .catalog.list2 .extra .data {
        display: block;
        float: none;
        overflow: visible;
        width: auto; }
    .catalog.list2 .price-block {
      float: left;
      margin-right: 10px;
      width: 125px; }
      .catalog.list2 .price-block .price {
        margin-top: 0;
        line-height: 26px; }
      .catalog.list2 .price-block .old-price {
        font-size: 13px;
        line-height: 18px;
        font-weight: 300; }
    .catalog.list2 .buy-btn {
      float: none;
      display: block;
      margin-top: 15px;
      margin-left: 135px; }
      .catalog.list2 .buy-btn span {
        position: absolute; }
      .catalog.list2 .buy-btn:hover span {
        -webkit-transform: translate(30px);
        transform: translate(30px); }
    .catalog.list2 .availability {
      margin: 0; }
  .catalog.favorites-list .item .tags {
    right: 30px; }
  .catalog.favorites-list .item .remove-link {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAMAAABhq6zVAAAAG1BMVEXbPT5HcEzbPT7bPT3bPT3bPT3bPT3bPT3bPT1Bbh4fAAAACHRSTlPUABUV1NhqFo/B3acAAABNSURBVAjXTU7BDQAxCEKqlv0nPmqTS30YASQgesXM6kALnDvV2BCsMZUbh0p6mcIYqkY2CJZUJ+YHvICPbX55A85tC6EkWjkVjBpvnQ+KVgG93snl/gAAAABJRU5ErkJggg==) 0 0 no-repeat;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 10px;
    top: 14px; }
  .catalog.favorites-list .item a.remove-link {
    color: var(--color1, #db3d3d); }

.results .buy-btn:hover span {
  -webkit-transform: translate(30px);
  transform: translate(30px); }

.catalog-top-options {
  min-height: 35px;
  border-top: 3px solid #dadbdd;
  border-bottom: 1px solid #dadbdd;
  padding: 15px 0;
  margin-bottom: 30px; }
  .catalog-top-options .options-block {
    display: inline-block;
    color: #72808b;
    margin-left: 30px; }
    .catalog-top-options .options-block:first-child {
      margin-left: 0; }
  .catalog-top-options .options-nav {
    height: 35px;
    background-color: #FFF;
    border: 1px solid #c1c1c1;
    box-sizing: border-box;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    margin-left: 10px;
    display: inline-block;
    margin-bottom: 3px; }
    .catalog-top-options .options-nav:before {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      z-index: 1; }
    .catalog-top-options .options-nav:after {
      content: '\f107';
      font-size: 16px;
      font-family: 'Font Awesome 5 Free', sans-serif;
      position: absolute;
      right: 10px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -khtml-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      font-weight: bold; }
    .catalog-top-options .options-nav li {
      margin: 0;
      display: block; }
      .catalog-top-options .options-nav li a {
        display: block;
        margin: 0 -1px;
        position: relative;
        border-bottom: none;
        border-left: 1px solid #c1c1c1;
        border-right: 1px solid #c1c1c1;
        background-color: #fff;
        height: 33px;
        padding: 0 30px 0 10px;
        line-height: 34px;
        text-decoration: none;
        height: 0;
        overflow: hidden; }
        .catalog-top-options .options-nav li a.active {
          height: auto; }
      .catalog-top-options .options-nav li:last-child a {
        border-bottom: 1px solid #c1c1c1; }
    .catalog-top-options .options-nav.open {
      z-index: 2; }
      .catalog-top-options .options-nav.open:after {
        z-index: 1;
        content: '\f106'; }
      .catalog-top-options .options-nav.open li a {
        display: block;
        height: auto;
        z-index: 1; }
        .catalog-top-options .options-nav.open li a.active {
          background-color: #fafafa; }
  .catalog-top-options .view-block {
    float: right;
    color: #72808b;
    margin-top: 4px; }
  .catalog-top-options .view-nav {
    display: inline-block;
    vertical-align: middle; }
    .catalog-top-options .view-nav li {
      display: inline-block;
      margin-left: 10px; }
      .catalog-top-options .view-nav li a {
        display: block;
        width: 27px;
        height: 27px;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        border-radius: 3px; }
      .catalog-top-options .view-nav li .active {
        background-color: var(--color1, #db3d3d); }
      .catalog-top-options .view-nav li .grid {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARAQAAAAATFnpXAAAAAnRSTlMAAQGU/a4AAAAYSURBVHjaY2BoYGCo248Vg+X+/28gpAYAmL0TWyzPgpkAAAAASUVORK5CYII=); }
        .catalog-top-options .view-nav li .grid.active {
          background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARAQMAAAABo9W5AAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAAYSURBVHjaY2BoYGCo248Vg+X+/28gpAYAmL0TWyzPgpkAAAAASUVORK5CYII=); }
      .catalog-top-options .view-nav li .list {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAATAQAAAABe3ttcAAAAAnRSTlMAAQGU/a4AAAAaSURBVHjaY2D/38BQDsIMDCAazP8PwaTKAQDLGyBGGPP6XgAAAABJRU5ErkJggg==); }
        .catalog-top-options .view-nav li .list.active {
          background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAATAQMAAABMa3SyAAAABlBMVEX///////9VfPVsAAAAAXRSTlMAQObYZgAAABlJREFUeNpj+MHAwNABwv8bQDSQDwekygEARqAPFo3jG7kAAAAASUVORK5CYII=); }
      .catalog-top-options .view-nav li .list2 {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARAQAAAAATFnpXAAAAAnRSTlMAAQGU/a4AAAATSURBVHjaY/j/vwGOgQBEkyoGAKm6IuWTDxTvAAAAAElFTkSuQmCC); }
        .catalog-top-options .view-nav li .list2.active {
          background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAYAAAA7bUf6AAAAK0lEQVR42mL8//8/A6WAiYEKgCqGsADxf2oYwjh8wmQ0YEcDdmiFCUCAAQBUqwYrCWSkTgAAAABJRU5ErkJggg==); }

@media screen and (max-width: 999px) {
  .catalog-top-options {
    overflow: visible;
    display: flex;
    -webkit-align-items: center;
    align-items: center; }
    .catalog-top-options .catalog-option-label {
      display: none; }
    .catalog-top-options .options-block {
      margin-left: 30px; }
    .catalog-top-options .options-nav {
      margin-left: 0;
      display: block; }
    .catalog-top-options .view-block {
      font-size: 0;
      line-height: 0;
      color: #F3F4F6;
      float: right;
      margin: 0 0 0 auto; }
  .sidebar .catalog {
    display: none; }
  .catalog .item {
    width: 240px; }
  .catalog .buy-btn {
    float: right;
    margin-left: 10px; }
  .catalog.list .gift-label {
    bottom: 10px;
    top: auto; }
  .catalog.list .item {
    padding: 15px;
    display: flex;
    min-height: 160px;
    margin: 20px 0; }
    .catalog.list .item .picture {
      float: none;
      width: 95px;
      min-width: 95px;
      line-height: 1;
      height: auto;
      margin: 0;
      padding-top: 18px; }
    .catalog.list .item .extra {
      width: 81px;
      min-width: 81px; }
      .catalog.list .item .extra .data {
        width: auto;
        display: block; }
        .catalog.list .item .extra .data .price-block .old-price {
          font-size: 12px; }
        .catalog.list .item .extra .data .price-block .price {
          font-size: 20px;
          line-height: 22px; }
      .catalog.list .item .extra .buy-btn {
        margin-top: 20px; }
    .catalog.list .item .text {
      padding: 0 15px;
      margin: 0;
      flex-grow: 1; }
      .catalog.list .item .text .title {
        font-size: 14px;
        line-height: 18px; }
      .catalog.list .item .text .features {
        font-size: 12px; }
        .catalog.list .item .text .features li {
          margin: 2px 0; }
    .catalog.list .item .tags {
      left: 0;
      top: 10px;
      width: 118px;
      text-align: right; }
      .catalog.list .item .tags .tag {
        float: none;
        display: inline-block;
        margin-right: 0;
        margin-bottom: 5px; }
  .catalog.list2 .item:hover .extra .tags,
  .catalog.list2 .item .tags {
    right: 355px; }
  .catalog.list2 .item .text {
    width: 310px;
    margin-right: 0;
    margin-left: 150px;
    float: none; }
  .catalog.list2 .item .extra {
    margin-left: 150px;
    width: 310px; }
    .catalog.list2 .item .extra .price-block {
      width: 200px; }
    .catalog.list2 .item .extra .buy-btn {
      display: block;
      margin: 8px 80px 0 0;
      float: right; } }

@media screen and (max-width: 509px) {
  .catalog-top-options .options-block.count {
    display: none; }
  .catalog .item {
    width: 345px;
    height: auto; }
  .catalog .availability {
    font-size: 13px; }
  .catalog.list .item .picture {
    width: 66px;
    min-width: 66px; }
  .catalog.list .item .tags {
    width: 88px; }
  .catalog.list2 .item .picture {
    float: none;
    width: auto;
    text-align: center;
    display: none; }
  .catalog.list2 .item .title {
    margin-right: 70px; }
  .catalog.list2 .item:hover .extra .tags,
  .catalog.list2 .item .tags {
    right: 15px;
    top: 30px; }
  .catalog.list2 .item .text {
    width: auto;
    float: none;
    margin: 0 0 20px 0;
    float: none; }
  .catalog.list2 .item .extra {
    margin-left: 0;
    width: auto;
    float: none; }
    .catalog.list2 .item .extra .price-block {
      width: 200px; }
    .catalog.list2 .item .extra .buy-btn {
      margin-right: 65px; } }

.catalog-item {
  margin-top: 15px; }
  .catalog-item:after {
    content: '';
    display: table;
    clear: both; }
  .catalog-item .qty-block {
    display: flex;
    width: 163px;
    margin-bottom: 15px; }
    .catalog-item .qty-block span {
      padding: 10px 14px; }
    .catalog-item .qty-block .minus {
      border-right: 1px solid #dedede; }
    .catalog-item .qty-block .plus {
      border-left: 1px solid #dedede; }
    .catalog-item .qty-block input {
      flex: 1;
      -moz-appearance: textfield; }
      .catalog-item .qty-block input::-webkit-outer-spin-button, .catalog-item .qty-block input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0; }
  .catalog-item .item-top-block {
    background-color: #FFF;
    padding: 28px 28px 63px;
    box-shadow: 0 0 9px 2px rgba(0, 0, 0, 0.07);
    margin-bottom: 35px;
    display: flex;
    flex-wrap: wrap; }
    .catalog-item .item-top-block .left-column {
      width: 542px;
      position: relative;
      padding-top: 35px; }
      .catalog-item .item-top-block .left-column .favorite-link {
        position: absolute;
        top: 3px;
        right: 0;
        background: #d3d3d3 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAALCAYAAACksgdhAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIZJREFUeNpi+P//PwMQWwHxDiB+DsTHgTgIKu4NxEeh4ruB2AkkDpKw/I8dbMEh7sgIJC4xMDDoMhAPboI0/QMyGEnQxMAExO8ZSAOfQZomkqhpEgM0lHB5Gh3shIUeDG8loGEPTC2yJhDei0PDMWR16JpA+BAWDYyENIHwSmgqWIdNHiDAAGfnTPXDRWmqAAAAAElFTkSuQmCC) 50% 50% no-repeat;
        width: 25px;
        height: 24px;
        background-color: #d3d3d3;
        border-radius: 3px; }
        .catalog-item .item-top-block .left-column .favorite-link:after {
          width: 7px;
          height: 7px;
          background-color: #d3d3d3;
          left: 9px;
          bottom: -3px;
          content: '';
          position: absolute;
          transform: rotate(45deg);
          border-radius: 0 0 2px 0; }
        .catalog-item .item-top-block .left-column .favorite-link.active {
          background-color: var(--color1, #db3d3d); }
          .catalog-item .item-top-block .left-column .favorite-link.active:after {
            background-color: var(--color1, #db3d3d); }
      .catalog-item .item-top-block .left-column .favorite-link + .tags {
        right: 27px; }
      .catalog-item .item-top-block .left-column .tags {
        right: -5px;
        top: 5px; }
    .catalog-item .item-top-block .action-timer {
      right: 0;
      top: 40px;
      font-size: 9px;
      padding: 5px 10px 5px 10px;
      height: 51px;
      z-index: 1; }
      .catalog-item .item-top-block .action-timer:before {
        border-width: 25px 12px 25px 0;
        left: -12px; }
      .catalog-item .item-top-block .action-timer .time li:before {
        line-height: 16px; }
      .catalog-item .item-top-block .action-timer .time li .num {
        line-height: 18px; }
    .catalog-item .item-top-block .extra-options {
      border: 1px solid #eaeaea;
      padding: 5px 18px;
      border-radius: 5px; }
      .catalog-item .item-top-block .extra-options li {
        margin: 16px 0;
        font-size: 13px;
        line-height: 18px; }
        .catalog-item .item-top-block .extra-options li a {
          color: #797979;
          text-decoration: none;
          border-bottom: 1px dotted;
          margin-left: 23px;
          display: inline-block; }
          .catalog-item .item-top-block .extra-options li a:before {
            content: '';
            margin-left: -23px;
            width: 17px;
            height: 17px;
            background-position: 50% 50%;
            background-repeat: no-repeat;
            position: absolute;
            margin-top: 2px; }
          .catalog-item .item-top-block .extra-options li a.compare-link:before {
            background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAQAAACRZI9xAAAATElEQVR42pXNUQrAIAwE0ZxMelMP2ENERIZUWVPC/C0P1vqqdRfZDPAyRCyA504AlhGnhHxHEkRWJ061IyuT84QNovsjHtVIciTayADkwA1ynnA4WQAAAABJRU5ErkJggg==); }
          .catalog-item .item-top-block .extra-options li a.compare-link.active:before {
            background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARAgMAAABGA69pAAAADFBMVEVHcEyxsbGxsbGxsbEULNqIAAAAA3RSTlMAPuuMa+RTAAAAO0lEQVQI12Ng/P//AwMD2wEGAwYGSTCZAib/g8kD/H9AJAMDnDz8HyrCACMP/z/AgBBhBvJgJAiAjQcAhrYcb1144CAAAAAASUVORK5CYII=); }
          .catalog-item .item-top-block .extra-options li a.cheaper-link:before {
            background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAQAAACRZI9xAAAA1UlEQVR42m2RCaGDMAxAkYAEJODgI6ES5gAcrBLq4NXBcEAdMAfgoDgIV5p/LfedQKv/QE3PBPTVZ6Als+KJh5xp/nZ/HbgQzR+ZLE3HC1GccFYkdLf5QIg4XRQQ0KI3Qyl4/LlnI1gJNZnhdHE8T9TFQntKmnPGqr2JlURS7ziVTLjNaCX+tuw+bwkrEfJ5VVlVWSKo1dDhyeo5tlIyMNvoJy+7LDKWkqb8HgKJkVajZaWmMu2fp5hJ6tjQTE9tVyy8i2eAZ0OYDswI4V+BfaY/0P1N7+pLqhI0fCCfAAAAAElFTkSuQmCC); }
    .catalog-item .item-top-block .page-share-block {
      margin-top: 15px; }
  .catalog-item .swiper-wrapper,
  .catalog-item .swiper-container {
    z-index: auto; }
  .catalog-item .images:after {
    content: '';
    display: table;
    clear: both; }
  .catalog-item .thumbs {
    float: left;
    width: 64px;
    position: relative;
    height: 270px;
    margin-bottom: 30px; }
    .catalog-item .thumbs .scroll {
      position: absolute;
      left: 0;
      right: 0;
      text-align: center;
      color: #72808b;
      font-size: 18px;
      cursor: pointer; }
      .catalog-item .thumbs .scroll:before {
        font-family: 'Font Awesome 5 Free';
        font-weight: bold; }
      .catalog-item .thumbs .scroll.prev {
        top: 0; }
        .catalog-item .thumbs .scroll.prev:before {
          content: '\f106'; }
      .catalog-item .thumbs .scroll.next {
        bottom: 0; }
        .catalog-item .thumbs .scroll.next:before {
          content: '\f107'; }
      .catalog-item .thumbs .scroll.slick-disabled, .catalog-item .thumbs .scroll.disabled {
        opacity: 0.5; }
    .catalog-item .thumbs .items-holder {
      overflow: hidden;
      position: relative;
      height: 220px;
      padding: 25px 0; }
      .catalog-item .thumbs .items-holder .items {
        position: relative;
        margin: auto;
        height: 100%; }
        .catalog-item .thumbs .items-holder .items li {
          width: 64px;
          height: 52px;
          margin-bottom: 4px;
          border: 2px solid #FFF;
          box-sizing: border-box;
          text-align: center;
          line-height: 44px;
          border-radius: 3px; }
          .catalog-item .thumbs .items-holder .items li.active,
          .catalog-item .thumbs .items-holder .items li a.active {
            border-color: var(--color2, #528dca); }
          .catalog-item .thumbs .items-holder .items li img {
            max-width: 100%;
            max-height: 100%;
            vertical-align: middle;
            width: auto;
            height: auto;
            display: inline; }
  .catalog-item .main-picture {
    width: 400px;
    height: 260px;
    float: left;
    margin: 5px 0 5px 35px;
    position: relative;
    text-align: center; }
    .catalog-item .main-picture.no-photo {
      border: 1px solid #E3E3E3;
      display: flex;
      align-items: center;
      justify-content: center; }
    .catalog-item .main-picture img {
      max-height: 100%;
      max-width: 100%;
      width: auto;
      height: auto;
      vertical-align: middle;
      display: inline; }
    .catalog-item .main-picture a.swiper-slide:after {
      opacity: 0;
      content: '';
      background: rgba(255, 255, 255, 0.75) url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACUAAAAmCAMAAAB01KKfAAAAMFBMVEUAAABcZ3BcZ3BcZ3BcZ3BcZ3BcZ3BcZ3BcZ3BcZ3BcZ3BcZ3BcZ3BcZ3BcZ3BcZ3Dx2+dVAAAAD3RSTlMAESIzRFVmd4iZqrvM3e5GKvWZAAABB0lEQVR42p2TBZJrMQwEZZRRuv9pP6zirVE46YJQv7EgJkfIOUd6RqhD9IfJj8zAokC/6+WtHuFbifWWHsjT9R4r3E+Sycxj/6ahlNTY9RQ51cDaFtbh0iXSoWJ8nc1/ebAyhn2Yqi4tuqokoGXvsDKGT2hlW5Z7JqKFleAHoVtr4OMnuCjSTinZW6zIfGCl+R9Rnf+pzjqT93VBWwGLTLeWYFuMqwCr4koo6glzVrBxVX/+Ct7qsDhbBWiJC0j4BxsXLdEhXL7aAS6ZqNHNiyyK+XimYYM9eK3qI3yavKVZvcBir7nrBZeuggZEHuu/Mdl6va8h32iN3tGE3tE2vaMxvSL1UegvNp0jQZnUCsQAAAAASUVORK5CYII=) 50% 50% no-repeat;
      position: absolute;
      right: 0;
      top: 0;
      bottom: -1px;
      left: -1px;
      -webkit-transition: opacity .3s;
      -o-transition: opacity .3s;
      transition: opacity .3s; }
    .catalog-item .main-picture a.swiper-slide:hover:after {
      opacity: 1; }
  .catalog-item .video-link {
    display: block;
    border: 2px solid #f3f4f6;
    position: relative;
    border-radius: 5px;
    height: 48px;
    margin-top: 10px;
    width: 60px;
    clear: both; }
    .catalog-item .video-link:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAABKElEQVR42q2WIQ7CQBBFMXUYOAFBVlVV9QAcgQNwChIEqmYFqhJHggfRIKpWra2qadLgaio4APwmQ9IEmp3pbpNnmvl57TBDd2a7rvdHCPbgBirQERXdO4BoLM8RJCAHbyYFSKQSReEpZFxJQQEXNAjcJTyMe7v4nH8myxLoQDlRlgxF2lKsqG4HWqGo/ErWjOJ08FBzkAllUR88MArVn980FgyP6gO5XEQXv526L6xdRCRbWNrZ9EUvicgiXI283cu3aDkm8tW6wLLwTx/DsAUNZxiOE8c7FHxGThQQLWwAUuHCxt+w4YioTbVQUg3bEFmKW2Cc/1RJRgvnlcvYBBmPktK2D9qDxIA5Z8MzX19VjmwjfDsDNi7nu5j2pqDR7oia7inOee4DJqbYLGa6skUAAAAASUVORK5CYII=) center no-repeat; }
  .catalog-item .item-top-block .right-column {
    width: 170px;
    margin-left: 30px; }
  .catalog-item .item-top-block .articul {
    color: #989898;
    font-size: 13px;
    margin-bottom: 15px;
    white-space: normal; }
  .catalog-item .item-top-block .articul .value {
    color: #000; }
  .catalog-item .item-top-block .price-block {
    margin: 22px 0 0px; }
    .catalog-item .item-top-block .price-block .old-price {
      color: #a2a2a2;
      text-decoration: line-through;
      font-size: 14px; }
      .catalog-item .item-top-block .price-block .old-price ~ .price {
        color: #db3d3d; }
    .catalog-item .item-top-block .price-block .price {
      color: #000;
      font-size: 34px;
      line-height: 34px;
      font-weight: bold;
      white-space: nowrap; }
      .catalog-item .item-top-block .price-block .price .rub {
        font-size: 24px; }
      .catalog-item .item-top-block .price-block .price .unit {
        font-size: 16px; }
  .catalog-item .item-top-block .availability {
    font-weight: bold;
    margin: 0 0 20px; }
  .catalog-item .item-top-block .price-block + .btn {
    margin-top: 0; }
  .catalog-item .item-top-block .availability + .btn {
    margin-top: 0; }
  .catalog-item .item-top-block .multiplicity {
    text-align: center;
    margin: -7px 0 7px; }
  .catalog-item .item-top-block .btn {
    width: 165px;
    margin-bottom: 10px; }
  .catalog-item .description {
    clear: both;
    margin: 35px 0; }
  .catalog-item .chars-block {
    float: left;
    width: 470px;
    margin-right: 130px;
    margin-bottom: 35px; }
    .catalog-item .chars-block .list li .value {
      float: right;
      width: 170px;
      font-weight: bold; }
  .catalog-item .docs-blocks {
    float: left;
    width: 270px;
    margin-bottom: 35px; }
  .catalog-item .list li {
    padding: 10px 0;
    border-top: 1px solid #d1d6da;
    overflow: hidden; }
    .catalog-item .list li:first-child {
      border: none; }
  .catalog-item .catalog-item-tabs {
    margin: 35px 0;
    overflow: hidden;
    position: relative; }
    .catalog-item .catalog-item-tabs.left-fade:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 12px;
      background: -moz-linear-gradient(90deg, #f3f4f6 30%, rgba(255, 255, 255, 0) 100%);
      background: -webkit-linear-gradient(90deg, #f3f4f6 30%, rgba(255, 255, 255, 0) 100%);
      background: linear-gradient(90deg, #f3f4f6 30%, rgba(255, 255, 255, 0) 100%);
      z-index: 1;
      height: 52px;
      border-left: 3px solid #f3f4f6; }
    .catalog-item .catalog-item-tabs.right-fade:after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 12px;
      background: -moz-linear-gradient(-90deg, #f3f4f6 30%, rgba(255, 255, 255, 0) 100%);
      background: -webkit-linear-gradient(-90deg, #f3f4f6 30%, rgba(255, 255, 255, 0) 100%);
      background: linear-gradient(-90deg, #f3f4f6 30%, rgba(255, 255, 255, 0) 100%);
      z-index: 1;
      height: 52px;
      border-right: 3px solid #f3f4f6; }
    .catalog-item .catalog-item-tabs .tabs {
      display: flex;
      display: table;
      position: relative;
      white-space: nowrap; }
      .catalog-item .catalog-item-tabs .tabs li {
        list-style: none;
        display: table-cell; }
      .catalog-item .catalog-item-tabs .tabs a {
        display: block;
        padding: 16px 30px;
        font-size: 15px;
        color: #808080;
        text-decoration: none;
        border: solid #e7e7e7;
        line-height: 19px;
        border-width: 1px 1px 0 1px;
        border-radius: 5px 5px 0 0;
        text-align: center; }
        .catalog-item .catalog-item-tabs .tabs a:hover {
          background-color: rgba(255, 255, 255, 0.5); }
        .catalog-item .catalog-item-tabs .tabs a.active {
          background-color: #FFF;
          border-color: #FFF; }
    .catalog-item .catalog-item-tabs .tabs-holder {
      padding: 30px;
      background-color: #FFF;
      border-radius: 0 0 5px 5px; }
    .catalog-item .catalog-item-tabs .description,
    .catalog-item .catalog-item-tabs .docs-blocks {
      width: auto;
      margin: 0;
      float: none; }
      .catalog-item .catalog-item-tabs .description .docs li,
      .catalog-item .catalog-item-tabs .docs-blocks .docs li {
        padding: 15px 0; }
    .catalog-item .catalog-item-tabs .reviews-block {
      margin: 0; }
      .catalog-item .catalog-item-tabs .reviews-block .reviews-header .reviews-sorting-block .sorting-nav li a.active {
        background-color: #eef1f4; }
      .catalog-item .catalog-item-tabs .reviews-block .reviews-list {
        border-top: 3px solid #dfe5ea;
        padding: 20px 0 0;
        margin-top: 30px; }
      .catalog-item .catalog-item-tabs .reviews-block .pagination {
        margin-bottom: 0; }
    .catalog-item .catalog-item-tabs .chars-block {
      margin: 0;
      width: auto;
      float: none; }
      .catalog-item .catalog-item-tabs .chars-block .list li .value {
        width: 50%; }
  .catalog-item .catalog-sku-options-block {
    margin-bottom: 10px; }
    .catalog-item .catalog-sku-options-block .block-name {
      font-size: 13px;
      margin-bottom: 5px; }
  .catalog-item .brand-logo {
    margin: 25px 0; }
  .catalog-item .catalog-sku-options {
    display: flex;
    flex-wrap: wrap;
    gap: 5px; }
    .catalog-item .catalog-sku-options .option {
      margin: 0;
      position: relative; }
      .catalog-item .catalog-sku-options .option .option-content {
        display: flex;
        font-size: 11px;
        line-height: 16px;
        padding: 3px 5px;
        color: #000;
        border: 1px solid #d6d7d9;
        border-radius: 3px;
        min-width: 32px;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        cursor: pointer; }
      .catalog-item .catalog-sku-options .option:has(input[disabled]):after {
        content: '';
        position: absolute;
        height: 100%;
        width: 100%;
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAdCAQAAAD8mq+EAAABKklEQVR42pTTMUqCARiAYaeaCiodwwMUXqCoI9QhPEQ3EaEhG9pqSzNBqUFCEBcRbEhEBwfhJ0EKUZ8maf1892d8U9snryS/Pdv1BGyJ7Svzow2lbeCRBnM1n3ATh2ktZqoGwHkUZvRIVIxhHYdZI6YqJpA4jcKcbybKpjB0HIUXMFKRQFc6Cq/gS9UMPmSisAB9NXOoO4zCInTV/cKzvSi8Za3jzQIe7UThHSstTUt4SEXzwFJTywruomzHIwvvOtZwG4V7nvlV1wWKUXigzlxNHyhEYcYHM1VfwHUcdkm8GAGXUXhsyFTZBL7lovBE4v+NkWwUnlkx3rzRk4lDDDZvtAJwkxs+vZpDw1EqnnvafqDsb3ykla2p0CJ53X8O0kv0VKDNqQz0BACVKIjzrPXlHwAAAABJRU5ErkJggg==) center no-repeat;
        top: 0;
        left: 0; }
      .catalog-item .catalog-sku-options .option input {
        position: absolute;
        opacity: 0; }
        .catalog-item .catalog-sku-options .option input:checked + .option-content {
          border: 2px solid #000;
          padding: 2px 4px; }
        .catalog-item .catalog-sku-options .option input[disabled] + .option-content {
          opacity: 0.2; }
    .catalog-item .catalog-sku-options.colors .option .option-content {
      min-width: 25px;
      height: 25px;
      padding: 2px;
      color: inherit; }
      .catalog-item .catalog-sku-options.colors .option .option-content:after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-color: currentColor; }
    .catalog-item .catalog-sku-options.colors .option input:checked + .option-content {
      padding: 1px; }
  .catalog-item .rating-block {
    width: 90px;
    height: 15px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAPCAMAAAAxmgQeAAAANlBMVEX/////++n/+NX/99H/8rT/8a7/7pT/7Y//7If/6G7/5mH/5mD/4kH/4Tn/3AD/2wD/2AD/1ADCxBVtAAAAZklEQVR42mWPhQEEIQzAgrvtP+zrGRC03nIg2UhpU8nWNsfk3OY44OlofCo9gqslmUPfg9UCQGmb+5G+Ow5ih1MZH6qTLgDEU8W4nkfDoLWgyafOtVK6zuYxRC4STMn+4XfYzfHyBoT9AtxRL+jqAAAAAElFTkSuQmCC); }
    .catalog-item .rating-block .value {
      width: 50%;
      height: 100%;
      background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAPCAYAAAAGRPQsAAAAeElEQVR42q2SwQ3AIAhFXYdtGMZdmIRBmnQJpqA04WSUFtTknQgvX/0tOno3aLvHRfRyQgSGOnAilTq0K9MB+LuIRvc0bMhEdvmMDFzKF8tfSPTYUhfVhbEocWWp/+KEalFXQFXGk6pgtvVswNBD9lnPJMO43HGyBzehMbNX8IC7AAAAAElFTkSuQmCC); }
      .catalog-item .rating-block .value.v1 {
        width: 20%; }
      .catalog-item .rating-block .value.v1_5 {
        width: 30%; }
      .catalog-item .rating-block .value.v2 {
        width: 40%; }
      .catalog-item .rating-block .value.v2_5 {
        width: 50%; }
      .catalog-item .rating-block .value.v3 {
        width: 60%; }
      .catalog-item .rating-block .value.v3_5 {
        width: 70%; }
      .catalog-item .rating-block .value.v4 {
        width: 80%; }
      .catalog-item .rating-block .value.v4_5 {
        width: 90%; }
      .catalog-item .rating-block .value.v5 {
        width: 100%; }
  .catalog-item .gift-label {
    background-color: #ffa947;
    position: absolute;
    left: 0;
    top: 5px;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 11px;
    line-height: 20px;
    padding: 0 4px 0 6px; }
    .catalog-item .gift-label:before {
      content: '';
      border-width: 10px 8px	0 8px;
      border-style: solid;
      border-color: #ffa947 transparent;
      position: absolute;
      right: -8px;
      top: 0; }
    .catalog-item .gift-label:after {
      content: '';
      border-width: 0 8px	10px 8px;
      border-style: solid;
      border-color: #ffa947 transparent;
      position: absolute;
      right: -8px;
      bottom: 0; }
  .catalog-item .catalog-item-options {
    display: flex;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 11px;
    margin: 10px 0; }
    .catalog-item .catalog-item-options a {
      display: flex;
      width: 18px;
      height: 18px;
      background-position: center;
      background-repeat: no-repeat; }
      .catalog-item .catalog-item-options a.favorite-link {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAASCAYAAAC5DOVpAAABFUlEQVR42p2OA2gGcRjGZ+fl5RaXZttptm2F2fZyyzWnhdlGdo1xdq7h9ly9X719vLt//ar30Z0Rf9PLW1YgHkyANhCs5vuABjAGYoEd93kwE1wCQY0t4AhWtXi3oFDbkEBsghrQCZ5YSQAfYADUqY0XqobswT2JRWofsWSlPWCn5meR9w4cRKGLhEUeVCstABMd3hz128Rjl44gIwUPvTDqb4rHOR3uCsd8qX8kHqN0dCsca6R+v3gE0vGlcOyZ+tEq4ZCESZlD49Q75KIT+CEjW+JQChAIV3WzgJn+Boa8WbZcV6iXhTx1ZFxYZtDQ7w/zQT1DE9yTOhhMmq/+IemDY4qH2GAnEBj93Fcy6AbqgJuh7D9oa5ch++oM6wAAAABJRU5ErkJggg==); }
        .catalog-item .catalog-item-options a.favorite-link.active {
          background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAASCAYAAAC5DOVpAAAAvUlEQVR42mNABku27uEA4mAgngDEdUDshCZvDcQVQNwHxIFAzAOXRFMYC8S3gPg/Gt4DxKpAvB2L3D0gTsVm0H88+B4B+VSYQSJA/AwkSAF+B8QyIMOawAKU4zqQYfupZNhukGEnqWTYEZBhvVQyrB1kmAOVDPOCxehhCg06jJzOdID4DwWGmaAn3BQyDcrGlaVaSTSoE6YXl4HdRBo0AaaHQgMRBlFoIMIgUg1sxEiYUECugaZAXASiCakFAFcZ77EiGhYHAAAAAElFTkSuQmCC); }
      .catalog-item .catalog-item-options a.compare-link {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAYAAAA7bUf6AAAAjElEQVR42mNYsnUPKxB3APErIP5PAn4AxLVAzAIypAskSAFuAxnyFsqxBmIGErAbVN8LBiQTGUjEcL2EDHkEkiPHkCVAHAplnwfir6QaAuP3UcOQViyGsAOxCKWGxIDkKDUkekAM6YGybyHJJRBpCGFMQ0MQeceKRANskfNON6W5GFaedJJZnrQDMQsAdLjn6jhxCPYAAAAASUVORK5CYII=); }
      .catalog-item .catalog-item-options a.share-link {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAYAAAA7bUf6AAAA/ElEQVR42qXRJVB1YRCA4f0Vd3fNdFw6iYh33CMFt17wnnCnz9BxEk5D0/LiZ77rMvPc46syv7jxD4O4hpogCEI9/oq9Hw+GoU4IonCBCfy2F+QOinyIA+HQT9P4YwbRT2JCFJKQA7WYxR9XQaLQiV0c4Bhq2MA/R0FisQZ1wyr+mUH+YQLqpmckmUFS8Qx1wxOy7bVTDrV4wDCqoBa3SHM02DLopxc0QhAB/XSJeGcrDsQBFHtIhSAOigPEQCzUDPIbNVAcI80SvBVhZgAYQYB/6IFiCiEQg+Mghgr0ItKdIHdQ5EE8UAjFpfA3AvVB/9cMhnAN9cAZBvD3FVKCyZfwqs58AAAAAElFTkSuQmCC);
        padding: 0; }
        .catalog-item .catalog-item-options a.share-link:after {
          content: none;
          display: none; }
  .catalog-item.catalog-item-extended .qty-block {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px; }
  .catalog-item.catalog-item-extended .item-top-block {
    display: flex;
    gap: 40px 50px;
    padding: 35px 45px 45px 35px; }
    .catalog-item.catalog-item-extended .item-top-block .articul {
      margin-bottom: 5px; }
    .catalog-item.catalog-item-extended .item-top-block .brand-logo {
      margin-bottom: 18px; }
    .catalog-item.catalog-item-extended .item-top-block .price-block .price {
      font-size: 30px;
      line-height: 1; }
    .catalog-item.catalog-item-extended .item-top-block .availability {
      margin-bottom: 9px; }
    .catalog-item.catalog-item-extended .item-top-block .left-column {
      width: 400px;
      padding-top: 0; }
    .catalog-item.catalog-item-extended .item-top-block .middle-column {
      width: 145px; }
    .catalog-item.catalog-item-extended .item-top-block .right-column {
      margin-left: 0;
      width: 145px; }
    .catalog-item.catalog-item-extended .item-top-block .images {
      display: flex;
      flex-direction: column; }
      .catalog-item.catalog-item-extended .item-top-block .images .thumbs {
        width: 100%;
        height: 52px;
        order: 2; }
      .catalog-item.catalog-item-extended .item-top-block .images .main-picture {
        margin: 0;
        width: 100%; }
    .catalog-item.catalog-item-extended .item-top-block .price-block {
      margin-top: 0; }
    .catalog-item.catalog-item-extended .item-top-block .btn {
      width: 100%;
      min-width: 145px; }
    .catalog-item.catalog-item-extended .item-top-block .cheaper-block {
      text-align: center;
      margin: 15px 0; }
      .catalog-item.catalog-item-extended .item-top-block .cheaper-block a {
        color: #737373;
        text-decoration-style: dotted;
        font-size: 13px; }

.reviews-block {
  clear: both;
  margin: 40px 0; }
  .reviews-block .reviews-header {
    display: flex;
    justify-content: space-between; }
    .reviews-block .reviews-header .grade-block .grade-value {
      color: #7e7e7e;
      font-size: 12px;
      margin-top: 5px; }
    .reviews-block .reviews-header .yama-logo {
      width: 190px; }
      .reviews-block .reviews-header .yama-logo img {
        max-width: 100%; }
    .reviews-block .reviews-header .reviews-sorting-block .title {
      font-weight: 500;
      color: #72808b;
      vertical-align: middle;
      display: inline-block; }
    .reviews-block .reviews-header .reviews-sorting-block .sorting-nav {
      display: inline-block;
      vertical-align: middle; }
      .reviews-block .reviews-header .reviews-sorting-block .sorting-nav li {
        display: inline-block;
        vertical-align: middle;
        margin-left: 15px; }
        .reviews-block .reviews-header .reviews-sorting-block .sorting-nav li a {
          text-decoration: none;
          border-bottom: 1px dotted; }
          .reviews-block .reviews-header .reviews-sorting-block .sorting-nav li a.active {
            display: block;
            padding: 7px 25px 7px 10px;
            background: #FFF url(data:image/gif;base64,R0lGODlhBwAIAIABAICAgP///yH5BAEAAAEALAAAAAAHAAgAAAIMhINhkN17FHQPWlgAADs=) right 10px top 14px no-repeat;
            border-radius: 4px;
            border: none;
            color: #808080; }
            .reviews-block .reviews-header .reviews-sorting-block .sorting-nav li a.active.desc {
              background-image: url(data:image/gif;base64,R0lGODlhBwAIAIABAICAgP///yH5BAEAAAEALAAAAAAHAAgAAAILhI8Yy5H7WjvTtAIAOw==); }
  .reviews-block .reviews-list {
    background-color: #FFF;
    padding: 30px;
    margin: 40px 0; }
    .reviews-block .reviews-list .reviews-item {
      border-top: 1px solid #dfe5ea;
      padding-top: 30px;
      margin-top: 25px;
      display: flex; }
      .reviews-block .reviews-list .reviews-item:first-child {
        border: none;
        padding-top: 0;
        margin-top: 10px; }
      .reviews-block .reviews-list .reviews-item .text-holder {
        flex-grow: 1; }
      .reviews-block .reviews-list .reviews-item .slide.on {
        max-height: 240px;
        overflow: hidden;
        position: relative;
        -webkit-transition: all 0.3s;
        -khtml-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
        .reviews-block .reviews-list .reviews-item .slide.on:before {
          content: '';
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0;
          background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(1, #FFF));
          background-image: -o-linear-gradient(bottom, transparent 0%, #FFF 100%);
          background-image: -moz-linear-gradient(bottom, transparent 0%, #FFF 100%);
          background-image: -webkit-linear-gradient(bottom, transparent 0%, #FFF 100%);
          background-image: -ms-linear-gradient(bottom, transparent 0%, #FFF 100%);
          background-image: linear-gradient(to bottom, transparent 0%, #FFF 100%);
          height: 50px; }
        .reviews-block .reviews-list .reviews-item .slide.on.open {
          max-height: 600px; }
          .reviews-block .reviews-list .reviews-item .slide.on.open:before {
            height: 0; }
      .reviews-block .reviews-list .reviews-item .text {
        color: #7e7e7e; }
        .reviews-block .reviews-list .reviews-item .text h5 {
          color: #000;
          margin: 10px 0; }
          .reviews-block .reviews-list .reviews-item .text h5:first-child {
            margin-top: 0; }
        .reviews-block .reviews-list .reviews-item .text ol, .reviews-block .reviews-list .reviews-item .text ul {
          margin: 10px 0;
          margin-left: 20px; }
        .reviews-block .reviews-list .reviews-item .text ol li {
          list-style: decimal; }
      .reviews-block .reviews-list .reviews-item .toggle {
        display: none;
        color: #7e7e7e;
        border-bottom: 1px dotted;
        cursor: pointer; }
        .reviews-block .reviews-list .reviews-item .toggle:after {
          position: absolute;
          display: inline-block;
          vertical-align: middle;
          margin-left: 7px;
          margin-top: 2px;
          content: '\f107';
          font-family: 'Font Awesome 5 Free';
          -webkit-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s;
          font-weight: bold; }
      .reviews-block .reviews-list .reviews-item .slide.on + .toggle {
        display: inline-block; }
      .reviews-block .reviews-list .reviews-item .slide.on.open + .toggle:after {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg); }
      .reviews-block .reviews-list .reviews-item .data {
        width: 160px;
        margin-left: 40px;
        flex: 0 0 160px; }
      .reviews-block .reviews-list .reviews-item .date {
        color: #7e7e7e;
        font-size: 13px;
        margin: 20px 0 15px; }
      .reviews-block .reviews-list .reviews-item .votes {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex; }
        .reviews-block .reviews-list .reviews-item .votes a {
          color: #676767;
          font-size: 13px;
          line-height: 17px;
          padding: 7px 30px 7px 10px;
          border-radius: 4px;
          cursor: pointer;
          text-decoration: none; }
        .reviews-block .reviews-list .reviews-item .votes .agree {
          background: #deeed7 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAANCAQAAADcF/zKAAAAh0lEQVR42nzJgwEDQRQE0FgNxE6dv5mUFtvG3Jy5O8v5LyXhNRJwld0eZSwwhUDJTIQLUuTK81fxmBOb4a2+wGN7tcg3PLiOrGO8LX5bkx0nZDsvljuC+dv8s8qN5R/iV5DvLN8Qn/U8t/nvcTBfdqmRv/hzkbnW3mIz1oTqb4c6AySeASjkAVU2Fuhy2RS2AAAAAElFTkSuQmCC) right 10px top 7px no-repeat; }
        .reviews-block .reviews-list .reviews-item .votes .disagree {
          margin-left: 10px;
          background: #f8d8d6 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAANCAQAAADcF/zKAAAAiUlEQVR42n2P1QECMQBDi8sCuDMAIzAZtgqj4e4uuZx7k5O+vK+KHqx2ex2beM4IQf3Fn71r49oqaaRqKkbTznzJvTz1z9ScnJlzkeizU98Ifzjz0rQD7nDmr+sbHuyRMMZbE29t2enaakP9MvZSVq+W7KXYBE9ZS3MR/pjaZJ9eYCrR7R7YjMkKpE0DtgwLvVUAAAAASUVORK5CYII=) right 10px top 11px no-repeat; }
  .reviews-block .grade {
    width: 65px;
    height: 10px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAZCAYAAAC/zUevAAABw0lEQVR42r2WA+wdQRjE6zaogtp2w9q2bdu2bVthGVRRw9r627ZtzEsmyZfHw+Yu+R32vpmd3WMFM0vZzwrHwD9wsYLVCwMMAWWCqUa9KpnIcZjbI/LYylloydGH8vg/j7tZOROHuP3I7QduT1g1C3U56mzQim21QQzbG1sRYjc7e2XX/oTt51R2VhU0Bn3ANLAenAI57GyMXX1PtheBM2ADmAH6giagmp7Ou4MPIA4U09ieRy60d1zUl4B48AX00RIiyM7gM3gBroJdoK8HfW+wHVwBz8AnO79oLSFSWbwVVFF0aSuDZfTN0SKYJFLvURRinfBcqFU0U4iOmwywS3gt0yseLcRnDQY4IDxmGh3FAGHySqf2hdCONXs9e4EomrXXqKnP+gQwXNWL6x5Nl2qsn8b6Fyo/YN25/a+lWNR1UzULtUA+R1ZDhy6CmuYqQgyn2Tsn57qBtbatk3PPqJuhIsRmml0Uba3l3U/egi6i5jDbD6gIcV/elDZT8SVNA9fFv0QpOGl3cz5XEcKHZpPBN/klBfXFfXNTnPsH5nA/DlRUEkLwEwx3UdsPfLSrT1ARog/wBYFgi0bNauBPzVBP9eUQiyM4o7sMcQAAAABJRU5ErkJggg==) -1px 0/auto 100% repeat-x; }
    .reviews-block .grade .fill {
      height: 10px;
      width: 0;
      background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAZCAYAAAC/zUevAAABJ0lEQVR42sXUA0xuYRzH8evx3ltD5syas23XmO2a8pA9ZDdvNTc7227Mbsh6+o3x+Dnn/W+f6eh79HyTMmT6WwksQP03VQwu7AjkjSBVRAx9iFhWOsAYyBdMlIzoZYgYUCpAHQgLXSUicjkiamhe7DfogiUEQxpUwBVHxANUQTqEghXowR8hFzeFITiARyAUPMEhjIEln4gtIDLa5RNxLnPEFZ8If5kjIvh+F2EyBcQK/Ts8KAeEif1NbSkFeEldL8xhB4gIR+BCa+HqEBnRT3P1nBIZsUkr4B/cAhHJkEaECxAJQmlEZEmMKKIR0QmEwQU0wh4QBn00IlaAfKEHNN98N80M+x3Ad9oR0+DCsK81DH9cK2hEWMIqbEI2z2OSYB02wYlr/xdUXv5Bs2T0DAAAAABJRU5ErkJggg==) -1px 0/auto 100% repeat-x; }
    .reviews-block .grade.average-grade {
      width: 157px;
      height: 25px;
      background-position: -4px  0; }
      .reviews-block .grade.average-grade .fill {
        height: 25px;
        background-position: -4px  0; }
    .reviews-block .grade.s1 .fill {
      width: 18%; }
    .reviews-block .grade.s2 .fill {
      width: 39%; }
    .reviews-block .grade.s3 .fill {
      width: 60%; }
    .reviews-block .grade.s4 .fill {
      width: 81%; }
    .reviews-block .grade.s5 .fill {
      width: 100%; }

.splash-video-block {
  max-width: 1000px; }

@media screen and (max-width: 999px) {
  .catalog-item .item-top-block {
    padding: 15px; }
    .catalog-item .item-top-block .left-column {
      float: none;
      width: 100%; }
    .catalog-item .item-top-block .images {
      display: flex;
      flex-direction: column; }
      .catalog-item .item-top-block .images .video-links {
        order: 2;
        display: flex;
        flex-wrap: wrap;
        justify-content: center; }
      .catalog-item .item-top-block .images .video-link {
        margin-top: 0;
        margin-bottom: 15px;
        margin-right: 10px; }
      .catalog-item .item-top-block .images .thumbs {
        order: 2;
        float: none;
        width: auto;
        height: auto;
        margin: 0; }
        .catalog-item .item-top-block .images .thumbs .items-holder {
          height: auto;
          display: none; }
          .catalog-item .item-top-block .images .thumbs .items-holder .items {
            text-align: center; }
            .catalog-item .item-top-block .images .thumbs .items-holder .items li {
              width: auto;
              height: auto;
              display: inline-block;
              margin: 0 4px; }
              .catalog-item .item-top-block .images .thumbs .items-holder .items li a {
                display: block;
                width: 6px;
                height: 6px;
                border: 2px solid #d8d9db;
                border-radius: 50%; }
                .catalog-item .item-top-block .images .thumbs .items-holder .items li a img {
                  display: none; }
        .catalog-item .item-top-block .images .thumbs .scroll {
          display: none; }
      .catalog-item .item-top-block .images .main-picture {
        order: 1;
        padding: 0 0 30px;
        width: auto;
        margin-left: 0; }
        .catalog-item .item-top-block .images .main-picture > .swiper-pagination-bullets {
          line-height: 1;
          display: flex;
          justify-content: center;
          margin-top: 10px; }
          .catalog-item .item-top-block .images .main-picture > .swiper-pagination-bullets .swiper-pagination-bullet {
            margin: 0 3px;
            width: 6px;
            height: 6px;
            border: 2px solid #d8d9db;
            border-radius: 50%;
            background: none;
            opacity: 1; }
            .catalog-item .item-top-block .images .main-picture > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
              background: none;
              border-color: var(--color2, #528dca); }
    .catalog-item .item-top-block .right-column {
      margin: 0;
      width: 100%;
      float: none; }
      .catalog-item .item-top-block .right-column .articul {
        float: right; }
      .catalog-item .item-top-block .right-column .price-block {
        margin: 0; }
      .catalog-item .item-top-block .right-column .btn {
        width: 100%; }
    .catalog-item .item-top-block .extra-options {
      padding: 5px 10px;
      display: flex;
      justify-content: space-around; }
  .catalog-item .docs-blocks,
  .catalog-item .chars-block {
    float: none;
    width: auto;
    margin-right: 0; }
  .catalog-item .list li {
    overflow: hidden; }
    .catalog-item .list li span {
      float: left;
      width: 50%; }
  .catalog-item .catalog-item-tabs {
    margin: 35px 0; }
    .catalog-item .catalog-item-tabs .tabs {
      justify-content: stretch; }
      .catalog-item .catalog-item-tabs .tabs li {
        flex-grow: 1; }
      .catalog-item .catalog-item-tabs .tabs a {
        padding: 16px 5px; }
  .catalog-item.catalog-item-extended .item-top-block .left-column {
    margin: 0 auto; }
  .catalog-item.catalog-item-extended .item-top-block .images .thumbs {
    display: none; }
    .catalog-item.catalog-item-extended .item-top-block .images .thumbs .items-holder {
      padding: 0; }
  .catalog-item.catalog-item-extended .item-top-block .middle-column {
    flex: 1; }
  .reviews-block .reviews-header {
    position: relative;
    -webkit-flex-direction: column;
    flex-direction: column; }
    .reviews-block .reviews-header .empty-msg {
      margin-right: 130px; }
    .reviews-block .reviews-header .grade-block .grade-value {
      color: #7e7e7e;
      font-size: 12px;
      margin-top: 5px; }
    .reviews-block .reviews-header .yama-logo {
      width: auto;
      position: absolute;
      right: 0; }
    .reviews-block .reviews-header .reviews-sorting-block {
      margin: 20px 0; }
      .reviews-block .reviews-header .reviews-sorting-block .title {
        display: block; }
      .reviews-block .reviews-header .reviews-sorting-block .sorting-nav {
        display: block;
        margin-top: 15px; }
        .reviews-block .reviews-header .reviews-sorting-block .sorting-nav li:first-child {
          margin-left: 0; }
  .reviews-block .reviews-list .reviews-item {
    flex-direction: column; }
    .reviews-block .reviews-list .reviews-item:first-child {
      border: none;
      padding-top: 0;
      margin-top: 10px; }
    .reviews-block .reviews-list .reviews-item .text-holder {
      width: 100%;
      order: 2; }
    .reviews-block .reviews-list .reviews-item .data {
      width: 100%;
      margin-left: 0;
      order: 1;
      margin-bottom: 20px;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      flex: 0 0 auto; }
      .reviews-block .reviews-list .reviews-item .data .date {
        margin: 0; } }

@media screen and (max-width: 509px) {
  .catalog-item .qty-block {
    margin-left: auto;
    margin-right: auto; }
  .catalog-item.catalog-item-extended .item-top-block {
    gap: 20px; }
    .catalog-item.catalog-item-extended .item-top-block .left-column {
      margin: 0 auto;
      width: 100%; }
    .catalog-item.catalog-item-extended .item-top-block .images .thumbs {
      display: none; }
      .catalog-item.catalog-item-extended .item-top-block .images .thumbs .items-holder {
        display: none;
        padding: 0; }
    .catalog-item.catalog-item-extended .item-top-block .middle-column {
      flex: 1; }
    .catalog-item.catalog-item-extended .item-top-block .right-column {
      width: auto; }
  .catalog-item .catalog-item-tabs.right-fade:after, .catalog-item .catalog-item-tabs.left-fade:before {
    height: 40px; }
  .catalog-item .catalog-item-tabs .tabs a {
    padding: 10px 5px;
    font-size: 13px; }
  .catalog-item .catalog-item-tabs .tabs-holder {
    padding: 25px; }
  .catalog-item .catalog-item-tabs .reviews-block .reviews-header .yama-logo {
    top: 2px; }
  .catalog-item .catalog-item-tabs .reviews-block .reviews-header .empty-msg {
    margin-right: 0;
    margin-top: 30px; }
    .catalog-item .catalog-item-tabs .reviews-block .reviews-header .empty-msg + .yama-logo {
      left: 0;
      right: auto;
      top: 0; } }

.catalog-tags-nav {
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 15px; }
  .catalog-tags-nav li {
    margin-right: 8px;
    margin-bottom: 10px; }
    .catalog-tags-nav li.extra {
      display: none; }
  .catalog-tags-nav a {
    display: block;
    background-color: #fcfdff;
    padding: 10px 12px;
    border-radius: 4px;
    text-decoration: none;
    color: #878787; }
    .catalog-tags-nav a.active {
      color: #FFF;
      padding-right: 25px;
      background-color: var(--color1, #db3d3d);
      background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAPElEQVR42mP48/f/aiB2Y0ACID5IHMRwB+K3MAUgGsp3B/GRFdTAJZABVOI/iEaXcEPT6YYu4YbOx+taANjFc2DfshwuAAAAAElFTkSuQmCC);
      background-position: top 50% right 10px;
      background-repeat: no-repeat; }
    .catalog-tags-nav a.toggle {
      border: none; }
      .catalog-tags-nav a.toggle span + span {
        display: none; }
  .catalog-tags-nav.open a.toggle span {
    display: none; }
  .catalog-tags-nav.open a.toggle span + span {
    display: inline; }
  @media (max-width: 999px) {
    .catalog-tags-nav li {
      -webkit-flex: 1 1 auto;
      flex: 1 1 auto;
      text-align: center; } }
  .catalog-tags-nav + .article {
    margin-top: 40px; }
  @media (max-width: 509px) {
    .catalog-tags-nav {
      -webkit-flex-wrap: nowrap;
      flex-wrap: nowrap;
      overflow: auto;
      -ms-overflow-style: none;
      scrollbar-width: none; }
      .catalog-tags-nav:after {
        content: '';
        position: absolute;
        width: 10px;
        height: 34px;
        background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, #FFF 100%);
        background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, #FFF 100%);
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #FFF 100%);
        right: 0; }
      .catalog-tags-nav::-webkit-scrollbar {
        display: none; }
      .catalog-tags-nav li {
        white-space: nowrap; } }

.reviews .item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-bottom: 30px;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 30px; }
  .reviews .item .picture {
    width: 140px;
    border-radius: 50%;
    overflow: hidden;
    height: 140px;
    -webkit-flex: 0 0 140px;
    flex: 0 0 140px;
    margin-right: 55px; }
    .reviews .item .picture img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .reviews .item .title {
    font-weight: bold;
    margin-top: 12px;
    font-size: 18px;
    line-height: 24px; }
  .reviews .item .post {
    color: #616262;
    margin-top: 4px; }
  .reviews .item .description {
    margin-top: 9px;
    margin-bottom: 20px; }
  .reviews .item:last-child {
    border: none;
    margin-bottom: 15px; }

@media (max-width: 999px) {
  .reviews .item .picture {
    margin-right: 25px;
    flex: 0 0 100px;
    height: 100px;
    width: 100px; } }

@media (max-width: 509px) {
  .reviews .item {
    display: block; }
    .reviews .item .picture {
      margin-left: auto;
      margin-right: auto;
      height: 140px;
      width: 140px; } }

.review-block {
  width: 610px;
  max-width: 100%; }
  .review-block .review-header {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    margin-bottom: 19px; }
    .review-block .review-header .picture {
      width: 140px;
      border-radius: 50%;
      overflow: hidden;
      height: 140px;
      -webkit-flex: 0 0 140px;
      flex: 0 0 140px;
      margin-right: 40px; }
      .review-block .review-header .picture img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .review-block .review-header .title {
      font-weight: bold;
      font-size: 18px;
      line-height: 24px; }
    .review-block .review-header .post {
      color: #616262;
      margin-top: 4px; }
  .review-block .description {
    margin-bottom: 30px; }
  .review-block .btn {
    min-width: 70px; }
  @media (max-width: 509px) {
    .review-block .review-header {
      display: block; }
      .review-block .review-header .picture {
        margin-left: auto;
        margin-right: auto;
        height: 140px;
        width: 140px; }
      .review-block .review-header .text {
        text-align: center;
        margin-top: 20px; } }

.compare-block .compare-tabs .tabs-header {
  position: relative; }
  .compare-block .compare-tabs .tabs-header .fader {
    top: 0;
    bottom: 0;
    position: absolute;
    width: 32px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden; }
    .compare-block .compare-tabs .tabs-header .fader.show {
      opacity: 1;
      visibility: visible; }
    .compare-block .compare-tabs .tabs-header .fader:before {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      left: 0;
      content: ''; }
    .compare-block .compare-tabs .tabs-header .fader.left {
      left: 0;
      background-image: -webkit-gradient(linear, right top, left top, color-stop(0, transparent), color-stop(1, #f1f2f5));
      background-image: -o-linear-gradient(left, transparent 0%, #f1f2f5 100%);
      background-image: -moz-linear-gradient(left, transparent 0%, #f1f2f5 100%);
      background-image: -webkit-linear-gradient(left, transparent 0%, #f1f2f5 100%);
      background-image: -ms-linear-gradient(left, transparent 0%, #f1f2f5 100%);
      background-image: linear-gradient(to left, transparent 0%, #f1f2f5 100%); }
      .compare-block .compare-tabs .tabs-header .fader.left:before {
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAt0lEQVR42mNAB////3cD4l4gPg7EH6D4OFTMDaESU6MCEPcA8ef/uMFnqBoFbJoX/yceLEYxBGwq6aAH7mdczn756vX/GbPmgmhc3nEDGdCLS3NX74T/rR09YDYO0Asy4Dg+zU+fPcfnjeMM4GhCBWDN9U1tYM0EwAesBqxcvRZswNZtOwkaAPcCmYYchwQiDrBk2UqwIddv3MQbiG74Ut/5C5f+f/nyFWc0UpiQKE/KlGcmirMzAPOpT0gbs9rOAAAAAElFTkSuQmCC) 0 50% no-repeat; }
    .compare-block .compare-tabs .tabs-header .fader.right {
      right: 0;
      background-image: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(1, #f1f2f5));
      background-image: -o-linear-gradient(right, transparent 0%, #f1f2f5 100%);
      background-image: -moz-linear-gradient(right, transparent 0%, #f1f2f5 100%);
      background-image: -webkit-linear-gradient(right, transparent 0%, #f1f2f5 100%);
      background-image: -ms-linear-gradient(right, transparent 0%, #f1f2f5 100%);
      background-image: linear-gradient(to right, transparent 0%, #f1f2f5 100%); }
      .compare-block .compare-tabs .tabs-header .fader.right:before {
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAt0lEQVR42mNAB////3cD4l4gPg7EH6D4OFTMDaESU6MCEPcA8ef/uMFnqBoFbJoX/yceLEYxBGwq6aAH7mdszn756vX/GbPmgmh83nFjgAbOf2wGtHb0/O/qnYDPkF4GcAjjAE+fPSdkyHEGaDT9x2dIfVMb2BAs4ANBA7Zu2wk2YOXqtTgNOE66ZoQXcAbi9Rs3wZqXLFuJz4G9OKPxy5ev/89fuARi4o1GChMS5UmZ8sxEcXYGAF+YT0iIPl7fAAAAAElFTkSuQmCC) 100% 50% no-repeat; }

.compare-block .compare-tabs .tabs {
  display: flex;
  overflow: hidden; }
  .compare-block .compare-tabs .tabs a {
    display: block;
    padding: 16px 30px;
    font-size: 15px;
    color: #808080;
    text-decoration: none;
    border: solid #e7e7e7;
    line-height: 19px;
    border-width: 1px 1px 0 1px;
    border-radius: 5px 5px 0 0;
    text-align: center;
    white-space: nowrap; }
    .compare-block .compare-tabs .tabs a:hover {
      background-color: rgba(255, 255, 255, 0.5); }
    .compare-block .compare-tabs .tabs a.active {
      background-color: #FFF;
      border-color: #FFF; }

.compare-block .compare-tabs .tabs-holder {
  background-color: #FFF;
  border-radius: 0 0 5px 5px;
  padding-bottom: 30px; }

.compare-block .compare-tabs .tab-content {
  position: relative; }
  .compare-block .compare-tabs .tab-content .fader {
    position: absolute;
    top: 51px;
    bottom: 40px;
    width: 72px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -khtml-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    .compare-block .compare-tabs .tab-content .fader .arrow, .compare-block .compare-tabs .tab-content .fader:before {
      position: absolute;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background-color: #999b9e;
      top: 175px;
      background-repeat: no-repeat; }
    .compare-block .compare-tabs .tab-content .fader.show {
      opacity: 1;
      visibility: visible; }
    .compare-block .compare-tabs .tab-content .fader.left {
      left: 0;
      background-image: -webkit-gradient(linear, right top, left top, color-stop(0, transparent), color-stop(0.7, #FFF));
      background-image: -o-linear-gradient(left, transparent 0%, #FFF 70%);
      background-image: -moz-linear-gradient(left, transparent 0%, #FFF 70%);
      background-image: -webkit-linear-gradient(left, transparent 0%, #FFF 70%);
      background-image: -ms-linear-gradient(left, transparent 0%, #FFF 70%);
      background-image: linear-gradient(to left, transparent 0%, #FFF 70%); }
      .compare-block .compare-tabs .tab-content .fader.left .arrow, .compare-block .compare-tabs .tab-content .fader.left:before {
        left: 10px;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAQCAQAAACBg/b2AAAAYElEQVR42mNAgP/M/xP/uyALZP7//78ewfX5//X/zv9iMK7F/2f/z/6Xh3GV/l/+//S/EYwrCFT65b8XjMv5f/7/X/+TEIa1Ac2ugbAxBTC1YBqKaS2GwzCcjuE5DO8DAEmRV0u19HQHAAAAAElFTkSuQmCC);
        background-position: 45% 50%; }
    .compare-block .compare-tabs .tab-content .fader.right {
      right: 0;
      background-image: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(0.7, #FFF));
      background-image: -o-linear-gradient(right, transparent 0%, #FFF 70%);
      background-image: -moz-linear-gradient(right, transparent 0%, #FFF 70%);
      background-image: -webkit-linear-gradient(right, transparent 0%, #FFF 70%);
      background-image: -ms-linear-gradient(right, transparent 0%, #FFF 70%);
      background-image: linear-gradient(to right, transparent 0%, #FFF 70%); }
      .compare-block .compare-tabs .tab-content .fader.right .arrow, .compare-block .compare-tabs .tab-content .fader.right:before {
        right: 10px;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAQCAQAAACBg/b2AAAAX0lEQVR42mP47/I/8T8zAwL8r////38msoDY/53/v/73QRaS/3/2/7P/FshCRv+f/r/8XwlZyOv/F6BWQWShpP+//s//z4ksVAO0rw1TAFMLpqEIa9EchuZ0nJ7D8D4AmNVXS+EwEw4AAAAASUVORK5CYII=);
        background-position: 55% 50%; }

.compare-block .compare-show-options {
  margin: 0 30px;
  border-bottom: 1px solid #d7d7da;
  padding: 15px 0;
  display: flex; }
  .compare-block .compare-show-options .opts {
    display: flex;
    flex: 1 1 100px; }
    .compare-block .compare-show-options .opts li {
      margin-left: 15px; }
      .compare-block .compare-show-options .opts li.remove {
        margin-left: auto; }
  .compare-block .compare-show-options a {
    text-decoration: none;
    border-bottom: 1px dotted; }
    .compare-block .compare-show-options a.active {
      border: none;
      color: var(--color2, #528dca); }
  .compare-block .compare-show-options .remove-list-link {
    text-decoration: none;
    border: none; }
    .compare-block .compare-show-options .remove-list-link:hover {
      color: #C00; }
    .compare-block .compare-show-options .remove-list-link i {
      color: #C00;
      margin-right: 3px;
      vertical-align: 1px; }
  @media (max-width: 999px) {
    .compare-block .compare-show-options {
      display: block; }
      .compare-block .compare-show-options .opts {
        display: block;
        margin: 15px; }
        .compare-block .compare-show-options .opts li {
          margin: 5px 0 0; }
          .compare-block .compare-show-options .opts li.remove {
            margin: 20px 0 0 -20px; } }

.compare-block .compare-list {
  overflow: hidden;
  padding-bottom: 60px;
  position: relative;
  margin: 0 30px; }
  .compare-block .compare-list .row {
    display: flex;
    position: relative; }
    .compare-block .compare-list .row .item {
      flex: 1 0 190px;
      padding-right: 30px;
      box-sizing: border-box; }
      .compare-block .compare-list .row .item:last-child {
        padding-right: 0;
        flex: 1 0 160px; }
    .compare-block .compare-list .row.compare-list-prop:last-child .item {
      border: none; }
    .compare-block .compare-list .row.compare-list-prop .prop-name {
      position: absolute;
      left: 0;
      color: #757575;
      font-size: 13px;
      top: 12px; }
    .compare-block .compare-list .row.compare-list-prop .item {
      color: #000;
      font-weight: bold;
      padding: 35px 30px 10px 0;
      border-bottom: 1px solid #d7d7da; }
    .compare-block .compare-list .row.compare-list-header {
      margin: 0 0 25px; }
      .compare-block .compare-list .row.compare-list-header .item {
        padding-top: 50px;
        padding-bottom: 40px;
        position: relative;
        border-bottom: 3px solid #d7d7da; }
        .compare-block .compare-list .row.compare-list-header .item .picture {
          height: 125px;
          line-height: 125px;
          margin-bottom: 65px; }
          .compare-block .compare-list .row.compare-list-header .item .picture img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            vertical-align: bottom; }
        .compare-block .compare-list .row.compare-list-header .item .title {
          font-size: 14px;
          line-height: 18px;
          height: 54px;
          overflow: hidden; }
          .compare-block .compare-list .row.compare-list-header .item .title a {
            text-decoration: none; }
        .compare-block .compare-list .row.compare-list-header .item .buy-btn {
          float: right;
          margin-top: 3px; }
          .compare-block .compare-list .row.compare-list-header .item .buy-btn span {
            display: none; }
        .compare-block .compare-list .row.compare-list-header .item .price {
          font-size: 18px;
          font-weight: 500; }
        .compare-block .compare-list .row.compare-list-header .item .remove-item {
          position: absolute;
          top: 30px;
          right: 30px;
          width: 24px;
          height: 24px;
          background: #fdfefe url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAQAAABuBnYAAAAARklEQVR42m2NtQGAMBREb7xUuDNFJnrjpAwt0+BOvuudsPQ6hB4rGgaarT0rchzxoo78PDWMixopPCC7XrK1rfEXqKf+0c6/9SwrsvOEIAAAAABJRU5ErkJggg==) 50% 50% no-repeat;
          box-shadow: 0 0 13px rgba(0, 0, 0, 0.1) inset;
          border-radius: 50%;
          text-decoration: none; }
          .compare-block .compare-list .row.compare-list-header .item .remove-item:hover {
            background-color: var(--color2, #528dca);
            background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAQAAABuBnYAAAAARUlEQVR42m2NtQGAMBREb7xUuDNFpkz5aZnm4c53vROeXrvQ40XDQLO2R0VOIJ41kB+njnFWJ/0PyM6XbGlr7AQ16g/tBMOxOyso1gbWAAAAAElFTkSuQmCC); }

@media screen and (max-width: 999px) {
  .compare-block .compare-list .row .item {
    flex: 1 0 240px; }
    .compare-block .compare-list .row .item:last-child {
      flex: 1 0 210px; } }

@media screen and (max-width: 509px) {
  .compare-block .compare-tabs .tab-content .fader {
    width: 35px; }
    .compare-block .compare-tabs .tab-content .fader .arrow, .compare-block .compare-tabs .tab-content .fader:before {
      width: 35px;
      height: 35px;
      top: 190px; }
  .compare-block .compare-list {
    border-width: 0 15px; }
    .compare-block .compare-list .row .item {
      flex: 1 0 165px;
      padding-right: 15px; }
      .compare-block .compare-list .row .item:last-child {
        flex: 1 0 150px; } }

.top-nav-block .main-nav > li .subnav-block.multilevel.no-padding,
.top-nav-container .subnav-block.multilevel.no-padding {
  padding: 0; }
  .top-nav-block .main-nav > li .subnav-block.multilevel.no-padding:before,
  .top-nav-container .subnav-block.multilevel.no-padding:before {
    background-color: #f3f4f6;
    display: none; }
  .wide-nav .top-nav-block .main-nav > li .subnav-block.multilevel.no-padding.show, .wide-nav
  .top-nav-container .subnav-block.multilevel.no-padding.show {
    margin-left: -3px;
    width: 1170px; }
    .nav-scrolled.float-nav .wide-nav .top-nav-block .main-nav > li .subnav-block.multilevel.no-padding.show, .nav-scrolled.float-nav .wide-nav
    .top-nav-container .subnav-block.multilevel.no-padding.show {
      margin-left: -3px; }

.top-nav-block .main-nav > li .subnav-ext,
.top-nav-container .subnav-ext {
  display: flex; }
  .top-nav-block .main-nav > li .subnav-ext .subnav-main,
  .top-nav-container .subnav-ext .subnav-main {
    flex: 0 0 290px;
    font-size: 15px;
    text-transform: none;
    font-weight: 500;
    padding: 14px 20px;
    box-sizing: border-box;
    text-align: left; }
    .top-nav-block .main-nav > li .subnav-ext .subnav-main li,
    .top-nav-container .subnav-ext .subnav-main li {
      border-bottom: 1px solid #f3f4f6;
      padding: 13px 10px 14px; }
      .top-nav-block .main-nav > li .subnav-ext .subnav-main li a,
      .top-nav-container .subnav-ext .subnav-main li a {
        color: #000;
        text-decoration: none;
        display: flex; }
        .top-nav-block .main-nav > li .subnav-ext .subnav-main li a:hover,
        .top-nav-container .subnav-ext .subnav-main li a:hover {
          color: var(--color1, #db3d3d); }
          .top-nav-block .main-nav > li .subnav-ext .subnav-main li a:hover svg path,
          .top-nav-container .subnav-ext .subnav-main li a:hover svg path {
            fill: var(--color1, #db3d3d); }
      .top-nav-block .main-nav > li .subnav-ext .subnav-main li .icon,
      .top-nav-container .subnav-ext .subnav-main li .icon {
        flex: 0 0 20px;
        width: 20px;
        height: 20px;
        font-size: 20px;
        margin-right: 10px;
        display: flex;
        justify-content: center;
        align-items: center; }
        .top-nav-block .main-nav > li .subnav-ext .subnav-main li .icon img,
        .top-nav-container .subnav-ext .subnav-main li .icon img {
          max-width: 100%;
          max-height: 100%;
          width: auto;
          height: auto; }
        .top-nav-block .main-nav > li .subnav-ext .subnav-main li .icon svg,
        .top-nav-container .subnav-ext .subnav-main li .icon svg {
          width: 20px;
          height: 20px; }
      .top-nav-block .main-nav > li .subnav-ext .subnav-main li:last-child,
      .top-nav-container .subnav-ext .subnav-main li:last-child {
        border-bottom: none; }

.top-nav-block .main-nav > li .subnavs-area,
.top-nav-container .subnavs-area {
  background-color: #f3f4f6;
  -webkit-flex: 1 1 100px;
  flex: 1 1 100px;
  max-height: 100%;
  text-align: center; }
  .top-nav-block .main-nav > li .subnavs-area .subnav-container,
  .top-nav-container .subnavs-area .subnav-container {
    text-transform: none;
    box-sizing: border-box;
    padding: 28px 30px;
    display: none;
    text-align: left; }
    .top-nav-block .main-nav > li .subnavs-area .subnav-container.visible,
    .top-nav-container .subnavs-area .subnav-container.visible {
      display: block; }
    .top-nav-block .main-nav > li .subnavs-area .subnav-container.empty,
    .top-nav-container .subnavs-area .subnav-container.empty {
      align-items: center;
      justify-content: center;
      min-height: 100%;
      width: auto;
      height: auto; }
      .top-nav-block .main-nav > li .subnavs-area .subnav-container.empty.visible,
      .top-nav-container .subnavs-area .subnav-container.empty.visible {
        display: inline-flex; }
      .top-nav-block .main-nav > li .subnavs-area .subnav-container.empty:before,
      .top-nav-container .subnavs-area .subnav-container.empty:before {
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKcAAACnCAMAAABDyLzeAAAAnFBMVEVHcEzn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+eR6/NBAAAAM3RSTlMAAgQIDREVGh4jKDA1Oj5DSk1TWF9la3B3gYiNkJOYnqOor7S7v8TIz9fc4eXq8fb3+f0uIlhOAAAHXklEQVR42szZYbexTBQG4JtSSiSFehAHp1TRqf3//9u7nvdZTdNCOkRdH/lya7f3jBk0Q54Yhjm33YN3CsIoDE7ewbXnpmFMZHSEqC+WziFOkiTNiJelSZLEB2e50AW0ShiMne0+pkfi/dbRBgJaIajGzguprtDbTVURn6aZbnSh37lEO3OEDxKMVZDRM7JgZQ7wGYp9ONPzkqOt9PBuguYE9KpgPRbwVpPtmZpwdqf9N6bcxHRHlqZJeNw6ds7ZHsMkTbO7SbdjvIe6iuimcxTsrKkx1WQBBUHWpsbU2gXRnRJEKxXNGy4DuuHiHVdjVRFxR09U1PHq6F3ohmApo2GGl9GVZL+2JLGHR3qiZK33CV3Jvg00Sdmcr0N69kxEfeLM9q6jntcKmtI3/asHEbr6EL811N3wqiy+2UcjpPXlqly2IuAZgmIff6jsspbRAP1AZdl+LuF5orXPqOyo42WLmErSoyniNYPZPqWSeIHXiE5CvMwzJbxuYHpU8uOIeIH6RSWBLaMZsh0SL9upeNrEJ17qjtAczU2J50/wJCMknm/10aS+5RMvNPCUWVx+mEM0begmxIlnr8c8zQU0T7BOpaAmfs08E+dbxXuMvolzNl+KmTRfc2a4vlQHrV/0yBLwPn0r4oPO8AsGHzPU8VY9PaRCbKC2SfiRmEwpaDhBTapPhUDH++kBFXwVtYhffMwJPmHCB92JqKHnZFzMMT5jzAXNnB4eW6Sld+VT+J5IF3hIjz/VQhXNFE/wgHQox2wp6EFCJWFNTKTjs/SImI2AKrOEchcTn2YllEtmqKD4xLh9fJqwJcZXcN+GGE/B5ynfxGxwl3Gm3ElFG9QT5c5T3CH7lMsstGOeFRWVcduSmK2IdohbymVL3KSGlPNltIUraqDglhXlfiy0pscNpxVuGMf8kG2PsKFcPK6cXeEIbRqFVTNcZzMps9EuO7u/HxG37TVRRSu5Asq04nGaaJtZPFANJb0Vi3mU0DbpSLk/PfAU9u6mM7TPTO/MUJt9sR+gfYPD7aYesH1KMkcXzNmwP4oomBe2+A/QBZLHtuszML01ezttVBKkQTMkAZWKF3HdQ24UsKVIQZXJl+81w/+aoIoSsU4aIWfWXNnNmJoTm6gguJQzr9eiVEeFcURNisaooKdXe2E1Yl00RIUNNWuDCkPWSZGKfwzW7TaqfFGzvlDFZh0/xf+EHfvE6FDO2YUVvo+/Bn7NtcihZjmoMtizDdwA5fZYo5LiU5N8BZXYUA81/JWfd2YXE9W0b2rOt4Zq1oWdh+KvLet2CQ/ItrtphmvL9bfLWwAQ9+wXCugSgVVvL/IHs9mqjy7przP+hHPBDnTG6JYJ+y+0ALDk536nFOvkkp+KgYJuUUJu0soH/tqmU4qLrL2ECWsjC10zz4qtlZHQP+kUXTNN6Z/E4HIa6BqDy8luOJIOPs+f4vZjnhandF2jhXmt58Xh2FFG1wyPxWmDyxZ7AV1T7OBdHIpZWoNmTJthaKjhD7vvhP/4vxEjOlH604w0ckQ8ZLMtJ071cwobatJGqJ/zhKB+TiulJqVW7Zz/tXdWS28DMRReQxgNG47tkB2aht7/2cqtxhRc10cz1e0PiVF09Om6E/vnv2dwU2vB8+dz/8L31JTnxZri7wlwPku8P08v3Z9Mnncu708m/mhJ/j3A8+9mQCVI6HhpQ/ESk/iT4vkzdjzPJT/ikm9yyd+pHrJArocwqS8xqtdR/bMrsIykNQMm9eQuk/q8Eet3RMD9jlj/yIXqH8lE/6i9x+/HldnfvL7Y3zR80owg94vx+++l6hkePA71iPxkyfqQ9nP6EM9M6208ZL0N6ZeuBxT9UjOpX4LXg021rHdAWAXW1wlzja9XRNR/Vld0I+bpaR1kPa02IagDsj6Zi95bGB6Ofr4e3fE7XR7zCJruocx3tA/J+Q7MeRnvQaQyvSLMHwn3L//mOsl2/TuIea7to3kuMbxizccN8g4lpN+RAPOGuQ6njzW/CTwPGyazp8eVBN/AnC9Ozmuf3DLntb/YPObfZwZrngBZF5/PgMi74M8PEWZQNo/FeNIphMVieB6AeKImY14QAH9J9GP8pT4qz0oePmCuxflgfnFBScM7qQOZ3TYtUN5ail83MIsIkGSCX6eAB+gXwQO8vM8DJLN2/5SvuOu/7czCBK+yXSCvMvzA8zWDaxwpqYz/WVfI/ySeKlnoqPim1SRB+DQ2Afm0zirJp5UKQpmlWt5vRaZ4vyslnrk6VchPbo42lyQ/eVoD41E3MnnUtqbOCc+y+d6Vl6jJo6govjeZtcnlpevP8NJlDi+9r7zeN8jkz5/Ctd+/w58Xv/jz0UkBf14Bz38hf/D866YgM+s/eP5ysT/kdJn3k2ZRSeGj/QjBZPTHJsGD/Qhekals11PTgj/O+zqD/R3Ttv5/Hwqj/TJkrbf29fhOq4T9R33/pf1Hfr9plrVPqv3UPqkD7ZMqeT/X8pCzn+uwBNjPRVbrWJYd33c2H0nbsjqKPOM3jmJS91fXOl4AAAAASUVORK5CYII=) 0 0/cover no-repeat;
        width: 118px;
        height: 118px;
        content: '';
        margin-right: 30px;
        -webkit-flex: 0 0 118px;
        flex: 0 0 118px; }
      .top-nav-block .main-nav > li .subnavs-area .subnav-container.empty .title,
      .top-nav-container .subnavs-area .subnav-container.empty .title {
        width: auto;
        flex: 0 1 auto;
        font-size: 64px;
        font-weight: 500;
        color: #e7e7e7;
        line-height: 80px;
        text-transform: uppercase; }
    .top-nav-block .main-nav > li .subnavs-area .subnav-container .subnav-section-title,
    .top-nav-container .subnavs-area .subnav-container .subnav-section-title {
      font-size: 15px;
      font-weight: 500; }
      .top-nav-block .main-nav > li .subnavs-area .subnav-container .subnav-section-title a,
      .top-nav-container .subnavs-area .subnav-container .subnav-section-title a {
        color: #000;
        text-decoration: none; }
      .top-nav-block .main-nav > li .subnavs-area .subnav-container .subnav-section-title + .subnav-section-title,
      .top-nav-container .subnavs-area .subnav-container .subnav-section-title + .subnav-section-title {
        margin-top: 13px; }
    .top-nav-block .main-nav > li .subnavs-area .subnav-container .subnav-list,
    .top-nav-container .subnavs-area .subnav-container .subnav-list {
      margin: 13px 3px;
      font-weight: normal;
      font-size: 13px;
      display: flex;
      flex-wrap: wrap;
      align-items: center; }
      .top-nav-block .main-nav > li .subnavs-area .subnav-container .subnav-list > li,
      .top-nav-container .subnavs-area .subnav-container .subnav-list > li {
        margin-bottom: 6px;
        position: relative;
        flex: 0 0 33.333%;
        padding: 0 15px;
        box-sizing: border-box; }
        .top-nav-block .main-nav > li .subnavs-area .subnav-container .subnav-list > li a,
        .top-nav-container .subnavs-area .subnav-container .subnav-list > li a {
          text-decoration: underline; }
          .top-nav-block .main-nav > li .subnavs-area .subnav-container .subnav-list > li a:not(:hover),
          .top-nav-container .subnavs-area .subnav-container .subnav-list > li a:not(:hover) {
            color: #444; }
        .top-nav-block .main-nav > li .subnavs-area .subnav-container .subnav-list > li ul,
        .top-nav-container .subnavs-area .subnav-container .subnav-list > li ul {
          position: absolute;
          background-color: #fff;
          column-count: auto;
          width: 296px;
          box-sizing: border-box;
          padding: 10px 20px;
          left: 190px;
          border-radius: 5px;
          box-shadow: 0 0 27px rgba(0, 0, 0, 0.12);
          top: -1200px;
          margin-left: -15px;
          opacity: 0;
          visibility: hidden;
          -webkit-transition: margin 0.3s, opacity 0.3s, visibility 0.3s;
          transition: margin 0.3s, opacity 0.3s, visibility 0.3s;
          max-height: calc(100vh - 185px);
          overflow: auto;
          z-index: 1000;
          display: grid; }
          .top-nav-block .main-nav > li .subnavs-area .subnav-container .subnav-list > li ul.left,
          .top-nav-container .subnavs-area .subnav-container .subnav-list > li ul.left {
            left: auto;
            right: 100%; }
          .nav-scrolled.float-nav .top-nav-block .main-nav > li .subnavs-area .subnav-container .subnav-list > li ul, .nav-scrolled.float-nav
          .top-nav-container .subnavs-area .subnav-container .subnav-list > li ul {
            max-height: calc(100vh - 100px); }
          .top-nav-block .main-nav > li .subnavs-area .subnav-container .subnav-list > li ul li,
          .top-nav-container .subnavs-area .subnav-container .subnav-list > li ul li {
            margin: 6px 0; }
        .top-nav-block .main-nav > li .subnavs-area .subnav-container .subnav-list > li:has(.left):before,
        .top-nav-container .subnavs-area .subnav-container .subnav-list > li:has(.left):before {
          content: '';
          position: absolute;
          width: 30px;
          height: 30px;
          right: 100%;
          top: -5px; }
        .top-nav-block .main-nav > li .subnavs-area .subnav-container .subnav-list > li:hover > a,
        .top-nav-container .subnavs-area .subnav-container .subnav-list > li:hover > a {
          color: var(--color1, #db3d3d); }
        .top-nav-block .main-nav > li .subnavs-area .subnav-container .subnav-list > li:hover ul,
        .top-nav-container .subnavs-area .subnav-container .subnav-list > li:hover ul {
          top: -12px;
          z-index: 1;
          margin-left: 0;
          opacity: 1;
          visibility: visible; }
          .top-nav-block .main-nav > li .subnavs-area .subnav-container .subnav-list > li:hover ul.left,
          .top-nav-container .subnavs-area .subnav-container .subnav-list > li:hover ul.left {
            margin-right: 15px; }

.mfp-arrow {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
  box-shadow: none; }

.mfp-arrow:focus, .mfp-arrow:hover {
  opacity: 1; }

.mfp-arrow:active {
  outline: none;
  opacity: 0.9; }

.mfp-arrow::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-arrow,
.mfp-arrow-left:before,
.mfp-arrow-right:before {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQgAAABYCAQAAACjBqE3AAAB6klEQVR4Ae3bsWpUQRTG8YkkanwCa7GzVotsI/gEgk9h4Vu4ySLYmMYgbJrc3lrwZbJwC0FMt4j7F6Y4oIZrsXtgxvx/1c0ufEX4cnbmLCmSJEmSJEmSJEmSJP3XCBPvbJU+8doWmDFwyZpLBmYlNJebz0KwzykwsuSYJSNwykEJreV2BaBMaLIQZ2xYcFgqDlmw4ayE/FwL0dDk4Qh4W37DAjgqIT+3HRbigjH+iikVdxgZStgyN0Su2sXIeTwTT+esdpcbIlfNAuZ/TxresG4zV8kYWSZNiKUTokMMSWeIwTNEn4fK2TW3gRNgVkJLuVksROA9G+bEvoATNlBCa7nZXEwdxEZxzpKRKFh+bsv8LmPFmhX1OwfIz81jIRJQ5eeqG9B+riRJkiRJkiRJkiRJkiRJkiRJUkvA/8RQoEpKlJWINFkJ62AlrEP/mNBibnv2yz/A3t7Uq3LcpoxP8COjC1T5vxoAD5VdoEqdDrd5QuW1swtUSaueh3zkiuBiqgtA2OlkeMcP/uDqugsJdbjHF65VdPMKwS0+WQc/MgKvrIOHysB9vgPwk8+85hmPbnQdvHZyDMAFD7L3EOpgMcVdvnHFS0/vlatrXvCVx0U9gt3fxvnA0/hB4nmRJEmSJEmSJEmSJGmHfgFLaDPoMu5xWwAAAABJRU5ErkJggg==) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

.mfp-arrow-left,
.mfp-arrow-right {
  background: none;
  top: 44px;
  bottom: 0;
  width: 10%;
  height: auto;
  min-width: 40px;
  position: absolute;
  z-index: 1050; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-left:before,
.mfp-arrow-right:before {
  content: '';
  top: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
  margin-top: -27px; }

.mfp-arrow-left:before {
  left: 6px;
  background-position: -138px -44px; }

.mfp-arrow-right:before {
  right: 6px;
  background-position: -94px -44px; }

.mobile-menu .column-main {
  max-width: 400px;
  min-width: 280px; }
  .mobile-menu .column-main > .panel {
    padding-bottom: 1px;
    display: flex;
    flex-direction: column;
    gap: 20px 0; }

.mobile-menu .mobile-nav > li {
  border-color: #e5e8ea; }

.mobile-menu .mobile-nav .back {
  background-color: #f3f4f6; }

.mobile-menu .mobile-nav .item-name a {
  font-size: 1rem; }

.mobile-menu .mobile-nav .toggle,
.mobile-menu .mobile-nav .toggle-back {
  background-color: #f3f4f6; }

.mobile-menu .top-search-form {
  position: relative;
  left: 0;
  top: 0;
  margin: 10px 20px 29px;
  right: auto;
  width: auto; }

.mobile-menu .phone {
  font-size: 17px;
  font-weight: bold;
  color: #898888; }
  .mobile-menu .phone a {
    color: #898888;
    text-decoration: none; }

.mobile-menu .mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px 20px; }

.mobile-menu .phones {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px; }
  .mobile-menu .phones .phone {
    font-size: 17px;
    font-weight: bold;
    color: #898888; }
    .mobile-menu .phones .phone a {
      color: #898888;
      text-decoration: none; }

.mobile-menu .top-search-form {
  position: relative;
  left: 0;
  top: 0;
  margin: 10px 0 30px;
  right: auto;
  width: auto;
  background-color: #f3f4f6;
  box-shadow: none; }

.mobile-menu .top-address-block {
  display: block; }

.mobile-menu .top-schedule-block {
  display: block; }

.mobile-menu .order-call-block .btn {
  min-width: 155px;
  text-align: center;
  box-sizing: border-box; }

.index-v2 .middle {
  padding-top: 0; }

.index-v2 .header {
  background-color: transparent; }
  .index-v2 .header:not(.header_dark) .nav > li {
    position: static; }
    .index-v2 .header:not(.header_dark) .nav > li > a:hover {
      background: none; }
  @media (min-width: 1000px) {
    .index-v2 .header:not(.header_dark) #logo:has(.logo-light) img {
      display: none; }
      .index-v2 .header:not(.header_dark) #logo:has(.logo-light) img.logo-light {
        display: block; }
    .index-v2 .header:not(.header_dark) .sign-link svg {
      fill: #FFF; }
      .index-v2 .header:not(.header_dark) .sign-link svg path {
        fill: #FFF; }
    .index-v2 .header:not(.header_dark) .top-contacts .phone a {
      color: #FFF; }
    .index-v2 .header:not(.header_dark) .top-contacts .phones:has(.splash-phones):after {
      border-color: #FFF; }
    .index-v2 .header:not(.header_dark) .top-contacts .phones:hover .phone {
      color: #000; }
      .index-v2 .header:not(.header_dark) .top-contacts .phones:hover .phone a {
        color: #717a81; }
    .index-v2 .header:not(.header_dark) .top-basket-block {
      border-color: #FFF;
      background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAaJJREFUeNqs1b0vBEEYBvDZu+Xu3EUjIYL4iAgqlRAaEZ2GhkqhVEgoVDqV+AdINDoFhUtcR6PQ6BBfkcjpxGdiuXPHet7k2WTMbUjmTPLL7s3tvTsz7ztzju/7C0qpakjAIWypMlsEdmEbLqFH/UNz4ZT3LzAPg/BlGe8dbl2towANMAp5i4A+dMGea3RewAo8WI50EZ4iWscbOFBpGbACUnCiB5UpF1kJNq0NopA1g35AlWXQDpk6eHrQIrOetAzaKpkP6lQZFZCyrPc6uAoLmrMcqQSMwXVYUA/iFkEbmZP7YEeZI3VCfuTwbIjxmmBCk1yuMSkl1npJUMneOIOk+OM4azDKmblaYgu8SoIy+t43p1/DET1y5DlujFdePd7ntcAlB4repKT2Yb3cU0pvsudbYJYZPYZN45lOmOBypOEorL7MNe2DejiAIZjkc6IJ5uCGL5zhS34dqbQzWOL6ZWEVurVRymG+wc/ykgE4/2ukzzDC7A9zehna4bI0Qy20B1vzR/3hP8rs64VpZv0TluFO+34K+pl5OX/XzAr4FmAADlxjKdx5a5wAAAAASUVORK5CYII=);
      color: #FFF; }
      .index-v2 .header:not(.header_dark) .top-basket-block .title {
        color: #FFF; } }
  @media (max-width: 999px) {
    .index-v2 .header {
      background-color: #FFF; } }

.index-v2 .index-top {
  margin-bottom: 0; }

.index-v2 .main-slider-block {
  max-width: none; }
  .index-v2 .main-slider-block .main-slider {
    width: auto;
    left: 0;
    margin-left: 0; }
    .index-v2 .main-slider-block .main-slider .items {
      display: flex;
      width: 100%; }
      .index-v2 .main-slider-block .main-slider .items .item {
        width: 100%;
        flex: 0 0 100%;
        height: 590px;
        background-color: #c9c9d6; }
        .index-v2 .main-slider-block .main-slider .items .item .text {
          top: 50%;
          margin-top: 70px; }
        .index-v2 .main-slider-block .main-slider .items .item[data-dark="1"], .index-v2 .main-slider-block .main-slider .items .item.light {
          background-color: #FFF; }
  @media (max-width: 999px) {
    .index-v2 .main-slider-block {
      width: 100%; }
      .index-v2 .main-slider-block .main-slider .items .item {
        height: 45vw; }
        .index-v2 .main-slider-block .main-slider .items .item .text {
          margin-top: 0; } }

.index-v2:not(.catalog-nav-open) .header .btn.gray {
  background-color: transparent;
  border: 1px solid #FFF;
  box-shadow: none;
  color: #FFF;
  padding: 5px 15px; }
  .index-v2:not(.catalog-nav-open) .header .btn.gray.active {
    padding: 5px 15px; }

.index-v2 .index-top + .main-offers-section {
  background-color: #fff; }

.index-v2 .main-banner {
  margin-bottom: 45px; }

.index-v2 .main-section .main-banner {
  margin: 0; }

:root {
  --scroll-top: 0px; }

body {
  --bx-panel-height: 0px;
  --additional-offset: 0px;
  --catalog-nav-offset: max(calc( var(--bx-panel-height) + var(--additional-offset) - var(--scroll-top) ), 0px); }
  body:has(#bx-panel) {
    --bx-panel-height: 147px; }
  body:has(#bx-panel.bx-panel-folded) {
    --bx-panel-height: 39px; }
  body:has(.adm-warning-block:not(.adm-warning-animate)) {
    --additional-offset: 36px; }
  body.nav-scrolled:has(#bx-panel) {
    --bx-panel-height: 0px;
    --additional-offset: 0px; }
  body.catalog-nav-open {
    overflow: hidden; }
    body.catalog-nav-open:before {
      content: '';
      opacity: 0.4;
      background-color: #000;
      position: fixed; }

.separate-nav #logo {
  margin-top: -17px; }

.separate-nav .top-basket-block,
.separate-nav .was_shop_auth_link,
.separate-nav .top-contacts,
.separate-nav #logo {
  z-index: 2; }

.separate-nav .top-search-form {
  z-index: 3; }

.separate-nav .top-nav-container {
  top: 100%;
  position: absolute;
  display: flex;
  left: 0;
  right: 0;
  z-index: 1; }
  .separate-nav .top-nav-container .catalog-nav-block {
    margin-right: 20px;
    transform: translateY(-50%); }
    .separate-nav .top-nav-container .catalog-nav-block .catalog-nav-trigger {
      align-items: center;
      background-color: var(--color1, #db3d3d);
      min-height: 100%;
      color: #FFF;
      display: flex;
      border-radius: 5px;
      text-transform: uppercase;
      font-weight: 500;
      padding: 10px 35px;
      box-sizing: border-box;
      width: 250px;
      cursor: pointer;
      z-index: 1;
      position: relative;
      text-decoration: none;
      transition: background  0.3s; }
      .separate-nav .top-nav-container .catalog-nav-block .catalog-nav-trigger span {
        margin-left: 6px; }
      .separate-nav .top-nav-container .catalog-nav-block .catalog-nav-trigger:after {
        content: '';
        margin-left: 10px;
        background: url(data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIg0KICAgICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPg0KPHN2ZyANCiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciDQogeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiDQogd2lkdGg9IjE3cHgiIGhlaWdodD0iMTRweCI+DQo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiICBmaWxsPSJyZ2IoMjU1LCAyNTUsIDI1NSkiDQogZD0iTTE1LjYwNSw4LjQwNiBMMS4zOTUsOC40MDYgQzAuNjI0LDguNDA2IC0wLjAwMCw3Ljc4MiAtMC4wMDAsNy4wMTIgTC0wLjAwMCw2Ljk4OCBDLTAuMDAwLDYuMjE4IDAuNjI0LDUuNTk0IDEuMzk1LDUuNTk0IEwxNS42MDUsNS41OTQgQzE2LjM3Niw1LjU5NCAxNy4wMDAsNi4yMTggMTcuMDAwLDYuOTg4IEwxNy4wMDAsNy4wMTIgQzE3LjAwMCw3Ljc4MiAxNi4zNzYsOC40MDYgMTUuNjA1LDguNDA2IFpNMTUuNjA5LDIuNzgxIEwxLjM5MSwyLjc4MSBDMC42MjMsMi43ODEgLTAuMDAwLDIuMTU5IC0wLjAwMCwxLjM5MCBDLTAuMDAwLDAuNjIyIDAuNjIzLC0wLjAwMCAxLjM5MSwtMC4wMDAgTDE1LjYwOSwtMC4wMDAgQzE2LjM3NywtMC4wMDAgMTcuMDAwLDAuNjIyIDE3LjAwMCwxLjM5MCBDMTcuMDAwLDIuMTU5IDE2LjM3NywyLjc4MSAxNS42MDksMi43ODEgWk0xLjM5MSwxMS4yMTkgTDE1LjYwOSwxMS4yMTkgQzE2LjM3NywxMS4yMTkgMTcuMDAwLDExLjg0MSAxNy4wMDAsMTIuNjA5IEMxNy4wMDAsMTMuMzc3IDE2LjM3NywxNC4wMDAgMTUuNjA5LDE0LjAwMCBMMS4zOTEsMTQuMDAwIEMwLjYyMywxNC4wMDAgLTAuMDAwLDEzLjM3NyAtMC4wMDAsMTIuNjA5IEMtMC4wMDAsMTEuODQxIDAuNjIzLDExLjIxOSAxLjM5MSwxMS4yMTkgWiIvPg0KPC9zdmc+);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 100% 0;
        width: 17px;
        height: 14px;
        margin-left: auto; }
      .separate-nav .top-nav-container .catalog-nav-block .catalog-nav-trigger:hover {
        background-color: HSL(from var(--color1, #db3d3d) h s calc(l + 5)); }
  .separate-nav .top-nav-container .top-nav-block {
    margin: 0;
    right: auto;
    width: auto;
    top: auto;
    position: relative;
    flex: 1;
    transform: translateY(-50%); }
  .separate-nav .top-nav-container .subnav-block.multilevel {
    display: block;
    opacity: 0;
    width: auto;
    left: 0;
    margin: 0;
    top: var(--catalog-nav-offset, 0px);
    right: 0;
    position: fixed;
    padding-top: 160px;
    transform: translateY(-50px);
    transition: transform 0.5s, opacity 0.5s, visibility 0.5s;
    visibility: hidden; }
    .separate-nav .top-nav-container .subnav-block.multilevel .subnav-ext {
      max-width: 1210px;
      margin: 0 auto; }
    .separate-nav .top-nav-container .subnav-block.multilevel .subnavs-area {
      background-color: #fff; }
      .separate-nav .top-nav-container .subnav-block.multilevel .subnavs-area .subnav-container {
        padding-left: 0; }
        .separate-nav .top-nav-container .subnav-block.multilevel .subnavs-area .subnav-container .subnav-list {
          margin-left: 0;
          margin-right: 0;
          display: block;
          columns: 4; }
          .separate-nav .top-nav-container .subnav-block.multilevel .subnavs-area .subnav-container .subnav-list > li {
            padding: 0 15px 0 0;
            flex: 0 0 25%;
            display: inline-block;
            position: relative;
            width: 100%;
            box-sizing: border-box; }

.separate-nav.catalog-nav-open .top-nav-container .catalog-nav-trigger:after {
  background-image: url(data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIg0KICAgICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPg0KPHN2ZyANCiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciDQogeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiDQogd2lkdGg9IjE0cHgiIGhlaWdodD0iMTNweCI+DQo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiICBmaWxsPSJyZ2IoMjU1LCAyNTUsIDI1NSkiDQogZD0iTTEyLjU3MCwyLjU2NiBMOC42MjksNi41MDcgTDEyLjUxMCwxMC4zODkgQzEzLjA5NiwxMC45NzUgMTMuMDk2LDExLjkyNCAxMi41MTAsMTIuNTEwIEMxMS45MjUsMTMuMDk2IDEwLjk3NSwxMy4wOTYgMTAuMzg5LDEyLjUxMCBMNi41MDgsOC42MjkgTDIuNTk4LDEyLjUzOCBDMi4wMDgsMTMuMTI4IDEuMDUyLDEzLjEyOCAwLjQ2MiwxMi41MzggQy0wLjEyOCwxMS45NDggLTAuMTI4LDEwLjk5MSAwLjQ2MiwxMC40MDEgTDQuMzcxLDYuNDkyIEwwLjQ5MCwyLjYxMSBDLTAuMDk2LDIuMDI1IC0wLjA5NiwxLjA3NSAwLjQ5MCwwLjQ4OSBDMS4wNzUsLTAuMDk3IDIuMDI1LC0wLjA5NyAyLjYxMSwwLjQ4OSBMNi40OTIsNC4zNzEgTDEwLjQzMywwLjQzMCBDMTEuMDIzLC0wLjE2MCAxMS45ODAsLTAuMTYwIDEyLjU3MCwwLjQzMCBDMTMuMTYwLDEuMDIwIDEzLjE2MCwxLjk3NyAxMi41NzAsMi41NjYgWiIvPg0KPC9zdmc+);
  height: 13px; }

.separate-nav.catalog-nav-open .top-nav-container .subnav-block.multilevel {
  opacity: 1;
  transform: translateY(0);
  visibility: visible; }

.separate-nav.catalog-nav-open .header #logo:has(.logo-light) img {
  display: block; }
  .separate-nav.catalog-nav-open .header #logo:has(.logo-light) img.logo-light {
    display: none; }

.separate-nav.catalog-nav-open .header .top-contacts .phone a {
  color: #000; }

.separate-nav.catalog-nav-open .header .top-basket-block {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAaJJREFUeNqs1b0vBEEYBvDZu+Xu3EUjIYL4iAgqlRAaEZ2GhkqhVEgoVDqV+AdINDoFhUtcR6PQ6BBfkcjpxGdiuXPHet7k2WTMbUjmTPLL7s3tvTsz7ztzju/7C0qpakjAIWypMlsEdmEbLqFH/UNz4ZT3LzAPg/BlGe8dbl2towANMAp5i4A+dMGea3RewAo8WI50EZ4iWscbOFBpGbACUnCiB5UpF1kJNq0NopA1g35AlWXQDpk6eHrQIrOetAzaKpkP6lQZFZCyrPc6uAoLmrMcqQSMwXVYUA/iFkEbmZP7YEeZI3VCfuTwbIjxmmBCk1yuMSkl1npJUMneOIOk+OM4azDKmblaYgu8SoIy+t43p1/DET1y5DlujFdePd7ntcAlB4repKT2Yb3cU0pvsudbYJYZPYZN45lOmOBypOEorL7MNe2DejiAIZjkc6IJ5uCGL5zhS34dqbQzWOL6ZWEVurVRymG+wc/ykgE4/2ukzzDC7A9zehna4bI0Qy20B1vzR/3hP8rs64VpZv0TluFO+34K+pl5OX/XzAr4FmAADlxjKdx5a5wAAAAASUVORK5CYII=);
  background-color: var(--color2, #528dca);
  border-color: var(--color2, #528dca);
  color: #FFF;
  z-index: 2; }
  .separate-nav.catalog-nav-open .header .top-basket-block .title {
    color: #FFF; }

.separate-nav.catalog-nav-open .header .sign-link {
  z-index: 2; }
  .separate-nav.catalog-nav-open .header .sign-link svg path {
    fill: #5f7681; }

.separate-nav.float-nav.nav-scrolled .top-nav-container {
  position: fixed;
  left: 50%;
  right: auto;
  width: 1170px;
  margin-left: -585px;
  top: 15px; }
  .separate-nav.float-nav.nav-scrolled .top-nav-container .catalog-nav-block {
    transform: none; }
  .separate-nav.float-nav.nav-scrolled .top-nav-container .catalog-nav-trigger {
    width: auto;
    opacity: 0; }
    .separate-nav.float-nav.nav-scrolled .top-nav-container .catalog-nav-trigger span {
      display: none; }
    .separate-nav.float-nav.nav-scrolled .top-nav-container .catalog-nav-trigger:after {
      margin-left: 25px; }
  .separate-nav.float-nav.nav-scrolled .top-nav-container .top-nav-block {
    top: 0;
    transform: none; }
  .separate-nav.float-nav.nav-scrolled .top-nav-container .subnav-block.multilevel {
    padding-top: 80px; }

.separate-nav.float-nav.nav-scrolled.nav-showed .top-nav-container .catalog-nav-trigger {
  opacity: 1;
  transition: opacity 0.7s, background 0.3s; }

@media (max-width: 999px) {
  .separate-nav #logo {
    margin-top: 0; }
  .separate-nav .top-nav-container {
    display: none; } }

.brand-block .brand-top-block {
  background-color: #FFF;
  padding: 50px 70px;
  margin-bottom: 50px;
  box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.07); }
  .brand-block .brand-top-block .title {
    text-align: center;
    font-size: 3.125rem;
    margin-bottom: 60px; }
    .brand-block .brand-top-block .title img {
      max-width: 100%; }
  .brand-block .brand-top-block .block-content {
    display: flex; }
    .brand-block .brand-top-block .block-content > div {
      flex: 1 0 50%;
      width: 50%;
      box-sizing: border-box; }
    .brand-block .brand-top-block .block-content .picture {
      line-height: 0;
      padding-top: 30%;
      position: relative; }
      .brand-block .brand-top-block .block-content .picture img {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        position: absolute;
        object-fit: cover; }
    .brand-block .brand-top-block .block-content .text {
      font-size: 1.125rem;
      line-height: normal;
      padding-right: 50px; }
      .brand-block .brand-top-block .block-content .text p:last-child {
        margin-bottom: 0; }

.brand-block .brand-offers {
  margin-bottom: 45px; }
  .brand-block .brand-offers .btn-more {
    margin-top: 20px; }

.brand-block .banner {
  margin: 45px 0; }
  .brand-block .banner img {
    width: 100%; }

@media (max-width: 999px) {
  .brand-block .brand-top-block {
    padding: 30px; }
    .brand-block .brand-top-block .title {
      margin-bottom: 30px; }
    .brand-block .brand-top-block .block-content {
      flex-direction: column; }
      .brand-block .brand-top-block .block-content > div {
        width: 100%;
        flex: 1 1 auto; }
      .brand-block .brand-top-block .block-content .text {
        order: 2;
        padding-right: 0; }
      .brand-block .brand-top-block .block-content .picture {
        padding-top: 65%;
        margin-bottom: 30px; } }

.brand-block-2 .brand-top-block {
  padding: 0; }
  .brand-block-2 .brand-top-block .text {
    padding: 50px 50px 50px 70px; }
  .brand-block-2 .brand-top-block .title {
    text-align: left;
    margin-bottom: 55px; }
  .brand-block-2 .brand-top-block .block-content .picture {
    padding: 0; }
    .brand-block-2 .brand-top-block .block-content .picture:before {
      content: '';
      display: block;
      padding-top: 100%; }

@media (max-width: 999px) {
  .brand-block-2 .brand-top-block .block-content .picture {
    margin-bottom: 0; }
  .brand-block-2 .brand-top-block .block-content .title {
    margin-bottom: 30px; }
  .brand-block-2 .brand-top-block .block-content .text {
    padding: 40px; } }

.brands-list-block {
  background-color: #FFF;
  padding: 50px 70px;
  margin-bottom: 50px;
  box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.07); }
  .brands-list-block .brands-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 60px; }
    .brands-list-block .brands-list .item a {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: 100%;
      text-decoration: none;
      color: #9b9b9b;
      text-decoration: none; }
    .brands-list-block .brands-list .item .picture {
      flex: 1;
      display: flex;
      align-items: center;
      margin-bottom: 10px; }
      .brands-list-block .brands-list .item .picture img {
        max-width: 100%; }
    .brands-list-block .brands-list .item .name {
      text-align: center;
      text-transform: uppercase; }
  .brands-list-block .pagination {
    margin-top: 50px;
    margin-bottom: 0; }
  @media (max-width: 999px) {
    .brands-list-block {
      padding: 30px; }
      .brands-list-block .brands-list {
        grid-template-columns: 1fr 1fr; } }
  @media (max-width: 509px) {
    .brands-list-block {
      padding: 15px; }
      .brands-list-block .brands-list {
        grid-row-gap: 30px; } }

.instagramm-section {
  padding-bottom: 0; }

.instagram-widget {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0px 0px;
  grid-template-areas: "large . . . ."
 "large . . . ."; }
  .instagram-widget .item {
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none; }
    .instagram-widget .item .picture {
      padding-top: 100%;
      position: relative;
      transition: all 0.3s;
      display: block; }
      .instagram-widget .item .picture img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        object-fit: cover; }
    .instagram-widget .item .text {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.4);
      transition: all 0.3s;
      transform: scale(2);
      opacity: 0;
      color: #FFF;
      text-align: center;
      justify-content: center;
      align-items: center;
      display: flex;
      flex-direction: column;
      font-size: 0.8125rem;
      line-height: 1.23077;
      padding: 0 10%;
      cursor: default; }
      .instagram-widget .item .text:after {
        content: '';
        display: block;
        height: 20%;
        width: 20%;
        max-width: 31px;
        max-height: 31px;
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB8AAAAfCAQAAAC1p96yAAAAo0lEQVR42szUBRUDQQwE0LgoaSrKiIiKGG3RU8a7m7w5Zt6/vLH/DYGr3MPYlgO2ayx2gk1sJHUjzETDkk8Fg2hc7d33OUTZ8KTSH8c5vNjPr2xwfqUVXAwV4RwvzbDkGSQcnpcFl5xh9n1AviF8A83hvOwv8E6lz73ruo17h1nXYc7rFSe4Wu+c62iT8xCxTpTdQ6S9jdxyntJahvI6jsIaFgALPI69iNJSLgAAAABJRU5ErkJggg==);
        background-size: cover;
        margin-top: 10%; }
    .instagram-widget .item:hover .picture {
      opacity: 0.8;
      transform: scale(1.1); }
    .instagram-widget .item:hover .text {
      opacity: 1;
      transform: scale(1); }
  .instagram-widget a.item .text {
    cursor: pointer; }
  .instagram-widget .item:first-child, .instagram-widget .item.large {
    grid-area: large; }
    .instagram-widget .item:first-child .text, .instagram-widget .item.large .text {
      font-size: 0.9375rem; }
  @media (max-width: 999px) {
    .instagram-widget {
      grid-template-columns: 2fr 1fr;
      grid-template-areas: "large . "
 "large . "; }
      .instagram-widget .item:nth-child(n+4) {
        display: none; } }
  @media (max-width: 767px) {
    .instagram-widget .item .text {
      display: none; } }
  @media (max-width: 509px) {
    .instagram-widget .item {
      flex: 0 0 50%; } }

.cookies-block {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #FFF;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s; }

.cookies-block .center {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 875px; }

.cookies-block .text {
  margin-right: 30px;
  max-width: 675px;
  line-height: 1.5rem; }

.cookies-block .btn {
  text-align: center; }

.cookies-block .btn:hover {
  color: #000;
  background-color: #FFF; }

.cookies-block:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  padding-top: 65.5%;
  opacity: 0.7;
  background: var(--color2);
  min-height: 100%; }

.cookies-block.show {
  opacity: 1;
  transform: translateY(0); }

@media (max-width: 509px) {
  .cookies-block {
    padding-top: 15px;
    padding-bottom: 15px; }
  .cookies-block .center {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    display: block; }
  .cookies-block .text {
    margin-right: 0; }
  .cookies-block .btn {
    min-width: 0;
    display: block;
    margin-top: 10px; } }

.cookie-notification-block {
  position: fixed;
  bottom: 30px;
  left: 35px;
  max-width: calc(100% - 70px);
  width: 322px;
  background-color: #FFF;
  border-radius: 3px;
  padding: 15px 20px;
  box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.05);
  z-index: 3;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  margin-bottom: -20px; }
  .cookie-notification-block.show {
    opacity: 1;
    visibility: visible; }
  .cookie-notification-block .block-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px; }
  .cookie-notification-block .options {
    display: flex;
    gap: 20px;
    align-items: center; }
  .cookie-notification-block p {
    line-height: 18px;
    font-size: 13px;
    margin-bottom: 10px; }
  .cookie-notification-block .close-block {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #717a81;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold; }
    .cookie-notification-block .close-block:after {
      content: '\f00d';
      font-family: 'Font Awesome 5 Free';
      font-size: 22px; }
  @media (max-width: 509px) {
    .cookie-notification-block {
      left: 0;
      right: 0;
      width: auto;
      max-width: none;
      bottom: 0;
      margin: 0; } }

.bx-sbb-empty-cart-desc a {
  text-decoration: underline; }

body div.bx-blue .btn {
  font-weight: 400; }

body .basket-item-block-amount {
  align-items: center; }

body .basket-item-amount-filed,
body .basket-item-block-amount.disabled .basket-item-amount-filed:hover {
  color: #717a81;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #c1c1c1;
  background-color: #FFF;
  font-size: 15px;
  line-height: 23px;
  min-height: 35px;
  padding: 5px 10px;
  height: auto; }

body .basket-items-list-header {
  background-color: #f3f4f6; }

body .basket-checkout-container {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }

body .basket-items-list-wrapper, body .basket-items-list-wrapper-compact {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }

body .basket-items-list-item-descriptions {
  padding-bottom: 10px; }
  body .basket-items-list-item-descriptions .basket-item-block-info {
    padding-bottom: 10px; }

body .basket-items-list-header-filter-item,
body .basket-item-price-old-text,
body .basket-item-price-difference,
body .basket-coupon-block-field-description,
body .basket-coupon-block-total-price-difference,
body .basket-checkout-block-total-title,
body .basket-coupon-block-total-price-old,
body .basket-coupon-block-total-price-current,
body .basket-item-price-title,
body .basket-item-property-name,
body .basket-item-property-custom-name,
body .basket-item-amount-field-description,
body .basket-item-price-current-text,
body .basket-item-property-value,
body .basket-item-property-custom-value,
body .basket-item-info-name,
body .basket-item-info-name-link {
  font-family: "Ubuntu", sans-serif; }

body .basket-item-price-old-text,
body .basket-coupon-block-total-price-old {
  text-decoration: line-through; }
  body .basket-item-price-old-text:after,
  body .basket-coupon-block-total-price-old:after {
    display: none; }

body .basket-item-block-amount {
  padding: 0;
  width: max-content;
  border: 1px solid #dedede;
  margin: 0 15px;
  display: flex;
  align-items: center; }

body .basket-item-amount-filed,
body .basket-item-block-amount.disabled .basket-item-amount-filed:hover {
  width: 42px;
  border: none;
  text-align: center;
  vertical-align: middle;
  padding: 0;
  margin: 0; }

@media (max-width: 999px) and (min-width: 768px) {
  body .bx-basket .hidden-xs {
    display: none !important; }
  body .bx-basket .visible-xs {
    display: block !important; }
  body .basket-items-list-header {
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal; }
  body .basket-items-search-field {
    width: 100%; }
  body .basket-items-list-item-container.basket-items-list-item-container-gift,
  body .basket-items-list-item-container.basket-items-list-item-container-gift > td,
  body .basket-items-list .basket-items-list-item-container:first-child > td {
    margin: 0;
    padding-top: 0;
    border-top: none !important; }
  body .basket-item-label-text > div {
    line-height: 0; }
  body .basket-item-label-text.basket-item-label-small span {
    margin-bottom: 1px;
    padding: 2px 7px;
    font-size: 11px;
    line-height: 14px; }
  body .basket-item-label-text.basket-item-label-big span {
    margin-bottom: 1px;
    padding: 3px 12px;
    font-size: 13px;
    line-height: 16px; }
  body .basket-item-label-ring.basket-item-label-small {
    width: 24px;
    height: 24px;
    font-size: 8px;
    line-height: 24px; }
  body .basket-item-label-ring.basket-item-label-big {
    width: 30px;
    height: 30px;
    font-size: 12px;
    line-height: 30px; }
  body .basket-item-block-amount {
    padding-top: 0;
    margin-top: 15px;
    margin-bottom: 20px;
    margin-left: 0; }
    body .basket-item-block-amount .basket-item-amount-btn-plus, body .basket-item-block-amount .basket-item-amount-btn-minus {
      border: none;
      background: none; }
  body .basket-items-list-item-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start; }
  body .basket-items-list-item-descriptions {
    min-width: 100%; }
  body body .basket-items-list-table, body body .basket-items-list-table thead, body body .basket-items-list-table tbody, body body .basket-items-list-table tr {
    display: block !important; }
  body tr.basket-items-list-item-container {
    -ms-flex-pack: center;
    -ms-flex-align: start;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #f2f2f2;
    -webkit-box-align: flex-start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center; }
  body .basket-items-list-table tr.basket-items-list-item-container:first-child,
  body .basket-items-list-table tbody tr.basket-items-list-item-container:first-child {
    border: 0; }
  body .basket-items-list .basket-items-list-item-container > td {
    border-top: 0; }
  body td.basket-items-list-item-amount,
  body td.basket-items-list-item-price,
  body td.basket-items-list-item-remove {
    display: inline-block; }
  body td.basket-items-list-item-descriptions {
    padding-bottom: 10px;
    min-width: 100%; }
  body td.basket-items-list-item-descriptions,
  body td.basket-items-list-item-notification {
    display: block;
    padding-top: 0; }
  body .basket-items-list-item-price {
    padding: 3px 0; }
  body td.basket-items-list-item-remove {
    padding: 19px 0 0 10px !important; }
  body .product-item-list-col-6 > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
  body .product-item-list-col-1-6 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
  body .product-item-list-col-6-1 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
  body .product-item-list-col-4 > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
  body .product-item-list-col-1-4 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
  body .product-item-list-col-4-1 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
  body .product-item-list-col-3 > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
  body .product-item-list-col-2 > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
  body .product-item-list-col-1 > .col-xs-12 > .row > .col-xs-12:nth-child(1n) {
    clear: both; }
  body .product-item {
    padding: 15px 5px 5px; }
  body .product-item-line-card .product-item .col-xs-12:nth-child(2n) {
    clear: both; }
  body .product-item-label-text > div {
    line-height: 0; }
  body .product-item-label-text.product-item-label-small span,
  body .product-item-scalable-card.hover .product-item-label-text.product-item-label-small span {
    margin-bottom: 1px;
    padding: 2px 7px;
    font-size: 10px;
    line-height: 14px; }
  body .product-item-big-card .product-item-label-text.product-item-label-small span,
  body .product-item-label-text.product-item-label-big span,
  body .product-item-scalable-card.hover .product-item-label-text.product-item-label-big span {
    margin-bottom: 1px;
    padding: 3px 12px;
    font-size: 14px;
    line-height: 16px; }
  body .product-item-big-card .product-item-label-text.product-item-label-big span {
    padding: 3px 12px;
    font-size: 20px;
    line-height: 25px; }
  body .product-item-label-ring.product-item-label-small,
  body .product-item-scalable-card.hover .product-item-label-ring.product-item-label-small {
    width: 35px;
    height: 35px;
    font-size: 12px;
    line-height: 35px; }
  body .product-item-big-card .product-item-label-ring.product-item-label-small,
  body .product-item-label-ring.product-item-label-big,
  body .product-item-scalable-card.hover .product-item-label-ring.product-item-label-big {
    width: 35px;
    height: 35px;
    font-size: 12px;
    line-height: 35px; }
  body .product-item-big-card .product-item-label-ring.product-item-label-big {
    width: 70px;
    height: 70px;
    font-size: 24px;
    line-height: 70px; }
  body .basket-item-info-name, body .basket-item-info-name-link {
    vertical-align: middle;
    font-size: 15px;
    line-height: 17px; } }

.basket-items-list {
  background-color: #FFF; }

.basket-checkout-block-btn {
  padding-top: 17px; }

.basket-coupon-alert-section {
  width: 100%;
  margin-top: -25px; }
  @media (max-width: 999px) {
    .basket-coupon-alert-section {
      margin-top: 0; } }

.sale-products-gift {
  margin-top: 20px; }
  .sale-products-gift .product-item-container .product-item {
    box-shadow: 0 0 0 0 #FFF, 0 0 6px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    padding: 0 20px;
    left: 0;
    right: 0;
    top: 0;
    transition: all 0.3s; }

@media (max-width: 999px) {
  .basket-checkout-section {
    margin-top: 10px; } }

body .basket-item-actions-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  font: normal normal normal 20px FontAwesome;
  color: var(--color1, #db3d3d); }
  body .basket-item-actions-remove:before {
    position: static;
    top: 0;
    left: 0;
    content: "\f00d";
    width: auto;
    height: auto;
    background: none;
    transform: none; }
  body .basket-item-actions-remove:after {
    display: none; }
  body .basket-item-actions-remove:hover {
    color: var(--color2, #528dca); }
    body .basket-item-actions-remove:hover:before {
      background: none; }
  @media (max-width: 999px) {
    body .basket-item-actions-remove {
      right: -10px;
      top: 1px; } }

.bx-authform-formgroup-container .btn {
  margin-right: 20px; }

.bx-soa-section {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; }
  .bx-soa-section.bx-selected {
    border-color: var(--color2, #528dca); }

.bx-soa-section-title-container {
  background-color: #f3f4f6;
  padding: 15px 0; }
  .bx-soa-section-title-container .bx-soa-section-title {
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    color: #000; }

.bx-authform .bx-title {
  margin-top: 10px; }

.bx-authform > br {
  display: none; }

.bx-authform > label {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 400; }
  .bx-authform > label input[type="radio"],
  .bx-authform > label input[type="checkbox"] {
    margin: 0 10px 0 0; }

.bx-authform .bx-authform-formgroup-container:last-child {
  margin-top: 30px; }

.bx-soa-section {
  background-color: #fff; }

.bx-soa-pp-company-desc img {
  max-width: 100%;
  width: auto;
  height: auto; }

.bx-soa-cart-total {
  background-color: #FFF; }

.bx-soa-reference {
  font-size: 12px; }

.bx-soa-cart-total-line {
  font-size: 14px; }

.bx-soa-item-table .bx-soa-item-tr .bx-soa-item-td {
  vertical-align: middle; }

.bx-soa-item-table .bx-soa-item-tr:first-child .bx-soa-item-td {
  vertical-align: top; }

.bx-soa-item-table .bx-soa-item-imgcontainer {
  border: none; }

.bx-soa-item-table .bx-soa-item-block {
  align-items: center; }

.bx-soa-item-table .bx-soa-item-title {
  font-weight: 400; }

@media (min-width: 580px) {
  .bx-soa-item-table .bx-soa-item-block {
    display: flex; }
  .bx-soa-item-table .bx-soa-item-img-block {
    flex: 0 0 85px; } }

@media (max-width: 999px) and (min-width: 768px) {
  body .bx-soa {
    width: 100%; }
  body .bx-soa-sidebar {
    width: 100%; }
  body .bx-soa-reference {
    margin-top: 15px; }
  body .bx-soa-pp-item-container {
    width: 100%; }
  body .bx-soa-pp-desc-container {
    width: 100%; } }

body .bx-soa-item-td-title, body .bx-soa-item-td-text {
  font-size: 14px; }

@media (max-width: 999px) {
  body .bx-soa-item-properties {
    float: none;
    padding: 0; }
  body .bx-soa-item-td-title, body .bx-soa-item-td-text {
    line-height: 20px;
    display: inline-block !important;
    padding: 2px 5px;
    text-align: left;
    vertical-align: middle;
    font-size: 13px; } }

.bx-authform-content-container, .bx-authform-label-container {
  font-size: 14px;
  color: #000; }

.bx-authform-input-container input[type="text"],
.bx-authform-input-container input[type="password"] {
  margin-bottom: 15px;
  color: #717a81;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #c1c1c1;
  background-color: #FFF;
  font-size: 15px;
  line-height: 23px;
  min-height: 35px;
  padding: 5px 10px;
  border-radius: 0;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */ }
  .bx-authform-input-container input[type="text"].ui-selectmenu-button,
  .bx-authform-input-container input[type="password"].ui-selectmenu-button {
    padding-right: 20px; }
  .bx-authform-input-container input[type="text"]:focus, .bx-authform-input-container input[type="text"].ui-state-focus,
  .bx-authform-input-container input[type="password"]:focus,
  .bx-authform-input-container input[type="password"].ui-state-focus {
    box-shadow: 0 0 3px #ffc426; }
  .bx-authform-input-container input[type="text"]:disabled, .bx-authform-input-container input[type="text"].ui-state-disabled,
  .bx-authform-input-container input[type="password"]:disabled,
  .bx-authform-input-container input[type="password"].ui-state-disabled {
    background-color: #EEE; }
  .bx-authform-input-container input[type="text"].error,
  .bx-authform-input-container input[type="password"].error {
    color: #FF868A;
    border: 1px solid #FF868A;
    background-color: #FFF0F1; }
  .bx-authform-input-container input[type="text"]::-webkit-outer-spin-button, .bx-authform-input-container input[type="text"]::-webkit-inner-spin-button,
  .bx-authform-input-container input[type="password"]::-webkit-outer-spin-button,
  .bx-authform-input-container input[type="password"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .bx-authform-input-container input[type="text"][type=number],
  .bx-authform-input-container input[type="password"][type=number] {
    -moz-appearance: textfield; }

.sale-order-detail-about-order-title,
.sale-order-detail-payment-options-title,
.sale-order-detail-payment-options-shipment-composition-title,
.sale-order-detail-payment-options-order-content-title,
.sale-order-detail-payment-options-order-content-title {
  background-color: #f3f4f6; }

.sale-order-detail-about-order-inner-container,
.sale-order-detail-payment-options-inner-container,
div.sale-order-detail-payment-options-methods, div.sale-order-detail-payment-options-shipment {
  border: none; }

.sale-order-detail-order-item-properties.bx-text-right .sale-order-detail-order-item-td-text {
  white-space: nowrap; }

.sale-order-detail-order-item-table .sale-order-detail-order-item-tr .sale-order-detail-order-item-td {
  vertical-align: middle; }

.sale-order-detail-order-item-table .sale-order-detail-order-item-tr:first-child .sale-order-detail-order-item-td {
  vertical-align: top;
  padding-top: 5px; }

.sale-order-detail-order-item-table .sale-order-detail-order-item-imgcontainer {
  border: none; }

.sale-order-detail-order-item-table .sale-order-detail-order-item-title {
  font-weight: 400; }

@media (min-width: 580px) {
  .sale-order-detail-order-item-table .sale-order-detail-order-item-block {
    display: flex;
    align-items: center; }
  .sale-order-detail-order-item-table .sale-order-detail-order-item-img-block {
    flex: 0 0 85px; } }

.bx-soa-pp-item-container .bx-soa-pp-company {
  float: none;
  width: auto;
  border: none;
  padding: 5px 0;
  cursor: pointer;
  z-index: 1; }
  .bx-soa-pp-item-container .bx-soa-pp-company .bx-soa-pp-company-graf-container {
    border: none;
    padding: 0; }
  .bx-soa-pp-item-container .bx-soa-pp-company .bx-soa-pp-company-image {
    display: none; }
  .bx-soa-pp-item-container .bx-soa-pp-company .bx-soa-pp-company-smalltitle {
    text-align: left;
    font-size: 15px;
    padding: 0;
    margin: 0 40px 0 25px; }
  .bx-soa-pp-item-container .bx-soa-pp-company input[type=checkbox].bx-soa-pp-company-checkbox {
    left: 0;
    top: 3px; }
  .bx-soa-pp-item-container .bx-soa-pp-company .bx-soa-pp-delivery-cost {
    right: 0;
    top: 0;
    bottom: auto;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.3); }
  .bx-soa-pp-item-container .bx-soa-pp-company:hover .bx-soa-pp-delivery-cost {
    background: rgba(0, 0, 0, 0.4); }
  .bx-soa-pp-item-container .bx-soa-pp-company:hover .bx-soa-pp-company-smalltitle {
    color: #444; }
  .bx-soa-pp-item-container .bx-soa-pp-company.bx-selected .bx-soa-pp-delivery-cost {
    background: rgba(0, 0, 0, 0.5); }
  .bx-soa-pp-item-container .bx-soa-pp-company.bx-selected .bx-soa-pp-company-smalltitle {
    color: #333; }

.sale-order-detail-back-to-list-link-down {
  padding: 0;
  clear: both;
  width: fit-content; }

.sale-order-payment-change-pp-company {
  z-index: 1; }

.sale-order-link, .sale-order-history-link {
  color: inherit; }

.bx-soa-pp-desc-container .bx-soa-pp-company {
  background-color: #f3f4f6; }

.sale-order-list-container {
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }

.sale-order-list-inner-container {
  background-color: #fff; }

.sale-order-list-title, .sale-order-list-accomplished-title {
  margin-bottom: 10px;
  color: #FFF; }

.sale-order-list-shipment-button,
.sale-order-list-repeat-link,
.sale-order-list-cancel-link,
.sale-order-list-about-link,
.sale-order-list-change-payment {
  color: #000; }

.sale-order-list-payment-title {
  display: flex; }
  .sale-order-list-payment-title .sale-order-list-payment-title-element {
    margin-right: auto; }
  .sale-order-list-payment-title .sale-order-list-status-alert {
    margin-left: 10px; }
  @media (max-width: 509px) {
    .sale-order-list-payment-title {
      display: block; }
      .sale-order-list-payment-title .sale-order-list-status-alert {
        display: block;
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
        margin-bottom: 10px; } }

.sale-order-list-button {
  transition: opacity 0.3s;
  height: 36px; }
  .sale-order-list-button:hover {
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s; }

.sale-order-list-shipment-title {
  display: flex; }
  .sale-order-list-shipment-title .sale-order-list-shipment-element {
    margin-right: auto; }
  .sale-order-list-shipment-title .sale-order-list-status-alert {
    margin-left: 10px; }
  @media (max-width: 509px) {
    .sale-order-list-shipment-title {
      background-color: #fff;
      display: block; }
      .sale-order-list-shipment-title .sale-order-list-status-alert {
        display: block;
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
        margin-bottom: 10px; } }

@media (max-width: 509px) {
  .sale-order-list-shipment-status {
    display: flex;
    margin: 10px 0; }
    .sale-order-list-shipment-status .sale-order-list-shipment-status-block {
      margin-left: 10px;
      flex: 1;
      text-align: center; } }

@media (max-width: 999px) {
  .sale-order-list-shipment,
  .sale-order-list-payment {
    width: 100%; }
  .sale-order-list-cancel-container,
  .sale-order-list-repeat-container,
  .sale-order-list-about-container {
    display: block;
    width: 100%; }
  .sale-order-list-button-container .sale-order-list-button {
    float: none;
    margin-top: 10px; } }

.sale-order-detail-general {
  background: #FFF;
  margin-bottom: 20px;
  border-color: var(--color2, #528dca); }
  .sale-order-detail-general .sale-order-detail-about-order,
  .sale-order-detail-general .sale-order-detail-payment-options,
  .sale-order-detail-general .sale-order-detail-payment-options-order-content {
    margin-top: 0; }
  .sale-order-detail-general .sale-order-detail-about-order-inner-container-repeat-button {
    text-transform: none;
    padding-left: 0;
    padding-right: 0;
    display: block; }
  @media (max-width: 999px) {
    .sale-order-detail-general .sale-order-detail-payment-options-methods-info-title-status-success,
    .sale-order-detail-general .sale-order-detail-payment-options-methods-info-title-status-alert {
      display: block;
      margin: 5px 0;
      text-align: center; }
    .sale-order-detail-general .sale-order-detail-about-order-inner-container-price {
      margin-bottom: 10px; } }
  .sale-order-detail-general .sale-order-payment-change-pp .btn {
    border-radius: 3px !important;
    margin-top: 10px;
    margin-bottom: 10px; }

.sale_order_full_table .btn {
  border-radius: 3px !important;
  margin-top: 10px;
  margin-bottom: 10px; }

.sale_order_full_table .ps_logo {
  padding-bottom: 10px; }
  .sale_order_full_table .ps_logo .pay_name {
    display: inline-block;
    font-weight: bold; }
    .sale_order_full_table .ps_logo .pay_name:after {
      content: ':'; }
  .sale_order_full_table .ps_logo img {
    width: auto;
    height: auto;
    max-width: 40px;
    max-height: 40px;
    margin-left: 10px; }
  .sale_order_full_table .ps_logo .paysystem_name {
    display: inline-block; }

/*                         ╓                       ╖                         */
/* ──────────══════════════╣   Оформление заказа   ╠══════════════────────── */
/*                         ╙                       ╜                         */
/* Делаем белый фон для раздела заказа */
#main:has(#bx-soa-order) {
  background-color: #fff !important; }

#bx-soa-order * {
  font-family: Ubuntu, "Trebuchet MS", Tahoma, Verdana, sans-serif; }

/* Чиним меню */
/* Чиним кнопку корзины */
.top-basket-block {
  -webkit-box-sizing: initial;
  -moz-box-sizing: initial;
  box-sizing: initial; }

/* Позиционируем прилипающий правый блок "ИТОГО" относительно нашей шапки */
.bx-soa-cart-total.bx-soa-cart-total-fixed {
  top: 100px !important; }

.bx-soa-section {
  margin-bottom: 15px !important;
  border-radius: 4px !important;
  overflow: hidden; }

.bx-step-completed {
  border: unset; }

.bx-soa-section-title-container {
  padding: 15px 5px !important; }

.bx-soa-section.bx-step-completed {
  border-color: #e8e9eb !important; }

.bx-soa-section.bx-step-completed .bx-soa-section-content, .bx-soa-section.bx-selected .bx-soa-section-content {
  line-height: 24px !important; }

.bx-soa-pp-company-selected img {
  margin-bottom: 0px;
  width: 90px !important;
  height: auto !important; }

.bx-soa-pp-company-smalltitle {
  color: #000 !important;
  font-size: 13px !important;
  font-weight: 500;
  line-height: 1.2; }

.bx-soa-pp-company-graf-container {
  border-radius: 3px;
  border-width: 1px; }

/*                         ╓             ╖                         */
/* ──────────══════════════╣   Корзина   ╠══════════════────────── */
/*                         ╙             ╜                         */
/* Делаем белый фон для раздела заказа */
#main:has(#basket-root) {
  background-color: #fff !important; }

#basket-root * {
  font-family: Ubuntu, "Trebuchet MS", Tahoma, Verdana, sans-serif; }

#basket-root .form input {
  line-height: 29px;
  border: solid 1px #c1c1c1;
  padding: 1px 5px; }

#basket-root .form input::placeholder {
  color: #aaa; }

#basket-root .basket-item-scu-list {
  margin: 0px; }

#basket-root .basket-item-scu-item {
  margin: 5px 5px 7px 0;
  border-radius: 3px; }

#basket-root .basket-item-scu-item:before {
  display: none; }

#basket-root .basket-item-scu-item-inner {
  padding: 5px 9px; }

#basket-root .basket-item-scu-item.selected {
  background: #528dca;
  /* -------------- Цвет из шаблона ------------- */
  color: #fff;
  border: none;
  padding: 1px 1px; }

#basket-root .basket-item-info-name a {
  font-weight: 600;
  font-size: 18px; }

#basket-root .basket-item-info-name {
  margin-bottom: 10px; }

#basket-root .basket-item-property-custom {
  margin-bottom: 5px; }

#basket-root .basket-item-actions-remove {
  top: 0; }

#basket-root .basket-items-list-item-descriptions {
  padding: 20px; }

#basket-root .basket-coupon-section {
  /*flex: none;*/ }

#basket-root .basket-coupon-block-coupon-btn {
  margin-top: -6px; }

#basket-root .basket-checkout-container {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 4px; }

#basket-root .basket-coupon-block-field-description {
  color: #a1a1a1;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-bottom: 7px;
  margin-top: 7px; }

#basket-root .basket-coupon-block-total-price-current {
  font-weight: 500;
  font-size: 32px;
  margin-top: -2px;
  margin-bottom: 2px; }

#basket-root .basket-checkout-block-total-price {
  padding-right: 30px; }

#basket-root .basket-coupon-block-total-price-old {
  font-size: 15px; }

#basket-root .basket-coupon-block-total-price-difference {
  border-radius: 3px;
  padding: 2px 5px 3px;
  text-transform: uppercase;
  font-size: 11px; }

#basket-root .basket-item-label-text.basket-item-label-big span {
  padding: 1px 5px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 3px; }

#basket-root .basket-checkout-block-btn {
  padding-top: 15px; }

#basket-root .basket-checkout-block-btn button {
  line-height: 40px; }

#basket-root .basket-checkout-container .basket-coupon-alert-section {
  margin: auto 0;
  width: 100%; }

#basket-root .basket-coupon-alert-section .text-danger .basket-coupon-text {
  padding-left: 0; }

#basket-root .basket-item-block-image {
  padding-right: 45px;
  max-width: 178px; }

#basket-root .basket-item-property-scu-text .basket-item-scu-item-inner {
  font-weight: 500;
  font-size: 10px;
  padding: 1px 6px; }

#basket-root .basket-item-price-old {
  margin-bottom: 5px;
  position: inherit; }

#basket-root .basket-item-price-difference {
  white-space: inherit;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 10px; }

#basket-root .basket-item-price-old-text, #basket-root .basket-coupon-block-total-price-old {
  text-decoration: line-through; }

#basket-root .basket-item-price-old-text::after, #basket-root .basket-coupon-block-total-price-old::after {
  display: none; }

#basket-root .basket-item-block-amount {
  padding: 0 0;
  margin: 5px 30px 0;
  border: solid 1px #dedede;
  border-radius: 3px; }

#basket-root .basket-item-amount-filed-block input {
  border: none;
  height: 35px;
  font-weight: 400;
  font-size: 14px; }

#basket-root .basket-item-amount-btn-plus, #basket-root .basket-item-amount-btn-minus {
  height: inherit; }

#basket-root .basket-item-property-value, #basket-root .basket-item-property-custom-value {
  font-weight: 500; }

#basket-root .basket-item-property::before, #basket-root .basket-item-property-custom::before {
  content: '—';
  position: absolute;
  margin-left: -22px;
  font-size: 10px;
  color: #bdbdbd;
  margin-top: -1px; }

#basket-root .basket-item-property, #basket-root .basket-item-property-custom {
  margin-left: 22px; }

#basket-root .basket-item-amount-field-description {
  margin-top: 8px;
  font-style: normal; }

#basket-root .basket-items-list-wrapper {
  border-radius: 5px; }

#basket-root .basket-items-list-header {
  background-color: #eff2f5;
  border: none;
  border-radius: 4px; }

/* -------------------- Оформляем блок подарков под корзиной товаров -------------------- */
.catalog-block-header {
  padding: 20px 0;
  font-size: 24px;
  font-weight: 500;
  border: none; }

.sale-products-gift .product-item-container {
  box-shadow: 0 0 0 0 #FFF, 0 0 6px rgba(0, 0, 0, 0.15);
  padding: 5px 20px; }

.sale-products-gift .product-item-container.hover .product-item {
  right: 0px;
  left: 0px;
  top: 0;
  padding: 15px 15px 0;
  -webkit-animation: none; }

.sale-products-gift .product-item-label-text.product-item-label-small span, .sale-products-gift .product-item-scalable-card.hover .product-item-label-text.product-item-label-small span {
  font-size: 10px;
  font-weight: 500;
  padding: 2px 6px 1px;
  text-transform: uppercase;
  border-radius: 2px; }

.basket-item-label-ring.basket-item-label-small, .product-item-label-ring.product-item-label-small {
  background: center/contain url(images/discount-icon.png);
  font-weight: 500;
  font-size: 11px; }

/*                         ╓                     ╖                         */
/* ──────────══════════════╣   ЛК / Мои заказы   ╠══════════════────────── */
/*                         ╙                     ╜                         */
.article .sale-order-list-container {
  background: #fff; }

.sale-order-list-title, .sale-order-list-accomplished-title {
  margin: 15px 0 15px; }

.sale-order-list-title-container {
  background-color: var(--color2, #528dca);
  padding: 0 25px; }

.sale-order-list-inner-container {
  border: none;
  padding: 0px 25px 15px; }

.article .sale-order-list-container {
  border-radius: 4px;
  overflow: hidden; }

.container-fluid.sale-order-detail {
  padding: 0; }

.sale-order-detail-general {
  background: #fff; }

.sale-order-detail-about-order-title, .sale-order-detail-payment-options-title, .sale-order-detail-payment-options-order-content-title {
  background: none; }

.bx_profile .form-group .form-control {
  width: 100%;
  border: solid 1px #cccccc;
  border-radius: 3px;
  padding: 1px 10px;
  box-sizing: border-box; }

.main-profile-block-shown {
  padding: 20px 0; }

.article table th, .simple_page .content table th {
  font-size: 14px; }

.sale-personal-profile-list-arrow-up, .sale-personal-profile-list-arrow-down {
  padding: 0 0 0 5px; }

.sale-personal-profile-list-container a {
  border-bottom: none; }

/*                         ╓                          ╖                         */
/* ──────────══════════════╣   ЛК / Страница заказа   ╠══════════════────────── */
/*                         ╙                          ╜                         */
.sale-order-detail-general {
  border: none; }

.sale-order-detail-about-order-inner-container, .sale-order-detail-payment-options-inner-container, .sale-order-detail-payment-options-shipment, .sale-order-detail-order-section {
  border: none; }

.sale-order-detail-about-order {
  background: #dee7ef;
  margin-top: 0;
  padding-top: 20px; }

.sale-order-detail-total-payment-list-right {
  margin: 20px -25px !important; }

.sale-order-detail-total-payment-list-right-item::before, .sale-order-detail-total-payment-list-left-item::before {
  display: none; }

.sale-order-detail-total-payment {
  background: #dee7ef;
  margin: 5px 0px 15px;
  border-radius: 5px;
  padding: 0; }

.sale-order-detail-general {
  margin-bottom: 25px; }

.sale-order-detail-payment-options-shipment-composition-title {
  background: none; }

.sale-order-detail-payment-options-shipment-composition-map {
  padding-right: 35px; }

.sale-order-detail-payment-options-shipment-composition-container {
  border: solid #ddd 1px;
  padding: 15px 15px 0;
  border-radius: 4px; }

.sale-order-payment-change-pp-company-smalltitle {
  color: #000;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2; }

/*                         ╓                          ╖                         */
/* ──────────══════════════╣   ЛК / Профили заказов   ╠══════════════────────── */
/*                         ╙                          ╜                         */
.main-profile-form-label.text-md-right, input[class*="col-"] {
  padding: 0px 20px 0 0;
  line-height: 1.3;
  text-align: left;
  width: 200px; }

.bx_profile .main-profile-block-date-info, .bx_profile .form-group {
  padding-bottom: 5px; }

/*                         ╓                                 ╖                         */
/* ──────────══════════════╣   ЛК / Редактирование профиля   ╠══════════════────────── */
/*                         ╙                                 ╜                         */
.sale-personal-profile-detail-form-label, .sale-profile-detail-form input[class*="col-"] {
  width: 200px;
  text-align: left; }

.sale-profile-detail-form .form-group {
  padding: 5px 0; }

.sale-profile-detail-form .dropdown-block.bx-ui-sls-input-block {
  width: inherit; }

.sale-personal-profile-btn-block {
  margin-top: 30px; }

.sale-profile-detail-form {
  background: #fff;
  padding: 10px 25px 0; }

/*                         ╓                                     ╖                         */
/* ──────────══════════════╣   ЛК / Многопользовательский счёт   ╠══════════════────────── */
/*                         ╙                                     ╜                         */
.bx-sap .control-label.input-lg {
  text-align: left;
  padding: 9px 0; }

.bx-sap .container-fluid {
  background: #fff;
  padding: 15px 25px 25px; }

.bx-sap .sale-acountpay-title {
  font-size: 14px;
  margin-bottom: 10px; }

/*                         ╓             ╖                         */
/* ──────────══════════════╣   Мобилки   ╠══════════════────────── */
/*                         ╙             ╜                         */
@media (max-width: 767px) {
  #basket-root .basket-items-list {
    padding: 0 0px; }
  #basket-root .basket-items-list-item-descriptions {
    padding: 10px 20px; }
  #basket-root .basket-item-block-amount {
    width: fit-content;
    margin: 0 auto; }
  #basket-root .basket-checkout-block-total-price {
    padding-right: 0; }
  .sale-acountpay-input {
    float: left;
    margin-right: 5px; } }

.mfp-wrap.popup-modal-block.video-modal .mfp-content {
  padding: 0;
  line-height: 0; }
  .mfp-wrap.popup-modal-block.video-modal .mfp-content video, .mfp-wrap.popup-modal-block.video-modal .mfp-content iframe {
    max-width: 100%; }

.mfp-wrap.popup-modal-block.video-modal .mfp-close {
  top: -30px;
  right: -30px;
  color: var(--color2, #528dca); }

.breadcrumbs {
  margin-bottom: 13px; }
  .breadcrumbs li {
    display: inline-block;
    list-style: none;
    color: #717a81;
    font-size: 13px; }
    .breadcrumbs li:after {
      content: ' /';
      margin: 0 5px;
      color: #ccc;
      font-weight: 100; }
    .breadcrumbs li a {
      color: #717a81; }
      .breadcrumbs li a:hover {
        color: #000; }
  .breadcrumbs.no-end-slash li:last-child:after {
    display: none; }

.index-top {
  background-color: #fff; }
  .index-top + .main-section:not(.bg-white) {
    border-top: 30px solid #FFF; }

@media (min-width: 1000px) {
  .middle:has(.profile-page) .sidebar {
    margin-top: 55px; } }

@media (min-width: 1000px) {
  .middle > .center .breadcrumbs,
  .middle > .center > h1 {
    flex: 0 0 100%;
    order: -1; }
  .middle > .center > h1 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 10px; }
  .middle > .center .breadcrumbs {
    margin-bottom: 10px; }
    .middle > .center .breadcrumbs li {
      color: #8f9aa3; }
      .middle > .center .breadcrumbs li a {
        color: #8f9aa3; }
  .middle > .center > .breadcrumbs {
    margin-bottom: 30px; }
  .middle > .center .main-column-right {
    width: 270px;
    flex: 0 0 270px; }
  .middle > .center .main-column-left {
    width: 270px;
    flex: 0 0 270px; }
  .middle > .center .main-column-left {
    order: 0; }
  .middle > .center .main-column-center {
    max-width: 100%;
    order: 1; }
  .middle > .center .main-column-right {
    order: 2; }
  .middle > .center:has(.main-column-right), .middle > .center:has(.main-column-left) {
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px; }
    .middle > .center:has(.main-column-right) .main-column-center, .middle > .center:has(.main-column-left) .main-column-center {
      width: 870px; } }

.center > h1 {
  margin-top: 30px;
  margin-bottom: 10px; }
  .center > h1 + .breadcrumbs {
    margin-bottom: 30px;
    margin-top: 0; }

.catalog-slider {
  position: relative;
  margin: -15px; }
  .catalog-slider .items-holder {
    position: relative;
    overflow: hidden; }
  .catalog-slider .catalog {
    margin: 0;
    position: relative; }
    .catalog-slider .catalog .item-holder {
      padding: 15px;
      box-sizing: border-box; }
    .catalog-slider .catalog .item {
      margin: 0;
      width: 100%; }
  .catalog-slider .scroll {
    position: absolute;
    top: 50%;
    width: 15px;
    height: 24px;
    margin-top: -12px;
    color: #717a81;
    opacity: .7;
    cursor: pointer;
    z-index: 1; }
    .catalog-slider .scroll:before {
      content: '';
      font-family: 'Font Awesome 5 Free';
      font-size: 40px;
      font-weight: bold; }
    .catalog-slider .scroll:hover {
      opacity: 1; }
    .catalog-slider .scroll.prev {
      left: -35px; }
      .catalog-slider .scroll.prev:before {
        content: '\f104'; }
    .catalog-slider .scroll.next {
      right: -35px; }
      .catalog-slider .scroll.next:before {
        content: '\f105'; }
    .catalog-slider .scroll.disabled {
      color: #d3d4d4 !important;
      cursor: default;
      visibility: hidden; }
    .content .catalog-slider .scroll.prev {
      left: -22px; }
    .content .catalog-slider .scroll.next {
      right: -22px; }
  .catalog-slider .swiper-button {
    position: absolute;
    top: 50%;
    margin-top: -12px;
    color: #717a81;
    opacity: .7;
    cursor: pointer;
    z-index: 1; }
    .catalog-slider .swiper-button:before {
      content: '';
      font-family: 'Font Awesome 5 Free';
      font-size: 40px;
      font-weight: bold; }
    .catalog-slider .swiper-button:hover {
      opacity: 1; }
    .catalog-slider .swiper-button.button-prev {
      left: -35px; }
      .catalog-slider .swiper-button.button-prev:before {
        content: '\f104'; }
    .catalog-slider .swiper-button.button-next {
      right: -35px; }
      .catalog-slider .swiper-button.button-next:before {
        content: '\f105'; }
    .catalog-slider .swiper-button.swiper-button-disabled {
      cursor: default;
      opacity: 0.3; }
    .content .catalog-slider .swiper-button.button-prev {
      left: -22px; }
    .content .catalog-slider .swiper-button.button-next {
      right: -22px; }
  @media (min-width: 1000px) and (max-width: 1252px) {
    .catalog-slider .swiper-button.button-prev {
      left: -5px; }
    .catalog-slider .swiper-button.button-next {
      right: -5px; }
    .content .catalog-slider .swiper-button.button-prev {
      left: -5px; }
    .content .catalog-slider .swiper-button.button-next {
      right: -5px; } }
  @media (max-width: 999px) {
    .catalog-slider .swiper-button:before {
      font-size: 30px; }
    .catalog-slider .swiper-button.button-prev {
      left: -12px; }
    .catalog-slider .swiper-button.button-next {
      right: -12px; }
    .content .catalog-slider .swiper-button.button-prev {
      left: -12px; }
    .content .catalog-slider .swiper-button.button-next {
      right: -12px; } }
  @media (max-width: 999px) {
    .catalog-slider .swiper-button.button-prev {
      left: 20px; }
    .catalog-slider .swiper-button.button-next {
      right: 20px; }
    .content .catalog-slider .swiper-button.button-prev {
      left: 20px; }
    .content .catalog-slider .swiper-button.button-next {
      right: 20px; } }

/*.catalog-slider .catalog .item:hover{margin: -10px 20px -10px -10px;}*/
@media (min-width: 1000px) and (max-width: 1252px) {
  .catalog-slider .scroll.prev {
    left: 5px; }
  .catalog-slider .scroll.next {
    right: 5px; }
  .compare-float-block .toggle-holder {
    right: 30px; }
  .compare-float-block .center {
    max-width: 100%; }
  .catalog-slider .items-holder {
    padding: 0;
    margin: 0; }
  .social-nav.bottom-social-nav {
    right: 0; } }

@media screen and (max-width: 1000px) {
  .table-wrapper {
    overflow: auto; } }

.index .content,
.index .sidebar {
  margin-bottom: 70px; }

.article:first-child {
  margin-top: 0; }

.simple_page .content {
  line-height: 22px; }

.simple_page .content h1 {
  margin-bottom: 20px; }

.article .lead,
.simple_page .content .lead {
  font-size: 16px;
  color: #717a81; }

.article p,
.simple_page .content p {
  margin: 20px 0; }
  .article p:first-child,
  .simple_page .content p:first-child {
    margin-top: 0; }

.article li,
.simple_page .content li {
  margin: 15px 0; }

.article ul,
.article ol,
.simple_page .content ul,
.simple_page .content ol {
  margin: 20px 0 20px 18px; }

.article ul li:before,
.simple_page .content ul li:before {
  content: '\2014';
  position: absolute;
  margin-left: -18px; }

.article ol li,
.simple_page .content ol li {
  list-style-type: decimal; }

.article ul li li,
.simple_page .content ul li li {
  color: #717a81; }

.article table,
.simple_page .content table {
  border-collapse: collapse; }
  .article table th, .simple_page .content table th {
    padding: 15px 20px;
    color: #717a81;
    background-color: #FFF;
    font-size: 16px;
    border-bottom: 2px solid #b6bbbf;
    font-weight: normal; }
  .article table td,
  .simple_page .content table td {
    padding: 10px 20px 10px 20px;
    border-top: 1px solid #b6bbbf; }
  .article table.noborders th, .article table.noborders td,
  .simple_page .content table.noborders th,
  .simple_page .content table.noborders td {
    border: none; }

.article .date,
.simple_page .content .date {
  margin-bottom: 20px;
  color: #8d99a4; }

.article img,
.simple_page .content img {
  max-width: 100%;
  height: auto;
  width: auto;
  max-height: 800px;
  margin-bottom: 10px; }
  .article img[align=left],
  .simple_page .content img[align=left] {
    margin-right: 15px; }
  .article img[align=right],
  .simple_page .content img[align=right] {
    margin-left: 15px; }

.article {
  line-height: 22px;
  margin: 20px 0 30px 0; }

.article h3 {
  color: #000; }

.article h4, .article h5, .article h3 {
  margin-top: 20px; }

.article h4:first-child, .article h5:first-child, .article h3:first-child {
  margin-top: 0; }

.article img,
.article iframe,
.article video, .description img,
.description iframe,
.description video, .simple_page .content img,
.simple_page .content iframe,
.simple_page .content video {
  max-width: 100%; }

.pagination + .article {
  margin-bottom: 0; }
  .pagination + .article > p:last-child {
    margin-bottom: 0; }

.sidebar-block {
  border-bottom: 3px solid var(--color2, #528dca);
  padding: 15px 30px;
  background-color: #FFF;
  margin-bottom: 40px; }

.sidebar-nav {
  background: #FFF url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAABkAAD/7gAOQWRvYmUAZMAAAAAB/9sAhAABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgIDAwMDAwMDAwMDAQEBAQEBAQIBAQICAgECAgMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwP/wAARCAAoAQ4DAREAAhEBAxEB/8QAjwAAAgIDAAMBAAAAAAAAAAAABQYEBwADCAECCQoBAAIDAQEBAAAAAAAAAAAAAAMEAQIFAAYHEAABAgQEAwYFAwMFAAAAAAABAgMAEQQFITFBBlESImGRoeEyE/BxwdEjgbFiUrIz8UKSohQRAAIDAAICAgIDAQEAAAAAAAABEQIDIQQSEzEiUWFBFAVxgf/aAAwDAQACEQMRAD8A/TE5uzmV/k8fOPp/pg+UwpCFBujqH5NeMUeJKSLHtO6JpT+Thr8oDbEJWqYWr9zAsK/Jpxgfq5DevgovdF4TUOLTzAzJ1gyrCOWfIAstuRWvpJTOavrAdbwOZ4qxeVl2e040k+2MhoOEZ193I7XqqApW7PbQk/jAw4RT3sl9VIRrjtlCCqSP+vlEPUC8EmLqrAAr0eHkYW11C0xQXoLACodAzGYjPvq/gfzxQ/W7bjZA6B3QH2MarghhG2Gij0DswjvNsv6UCqzaaDOSB3RXyZDxQo1+0R1Sb8OMR5A7YJidWbTWnmk2e6O84AW63AvO7cdbJ6CJdn7RdaALdYk0VodQsDlPdBq2TKelos2y2t2ScDpFmkMZ1j5LDpKFxKU4HKKeI2vgJpp3U8fGLJFjS+l1AOJwxi1akNwLddXOMzmojWD1zkE7i29fygmbnjBViDesEM7hmcV+Ii6wYP3oktXsKHr8cI62P5JrsmzH7tNJ6vGFdKQN52kWay5KVPqzhWzGUhdfq1KJxz7YG2W8eCArmcPaYoyUjBQqc0nOBuQlUjYLQo4y8Io2FSNibMNUxUvBIFjHITy+HyjiTn1zcCgr/Ie+PsrxPkXsClv3AoqT1nPjAnicteSyrTfV8oPOcuPxOAXxQxnoF66/r9lXWcuPz+8BeKTG1crGvuynX5FRMzEXzhF6Wlll7HeS461Mg4pjJ7FWaeEHXe20tGnbyyHDhGPonJq0SgM3BpsoMgIGpOskV3caVJUrAa8PtFp/AtaqkWl0Seb0+EK6svSpLpmkNkYDCM+/yPZpDLSVjaJDDCOrWRpfAxMVzSgBMeEFVCSUVsuDjOO8CpGXRtO/7QZ9giLUgjggOWFp2fQO77QC6gsqJgWr2q3In2x3QDyckPJAZO3G23PRLHHCGsrNil80hutlraaAmAJS4Q7VNgkkhjDbDYHp+0XVAiskYDT/AMYt63JLugVcFsJQozTl2QWmbAX0SKd3NcW2A5JQEp/6Q/lgI32KKvO7EMLUPcGBOsN0wkVvv+xca3klxcvdGcvV5wwuuvwL23HK27hDoEl59sU0wSRfLdth43UFPq0jD7VVU3eo3YEVFyGOPjGNe/Js0z4BS7ohJkVDw+8Wonb/AIUv9STSXJtawOYd8MelwC80OdE60pIJliIXvm0GrZMmO1TDYzT8ZygPgGlQRU3FgH1DvEW8GyPMJCuZ9pZmMh/cBE+pkeaPn5U3oe4euWPGPtNkfHrWgN2e6c609XjA2inmW3aq+TaerSA2omM53gn1tyHtkc2EuMCdBqtxHqa4e9Pm14wvdcDFLSyztl3hLTjU1AYp1jL3pJp4Xg642vuBCmWxzjIaxlaZGpnoh6duSXkZjL9IW9cBneQBUkOExR1hAmCHW5Tw+POEtS9AVUOe3OXzhFrnkco45BKrkpCpT1g+dZC+YYorsTLq4awwqI7yGemuPNLH4EojwIkO09WDKZitqlpDtK+hUpyhPWoWrJjwbUgnDLs+JQk19grfAoV7zbJJwEs8oe69ZM7e0AB3cLVOD1gS7fONnPGUZt90hZrt7ttEj3R3wwuuD/tfsEp36iZ/KP8Al8Ti665R9pfkiVu90LbP5RiP6oYz6/Irp2uCld3bsC0OSc0OvYYfphAhp2TlbdO7Vh5yThGJ184brkgFt2K1s3U64+ke4fVxg6zUAXqy8Nu3xa0I6tBqeyF981Afr6fYsBu6qUkdRjyn+hWJg9f/AJrTgjv16iMz3x5uz+x6WqXiL9VXOAmRJjW6eflBl9zXxk2UFycSsTJlONn+svExn2ft8j5S3wttCapYYxnb4x8Gjht5IEXLdXJMe5l2+cKLJSO+fAIp90KWsfk14wauPAO2g1I3Ar/xOq58kp1/mmLelFPPg+fdVele76tTrH0+2q/k+TORr29eZrT1TxGsD9qAtsum2Xge0nq04/Gsc7oLSzRIrLx0nq8YHa6G6XYovXXmcwM8frCul0OZ2HXbV0WlxuStRr2whpdGhmzpXa19cSlscxyGvyhDSyNDO3BcdvvC3EpBUThClo/8GlcZWHS6AeMAuWVpZtcamIz9Q1Bdr2jyqkM/jDshN/P6GqiXUoWlZzzMMZsltmylccSRnDEkSNNHUrEp6RHBaRgZreUDHH4z4RS0Eyw3R3CZHV5wprz8BaWD6qslrM5Qi19gtrcFc7hr1ICyCdfr+safVRkdu7RSF8vzrfP1nXX5x6HGqgwNtWmVDdtzVHOqS1a6mG1VCdt7AJvcdRzetWfGCKqBvaxLXf31IxWddYPRJC99bCHuG6uuNrmpWR4w1WEBdrNnOe5Khxbq8TmYKmkRLB9hC1VCJT9Q/eJ8zoZ0vtSlcW23gchC22iaHMKuUWkzQu8owOAwjy/fi0nr/wDOlRJ7KoXJZGPNWr9z1NLfQhOWlbh9Jja6TSgw/wDQfzBjdpW2Z8pH6Rvqy8TzrVvI0VnustkCYwMZ3Yhmt1ZSUldXOofK1Yqz7YTrXk0vLgj0Lr3OJkynDFVwDsx5Q+5/4HsT6U/3o+kVjmCP4OBa6uSlZPNrx849R/al/J81tkGbHdglxHXhhkYmvYbFLU5LmtN3m0kc2g184J7zkoJlbdOj1acYHbcYouRdTcSp0dWZ49sK33kfyRa20yp5TctSmENd2amNZOntrUDq0tkA6QhfsGhSnBd1otj0kHlOn7RRayMKkFgUdAtCQSDE2tKLKsE1ynwy+OEKahqIEVNGXJ4QjYbpWUAnrIpZny5z0i1bFnU9EWJYOCPCD+f5KqpNRa1oGKSPKJ8yfFnldI4njHeR0Ml0iFpUJzzhfQJRcjIFfil2fSc4UcSEaccCBuFhToXKeUaPVtEGX2qtplI3yzvulckk56Ru434PP75Nsq+4bYqVrV+NXdDa0UCTxYNb2pUg/wCNXcYstCrwZIXtmpSkzQcuBgtdUUfXsJV9sD4bXNBOekM10kG8GURfrE6HV9BzOkGTkj1mrb9kWKhE0H1DTtjrNpF6ZyzqfZ9qAaamnQTwhDazg0evkpLeZtjftjpGmkYXZmx6Lqrxg9VWxE8vD7RkWz+xs11ar+jwm2I/pHdDeH0Eux9/kx22t8pkkRorVwZrw+0irc7UFpUAnjAb3kayoqlfVm3ytZ6NfvA0+Rn+DVT7fKFDoljwgitwV/YwJtRFM4jlzCRl/JJ+kQ7cot/B/9k=) 0 0 no-repeat;
  padding: 50px 30px 15px; }

.sidebar-nav li {
  margin: 15px 0 15px 25px; }

.sidebar-nav li a:before {
  content: '';
  position: absolute;
  margin-left: -25px;
  width: 6px;
  height: 6px;
  border: 1px solid #adbac6;
  border-radius: 2px;
  margin-top: 6px; }

.sidebar-nav li a:hover:before {
  color: var(--color1, #db3d3d); }

.sidebar-nav li a.current:before {
  color: var(--color2, #528dca);
  background-color: #adbac6; }

.slide-block .toggle {
  display: none;
  position: relative;
  cursor: pointer; }

.slide-block .toggle.show {
  display: inline-block; }

.slide-block .block-content {
  display: none; }

.slide-block .toggle:after {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAGCAYAAAD68A/GAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAGZJREFUeNpiLKxqZACCDCBeC8SvGVCBKBAHA/EMFiCRA8STobQjkmKQov1ArA3ELExAYiUQX4UK7IcqQFYEklvJAjXBEUniMNREdagisC0sUEF0xQzIikAcFiSHwxQHQ/kongMIMACSThlDREYAMQAAAABJRU5ErkJggg==) 0 0 no-repeat;
  width: 10px;
  height: 6px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  content: '';
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.slide-block.open .toggle:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg); }

.slide-block.open .toggle .first, .slide-block .toggle .second {
  display: none; }

.slide-block.open .toggle .second {
  display: inline; }

.agree-link {
  text-decoration: none;
  color: #969EA4;
  font-size: 11px;
  margin-top: 5px;
  font-weight: normal;
  left: 0; }

.filter-close,
.open-filter-btn {
  display: none; }

div.bx-filter {
  font-family: 'Ubuntu', sans-serif; }
  div.bx-filter.bx-blue .bx-filter-section,
  div.bx-filter .bx-filter-section {
    background-color: #e8ebf1;
    padding: 25px 30px; }
  div.bx-filter .bx-filter-section > .row {
    padding: 0; }
  div.bx-filter .row {
    margin: 0; }
  div.bx-filter .bx-filter-parameters-box {
    position: relative;
    margin-bottom: 0;
    border-top: 1px solid #d6dce5;
    padding-top: 10px; }
    div.bx-filter .bx-filter-parameters-box:first-child {
      border-top: none;
      padding-top: 0; }
    div.bx-filter .bx-filter-parameters-box.bx-active .bx-filter-block i.bx-ft-sub {
      display: inline-block;
      padding: 0;
      vertical-align: middle; }
    div.bx-filter .bx-filter-parameters-box.bx-active .bx-filter-block .bx-filter-input-container {
      display: inline-block;
      vertical-align: middle; }
  div.bx-filter .bx-filter-parameters-box-title {
    cursor: pointer;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    position: relative;
    margin-bottom: 10px;
    padding: 0; }
    div.bx-filter .bx-filter-parameters-box-title span {
      color: #000;
      border: none;
      padding-right: 15px;
      display: inline-block; }
    div.bx-filter .bx-filter-parameters-box-title i {
      content: '\f107';
      font-family: 'Font Awesome 5 Free';
      color: #959faa;
      position: absolute;
      right: 5px;
      top: 7px;
      font-size: 12px;
      line-height: 11px;
      font-weight: bold; }
  div.bx-filter.bx-blue .bx-ui-slider-track,
  div.bx-filter .bx-ui-slider-track {
    height: 3px;
    background-color: #CCC; }
  div.bx-filter .bx-ui-slider-track-container {
    margin: 28px 7px;
    width: auto;
    float: none;
    padding: 0; }
  div.bx-filter .col-xs-6 {
    float: none;
    display: inline-block;
    width: 103px;
    vertical-align: top; }
    div.bx-filter .col-xs-6.bx-filter-parameters-box-container-block {
      float: none;
      color: #a4b0ba;
      display: inline-block;
      line-height: 33px;
      text-align: right;
      width: 103px;
      font-weight: 300; }
      div.bx-filter .col-xs-6.bx-filter-parameters-box-container-block input {
        margin-bottom: 0;
        margin-left: 5px;
        text-align: left;
        vertical-align: middle;
        width: 60px; }
  div.bx-filter .bx-ui-slider-range {
    z-index: auto; }
  div.bx-filter .bx-ui-slider-pricebar-vn,
  div.bx-filter.bx-blue .bx-ui-slider-pricebar-vn {
    background: none;
    z-index: auto; }
  div.bx-filter .bx-ui-slider-pricebar-vn,
  div.bx-filter.bx-blue .bx-ui-slider-pricebar-vd {
    background: none; }
  div.bx-filter .bx-ui-slider-pricebar-v,
  div.bx-filter.bx-blue .bx-ui-slider-pricebar-v {
    background-color: #c6d1da;
    z-index: auto; }
  div.bx-filter .bx-filter-input-container input {
    padding: 0 7px;
    height: 33px;
    border: 1px solid #c1c1c1;
    font-size: 14px; }
  div.bx-filter .bx-ui-slider-handle {
    background: #fff;
    border: 3px solid #e4e7ea;
    border-radius: 50%;
    height: 12px;
    margin-left: -8px;
    position: absolute;
    top: -8px;
    width: 12px;
    z-index: auto; }
    div.bx-filter .bx-ui-slider-handle.left {
      margin-left: -8px;
      background: var(--color1, #db3d3d); }
    div.bx-filter .bx-ui-slider-handle.right {
      margin-right: -8px;
      background: var(--color1, #db3d3d); }
  div.bx-filter .bx-filter-parameters-box-container .checkbox {
    margin-bottom: 5px; }
    div.bx-filter .bx-filter-parameters-box-container .checkbox .bx-filter-input-checkbox {
      position: relative;
      padding-left: 20px;
      display: block; }
      div.bx-filter .bx-filter-parameters-box-container .checkbox .bx-filter-input-checkbox input {
        position: absolute;
        left: 0;
        top: 4px; }
  div.bx-filter .bx-filter-input-checkbox .bx-filter-param-text {
    color: #717a81;
    cursor: pointer;
    display: inline-block;
    line-height: 16px;
    position: relative;
    font-weight: 300; }
  div.bx-filter .bx-filter-popup-result {
    font-weight: bold;
    padding: 10px 20px; }
  div.bx-filter .bx-ui-slider-part {
    display: none; }
  div.bx-filter .bx-filter-button-box {
    margin-top: 20px; }
    div.bx-filter .bx-filter-button-box .bx-filter-parameters-box-container {
      padding-bottom: 0; }
    div.bx-filter .bx-filter-button-box .btn {
      vertical-align: middle; }

@media screen and (max-width: 999px) {
  .filter-close {
    position: absolute;
    right: 15px;
    top: 15px;
    display: block;
    font-size: 20px;
    cursor: pointer;
    z-index: 1; }
    .filter-close:before {
      content: '\f00d';
      font-family: 'Font Awesome 5 Free', sans-serif;
      font-weight: bold; }
  .open-filter-btn {
    display: block;
    margin: 10px 0;
    text-align: center; } }

.bx-filter-container .bx-filter-header {
  display: none; }

.bx-filter-container .bx-filter .reset {
  display: inline-block;
  border: none;
  border-bottom: 1px dotted;
  background: none;
  padding: 0;
  margin-left: 10px;
  cursor: pointer; }

@media screen and (max-width: 999px) {
  body:before {
    content: "";
    background-color: rgba(70, 80, 90, 0.8);
    height: 100%;
    left: 0;
    opacity: 0;
    right: 0;
    top: 0;
    transition: opacity 0.3s;
    z-index: 1; }
  body.show-smartfilter {
    overflow: hidden; }
    body.show-smartfilter:before {
      opacity: 1;
      position: fixed; }
  .bx-filter-container {
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 3;
    margin: 0;
    width: 100%;
    display: flex; }
    .show-smartfilter .bx-filter-container {
      transform: translateX(0);
      opacity: 1; }
      .show-smartfilter .bx-filter-container .bx-filter {
        transform: translateX(0); }
    .bx-filter-container .bx-filter-close {
      position: relative;
      cursor: pointer;
      flex: 1 0 0%; }
    .bx-filter-container .bx-filter {
      transform: translateX(100%);
      transition: all 0.3s;
      background-color: #FFF;
      width: 310px;
      box-sizing: border-box;
      padding: 0px;
      height: 100%;
      margin: 0;
      flex: 0 0 auto; }
      .bx-filter-container .bx-filter .bx-filter-section {
        padding: 0;
        background-color: #FFF;
        height: 100%;
        overflow: none; }
      .bx-filter-container .bx-filter .bx-filter-popup-result {
        display: none !important; }
    .bx-filter-container form {
      display: flex;
      flex-direction: column;
      height: 100%; }
    .bx-filter-container .bx-filter-header {
      display: block;
      position: relative;
      padding: 10px 22px 10px 15px;
      flex: 0 0 0%;
      text-transform: uppercase;
      border-bottom: 1px solid #eee; }
      .bx-filter-container .bx-filter-header .filter-close {
        position: absolute;
        right: 10px;
        top: 50%;
        margin-top: -10px;
        display: block;
        font-size: 20px;
        cursor: pointer;
        z-index: 1; }
        .bx-filter-container .bx-filter-header .filter-close:before {
          content: '\f00d';
          font-family: 'Font Awesome 5 Free', sans-serif;
          font-weight: bold; }
    .bx-filter-container .bx-filter-properties {
      padding: 5px 10px 5px 15px;
      flex: 1 0 0%;
      overflow-y: auto; }
    .bx-filter-container .bx-filter-footer {
      padding: 10px 10px 10px 15px;
      border-top: 1px solid #eee;
      flex: 0 0 0%; }
    .bx-filter-container .bx-filter-footer .bx-filter-button-box {
      margin: 0; } }

.catalog-section {
  overflow: hidden;
  margin: 30px 0 0 -30px; }
  .catalog-section .item {
    background-color: #FFF;
    width: 270px;
    height: 310px;
    border-bottom: 25px solid #FFF;
    overflow: hidden;
    margin: 0 0 50px 30px;
    float: left; }
    .catalog-section .item:hover .picture img {
      opacity: 0.8; }
  .catalog-section .picture {
    height: 165px;
    overflow: hidden;
    text-align: center;
    line-height: 163px; }
    .catalog-section .picture img {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      width: auto;
      vertical-align: middle;
      -webkit-transition: opacity .3s;
      -o-transition: opacity .3s;
      transition: opacity .3s; }
  .catalog-section .title {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    margin: 15px 20px 10px; }
    .catalog-section .title a {
      text-decoration: none;
      color: #000; }
      .catalog-section .title a:hover {
        color: #777; }
  .catalog-section .categories {
    margin: 0 20px; }
    .catalog-section .categories li {
      font-size: 13px;
      line-height: 20px;
      display: inline;
      margin-right: 5px; }
      .catalog-section .categories li a {
        color: #4d4d4d; }
        .catalog-section .categories li a:hover {
          color: #888; }
  .catalog-section.inner .item {
    height: auto;
    border-bottom-width: 7px; }
    .catalog-section.inner .item .title {
      height: 40px;
      overflow: hidden; }

@media screen and (max-width: 999px) {
  .catalog-section .item {
    width: 240px; }
    .catalog-section .item .picture {
      line-height: 1; } }

@media screen and (max-width: 509px) {
  .catalog-section .item {
    width: 345px;
    height: auto; }
    .catalog-section .item .picture {
      line-height: 1;
      height: auto; }
      .catalog-section .item .picture img {
        max-height: 150px; }
  .catalog-section.inner .item .title {
    height: auto;
    max-height: 40px; } }

.catalog-nav {
  border: solid #FFF;
  border: 0;
  box-shadow: 4px 4px 1px rgba(0, 0, 0, 0.03); }
  .catalog-nav > li {
    border-top: 1px solid #f3f4f6;
    position: relative;
    background-color: #FFF; }
    .catalog-nav > li:first-child {
      border: none; }
  .catalog-nav .title {
    display: block;
    background-color: #FFF;
    padding: 13px 0 13px 30px;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    flex: 1; }
    .catalog-nav .title.simple:after {
      display: none; }
  .catalog-nav .toggle {
    position: relative;
    width: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s; }
    .catalog-nav .toggle:after {
      display: block;
      font-family: 'Font Awesome 5 Free';
      color: #dae4ed;
      text-align: center;
      width: 11px;
      height: 11px;
      font-size: 12px;
      border-radius: 2px;
      line-height: 12px;
      border: 1px solid;
      padding: 0 0 0 0.5px;
      font-weight: bold;
      content: '\f107';
      transition: all 0.3s; }
    .catalog-nav .toggle:hover {
      background-color: #f9f9f9; }
      .catalog-nav .toggle:hover:after {
        color: #BBB; }
  .catalog-nav .open .toggle:after {
    content: '\f106';
    line-height: 11px; }
  .catalog-nav .active .title {
    font-weight: bold; }
  .catalog-nav > li {
    display: flex;
    flex-wrap: wrap; }
    .catalog-nav > li > ul {
      display: none;
      border-left: 3px solid var(--color2, #528dca);
      padding: 15px 25px;
      background-color: #F3F4F6;
      flex: 0 0 100%;
      width: 100%;
      box-sizing: border-box; }
      .catalog-nav > li > ul li {
        position: relative;
        margin-top: 10px;
        font-size: 12px;
        line-height: 18px;
        display: flex; }
        .catalog-nav > li > ul li:hover {
          z-index: 1; }
          .catalog-nav > li > ul li:hover > .subnav {
            opacity: 1;
            visibility: visible;
            margin-left: 15px; }
        .catalog-nav > li > ul li:first-child {
          margin-top: 0; }
        .catalog-nav > li > ul li a {
          color: #4d4d4d;
          text-decoration: none;
          max-width: 90%;
          display: block;
          flex: 1; }
        .catalog-nav > li > ul li.active a,
        .catalog-nav > li > ul li a.current {
          color: #999; }
        .catalog-nav > li > ul li .qty {
          float: right;
          font-size: 11px;
          color: #a0a0a0;
          margin-left: 5px; }
    .catalog-nav > li .subnav {
      position: absolute;
      left: 100%;
      background-color: #fff;
      width: 236px;
      box-sizing: border-box;
      padding: 15px 20px;
      border-radius: 4px;
      box-shadow: 0 0 27px rgba(0, 0, 0, 0.12);
      top: -14px;
      margin-left: 0px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s; }
      .catalog-nav > li .subnav:before {
        content: '';
        position: absolute;
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAPCAQAAAB39paFAAAAX0lEQVR42m3IoQ2AMBQA0d+EuZDsUUFtVWfBswBDYXDfNCSIHgjSUPKbM5cnOKaysXN/CaFui2sPtYdLD0cOi1ISl0EGEvmPb5FsUQioRcGjFoXIadER0YpNZUYtCv4BkfvzbDmTKGIAAAAASUVORK5CYII=) 100% 0 no-repeat;
        width: 15px;
        height: 15px;
        left: -15px;
        top: 20px; }
      .catalog-nav > li .subnav li {
        margin: 8px 0;
        font-size: 13px; }
        .catalog-nav > li .subnav li a {
          text-decoration: underline; }
        .catalog-nav > li .subnav li:hover .subnav {
          margin-left: 5px; }
      .catalog-nav > li .subnav .subnav {
        margin-left: -10px; }
      .catalog-nav > li .subnav .has-subnav:before {
        content: '';
        width: 3px;
        height: 6px;
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAGCAYAAAAG5SQMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEJJREFUeNpinDVr1g1GRsaA////32BiYGDIBjIOAGlJFiCxFyhTCKRPgGTggAUo6gyk+4HYkAmofiqQ4QCknwMEGAB4gBXUXFxVcQAAAABJRU5ErkJggg==);
        margin-left: auto;
        position: absolute;
        right: -3px;
        top: 7px; }
    .catalog-nav > li.open ul {
      display: block; }

@media screen and (max-width: 999px) {
  .catalog-nav {
    display: none; } }

.order-block .order {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden; }
  .order-block .order .order-options {
    float: left;
    width: 700px;
    box-sizing: border-box;
    padding: 30px 120px 50px 40px;
    background-color: #FFF; }
  .order-block .order .fields {
    margin-left: -30px; }
    .order-block .order .fields:after {
      content: '';
      display: table;
      clear: both; }
    .order-block .order .fields .field {
      padding-left: 30px;
      box-sizing: border-box; }
      .order-block .order .fields .field.short {
        float: left;
        width: 50%; }
  .order-block .order .boxes {
    margin-left: -35px; }
    .order-block .order .boxes li {
      display: inline-block;
      margin-left: 35px;
      margin-bottom: 20px;
      vertical-align: top; }
    .order-block .order .boxes .icon,
    .order-block .order .boxes .selected {
      margin-top: 10px; }
      .order-block .order .boxes .icon img,
      .order-block .order .boxes .selected img {
        vertical-align: middle;
        margin-right: 10px;
        max-height: 25px; }
      .order-block .order .boxes .icon a,
      .order-block .order .boxes .selected a {
        color: #adadad;
        font-size: 12px; }
  .order-block .order .promocodes {
    margin-top: 20px; }
    .order-block .order .promocodes .item {
      display: flex;
      align-items: center; }
    .order-block .order .promocodes .item {
      margin-top: 10px; }
    .order-block .order .promocodes .remove {
      text-decoration: none;
      color: #db3d3d;
      font-size: 1.125rem; }
    .order-block .order .promocodes .promocode {
      background-color: #FFF;
      border-radius: 4px;
      font-weight: 500;
      font-size: 16px;
      line-height: 21px;
      padding: 17px 20px;
      display: inline-block;
      margin-right: 10px; }
      .order-block .order .promocodes .promocode:after {
        content: '\f00c';
        font-family: 'Font Awesome 5 Free';
        color: #4ab900;
        font-size: 20px;
        margin-left: 5px;
        font-weight: bold; }
  .order-block .order .order-info {
    overflow: hidden;
    padding: 30px 40px; }
    .order-block .order .order-info .order-table {
      width: 100%;
      border-collapse: collapse;
      border-bottom: 2px solid #bac1c8; }
      .order-block .order .order-info .order-table td {
        padding: 0 0 16px; }
      .order-block .order .order-info .order-table .qty {
        padding-left: 15px;
        width: 50px;
        color: #98a2aa; }
      .order-block .order .order-info .order-table .cost {
        width: 70px; }
      .order-block .order .order-info .order-table .extra td {
        padding: 16px 0;
        border-top: 1px solid #d1d6db; }
  .order-block .order .total-block {
    margin: 40px 0 20px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase; }
    .order-block .order .total-block .old-cost {
      font-size: 15px;
      line-height: 20px;
      text-decoration: line-through;
      font-weight: normal;
      color: #888; }
      .order-block .order .total-block .old-cost .rub {
        font-size: 16px; }
    .order-block .order .total-block .total-cost {
      font-size: 40px;
      line-height: 44px;
      text-transform: none; }
      .order-block .order .total-block .total-cost .rub {
        font-size: 20px; }
    .order-block .order .total-block .discount {
      color: #db3d3d; }

.order-block .controlls {
  margin-top: 50px; }
  .order-block .controlls .btn {
    width: 175px; }

@media screen and (max-width: 999px) {
  .order-block .order {
    box-shadow: none; }
    .order-block .order .order-options {
      width: auto;
      float: none;
      padding: 15px; }
    .order-block .order .fields .field.short {
      width: 100%;
      float: none; }
    .order-block .order .order-info {
      padding: 15px;
      margin-top: 15px; }
  .order-block .controlls {
    margin-top: 20px; }
    .order-block .controlls .btn {
      width: 100%; } }

a.remove-link {
  text-decoration: none;
  font-size: 20px;
  color: #db3d3d; }

.qty-block {
  width: 88px;
  border: 1px solid #dedede;
  text-align: center;
  user-select: none; }

.qty-block span {
  color: #72808b;
  font-size: 20px;
  vertical-align: middle;
  cursor: pointer; }

.qty-block input.form-element {
  width: 42px;
  border: none;
  text-align: center;
  vertical-align: middle;
  padding: 0;
  margin: 0; }

.content .form .form-element:disabled,
.content .form .form-element.ui-state-disabled {
  background-color: #DDD; }

.error-404-block {
  display: flex; }
  .error-404-block .error-404-banner {
    background-color: #FFF;
    width: 470px;
    text-align: center;
    padding: 50px 0;
    color: #717a81;
    margin-right: 130px;
    border-radius: 8px;
    position: relative;
    flex: 0 0 auto; }
    .error-404-block .error-404-banner b {
      font-weight: bold;
      font-size: 197px;
      line-height: 135px; }
    .error-404-block .error-404-banner .text {
      font-size: 27px;
      text-transform: uppercase;
      line-height: 21px;
      margin-top: 15px; }
  .error-404-block .error-404-text {
    padding-top: 45px; }
  .error-404-block .description {
    font-size: 18px;
    line-height: 24px;
    color: #717a81;
    margin-bottom: 30px; }
  @media (max-width: 999px) {
    .error-404-block {
      display: block; }
      .error-404-block .error-404-banner {
        width: auto;
        margin: 0; } }

.sitemap {
  margin: 60px 0 30px;
  column-count: 5;
  column-gap: 30px; }
  .sitemap > li {
    margin: 0 0 12px; }
    .sitemap > li > a {
      font-weight: bold; }
  .sitemap ul {
    margin: 10px 0px 10px 15px;
    word-break: break-word; }
    .sitemap ul ul {
      margin: 5px 0px 10px 15px;
      font-size: 13px; }
      .sitemap ul ul a {
        color: #555; }
        .sitemap ul ul a:hover {
          color: #000; }
  .sitemap > ul > li {
    margin-bottom: 10px; }
  @media (max-width: 999px) {
    .sitemap {
      column-count: 2;
      column-gap: 20px; } }

.org_page .content {
  float: none;
  width: auto; }

.org_page .picture {
  float: right;
  margin-top: 10px; }

.org_page .picture img {
  max-width: 470px; }

.org_page h1,
.org_page h4 {
  overflow: hidden; }

.org_page .tabs-block {
  margin-bottom: 30px; }

.page-nav {
  clear: both;
  margin: 30px 0; }

.page-nav li {
  display: inline-block;
  margin-left: 20px; }

.page-nav li:first-child {
  margin-left: 0; }

.page-nav li a {
  display: block;
  position: relative;
  background-color: #FFF;
  font-weight: bold;
  text-transform: uppercase;
  padding: 14px 15px;
  border: 3px solid #FFF;
  border-radius: 6px;
  text-decoration: none; }

.page-nav li a.current {
  border-radius: 6px 6px 6px 0;
  border-color: var(--color1, #db3d3d); }

.page-nav li a.current:before,
.page-nav li a.current:after {
  bottom: -16px;
  height: 16px;
  left: -3px;
  position: absolute;
  overflow: hidden;
  line-height: 10px !important; }

.page-nav li a.current:before {
  color: #FFF;
  content: "\0048";
  font-size: 18px;
  text-shadow: 0 -2px 0 #fff; }

.page-nav li a.current:after {
  content: "\0047";
  font-size: 20px;
  color: var(--color1, #db3d3d); }

.page-nav li:first-child a.current:after {
  font-size: 24px; }

.main-tabs .tabs {
  border-bottom: 3px solid #FFF; }

.main-tabs .tabs li {
  display: inline-block;
  margin-left: 15px; }

.main-tabs .tabs li:first-child {
  margin-left: 0; }

.main-tabs .tabs li a {
  display: block;
  padding: 15px 0;
  font-weight: bold;
  color: #717a81;
  text-decoration: none;
  position: relative; }

.main-tabs .tabs a:hover {
  color: #ffc426; }

.main-tabs .tabs li a.active {
  color: #000; }

.main-tabs .tabs li a.active:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 3px;
  content: '';
  background-color: var(--color2, #528dca); }

.tab-content .article table {
  width: 100%; }

.tab-content .article table tr:first-child td {
  border: none; }

.tab-content .article table td {
  padding: 15px 15px 15px 0; }

.tab-content .article table th {
  padding-right: 15px; }

.tab-content .article table h4 {
  margin: 0; }

.tab-content .article table.hidden_table {
  margin: 0 0 10px 1.3%;
  width: 98.7%;
  background-color: #fff;
  border: solid #FFF;
  border-width: 10px 20px; }

.tab-content .article table.hidden_table td:first-child {
  padding-left: 15px; }

.tab-content .article table td.taLeft {
  text-align: left; }

.tab-content .article table td.taRight {
  text-align: right; }

.tab-content .article table td.taCenter {
  text-align: center; }

.tab-content .article h4 {
  margin: 10px 0 0px; }

.tab-content .article table.listlike td {
  width: 50%;
  border: none;
  padding-bottom: 0;
  padding-top: 5px; }

a.toggle {
  border-bottom: 1px dashed;
  text-decoration: none; }

.page-filter {
  background-color: #FFF;
  padding: 11px 15px;
  margin-top: 15px;
  text-align: right; }

.page-filter .form-element {
  display: inline-block;
  width: auto;
  min-width: 80px;
  vertical-align: middle;
  margin: 0 5px; }

.news-list {
  margin: 20px 0; }
  .news-list .item {
    overflow: hidden;
    margin-bottom: 45px; }
  .news-list .picture {
    float: left;
    width: 270px;
    margin-right: 30px;
    text-align: center;
    margin-top: 5px;
    height: 165px;
    overflow: hidden; }
    .news-list .picture img {
      width: 100%;
      height: auto; }
  .news-list .text {
    overflow: hidden; }
  .news-list .date {
    margin-bottom: 3px;
    color: var(--color1, #db3d3d);
    font-size: 13px; }
  .news-list .title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    margin: 0 0 10px 0; }
    .news-list .title a {
      color: #000;
      text-decoration: none; }
      .news-list .title a:hover {
        color: var(--color2, #528dca); }

@media screen and (max-width: 999px) {
  .news-list .item .picture {
    float: none;
    margin: 0 0 15px 0; }
  .news-list .item .title {
    font-size: 16px; }
    .news-list .item .title a {
      color: #000;
      text-decoration: none; } }

@media screen and (max-width: 509px) {
  .news-list .item .picture {
    width: 100%;
    height: auto; }
  .news-list .item .title {
    font-size: 16px; }
    .news-list .item .title a {
      color: #000;
      text-decoration: none; } }

.contacts-map {
  height: 370px;
  margin: 0 auto; }

.contacts-columns {
  display: table;
  width: 100%;
  border-collapse: collapse; }
  .contacts-columns .social-nav li {
    margin-bottom: 15px; }

.contacts-columns .column {
  display: table-cell;
  width: 500px;
  background-color: #f8f9fb;
  padding: 30px 50px; }

.contacts-columns .column + .column {
  width: 670px;
  background-color: #FFF; }

.contacts {
  margin-bottom: 35px; }

.contacts p {
  margin: 25px 0; }

.geo-map.was-map-yandex {
  position: relative; }

.was-map-dots {
  background: #fff none repeat scroll 0 0;
  bottom: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  padding: 20px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
  width: 230px; }

.was-dots-header {
  font-size: 18px; }

.was-map-dot {
  border-bottom: 1px solid #e9e9e9;
  padding: 9px 0;
  margin-right: 20px; }

.was-map-dots-holder {
  position: absolute;
  top: 50px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  overflow: auto; }

.was-map-balloon-inner-header {
  display: none; }

.was-map-dot:last-child {
  border: none; }

.was-map-dot .was-map-balloon-inner-header {
  display: inline;
  cursor: pointer;
  border-bottom: 1px dotted; }

.was-map-dot.active .was-map-balloon-inner-header {
  font-weight: bold;
  border: none; }

.ui-selectmenu-button:after {
  content: '\f107 ';
  font-family: 'Font Awesome 5 Free';
  position: absolute;
  right: 10px;
  top: 5px;
  color: #717a81;
  font-weight: bold; }

.ui-selectmenu-button.ui-corner-top {
  border-bottom: none; }

.ui-selectmenu-button.ui-corner-top:after {
  color: #b6aea9; }

.ui-selectmenu-button span.ui-selectmenu-text {
  padding: 0; }

.ui-menu {
  background-color: #FFF;
  color: #000;
  border: 1px solid #c1c1c1;
  border-top: none; }

.ui-menu .ui-menu-item {
  padding: 8px 10px; }

.ui-menu .ui-menu-item.ui-state-focus,
.ui-menu .ui-menu-item:hover {
  margin: 0;
  background-color: var(--color2, #528dca); }

.ui-selectmenu-open {
  z-index: 9000; }

.ui-selectmenu-menu .ui-menu {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.back-link {
  color: #717a81;
  margin-left: 20px; }

.page-share-block + .back-link {
  display: inline-block;
  margin-top: 30px; }

.back-link:before {
  content: '\f060 ';
  color: #c7ccd0;
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  position: absolute;
  margin-left: -20px;
  text-decoration: none;
  font-size: 12px;
  display: inline-block;
  /*Edge fix*/ }

.map {
  height: 495px;
  clear: both;
  border-top: 5px solid #e5e6e8;
  margin-top: 70px; }
  .index .map {
    height: 400px !important;
    margin-top: 0; }

.hidden {
  display: none; }

.service-order-block {
  display: none;
  margin: 20px 0 35px; }

body:before {
  background-color: rgba(70, 80, 90, 0.8);
  height: 100%;
  content: "";
  left: 0;
  opacity: 0;
  right: 0;
  top: 0;
  transition: opacity 0.3s;
  z-index: 1; }

.mobile-nav-block {
  z-index: 2;
  display: none;
  -webkit-transform: translateX(100%);
  -khtml-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 0.5s;
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  min-height: 100%;
  width: 100%;
  overflow: hidden;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0.47, transparent), color-stop(0.47, #FFFFFF));
  background-image: -o-linear-gradient(right, transparent 47%, #FFFFFF 47%);
  background-image: -moz-linear-gradient(right, transparent 47%, #FFFFFF 47%);
  background-image: -webkit-linear-gradient(right, transparent 47%, #FFFFFF 47%);
  background-image: -ms-linear-gradient(right, transparent 47%, #FFFFFF 47%);
  background-image: linear-gradient(to right, transparent 47%, #FFFFFF 47%); }
  .mobile-nav-block.showSubnav {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0.47, #E5E8EA), color-stop(0.47, #FFFFFF));
    background-image: -o-linear-gradient(right, #E5E8EA 47%, #FFFFFF 47%);
    background-image: -moz-linear-gradient(right, #E5E8EA 47%, #FFFFFF 47%);
    background-image: -webkit-linear-gradient(right, #E5E8EA 47%, #FFFFFF 47%);
    background-image: -ms-linear-gradient(right, #E5E8EA 47%, #FFFFFF 47%);
    background-image: linear-gradient(to right, #E5E8EA 47%, #FFFFFF 47%); }
  .showNav .mobile-nav-block {
    -webkit-transform: translateX(0);
    -khtml-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    overflow: auto; }
  .mobile-nav-block .column {
    width: 53%;
    background-color: #fff;
    padding: 50px 0;
    min-height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    box-sizing: border-box; }
  .mobile-nav-block .close-nav {
    position: absolute;
    right: 15px;
    top: 15px;
    display: block;
    font-size: 20px;
    cursor: pointer;
    z-index: 1; }
    .mobile-nav-block .close-nav:before {
      content: '\f00d';
      font-family: 'Font Awesome 5 Free', sans-serif;
      font-weight: bold; }
  .mobile-nav-block .mobile-nav {
    padding: 0 20px 0 40px; }
    .mobile-nav-block .mobile-nav > li {
      margin-bottom: 30px; }
      .mobile-nav-block .mobile-nav > li .subnav-toggle {
        position: absolute;
        margin: -20px;
        margin-top: -22px;
        font-size: 22px;
        font-weight: bold;
        cursor: pointer;
        color: #c7cacd; }
        .mobile-nav-block .mobile-nav > li .subnav-toggle:before {
          content: '\f104';
          font-family: 'Font Awesome 5 Free', sans-serif;
          font-weight: bold; }
        .mobile-nav-block .mobile-nav > li .subnav-toggle.open + .subnav {
          visibility: visible;
          opacity: 1; }
      .mobile-nav-block .mobile-nav > li > a {
        color: #000;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 18px;
        font-weight: bold;
        display: block; }
      .mobile-nav-block .mobile-nav > li .subnav {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 47%;
        background-color: #e5e8ea;
        overflow: auto;
        padding-left: 30px;
        box-sizing: border-box;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        opacity: 0;
        padding-top: 35px;
        visibility: hidden; }
        .mobile-nav-block .mobile-nav > li .subnav:after {
          top: 0;
          right: -1px;
          bottom: 0;
          box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
          position: absolute;
          width: 1px; }
        .mobile-nav-block .mobile-nav > li .subnav li {
          border-bottom: 1px solid #cacfd5; }
          .mobile-nav-block .mobile-nav > li .subnav li a {
            color: #5c5c5c;
            text-decoration: none;
            padding: 15px 20px 15px 0;
            display: block; }
            .mobile-nav-block .mobile-nav > li .subnav li a:hover, .mobile-nav-block .mobile-nav > li .subnav li a.active {
              color: #000; }
          .mobile-nav-block .mobile-nav > li .subnav li.active a {
            color: #000; }
  .mobile-nav-block .phone {
    font-size: 17px;
    margin: 30px 25px;
    font-weight: bold;
    color: #898888; }
    .mobile-nav-block .phone a {
      color: #898888;
      text-decoration: none; }
  .mobile-nav-block .social-nav {
    margin-left: 20px; }
    .mobile-nav-block .social-nav li {
      margin: 0 0 15px 10px; }

@media screen and (max-width: 999px) {
  body.showNav {
    overflow: hidden; }
    body.showNav:before {
      opacity: 1;
      position: fixed; }
    body.showNav #main {
      height: 100%;
      height: 100vh;
      overflow: hidden; }
  .mobile-nav-block {
    display: block; } }

@media screen and (min-width: 999px) and (max-width: 1170px) {
  body {
    min-width: 1200px; }
  .main-features,
  .center {
    padding: 0 15px; }
  #logo {
    left: 15px; }
  .catalog-slider .items-holder {
    margin: -15px;
    padding: -15px; }
  .catalog-slider .scroll.next {
    right: -10px; }
  .catalog-slider .scroll.prev {
    left: -10px; } }

@media screen and (max-width: 999px) {
  body, html {
    min-width: 375px;
    position: relative; }
  .center {
    width: 510px; }
  .middle {
    padding: 105px 0 20px; }
    .middle > .center {
      display: flex;
      flex-direction: column; }
    .middle .sidebar {
      order: 2; }
  .index .middle {
    padding-top: 105px;
    padding-bottom: 0px; }
  .index h1, .index h2 a {
    color: #717a81; }
  .mobile-hidden,
  .top-contacts,
  .top-social-nav,
  .top-nav-block {
    display: none; }
  .catalog-slider .items-holder {
    margin: 0;
    padding: 0; }
  .catalog-slider .item {
    width: 240px; }
  .catalog-slider .scroll {
    width: auto; }
    .catalog-slider .scroll:before {
      font-size: 30px; }
    .catalog-slider .scroll.next {
      right: -12px; }
    .catalog-slider .scroll.prev {
      left: -12px; }
  .content .catalog-slider .scroll {
    width: auto; }
    .content .catalog-slider .scroll:before {
      font-size: 30px; }
    .content .catalog-slider .scroll.next {
      right: -12px; }
    .content .catalog-slider .scroll.prev {
      left: -12px; }
  .main-news-block {
    float: none;
    width: auto; }
    .main-news-block .shorties .text {
      font-size: 16px;
      font-weight: 500; }
  .map {
    margin-top: 40px; }
    .index .map {
      height: 250px !important; }
  ._show_1e.wrap_mW {
    z-index: 1 !important; }
  .sidebar + .content,
  .main-column-left + .content,
  .catalog-filter + .content {
    width: auto;
    float: none; }
  .sidebar {
    float: none;
    margin: 20px 0 0 0;
    width: auto; }
    .sidebar .sidebar-block {
      border: none; }
  .sidebar-nav {
    display: none; }
  .content .geo-map.was-map-yandex {
    display: flex;
    flex-direction: column;
    height: auto !important;
    min-height: 250px; }
  ymaps {
    order: 1; }
  .was-map-dots {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    order: 2;
    width: auto; }
  .was-dots-header {
    position: relative;
    cursor: pointer; }
    .was-dots-header:after {
      content: '\f107';
      position: absolute;
      right: 0;
      font-family: 'Font Awesome 5 Free', sans-serif;
      font-weight: bold;
      top: 50%;
      transform: translateY(-50%); }
  .was-map-dots-holder {
    position: static;
    display: none;
    max-height: 255px; }
  .was-map-dots.open .was-map-dots-holder {
    display: block; }
  .was-map-dots.open .was-dots-header:after {
    content: '\f106'; }
  .contacts-columns {
    margin-top: 20px;
    display: block; }
    .contacts-columns .column {
      display: block;
      padding: 20px 15px;
      width: auto; }
      .contacts-columns .column + .column {
        width: auto; }
  .back-link {
    margin-left: 20px; }
  .article {
    overflow: hidden; }
    .article table {
      max-width: 100%; }
      .article table th,
      .article table td {
        padding-left: 10px;
        padding-right: 10px; }
  .service-order-block {
    display: block; }
    .service-order-block .btn {
      width: 100%; }
  .breadcrumbs {
    margin: 15px 0; }
  .splash-form.wide-form {
    width: 100%; }
    .splash-form.wide-form .field, .splash-form.wide-form .field.short {
      width: 100%; }
  .fancybox-nav {
    position: absolute; }
  .fancybox-prev {
    left: -30px; }
  .fancybox-next {
    right: -30px; } }

@media screen and (max-width: 509px) {
  .center {
    width: 345px; }
  .middle {
    padding: 90px 0 20px; }
  .index .middle {
    padding-top: 90px;
    padding-bottom: 0px; }
  .sidebar > h2 {
    display: none; }
  #catalog_viewed_products_sidebar, #catalog_viewed_products_sidebar h2 {
    display: none; }
  .catalog-slider {
    width: auto; }
    .catalog-slider .item {
      width: 345px;
      margin-right: 0; }
      .catalog-slider .item .buy-btn {
        float: right; }
    .catalog-slider .scroll {
      width: auto; }
      .catalog-slider .scroll:before {
        font-size: 30px; }
  .main-news-block {
    float: none;
    width: auto; }
    .main-news-block .shorties .text {
      font-size: 16px; }
  .map {
    margin-top: 40px; } }

@media (max-width: 450px) {
  .mobileMinFont * {
    font-size: 13px !important; } }

body .bg-color1 {
  background-color: var(--color1, #db3d3d) !important; }

body .bg-color2 {
  background-color: var(--color2, #528dca) !important; }

body .text-color1 {
  color: var(--color1, #db3d3d) !important; }

body .text-color2 {
  color: var(--color2, #528dca) !important; }

body .border-color1 {
  border-color: var(--color1, #db3d3d) !important; }

body .border-color2 {
  border-color: var(--color2, #528dca) !important; }
