:root {
  --color-textmain: #000000;                 /* #COLOR_TEXTMAIN# */
  --color-textsecondary: #878795;            /* #COLOR_TEXTSECONDARY# */

  --color-icon: #C5C5D1;                     /* #COLOR_ICON# */
  --color-blocks: #000001;                  
  --color-average: #FAFAFF;                  /* #COLOR_AVERAGE# */
  --color-bottom: #EFEFF9;                   /* #COLOR_BOTTOM# */
  --color-top: #FFFFFF;                      /* #COLOR_TOP# */

  --color-green: #02C065;                    /* new */
  --color-violet: #655AC6;                   /* sale */
  --color-orange: #F76D30;                   /* hit */
  --color-red: #cc0000;                      /* red */

  --blocks-main-padding: 48px;               /* #BLOCK_PADDING_MAIN# */
  --h2-margin-bottom: 40px;                  /* #H2_MARGIN_BOTTOM# */
  --h2-margin-bottom--divide-2: 16px;        /* #H2_MARGIN_BOTTOM/2# */
  --block-margin-top--with-text: 24px;       /* #H2_MARGIN_BOTTOM/2# */

  --main-border-radius: 16px;

  --main-shadow-base: 0px 6px 8px rgba(0, 0, 0, 0.04);
  --main-shadow-black: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--color-average);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {

  h1,
  .h1 {
    font-size: 2.5rem;
  }
}

h2,
.h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {

  h2,
  .h2 {
    font-size: 2rem;
  }
}

h3,
.h3 {
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {

  h3,
  .h3 {
    font-size: 1.75rem;
  }
}

h4,
.h4 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {

  h4,
  .h4 {
    font-size: 1.5rem;
  }
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small,
.small {
  font-size: 0.875em;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr
    /* rtl:ignore */
  ;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}

a>code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}

legend+* {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}


/*********************************/


/* montseratt */

a {

  text-decoration: none;

  /** THEMECOLOR **/
  color: var(--color-maintheme);

}

a,
a>span {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

body {
  position: relative;
  min-height: 100vh;
  color: var(--color-textmain);
  font-family: "Inter", sans-serif;
}

/* new template */

/*****************************************************************************************************/
/****************************** ПЕРЕНОСИМ СТИЛИ ТЕМЫ НА ЧИСТЫЙ CSS ***********************************/
/*****************************************************************************************************/

a {color: var(--color-maintheme);}
.header__navigation {background-color: var(--color-maintheme); fill: var(--color-maintheme);}
.header__navigation .header__navigation-container > ul > li.fill > ul li a:hover,.header__navigation .header__navigation-container > ul > li.fill > ul > li.active > a,.header__navigation .header__navigation-container > ul > li.nofill > ul li a:hover {color: var(--color-maintheme);}
.header__navigation .header__navigation-container > ul > li.fill > ul > li > ul > li > svg {fill: var(--color-maintheme);stroke: var(--color-maintheme);}
.swiper-button-next,.swiper-button-prev {color: var(--color-maintheme);}
.swiper-lazy-preloader-white{--swiper-preloader-color:var(--color-maintheme)}
.block-reasons__wrapper svg {fill: var(--color-maintheme); stroke: transparent;}
.btn {background-color: var(--color-maintheme);fill: var(--color-maintheme)}
.block-categories__column:hover .block-categories__column-name {color: var(--color-maintheme);}
.offers-column__prices-more:hover {background: var(--color-maintheme);border-color: var(--color-maintheme);}
.offers-column__other-buttons > a:hover {background: var(--color-maintheme);}
.offers-column__first .offers-column__other-buttons > a:hover > span {color: var(--color-maintheme);}
.block-services__item:hover .block-services__item-name {color: var(--color-maintheme);}
.block-offer-reviews__slider-container .swiper-button-next-1:hover:after,.block-offer-reviews__slider-container .swiper-button-prev-1:hover:after {background: var(--color-maintheme);border-color: var(--color-maintheme);}
.block-offer-reviews__slider-offer__title a:hover {color: var(--color-maintheme);}
.block-compilation__swiper-item__name:hover {color: var(--color-maintheme);}
.block-compilation__swiper-item__items-item__name a:hover {color: var(--color-maintheme);}
.block-compilation__navigation > ul li a.active {color: var(--color-maintheme);}
.block-compilation__navigation > ul li a.active:after {background: var(--color-maintheme);}
.block-compilation__navigation-right a:hover {color: var(--color-maintheme);}
.block-compilation__swiper-container .swiper-button-next:hover:after,.block-compilation__swiper-container .swiper-button-prev:hover:after {background: var(--color-maintheme);border-color: var(--color-maintheme);}
.block-company-reviews__swiper-container .swiper-button-next-3:hover:after,.block-company-reviews__swiper-container .swiper-button-prev-3:hover:after {background: var(--color-maintheme);border-color: var(--color-maintheme);}
.block-sale__all-link:hover {color: var(--color-maintheme);}
.block-sale__item-name:hover,.block-sale__item-text:hover {color: var(--color-maintheme);}
.block-articles__all-link:hover {color: var(--color-maintheme);}
.theme-bg {fill: var(--color-maintheme);}
.block-about__reasons-item__left > svg > path {stroke: var(--color-maintheme);}
.block-question {background: var(--color-maintheme);}
.breadcrumb li a:hover {color: var(--color-maintheme);}
.catalog-subcategoreis__item > svg {stroke: var(--color-maintheme);fill: var(--color-maintheme);}
.catalog-subcategoreis__item > a:hover {color: var(--color-maintheme);}
.catalog-subcategoreis__item > .catalog-subcategoreis__item-subcategories li a:hover {color: var(--color-maintheme);}
.header__navigation .header__navigation-container > ul > li.nofill > ul li.active > a {color: var(--color-maintheme);}
.header.header-filter:hover span {color: var(--color-maintheme);}
.nouislider-container .noUi-connect {background: var(--color-maintheme);}
.right-extended-panel__item:hover > span.material-symbols-outlined {color: var(--color-maintheme);}
.right-extended-panel__item span.right-extended-panel__item-cartQuantity > span, .right-extended-panel__item span.favoriteQuantity > span, .right-extended-panel__item span.compareQuantity > span  {background: var(--color-maintheme);}
.form-switch-in .form-check-input-in:checked {background-color: var(--color-maintheme);border-color: var(--color-maintheme);}
.main-search-widget__search-form:hover .main-search-widget__search-button > span.material-symbols-outlined {color: var(--color-maintheme);}

.preloader {--swiper-preloader-color: var(--color-maintheme);}

.tab-buttons .tab-button:hover, .tab-buttons .tab-button--active {background-color: var(--color-maintheme); color: #fff;}


.btn:hover {background-color: var(--color-mainthemeHover)}
.swiper-pagination-bullet-active {background: var(--color-mainthemeHover);}
.offers-column__other-buttons-big > a:hover {background: var(--color-mainthemeHover);}

.btn-transparent {border: 1px solid var(--color-maintheme);color: var(--color-maintheme); background:transparent;}
.btn-transparent:hover {border: 1px solid var(--color-mainthemeHover);}

.block-product-of-the-day__more:hover {background: var(--color-mainthemeHover);}
.offers-column__variants > a:hover {border-color: var(--color-maintheme);color: var(--color-maintheme)}
.offers-column__variants > a.active {border-color: var(--color-maintheme);background: var(--color-maintheme);}
.catalog-tags > a:hover,.catalog-tags > a.active {border-color: var(--color-mainthemeHover); background-color: var(--color-mainthemeHover); color:#fff;}
.catalog-tags > a.active {border-color: var(--color-mainthemeHover); background-color: var(--color-mainthemeHover); color:#fff;}

.offers-column__variants > a.active:hover {color: #fff;}

.catalog-sort-list ul a:hover {color: var(--color-mainthemeHover);}
.btn.btn-transparent--active {background: var(--color-mainthemeHover);}
.cart-order__block-container:hover, .cart-order__block-choise__item--active .cart-order__block-container {border-color: var(--color-mainthemeHover);}
.cart-order__block-container:hover .btn, .cart-order__block-choise__item--active .cart-order__block-container .btn {background: var(--color-mainthemeHover)}
.cart-order__block-container:hover .cart-order__block-choise__svg svg path, .cart-order__block-choise__item--active .cart-order__block-container .cart-order__block-choise__svg svg path {fill: var(--color-mainthemeHover)}

.plural-property__item-svg svg path {fill: var(--color-maintheme)}

a:hover {color: var(--color-mainthemeHover);}
.header__navigation .header__navigation-container > ul > li > a:hover,.header__navigation .header__navigation-container > ul > li.active > a {background-color: var(--color-mainthemeHover);fill: var(--color-mainthemeHover);}
.header__navigation .header__navigation-container > ul > li.active2 > a {background-color: var(--color-mainthemeHover);fill: var(--color-mainthemeHover);}
.btn.btn-transparent--active:hover {background: var(--color-mainthemeHover);}
.desktop-header.header .header__navigation .header__navigation-container > ul > li > a {border-left: 1px solid var(--color-maintheme);}
.desktop-header.header .header__navigation .header__navigation-container > ul > li:first-child > a {border-left: none;}

.desktop-header.header_4 .header__top-city_link a:hover, .desktop-header.header_4 .header__navigation .header__navigation-container > ul > li > a:hover, .desktop-header.header_4 .header__navigation .header__navigation-container > ul > li.active2 a {color: var(--color-maintheme)}

.btn-white {background:#fff;}


.fio:hover {color: var(--color-maintheme)}
.phone:hover {color: var(--color-maintheme)}
.email:hover {color: var(--color-maintheme)}

.text-and-image li:before {background-color:var(--color-maintheme);}
.vacancy_info li::before {background-color:var(--color-maintheme);}
.advantage_picture svg {fill:var(--color-maintheme);}
.btn_exp:hover {background-color:var(--color-maintheme);}
.dropdown-btn {border: 1px solid var(--color-maintheme);}
.dropdown-btn {color: var(--color-maintheme);}
.dropdown-btn:hover {background-color: var(--color-maintheme);}
.message_hover {fill:var(--color-maintheme);}
.dropdown-form button {background-color: var(--color-maintheme);}
.active1 { border: 1px solid var(--color-maintheme);}

.block-reasons__number {color: var(--color-maintheme)}

.offers-column__other-buttons a.selected svg{fill: var(--color-maintheme);}
.minifavorite-item__buttons a:hover {background: var(--color-maintheme);}
.minifavorite-item__buttons a.selected {background: var(--color-maintheme);}
.offer_block a:hover {background: var(--color-maintheme);}
.offer_block a.selected {background: var(--color-maintheme);}
.compare-item__buttons a:hover {background: var(--color-maintheme);}
.compare-item__buttons a.selected {background: var(--color-maintheme);}

.tshop2-pagination li a:hover, .tshop2-pagination li.active span {background: var(--color-maintheme);}
.block-company-reviews__left .btn:hover, .block-company-reviews__swiper-item__review .btn:hover {color: var(--color-mainthemeHover)}

.block-company-reviews__swiper-container .swiper-button-prev-3, .block-company-reviews__swiper-container .swiper-button-next-3 {border-color: var(--color-maintheme)}

.swiper-button-svgcontent-stroke svg path {stroke: var(--color-maintheme)}

.swiper-button-svgcontent-stroke:hover {background-color: var(--color-maintheme)}

.banners-one-under-other__item .btn {color: var(--color-maintheme)}
.banners-one-under-other__item .btn:hover {color: #fff}

.step-by-step__tech-1 {background: var(--color-maintheme) ! important; opacity: .6;}
.step-by-step__tech-3 svg path {fill: var(--color-maintheme); opacity: .6;}
.step-by-step__tech-2 svg path, .step-by-step__tech-4 svg path {stroke: var(--color-maintheme); opacity: .6;}

.step-by-step__tech-toright svg path, .step-by-step__tech-toleft svg path {fill: var(--color-maintheme)}

.form-field--select .form-field--select-labels .form-switch-in--variant-2 input[type="checkbox"]:checked + span .last-svg path, .form-field--select .form-field--select-labels .form-switch-in--variant-2 input[type="radio"]:checked + span .last-svg path {fill: var(--color-maintheme) ! important;}

#accept-cookie {background-color: var(--color-maintheme)}
#accept-cookie:hover {background-color: var(--color-mainthemeHover)}

/* basic */
body h1,
body h2,
body h3 {
  margin-top: 0;
  padding: 0;
  padding-bottom: var(--h2-margin-bottom--divide-2);
  margin-bottom:0;
  font-size: 28px;
  line-height: 34px;
  font-weight: 600;
  letter-spacing: .01em;
}

body h1 {
  padding-bottom: calc(var(--blocks-main-padding) / 2);
}

label, input {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: .01em;
  color: var(--color-textsecondary);
}

body,
p,
li,
th,
td,
header,
h4,
h5,
h6,
div {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: .01em;
  color: var(--color-textmain);
}

/* special */
.iww__all-bordersRadius {
  border-radius: 16px;
}

.iww__all-boxesShadow {
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.04);
}

.iww__all-boxesShadowHovered:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

/* buttons */

.btn {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;

  border-radius: var(--main-border-radius);
  text-align: left;
  color: var(--color-top);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  font-feature-settings: 'case' on;
  text-transform: none;

  width: auto;
  padding: 9px 16px;
}

.btn svg {
  position: relative;
  top: -1px;
  margin-right: 0;
  margin-left: 8px;
}

.btn-fill {
  width: 100%;
}

.btn:hover {
  background-color: var(--color-mainthemeHover);
  box-shadow: 0px 0px 10px rgba(var(--color-mainthemeRgb), .5);
  color: var(--color-top);
}

.btn-white {
  background: #fff;
  border: 1px solid transparent;
  border-color: #f2f2f2;
  color: #b0b0b0;
}

.btn-white:hover {
  background: #fff;
  color: #b0b0b0;
}

.btn.btn-transparent {
  color: var(--color-maintheme);
}

.btn.btn-transparent svg {
  stroke: var(--color-maintheme);
}

.btn.btn-transparent:hover {
  color: var(--color-top);
}

.btn.btn-transparent:hover svg path {
  stroke: var(--color-top);
}


.tingle-modal-box__content > a.tingle-modal__close2 {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 11;
  line-height: 16px;
}




.container {
  margin-left: auto;
  margin-right: auto;
  min-width: 320px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.row-to-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.column {
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}

.column-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.column-fill {
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.container1344 {
  max-width: 1374px;
}

.header__top {
  position: relative;
  padding-top: 24px;
  padding-bottom: 24px;
  z-index: 3;
  min-height: 80px;
}

.header__navigation {
  /** THEMECOLOR **/
  height: 54px;

  position: relative;
  z-index: 2;

  border-radius: 2px;
  margin-left: 0;
  /*  overflow-x: hidden;*/
}

.header__navigation.header__navigation-block-broker {
  z-index: 9;
}

/** level 1 **/

.header__navigation .header__navigation-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 100%;
  height: 100%;
}

.header__navigation .header__navigation-container>ul {
  display: flex;
  position: relative;
  border-radius: 2px;
  opacity: 0;
}

.header__navigation .header__navigation-container>ul>li {
  display: block;
  height: 100%;
  width: 100%;
  /*position: static;*/
  position: relative;
  /* TODOTODO */
}

.header__navigation .header__navigation-container>ul>li.isMoreButton {
  max-width: 71px;
}

.header__navigation .header__navigation-container>ul>li>a {

  display: block;

  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  padding: 14px 18px 19px 18px;

  max-height: 50px;

  max-width: none;
  width: auto;
}

.header__navigation-container>ul>li a .material-symbols-outlined {
  margin-top: 5px ! important;
}

.header__navigation .header__navigation-container>ul>li>a:hover,
.header__navigation .header__navigation-container>ul>li.active>a {
  /** THEMECOLORTWO **/
  /*background-color: #008ffc;
  fill: #008ffc;*/
}

.header__navigation .header__navigation-container ul>li>a>span {
  display: inline-block;
  line-height: 21px;
  vertical-align: middle;
}

.header__navigation .header__navigation-container>ul>li:first-child {
  /*width: 257px;*/
}

.header__navigation .header__navigation-container>ul>li:first-child>a {
  padding-left: 15px;
}

.header__navigation .header__navigation-container>ul>li>a>span.menu-icon:first-child,
.header__navigation .header__navigation-container>ul>li>a>span.menu-icon.bottom,
.header__navigation .header__navigation-container>ul>li>a>span.menu-icon.right {
  vertical-align: top;
  font-size: 16px;
  width: 16px;
  margin: 0 0 0 8px;
}

.header__navigation .header__navigation-container>ul>li>a>span.menu-icon.right {
  display: none;
}

.header__navigation .header__navigation-container>ul>li ul>li a>span.menu-icon.bottom {
  display: none;
}

/** level 2 **/

.header__navigation .header__navigation-container ul ul {
  display: none;
}

.header__navigation .header__navigation-container ul ul ul ul {
  display: block;
}

.header__navigation .header__navigation-container>ul>li.fill>ul {
  position: absolute;
  /*display: block;*/
  background: #fff;
  top: calc(100% + 15px);
  left: 0;
  height: auto;

  padding: 24px 0 24px 24px;

  max-width: 424px;
  min-width: 424px;

  transition: .3s;
  opacity: 0;

  border-radius: 0 0 0 var(--main-border-radius);
  box-shadow: var(--main-shadow-base);

  /*opacity: 1;
  display:block;*/

  min-height: 650px;
}

.header__navigation .header__navigation-container>ul>li.fill>ul:before {
  content: '';
  display:block;
  height: 20px;
  width: 100%;
  position:absolute;
  top: -16px;
  left: 0;
}

.header__navigation .header__navigation-container>ul>li.fill.active>ul {
  opacity: 1;
}

.header__navigation .header__navigation-container>ul>li.fill>ul>li {
  padding-right: 14px;
  padding-right: 24px;
}

.header__navigation .header__navigation-container>ul>li.fill>ul>li:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  width: 20px;
}

.header__navigation .header__navigation-container>ul>li.fill>ul>li>a {
    display: flex;
    position: relative;
    word-break: break-word;
    padding: 8px 33px 8px 80px;
    height: 64px;
    align-items: center;
    justify-content: left;


    color: var(--color-textmain);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 1px;
    border-radius: var(--main-border-radius);
}

.header__navigation .header__navigation-container>ul>li.fill>ul>li>a:hover {
  background: var(--color-average);
  color: var(--color-textmain); 
}

.header__navigation .header__navigation-container>ul>li.fill>ul>li>a:hover span {
  color: var(--color-textmain); 
}

.header__navigation .header__navigation-container>ul>li.fill>ul>li>a .menu-hamburger__catalog-icon {
  width: auto;
}

.header__navigation .header__navigation-container>ul>li.fill>ul>li>a .menu-hamburger__catalog-icon img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 64px;
  height: 48px;
  object-fit: contain; /* Для корректного масштабирования изображения */
}

.header__navigation .header__navigation-container>ul>li.fill>ul>li>a span.menu-icon {
  vertical-align: top;
  line-height: 1.2;
  font-size: 17px;
  width: 17px;
  margin: 0;
  font-variation-settings:
    'opsz' 17;

  position: absolute;
  right: 8px;
}

.header__navigation .header__navigation-container>ul>li.fill>ul li a:hover,
.header__navigation .header__navigation-container>ul>li.fill>ul>li.active>a,
.header__navigation .header__navigation-container>ul>li.nofill>ul li a:hover {
  /** THEMECOLOR **/
  color: var(--color-maintheme);
}

.header__navigation .header__navigation-container>ul>li.fill>ul>li>ul {
  /*display: block;*/
  position: absolute;
  top: 0;
  left: 410px;
  background: #fff;
  width: 100%;
  padding: 30px 20px;

  /*display: flex;*/

  flex-wrap: wrap;

  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;

  min-height: 100%;
  height: auto;

  border-radius: 0 0 var(--main-border-radius) 0;
  box-shadow: var(--main-shadow-base);

  max-height: 100%;
  overflow: auto;
}

.header__navigation .header__navigation-container>ul>li.fill>ul>li>ul>li {
  display: inline-block;
  vertical-align: top;
  padding: 12px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 33.333333%;

  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;

  -webkit-box-flex: 0;

  position: relative;
  padding-left: 70px;

  min-height: 100px;

}

.header__navigation .header__navigation-container>ul>li.fill>ul>li>ul>li>svg {

  fill: var(--color-maintheme);
  stroke: var(--color-maintheme);

  width: 60px;

  position: absolute;
  top: 7px;
  left: 0;

}

.header__navigation .header__navigation-container>ul>li.fill>ul>li>ul>li>a {
  color: #2d2d2d;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.header__navigation .header__navigation-container>ul>li.fill>ul>li>ul>li>ul {
  margin-top: 16px;
}

.header__navigation .header__navigation-container>ul>li.fill>ul>li>ul>li>ul>li>a {

  font-size: 14px;
  line-height: 22px;
  color: #808080;

  display: block;
  padding-bottom: 6px;
}

/****/

.header__navigation .header__navigation-container>ul>li.nofill>ul {
  min-width: 260px;
  position: absolute;
  width: auto;

  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  opacity: 0;
}

/*.header__navigation .header__navigation-container>ul>li:last-child.nofill>ul,
.header__navigation .header__navigation-container>ul>li:nth-last-child(2).nofill>ul {
  left: calc(100% - 129px);
}
*/
.header__navigation .header__navigation-container>ul>li.nofill.active>ul {
  opacity: 1;
}

.header__navigation .header__navigation-container>ul>li.nofill>ul li {
  width: 100%;
  max-width: 260px;
}

.header__navigation .header__navigation-container>ul>li.nofill>ul li a {
  display: block;
  padding: 10px 36px 10px 16px;
  color: var(--color-textmain);
  font-size: 14px;
  line-height: 18px;
  font-weight: 700px;
  position: relative;
}

.header__navigation .header__navigation-container>ul>li.nofill>ul>li:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 20px;
    pointer-events: auto;
    left: -20px;
}

.header__navigation .header__navigation-container>ul>li.nofill>ul>li:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 20px;
    pointer-events: auto;
    right: -20px;
}

.header__navigation .header__navigation-container>ul>li.nofill>ul li a span.menu-icon {
  vertical-align: top;
  line-height: 1.2;
  font-size: 17px;
  width: 17px;
  margin: 0;
  font-variation-settings:
    'opsz' 17;

  position: absolute;
  right: 15px;
}

.header__navigation .header__navigation-container>ul>li.nofill>ul li:last-child a {
  /*border-bottom: none;*/
}

/*********/

.header__navigation-overlay {
  display: none;
  opacity: 0;
  background: rgba(0, 0, 0, .6);

  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;

  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;

  z-index: 2;
}

.header__navigation-overlay.active {
  opacity: 1;
}

.header__navigation .header__navigation-container>ul>li:hover>ul {
  display: block;
  height: auto;
}

.header__navigation .header__navigation-container>ul>li.fill>ul>li.active>ul,
.header__navigation .header__navigation-container>ul>li.fill>ul>li.only-active>ul {
  display: flex;
  z-index: 1;
}

.header__navigation .header__navigation-container>ul>li.fill>ul>li>ul {
  align-content: baseline;
}

.header__navigation .header__navigation-container>ul>li.fill>ul>li>a>span:first-child {
  padding-right: 15px;
}

.header__navigation .header__navigation-container>ul>li.fill>ul>li>a .menu-icon {
  margin-top: 2px ! important;
}

.header__navigation .header__navigation-container>ul>li.fill>ul>li:hover>ul {
  display: flex;
  z-index: 2;
}

.header__navigation .header__navigation-container>ul>li.nofill>ul li {
  /*width: 260px;*/
  position: relative;
}

.header__navigation .header__navigation-container>ul>li.nofill>ul>li ul {
  display: none;
  position: absolute;
  left: 268px;
  top: 0;
  height: auto;
  /*box-shadow: 0 0 11px 5px rgb(0 0 0 / 10%);*/
}

.header__navigation .header__navigation-container>ul>li.nofill>ul>li ul.right-position {
  left: auto;
  right: 268px;
}

.header__navigation .header__navigation-container>ul>li.nofill>ul>li>ul>li>ul {}

.header__navigation .header__navigation-container>ul>li.nofill>ul li:hover>ul {
  display: block;
}

body.iww_panel_____visible {
  padding-left: 1px;
  padding-right: 1px;
}

.main-wrapper {
  /*overflow-x: hidden;*/
}

/************* header top line ******************/

.header__top-line {
  height: 32px;
  display: flex;
  flex-wrap: wrap;
}

.header__top-logo {
  position: relative;
  width: 200px;
  min-height: 32px;
  height: 100%;
}

.header__top-logo img {
  max-width: 170px;
  width: auto;
  height: auto;

  position: absolute;
  left: 15px;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  max-height: 70px;
}

.header__top-slogan p {
  font-size: 12px;
  /*max-width: 170px;*/
  line-height: 16px;
  color: #000;
  margin: 0;
}

.header__top-city_link a {
  color: #000;
  display: block;
  font-size: 12px;
  line-height: 12px;
}

.header__top-city_link a span:first-child {
  display: inline-block;
}

.header__top-city_link a span.material-symbols-outlined,
.header__top-phone_link a span.material-symbols-outlined {
  vertical-align: top;
  line-height: 12px;
  font-size: 17px;
  width: 17px;
  margin: 0;
  font-variation-settings:
    'opsz' 17;
  position: relative;
  top: 1px;
}

.header__top-city_link > a {
  padding-left: 0;
}

.header__top-phone_link {
  font-size:12px;
  line-height:12px;
  position: relative;
}

.header__center-contact__hidden,
.dropdown-menu--user {
  position: absolute;
  top: 19px;
  right: -22px;
  background: #fff;
  border-radius: var(--main-border-radius);
  box-shadow: var(--main-shadow-base);
  padding: 16px 32px;
  text-align: left;
  letter-spacing: .01em;
  font-weight: 700;
  display:none;
}

.header__top-phone_link:hover .header__center-contact__hidden:before,
.header__cart.header__cart-actions:hover .dropdown-menu--user:before {
  content: ' ';
  display: block;
  width: 100%;
  position: absolute;
  height: 10px;
  left: 0;
  right: 0;
  top: -8px;
}
.dropdown-menu--user {
  padding: 16px;
  min-width: 150px;
  top: 30px;
}

.form-logout .form-buttons {
  margin-top: 16px;
}

.form-logout .form-buttons .btn {
  width: 100%;
  text-align: center;
}

.header__top-phone_link:hover .header__center-contact__hidden,
.header__cart.header__cart-actions:hover .dropdown-menu--user {
  display: block;
}

.header__top-phone_link .header__center-contact__hidden > div > a,
.header__cart.header__cart-actions .dropdown-menu--user > div > a {
  display: block;
  font-size: 12px;
  line-height: 16px;
  color: var(--color-textmain);
  padding-bottom: 8px;
  padding-top: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.header__top-phone_link .header__center-contact__hidden > div:first-child > a,
.header__cart.header__cart-actions:hover .dropdown-menu--user > div:first-child > a {
  padding-top: 0;
}

.header__top-phone_link .header__center-contact__hidden > div:last-child > a,
.header__cart.header__cart-actions:hover .dropdown-menu--user > div:last-child > a {
  padding-bottom: 0;
  border-bottom: none;
}

.header__top-phone_link a span {
  display: inline-block;
  margin-left: 4px;
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
  color: var(--color-top);
}

.header__top-phone_link {
  /*max-width: 195px;*/
  text-align: right;
}

.header__top-phone_link a:first-child {
  display: inline-block;
  white-space: nowrap;
}

.header__top-callme_link {
  /*max-width: 132px;*/
}

.header__top-callme_link a {
  color: #000;
  font-size: 12px;
  line-height: 18px;
  border-bottom: 1px dashed;
}

.header__top-search_link a {
  font-size: 12px;
  line-height: 18px;
}

.page-text iframe {
  max-width: 100%;
}

.header__top-search_link a span:last-child {
  color: #000;
}

.header__top-login_link a,
.header__top-user_link a,
.header__top-user_link .form-buttons .btn {
  font-weight: 700;
  font-size: 10px;
  line-height: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.header__top-login_link a span:last-child,
.header__top-user_link a span:last-child {
  color: #000;
}

.header__top-search_link a span.material-symbols-outlined,
.header__top-login_link a span.material-symbols-outlined,
.header__top-user_link a span.material-symbols-outlined {
  color: #000;
  font-size: 19px;
  line-height: 19px;
  vertical-align: top;
  position: relative;
  top: 2px;
  font-weight: normal;
  margin-right: 3px;
}

.header__top-search_link a span.material-symbols-outlined {
  top: 3px;
}

.header__top-login_link a span.material-symbols-outlined,
.header__top-user_link a span.material-symbols-outlined {
  /*line-height: 13px;*/
}

.swiper,
.swiper-wrapper {
  width: 100%;
  height: auto;
}

.index-swiper .swiper-slide {
  height: 80vh; /* 630px было */
}

.main-wrapper .container.main-container-for-block-tiles-slider {
  position:  relative;
  /*padding: 0;*/
}

.swiper-button-next-5, .swiper-button-prev-5 {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44* 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px -(var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-maintheme);
}

.swiper-button-next-5 {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
}

.swiper-button-prev-5 {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
}

.swiper-button-next-5:after {
    content: 'next';
}

.swiper-button-prev-5:after {
    content: 'prev';
}

.swiper-button-next-5:after, .swiper-button-prev-5:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.index-swiper:hover .swiper-button-next:after,
.index-swiper:hover .swiper-button-prev:after {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-maintheme);
}

.swiper-buttons-prev-next {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  right: 0;
}

.slider_index .swiper-buttons-prev-next .container {
  position: relative;
  padding-top:0;
}

.index-swiper .swiper-button-prev,
.index-swiper .swiper-button-next {
  top: 377px;
  border: 2px solid var(--color-top);
  border-radius: var(--main-border-radius);
  width: 48px;
  height: 48px;
  transition: .2s;
}

.index-swiper .swiper-button-prev svg,
.index-swiper .swiper-button-next svg {
  display: block;
  width: 16px;
  height: 16px;
  transition: .2s;
}

.index-swiper .swiper-button-prev:hover,
.index-swiper .swiper-button-next:hover {
  background: var(--color-top);
}

.index-swiper .swiper-button-prev {
  left: 15px;
}

.index-swiper .swiper-button-next {
  right: 15px;
}

.index-swiper .swiper-slide {
  position: relative;
}

.index-swiper .swiper-slide .swiper-slide_bg {
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

body.iww_panel_____visible header.header {
  position: relative;
  /*z-index: 10;*/
}

.swiper-wrapper {
  padding: 0;
  z-index:2;
}

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

.i-slider {
  margin-top: -163px;
}

.slider_index {
  position: relative;
}

.swiper-slide_bg:after {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, .6);
}

.swiper-slide_bg>.container {
  position: relative;
  z-index: 1;
}

.slider_index .container {
  padding-top: 163px;
  height: 100%;
}

.slider_index .row {
  height: 100%;
}

.index-swiper .swiper-slide .swiper-slide_image {
  z-index: 2;
  display: inline-block;
}

.column-slide {
  width: 50%;
  position: relative;
  height: 100%;
  display: flex;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: var(--color-maintheme);
}

#main-catalog .column {
  width: 100%;
  border-radius: var(--main-border-radius);
}

#main-catalog .column-20,
.column-20 {
  width: 20%;
}

#main-catalog .column-25,
.column-25 {
  width: 25%;
}

#main-catalog .column-30,
.column-30 {
  width: 30%;
}

#main-catalog .column-33,
.column-33 {
  width: 33.33333%;
}

#main-catalog .column-40,
.column-40 {
  width: 40%;
}

#main-catalog .column-50,
.column-50 {
  width: 50%;
}

#main-catalog .column-60,
.column-60 {
  width: 60%;
}

#main-catalog .column-66,
.column-66 {
  width: 66.66666%;
}

#main-catalog .column-70,
.column-70 {
  width: 70%;
}

#main-catalog .column-75,
.column-75 {
  width: 75%;
}

#main-catalog .column-80,
.column-80 {
  width: 80%;
}

#main-catalog .column-20,
.has-left-menu .column-20 {
  width: 23.6%;
}

#main-catalog .column-80,
.has-left-menu .column-80 {
  width: 76.4%;
}

#main-catalog .column-100,
.column-100 {
  width: 100%;
}

.block-reasons {
  padding: 60px 0;
  /*background: #F8F9FB;*/
}

.block-reasons__wrapper {
  word-break: break-word;
  border: 1px solid transparent;
  height: 100%;
  padding: 0 15px;
}

.block-reasons__wrapper svg {
  width: 38px;
  height: auto;
}

.block-reasons__wrapper path {}

.block-reasons__wrapper header {
  color: var(--color-textmain);
  margin-top: var(--block-margin-top--with-text);
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;

}

.block-reasons__wrapper p {
  font-weight: 400;
  color: var(--color-textsecondary);
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}

.swiper-slide__caption {
  -ms-flex-item-align: center;
  align-self: center;
  padding: 15px;
  padding-left: 72px;
  max-width: 494px;
}

.swiper-slide__caption-tag {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.swiper-slide__caption-header {
  font-weight: 700;
  font-size: 34px;
  line-height: 40px;
  margin-bottom: 16px;
}

.swiper-slide__caption-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

.swiper-slide__caption-button .btn {
  margin-top: 48px;
}

.swiper-pagination-bullet {
  border: 1px solid rgba(0, 0, 0, .3);
  background: #fff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  border-color: transparent;
  background: var(--color-maintheme);
}

.videoBg {
  display: flex;
  z-index: 0;
  display: block;
  position: absolute;
}

/*.videoBg:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(255, 255, 255, .5);
}*/

.block-categories .row {
  margin-left: 0;
  margin-right: 0;
}

.block-categories__column {
  border: 1px solid #F2F2F2;
  margin: 0 0 -1px -1px;
  position: relative;

  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.block-categories__column:hover {
  -webkit-box-shadow: 0 8px 32px rgb(27 30 37 / 8%);
  -moz-box-shadow: 0 8px 32px rgba(27, 30, 37, 0.08);
  box-shadow: 0 8px 32px rgb(27 30 37 / 8%);
}

.block-categories__column>a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.block-categories__column-img {
  padding-top: 62%;
  position: relative;
}

.block-categories__column-img img {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  max-width: 110px;
  max-height: 110px;
  width: auto;
  height: auto;
}

.block-categories__column-name {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
  text-align: center;
  text-decoration: none;
  color: #222222;
  padding: 19px 0 33px;
  position: relative;

  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;

}

.block-categories__column:hover .block-categories__column-name {
  color: var(--color-maintheme);
}

.block-categories {
  padding-top: 50px;
  padding-bottom: 50px;
}

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

h2 {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  color: #1b1e25;

  margin: 0;
  margin-bottom: 40px;
  margin-top: 40px;
}

.block-popular-offers {
  background: #f8f9fb;
  padding-top: 50px;
  padding-bottom: 50px;
}

.offers .row {
  margin-left: 0;
  margin-right: 0;
}

.offers-column:not(.catalog-element) {
  height: 510px;
  min-width: calc(33.3333% - 16px);
  max-width: calc(33.3333% - 16px);
  width: calc(33.3333% - 16px);
  background: #fff;
  border: none;
  position: relative;
  z-index: 1;
  padding: 34px 24px 24px;
}

.offers-column__first {
  width: 50%;
  min-width: 50%;
  max-width: 50%;
  overflow: hidden;
}

.offers-column__offerbig {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}

.offers-column__offerbig:after {
  content: ' ';
  displaY: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 2;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.offers-column__first:hover .offers-column__offerbig:after {
  opacity: 1;
}

.offers-column__wrapper {
  position: relative;
  z-index: 3;
  height: 100%;
}

.offers-column__tags {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 2;
  text-align: right;
  pointer-events: none;
}

.offers-column__tags>a {
  display: inline-block;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  color: #FFFFFF;
  padding: 6px 8px;
  border-radius: 2px;
}

.offers-column__tags--hit {
  background-color: var(--color-orange);
}

.offers-column__tags--new {
  background-color: var(--color-green);
}

.offers-column__tags--recomend {
  background-color: #E15554;
}

.offers-column__tags--sale {
  background-color: var(--color-violet);
}

.material-symbols-outlined.fill {
  font-variation-settings:
    'FILL' 1
}

.offers-column__rate span {
  color: #E8E8E8;
  cursor: default;
  font-size: 18px;
}

.offers-column__rate span.active {
  color: #F4BB28;
}

.offers-column__info {
  position: absolute;
  top: 210px;
  left: 0;
  right: 0px;
}

.offers-column__name {
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #404040;
  text-decoration: none;
  overflow: hidden;
  margin: 16px 0 10px 0;
  height: unset;
  overflow: hidden;
  height: 66px;
}

.offers-column__first .offers-column__name {
  color: #fff;
}

.offers-column__middle {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}

.offers-column__middle .offers-column__middle-left,
.offers-column__middle .offers-column__middle-right {
  flex: 0 0 auto;
  width: auto;
  max-width: none;

  padding: 2px 8px;

  font-size: 12px;
  line-height: 16px;

}

.offers-column__middle .offers-column__middle-right span:first-child {
  color: var(--color-textsecondary);
}

.offers-column__middle .offers-column__middle-right span:last-child {
  
}

.offers-column__middle .offers-column__middle-left {
  color: var(--color-green);
}

.offers-column__middle .offers-column__middle-left span.not-have {
  color: var(--color-red);
}

.offers-column__middle .offers-column__middle-left span:nth-child(2) {
  font-weight: 600;
}

.offers-column__in-stock,
.offers-column__article {
  font-size: 12px;
  line-height: 16px;
  color: #404040;
}

.offers-column__first .offers-column__in-stock,
.offers-column__first .offers-column__article {
  color: #f2f2f2;
  ;
}


.offers-column__in-stock>a {
  font-size: 12px;
  line-height: 14px;

  color: #1DB940;
  padding-bottom: 5px;
}

.offers-column__in-stock>a>span {

  display: inline-block;
  border-bottom: 1px dashed;
}

.offers-column__in-stock>span {
  display: inline-block;
  margin-left: 2px;
}

.offers-column__prices {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}

.offers-column__prices-now,
.offers-column__prices-old {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  padding: 12px 8px 8px;
  white-space: nowrap;
}

.offers-column__prices-more,
.offers-column__prices-real {
  display: inline-block;
}

.offers-column__prices-more {
  font-size: 16px;
  line-height: 0px;
  padding: 2px 4px 10px;
  text-align: center;
  border: 1px solid #F2F2F2;
  color: #404040;
  border-radius: 2px;
  vertical-align: middle;

  margin-right: 5px;
}

.offers-column__first .offers-column__prices-more {
  border: 1px solid #fff;
  color: #fff;
}

.offers-column__prices-more:hover {
  background: var(--color-maintheme);
  border-color: var(--color-maintheme);;
  color: #fff;
}

.offers-column__prices-real {
  color: #404040;
  font-size: 22px;
  word-break: break-all;
  white-space: nowrap;
  line-height: 1;
  font-weight: 600;
}

.offers-column__first .offers-column__prices-real {
  color: #fff;
}

.offers-column__prices-old,
.compare-item__bottom-old_price {
  font-size: 16px;
  line-height: 20px;
  color: #404040;
  text-decoration: line-through;
  font-weight: 300;
}

.offers-column__first .offers-column__prices-old,
.compare-item__bottom-old_price {
  color: #B0B0B0;
}

.timer__items {
  display: flex;
  margin-left: -2px;
  margin-right: -2px;
}

.timer__item,
.offers-column__counter-quantity {
  display: block;
  padding: 6px 2px;
  text-align: center;
  background-color: #F2F2F2;
  max-width: 65px;
  min-width: 50px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin-left: 1px;
  margin-right: 1px;
}

.timer__item>span:first-child,
.offers-column__counter-quantity>span:first-child {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 2px;
}

.timer__item>span:last-child,
.offers-column__counter-quantity>span:last-child {
  display: block;
  font-size: 10px;
  line-height: 10px;
  font-weight: 300;
  color: #808080;
}

.offers-column__counter {
  display: flex;
  flex-wrap: nowrap;
  margin-left: -1px;
  margin-right: -1px;
  margin-top: 5px;
  /*justify-content: center;*/
  white-space: nowrap;
}

.offers-column__counter-left,
.offers-column__counter-right {
  padding-left: 1px;
  padding-right: 1px;
  margin-bottom: 8px;
}

.offers-column__counter-quantity {
  background: #FBCD56;
}

.offers-column__counter-left>span,
.offers-column__counter-right>span {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 12px;
  color: #404040;
  word-break: break-all;
  max-width: 110px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-height: 34px;

}

.offers-column__first .offers-column__counter-left>span,
.offers-column__first .offers-column__counter-right>span {
  color: #fff;
}

/* #404040 */
.offers-column__other-buttons {
  display: flex;
  justify-content: right;
  text-align: center;
  font-size: 0;
  z-index: 4;
  opacity: 1;
  position: absolute;
  right: 0;
  top: -25px;
  transition-duration: 0.3s;
  left: 0;

}

.offers-column:hover .offers-column__other-buttons {
  opacity: 1;
}

.offers-column__other-buttons>a {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
  margin: 0 1px;
}

.offers-column__other-buttons>a:hover {
  background: var(--color-maintheme);;
}

.offers-column__other-buttons>a>span {
  color: #404040;
  font-size: 18px;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.offers-column__other-buttons>a:hover>span {
  color: #fff;
}

.offers-column__first .offers-column__other-buttons {
  padding-top: 4px;
  text-align: left;
}

.offers-column__first .offers-column__other-buttons>a>span {
  color: #fff;
}

.offers-column__first .offers-column__other-buttons>a:hover {
  background: #fff;
}

.offers-column__first .offers-column__other-buttons>a:hover>span {
  color: var(--color-maintheme);;
}

.offers-column__slider {
  position: relative;
  height: 100%;
}

.offers-column__slider-item {
  height: 100%;
  position: relative;
}

.offers-column__slider-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 95%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.offers-column__slider-container {
  overflow: hidden;
  height: 200px;
  max-height: 294px;
  position: relative;
}

.offers-column__slider-container>.swiper-pagination {
  bottom: 0;
  display: flex;
  width: 100%;
}

.offers-column__slider-container>.swiper-pagination>.swiper-pagination-bullet {
  margin: 0;
  display: block;
  border-radius: 0;
  border: none;
  height: 2px;
  padding: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.offers-column__slider-container__precontainer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.offers-column:not(.offers-column__first) .offers-column__wrapper {
  background: #fff;
  position: relaitve;
  z-index: 1;
}

.block-popular-offers.offers .offers-column {
  border-radius: var(--main-border-radius);
}

.block-popular-offers.offers .offers-column:hover {
  background: transparent;
}


.offers-column:not(.offers-column__first) .offers-column__info .offers-column__properties:not(.offers-column__properties--show) {
  display: none;
  width: 100%;
  height: auto;
}

.offers-column:not(.offers-column__first) .offers-column__info .offers-column__properties-container {
  padding: 0;
}

.offers-column:not(.offers-column__first) .offers-column__info .offers-column__properties-line {
  /*display: flex;*/
  position: relative;
  line-height: 18px;
  margin-bottom: 3px;
}

.offers-column:not(.offers-column__first) .offers-column__info .offers-column__properties-left,
.offers-column:not(.offers-column__first) .offers-column__info .offers-column__properties-right {
  font-size: 12px;
  line-height: 14px;
  color: #404040;

  display: inline-block;

  /*-ms-flex: 50%;
  flex: 0 0 50%;
  max-width: 50%;

  width: 50%;*/

}

/*.offers-column:not(.offers-column__first) .offers-column__info .offers-column__properties-left:before {
  content: ' ';
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 2px;
  border-bottom: 1px dotted rgba(0, 0, 0, .4);
  width: 100%;
}*/

.offers-column:not(.offers-column__first) .offers-column__info .offers-column__properties-left>span,
.offers-column:not(.offers-column__first) .offers-column__info .offers-column__properties-right>span {
  display: inline-block;
  background: #fff;
  position: relative;
  z-index: 2;
}

.offers-column:not(.offers-column__first) .offers-column__info .offers-column__properties-left>span {
  /*padding-right: 2px;*/
  color: #666;
  font-weight: 600;
}

.offers-column:not(.offers-column__first) .offers-column__info .offers-column__properties-right>span {
  /*padding-left: 2px;*/
}

.offers-column:not(.offers-column__first) .offers-column__info .offers-column__properties-left {}

.offers-column:not(.offers-column__first) .offers-column__info .offers-column__properties-right {
  /*text-align: right;*/
}



.offers-column__incart {
  display: flex;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 0;
  height: 40px;
  background: transparent;
  position: absolute;
}


.offers-column__incart-left.offers-column__change-count {
  display: none;
}

.offers-column__incart-left,
.offers-column__incart-right {
  min-height: 1px;
  height: 40px;
}

.offers-column__incart-left {
  flex: 0 0 40%;
  max-width: 40%;
  width: 40%;
}

.offers-column__incart-right {
  flex: 0 0 60%;
  max-width: 60%;
  width: 60%;
}

.offers-column__incart-left {
  width: 0;
  flex: 0 0 0;
  max-width: 0;
  background: var(--color-average);
  border: none;

}

.minifavorite-item__middle-add_to_cart.offers-column__incart {
  display: block;
}

.offers-column__incart .btn {
  height: auto;
  width: auto;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 9px 10px 10px;
  padding-top: 13px;
  white-space: nowrap;
}
/* Button stat */

.block-product-of-the-day {
  padding-top: 50px;
  padding-bottom: 50px;
}

.block-product-of-the-day .row {
  margin-left: 0;
  margin-right: 0;
}

.block-product-of-the-day__column {
  padding: 52px 40px 52px 52px;
  border: 1px solid #F2F2F2;
}

.block-product-of-the-day__column .offers-column__slider-container {
  height: 435px;
  max-height: 435px;
}

.block-product-of-the-day__column .offers-column__tags {
  right: auto;
  left: 4px;
}

.offers-column__nocounter {
  height: 69px;
}

.offers__fast-view {
  opacity: 0;
  display: block;
  width: 198px;
  height: 46px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: rgba(232, 232, 232, 0.88);
  color: #808080;
  font-size: 14px;
  line-height: 15px;
  z-index: 33;
  border-radius: 2px;
  padding: 15px 15px;

}

.block-product-of-the-day__column-left:hover .offers__fast-view {
  opacity: 1;
}

.offers__fast-view span {
  font-size: 14px;
  vertical-align: middle;
  margin-right: 3px;
  position: relative;
  top: -1px;
  transition: 0s;
}

.offers-column__name-big {
  margin-top: 0;
}

.offers-column__name-big a {
  display: inline-block;
  font-size: 22px;
  line-height: 1.35;
  color: #404040;
}

.block-product-of-the-day .offers-column__counter {
  margin-top: 0;
  margin-bottom: 32px;
}

.offers-column__other-buttons-big {
  margin-bottom: 16px;
}

.offers-column__other-buttons-big>a {
  display: inline-block;
  font-size: 10px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #808080;
  border: 1px solid #E8E8E8;
  background-color: #FFF;
  min-height: 32px;
  border-radius: 2px;

  min-width: 135px;
  padding: 8px 12px 6px;

  text-align: center;
}

.offers-column__other-buttons-big>a>span {
  font-size: 15px;
  width: 15px;
  height: 15px;
  vertical-align: middle;
  margin-right: 3px;
  transition: 0s;
}

.offers-column__other-buttons-big>a:hover {
  background: #277ffc;
  color: #fff;
}

.block-product-of-the-day .offers-column__rate {
  display: inline-block;
  margin-left: 20px;
  padding: 5px 0;
  vertical-align: middle;
}

.offers-column__change-count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 4px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  padding: 0;
  border: 1px solid #F2F2F2;

  width: 100%;
  justify-content: space-between;
}

.offers-column__change-count__button {
  display: block;
  position: relative;
  background-color: transparent;
  border: none;
  outline: none;
  width: auto;
  max-width: none;
  padding: 2px 6px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  
  padding: 13px 22px;
  background: var(--color-bottom);

  color: #808080;

  font-size: 16px;
  line-height: 14px;
}

.offers-column .offers-column--is_in_cart .btn span {
  display: none;
}

.offers-column .offers-column--is_in_cart .offers-column__incart-left.offers-column__change-count {
  display: flex;
}

.offers-column .offers-column--is_in_cart .offers-column__incart-left {
  width: 73%;
  flex: 0 0 73%;
  max-width: 73%;
  margin-right: 8px;
}

.offers-column .offers-column--is_in_cart .offers-column__incart-right {
  width: 23%;
  flex: 0 0 23%;
  max-width: 23%;
  text-align: right;
}

.offers-column__name a {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-textmain);
}

.offers-column__name a:hover {
  color: var(--color-maintheme);
}

.offers-column__change-count__input {

  display: block;
  position: relative;
  background-color: transparent;
  border: none;
  outline: none;
  width: auto;
  max-width: none;
  padding: 2px 6px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;


  padding: 15px 3px;
  color: #808080;
  border-left: 0;
  border-right: 0;
  width: 47px;
  text-align: center;
}

.iww-cart__action > span {
  display: inline-block;
  margin-right: 4px;
}

.iww-cart__action > svg {
  display: inline-block;
  margin-left: 4px;
}

.block-product-of-the-day .offers-column__middle {
  margin-bottom: 16px;
}

.block-product-of-the-day .offers-column__prices-real {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: #404040;
}

.block-product-of-the-day .offers-column__prices-old {
  font-size: 20px;
  line-height: 34px;
}

.block-product-of-the-day .offers-column__prices-more {
  font-size: 27px;
  line-height: 0px;
  padding-bottom: 16px;
  position: relative;
  top: -4px;
}

.offers-column__buttons--incart .offers-column__incart {
  display: flex;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  flex: 0 0 auto;
  width: 340px;
}

.offers-column__buttons--incart {
  display: flex;
}

.offers-column__buttons--incart .offers-column__one-click {
  margin-left: 8px;
  flex: 0 0 auto;
  width: 186px;
  padding-top: 20px;
}

.btn-transparent {
  background: transparent;
  border: 1px solid var(--color-maintheme);
  color: var(--color-maintheme);
}

.btn-transparent:hover {

}

.offers-column__buttons--incart .offers-column__one-click .btn {
  height: 54px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 22px;
  border-radius: 0;
}

.block-product-of-the-day__column-right {
  position: relative;
}

.block-product-of-the-day__more {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  min-height: 56px;
  background-color: #f8f8f8;
  border: none;

  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 24px;
  border-radius: 0;
  text-align: center;
}

.block-product-of-the-day__more:hover {
  background: #277ffc;
  color: #fff;
}

.offers-column__variants {
  margin-top: 10px;
}

.offers-column__variants:first-child {
  margin-top: 0;
}

.offers-column__variants-name,
.offers-column__properties-lines-name {
  font-size: 11px;
  line-height: 11px;
  color: #808080;
  margin-bottom: 0px;
}

.offers-column__variants>a,
.offers-column__variants>span {
  display: inline-block;
  padding: 3px 10px;
  color: inherit;
  font-size: 10px;
  font-style: normal;
  font-weight: normal;
  line-height: 10px;
  min-width: 24px;
  text-align: center;
  border: 1px solid #F2F2F2;
  margin-bottom: 3px;
  border-radius: 2px;
  color: #404040;
  background: #fff;
}

.offers-column__variants>span {
  background: #F2F2F2;
  color: #aaa;
}

.offers-column__variants>span:hover {
  cursor: not-allowed;
}

.offers-column__variants>a:hover {
  border-color: #277ffc;
}

.offers-column__variants>a.active {
  border-color: #277ffc;
  background: #277ffc;
  color: #fff;
}

.block-services__item {
  display: block;
  position: relative;
  margin-bottom: 15px;
}

.block-services__item-img {
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 132%;

  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;

}

.block-services__item-name {
  display: block;
  font-size: 18px;
  line-height: 1.22;
  text-align: center;
  margin-top: 10px;
  color: #2d2d2d;

  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.block-services__item:hover .block-services__item-name {
  color: var(--color-maintheme);;
}

.block-services {
  padding-top: 50px;
  padding-bottom: 35px;
  background: #f8f9fb;
}

.block-services__item:hover .block-services__item-img {
  opacity: .7;
}

.block-offer-reviews {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #fff;
}

.block-offer-reviews__slider-item {
  min-height: 1;
  border: 1px solid #F2F2F2;
  background-color: #fff;
  margin-left: 1px;
  margin-right: 1px;
}

.block-offer-reviews__slider-container {
  position: relative;
}

.block-offer-reviews__slider {}

.block-offer-reviews__slider-item__top {
  padding: 24px;
}

.block-offer-reviews__slider-item__bottom {
  padding: 24px;
  border-top: 1px solid #F2F2F2;
}

.block-offer-reviews__slider-container .swiper-button-next-1:after,
.block-offer-reviews__slider-container .swiper-button-prev-1:after {
  opacity: 1;
  font-size: 12px;
  border: 1px solid #F2F2F2;
  color: #808080;
  background: #fff;
  padding: 7px 9px;
  line-height: 12px;
  box-shadow: 0 0 9px 3px rgba(0, 0, 0, .1);
}

.block-offer-reviews__slider-container .swiper-button-next-1:hover:after,
.block-offer-reviews__slider-container .swiper-button-prev-1:hover:after {
  background: var(--color-maintheme);;
  color: #fff;
  border-color: var(--color-maintheme);;
}

.block-offer-reviews__slider-container .swiper-button-next-1.swiper-button-disabled,
.block-offer-reviews__slider-container .swiper-button-prev-1.swiper-button-disabled {
  opacity: 1;
}

.swiper-button-next-1,
.swiper-rtl .swiper-button-prev-1 {
  right: -12px;
}

.swiper-button-prev-1,
.swiper-rtl .swiper-button-next-1 {
  left: -12px;
}

.block-offer-reviews__slider-item__top {
  position: relative;
  padding-left: 96px;
  padding-right: 70px;
}

.block-offer-reviews__slider-image {}

.block-offer-reviews__slider-image img {
  max-width: 72px;
  max-height: 72px;
  width: auto;
  height: auto;

  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.block-offer-reviews__slider-offer__title {
  padding-left: 15px;
}

.block-offer-reviews__slider-offer__title a {
  color: #404040;
  font-size: 14px;
}

.block-offer-reviews__slider-offer__title a:hover {
  color: var(--color-maintheme);;
}

.block-offer-reviews__slider-review__number {
  position: absolute;
  right: 24px;
  height: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  padding-left: 23px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  padding-top: 3px;
}

.block-offer-reviews__slider-review__number .material-symbols-outlined {
  font-size: 18px;
  line-height: 18px;
  color: #F4BB28;
  position: absolute;
  left: 0;
  top: 0;
}

.block-offer-reviews__slider-header {
  font-size: 18px;
  line-height: 1.44;
  color: #404040;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  max-height: 24px;
}

.block-offer-reviews__slider-review {
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  font-size: 14px;
  line-height: 1.75;
  margin-top: 12px;
}

.block-offer-reviews__slider .swiper-lazy-preloader {
  top: 0;
  bottom: 0;
  left: 24px;
  margin: auto;
}

.block-banner-image-and-button {
  min-height: 200px;
  padding: 51px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.block-banner-image-and-button__tag {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #808080;
  letter-spacing: 0.07em;
  line-height: 1.8;
  height: 25px;
  overflow: hidden;
  max-width: 300px;
  margin-bottom: 3px;
}

.block-banner-image-and-button__text {
  font-size: 24px;
  font-weight: 600;
  max-width: 300px;
  color: #404040;
  line-height: 1.46;
  max-height: 100px;
  overflow: hidden;
}

.block-banner-image-and-button__before-button {
  color: #404040;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  max-height: 60px;
  overflow: hidden;
  max-width: 300px;
  margin-bottom: 10px;
}

.block-banner-image-and-button__button .btn {
  font-weight: 600;
}

.block-banner-image-and-button__right {
  padding-left: 30%;
  padding-top: 13px;
}

.block-collections {
  padding-top: 50px;
  padding-bottom: 35px;
}

.block-collections .row {
  align-items: stretch;
}

.block-collections__item {
  margin-bottom: 15px;
}

.block-collections__item-link {
  display: block;
  padding: 24px 26px;
  background-color: #FBFCFD;
  border: 1px solid #F2F2F2;
  border-radius: 2px;
  position: relative;
  height: 100%;
}

.block-collections__item-link:hover {
  box-shadow: 0 6px 24px 0 rgb(0 0 0 / 7%);
}

.block-collections__item-image__container {
  position: relative;
}

.block-collections__item-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 10px;
  bottom: 10px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.block-collections__item-link:hover .block-collections__item-image {
  opacity: .7;
}

.block-collections__item-svg {
  width: 100%;
  height: auto;
}

.block-collections__item-name {
  font-size: 14px;
  color: #404040;
  text-decoration: none;
  text-align: center;
  display: block;
  margin-top: 10px;
  margin-left: -10px;
  margin-right: -10px;
}

/****************************************/

.scrollbar {
  overflow: auto;
  scrollbar-color: #c2c2c2;
  ;
  scrollbar-width: thin;
  padding-bottom: 10px;
  position: relative;
}

/*.scrollbar:after {
  content: ' ';
  display: block;
  left: 0;
  right: 0;
  position: absolute;
  top:100;
  background: #ccc;
}*/

.scrollbar::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  bottom: 5px;
  right: 5px;
  border-radius: 2px;
}

.scrollbar::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 2px;
}

.scrollbar::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #c2c2c2;
}

/****************************************/

.img-responsive {
  max-width: 100%;
  height: auto;
}

.block-compilation {
  padding-top: 50px;
  padding-bottom: 50px;
}

.block-compilation__swiper-container {
  position: relative;
}

.block-compilation__swiper-item {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  border: 1px solid #F2F2F2;
}

.block-compilation__swiper-left {
  display: flex;

  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;

  padding: 16px 48px 16px 40px;
}

.block-compilation__swiper-item__img {
  position: relative;
  padding: 16px 20px;
  flex: 0 0 37%;
  height: 100%;
}

.block-compilation__swiper-item__info {
  padding: 16px 20px;
  min-height: 472px;
  position: relative;
}

.block-compilation__swiper-item__info>.btn {
  position: absolute;
  bottom: 16px;
  left: 20px;
}

.block-compilation__swiper-item__name {
  font-size: 28px;
  line-height: 1.43;
  color: #1B1E25;
}

.block-compilation__swiper-item__name:hover {
  color: var(--color-maintheme);;
}

.block-compilation__swiper-item__text {
  font-size: 14px;
  line-height: 1.71;
  color: #404040;
  margin-top: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  max-height: 144px;
}

.block-compilation__swiper-item__info-scroll {
  max-height: 330px;
  overflow: auto;
}

.block-compilation__swiper-item__properties {
  margin-top: 32px;
}

.block-compilation__swiper-item__properties-item {
  display: flex;
  position: relative;
  margin-bottom: 5px;
}

.block-compilation__swiper-item__properties-item .block-compilation__swiper-item__properties-item__left,
.block-compilation__swiper-item__properties-item .block-compilation__swiper-item__properties-item__right {
  font-size: 12px;
  line-height: 14px;
  color: #404040;

  -ms-flex: 50%;
  flex: 0 0 50%;
  max-width: 50%;

  width: 50%;

}

.block-compilation__swiper-item__properties-item .block-compilation__swiper-item__properties-item__right {
  text-align: right;
}

.block-compilation__swiper-item__properties-item .block-compilation__swiper-item__properties-item__left:before {
  content: ' ';
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 2px;
  border-bottom: 1px dotted rgba(0, 0, 0, .4);
  width: 100%;
}

.block-compilation__swiper-item__properties-item .block-compilation__swiper-item__properties-item__left>span,
.block-compilation__swiper-item__properties-item .block-compilation__swiper-item__properties-item__right>span {
  display: inline-block;
  background: #fff;
  position: relative;
  z-index: 2;
}

.block-compilation__swiper-item__properties-item .block-compilation__swiper-item__properties-item__left>span {
  padding-right: 2px;
}

.block-compilation__swiper-item__properties-item .block-compilation__swiper-item__properties-item__right>span {
  padding-left: 2px;
}

.block-compilation__swiper-right {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  border-left: 1px solid #F2F2F2;
}

.block-compilation__swiper-item__items {
  max-height: 504px;
}

.block-compilation__swiper-item__items-item__container {
  padding: 21px 24px;
  border-bottom: 1px solid #F2F2F2;
}

.block-compilation__swiper-item__items-item__container:last-child {
  border: none;
}

.block-compilation__swiper-item__items-item {
  display: flex;
  margin-left: -8px;
  margin-right: -8px;
}

.block-compilation__swiper-item__items-item__left,
.block-compilation__swiper-item__items-item__right {
  padding-left: 8px;
  padding-right: 8px;
}

.block-compilation__swiper-item__items-item__left {
  -ms-flex: 0 0 56px;
  flex: 0 0 56px;
  max-width: 56px;
  height: 56px;
  position: relative;
}

.block-compilation__swiper-item__items-item__left img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 98%;
  max-height: 98%;
}

.block-compilation__swiper-item__items-item__right {
  -ms-flex: 0 0 calc(100% - 56px);
  flex: 0 0 calc(100% - 56px);
  max-width: calc(100% - 56px);
}

.block-compilation__swiper-item__items-item__name a {
  display: inline-block;
  font-size: 13px;
  line-height: 1.38;
  color: #808080;
  text-decoration: none;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  max-height: 18px;
  margin-bottom: 5px;
}

.block-compilation__swiper-item__items-item__name a:hover {
  color: var(--color-maintheme);;
}

.block-compilation__swiper-item__items-item__price {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #404040;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  max-height: 16px;
}

.block-compilation__swiper-item__items-item__price-old {
  font-size: 12px;
  line-height: 1;
  color: #808080;
  text-decoration: line-through;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  max-height: 12px;
}

.block-compilation__navigation {
  display: flex;
  margin-left: -8px;
  margin-right: -8px;
  margin-bottom: 15px;
}

.block-compilation__navigation>ul,
.block-compilation__navigation>.block-compilation__navigation-right {
  padding-left: 8px;
  padding-right: 8px;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.block-compilation__navigation>.block-compilation__navigation-right {
  text-align: right;
}

.block-compilation__navigation>ul {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.block-compilation__navigation>ul li {
  padding-right: 15px;
}

.block-compilation__navigation>ul li:last-child {
  padding-right: 0;
}

.block-compilation__navigation>ul li a {
  display: block;
  padding: 0 0 8px 0;
  position: relative;
  font-size: 14px;
  color: #404040;
}

/*.block-compilation__navigation > ul li a span {
  display: inline-block;
  position: relative;
}*/

.block-compilation__navigation>ul li a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: #2d2d2d;
  width: 0;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.block-compilation__navigation>ul li a.active {
  color: var(--color-maintheme);;
}

.block-compilation__navigation>ul li a.active:after {
  width: 100%;
  opacity: 1;
  background: var(--color-maintheme);;
}

.block-compilation__navigation>ul li a:hover:after {
  width: 100%;
  opacity: 1;
}

.block-compilation__navigation-right a {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #B0B0B0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.block-compilation__navigation-right a:hover {
  color: var(--color-maintheme);;
}

.block-compilation__swiper-container {
  display: none;
}

.block-compilation__swiper-container.active {
  display: block;
}

.block-compilation__swiper-container .swiper-button-next:after,
.block-compilation__swiper-container .swiper-button-prev:after {
  opacity: 1;
  font-size: 12px;
  border: 1px solid #F2F2F2;
  color: #808080;
  background: #fff;
  padding: 22px 17px;
  line-height: 12px;
  box-shadow: 0 0 9px 3px rgba(0, 0, 0, .1);
}

.block-compilation__swiper-container .swiper-button-next:hover:after,
.block-compilation__swiper-container .swiper-button-prev:hover:after {
  background: var(--color-maintheme);;
  color: #fff;
  border-color: var(--color-maintheme);;
}

.block-compilation__swiper-container .swiper-button-next.swiper-button-disabled,
.block-compilation__swiper-container .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}

.block-compilation__swiper-container .swiper-button-next {
  right: -12px;
}

.block-compilation__swiper-container .swiper-button-prev {
  left: -12px;
}

.block-company-reviews {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #f8f9fb;
}

.block-company-reviews__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.block-company-reviews__left,
.block-company-reviews__right {}

.block-company-reviews__left {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;

}

.block-company-reviews__right {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
  padding-left: 40px;
}

.block-company-reviews__left-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 20px;
}

.block-company-reviews__swiper-item__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  margin-left: -8px;
  margin-right: -8px;
  height: 80px;
  overflow: hidden;
}

.block-company-reviews__swiper-item__header-left,
.block-company-reviews__swiper-item__header-right {
  padding-left: 8px;
  padding-right: 8px;
}

.block-company-reviews__swiper-item__header-left {
  -ms-flex: 0 0 96px;
  flex: 0 0 96px;
  max-width: 96px;
  position: relative;
}

.block-company-reviews__swiper-item__header-right {
  -ms-flex: 0 0 calc(100% - 96px);
  flex: 0 0 calc(100% - 96px);
  max-width: calc(100% - 96px);
  padding-top: 8px;
}

.block-company-reviews__swiper {
  border: 1px solid #F2F2F2;
}

.block-company-reviews__swiper-item {
  background: #fff;
  border-right: 1px solid #F2F2F2;
  padding: 30px 38px 20px 38px;
  min-height: 368px;
  height: 100%;
}

.block-company-reviews__swiper-item__header-right__date {
  display: block;
  margin-bottom: 12px;
  font-size: 10px;
  line-height: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #808080;
}

.block-company-reviews__swiper-item__header-right__name {
  display: block;
  font-size: 18px;
  line-height: 20px;
  color: #404040;
}

.block-company-reviews__swiper-item__review>p {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  color: #808080;
  margin-top: 15px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  max-height: 120px;
}

.block-company-reviews__swiper-container {
  position: relative;
}

.block-company-reviews__swiper-container .swiper-button-next-3:after,
.block-company-reviews__swiper-container .swiper-button-prev-3:after {
  opacity: 1;
  font-size: 12px;
  border: 1px solid #F2F2F2;
  color: #808080;
  background: #fff;
  padding: 7px 9px;
  line-height: 12px;
  box-shadow: 0 0 9px 3px rgba(0, 0, 0, .1);
}

.block-company-reviews__swiper-container .swiper-button-next-3:hover:after,
.block-company-reviews__swiper-container .swiper-button-prev-3:hover:after {
  background: var(--color-maintheme);;
  color: #fff;
  border-color: var(--color-maintheme);;
}

.block-company-reviews__swiper-container .swiper-button-next-3.swiper-button-disabled,
.block-company-reviews__swiper-container .swiper-button-prev-3.swiper-button-disabled {
  opacity: 1;
}

.block-company-reviews__swiper-container .swiper-button-next-3 {
  right: -12px;
}

.block-company-reviews__swiper-container .swiper-button-prev-3 {
  left: -12px;
}

.block-sale {
  padding-top: 50px;
  padding-bottom: 35px;
}

.block-sale .container,
.block-articles .container {
  position: relative;
}

.block-sale__all-link {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #B0B0B0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  position: absolute;
  right: 0;
  top: 10px;
}

.block-sale__all-link:hover {
  color: var(--color-maintheme);;
}

.block-sale .column,
.block-articles .column {
  margin-bottom: 30px;
}

.block-sale__item,
.block-article__item {
  background: #fff;
  border: 1px solid #F2F2F2;
  border-radius: 2px;
  height: 100%;
  position: relative;
}

.block-sale__item-img,
.block-article__item-img {
  display: block;
  padding-top: 56.25%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.block-sale__item .timer__item>span:first-child {
  font-size: 12px;
  line-height: 12px;
  display: inline-block;
}

.block-sale__item .timer__item>span:last-child {
  display: inline-block;
}

.block-sale__item .timer__item,
.block-sale__item .offers-column__counter-quantity {
  max-width: none;
  min-width: 40px;
  padding: 2px 4px 4px;
  white-space: nowrap;
}

.block-sale__item-info,
.block-article__item-info {
  padding: 24px;
}

.block-sale__item .offers-column__counter-quantity>span:last-child {
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  color: #404040;
  display: inline-block;
}

.block-sale__item-name {
  font-size: 12px;
  line-height: 1.333333;
  color: #808080;
  margin-bottom: 8px;
  max-height: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  /*margin-top: 15px;*/
}

.block-sale__item-text {
  font-size: 15px;
  line-height: 1.47;
  color: #404040;
  text-decoration: none;
  display: block;
  height: 100px;
  overflow: hidden;
  position: relative;
}

.block-sale__item-text:after {
  content: ' ';
  position: absolute;
  display: block;
  height: 10px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.block-sale__item-name:hover,
.block-sale__item-text:hover {
  color: var(--color-maintheme);;
}

.block-sale__buttons {
  margin-bottom: 15px;
  text-align: center;
}

.block-articles__all-link {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #B0B0B0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  position: absolute;
  right: 0;
  top: 10px;
}

.block-articles__all-link:hover {
  color: var(--color-maintheme);;
}

.block-articles {
  padding-top: 50px;
  padding-bottom: 35px;
}

.block-article__item-name {
  display: block;
  word-break: break-word;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.5;
}

.block-article__item-text {
  margin-top: 14px;
  font-size: 14px;
  line-height: 21px;
  color: #808080;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  max-height: 63px;
}

.block-article__item--first .block-article__item-img {
  background-position: top center;
  position: relative;
}

.block-article__item--first .block-article__item-img:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.block-article__item-text__wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 72px 40px 48px;
  pointer-events: none;
  z-index: 5;
}

.block-article__item--first .block-article__item-name {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.32;
  color: #FFF;
  max-height: none;
  padding: 0;
  margin-top: 0;
  pointer-events: none;
}

.block-article__item--first .block-article__item-text {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #F2F2F2;
  max-height: 0;
  margin-top: 0;
  padding: 0;
  opacity: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.block-article__item--first:hover .block-article__item-text {
  max-height: 44px;
  margin-top: 8px;
  opacity: 1;
}

.block-about {
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid #F2F2F2;
  border-bottom: 1px solid #F2F2F2;
}

.block-about__image {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 100%;
}

.block-about__video-link {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.block-about__video-link:hover {
  opacity: .7;
}

.block-about .row {
  margin-left: -20px;
  margin-right: -20px;
}

.block-about__left,
.block-about__right {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.block-about__left {
  min-height: 160px;
}

.theme-bg {
  fill: var(--color-maintheme);;
}

.block-about__tag {
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B0B0B0;
  margin-bottom: 16px;
}

.block-about__text {
  font-size: 14px;
  line-height: 24px;
  color: #808080;
}

h1.h2 {
  font-size: 32px;
  line-height: 40px;
  color: #1B1E25;
}

.block-about__reasons {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  margin-left: -12px;
  margin-right: -12px;
  margin-top: 20px;
}

.block-about__reasons-item {
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  /*  margin-left: -8px;
  margin-right: -8px;*/
  flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
}

.block-about__reasons-item__left,
.block-about__reasons-item__right {
  padding-left: 8px;
  padding-right: 8px;
  min-height: 1px;
}

.block-about__reasons-item__left {
  flex: 0 0 64px;
  max-width: 64px;
  width: 64px;
  padding-left: 0;
}

.block-about__reasons-item__left>svg>path {
  stroke: var(--color-maintheme);;
}

.block-about__reasons-item__right {
  flex: 0 0 calc(100% - 64px);
  max-width: calc(100% - 64px);
  width: calc(100% - 64px);
}

.block-about__reasons-item__right-name {
  font-size: 16px;
  line-height: 20px;
  color: #404040;
}

.block-about__reasons-item__right-text {
  font-size: 14px;
  line-height: 19px;
  color: #808080;
  margin-top: 8px;
}

.block-about .btn {
  margin-top: 20px;
}

.block-partners {
  padding-top: 50px;
  padding-bottom: 50px;
}

.block-partners__name {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  color: #1b1e25;
  margin-bottom: 10px;
}

.block-partners__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  color: grey;
  margin-bottom: 15px;
}

.block-partners__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.block-partners__list-item {
  display: block;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  padding: 20px 30px;
}

.block-partners__list-item__image {
  display: block;
  opacity: .5;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 30%;
  max-width: 88%;
}

.block-partners__list-item {
  position: relative;
}

.gray-bg .block-partners__list-item__image {
  background-color: rgba(0, 0, 0, .1);
}

.block-partners__list-item__image:hover {
  filter: none;
  opacity: 1;
}

.block-question {
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--color-maintheme);;
  /*overflow: hidden;*/
}

.block-question__left {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.1;
  color: #fff;
  word-break: break-word;
  position: relative;
}

.block-question__middle {
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  white-space: normal;
  position: relative;
}

.block-question__right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  position: relative;
}

.block-question__right .btn {
  color: #fff;
  border-color: #fff;
}

.block-question__left-question {
  display: block;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 143px;
  transform: translateY(-71px);
  text-align: center;
  background-image: url(../img/design/question.png);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}

.block-question__left>span:last-child {
  display: block;
  position: relative;
  z-index: 10;
}

footer.footer-main {
  background: #2b2f32;
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-main .row {
  justify-content: left;
}

.footer-column__phone,
.footer-column__email,
.footer-column__address {
  display: block;
  color: #fff;
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
}

.footer-column__phone:hover,
.footer-column__email:hover,
.footer-column__address:hover {
  color: #fff;
}

.footer-column__callme {
  margin-bottom: 15px;
}

.footer-column__phone span:first-child,
.footer-column__email span:first-child,
.footer-column__address span:first-child {
  color: #fff;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 19px;
  line-height: 19px;
}

.footer-column__email span:last-child {
  display: inline-block;
  border-bottom: 1px solid;
}

.footer-column__phone {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

.footer-column__email {
  font-size: 14px;
}

.footer-column__address {
  font-size: 14px;
}

.footer-column__top-link {
  padding-bottom: 24px;
}

.footer-column__top-link>a {
  font-size: 15px;
  font-style: normal;
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
  font-weight: bold;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  /*padding-top: 24px;*/
}

.footer-menu li {}

.footer-menu li a {
  display: block;
  padding: 4px 0;
  color: var(--color-top);
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  padding-left: 10px;
}

.footer-column__search {
  position: relative;
  margin-bottom: 20px;
}

.footer-column__search input {
  color: #757575;
  font-size: 13px;
  line-height: 1.5;
  background: #414447;
  width: 100%;
  height: 100%;
  border: none;
  padding-left: 15px;
  height: 41px;
  border-radius: 2px;
}

.footer-column__search button {
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
  color: #c2c2c2;
}

.footer-column__socials {
  display: flex;
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-column__title-socials {
  font-size: 14px;
  color: #777e89;
}

.footer-column__socials li {
  margin-right: 10px;
}

.footer-column__socials li a {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/tech/socials-circle.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
}

.footer-column__socials li a.footer-column__socials--vk {
  background-position: -320px 0;
}

.footer-column__socials li a.footer-column__socials--twitter {
  background-position: -416px 0;
}

.footer-column__socials li a.footer-column__socials--youtube {
  background-position: -448px 0;
}

.footer-column__socials li a.footer-column__socials--telegram {
  background-position: -192px 0;
}

.footer-column__socials li a.footer-column__socials--whatsapp {
  background-position: -256px 0;
}

.footer-column__socials li a.footer-column__socials--instagram {
  background-position: -384px 0;
}

.footer-creator {
  color: #fff;
  margin-top: 15px;
  font-size: 12px;
}

.footer-creator a {
  font-size: 12px;
  color: #fff;
  border-bottom: 1px solid;
}

/**************************************************************/

h1 {
  font-size: 30px;
  margin-top: 5px;
  margin-bottom: 30px;
  line-height: 1.2;
  font-weight: 400;
  display: block;
}

body header.header {
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  background-repeat: no-repeat;
}

body:not(.is-main-page) header.header {
	margin-bottom: 30px;
}

body.is-inline-search-enable header.header {
  margin-bottom: 100px;
}

body.is-inline-search-enable .main-search-widget__abs {
  top: 150px;
}

body.is-inline-search-enable .ov-all-search {
  border-top: 1px solid rgba(0, 0, 0, .05);
}

main.main {
  min-height: calc(100vh - 476px);
  padding-bottom: 0;
}

.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  /*margin: 30px 0 5px;*/
  margin:0;
  max-width: 100%;
  padding-bottom: 6px;
}

.breadcrumb li {
  display: block;
  white-space: nowrap;
}


.breadcrumb li:after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 8px;
    margin: 0 7px 0 6px;
    background-image: url('data:image/svg+xml;utf8,<svg width="4" height="8" viewBox="0 0 4 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.5 7L3.5 4L0.5 1" stroke="%23878795" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    top: -5px;
}

.breadcrumb li:last-child a {
  color: var(--color-textmain);
}

.breadcrumb li:last-child:after {
  display: none;
}

.breadcrumb li a {
  display: inline-block;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-textsecondary);
  white-space: nowrap;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-top: 0px;
}

.breadcrumb li a:hover {
  color: var(--color-maintheme);;
}

.catalog-subcategoreis {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.catalog-subcategoreis__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  border: 1px solid #f2f2f2;
  margin: 0 -1px -1px 0;
  padding: 30px;
  display: block;
  position: relative;
  z-index: 1;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding-left: 115px;
  max-width: 25%;
}

.catalog-subcategoreis__item.no-icon {
  padding-left: 30px;
}

.catalog-subcategoreis__item:hover {
  z-index: 2;
  -webkit-box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
}

.catalog-subcategoreis__item>svg {
  stroke: var(--color-maintheme);;
  fill: var(--color-maintheme);;
  position: absolute;
  left: 40px;
  top: 34px;
  margin: auto;
}

.catalog-subcategoreis__item>svg>path {}

.catalog-subcategoreis__item>a {
  display: block;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  color: #2d2d2d;
  margin-bottom: 8px;
}

.catalog-subcategoreis__item>a:hover {
  color: var(--color-maintheme);;
}

.catalog-subcategoreis__item>.catalog-subcategoreis__item-subcategories {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0;
}

.catalog-subcategoreis__item>.catalog-subcategoreis__item-subcategories li {
  display: block;
  margin-right: 12px;
  white-space: nowrap;
  overflow: hidden;
}

.catalog-subcategoreis__item>.catalog-subcategoreis__item-subcategories li>a {
  /*display: block;
  text-overflow: ellipsis;*/
}

.catalog-subcategoreis__item>.catalog-subcategoreis__item-subcategories li:last-child {
  margin-right: 0;
}

.catalog-subcategoreis__item>.catalog-subcategoreis__item-subcategories li a {
  font-size: 13px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  color: #666666;
  white-space: nowrap;
}

.catalog-subcategoreis__item>.catalog-subcategoreis__item-subcategories li a:hover {
  color: var(--color-maintheme);;
}

.catalog-subcategoreis__item>.catalog-subcategoreis__item-subcategories li a span,
.catalog-subcategoreis__item>.catalog-subcategoreis__item-subcategories li a:hover span {
  color: #1d1d1d;
}

.catalog-tags {
  display: block;
  font-size: 0;
  white-space: nowrap;
  max-width: 100%;
  margin-bottom: 20px;
}

.catalog-tags__container {
  position: relative;
}

.catalog-tags__container:before {
  content: ' ';
  position: absolute;
  display: block;
  width: 40px;
  z-index: 1;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.catalog-tags>a {
  display: inline-block;
  padding: 7px 16px;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #404040;
  border: 1px solid var(--color-textsecondary);
  border-radius: var(--main-border-radius);
  margin-right: 10px;
}

.catalog-tags>a:last-child {
  margin-right: 0;
}

.catalog-tags>a:hover,
.catalog-tags>a.active {
  border-color: var(--color-maintheme);
  /*background-color: #bed9fe;
  fill: #bed9fe;*/
}

.main-wrapper .container,
.main-wrapper .container-fluid,
.main-wrapper .container-lg,
.main-wrapper .container-md,
.main-wrapper .container-sm,
.main-wrapper .container-xl,
.main-wrapper .container-xxl,
footer.footer-main .container {
  padding-right: 15px;
  padding-left: 15px;
  margin-left: auto;
  margin-right: auto;
}

body.iww_panel_____visible header.header {
  margin-top: 0 ! important;
}

.header__navigation .header__navigation-container>ul>li:first-child>a>span.material-symbols-outlined.bottom {
  margin: 0;
}

.header__navigation .header__navigation-container>ul>li.nofill>ul li.active > a {
  color: var(--color-maintheme);;
}

.header__navigation .header__navigation-container>ul>li.active2>a {
  background-color: #008ffc;
  fill: #008ffc;
}

.footer-logo {
  margin-top: 15px;
}

/*
.iww_panel_____visible .simple-text {
  margin-top: 25px;
}
*/

.contacts_map .yandex-map {
  height: 300px;
}

.iww_panel--enabled .iww_additionalButtonsEdit {
  display: block;
  min-height: 47px;
}

.iww_additionalButtonsEdit {
  display: none;
}

.iww_additionalButtonsEdit>div {
  min-height: 46px;
  margin-bottom: 1px;
  padding-left: 86px ! important;
  padding-top: 9px ! important;
}

.contacts_map-info {
  min-height: 126px;
  padding: 12px 24px;
  overflow: hidden;
  box-shadow: 0 7px 35px 0 rgb(0 0 0 / 20%);
  margin-top: -63px;
  position: relative;
  background: #fff;
}

.contacts_map-info2 {
  justify-content: left;
}

.contacts_map-info2 > div:not(.contacts_map-column) {
  padding-left: 20px;
}

.contacts_map-column {
  position: relative;
  padding-left: 36px;
}

.contacts_map-info2 .contacts_map-column {
  width: 100%;
}


.contacts_map-column .material-symbols-outlined {
  position: absolute;
  color: #808080;
  font-size: 36px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  top: 33px;
  /*bottom: 0;*/
  left: 0;
  margin: auto;
}

.contacts_map-info__item {
  padding-left: 20px;
  padding-top: 27px;
}

.contacts_map-info__item header {
  font-weight: normal;
  color: #bdbdbd;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 4px;
}

.header.header-filter {
  display: block;
  width: 100%;
  height: 21px;
  margin-bottom: 15px;
  position: relative;
}

.filter-enable,
.filter-unenable {
  position: absolute;
  right: 0;
  top: 4px;
  font-size: 18px;
}

.header-filter .filter-enable {
  display: none ! important;
}

.header-filter .filter-unenable {
  display: block ! important;
}

.header-filter.main-filter--enable .filter-enable {
  display: block ! important;
}

.header-filter.main-filter--enable .filter-unenable {
  display: none ! important;
}

.header.header-filter span {
  display: inline-block;
  vertical-align: middle;
  color: #404040;
}

.header.header-filter:hover span {
  color: var(--color-maintheme);;
}

.filter-header-text {
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 600;
  min-height: 1px;
  position: realtive;
  text-transform: uppercase;
}

.main-filter__content {
  display: none;
  height: 0;
  overflow: hidden;
  transition: height 2000ms ease-in-out;
}

.main-filter__content.main-filter__content--enable {
  display: block;
  height: auto;
}

.main-filter__block {
  padding: 15px;
  border-bottom: none;
  max-height: 250px;
  overflow: auto;
  margin-bottom: 8px;
  background: #fff;
  border-radius: var(--main-border-radius);
}

.main-filter__block:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  ;
}

.nouislider-container {
  height: 10px;
}

.nouislider-container .noUi-connect {
  background: var(--color-maintheme);;
}

.nouislider-container .noUi-handle {
  height: 18px;
  width: 18px;
  top: -5px;
  right: -9px;
  /* half the width */
  border-radius: 9px;
}

.noUi-handle:before,
.noUi-handle:after {
  display: none;
}

.main-filter__block-header__name {
  display: block;
  position: relative;
  padding: 0 0px 17px;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
}


.main-filter__block-header .is--enable {
  display: none;
}

.main-filter__block-header .is--unenable {
  display: block;
}

.main-filter__block-header.main-filter__block-header--enable .is--enable {
  display: block;
}

.main-filter__block-header.main-filter__block-header--enable .is--unenable {
  display: none;
}

.main-filter__block-header {
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 12px;
  color: #808080;
}

.main-filter__block-header:hover {
  font-size: 12px;
  line-height: 12px;
  color: #808080;
}

.main-filter__block-header .material-symbols-outlined {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  line-height: 16px;
}

.main-filter__form {
  margin-bottom: 30px;
}

.main-filter__block-content {
  padding-bottom: 5px;
}

.noUi-touch-area {
  cursor: pointer;
}

.nouislider-currents {
  display: flex;
}

.nouislider-currents__min,
.nouislider-currents__max {
  font-size: 13px;
  color: #666;
  padding-top: 7px;
  flex: 0 0 50%;
  display: block;
}

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

.main-filter__block-content {
  display: none;
}

.main-filter__block-content.main-filter__block-content--enable {
  display: block;
}

.main-filter__block-content label {
  display: block;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 3px;
}

.main-filter__block-content label input[type="checkbox"] {
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.main-filter__block-bottom {
  border-radius: 0;
}

.main-filter__block-bottom .btn .material-symbols-outlined {
  font-size: 20px;
  line-height: 20px;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
  position: reltive;
  top: -1px;
}

/*.main-filter__block:after {
  content: ' ';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  z-index: 2;
}
*/

.catalog-header {
  display: flex;
  padding-bottom: 12px;
}

.catalog-header__right {
  flex: 0 0 30%;
}

.catalog-header__left {
  flex: 0 0 70%;
}

.catalog-header__left a {
  color: #bababa;
  display: inline-block;
  margin-right: 4px;
}

.catalog-header__left a:hover,
.catalog-header__left a.active {
  color: #404040;
}

.catalog-header__left a span {
  vertical-align: top;
}

.catalog-header__left a:last-child span {
  font-size: 20px;
  line-height: 20px;
  position: relative;
  top: 2px;
}

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

.catalog-sort-active,
.catalog-sort-active:hover,
.catalog-sort-active>span {
  vertical-align: top;
  color: var(--color-textsecondary);
  font-size: 12px;
  background: #fff;
  border: 1px solid var(--color-bottom);
  border-radius: 8px;
  display: inline-block;
  padding: 6px 8px 6px 16px;
}

.catalog-sort-active>span {
  font-size: 18px;
  position: relative;
  top: 1px;
  margin-right: 6px;
}

.catalog-views__list > a {
  display: inline-block;
  border: 1px solid var(--color-bottom);
  background: #fff;
  border-radius: 8px;
  padding: 5px 7px 7px;
  margin-right: 4px;
}

.catalog-views__list > a:last-child {
  margin-right: 0;
}

.catalog-views__list > a svg path {
  fill: var(--color-textsecondary);
}

.catalog-views__list > a.active svg path {
  fill: var(--color-textmain);
}

.header.header-filter span:first-child {
  margin-right: 8px;
}

.catalog-header__right {
  position: relative;
  display: flex;
  justify-content: end;
}

.catalog-header__right > div:first-child {
  margin-right: 8px;
}

.catalog-sort-list {
  display: none;
  position: absolute;
  -webkit-box-shadow: 0 8px 32px 0 rgb(27 30 37 / 8%);
  -moz-box-shadow: 0 8px 32px 0 rgba(27, 30, 37, 0.08);
  box-shadow: 0 8px 32px 0 rgb(27 30 37 / 8%);
  bottom: auto;
  left: auto;
  right: 0;
  top: auto;
  height: auto;
  width: 265px;
  background-color: #fff;
  cursor: default;
  margin-top: 10px;
  padding: 20px 25px 20px;
  position: absolute;
  z-index: 25;
  text-align: left;
}

.catalog-sort-list.active {
  display: block;
}

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

.catalog-sort-list ul li {
  margin-bottom: 5px;
}

.catalog-sort-list ul a {
  color: #000;
  font-size: 14px;
}

.catalog-sort-list ul a span {
  display: inline-block;
  color: #666;
  font-size: 11px;
  margin-left: 10px;
}

.catalog-sort-list ul a:hover {
  color: #277ffc;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100%;
}

.tshop2-pagination {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 30px;
  display: block;
  font-size: 0;
}

.tshop2-pagination li {
  display: inline-block;
  margin-right: 2px;
}

.tshop2-pagination li a,
.tshop2-pagination li span {
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
  line-height: 14px;
  text-align: center;
  padding: 6px;
  border-radius: 4px;
  min-width: 32px;
  height: 32px;
  overflow: hidden;

  background: transparent;
  color: #2d2d2d;
  padding: 9px;
}

.tshop2-pagination li a:hover,
.tshop2-pagination li.active span {
  background: var(--color-maintheme);
  color: #fff;
}

.geo-list {
  column-count: 4;
}

.geo-list__cont-alpha {
  margin-bottom: 15px;
  break-inside: avoid;
  page-break-inside: avoid;
}

.geo-list__title-alpha {
  font-size: 17px;
  font-weight: bold;
}

.geo-list__item a {
  font-size: 13px;
}

.geo-list__item a.active {
  font-weight: 600;
}

.geo-city__search {
  position: relative;
}

.geo-city__search-input {
  border: none;
  height: 40px;
  border-bottom: 2px solid rgba(0, 0, 0, .1);
  padding-left: 15px;
  padding-right: 15px;
  font-size: 14px;
  line-height: 14px;
  width: 100%;
  margin-bottom: 15px;
}

.geo-city__search-input:focus {
  outline: none;
}

.geo-city__search-container {
  position: absolute;
  background: #fff;
  top: 39px;
  left: 0;
  width: 100%;
}

.geo-city__search-container ul {
  list-style: none;
  padding: 10px;
  margin: 0;
  box-shadow: 0px 10px 9px 1px rgb(0 0 0 / 10%);
}

.geo-city__search-container ul li {}

.geo-city__search-container ul li a {
  font-size: 11px;
  border: none;
  display: block;
  padding: 5px 0;
}

.geo-module {
  position: relative;
}

.iww_panel_____loader--s {
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(255, 255, 255, .8);
  background-image: url(../img/preloader.gif);
  background-repeat: no-repeat;
  background-position: center center;
}

.swiper-slide img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.catalog-element {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
}

.catalog-element__left,
.catalog-element__right,
.catalog-element__center {
  flex: 0 0 33.33333%;
  width: 33.33333%;
  padding-left: 15px;
  padding-right: 15px;
}

.catalog-element__left {
  position: relative;
}

.catalog-element__left .mySwiper2 {
  /*height: 300px;*/
}

.catalog-element__left .mySwiper2 img {
  /*position: absolute;
  max-width: 600px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;*/
}

.catalog-element__left .mySwiper2 .swiper-slide {}

.catalog-element__left .mySwiper {
  padding-top: 30px;
  height: auto;
}

.catalog-element__left .mySwiper .swiper-slide {
  height: 50px;
  position: relative;
  cursor: pointer;
  opacity: .8;
}

.catalog-element__left .mySwiper .swiper-slide:hover,
.catalog-element__left .mySwiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.catalog-element__left .mySwiper .swiper-slide img {
  position: absolute;
  max-width: 50px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.catalog-element__left .mySwiper2 .swiper-button-prev,
.catalog-element__left .mySwiper2 .swiper-button-next {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.catalog-element__left .mySwiper2 .swiper-button-next:after {
  content: 'next';
}

.catalog-element__left .mySwiper2 .swiper-button-prev:after {
  content: 'prev';
}

.catalog-element__left .mySwiper2 .swiper-button-prev:after,
.catalog-element__left .mySwiper2 .swiper-button-next:after {
  opacity: .8;
}

.catalog-element__left .mySwiper2 .swiper-button-next:hover:after,
.catalog-element__left .mySwiper2 .swiper-button-prev:hover:after {
  opacity: 1;
}

.catalog-element .offers-column__incart {
  display: flex;
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  bottom: auto;
}

.catalog-element .offers-column__incart-left,
.catalog-element .offers-column__incart-right {
  flex: 0 0 50%;
  max-width: 180px;
}

.catalog-element__text,
.catalog-element__properties {
  margin-top: 30px;
}

.catalog-element__properties-item {
  display: block;
  position: relative;
}

.catalog-element__properties-item:before {
  content: ' ';
  display: block;
  height: 1px;
  width: 100%;
  border-bottom: 1px dotted rgba(0, 0, 0, .3);
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
  z-index: 1;
}

.catalog-element__properties-item__left,
.catalog-element__properties-item__right {
  max-width: 50%;
  display: inline-block;
  background: #fff;
  padding: 2px;
  position: relative;
  z-index: 2;
}

.catalog-element__properties-item__left {
  text-align: left;
  float: left;
  padding-right: 5px;
}

.catalog-element__properties-item__right {
  text-align: right;
  float: right;
  padding-left: 5px;
}

.catalog-element__properties-item:after {
  content: ' ';
  display: block;
  min-height: 1px;
  clear: both;
}

.catalog-element__properties {
  max-width: 800px;
}


.right-extended-info--overlay {}

.right-extended-info {
  position: fixed;
  bottom: 0;
  top: 0;
  right: -500px;
  width: 500px;
  background: #fff;
  z-index: 12;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.right-extended-info.left-extended-info {
  right: auto;
  left: -500px;
}

.right-extended__overlay {
  position: fixed;
  z-index: 105;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .6);
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  opacity: 0;
  cursor: pointer;
}

.right-extended-info__container {
  height: 100%;
  max-height: 100vh;
  position: relative;
  overflow: auto;
}

.right-extended__overlay.active {
  opacity: 1;
  1
}

.right-extended-info.active {
  right: 0;
  z-index: 110;
}

.right-extended-info.left-extended-info.active {
  right: auto;
  left: 0;
}

.right-extended-panel {
  display: block;
  position: absolute;
  left: -65px;
  right: 0;
  top: calc(50% - 163px);
  height: 326px;
  width: 65px;
  background: #fbfbfb;
  border: 1px solid #e7e7e7;
  overflow: hidden;
}

.right-extended-info.left-extended-info .right-extended-panel {
  left: auto;
  right: -65px;
}

.right-extended-panel__column5 {
  height: 325px;
  top: calc(50% - 162.5px);
}

.right-extended-panel__column4 {
  height: 260px;
  top: calc(50% - 130px);
}

.right-extended-panel__column3 {
  height: 195px;
  top: calc(50% - 97.5px);
}

.right-extended-panel__column2 {
  height: 130px;
  top: calc(50% - 65px);
}

.right-extended-panel__column1 {
  height: 65px;
  top: calc(50% - 32.5px);
}

.right-extended-panel__item {
  display: block;
  width: 65px;
  height: 65px;
  position: relative;
  border-bottom: 1px solid #e7e7e7;
}

.right-extended-panel__item>span.material-symbols-outlined {
  width: 30px;
  height: 30px;
  font-size: 30px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  color: #808080;
}

.right-extended-panel__item:hover>span.material-symbols-outlined {
  color: var(--color-maintheme);;
}

.right-extended-panel__item span.right-extended-panel__item-cartQuantity,
.right-extended-panel__item span.favoriteQuantity,
.right-extended-panel__item span.compareQuantity {
  position: absolute;
  top: 12px;
  right: 12px;
}

.right-extended-panel__item span.right-extended-panel__item-cartQuantity>span,
.right-extended-panel__item span.favoriteQuantity>span,
.right-extended-panel__item span.compareQuantity>span {
  display: block;
  font-size: 11px;
  line-height: 11px;
  font-weight: 500;
  color: #fff;
  padding: 4px 3px 3px 3px;
  border-radius: 50%;
  min-width: 19px;
  text-align: center;
}



.offers.offers-main .column.offers-column .offers-column__change-count__button {
  padding: 19px 18px;
}

.offers.offers-main .column.offers-column .offers-column__change-count__input {
  width: calc(100% - 85px);
}

.offers.offers-main .column.offers-column .offers-column__middle {
  display: block;
}

.offers.offers-main .column.offers-column .offers-column__middle .offers-column__in-stock>span {
  margin-left: 0;
}

.clone-image-for-cart {
  -webkit-transition-duration: 0.6s;
  -moz-transition-duration: 0.6s;
  -ms-transition-duration: 0.6s;
  -o-transition-duration: 0.6s;
  transition-duration: 0.6s;
}

.cart-current-error,
.minifavorite-current-error {
  position: absolute;
  background: #cc0000;
  display: block;
  font-size: 11px;
  line-height: 15px;
  font-weight: 500;
  color: #fff;
  left: 0;
  right: 0;
  bottom: 42px;
}


.cart-current-error>span,
.minifavorite-current-error>span {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 5px;
  padding-bottom: 3px;
  padding-top: 3px;
}

.cart-current-error>span:first-child,
.minifavorite-current-error>span:first-child {
  margin-top: 0;
}

.minicart-header,
.minifavorite-header {
  display: flex;
  padding: 25px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.minicart-header__left,
.minicart-header__right,
.minifavorite-header__left,
.minifavorite-header__right {
  flex: 0 0 50%;
}

.minicart-header__right,
.minifavorite-header__right {
  text-align: right;
}

.minicart-header__right a,
.minifavorite-header__right a {
  font-size: 11px;
  border-bottom: 1px dashed;
}

.minicart-header h3,
.minifavorite-header h3 {
  font-size: 16px;
  color: #222;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

.minicart-header h3 small,
.minifavorite-header h3 small {
  font-size: 13px;
  font-weight: normal;
}

.minicart-content,
.minifavorite-content {
  height: calc(100vh - 287px);
  padding-bottom: 0;
}

.minicart-footer,
.minifavorite-footer {
  height: 140px;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.minifavorite-footer {
  justify-content: flex-end;
}

.iww_panel_____visible .right-extended-info {
  top: 40px;
}

.offers-column__incart .btn:focus {
  box-shadow: none;
}

.minicart-item,
.minifavorite-item {
  display: flex;
  padding: 15px;
  padding-bottom: 25px;
  padding-top: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  min-height: 130px;
  position: relative;
}

/*.minicart-item:last-child {
  border-bottom: none;
}*/

.minicart-item__middle,
.minifavorite .minifavorite-item__middle,
.minifavorite-item__middle {
  flex: 0 0 calc(100% - 200px);
  padding-left: 15px;
}

/* .minifavorite-item__middle{ 
  width: 40%;
} */

.minicart-item__image,
.minicart-item__right,
.minifavorite .minifavorite-item__image,
.minifavorite .minifavorite-item__right,
.minifavorite-item__image,
.minifavorite-item__right {
  max-width: 100px;
  flex: 0 0 100px;
}

.minicart-item__middle-name,
.minifavorite .minifavorite-item__middle-name,
.minifavorite-item__middle-name {
  display: block;
  font-size: 13px;
  line-height: 18px;
  color: #000;
}

.minicart-item__middle-article,
.minifavorite .minifavorite-item__middle-article,
.minifavorite-item__middle-article {
  display: block;
  font-size: 11px;
  line-height: 11px;
  color: #404040;
  margin-top: 5px;
}

.minicart-content>p,
.minifavorite .minifavorite-content>p,
.minifavorite-content>p {
  padding: 15px;
}

.minicart-item__middle-price,
.minifavorite .minifavorite-item__middle-price,
.minifavorite .minifavorite-item__middle-amount,
.minifavorite-item__middle-price,
.minifavorite-item__middle-amount {
  display: block;
  white-space: nowrap;
  font-size: 16px;
  color: #404040;
  font-weight: bold;
  line-height: 1;
  margin-top: 10px;
}

.minicart-item__right,
.minifavorite-item__right {
  position: relative;
}

.minicart-item__quantity,
.minifavorite-item__quantity {
  display: flex;
  position: absolute;
  right: 15px;
  bottom: 15px;
  border: 1px solid #F2F2F2;
}

.minicart-item__quantity-change,
.minifavorite-item__quantity-change {
  display: block;
  flex: 0 0 auto;
  background: #FBFCFD;
  color: #808080;
  padding: 6px 11px;
  text-align: center;
  font-size: 16px;
  line-height: 16px;
}

.minicart-item__quantity-value,
.minifavorite-item__quantity-value {
  width: 40px;
  border: none;
  color: #808080;
  font-size: 11px;
  text-align: center;
}

.minicart-item__quantity-value:focus,
.minifavorite-item__quantity-value:focus {
  outline: none;
}

.minicart-item__delete,
.minifavorite-item__delete {
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  right: 15px;
  color: #cc0000;
}

.minifavorite-item__delete {
  position: inherit;
}

.minicart-item__delete>span,
.minifavorite-item__delete>span {
  display: block;
  font-size: 24px;
  width: 24px;
  height: 24px;
  opacity: 1;
}

.minicart-item:hover .minicart-item__delete,
.minifavorite-item:hover .minifavorite-item__delete {
  opacity: 1;
}

.minicart-item__delete:hover,
.minifavorite-item__delete:hover {
  color: #cc0000;
  transform: rotate(90deg);
}

.minicart-item .cart-current-error,
.minifavorite-item .cart-current-error {
  bottom: 0;
}

.minicart-footer,
.minifavorite-footer {
  display: flex;
  padding: 15px 30px;
}

.minicart-footer__left,
.minifavorite-footer__left {
  flex: 0 0 30%;
  padding-top: 10px;
}

.minicart-footer__right,
.minifavorite-footer__right {
  flex: 0 0 70%;
  max-width: 70%;
  padding-top: 16px;
  text-align: left;
  padding-left: 32px;
}

.minicart-footer__left header,
.minifavorite-footer__left header {
  font-weight: 500;
}

.minicart-footer__left .minicart-footer__price,
.minifavorite-footer__left .minifavorite-footer__price {
  font-weight: 600;
  white-space: nowrap;
}

.minicart-footer__right .btn,
.minifavorite-footer__right .btn {
  padding: 8px 20px 8px;
  font-size: 14px;
}

.contacts_map .yandex-map {
  overflow: hidden;
}

/*******************************************************************/
/*** размеры модальных окон, добавляется класс в ссылке на вызов ***/
/*******************************************************************/

.width300 .tingle-modal-box {
  width: 100%;
  max-width: 300px;
}

.width400 .tingle-modal-box {
  width: 100%;
  max-width: 400px;
}

.width500 .tingle-modal-box {
  width: 100%;
  max-width: 500px;
}

.width600 .tingle-modal-box {
  width: 100%;
  max-width: 600px;
}

.width700 .tingle-modal-box {
  width: 100%;
  max-width: 700px;
}

.width800 .tingle-modal-box {
  width: 100%;
  max-width: 800px;
}

.width900 .tingle-modal-box {
  width: 100%;
  max-width: 900px;
}

.width1000 .tingle-modal-box {
  width: 100%;
  max-width: 1000px;
}

.width1100 .tingle-modal-box {
  width: 100%;
  max-width: 1100px;
}

.width1200 .tingle-modal-box {
  width: 100%;
  max-width: 1200px;
}

/*******************************************************************/
/*******************************************************************/
/*******************************************************************/

.form-feedback__text {
  font-size: 14px;
}

/*******************************************************************/
/****************************** ФОРМЫ ******************************/
/*******************************************************************/

.form-field {
  position: relative;
}

.form-field>.form-control,
.form-field>.form-select {
  display: inline-block;

  height: calc(2.5rem + 2px);
  line-height: 1.25;
  margin-bottom: calc(1rem + 8px);
  width: 100%;

  color: #212529;
  background-clip: padding-box;

  font-weight: 400;
  font-size: 14px;
  line-height: 20px;


  background: var(--color-average);
  border: 1px solid var(--color-bottom);
  border-radius: 8px;

}


.form-field>.form-control.form-control--error:focus,
.form-field>.form-select.form-control--error:focus {
  border-bottom: 0;
}


.site-ajax-form .form-control:focus {
  box-shadow: none;
}

.form-field>textarea.form-control {
  height: calc(10rem);
}

.form-field>label:not(.form-switch-in, .custom-checkbox) {
  position: absolute;
  top: 0;
  left: 0;
  padding: .6rem 16px;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

.form-switch-in {
  margin-bottom: 1rem;
  font-size: 13px;
  line-height: 17px;
  padding-left: 35px;

  display: block;
  min-height: 1.5rem;

  position: relative;
}

.form-check-input-in {
  width: 1em;
  height: 1em;
  margin-top: .25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, .25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;

  position: absolute;
  top: 0;
  left: 0;
}

.form-switch-in .form-check-input-in {
  width: 2em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position .15s ease-in-out;
  cursor: pointer;
}

.form-switch-in .form-check-input-in:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  background-color: var(--color-maintheme);;
  border-color: var(--color-maintheme);;
}

.form-field>label>sup {
  font-size: 65%;
  color: #cc0000;
}

.form-field--agree .form-field__error {
  top: 100%;
}

.form-field--textarea .form-field__error {
  top: calc(100% - 2rem);
}

@media (prefers-reduced-motion: reduce) {
  .form-field>label {
    transition: none;
  }
}

.form-field>.form-control {
  padding: .6rem 16px;
}

.form-field>.form-control::placeholder {
  color: transparent;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.form-field>.form-control:not(:-moz-placeholder-shown) {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.form-field>.form-control:focus,
.form-field>.form-control:not(:placeholder-shown) {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.form-field>.form-control:-webkit-autofill {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.form-field>.form-select {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.form-field>.form-control:not(:-moz-placeholder-shown)~label {
  opacity: 1;
  transform: scale(0.65) translateY(-1.2rem) translateX(0.55rem);
  background: #fff;
  border-color: var(--color-bottom);
  background: var(--color-average);
}

.form-field>.form-control:focus~label,
.form-field>.form-control:not(:placeholder-shown)~label,
.form-field>.form-select~label {
  opacity: 1;
  transform: scale(0.65) translateY(-1.2rem) translateX(0.55rem);
  background: #fff;
  border-color: var(--color-bottom);
  background: var(--color-average);
}

.form-field>.form-control:-webkit-autofill~label {
  opacity: 1;
  transform: scale(0.65) translateY(-1.2rem) translateX(0.55rem);
  background: #fff;
  border-color: var(--color-bottom);
  background: var(--color-average);
}

.form-field>.form-select.form-control--error,
.form-field>.form-control.form-control--error {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.form-field>.form-control:focus,
.form-field>.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
}

.form-field>.form-select.form-control--error:focus {
  border-bottom: none ! important;
}

.form-control--error:focus + label + .form-field__error {
  border-color: #86b7fe;
  border-top: none;
}

.form-field__error {
  position: absolute;
  background-color: rgba(255, 235, 238, 0.95); /* Чуть более насыщенный розовый фон */
  border: 1px solid var(--color-bottom);
  border-top: 0;
  color: #dc3545;
  font-size: 10px;
  line-height: 10px;
  top: calc(100% - 1.6rem);
  left: 0;
  right: 0;
  padding: 4px 8px;
  font-weight: 400;
  border-radius: 0 0  8px 8px;
  transition: all 0.2s ease;
  z-index: 1;

  &::before {
    content: "⚠️";
    margin-right: 4px;
    font-size: 8px;
    line-height: 8px;
    position: relative;
    top: -1px;
  }
}

/*******************************************************************/
/*******************************************************************/
/*******************************************************************/

.tingle-modal .container {
  padding: 0;
}


.btn.btn-sm {
  padding: .25rem .5rem;
  font-size: .875rem;
  border-radius: .2rem;
}

.cart-order__client-types {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  margin-bottom: 15px;
}

.cart-order__client-types li {
  margin-right: 10px;
}

.cart-order__client-types li:last-child {
  margin-right: 0;
}

.btn.btn-transparent--active {
  background: #277ffc;
  color: #fff;
}

.btn.btn-transparent--active:hover {
  background: #008ffc;
}

#cart-order {
  position: relative;
  min-height: 150px;
  margin-top: -10px;
  padding-top: 10px;
}

.cart-order {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
}

.cart-order__left,
.cart-order__right {
  padding-left: 15px;
  padding-right: 15px;
}

.cart-order__left {
  width: 66.66666%;
}

.cart-order__right {
  width: 33.33333%;
}

.cart-order__container {
  /*min-height: 300px;
  background: rgba(0, 0, 0, .1);*/
}

.cart-order h2 {
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 20px;
  margin-top: 0;
}

.cart-order__block-choise {
  display: flex;
  margin-left: -7px;
  margin-right: -7px;
  flex-wrap: wrap;
}

.cart-order__block-choise__item {
  flex: 0 0 33.33333%;
  padding-left: 7px;
  padding-right: 7px;
  margin-bottom: 15px;
}

.cart-order__block-container {
  display: block;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: .25rem;
  padding: 15px;
  height: 130px;
  position: relative;
  padding-left: 112px;
  background: #fff;
}

.cart-order__block-container .btn {
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.cart-order__block-choise__svg {
  display: block;
  width: 59px;
  position: absolute;
  left: 15px;
  top: 15px;
}

.cart-order__block-choise__name {
  color: #000;
}

.cart-order__block-choise__svg svg path {
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  fill: rgba(0, 0, 0, .1);
}

.cart-order__block-container:hover,
.cart-order__block-choise__item--active .cart-order__block-container {
  border-color: #277ffc;
}

.cart-order__block-container:hover .cart-order__block-choise__svg svg path,
.cart-order__block-choise__item--active .cart-order__block-container .cart-order__block-choise__svg svg path {
  fill: #277ffc;
}

.cart-order__block-container:hover .btn,
.cart-order__block-choise__item--active .cart-order__block-container .btn {
  background: #277ffc;
  color: #fff;
}

.cart-order__categories-item {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  border-radius: .25rem;
  background: #F9F9F9;
  margin-bottom: 15px;
}

.cart-order__right .cart-order__categories-item {
  padding-bottom: 15px;
}

.cart-order__categories-item--mt {
  margin-top: 40px;
}

.cart-order__right--line {
  display: flex;
  position: relative;
  margin-bottom: 7px;
}

.cart-order__right--line:last-child {
  margin-bottom: 0;
}

.cart-order__right--line:after {
  content: ' ';
  display: block;
  height: 1px;
  border-top: 1px dashed rgba(0, 0, 0, .1);
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  z-index: 1;
}

.cart-order__right .form-feedback__form-bottom {
  margin-top: 15px;
}

.cart-order__right--line__left,
.cart-order__right--line__right {
  flex: 0 0 50%;
}

.cart-order__right--line__left span,
.cart-order__right--line__right span {
  display: inline-block;
  background: #F9F9F9;
  position: relative;
  z-index: 2;
  font-size: 14px;
}

.cart-order__right--line__left span {
  padding-right: 5px;
}

.cart-order__right--line__right span {
  padding-left: 5px;
}

.p .cart-order__right--line__left span {
  padding-top: 5px;
}

.p .cart-order__right--line__right span {
  padding-left: 5px;
  font-size: 22px;
  font-weight: 500;
}

.cart-order__right--line__left {
  text-align: left;
  font-weight: 500;
}

.cart-order__right--line__right {
  text-align: right;
}

.cart-order__right>.cart-order__container {
  position: sticky;
  top: 50px;
}

.cart-order__right .form-field.form-field--agree {
  margin-top: 15px;
}

button.btn {
  border: none;
}

.main-search-widget__abs {
  position: absolute;
  top: 172px;
  z-index: 2;
  left: 0;
  right: 0;
  width: 100%;
  height: 50px;
  display: none;
  opacity: 0;
  transition-duration: 0.3s;
}

.main-search-widget__container {
}

.ov-all-search {
  background: var(--color-top);
  border-radius: 0px 0px var(--main-border-radius) var(--main-border-radius);
  padding: 33px 24px;
}

.main-search-widget {
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
}

.main-search-widget__search-form {
  position: relative;
}

.main-search-widget__search-input {
  background: #fff;
  height: 40px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  border: 1px solid var(--color-bottom);
  border-radius: calc(var(--main-border-radius) / 2);
  background: var(--color-average);
}

.main-search-widget__search-input:focus {
  outline: none;
}

.main-search-widget__container {
  position: relative;
}

.main-search-widget__abs-ismain {
  /*border-bottom: none;
  box-shadow: none;
  background: transparent;*/
}

.main-search-widget__abs.active {
  display: block;
}

.main-search-widget__abs.active.active-opacity {
  opacity: 1;
}

.main-search-widget__abs.inline-active {
  display: block;
  opacity: 1;
}

.main-search-widget__abs.inline-active .ov-all-search {
  padding: 10px 24px;
  box-shadow: var(--main-shadow-base);
}

.main-search-widget__search-button {
  position: absolute;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  right: 30px;
  top: 8px;
}

.main-search-widget__search-close {
  position: absolute;
  right: 5px;
  top: 10px;
}

.main-search-widget__search-button>span {
  color: #ccc;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.main-search-widget__search-close>span {
  color: #cc0000;
  font-size: 20px;
  width: 20px;
  height: 20px;
}

.main-search-widget__search-form:hover .main-search-widget__search-button>span.material-symbols-outlined {
  color: var(--color-maintheme);;
}

.main-search-widget__search-form--result_container {
  position: relative;
  background: #fff;
}

.main-search-widget__search-form--result {
  background: #fff;
  padding: 0;
  margin-top: 15px;
  padding-right: 15px;
}

.main-search-widget__search-form--result>ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-search-widget__search-form--result>ul>li {}

.main-search-widget__search-form--result>ul>li>h3 {
  font-size: 16px;
  margin: 0;
}

.main-search-widget__search-form--result>ul>li>ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-search-widget__search-form--result>ul>li>ul>li {
  display: block;
  padding-left: 60px;
  position: relative;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  margin-bottom: 15px;
}

.main-search-widget__search-form--result>ul>li:last-child>ul>li:last-child {
  padding-bottom: 0;
  border: 0;
}

.main-search-widget__search-form--result>ul>li>ul>li>a>img {
  max-width: 50px;
  position: absolute;
  left: 0;
  top: 0;
  max-height: 44px;
  width: auto;
  height: auto;
}

.main-search-widget__search-form--result>ul>li>ul>li h4 {
  font-size: 14px;
  margin: 3px 0 5px;
}

.main-search-widget__search-form--result>ul>li>ul>li p {
  font-size: 11px;
  margin-bottom: 0;
}

.main-search-widget__search-form--result {
  max-height: 500px;
  padding-left: 167px;
}

.iww__search-words {
  background: yellow;
  font-weight: 600;
}

.main-search-widget__search-form--result>ul>li>ul>li.more-for-category {
  padding-left: 0;
  border-bottom: 0;
}

.main-search-widget__search-form--result>ul>li>ul>li.more-for-category a {
  font-size: 11px;
}

.right-extended-info__container .form-feedback>h3 {
  font-size: 16px;
  color: #222;
  font-weight: 500;
  margin: 0;

  display: flex;
  padding: 25px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.right-extended-info__container .form-feedback>.form-feedback__text {
  padding: 10px 15px;
}

.right-extended-info__container .form-feedback>.form-feedback__text p {
  margin-bottom: 0;
}

.right-extended-info__container .form-feedback>form {
  padding-left: 15px;
  padding-right: 15px;
}

.right-extended-info__container .form-feedback>p {
  padding: 10px 15px;
  margin-bottom: 0;
}

.footer-column__search .material-symbols-outlined {
  vertical-align: middle;
}

.header__navigation-container {
  max-width: 100%;
  padding-top: 2px;
  flex: 0 0 100%;
}

.column-size-4 {
  flex: 0 0 33.3333%;
}

.column-size-6 {
  flex: 0 0 50%;
}

.column-size-12 {
  flex: 0 0 100%;
}

.tiles_item>div {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  height: 100%;
}

.tiles_item-image {
  height: 155px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.tiles_item-bottom header {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  margin: 15px 0;
}

.tiles_item-bottom .text {
  font-size: 14px;
  line-height: 20px;
}

.tiles_item-bottom .text p {
  margin-bottom: 0;
}

.page-image.position1 {
  margin-bottom: 15px;
}

.page-image.position3 {
  margin-top: 15px;
}

.image-right-position {
  max-width: calc(50% - 15px);
  float: left;
}

.left-menu {
  background: var(--color-top);
  border-radius: var(--main-border-radius);
  box-shadow: var(--main-shadow-base);
}

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


.left-menu ul li a {
  display: block;
  position: relative;
  padding: 20px 24px 19px 16px;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  color: inherit;
  color: var(--color-textmain);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: none;
}

.left-menu ul {
  position: relative;
}

.left-menu ul ul:before {
  content: ' ';
  position: absolute;
  width: 1px;
  left: 16px;
  top: 15px;
  bottom: 15px;
  background: #f2f2f2;
}

.left-menu ul ul ul:before {
  left: 32px;
}

.left-menu ul ul ul ul:before {
  left: 48px;
}


.left-menu > ul > li > a {
  border-top: 1px solid var(--color-bottom);
}

.left-menu > ul > li:first-child > a {
  border-top: 0;
}

/*.left-menu > ul > li:first-child > a {
  border-bottom: 1px solid #f2f2f2;
}*/

.left-menu ul li a:hover,
.left-menu ul li.active>a {
  color: #404040;
}

.left-menu ul li.active>a {
  font-weight: 600;
  color: var(--color-maintheme);
}

.left-menu ul li.active.is_parent_item>a {
  padding-bottom: 5px;
}

.left-menu ul li>ul {
  display: none;
}

.left-menu ul li.active>ul {
  display: block;
}

.left-menu ul li>ul li a {
  font-size: 12px;
  line-height: 15px;
  padding-top: 15px;
  padding-bottom: 14px;
}

.left-menu li ul a {
  padding-top: 10px ! important;
  padding-left: 32px;
  padding-bottom: 5px ! important;
}

.left-menu li ul li:last-child a {
  padding-bottom: 10px ! important;
}

.left-menu li ul li ul a {
  padding-left: 48px;
}

.left-menu li ul li ul li ul a {
  padding-left: 60px;
}

.document-list__item {
  display: block;
  position: relative;
  padding: 15px 15px 15px 78px;
  border: 1px solid transparent;
  padding-bottom: 15px;
  height: 100%;
}


.document-list__item .document-name {
  display: block;
}

.document-list__item .document-type {
  /*font-size: 30px;
  line-height: 30px;*/
  font-size: 24px;
  line-height: 24px;
  color: #808080;
  position: absolute;
  text-transform: uppercase;
  left: 15px;
  top: 15px;
  bottom: 0;
  margin: auto;
  font-weight: bold;
}

.document-list .row .column {
  margin-bottom: 15px;
  flex: 0 0 100%;
}

.document-list .row .column:last-child {
  margin-bottom: 0;
}

.slider_index .container.slider-no-padding-top {
  padding-top: 0;
}

.no-slider-margin-top {
  margin-top: 0;
}

.iww_____element-container .slider_index.no-slider-margin-top {
  margin-top: 30px ! important;
}

.payment-link {
  margin-bottom: 30px;
}

.footer-column__address>a,
.footer-column__address>a:hover {
  color: #fff;
}

/**

*/

/** mobi **/
.mobi-header {
  display: none;
}

.top-menu__back {
  display: none ! important;
}

.mobi-other,
.close-right-for-mobi {
  display: none ! important;
}

.catalog-header__right-right {
  display: none;
}

.header.header-filter span.mobi-close-filter {
  display: none;
}

.detail-quantity-in-cart__container {
  margin-top: 10px;
  font-size: 12px;
}

.detail-quantity-in-cart__container a {
  display: inline-block;
  font-size: 12px;
  line-height: 14px;
  border-bottom: 1px dashed;
  color: #1DB940;
}

.tab-buttons {
  margin-top: 15px;
}

.footer-cards ul {
  display: flex;
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.footer-cards ul li {
  margin-right: 5px;
}

.footer-cards ul li:last-child {
  margin-right: 0;
}

.page-parthners__logo {
  width: 100%;
  height: 100px;
  position: relative;
  padding: 15px;
}

.page-parthners__logo img {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  margin: auto;
  max-width: 85%;
  max-height: 85%;
  width: auto;
  height: auto;
}

.page-parthners__item-content {
  padding-bottom: 30px;
  padding-top: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  height: 100%;
}

.page-parthners__logo--gray {
  background: rgba(0, 0, 0, .1);
}

.page-parthners__item-content a {
  display: block;
}

.page-parthners__item-content header {
  margin-bottom: 15px;
  min-height: 75px;
}

.plural-property__center-header,
.catalog-element__properties-item__left {
  font-size: 13px;
  color: #808080;
  margin-bottom: 3px;
}

.catalog-element__properties-item__right {
  font-size: 13px;
}

.plural-property {
  margin: 10px 0;
}

.catalog-element__properties--top {
  margin-top: 0;
  padding-top: 0;
}

.catalog-element__properties-item.property-textarea:before,
.catalog-element__properties-item.property-textarea:after {
  display: none;
}

.catalog-element__properties-item.property-textarea .catalog-element__properties-item__left,
.catalog-element__properties-item.property-textarea .catalog-element__properties-item__right {
  width: 100%;
  float: none;
  max-width: none;
  text-align: left;
  padding-left: 0;
}

.catalog-element__properties-item__right p {
  margin-bottom: 5px;
}

.catalog-element__properties-item__right p:last-child {
  margin-bottom: 0;
}

.footer-additional-right-text {
  color: #fff;
  margin-top: 15px;
}

.form-field__template-columns3 {
  background: #f8f9fb;
  padding-top: 50px;
  padding-bottom: 50px;
}

.form-field__template-columns3 .btn {
  width: 100%;
  text-align: center;
}


.tab-content {
  padding-bottom: 30px;
}

.catalog-element__text,
.catalog-element__text p,
.one-delivery-for-detail,
.one-delivery-for-detail div,
.one-delivery-for-detail span {
  font-size: 13px;
}

.only-mobi {
  display: none ! important;
}

.banners-one-under-other {}

.banners-one-under-other__item {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 390px;
  width: 100%;
}

.banners-one-under-other__item h3 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.48px;
}

.banners-one-under-other__item-banner,
.banners-one-under-other__item-banner p {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.14px;
}

.banners-one-under-other__item .btn {
  background: #fff;
  /*color: #107B7D;*/
}

.banners-one-under-other__item:hover .btn {
  opacity: .9;
}

.banners-one-under-other {
  padding-bottom: 100px;
}

.banners-one-under-other .container .banners-one-under-other__item {
  margin-bottom: 10px;
  padding: 100px 80px;
}

.banners-one-under-other .container:first-child .banners-one-under-other__item {
  border-radius: 10px 80px 10px 10px;
}

.banners-one-under-other .container:last-child .banners-one-under-other__item {
  border-radius: 10px 10px 80px 80px;
  margin-bottom: 0;
}

.header__navigation .header__navigation-container>ul>li>a>span.material-symbols-outlined.bottom {
  margin-right: 0;
}

.minicart-footer__promocode {
  height: auto;
}

.minicart-footer-promocode {
  padding-top: 15px;
  padding-left: 30px;
  padding-right: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  position: relative;
}

.minicart-footer-promocode__left {
  text-align: right;
  padding-top: 17px;
}

.minicart-footer-promocode__right .form-field {
  display: inline-block;
  margin-right: 26px;
  width: calc(100% - 167px);
  vertical-align: top;
}

.minicart-footer-promocode__right button {
  height: 58px;
}

.iww__globalError {
  background: rgba(205, 0, 0);
  text-align: center;
  padding: 20px;
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  position: relative;
  font-weight: 500;
}

.right-extended-info__container .iww__globalError {
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  z-index: 111;
}

.right-extended-info__container .minicart-footer-promocode__right .form-field {
  display: inline-block;
  margin-right: 1px;
  width: calc(100% - 142px);
  vertical-align: top;
}

.iww__globalError p {
  margin: 0;
}

.iww__globalError-remove {
  display: block;
  width: 20px;
  height: 20px;
  color: #fff;
  position: absolute;
  top: 10px;
  right: 10px;
}

.iww__globalError-remove span {
  opacity: 1 ! important;
}

.minicart-item__middle-price__old,
.minifavorite-item__middle-price__old {
  font-weight: normal;
  text-decoration: line-through;
  display: inline-block;
  margin-left: 10px;
}

.minicart-content-promocode {
  height: calc(100vh - 345px);
}

.minicart-footer-order {
  width: 33.33333%;
  max-width: 428px;
}

.cartinfo-promocode-info {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.cartinfo-promocode-info p {
  margin: 0;
}

.minicart-footer-order {
  padding: 0;
  position: fixed;
  top: 648px;
  right: 279px;
  background: #fff;
}

.minicart-footer-order .minicart-footer-promocode__right .form-field {
  margin-right: 5px;
  width: calc(100% - 147px);
}

.header__top-phone_link a span.material-symbols-outlined {
  display: none;
}

.slide-only-mobile {
  display: none;
}

.slide-only-desctop {
  display: block;
}

.swiper-slide-mobile,
.swiper-slide-mobile:last-child {
  padding-right: 0;
}

.swiper-slide__caption--mobile {
  padding: 30px 15px 50px ! important;
}

.address_field_container {
  position: relative;
}

.field_container--loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .1);
  z-index: 2;
}

.list-list {
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;
  height: auto;
  background: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 0 0 20px rgb(0 0 0 / 10%);
  z-index: 3;
  padding: 15px 15px;
  list-style: none;
  max-height: 250px;
}

.list-list a {
  display: block;
  padding: 7px 0;
  font-size: 13px;
  line-height: 17px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.list-list li:last-child a {
  border-bottom: none;
}

.list-list a span {
  display: block;
}

.list-list a span.list-list__item--description {
  font-size: 11px;
  color: #444;
}

.list-list li p {
  margin-bottom: 0;
}

.form-field__resultsearch-container {
  display: none;
}

.form-field__resultsearch-container.active {
  display: block;
}

.cart-order__block-delivery,
.cart-order__categories-item {
  position: relative;
}

.is-external-service {
  display: none;
}

.is-external-service.cart-order__block-choise__item--active {
  display: block;
}

.cart-order__block-choise__price,
.cart-order__block-choise__days {
  display: block;
  color: #000;
  font-size: 13px;
}

.cart-order__block-choise__price {
  font-weight: 500;
}

.cart-order__right--line__count {
  margin-bottom: 14px;
}

.videoBg,
.videoBg video {
  width: 100%;
}

.favs .material-symbols-outlined,
.compare .material-symbols-outlined,
.ajax-favs .material-symbols-outlined,
.ajax-compare .material-symbols-outlined {
  font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}



.block-ticker {
  height: 90px;
  width: auto;
  margin: 0 auto;
  background: #343436;
  overflow: hidden;
}

.block-ticker>div {
  text-align: center;
  color: #fff;
  padding-top: 35px;
  animation: block-ticker 20s infinite linear;
  padding-left: 100%;
  white-space: nowrap;
  display: flex;
}

.block-ticker>div>span {
  width: 6px;
  margin-left: 10px;
  margin-right: 10px;
  display: block;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  flex: 0 0 5px;
  position: relative;
  top: 9px;
}

@keyframes block-ticker {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-160%, 0);
  }
}

.addresses-list_item--container {
  margin-bottom: 30px;
}

.addresses-list_item--container:last-child {
  margin-bottom: 0;
}

.addresses-list__slider-item__image {
  height: 400px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.addresses-list_item--left:hover .swiper-button-next:after,
.addresses-list_item--left:hover .swiper-button-prev:after {
  opacity: 1;
}

.addresses-list_item {
  display: flex;
}

.addresses-list_item--left {
  width: 600px;
  height: 400px;
  background: rgba(0, 0, 0, .1);
  /*padding-right: 30px;*/
}

.addresses-list_item--right {
  height: 400px;
  background: #000;
}

.addresses-list_item--left .swiper-slide_bg:after {
  display: none;
}

.addresses-list_item--right {
  width: calc(100% - 600px);
  flex: 0 0 calc(100% - 600px);
  padding: 30px;
  color: #fff;
}

.addresses-list_item--right h2 {
  color: #fff;
}

.open-address-map {
  display: inline-block;
  border-bottom: 1px dashed;
  font-size: 13px;
  line-height: 16px;
  color: #fff;
}

.addresses-list__map {
  background: #ccc;
  height: 250px;
  width: 100%;
  display: none;
}

.addresses-list_item--container--active-map .addresses-list__map {
  display: block;
}

.addresses-list_item--left .swiper-slide {
  background: rgba(0, 0, 0, .1);
}

.addresses-list_item--left .swiper-slide {
  text-align: center;
}

.addresses-list_item--left .swiper-slide img {
  width: auto;
  height: auto;
  display: inline-block;
}

.addresses-list_item--left .swiper-slide:last-child {
  padding-right: 0;
}

.block-company-reviews__swiper .swiper-slide {
  min-height: 343px;
}

.tingle-modal-box .container {
  padding-left: 0 ! important;
  padding-right: 0 ! important;
  margin-left: 0 ! important;
  margin-right: 0 ! important;
}

.text-and-image {
  display: flex;
}

.text-and-image.text-and-image-1 {
  display: block;
}

.text-and-image ul {
  display: inline-block;
  margin-left: 15px;
}

.page-image.position2 {
  max-width: 100%;
}

.page-image.position4 {
  max-width: 100%;
}

.image-right-position {
  margin-right: 15px;
}

.text-and-image>*:first-child {
  width: 50%;
  flex: 0 0 50%;
  padding-right: 30px;
}

.block-company-reviews__swiper-item__review .modal-link-content {
  display: block;
  margin-top: 20px;
}

.text-and-image.text-and-image-1>*:first-child {
  width: 100%;
  flex: 0 0 100%;
}

.block-reasons__number {
  font-weight: bold;
  font-size: 48px;
  line-height: 48px;
}

.block-reasons__number-prefix {
  height: 24px;
}

.block-company-reviews__swiper-item__header-left img:not(.img-review-detail) {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  transition: opacity .2s;
  object-fit: cover;
  object-position: top;
  margin-right: 12px;
}

.block-company-reviews__swiper-item__header-left img.img-review-detail {
  display: block;
  margin: 15px auto;
}

.page-parthners h2 {
  margin-bottom: 0;
}

.form-feedback h2 {
  margin-top: 0;
  margin-bottom: 15px;
}

.banners-one-under-other.banners-horizontal {
  padding-top: 100px;
}

.banners-one-under-other.banners-horizontal .banners-one-under-other__item {
  border-radius: 0 ! important;
  max-height: 335px;
  padding: 36px 30px;
  position: relative;
}

.banners-one-under-other.banners-horizontal .banners-one-under-other__item .banners-one-under-other__item-banner,
.banners-one-under-other.banners-horizontal .banners-one-under-other__item h3 {
  max-width: 254px;
}

.banners-one-under-other.banners-horizontal .banners-one-under-other__item h3 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 30px;
}

.banners-one-under-other.banners-horizontal .banners-one-under-other__item-banner,
.banners-one-under-other.banners-horizontal .banners-one-under-other__item-banner p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.banners-one-under-other.banners-horizontal .banners-one-under-other__item .btn {
  position: absolute;
  bottom: 36px;
  left: 30px;
  font-weight: 500;
}

.swiper-slide__white-letters .swiper-slide__caption-header,
.swiper-slide__white-letters .swiper-slide__caption-description,
.swiper-slide__white-letters .swiper-slide__caption-description p,
.swiper-slide__white-letters .swiper-slide__caption-tag {
  color: #fff;
}

.swiper-slide__white-letters .swiper-slide__caption-header {
  text-shadow: var(--main-shadow-black);
}

.text-and-image-2>div {
  max-width: 50%;
}

.header__navigation-block-broker {
  background: black ! important;
  /* TODO:  */
}

.header__navigation-block-broker>.container>nav>ul {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__navigation-block-broker>.container>nav>ul>li {
  display: block;
  width: auto;
}

.header__navigation-block-broker>.container>nav>ul>li>a {
  display: block;
  padding: 20px 20px;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
}

.header__navigation-block-broker>.container>nav>ul>li>a:hover,
.header__navigation-block-broker>.container>nav>ul>li.active2>a {
  background: #222;
  color: #fff;
}

.fixed-top-element--active {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 101;
}

.offers-column__counter-container--notime {
  color: #cc0000;
  font-size: 11px;
  line-height: 11px;
  width: calc(100% - 55px);
  padding-top: 10px;
  padding-right: 30px;
  white-space: nowrap;
}

.offers-column__counter-right .offers-column__counter-quantity {
  min-width: auto;
}

.block-sale__item .offers-column__counter-quantity>span:last-child {
  font-size: 10px;
  line-height: 10px;
}

.block-sale--noindex {
  margin-top: 0;
  padding-top: 0;
}

.block-sale-slider__container {}

.block-sale .swiper-button-next {
  right: 0;
  z-index: 33;
}

.block-sale .swiper-button-prev {
  left: 0;
  z-index: 33;
}

.block-sale .swiper-button-next {
  right: -50px;
}

.block-sale .swiper-button-prev {
  left: -50px;
}

.block-sale:hover .swiper-button-next:after,
.block-sale:hover .swiper-button-prev:after {
  opacity: 1;
}

.sale-detail__left {
  position: relative;
}

.sale-detail .offers-column__counter-container {
  justify-content: center;
}

.tingle-modal-box .sale-detail .row .column-50 {
  width: 100%;
  flex: 0 0 100%;
}

.tingle-modal-box .sale-detail__left {
  margin-bottom: 30px;
}

.text-and-image-3 {
  display: block;
}

.text-and-image-3>*:first-child {
  width: 100%;
}

.block_step-by-step-path-columns2 {
  display: flex;
}

.step-by-step__item-centerColumn .row {
  justify-content: left;
}

.block_step-by-step-path-columns2 .step-by-step__item-edgeColumn {
  width: 25%;
  flex: 0 0 25%;
  min-height: 1px;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn {
  width: 50%;
  flex: 0 0 50%;
  min-height: 1px;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item {
  width: 50%;
  flex: 0 0 50%;
}

.step-by-step__tech-2 svg {
  vertical-align: top;
}

.step-by-step__item-container {
  display: inline-block;
  width: 160px;
  text-align: center;

  min-height: 230px;
}

.step-by-step__item-icon {
  display: inline-block;
  max-width: 50px;
  width: 50px;
}

.step-by-step__item-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  margin-top: 10px;
  text-transform: uppercase;
}

.step-by-step__item {
  position: relative;
}

.step-by-step__item .step-by-step__item-container {
  position: relative;
}

.step-by-step__item:first-child .step-by-step__tech-1,
.step-by-step__item:nth-child(even):last-child .step-by-step__tech-1,
.step-by-step__item:nth-child(4n+3):nth-last-child(-n+2) .step-by-step__tech-1,
.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5):last-child .step-by-step__tech-1 {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .5);
  position: absolute;
  right: 22px;
  top: 18px;
  margin: auto;
}

.step-by-step__item:nth-child(even):last-child .step-by-step__tech-1,
.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5):last-child .step-by-step__tech-1 {
  right: auto;
  left: 22px;
}

.step-by-step__item:last-child:nth-child(4n+4) .step-by-step__tech-1,
.step-by-step__item:first-child:last-child .step-by-step__tech-1 {
  display: none;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item .step-by-step__tech-2 {
  display: none;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
  display: block;
  top: 22px;
  left: calc(160px - 10px);
  height: 4px;
  width: calc(100% + 50px);
  /*background: rgba(0, 0, 0, .5);*/
  position: absolute;
  overflow: hidden;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:first-child:last-child .step-by-step__tech-2 {
  display: none;
}


.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) {
  text-align: left;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(even) {
  text-align: right;
}



.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3):last-child {
  text-align: right;
  margin-left: 50%;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:last-child .step-by-step__tech-2 {
  display: none;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:not(:last-child) .step-by-step__tech-3,
.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item .step-by-step__tech-4,
.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2):last-child .step-by-step__tech-3,
.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:first-child:last-child .step-by-step__tech-3 {
  display: none;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2):not(:last-child) .step-by-step__tech-3,
.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3):last-child .step-by-step__tech-3 {
  display: block;
  top: 22px;
  right: -48px;
  position: absolute;
  width: 67px;
  height: 67px;
  overflow: hidden;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2):not(:last-child) .step-by-step__tech-4 {
  display: block;
  position: absolute;
  top: 87px;
  right: -45px;
  overflow: hidden;
  width: 4px;
  height: calc(100% - 128px);
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3):not(:nth-last-child(-n+2)) .step-by-step__tech-3 {
  display: block;
  top: 22px;
  left: -45px;

  position: absolute;
  width: 67px;
  height: 67px;
  overflow: hidden;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3):not(:nth-last-child(-n+2)) .step-by-step__tech-4 {
  display: block;
  position: absolute;
  top: 84px;
  left: -45px;
  overflow: hidden;
  width: 4px;
  height: calc(100% - 128px);
}

.iww_panel_____visible .block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3):not(:nth-last-child(-n+2)) .step-by-step__tech-4 {
  left: -33px;
}

.iww_panel_____visible .block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2):not(:last-child) .step-by-step__tech-4 {
  right: -33px;
}


.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3):not(:nth-last-child(-n+2)) .step-by-step__tech-3 svg {
  transform: rotate(270deg);
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__tech-3,
.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3):last-child .step-by-step__tech-3 {
  display: block;
  top: calc(-67px + 28px);
  right: -44px;
  position: absolute;
  width: 67px;
  height: 67px;
  overflow: hidden;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__tech-3 svg,
.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:last-child .step-by-step__tech-3 svg {
  transform: rotate(90deg);
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__tech-3 {
  display: block;
  top: calc(-67px + 27px);
  left: -47px;
  position: absolute;
  width: 67px;
  height: 67px;
  overflow: hidden;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__tech-3 {
  transform: rotate(180deg);
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5):last-child .step-by-step__tech-3 {
  transform: rotate(90deg);
}

.step-by-step__item-text {
  text-transform: none;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: black;

  position: absolute;
  top: 0;

  width: 345px;
  text-align: left;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
  /*left: calc(-100% - 300px);*/
  left: calc(-100% - 330px);
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
  right: calc(-100% - 355px);
}

.step-by-step__tech-toleft,
.step-by-step__tech-toright {
  display: none;
  position: absolute;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__tech-toleft,
.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__tech-toleft {
  display: block;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__tech-toright,
.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__tech-toright {
  display: block;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__tech-toleft,
.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__tech-toright {
  transform: scale(-1, 1)
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__tech-toleft {
  top: -32px;
  left: calc(-100% + 33px);
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text {
  top: 10px;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__tech-toright {
  right: calc(-100% + 10px);
  top: 65px;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
  bottom: 183px;
  top: auto;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__tech-toleft {
  top: -32px;
  right: calc(-100% + 33px);
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__tech-toright {
  left: calc(-100%);
  top: 65px;
}

.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
  bottom: 183px;
  top: auto;
}

.block_step-by-step-path-toptext {
  margin-bottom: 30px;
}


.step-by-step__item-text p {
  margin: 0;
}

.step-by-step__item-text img {
  max-width: 100%;
  width: auto;
}

.step-by-step__item-text .mb {
  margin-bottom: 15px;
}

.step-by-step__item-text .mt {
  margin-top: 15px;
}



/** 1920 **/
.container1920.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
  width: calc(100% + 187px);
}

.container1920.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
.container1920.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
  right: calc(-100% - 300px);
}

.container1920.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
.container1920.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
  left: calc(-100% - 300px);
}



/** 1700 */
.container1700.block_step-by-step-path-columns2 .step-by-step__item-edgeColumn {
  width: 30%;
  flex: 0 0 30%;
}

.container1700.block_step-by-step-path-columns2 .step-by-step__item-centerColumn {
  width: 40%;
  flex: 0 0 40%;
}

.container1700.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
.container1700.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
  left: calc(-100% - 330px);
}

/** 1500 */
.container1500.block_step-by-step-path-columns2 .step-by-step__item-edgeColumn {
  width: 30%;
  flex: 0 0 30%;
}

.container1500.block_step-by-step-path-columns2 .step-by-step__item-centerColumn {
  width: 40%;
  flex: 0 0 40%;
}

.container1500.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
.container1500.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
  left: calc(-100% - 320px);
}



/** 1344 */
.container1344.block_step-by-step-path-columns2 .step-by-step__item-edgeColumn {
  width: 30%;
  flex: 0 0 30%;
}

.container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn {
  width: 40%;
  flex: 0 0 40%;
}

.container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
.container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
  left: calc(-100% - 239px);
}

.container1344.block_step-by-step-path-columns2 .step-by-step__item-text {
  width: 250px;
}

.container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
.container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
  right: calc(-100% - 241px);
}

.container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
  width: calc(100% - 11px);
}



/** 1280 */
.container1280.block_step-by-step-path-columns2 .step-by-step__item-edgeColumn {
  width: 30%;
  flex: 0 0 30%;
}

.container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn {
  width: 40%;
  flex: 0 0 40%;
}

.container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
.container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
  left: calc(-100% - 218px);
}

.container1280.block_step-by-step-path-columns2 .step-by-step__item-text {
  width: 250px;
}

.container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
.container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
  right: calc(-100% - 221px);
}

.container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
  width: calc(100% - 29px);
}



/** 1140 */
.container1140.block_step-by-step-path-columns2 .step-by-step__item-edgeColumn {
  width: 30%;
  flex: 0 0 30%;
}

.container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn {
  width: 40%;
  flex: 0 0 40%;
}

.container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
.container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
  left: calc(-100% - 177px);
}

.container1140.block_step-by-step-path-columns2 .step-by-step__item-text {
  width: 230px;
  font-size: 14px;
  line-height: 18px;
}

.container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
.container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
  right: calc(-100% - 178px);
}

.container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
  width: calc(100% - 52px);
}


/** 1024 */
.container1024.block_step-by-step-path-columns2 .step-by-step__item-edgeColumn {
  width: 30%;
  flex: 0 0 30%;
}

.container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn {
  width: 40%;
  flex: 0 0 40%;
}

.container1024.block_step-by-step-path-columns2 .step-by-step__item-text {
  width: 230px;
  font-size: 14px;
  line-height: 18px;
}

.container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
.container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
  left: calc(-100% - 134px);
}

.container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
.container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
  right: calc(-100% - 134px);
}

.container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
  width: calc(100% - 85px);
}

.form-feedback {
  width: 100%;
}

/*** form select field ***/

.form-field--select {
  margin-bottom: calc(1rem - 8px);
}

.form-field--select__name {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 20px;
}

.form-feedback__form-bottom {
  text-align: center;
}

.form-field--select__name>sup {
  font-size: 65%;
  color: #cc0000;
}

.form-field--select .form-field--select-labels .form-switch-in,
.form-field--select .form-field--select-labels .form-switch-in--variant-2 {
  margin-bottom: 0;
  display: inline-block;
  margin-right: 45px;
  cursor: pointer;
}

.form-field--select .form-field--select-labels .form-switch-in:last-child {
  margin-right: 0;
}

.form-field--select .form-field--select-labels .form-switch-in--variant-2 {
  position: relative;
  font-size: 13px;
  line-height: 17px;
  padding-left: 35px;
  min-height: 1.5rem;
  display: block;
}

.form-field--select .form-field--select-labels .form-switch-in--variant-2 input[type="checkbox"],
.form-field--select .form-field--select-labels .form-switch-in--variant-2 input[type="radio"] {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}

.form-field--select .form-field--select-labels .form-switch-in--variant-2 input[type="checkbox"]+span,
.form-field--select .form-field--select-labels .form-switch-in--variant-2 input[type="radio"]+span {
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
}

.form-field--select .form-field--select-labels .form-switch-in--variant-2 input[type="checkbox"]+span .first-svg,
.form-field--select .form-field--select-labels .form-switch-in--variant-2 input[type="radio"]+span .first-svg {
  display: block;
}

.form-field--select .form-field--select-labels .form-switch-in--variant-2 input[type="checkbox"]:checked+span .first-svg,
.form-field--select .form-field--select-labels .form-switch-in--variant-2 input[type="radio"]:checked+span .first-svg {
  display: none;
}

.form-field--select .form-field--select-labels .form-switch-in--variant-2 input[type="checkbox"]+span .last-svg,
.form-field--select .form-field--select-labels .form-switch-in--variant-2 input[type="radio"]+span .last-svg {
  display: none;
}

.form-field--select .form-field--select-labels .form-switch-in--variant-2 input[type="checkbox"]:checked+span .last-svg,
.form-field--select .form-field--select-labels .form-switch-in--variant-2 input[type="radio"]:checked+span .last-svg {
  display: block;
}

.form-field--select .form-select {
  margin-bottom: 0;
}

.form-field--select .form-select[multiple="multiple"] {
  height: 150px;
}

.form-field--select .form-field__error {
  top: calc(100% - 4px);
}

/*
Новый чекбокс
*/

/* Общие стили для checkbox и radio */
.custom-checkbox {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-left: 32px;
}

.custom-checkbox__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.custom-checkbox__mark {
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-icon);
  background-color: var(--color-top);
  transition: all 0.2s ease;
  left: 0;
  top: -2px;
}

/* Общие стили для иконки галочки */
.custom-checkbox__mark::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Стили для checkbox */
input[type="checkbox"] + .custom-checkbox__mark {
  border-radius: 8px;
}

/* Стили для radio */
input[type="radio"] + .custom-checkbox__mark {
  border-radius: 50%;
}

/* Активные состояния */
.custom-checkbox__input:checked + .custom-checkbox__mark {
  background-color: var(--color-maintheme);
  border-color: var(--color-maintheme);
}

.custom-checkbox__input:checked + .custom-checkbox__mark::before {
  opacity: 1;
}

/* Состояние фокуса */
.custom-checkbox__input:focus-visible + .custom-checkbox__mark {
  box-shadow: 0 0 0 2px rgba(var(--color-maintheme), 0.2);
}

/* Состояние наведения */
.custom-checkbox:hover .custom-checkbox__mark {
  border-color: var(--color-maintheme);
}

.custom-checkbox__text {
  color: var(--color-textmain);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

/* Группировка элементов */
.custom-checkbox + .custom-checkbox {
  margin-top: 8px;
}

.form-field--select-labels .custom-checkbox {
  margin-right: 15px;
  padding-bottom: 8px;
}

.form-field--select-labels .custom-checkbox:last-child {
  margin-right: 0;
}

.form-field--select-labels .custom-checkbox__text {
  color: var(--color-textsecondary);
}

.form-field--agree {
  margin-bottom: calc(1rem + 8px);
}

.error-variants {
  border: 1px solid #cc0000;
  padding: 2px;
  border-radius: 3px;
}

.block-another-buttons {
  margin: 30px 0;
}

.n_shop_detail-columns {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
}

.n_shop_detail-columns .n_shop_detail {
  display: block;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
  position: relative;
}

.n_shop_detail-columns .n_shop_detail>div {}

.n_shop_detail .catalog-element__left,
.n_shop_detail .catalog-element__right,
.n_shop_detail .catalog-element__center {
  flex: 0 0 auto;
  width: auto;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.n_shop_detail-size-5 {
  width: 5%;
  flex: 0 0 5%;
}

.n_shop_detail-size-10 {
  width: 10%;
  flex: 0 0 10%;
}

.n_shop_detail-size-15 {
  width: 15%;
  flex: 0 0 15%;
}

.n_shop_detail-size-20 {
  width: 20%;
  flex: 0 0 20%;
}

.n_shop_detail-size-25 {
  width: 25%;
  flex: 0 0 25%;
}

.n_shop_detail-size-30 {
  width: 30%;
  flex: 0 0 30%;
}

.n_shop_detail-size-35 {
  width: 35%;
  flex: 0 0 35%;
}

.n_shop_detail-size-40 {
  width: 40%;
  flex: 0 0 40%;
}

.n_shop_detail-size-45 {
  width: 45%;
  flex: 0 0 45%;
}

.n_shop_detail-size-50 {
  width: 50%;
  flex: 0 0 50%;
}

.n_shop_detail-size-55 {
  width: 55%;
  flex: 0 0 55%;
}

.n_shop_detail-size-60 {
  width: 60%;
  flex: 0 0 60%;
}

.n_shop_detail-size-65 {
  width: 65%;
  flex: 0 0 65%;
}

.n_shop_detail-size-70 {
  width: 70%;
  flex: 0 0 70%;
}

.n_shop_detail-size-75 {
  width: 75%;
  flex: 0 0 75%;
}

.n_shop_detail-size-80 {
  width: 80%;
  flex: 0 0 80%;
}

.n_shop_detail-size-85 {
  width: 85%;
  flex: 0 0 85%;
}

.n_shop_detail-size-90 {
  width: 90%;
  flex: 0 0 90%;
}

.n_shop_detail-size-95 {
  width: 95%;
  flex: 0 0 95%;
}

.n_shop_detail-size-100 {
  width: 100%;
  flex: 0 0 100%;
}

.shop_detail_page_snippet {
  margin-bottom: 15px;
}

.shop_detail_page_snippet .offers-column__incart {
  padding-top: 0;
}

.shop_detail_page_snippet .catalog-element__properties {
  margin-top: 0;
}

.calalog-element__gallery img {
  max-width: 100%;
}

.n_shop_detail__oneColumn {
  margin-left: auto;
  margin-right: auto;
}

.offers-main .row {
  justify-content: left;
  gap: 24px;
}


.form-switch-in--variant-2--disabled {
  opacity: .3;
}

.form-switch-in--variant-2--disabled:hover {
  cursor: not-allowed ! important;
}

.swiper-slide.file_block {
  width: auto;
  height: auto;
  border: none;
  margin: auto;
  max-width: 100%;
}

.iww__widget-services_list-item {
  /*text-align: center;*/
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  margin-bottom: 15px;
}

.iww__widget-services_list-item__price {
  display: flex;
  margin-top: 15px;
  margin-bottom: 15px;
  width: 100%;
}

.iww__widget-services_list-item__price--left,
.iww__widget-services_list-item__price--right {
  width: 50%;
  flex: 0 0 50%;
  font-size: 22px;
}

.iww__widget-services_list-item__price--right {
  text-align: right;
  font-weight: 500;
}

.iww__widget-services_list-item .btn {
  width: 100%;

}

.iww__simple-services_list {
  display: flex;

  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;

  margin-left: -15px;
  margin-right: -15px;
}

.iww__simple-services_list-item__container {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
  flex: 0 0 25%;
  width: 25%;
  margin-bottom: 0;
}

.iww__simple-services_list-item {
  /*height: 100%;*/
  position: relative;
  border:  none;
  padding: 0;
  padding-bottom: 0;
}

.iww__simple-services_list-item__img {
  padding: 0;
  padding-bottom: 24px;
}

.iww__simple-services_list-item__name {
  font-weight: 700;
  padding: 0 15px;
}

.iww__simple-services_list-item__text {
  font-size: 14px;
  line-height: 18px;
  color: var(--color-textmain);
}

.iww__simple-services_list-item__text p {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.iww__simple-services_list-item__text p:last-child {
  margin-bottom: 0;
}

.iww__simple-services_list-item__price {
  display: flex;
  height: 40px;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  z-index: 2;
}

.iww__simple-services_list-item__price--left,
.iww__simple-services_list-item__price--right {
  width: 50%;
  flex: 0 0 50%;
}

.iww__simple-services_list-item__price--left {
  font-size: 20px;
  font-weight: 500;
  padding-top: 8px;
  text-align: left;
}

.iww__simple-services_list-item__price--right {
  text-align: right;
}

.iww__simple-services_list-item__full-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.block-reasons .text-reasons {
  margin-top: 0;
  margin-bottom: 30px;
}

.block-company-reviews__index {
  margin-bottom: 0;
}

.block-question__middle p:last-child {
  margin-bottom: 0;
}

.content-block:first-child {
  padding-top: 30px;
}

.content-block {
  padding-top: 15px;
  padding-bottom: 0;
}

footer.footer-main {
  overflow: hidden;
}

.border_news {
  margin-bottom: 15px;
}

.addresses-list_item--left.history-timeline__item--slider {
  width: 100%;
  height: auto;
}

.addresses-list_item--left.history-timeline__item--slider .swiper-slide {
  min-height: 100px;
  height: 100%;
}

.history-timeline__item--year {
  font-size: 60px;
  line-height: 60px;
  font-weight: 900;
}

.history-timeline__item--year {
  display: flex;
  align-items: flex-end;
}

.history-timeline__item--year__left {
  text-align: right;
}

.history-timeline__item--year__right {
  text-align: left;
}

.history-timeline__item-top {
  margin-bottom: 15px;
}

.history-timeline__item-bottom {
  padding-bottom: 20px;
  margin-bottom: 70px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.history-timeline__item:last-child .history-timeline__item-bottom {
  border-bottom: none;
}

.history-timeline__item-bottom p:last-child {
  margin-bottom: 0;
}

.history-timeline__item--slider.addresses-list_item--left,
.history-timeline__item--slider.addresses-list_item--left .swiper-slide {
  background: transparent;
}

.enable_left_menu .container {
  padding-left: 0;
  padding-right: 0;
}

.enable_left_menu .contact_person {
  margin-left: 0;
}

.vacancy_top {
  cursor: pointer;
}

.contact_person img {
  margin-right: 15px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .1);
}

.vacancy_info.active {
  display: block;
}

.vacancy_info.active .btn_exp_m {
  display: none;
}

.vacancy_info.active .btn_exp_l {
  display: inline-block;
}


.similar_products h2 {
  margin-top: 0;
}

.open-balances-by-warehouses__window {
  display: none;
  position: absolute;
  background: #fff;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, .1);
  padding: 10px;
  right: 0;
  left: 0;
  font-size: 10px;
}

.open-balances-by-warehouses__window:hover {
  display: block;
}

.offers-column__middle-c {
  position: relative;
}

.offers-column__middle-c.offers-column__middle-c--active .open-balances-by-warehouses__window {
  display: block;
}

.open-balances-by-warehouses__window>div {
  margin-bottom: 3;
}

.open-balances-by-warehouses__window>div>strong {
  font-weight: 500;
}

.open-balances-by-warehouses__window>div>span {
  white-space: nowrap;
}

.open-balances-by-warehouses__window>div:last-child {
  margin-bottom: 0;
}

.block-popular-offers.block-offers-slider__container {
  background: transparent;
  padding-top: 0;
  padding-bottom: 50px;
  position: relative;
}


.block-popular-offers:hover .swiper-button-next:after,
.block-popular-offers:hover .swiper-button-prev:after {
  opacity: 1;
}

body.cookie-blocked {
  /*overflow: hidden;*/
  /* Блокировка прокрутки */
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  right: 0;
  /*width: 100%;
  height: 100%;*/
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: end;
  z-index: 1000;
  width: 320px;
}

.cookie-message {
  position: absolute;
  background: white;
  padding: 20px;
  border-radius: 5px;
  text-align: left;
  margin: 10px;
  top: auto;
  bottom: 0;
  max-width: 300px;
  right: 0;
  left: auto;
  box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.1);
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.cookie-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 22px;
  font-weight: bold;
  padding: 0 20px 0 0;
}

.cookie-message p {
  font-size: 13px;
  margin-bottom: 0;
}

#accept-cookie {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: var(--color-maintheme);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

#accept-cookie:hover {
  box-shadoW: 0px 0px 10px rgba(var(--color-mainthemeRgb), .5);
}


/************************ table variant 1 ************************/

.table-one {
  max-width: 100%;
  overflow: auto;
}

.table-one table {
  border: 1px solid #eee;
  table-layout: fixed;
  width: 100%;
  margin-bottom: 20px;
}

.table-one table th {
  font-weight: bold;
  padding: 5px;
  background: #efefef;
  border: 1px solid #dddddd;
}

.table-one table td {
  padding: 5px 10px;
  border: 1px solid #eee;
  text-align: left;
}

.table-one table tbody tr:nth-child(odd) {
  background: #fff;
}

.table-one table tbody tr:nth-child(even) {
  background: #F7F7F7;
}

/******************************************************************/

.banners-one-under-other h3 {
  margin-bottom: 30px;
}

.mobi-other .block_city-name>.material-symbols-outlined,
.mobi-other .block_city-phone {
  color: #333;
}

.mobi-other .block_cities {
  margin-top: 20px;
}

.mobi-other .block_city {
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.mobi-other .block_city:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.main-filter__blocks {
  padding-bottom: 0;
}

.main-filter__block-bottom .btn {
  text-align: center;
}

.main-filter__block-bottom a.btn:hover {
  box-shadow: none;
  background: var(--color-maintheme);
  color: #fff;
}

.main-filter__block-bottom a.btn {
  color: var(--color-maintheme);
  border: 1px solid var(--color-maintheme);
}

.main-filter__block-bottom a.btn:hover svg path {
  stroke: #fff ! important;
}

.main-filter__block-bottom button {
  margin-bottom: 8px;
}

.main-filter__blocks .form-field--select {
  margin-bottom: 8px;
}

.column-size-1 {
  width: 8.33333%
}

.column-size-2 {
  width: 16.6666%
}

.column-size-3 {
  width: 25%
}

.column-size-4 {
  width: 33.3333%
}

.column-size-5 {
  width: 41.6666%
}

.column-size-6 {
  width: 50%
}

.column-size-7 {
  width: 58.3333%
}

.column-size-8 {
  width: 66.6666%
}

.column-size-9 {
  width: 75%
}

.column-size-10 {
  width: 83.3333%
}

.column-size-11 {
  width: 91.6666%
}

.column-size-12 {
  width: 100%;
}

#main-content-container>* {
  scroll-margin-top: 100px;
}

.header__top-phone_link a.block_city-name--linkmodal__open {
  display: inline-block;
  font-size: 13px;
  line-height: 13px;
  color: #000;
  font-weight: 400;
  white-space: nowrap;
  /*max-width: 148px;*/
  text-overflow: ellipsis;
  overflow: hidden;
  height: 16px;
}

.header__top-phone_link a.block_city-name--linkmodal__open span.alink {
  border-bottom: 1px dashed;
}

.header__top-phone_link a.block_city-name--linkmodal__open span.material-symbols-outlined {
  display: inline-block;
  top: 1px;
  font-size: 16px;
}

#modal-yandex-map {
  height: 300px;
}

.catalog-element .offers-column__variants>a,
.catalog-element .offers-column__variants>span {
  padding: 10px 25px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  border-color: rgba(0, 0, 0, .1);
  margin-right: 5px;
  margin-bottom: 8px;
}

.catalog-element .offers-column__variants-name,
.catalog-element .offers-column__properties-lines-name {
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 10px;
}

.calalog-element .offers-column__properties-container {
  margin-top: 15px;
}

.blocks-item {
  position: relative;
  padding-top: var(--blocks-main-padding);
  padding-bottom: var(--blocks-main-padding);
}

.tingle-modal-box {
  border-radius: var(--main-border-radius);
}

.tingle-modal-box__content {
  padding: 24px;
}

.tingle-modal-box .blocks-item {
  padding-top: 0;
  padding-bottom: 0;
}

.tingle-modal-box h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
}

.tingle-modal-box .form-feedback__text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.blocks-item__list {
  padding-top: var(--block-margin-top--with-text);
}

.blocks-item__list-text {
  margin-bottom: var(--h2-margin-bottom--divide-2);
  color: var(--color-textsecondary);
}

.blocks-item__list-text p:last-child {
  margin-bottom: 0;
}

.block-background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow:hidden;
}

.block-background__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(205, 205, 205, .1);
}

/** jarallax **/
.jarallax{position:relative;z-index:0}.jarallax>.jarallax-img,picture.jarallax-img img{position:absolute;object-fit:cover;top:0;left:0;width:100%;height:100%;z-index:-1}


.slider_index > .container {
  position: relative;
}

.addresses-list_item .swiper,
.addresses-list_item .swiper-wrapper {
  max-height: 400px;
}
.addresses-list_item--left .swiper-slide img {
  max-height: 400px;

}

.geo-list__item .iww_____element-buttons-container:not(.iww_____element-buttons-container--wrapper) {
    left: auto;
    right: 0;
}

.slider_index > .container {
  position: relative;
}

.slider_index:hover .swiper-button-next:after,
.slider_index:hover .swiper-button-prev:after {
  opacity: 1;
}

.simple-text__item-left h2 {
  margin-top: 0;
}

.block-reasons__item--two-columns-row {
  justify-content: left;
}

.block-reasons__item--two-columns .block-reasons__wrapper {
  display: flex;
  margin-bottom: 30px;
}

.block-reasons__item--two-columns {
  padding-left: 15px;
  padding-right: 15px;
}

.block-reasons__wrapper--left {
  width: 25%;
  flex: 0 0 25%;
}

.block-reasons__wrapper--right {
  width: 75%;
  flex: 0 0 75%;
  display: flex;
  align-items: end;

}

.simple-line {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, .1);
}

.swiper-slide {
  background: transparent;
}

.header_5 .header__top-line {
	height: auto;
}

.header_5 .header__top-city_link .block_city-name--linkmodal span:first-child {
	border: none;
}

.header_5 .header__top-city_link .block_city-name--linkmodal span:last-child {
	border-bottom: 1px dashed;
}

.header_5 .header__top-city_link a span:first-child {
	margin-bottom: 8px;
}

.header_5 .header__top-phone_link {
	text-align: left;
}

.header_5 .header__top-city_link a {
	margin-top: 3px;
}

.header_5 .header__navigation {
	height: auto;
	padding-bottom: 15px;
	margin-left: 0;
}

.header_5 .header__navigation-container ul li:first-child span:nth-child(1),
.header_5 .header__navigation-container ul li:first-child span:nth-child(3){
	/*display: none;*/
}
.header_5 .header__navigation .header__navigation-container > ul > li > a{
	font-size: 14px;
    padding: 0 14px;
    display: flex;
    height: 100%;
    align-items: center;
    /*max-height: 85px;*/
    color: #000;
    border: none ! important;
}
.header_5 .header__navigation .header__navigation-container > ul > li > a span{
	margin-bottom: 0;
}
.header_5 .header__navigation .header__navigation-container > ul > li > a:hover{
	opacity: 0.5;
	background: transparent;
}
.header_5 .header__navigation{
	/*min-height: 85px;*/
    display: flex;
    background: transparent;
    margin-left: 0;
    /*width: 100%;*/
}
.header_5 .header__navigation .header__navigation-container > ul > li{
	width: auto;
}
.header_5 .header__navigation {
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  /*max-width: calc(100% - 457px);*//*
  justify-content: center;*/
}
.header_5 .container .container {
	width: auto;
	max-width: auto;
	min-width: none;
	padding: 0;
	margin: 0;
}

.header_5 .container .container .header__navigation-container {
	height: 100%;
}

.header_5 .header__navigation .header__navigation-container > ul > li.active2 > a {
	background-color: transparent;
	fill: transparent;
}

.header_5 .header__navigation .header__navigation-container > ul > li > a > span {
	transition: 0s;
}

.header_5 .header__navigation .header__navigation-container > ul > li > a:hover {
	color: #fff;
	opacity: 1;
}

.header_5 .header__navigation .header__navigation-container > ul > li.active2 > a span:not(.material-symbols-outlined) {
	border-bottom: 1px solid;
}

.header_5 .header__navigation .header__navigation-container > ul > li > a:hover,
.header_5 .header__navigation .header__navigation-container > ul > li.active > a {
	background: transparent;
	color: #fff;
	border:none;
}

.header_5 .header__navigation .header__navigation-container > ul > li:first-child > a > span.material-symbols-outlined:first-child, .header__navigation .header__navigation-container > ul > li:first-child > a > span.material-symbols-outlined.bottom, .header__navigation .header__navigation-container > ul > li > a > span.material-symbols-outlined.right {
	position: relative;
	top: -2px;
}

.header_5 .header__navigation .header__navigation-container > ul > li:first-child > a > span.material-symbols-outlined.bottom {
	margin-left: 7px;
}

.desktop-header.header.header_5 .header__navigation .header__navigation-container > ul > li:first-child > a {
	padding-left: 0;
}

.header_5 .header__top-logo img {
	left: 15px;
	right: auto;
}

.header_5 .header__top-phone_link a.header__top-phone_link--callme {
    font-size: 13px;
    line-height: 13px;
    font-weight: 400;
    text-align: center;
    border: 1px solid;
    padding: 4px 8px;
    display: inline-block;
    width: 100%;
}

.header .header-button-callme-link {
  margin-right: 15px;
  white-space: nowrap;
}

.header .header__top-search_link a.header__top-search_link-act {
  padding: 12px 16px;
  border-radius: var(--main-border-radius);
  margin-right: 16px;
}

.header .header__top-search_link span.header__top-search_link-act {
  display: block;
  padding: 20px 24px;
  margin-right: 16px;
  opacity: 0;
}

footer.footer.footer-main {
	position: relative;
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
	height: auto;
	padding-right:0;
	z-index: 1;
}

.footer-column__address p {
	color: #fff;

}

.table-one {
  margin-bottom: 30px;
}

.table-one table {
  margin-bottom: 0;
}

.block-reasons__wrapper--icon {
  display: inline-block;
  border: 1px solid transparent;
}

.table-with-search__item--disable {
  display: none;
}

.table-one-with-overlay {
  position: relative;
}

.table-one-with-overlay:after {
  content: '';
  display:block;
  position: absolute;
  bottom:0;
  left:0;
  right:0;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
  height: 125px;
}

.table-one .form-field :inputfocus {
  outline: none;
  border-color: none;
  box-shadow: none;
}

.tab-content__item .table-with-search__item {
  margin-top: 30px;
}

.block-categories .row {
  justify-content: left;
}

.snippet-warehouses-list div {
  font-size: 13px;
  line-height: 18px;
}

.simple-text img {
  max-width:  100%;
  border-radius: var(--main-border-radius);
}

/** вторая версия модуля text */
.iww__text-and-image_ver2 {
 display: flex;
}

.image-container {
 /* Стили для изображения */
 flex: 1 1 auto;
 /* Заполняет все свободное пространство */
 max-width: 100%;
 /* Предотвращает превышение ширины изображения */
}

.text-container {
 /* Стили для блока текста */
 flex: 0 0 50%;
 /* Фиксированная ширина текста */
}

/* Варианты расположения */
.iww__text-and-image_ver2.top-image {
 flex-direction: column;
 /* Вертикальное расположение (изображение сверху) */
}

.iww__text-and-image_ver2.left-image {
 flex-direction: row;
 /* Горизонтальное расположение (изображение слева) */
 justify-content: flex-start;
 /* Выравнивает элементы по левому краю */
}

.iww__text-and-image_ver2.bottom-image {
 flex-direction: column;
 /* Вертикальное расположение (изображение снизу) */
}

.iww__text-and-image_ver2.right-image {
 flex-direction: row;
 /* Горизонтальное расположение (изображение справа) */
 justify-content: flex-end;
 /* Выравнивает элементы по правому краю */
}

/* Дополнительные стили для порядка элементов */
.iww__text-and-image_ver2.top-image .image-container,
.iww__text-and-image_ver2.bottom-image .image-container {
 order: 2;
 /* Изображение внизу или сверху */
}

.iww__text-and-image_ver2.right-image .image-container {
 order: 1;
 /* Изображение слева или справа */
}

/* Отступ между текстом и изображением */
.iww__text-and-image_ver2 {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.iww__text-and-image_ver2 .ti-container { 
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.iww__text-and-image_ver2 ul,
.simple-styled-list_default .advantages-list__item ul {
  list-style-type: none;
  padding-left: 0;
}

.iww__text-and-image_ver2 ul li,
.simple-styled-list_default .advantages-list__item ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.iww__text-and-image_ver2 ul li::before,
.simple-styled-list_default .advantages-list__item ul li:before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-textmain);
}

header.header {
  position:relative;
  z-index:99;
}

.iww_panel_____visible .main-search-widget__abs.main-search-widget__abs--inline,
.main-search-widget__abs.main-search-widget__abs--inline {
  position:absolute;
  display:block;
  top:auto;
  left:auto;
  right:auto;
  bottom:auto;
  opacity:1;
  border: none;
  box-shadow: none;
  background: transparent;
  height:auto;
  padding:0;
  z-index: 1;
  width: 100%;
}

.main-search-widget__abs.main-search-widget__abs--inline .main-search-widget {
  padding-top: 8px;
  padding-bottom: 8px;
}


.main-search-widget__abs.main-search-widget__abs--inline .main-search-widget__search-form {
  display:block;
  width: 100%;
}

.main-search-widget__abs.main-search-widget__abs--inline .main-search-widget__search-input {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.main-search-widget__abs.main-search-widget__abs--inline .main-search-widget__search-button {
  right: 10px;
}

.main-search-widget__search-form--result_container--inline {
  position: absolute;
  left: 0;
  right: 0;
  padding: 0;
  margin-left: 15px;
  margin-right: 15px;
  padding-left: 15px;
  padding-right: 15px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 0 0 8px 8px;
  z-index: 100;

}

.main-search-widget__search-form--container-relative {
  position: relative;
}

.main-search-widget__abs.main-search-widget__abs--inline .main-search-widget__search-form--result {
  margin-bottom: 15px;
}

.block-search-in-page {
    display: flex;
    align-items: center; /* Центрирование по вертикали */
    justify-content: center; /* Центрирование по горизонтали, если нужно */
    /*height: 100%;*/ /* Убедитесь, что родительский элемент имеет заданную высоту */
}

.block-background-image {
  height: 100%;
}

.block-search-in-page .main-search-widget__abs.main-search-widget__abs--inline {
  position: relative;
}

.block-search-in-page .main-search-widget__container {
    width: 100%; /* Задайте нужную ширину */
}

.iww_panel--enabled .block-search-in-page {
  margin-top: 20px;
}

.block-search-in-page .iww_panel_____loader--s {
  top: 5px;
  bottom: 5px;
}

.block-search-in-page .main-search-widget__search-form--result_container.main-search-widget__search-form--result_container--inline {
  margin-left: 0;
  margin-right: 0;
}

.block-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* Для поддержки parallax */
.load-block-parallax .block-background-video {
    transform: translate(-50%, -50%) translateY(var(--parallax-offset, 0));
    transition: transform 0.1s linear;
}

.material-symbols-outlined.rotating {
    animation: spin 2s linear infinite;
    position: relative;
    top: 2px;
    right: -1px;
}

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

.header__top-login_link > a {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #000;
    height: 100%;  
}

.header__top-line.row.row-to-center {
  margin-left:0;
  margin-right:0;
}

.blocks-item.i-slider {
  padding-top: 0;
  padding-bottom: 0;
}

.block-popular-offers.offers {
  padding-top: 0;
  padding-bottom: 0;
  background: none;
}

.block-popular-offers.offers .column {
  width: 25%;
  flex: 0 0 25%;
  min-width: 25%;
  max-width: 25%;
}

.block-popular-offers.offers .row  {
  margin-left: -8px;
  margin-right: -8px;
}

.block-popular-offers.offers .column {
  width: 20%;
  flex: 0 0 20%;
  min-width: 20%;
  max-width: 20%;
  padding-left: 8px;
  padding-right: 8px;
}

.block-popular-offers.offers .offers-column {
  min-width: auto;
  max-width: none;
  width: 100%;
}

.offers .offers-column .gallery-for-offer {
  position:relative;
}

.offers .offers-column .offers-column__tags {
  left: -10px;
  top: -13px;
  right: auto;
}

.offers .offers-column .offers-column__tags > a {
  border-radius:4px;
  color:#fff;
  font-weight: 700;
  font-size: 10px;
  line-height: 10px;
  text-transform:uppercase;
  padding: 4px 5px 3px;
}

.offers-column__other-buttons > a {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}

.offers-column__other-buttons > a:first-child {
  margin-left: 0;
}

.offers-column__other-buttons > a:hover {
  background: none;
}

.offers-column__other-buttons > a svg {
  fill: var(--color-icon);
}

.offers-column__other-buttons > a:hover svg {
  fill: var(--color-maintheme);
}

.offers-column .swiper-pagination {
  left: 15px;
  right: 15px;
  width: auto;
}

.offers-column .swiper-pagination-bullet {
  background: var(--color-bottom);
  margin-right: 8px;
}

.offers-column .swiper-pagination-bullet-active {
  background: var(--color-maintheme);
}

/* Общие стили для всех подменю */
.header__navigation .header__navigation-container ul ul {
    background: #fff;
    box-shadow: var(--main-shadow-base);
    border-radius: var(--main-border-radius);
}

/* Стили для второго уровня */
.header__navigation .header__navigation-container > ul > li > ul {
    left: 0;
    top: calc(100% + 15px);
}

/* Стили для третьего и последующих уровней */
.header__navigation .header__navigation-container > ul > li > ul > li > ul,
.header__navigation .header__navigation-container ul ul ul {
    left: 100%;
    top: 0;
    box-shadow: none;
    margin-left: 1px;
}

.header__navigation .header__navigation-container ul ul ul .menu-icon.right,
.header__navigation .header__navigation-container ul ul ul .menu-icon.bottom {
  display:none;
}

/* Стили для right-position третьего и последующих уровней */
.header__navigation .header__navigation-container ul ul.right-position {
    left: auto;
    right: 100%;
    box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-left: 0;
    margin-right: 1px;
}

/* Создаем невидимые мостики между уровнями меню */
.header__navigation .header__navigation-container > ul > li > ul > li.is-parent::after,
.header__navigation .header__navigation-container ul li.is-parent::after,
.header__navigation .header__navigation-container > ul > li > ul > li.is-parent::before,
.header__navigation .header__navigation-container ul li.is-parent::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 20px;
    pointer-events: auto;
}

/* Позиционируем мостики */
.header__navigation .header__navigation-container ul li.is-parent::after, {
    right: -20px;
    left: auto;
}

.header__navigation .header__navigation-container ul li.is-parent::before {
    left: -20px;
    right: auto;
}

/* Обеспечиваем правильное позиционирование родительских элементов */
.header__navigation .header__navigation-container ul li.is-parent {
    position: relative;
}

/* Компенсируем отступы для подменю */
.header__navigation .header__navigation-container ul ul:not(.right-position) {
    margin-left: 0;
}

.header__navigation .header__navigation-container ul ul.right-position {
    margin-right: 0;
}

.header__navigation-container > ul > li:before,
.header__navigation-container > ul > li:after {
  display: none;
}

/* большое всплывающее меню, новый вариант */

.large-pop-up-menu__container {
  position: absolute;
  left: 0;
  right: 0;
  top: 172px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.large-pop-up-menu__container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.large-pop-up-menu__container > .container {
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.large-pop-up-menu {  
  position: relative;
  background: #fff;
  padding: 48px 24px;
  background: #FFFFFF;
  /* shadow base */
  box-shadow: var(--main-shadow-base);
  border-radius: 0px 0px var(--main-border-radius) var(--main-border-radius);
}

.large-pop-up-menu:before {
  content: '';
  height: 6px;
  position: absolute;
  left: 0;
  right: 0;
  top: -6px;
}

.header__navigation .header__navigation-container>ul>li.nofill.active>ul:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

/* new search */

.main-search-widget__search-form {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
}

.main-search-widget__search-label {
    white-space: nowrap;

    font-weight: 500;
    font-size: 20px;
    line-height: 24px;

    color: var(--color-textmain);    
}

.main-search-widget__search-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.main-search-widget__search-input {
    width: 100%;
}

.main-search-widget__search-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.main-search-widget__search-button > svg {
  position: relative;
  top: -2px;
}

.main-search-widget__search-wrapper {
    position: relative;
}

.main-search-widget__search-placeholder {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    pointer-events: none;
    transition: opacity 0.2s;

    font-weight: 400;
    font-size: 14px;
    line-height: 20px;

}

.main-search-widget__search-placeholder .main-search-widget__example-link {
    color: var(--color-maintheme);
    text-decoration: none;
    pointer-events: all;
}

/* Стили для фиксированной шапки */
.header__center.fix_enable {
    transition: opacity 0.3s ease;
}

.header__center--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    opacity: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.iww_panel_____visible .header__center--fixed {
  top: 40px;
}

.header__center--fixed .large-pop-up-menu__container {
  top: 108px;
}

.header__center--fixed .large-pop-up-menu__container .large-pop-up-menu {
  max-height: calc(100vh - 150px);
  overflow: auto;
}

.header__center--fixed.header__center--visible {
    opacity: 1;
    background: var(--color-top);
}

/* Основные стили для блока социальных иконок */
.header_socials {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.header_socials ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px; /* Расстояние между иконками */
}

.header_socials li {
  position: relative;
}

/* Стили для ссылок и иконок в обычном состоянии */
.header_socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: transparent;
  transition: all 0.2s ease;
  border-radius: 50%;
}

.header_socials svg {
  transition: all 0.2s ease;
  max-width: 21px;
}

.header_socials svg path {
  fill: var(--color-top);
  transition: fill 0.2s ease;
}

/* Стили для ссылок и иконок при наведении */
.header_socials a:hover {
  background-color: rgba(150, 150, 150, 0.8); /* Серый фон при наведении */
}

/* Медиа-запрос для адаптивности на мобильных устройствах */
@media (max-width: 480px) {
  .header_socials ul {
    gap: 10px;
  }
  
  .header_socials a {
    width: 35px;
    height: 35px;
  }
}

.header__cart-actions-list {
  display: flex;
}

.header__cart-actions-list .header__cart.header__cart-actions:first-child {
  margin-left: 0;
}

.header__cart-actions {
  align-items: center;
  display: flex;
  margin-left: 24px;
}

.header__cart-actions-link {
  display: flex;
  height: 100%;
  align-items: center;
  width: auto;
  height: auto;
  border-bottom: none;
}

.header__cart-actions-name {
  color: var(--color-top);
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
}

.header__cart-actions-svg {
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}

.header__cart-actions-count {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px 8px;
  gap: 8px;

  width: 25px;
  height: 24px;

  background: var(--color-maintheme);
  color: var(--color-top);
  border-radius: var(--main-border-radius);
  
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;

  margin-left: 4px;

  position: relative ! important;
  top: auto ! important;
  right: auto ! important;
  bottom: auto ! important;
  left: auto ! important;

}

.header__cart.header__cart-actions {
  position: relative;
}

.header__cart-actions-name.dropdown-toggle:after {
  display: none;
}

.header__cart.header__cart-actions.dropdown:hover .dropdown-menu--user {
  display: block;
}

#btn-submit-logout {
  width: 0;
  height: 0;
  position: absolute;
  padding: 0;
  opacity: 0;
  margin: 0;
}

@keyframes cartQuantityPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.cart-quantity-updated {
    animation: cartQuantityPulse 0.5s ease-in-out;
}

.clone-image-for-cart {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    pointer-events: none;
}

.swiper-slide__caption-description p {
  margin-bottom: 0;
}

.index-swiper .swiper-button-prev svg,
.index-swiper .swiper-button-next svg {
  stroke: var(--color-top);
}

.index-swiper .swiper-button-prev:hover svg,
.index-swiper .swiper-button-next:hover svg  {
  stroke: var(--color-icon);
}

.block-company-reviews__index {
  padding-bottom:var(--blocks-main-padding);
}

.iww__simple-services_list-item__container.iww__simple-services_list-item--advanced-margin .iww__simple-services_list-item {
  padding-bottom: var(--blocks-main-padding);
}

.iww__simple-services_list-item {
  border: 1px solid transparent;
  height: 100%;
}

.iww__simple-services_list-item__text {
    margin-top: 15px;
}

.blocks-item__list-text p {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.block-search-in-page .main-search-widget__abs.main-search-widget__abs--inline .main-search-widget__search-input {
  /*border-radius: calc(var(--main-border-radius) / 2);*/
}

.menu-hamburger__catalog-content {
  /*display: flex;
  align-items: center;*/
}

.menu-hamburger__catalog-item {
  min-height: 100px;
}

.menu-hamburger__catalog-icon--lvl2 {
  position: absolute;
  top: 0;
  left: 0;
}

.menu-hamburger__catalog-icon.menu-hamburger__catalog-icon--lvl2 img {
  width: 55px;
  height: 55px;
}

.block-search-in-page .main-search-widget__search-form--result {
  padding-left: 0;
}

.column-slide:last-child {
  /*align-items: end;*/
}

/*#main-content-container > .blocks-item:not(.i-slider):first-child {
  padding-top: calc(var(--blocks-main-padding) / 2);
}*/

.text-container p:last-child {
  margin-bottom: 0;
}

.content-block__container {
  border: 1px solid transparent;
}

.content-block__container ul:last-child,
.tiles_item ul:last-child {
  margin-bottom: 0;
}

.content-block__container li,
.tiles_item li {
  margin-bottom: 10px;
}

.content-block__container ul li:last-child,
.tiles_item ul li:last-child {
  margin-bottom: 0;
}


.content-block__container li ul,
.tiles_item li ul {
  margin-top: 10px;
}

.blocks-item.tiles .row {
  gap: 30px 0;
}

.block-div>.block-item:first-child>.info {
  min-height: 360px;
}

.news .otherBlock {
  margin-top: 30px;
}

.news .current-tags p {
  padding: 2px 10px 0;
}

.header__navigation .header__navigation-container>ul>li.nofill>ul>li ul.active-mobi-ul {
  right: 0;
}

.right-extended-info__container .blocks-item {
  padding-top: 0 ! important;
  padding-bottom: 0 ! important;
}

.blocks-item.news {
  padding-top: 0;
}

.language-selector {
    position: relative;
}

.language-button {
    background: none;
    border: none;
    color: var(--color-top);
    font-size: 12px;
    line-height: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
    text-transform: uppercase;
}

.language-button svg {
    margin-left: 5px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-top);
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: var(--main-border-radius);
    box-shadow: var(--main-shadow-base);
    display: none;
    z-index: 1000;
    min-width: 100px;
}

.language-dropdown.show {
    display: block;
}

.language-option {
    padding: 8px 12px;
    cursor: pointer;
    color: var(--color-textsecondary);
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
}

.language-option:hover {
    color: var(--color-textmain);
}

.simple-styled-list .blocks-item__list-text,
.simple-styled-list .process-step__title,
.simple-styled-list .process-step__description {
  color: var(--color-textmain);
}

.simple-styled-list .simple-styled-list__item {
  padding: 0 24px 0;
  margin-bottom: 30px;
  position: relative;
}

.simple-styled-list .process-step__image img,
.simple-styled-list .process-step__image svg {
  max-width: calc(100% + 48px);
  height: auto;
  border-radius: var(--main-border-radius);
  margin-left: -24px;
  margin-right: -24px;
}

.simple-styled-list .process-step__title {
  position: relative;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  color: var(--color-textmain);
  border-color: var(--color-textmain);
  margin-top: 24px;
  margin-bottom: 8px;
}

.simple-styled-list .process-step__number {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid;
  font-size: 12px;
  line-height: 12px;
  margin-right: 8px;
}

.simple-styled-list .process-step__description {
  font-size: 14px;
  line-height: 20px;
}

.process-step__title--is_numeric,
.process-step__description--is_numeric {
  padding-left: 37px;
}

.simple-styled-list .process-step__description p {
  color: inherit;
}

.simple-styled-list .row {
  margin-left: -8px;
  margin-right: -8px;
}

.simple-styled-list__item {
  height: 100%;
}

.simple-styled-list__item-wrapper {
  margin-bottom: 16px;
  padding-left: 8px;
  padding-right: 8px;
}

.process-step__description p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.process-step__description p:last-child {
  margin-bottom : 0;
}

.simple-styled-list__item {
  border: 1px solid rgba(0, 0, 0, 0);
}

.simple-styled-list_default .advantages-list__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.simple-styled-list_default .advantages-list__item {
  display: flex;
  align-items: flex-start;
  background-color: var(--color-bottom);
  border-radius: var(--main-border-radius);
  padding: 24px 24px 24px 0;
  width: 100%;
}

.simple-styled-list_default .advantages-list__item.advantages-list__item--ver2 {
  display: block;
  padding: 24px;
  background-color: var(--color-top);
}

.simple-styled-list_default .advantages-list__item.advantages-list__item--ver2 .advantages-list__title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.simple-styled-list_default .advantages-list__item.advantages-list__item--ver2 .advantages-list__item--ver2-cont {
  display: flex;
}

.advantages-list__item--ver2-cont .advantages-list__icon > span {
  background: var(--color-maintheme);
  display: inline-block;
  padding: 18px;
  border-radius: 36px;
}

.advantages-list__item--ver2-cont .advantages-list__icon svg {
  width: 36px;
  height: auto;
  stroke: #fff;
}

.simple-styled-list_default .advantages-list__icon {
  flex: 0 0 84px;
  display: flex;
  justify-content: center;
}

.simple-styled-list_default .advantages-list__item.advantages-list__item--ver2 .advantages-list__icon {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.simple-styled-list_default .advantages-list__icon svg {
  width: 36px;
  height: 36px;
}

.simple-styled-list_default .advantages-list__icon svg path {
  stroke: transparent;
  fill: var(--color-maintheme);
}

.simple-styled-list_default .advantages-list__item--ver2-cont .advantages-list__icon svg path {
    stroke: transparent;
    fill: #fff;
}

.simple-styled-list_default .advantages-list__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.simple-styled-list_default .advantages-list__icon-placeholder {
  width: 40px;
  height: 40px;
  background-color: #e0e0e0;
  border-radius: 50%;
}

.simple-styled-list_default .advantages-list__content {
  flex: 1;
}

.advantages-list__content-bottom {
  padding-top: 24px;
}

.simple-styled-list_default .advantages-list__item--ver2-cont .advantages-list__content {
  margin-left: 16px;
  align-content: center;
}

.simple-styled-list_default .advantages-list__title {
  font-size: 18px;
  line-height: 24px;

  font-weight: 600;
  padding-bottom: 0;
  margin-bottom: 8px;
}

.simple-styled-list_default .advantages-list__description {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-textsecondary);
}

.simple-styled-list_default .advantages-list__description p {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.simple-styled-list_default .advantages-list__description p:last-child {
  margin-bottom: 0;
}

.block-question__middle p {
  color: inherit;
}




.block-cooperation2 {
  padding: 60px 0;
} 

.block-cooperation__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-maintheme);
  padding: 28px 48px;
  border-radius: var(--main-border-radius);
}

.block-cooperation__left-content {
  flex: 0 0 58%;
  padding-right: 40px;
}

.block-cooperation__right-content {
  flex: 0 0 45%;
  position: relative;
  text-align: right;
}

.block-cooperation2 h2,
.block-cooperation2 .blocks-item__list-text {
  color: #fff;
  text-align: left;
}

.block-cooperation2 h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.block-cooperation2 .blocks-item__list-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.block-cooperation__button-wrapper {
  margin-top: 30px;
}

.block-cooperation__button-wrapper .btn {
  background-color :var(--color-top);
  color: var(--color-maintheme);
}

.block-cooperation__button-wrapper .btn svg path {
  stroke: var(--color-maintheme);
}

.block-cooperation {
  overflow: hidden;
}

.block-cooperation__image {
  max-width: 100%;
  height: auto;
  display: inline;
  position: relative;
  bottom: -30px;
}

/* Адаптивность */
@media (max-width: 992px) {
  .block-cooperation__wrapper {
    flex-direction: column;
    padding: 24px;
  }
  
  .block-cooperation__left-content {
    flex: 0 0 100%;
    padding-right: 0;
    margin-bottom: 30px;
    order: 1;
  }
  
  .block-cooperation__right-content {
    flex: 0 0 100%;
    order: 0;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .block-cooperation__image {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .block-cooperation2 {
    padding: 40px 0;
  }
  
  .block-cooperation2 h2 {
    font-size: 24px;
  }
  
  .block-cooperation__button-wrapper .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}


.block-news-by-3 .block-article__item-name {
  color: var(--color-textmain);
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.block-news-by-3 .block-article__item-name:hover {
  color: var(--color-maintheme);
}

.block-news-by-3 h2 a {
  color: inherit;
  display: inline-block;
  border-bottom: 4px solid var(--color-maintheme);
  padding-bottom: 4px;
}

.block-news-by-3 .block-article__item-text {
  color: var(--color-textmain);
  font-size: 14px;
  line-height: 20px;
  margin-top: 0;
}

.block-news-by-3 .block-sale__item,
.block-news-by-3 .block-article__item {
  background: transparent;
  border: none;
}

.block-news-by-3 .row {
  margin-left: -8px;
  margin-right: -8px;
}

.block-news-by-3 .row .column {
  padding-left: 8px;
  padding-right: 8px;
}

.block-news-by-3 .block-article__item-img {
  border-radius: var(--main-border-radius);
}

.block-news-by-3 .block-article__item--date {
  color: var(--color-textsecondary);
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 8px;
}

.block-partners-text-top {
  background: #fff;
}

.block-partners-text-top .block-partners-text-top__container {
  background: var(--color-average);
  border-radius: var(--main-border-radius);
  padding: 48px;
}

.block-partners-text-top .block-partners__list {
  margin-left: -17px;
  margin-right: -17px;
  margin-bottom: 16px;
}

.block-partners-text-top .block-partners__list-item {
  width: 20%;
  flex: 0 0 20%;
  padding: 0 17px;
  margin-bottom: 16px;
}

.block-partners-text-top .block-partners__list-item__image {
  display: block;
  opacity: .7;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 100%;
  height: 140px;
  background-size: 50% auto;
  background-color: var(--color-top);
  border-radius: var(--main-border-radius);
  filter: none;
}

.block-partners-text-top .block-partners__list-item:hover .block-partners__list-item__image {
  opacity: 1;
}

.block-partners-text-top .block-partners__text {
  margin-bottom: 24px;
}

.block-partners-text-top .block-partners__text p:last-child {
  margin-bottom: 0;
}

.block-popular-offers-container {
  background: #fff;
}

.contacts_map2 .yandex-map {
  height: 438px;
}

.contacts_map-info2 .contacts_map-column {
  padding: 0;
}

.contacts_map-info2 .contacts_map-info__item {
  padding-top: 0;
}

.contacts_map2__left {
  position: relative;
  height: 100%;
}

.contacts_map2__left .btn-transparent {
  margin-top: 48px;
}


#main-catalog .noUi-horizontal {
  height: 6px;
}

#main-catalog .noUi-horizontal .noUi-handle {
  width: 16px;
  height: 16px;
  right: -8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.04);
}

#main-catalog .noUi-horizontal .noUi-handle:before,
#main-catalog .noUi-horizontal .noUi-handle:after {
  display: none;
}

#main-content-container > .blocks-item:first-child {
  padding-top: 0;
}

.block-form .container {
  display: flex;
}


.videoBg {
    --video-offset-y: 0;
}

.videoBg video {
    transform: translateY(var(--video-offset-y));
}


#main-content-container > .blocks-item#main-catalog:first-child {
  padding-top: 17px;
}


.simple_banner img {

  border-radius: var(--main-border-radius);

}

.container--has_left_menu {
  padding-top: 16px;
}

.footer-logo img {
  max-width: 100px;
}


.galery_button {
  margin-top: 15px;
}

.stories-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
}

.swiperVideo {
    width: 100%;
    overflow: hidden;
}

.swiper-slide-history {
    height: 550px; /* Фиксированная высота */
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto ! important; /* Автоматическая ширина */
    position: relative;
}

.swiper-slide-history video {
    height: 100%;
    width: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Стили для кнопок навигации */
.swiper-button-next-6, .swiper-button-prev-6 {
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next-6:after, .swiper-button-prev-6:after {
    font-size: 18px;
}

/* Стили для кнопки воспроизведения */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.7);
}

.play-button:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 5px;
}

.story-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    z-index: 1;
}

.video-container {
    position: relative;
    height: 100%;
    width: auto;
}


/** типы отображения */
/* Стили для списочного отображения товаров */
.offers-list {
  width: 100%;
}

.list-items.offers-column {
  width: 100%;
  display: flex;
}

.offers-main.offers-list {
  display: block ! important;
}

.list-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

.list-item.offers-column,
.product-row.offers-column {
  height: auto ! important;
  width: 100% ! important;
  min-width: 100% ! important;
  max-width: 100% ! important;
  width: 100%;
  border: none  ;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.list-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.list-item .offers-column__incart,
.product-row .offers-column__incart {
  position: relative;
  top: auto ! important;
  right: auto ! important;;
  left: auto ! important;;
  bottom: auto ! important;;
}

.list-item__wrapper {
  display: flex;
  padding: 15px;
}

.list-item__image {
  width: 150px;
  flex-shrink: 0;
  margin-right: 20px;
}

.list-item__content {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
}

.list-item__info {
  flex-grow: 1;
  max-width: 60%;
}

.list-item__name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.list-item__name a {
  color: #333;
  text-decoration: none;
}

.list-item__name a:hover {
  color: #00a046;
}

.list-item__availability {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 15px;
}

.list-item__properties {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.list-item__properties--show {
  max-height: 500px;
}

.list-item__properties-container {
  padding-top: 10px;
}

.list-item__properties-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.list-item__properties-line {
  display: flex;
  font-size: 14px;
}

.list-item__properties-left {
  color: #777;
  margin-right: 5px;
}

.list-item__properties-right {
  color: #333;
}

.list-item__actions {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /*align-items: flex-end;*/
  min-width: 180px;
}

.list-item__price {
  margin-bottom: 15px;
  text-align: right;
}

.list-item__cart {
  width: 100%;
}

.list-item__cart .btn {
  text-align: center;
}

/* Адаптивные стили */
@media (max-width: 768px) {
  .list-item__wrapper {
    flex-direction: column;
  }
  
  .list-item__image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .list-item__content {
    flex-direction: column;
  }
  
  .list-item__info {
    max-width: 100%;
    margin-bottom: 15px;
  }
  
  .list-item__actions {
    width: 100%;
    align-items: stretch;
  }
}

/*********************************/

/* Стили для табличного отображения товаров */
.offers-table {
  width: 100%;
}

.table-container {
  /*overflow-x: auto;*/
  margin-bottom: 20px;
}

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

.products-table .offers-column__incart {
  position: relative ! important;
  top: auto ! important;
  bottom: auto ! important;
  right: auto ! important;
  left: auto ! important;
}

.products-table th {
  /*background-color: #f5f5f5;*/
  padding: 12px;
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.products-table td {
  padding: 15px 12px;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: middle;
  position:relative;
}

.products-table .offers-column__other-buttons {
  top: 15px;
  right: auto;
  left: 15px;
}

.product-row:hover {
  background-color: #f9f9f9;
}

/* Колонки таблицы */
.col-image {
  width: 120px;
}

.col-name {
  width: 25%;
}

.col-specs {
  width: 15%;
}

.col-availability {
  width: 25%;
}

.col-price {
  width: 15%;
}

.col-actions {
  position:relative;
  width: 30%;
}

/* Изображение товара */
.product-image {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.products-table .offers-column__slider-container>.swiper-pagination {
  bottom: 30px;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Название товара */
.product-name {
  font-weight: 500;
  margin-bottom: 5px;
}

.product-link {
  color: #333;
  text-decoration: none;
}

.product-link:hover {
  color: #00a046;
  text-decoration: underline;
}

/* Характеристики товара */
.specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.specs-item {
  margin-bottom: 5px;
  font-size: 14px;
}

.specs-name {
  color: #777;
  margin-right: 5px;
}

.specs-value {
  color: #333;
}

.more-specs {
  display: inline-block;
  font-size: 13px;
  color: #00a046;
  margin-top: 5px;
  text-decoration: none;
}

.more-specs:hover {
  text-decoration: underline;
}

/* Цена товара */
.item-prices {
  font-weight: 600;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

/* Кнопки действий */
.col-actions {
  /*text-align: center;*/
}

.btn-details {
  margin-top: 10px;
}

.btn-details:hover {
  background-color: #00a046;
  color: #fff;
}

.btn-cart {
  background-color: #00a046;
  border: 1px solid #00a046;
  color: #fff;
  width: 100%;
}

.btn-cart:hover {
  background-color: #008a3c;
}

/* Адаптивные стили */
@media (max-width: 992px) {
  .col-specs {
    display: none;
  }
  
  .col-name {
    width: 35%;
  }
}

@media (max-width: 768px) {
  .products-table {
    font-size: 14px;
  }
  
  .col-image {
    width: 80px;
  }
  
  .product-image {
    width: 70px;
    height: 70px;
  }
  
  .col-availability {
    display: none;
  }
  
  .col-name {
    width: 40%;
  }
  
  .col-price {
    width: 25%;
  }
  
  .col-actions {
    width: 25%;
  }
}

@media (max-width: 576px) {
  .table-container {
    overflow-x: scroll;
  }
  
  .products-table {
    min-width: 500px;
  }
}

.block-item-prev > span,
.block-item-next > span {
  display: block;
  margin-bottom: 15px;
  color: var(--color-textsecondary);
}

.block-item-next > div {
  text-align: right;
}


.block-item-prev a:hover,
.block-item-next a:hover {
  color: var(--color-maintheme);
}














@media (min-width: 840px) {



  .offers-column:not(.offers-column__first):hover {
    z-index: 2;
  }

  .offers-column:not(.offers-column__first):hover .offers-column__wrapper {
    position: absolute;
    padding: 34px 24px 24px;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    min-height: 100%;
    border-radius: var(--main-border-radius);
  }

  body .offers-column:not(.offers-column__first):hover .offers-column__wrapper {
    box-shadow: 0 15px 20px rgb(27 30 37 / 30%);
  }

  .offers-column:not(.offers-column__first):hover .offers-column__info {
    bottom: auto;
    top: 244px;
    left: 24px;
    right: 24px;
    height: auto;
    background: #fff;
  }

  .offers-column:not(.offers-column__first):hover .offers-column__info .offers-column__properties {
    display: block;
  }

  .offers-column:not(.offers-column__first):not(.catalog-element):hover .offers-column__incart {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .sale-detail .timer__item,
  .sale-detail .offers-column__counter-quantity {
    max-width: 200px;
    min-width: 150px;
    margin-bottom: 30px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 15px 15px;
  }

  .sale-detail .timer__item>span:first-child,
  .sale-detail .offers-column__counter-quantity>span:first-child {
    font-size: 80px;
    line-height: 80px;
  }

  .sale-detail .timer__item>span:last-child,
  .sale-detail .offers-column__counter-quantity>span:last-child {
    font-size: 20px;
    line-height: 20px;
  }
}

@media screen and (max-width: 1023px) {

  .otherBlock {
    display: block ! important;
  }

  .block-item-next > div {
    text-align: left;
  }

  .column.column-50.prev-block,
  .column.column-50.next-block {
    width: 100%;
  }

  .block-item-prev {
    margin-left: 15px ! important;
    display: block ! important;
  }

  .block-item-next {
    margin-right: 15px ! important;
    display: block ! important;
  }

  .prev-block picture {
    margin-left: 0 ! important;
  }

  .next-block picture {
    margin-right: 0 ! important;
  }

  .column-slide:first-child {
    height: auto;
  }

  .catalog-header__right {
    justify-content: flex-start;
  }

  .catalog-header {
    flex-wrap: wrap;
  }

  .catalog-header__left {
    flex: 0 0 100%;
    text-align: left;
  }

  .offers-column .offers-column--is_in_cart .offers-column__incart-left {

    max-width: 65%;
    margin-right: 4px;

  }

  .offers.offers-main .column.offers-column .offers-column__change-count__button {
    padding: 10px 13px;
    max-width: 68%;
    margin-right: 0;
  }

  .offers-column__incart-right {
    max-width: 100%;
    min-width: 100%;
  }

  .offers-column .offers-column--is_in_cart .offers-column__incart-right {
    min-width: auto;
    max-width: 35%;
    flex: 0 0 35%;
    padding-left: 0px;
  }

  .offers-column__incart .btn {
    padding: 8px 9px;
    padding-top: 12px;
  }

  .column.header__top-callme_link {
    padding-left: 15px;
  }

  .contacts_map-info2 .contacts_map-info__item {
    padding-left: 0;
  }

  .block-sale .column, .block-articles .column {
    margin-bottom: 0;
  }

  .swiper-slide__caption-description {
    margin-bottom: 15px;
  }

  .block-popular-offers.offers .column {
    width: 50%;
    flex: 0 0 50%;
    min-width: auto;
    max-width: none;
    margin-bottom: 16px;
  }

  .block-popular-offers .blocks-item__list-text br {
    display: none;
  }

  #main-catalog .block-popular-offers .column {
    width: 50%;
  }

  .simple-styled-list__item-wrapper,
  .block-news-by-3 .row .column,
  .contacts_map2 .column {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .contacts_map2__left {
    margin-bottom: 24px;
  }

  .header__navigation .header__navigation-container>ul>li.fill>ul>li>ul>li {
    min-height: auto;
  }

  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
  }

  .swiper-slide__caption-button .btn {
    margin-top: 0;
  }

  .header_socials,
  .header__top-slogan,
  .header10 .header__top-slogan,
  .header-button-callme-link > span {
    display: none ! important;
  }

  .header10 .header__navigation {
    max-width: calc(100% - 400px) ! important;
  }

  .header .header-button-callme-link svg {
    margin-left: 0;
  }

  .header .header__top-search_link a.header__top-search_link-act {
    margin-right: 0;
  }

  .top-menu__humburger > a {
    padding: 16px ! important;
  }

  .large-pop-up-menu {
    padding: 16px;
  }

  .menu-hamburger__catalog-item {
    gap: 16px ! important;
  }

  .menu-hamburger__catalog-list {
    margin: 5px 0 16px ! important;
  }

  .menu-hamburger__catalog-list a {
    font-size: 13px ! important;
    line-height: 18px ! important;
  }


  .header10 .header__top, .header10 .header__top-container {
    min-height: 47px ! important;
  }

  .header10 .header__top-container {
      padding-top: 10px ! important;
      padding-bottom: 10px ! important;
  }

  .menu-hamburger__catalog-grid {
    gap: 0 16px ! important;
  }

  .large-pop-up-menu__container,
  .main-search-widget__abs {
    top: 155px ! important;
  }

	.simple-text__item-left, .simple-text__item-right {
		display: block;
		width: 100%;
		flex: 0 0 100%;
	}

	.block-reasons__item--two-columns {
		width: 100%;
		flex: 0 0 100%;
	}

  .history-timeline__item-top .column {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 15px;
  }

  .iww__simple-services_list {
    display: block;

    margin-left: 0;
    margin-right: 0;
  }

  .iww__simple-services_list-item__container {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
    flex: 0 0 auto;
    width: auto;
  }


  .block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item {
    width: 100%;
    flex: 0 0 100%;
    text-align: center;
  }

  .block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd),
  .block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(even) {
    text-align: center;
    margin-top: 25px;
  }

  .block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3):last-child {
    text-align: center;
    margin-left: auto;
  }

  .block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:first-child {
    margin-top: 0 ! important;
  }

  .step-by-step__item-container {
    width: 100%;
    height: auto;
  }

  .block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item .step-by-step__tech-1,
  .block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item .step-by-step__tech-2,
  .block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item .step-by-step__tech-3,
  .block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item .step-by-step__tech-toleft,
  .block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item .step-by-step__tech-toright {
    display: none ! important;
  }

  .block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item .step-by-step__tech-4 {
    display: block ! important;
    position: absolute ! important;
    height: 50px ! important;
    left: 0 ! important;
    right: 0 ! important;
    bottom: 0 ! important;
    top: auto ! important;
    margin: auto ! important;
    overflow: hidden ! important;
  }

  .block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:last-child .step-by-step__tech-4 {
    display: none ! important;
  }

  .block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item .step-by-step__item-text {
    position: relative ! important;
    top: auto ! important;
    right: auto ! important;
    bottom: auto ! important;
    left: auto ! important;
    text-align: center ! important;
    width: auto ! important;
  }

  .step-by-step__item-text_own {
    margin: 15px 0;
  }

  .step-by-step__item .step-by-step__item-container {
    min-height: auto;
    padding-bottom: 50px;
  }

  .block_step-by-step-path-columns2 {
    display: block;
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn,
  .container.block_step-by-step-path-columns2 .step-by-step__item-edgeColumn {
    width: 100% ! important;
    flex: 0 0 100% ! important;
  }

  .step-by-step__item-name {
    padding-left: 30px;
    padding-right: 30px;
  }

  /*.step-by-step__item-name {
    padding-bottom: 50px;
  }*/

}

@media (max-width: 1280px) {

  .block-sale {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .block-sale h2 {
    margin-top: 0;
  }

  .offers-column__counter-container {
    margin-bottom: 15px;
  }

  .sale-detail__left {
    margin-bottom: 15px;
  }

  .sale-detail .row .column-50 {
    width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .block-sale .swiper-button-next {
    right: 0;
  }

  .block-sale .swiper-button-prev {
    left: 0;
  }

  .block-company-reviews__swiper-container .swiper-button-prev-3.swiper-button-svgcontent-stroke {
    left: 0;
    bottom: 0;
  }

  .block-company-reviews__swiper-container .swiper-button-next-3.swiper-button-svgcontent-stroke {
    right: 0;
    bottom: 0;
  }
}

.hidden-desctop {
  display: none;
}

@media (max-width: 766px) {

  .block-div>.column-33:first-child,
  .block-div>.column-33 {
    width: 100% ! important;
  }

  .all_tags, .left-menu {
    display: none;
  }

  .enable_left_menu {
    padding: 0;
  }

  .block-div>.block-item:first-child>.info>.info-item>a>.name, .block-div>.block-item:first-child>.info>.info-item>.date, .block-div>.block-item:first-child>.info>.info-item>.tags {
    display: block ! important;
    padding: 10px ! important;
    max-width: 271px;
    font-size: 20px;
  }

  .news .catalog-header__left,
  .news .catalog-header__right-right {
    flex: 0 0 50%;
  }

  .news .container,
  .news .column.column-100 {
    padding-left: 0 ! important;
    padding-right: 0 ! important;
  }

  .iww__text-and-image_ver2 {
    flex-wrap: wrap;
  }

  .ti-container {
    flex: 0 0 100%;
  }

  .left-image .image-container {
    margin-bottom: 24px;
  }

  .right-image .image-container {
    margin-top: 24px;
  }


  body.iww_panel_____visible, body.iww_panel_____visible header.header {
    margin-top: 0 ! important;
  }

  .main-wrapper .large-pop-up-menu__container,
  .main-wrapper .main-search-widget__abs {
    position: fixed;
    top: 65px ! important;
    z-index: 111;
  }

  .header-button-callme-link,
  .header__top-search_link,
  .top-menu__humburger,
  .main-search-widget__search-label {
    display: none ! important;
  }

  .main-search-widget__search-form {
    display: flex;
    gap: 16px;
  }

  .main-search-widget__search-wrapper {
    flex: 0 0 calc(100% - 89px);
  }

  .ov-all-search {
    padding: 8px 16px;
    box-shadow: var(--main-shadow-base);
  }

  .main-search-widget__search-form--result {
    padding-left: 0;
  }

  .header10 .header__navigation .header__navigation-container > ul > li > a:not(.dropMore) {
    border-radius: 0 ! important;
    margin: 0 ! important;
  }

  .header__navigation .header__navigation-container>ul>li>a>span.menu-icon.right {
    display: inline-block ! important;
    position: absolute;
    right: 16px;
  }

  .header__navigation .header__navigation-container>ul>li.fill>ul,
  .header__navigation .header__navigation-container>ul>li.fill>ul>li>ul {
    top: 0;
    max-width: none;
    min-width: auto;
    height: 100vh;
    right: auto;
    left: -100%;
    padding:0;
    border-radius: 0;
  }

  .header__navigation .header__navigation-container>ul>li.fill>ul>li>ul {
    display: block ! important;
  }

  .header__navigation .header__navigation-container>ul>li.fill>ul>li>ul.active-mobi-ul {
    left: 0;
  }

  .header__navigation .header__navigation-container>ul>li.fill>ul>li>ul>li {
    display: block;
    width: 100% ! important;
    max-width: 100%;
    padding-left: 0;
    min-width: 100%;
  }


  .header__navigation .header__navigation-container>ul>li.fill>ul>li>a {
    position: relative;
    word-break: break-word;
    padding: 16px 15px 16px 70px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    border-radius: 0;
    min-height: 54px;
    height: auto;
  }

  .header__navigation .header__navigation-container>ul>li>a>span.menu-icon.bottom {
    display: none ! important;
  }

  .main-search-widget__abs > .container {
    padding-left: 0 ! important;
    padding-right: 0 ! important;
  }

  .main-search-widget__search-placeholder {
    white-space: nowrap;
    max-width: calc(100% - 51px);
    overflow: hidden;
  }

  .main-search-widget__search-close {
    right: 5px;
  }

  .main-search-widget__search-input {
    padding-right: 23px;
  }

  .header__navigation .header__navigation-container>ul>li.fill>ul>li>a>span:first-child {
    padding-right: 0;
  }

  .hidden-desctop {
    display: block;
  }

  .cookie-consent {
    width: 100%;
  }

  .cookie-message {
    max-width: none;
    left: 5px;
    bottom: 5px;
    right: 5px;
    margin: 0;
    padding: 15px;
  }

  .cookie-title {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
  }

  .cookie-message p {
    display: none;
  }

  #accept-cookie {
    padding: 4px 20px 5px 20px;
  }

  .header__navigation-block-broker {
    display: none;
    /* TODO:  */
  }

  .text-and-image-2>div {
    max-width: none;
  }

  .text-and-image>*:first-child {
    padding-right: 0;
  }

  .employes_list .employes_list-item-container {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .swiper-slide__white-letters .swiper-slide__caption-header,
  .swiper-slide__white-letters .swiper-slide__caption-description,
  .swiper-slide__white-letters .swiper-slide__caption-description p,
  .swiper-slide__white-letters .swiper-slide__caption-tag {
    color: #000;
  }

  .block-partners-text-top .block-partners__list-item {
    width: 50%;
    max-width: 50%;
    flex: 0 0 50%;
  }

  .banners-one-under-other.banners-horizontal {
    padding-top: 15px;
  }

  .banners-one-under-other.banners-horizontal .column-50 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .banners-one-under-other.banners-horizontal .banners-one-under-other__item {
    margin-bottom: 15px;
    height: 200px;
  }

  .text-and-image {
    display: block;
  }

  .text-and-image>*:first-child {
    width: 100%;
    flex: 0 0 100%;
    margin-bottom: 15px;
    display: block;
  }

  .addresses-list_item {
    display: block;
  }

  .addresses-list_item--right,
  .addresses-list_item--left {
    display: block;
    width: 100%;
  }

  .addresses-list_item--left {
    padding-right: 0;
    height: auto;
    /*min-height: 100px;*/
  }

  .addresses-list_item--left .swiper-slide {
    min-height: 100px;
  }

  .addresses-list_item--right {
    height: auto;
  }

  .addresses-list_item--right h2 {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .tingle-modal .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .swiper-slide__caption--mobile .swiper-slide__caption-description {
    max-height: none ! important;
    overflow: auto ! important;
  }

  .swiper-slide__caption--mobile .swiper-slide__caption-button {
    margin-top: 10px;
  }

  .slide-only-mobile {
    display: block;
  }

  .index-swiper .swiper-slide .slide-only-mobile.swiper-slide_bg {
    background-size: contain;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .index-swiper .swiper-slide.swiper-slide-mobile {
    position: relative;
    height: auto ! important;
    max-height: none ! important;
    min-height: auto ! important;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
  }

  .slide-only-desctop {
    display: none;
  }

  .minicart-footer-order .minicart-footer-promocode__right .form-field {
    margin-right: 0;
    width: 100%;
  }

  .minicart-footer-order {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 15px;
  }

  .cart-order__categories-item {
    margin-bottom: 0;
  }

  .minicart-footer-promocode__left,
  .minicart-footer-promocode__right {
    width: 100%;
    flex: 0 0 100%;
    padding: 0;
    text-align: left;
  }

  .cart-order__right .minicart-footer-promocode__right {
    margin-top: 15px;
  }

  .cart-order__right .minicart-footer-promocode__right .btn {
    margin-bottom: 0;
  }

  .minicart-footer-promocode__right .btn {
    width: 100%;
    margin-bottom: 15px;
    height: 35px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .minicart-footer-promocode {
    padding: 0;
  }

  .minicart-footer-promocode__left {
    padding: 10px 0 0;
    text-align: lft;
    font-size: 13px;
    line-height: 13px;
    margin-bottom: 10px;
  }

  .minicart-footer-promocode__right .form-field {
    margin-right: 0;
  }

  .minicart-footer-promocode__right .form-field {
    display: block;
    width: 100%;
  }

  .right-extended-info__container .minicart-footer-promocode {
    display: block;
    padding-top: 7px;
    padding-left: 15px;
    padding-right: 15px;
    border-top: 1px solid rgba(0, 0, 0, .1);
  }

  .right-extended-info__container .minicart-footer-promocode__right .form-field {
    width: 100%;
  }

  .right-extended-info__container .minicart-footer-promocode__right .btn {
    height: 36px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .banners-one-under-other .container .banners-one-under-other__item {
    padding: 15px;
    height: auto;
  }

  .banners-one-under-other .container .banners-one-under-other__item br {
    display: none;
  }

  .banners-one-under-other .container .banners-one-under-other__item h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .banners-one-under-other .container:first-child .banners-one-under-other__item {
    border-radius: 5px 30px 5px 5px;
  }

  .banners-one-under-other .container:last-child .banners-one-under-other__item {
    border-radius: 5px 5px 30px 30px;
    margin-bottom: 0;
  }


  .banners-one-under-other {
    padding-bottom: 15px;
  }

  .banners-one-under-other.banners-horizontal .banners-one-under-other__item {
    margin-bottom: 15px ! important;
    height: 200px;
  }

  .banners-one-under-other.banners-horizontal .column:last-child .banners-one-under-other__item {
    margin-bottom: 0 ! important;
  }

  .banners-one-under-other.banners-horizontal .banners-one-under-other__item .btn {
    left: 15px;
    bottom: 15px;
  }

  .header__navigation .header__navigation-container ul.active-mobi-ul>li>a>span {
    margin-bottom: 0;
  }

  .only-mobi {
    display: block ! important;
  }

  .header__navigation-container>ul>li a .material-symbols-outlined {
    margin-top: 0 ! important;
  }

  .header__top-phone_link a span.material-symbols-outlined {
    display: none;
  }

  .form-field__template-columns3 {
    padding: 15px 0;
  }

  .form-field__template-columns3 .form-switch-in {
    margin-bottom: 0;
    margin-top: 15px;
  }

  .form-feedback__form .column {
    display: block;
    width: 100%;
    flex: 0 0 100%;
    padding: 0;
  }

  .catalog-element__right .catalog-element__properties {
    display: none;
  }

  #main-catalog .column.main-filter {
    width: 100%;
  }

  .index-swiper .swiper-slide {
    height: 630px;
  }

  .document-list .row .column {
    width: 100%;
  }

  .column-20,
  .column-80 {
    width: 100%;
    flex: 0 0 100%;
  }

  .left-menu {
    margin-bottom: 15px;
  }

  .image-right-position,
  .page-image.position4,
  .page-image.position3,
  .page-image.position2,
  .page-image.position1 {
    float: none;
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }


  .header__top-logo,
  .header__center-contact {
    display: none ! important;
  }

  .header10 .header__center-container {
    height: 0;
    min-height: 0 ! important;
  }

  .header__navigation .header__navigation-container>ul {
    opacity: 1;
  }

  .is-parent .material-symbols-outlined.bottom {
    display: none;
  }

  .header10 .header__navigation .header__navigation-container>ul>li>a {
    display: block ! important;
    padding: 15px ! important;
  }

  .header__navigation .header__navigation-container>ul>li:first-child>a>span.material-symbols-outlined:first-child,
  .header__navigation .header__navigation-container>ul>li:first-child>a>span.material-symbols-outlined.bottom,
  .header__navigation .header__navigation-container>ul>li>a>span.material-symbols-outlined.right {
    position: absolute ! important;
    top: 20px ! important;
  }

  .header__top-login_link,
  .header__top-user_link {
    margin-top: 10px;
  }

  .tiles_item {
    flex: 0 0 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .tariffs table tr th:first-child,
  .tariffs table tr td:first-child {
    width: 50%;
  }

  .tariffs table th,
  .tariffs table td {
    padding: 10px ! important;
  }

  .header.header-filter span.mobi-close-filter {
    display: block;
    position: absolute;
    right: 0;
    top: 7px;
    font-size: 50px;
    color: #cc0000;
  }

  .header-filter {
    position: relative;
  }

  .mobi-other,
  .close-right-for-mobi {
    display: block ! important;
    z-index: 11;
    position: relative;
  }

  .i-slider {
    margin-top: 0;
  }

  .mobi-header {
    display: block;
  }

  .header__navigation .mobi-header {
    height: 65px;
    background: #fff;
    box-shadow: 0 0 20px 0px rgb(0 0 0 / 10%);
    position: relative;
  }

  .mobi-header__left,
  .mobi-header__right {
    width: 65px;
    height: 65px;
    position: absolute;
    top: 0;
    bottom: 0;
  }

  .mobi-header__left {
    left: 0;
  }

  .mobi-header__left>span {
    display: block;
    position: absolute;
    width: 30px;
    height: 22px;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
  }

  .mobi-header__left>span>span {
    background: #555;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;

    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }

  .mobi-header__left>span>span:first-child {
    bottom: auto;
    width: 85%;

  }

  .mobi-header__left>span>span:last-child {
    top: auto;
    width: 85%;
  }

  .mobi-header__left.active>span>span {
    opacity: 0;
  }

  .mobi-header__left.active>span>span:first-child {
    width: 100%;
    opacity: 1;

    -moz-transform: rotate(-43deg);
    -ms-transform: rotate(-43deg);
    -webkit-transform: rotate(-43deg);
    -o-transform: rotate(-43deg);
    transform: rotate(-43deg);

    top: 10px;
  }

  .mobi-header__left.active>span>span:last-child {
    width: 100%;
    opacity: 1;

    -moz-transform: rotate(43deg);
    -ms-transform: rotate(43deg);
    -webkit-transform: rotate(43deg);
    -o-transform: rotate(43deg);
    transform: rotate(43deg);

    bottom: 10px;
  }

  .mobi-header__right {
    right: 0;
  }

  .mobi-header__right svg {
    font-size: 22px;
    line-height: 22px;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    color: #555;
  }

  .mobi-header__center img {
    position: absolute;
    top: 5px;
    right: 5px;
    left: 5px;
    bottom: 5px;
    margin: auto;
    max-height: calc(100% - 22px);
    max-width: calc(100% - 160px);
    width: auto;
  }

  .header__navigation .header__navigation-container>ul>li.nofill>ul li a,
  .header__navigation .header__navigation-container>ul>li>ul li a {
    padding: 15px;
  }

  .header__navigation .header__navigation-container {
    left: -100%;
  }

  footer .column {
    padding-left: 0;
    padding-right: 0;
  }

  [data-iww__pre_type="edit-menu-block"] {
    margin-left: 0;
  }

  footer.footer-main {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .footer-column-4 {
    margin-bottom: 0;
  }

  .header__top {
    display: none;
  }

  .slider_index .container {
    padding-top: 0;
  }

  .swiper-slide_bg .row {
    display: block;
  }

  .iww__simple-services_list-item {
    height: auto;
  }

  .column-slide {
    width: 100%;
    position: absolute;
  }

  .column-slide:first-child {
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
  }

  .column-slide:last-child {
    left: 0;
    right: 0;
    top: 0;
    padding-top: 50px;
    max-width: 50%;
    margin: auto;
    overflow: hidden;
  }

  .index-swiper .swiper-slide .swiper-slide_bg {

    background-position: center;

    background-size: cover;
    bottom: 50%;

  }

  .swiper-slide__caption {
    padding-left: 0;
    text-align: center;
  }

  .swiper-slide__caption-header {
    font-size: 24px;
    line-height: 30px;
    font-weight: normal;
  }

  .swiper-slide__caption-tag {
    margin-bottom: 5px;
  }

  .swiper-slide__caption {
    -ms-flex-item-align: auto;
    align-self: auto;
  }

  .swiper-slide__caption-description {
    /*max-height: 110px;*/

    overflow: hidden;
    text-overflow: ellipsis;
  }

  .block-reasons__item.column-20 {
    width: 50%;
    flex: 0 0 50%;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header .container {
    padding-left: 0;
    padding-right: 0;
  }

  .block-reasons {
    padding-top: 30px;
    padding-bottom: 15px;
  }

  .block-reasons__wrapper {
    margin-bottom: 15px;
  }

  .column-auto {
    justify-content: center;
  }

  .videoBg {
    display: flex;
    max-height: 100%;
    position: relative;
    height: 100%;
  }

  .videoBg video {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
  }

  .header__navigation .header__navigation-container {
    display: block;
    position: fixed;
    top: 65px;
    min-height: 100vh;
    background: #fff;
    width: calc(100% - 30px);

    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }

  .header__navigation .header__navigation-container.active {
    left: 0;
  }

  .header__navigation {
    height: auto;
    background-color: transparent;
    fill: transparent;
    border-radius: 0;
  }

  .main-wrapper {
    position: relative;
    top: 0;

    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }

  .main-wrapper.prefixed {
    top: 65px;
  }

  .mobi-header {
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;

    position: relative;

    z-index: 333;
    opacity: 0;
    opacity: 1;
  }

  .mobi-header.prefixed {

    margin-top: 0;

    top: -65px;
    right: 0;
    left: 0;
    position: fixed;
  }

  .mobi-header.prefixed.fixed {
    top: 0;
  }

  .header__navigation .header__navigation-container>ul {
    display: block;
    margin-top: 0;
    height: calc(100vh - 68px);
    border-radius: 0;
  }

  .header__navigation .header__navigation-container>ul>li:first-child>a>span.material-symbols-outlined:first-child,
  .header__navigation .header__navigation-container>ul>li:first-child>a>span.material-symbols-outlined.bottom {
    display: none;
  }

  .header__navigation .header__navigation-container>ul>li>a>span.material-symbols-outlined.right {
    display: inline-block;
    position: absolute;
    right: 0;
    /*top: 20px;*/
  }

  .header__navigation .header__navigation-container>ul>li.active2>a,
  .header__navigation .header__navigation-container>ul>li>a:hover,
  .header__navigation .header__navigation-container>ul>li.active>a {
    background: transparent;
    color: var(--color-maintheme);
  }

  .header__navigation .header__navigation-container>ul a {
    color: #000 ! important;
    text-align: left ! important;
  }

  .header__navigation .header__navigation-container>ul>li:first-child {
    width: auto;
  }

  .header__navigation .header__navigation-container>ul>li>a {
    color: #1d1d1d;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    text-transform: none;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
  }

  .tingle-modal--overflow {
    padding-bottom: 0;
  }

  .container {
    min-width: auto ! important;
    max-width: none;
    width: auto;
  }

  .tingle-modal-box__content {
    padding: 10px;
  }

  .header__navigation .header__navigation-container>ul>li {
    width: 100%;
    height: auto ! important;
  }

  .header__navigation .header__navigation-container>ul>li:first-child>a {
    padding: 15px 20px;
  }

  .header__navigation .header__navigation-container>ul>li.nofill>ul li {
    max-width: none;
  }

  .header__navigation .header__navigation-container>ul>li ul {
    display: block;
    position: absolute;
    background: #fff;
    width: 100%;
    top: 0;
    bottom: 0;
    left: -100%;
    z-index: 13;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    overflow: auto;
    visibility: hidden;
  }

  .header__navigation .header__navigation-container>ul>li ul {
    opacity: 0 ! important;
  }

  .header__navigation .header__navigation-container>ul>li ul.active-mobi-ul {
    left: 0;
    width: 100%;
    opacity: 1 ! important;
    visibility: visible;
    padding: 0 0 70px;
  }

  .header__navigation .header__navigation-container>ul>li.fill>ul>li {
    padding-right: 0;
  }

  .header__navigation .header__navigation-container>ul>li.nofill>ul {
    transition: 0s ! important;
  }

  .header__navigation .header__navigation-container>ul>li.nofill>ul.active-mobi-ul {
    transition: .3s ! important;
  }

  .header__navigation .header__navigation-container>ul>li>a,
  .header__navigation .header__navigation-container>ul>li:first-child>a {
    padding: 15px;
  }

  .top-menu__back {
    display: block ! important;
  }

  .mobi-header__center {
    /* width: calc(100% - 130px);*/
  }

  .block-categories__column {
    width: 50%;
  }

  .block-categories__column-img img {
    max-width: 75px;
    max-height: 75px;
  }

  .header__navigation .header__navigation-container ul li a.top-menu__back-link {
    padding-top: 15px ! important;
    padding-bottom: 15px ! important;
  }

  .top-menu__back-link .back-icon {
    position: relative ! important;
    top: auto ! important;
    right: auto ! important;
    left: auto ! important;
    bottom: auto ! important;
    margin-right: 10px ! important;
  }

  .header__navigation .header__navigation-container>ul>li>a {
    transition: 0s ! important;
  }

  .mobiclick .material-symbols-outlined.right {
    display: none ! important;
  }

  .header__navigation .header__navigation-container ul li a.top-menu__back-link>span {
    font-size: 13px;
    line-height: 13px;
    margin-bottom: 0;
    position: relative;
    top: -1px;
  }

  .offers-column__slider-container__precontainer {
    display: none;
  }

  .offers-column {
    width: 50%;
    min-width: 50%;
    max-width: 50%;
    height: 590px;
  }

  .catalog-element.n_shop_detail-columns.offers-column.offers-column-new {
    height: auto;
  }

  .n_shop_detail-columns .n_shop_detail {
    width: auto ! important;
    flex: none;
  }

  .catalog-element .offers-column__incart-left,
  .catalog-element .offers-column__incart-right {
    flex: 0 0 50%;
  }

  .offers-column__first {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .offers-column:not(.offers-column__first) .offers-column__wrapper {
    height: 100% ! important;
  }

  .header__navigation .header__navigation-container>ul>li.nofill>ul {
    opacity: 1 ! important;
  }

  .offers-column__properties {
    display: none ! important;
  }

  .offers-column__info {
    top: 353px ! important;
    /*max-height: 186px ! important;*/
    overflow: hidden;
  }

  .offers-column__incart {
    display: flex ! important;
    left: -20px ! important;

  }

  /*.offers-column:not(.offers-column__first):hover .offers-column__wrapper {
    padding: 0 ! important;
    position: relative ! important;
    box-shadow: none;
  }*/

  .offers-column__info {
    left: 0 ! important;
    right: 0 ! important;
  }

  .offers-column__counter-left>span,
  .offers-column__counter-right>span {
    display: none;
  }

  .timer__item>span:first-child,
  .offers-column__counter-quantity>span:first-child {
    font-size: 10px;
    line-height: 10px;
  }

  .timer__item,
  .offers-column__counter-quantity {
    min-width: 28px;
    max-width: 35px;
  }

  .offers-column__name {
    margin: 0;
    margin-top: 5px;
  }

  .offers-column__in-stock>a,
  .offers-column__in-stock {
    font-size: 10px;
    line-height: 11px;
  }

  .offers-column__article {
    line-height: 21px;
  }

  .offers-column__buttons--incart .offers-column__one-click .btn {
    height: auto;
    padding: 14px 10px;
  }

  .offers-column__buttons--incart .offers-column__incart {
    width: 274px;
  }

  .offers-column__counter-left>span,
  .offers-column__counter-right>span {
    font-size: 10px;
    line-height: 10px;
    margin-bottom: 4px;
  }

  .offers-column__change-count__button {
    padding: 12px 15px;
  }

  .offers-column__incart {
    height: auto;
  }

  .offers-column__incart-left,
  .offers-column__incart-right {
    height: 40px;
  }

  /*.offers-column__incart .btn {
    padding-top: 16px;
  }*/

  .block-product-of-the-day__column {
    padding: 15px;
    width: 100%;
    padding-bottom: 70px;
  }

  .block-product-of-the-day__column-right .offers-column__incart {
    left: auto ! important;
  }

  .offers-column__other-buttons-big>a {
    min-width: 126px;
  }

  .block-product-of-the-day .offers-column__rate {
    margin-left: 0;
  }

  .block-product-of-the-day .offers-column__counter {
    margin-bottom: 5px;
  }

  .block-product-of-the-day .offers-column__buttons--incart .offers-column__incart {
    width: 100%;
  }

  .block-product-of-the-day .offers-column__buttons--incart {
    flex-wrap: wrap;
  }

  .block-product-of-the-day .offers-column__buttons--incart .offers-column__one-click {
    padding-top: 10px;
    margin: 0;
  }

  .block-product-of-the-day .offers-column__buttons--incart .offers-column__one-click {
    width: 100%;
  }

  .block-product-of-the-day .offers-column__buttons--incart .offers-column__one-click .btn {
    width: 100%;
  }

  .block-product-of-the-day__column .offers-column__slider-container {
    height: 276px;
    max-height: 276px;
  }

  .timer__item>span:last-child,
  .offers-column__counter-quantity>span:last-child {
    font-size: 8px;
    line-height: 8px;
  }

  .block-services__item-name {
    font-size: 16px;
    line-height: 1.22;
  }

  .block-banner-image-and-button:after {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(255, 255, 255, .7);
  }

  .block-banner-image-and-button>div {
    position: relative;
    z-index: 2;
  }

  .block-banner-image-and-button__button .btn {
    white-space: nowrap;
  }

  .block-banner-image-and-button__left,
  .block-banner-image-and-button__right {
    width: 100%;
  }

  .block-banner-image-and-button__right {
    padding-left: 15px;
  }

  .block-banner-image-and-button {
    padding: 15px 0;
  }

  .block-collections__item {
    width: 33.333%;
  }

  .block-compilation__swiper-left,
  .block-compilation__swiper-right {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .block-compilation__swiper-item {
    flex-wrap: wrap;
  }

  .block-compilation__swiper-item__items {
    display: flex;
    flex-wrap: wrap;
  }

  .block-compilation__swiper-item__items-item__container {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .block-compilation__swiper-item__info {
    min-height: auto;
  }

  .block-compilation__swiper-item__info-scroll {
    max-height: 193px;
    padding-right: 15px;
    display: none;
  }

  .block-compilation__swiper-left {
    padding: 0;
  }

  .block-company-reviews__left,
  .block-company-reviews__right {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .block-company-reviews__left {
    margin-bottom: 15px;
  }

  .block-company-reviews__right {
    padding-left: 0;
  }

  .block-compilation__swiper-item__info {
    height: 103px;
  }

  .block-company-reviews__swiper-item {
    padding: 15px 20px;
  }

  .block-compilation__swiper-item__name {
    text-align: center;
    display: block;
    padding-right: 20px;
  }

  .block-sale .column {
    width: 50%;
  }

  .block-sale .block-sale__all-link,
  .block-articles .block-articles__all-link {
    right: 15px;
  }

  .block-articles .column-50 {
    width: 100%;
  }

  .block-articles .column-25 {
    width: 50%;
  }

  .block-about__left,
  .block-about__right {
    width: 100%;
  }

  .block-about__reasons-item {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  .block-about__image {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 57%;
  }

  .block-about__video-link {
    width: 40px;
    height: 40px;
  }


  .block-partners__list-item {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .block-partners__left,
  .block-partners__right {
    width: 100%;
  }

  .block-partners__left {
    margin-bottom: 30px;
  }

  .block-question__left,
  .block-question__middle,
  .block-question__right {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
    text-align: center;
  }

  .block-question__right {
    margin-bottom: 0;
  }

  .block-question__left-question {
    top: 0;
    height: 339px;
  }

  .footer-column-1 {
    width: 100%;
  }

  .footer-column-1 .footer-column__wrapper {
    max-width: 320px;
    margin-bottom: 30px;
  }

  .footer-column-2 {
    width: 33.3333%;
  }

  .footer-column-3 {
    width: 33.3333%;
  }

  .footer-column-4 {
    width: 33.3333%;
  }

  .footer-column-5 {
    width: 100%;
  }

  .footer-column__search {
    margin-top: 30px;
  }

  .catalog-subcategoreis__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 17px 10px;
    padding-left: 70px;
  }

  .catalog-subcategoreis__item>svg {
    left: 15px;
    top: 18px;
  }

  .right-extended-info {
    right: 0;
    top: auto;
    left: 0;
    opacity: 1;
    width: auto;
    bottom: calc(-444px - 65px);
    height: 444px;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }

  .iww_panel_____visible .right-extended-info {
    top: auto;
  }

  .right-extended-info.prefixed {
    bottom: -444px;
  }

  .right-extended-info.active {
    bottom: 0;
    max-height: calc(100vh - 65px);
  }

  .right-extended-info--withPromocode {
    height: 579px;
  }

  .right-extended-info--withPromocode {
    bottom: calc(-579px - 65px);
  }

  .right-extended-info--withPromocode.prefixed {
    bottom: -579px;
  }

  .right-extended-info--withPromocode.active {
    bottom: 0;
  }

  .right-extended-panel {
    top: -65px;
    opacity: 0;
    height: 65px;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    display: flex;
    box-shadow: 0 -4px 24px 0 rgb(27 30 37 / 8%);
  }

  .right-extended-panel__item {
    border-right: 1px solid rgba(0, 0, 0, .1);
    width: 25%;
  }

  .right-extended-info.active .right-extended-panel {
    top: -65px;
  }

  .right-extended-info__container .container {
    padding: 0 ! important;
  }

  .right-extended-info__container .minicart-header,
  .right-extended-info__container .form-feedback>h3,
  .right-extended-info__container .form-feedback>.form-feedback__text,
  .right-extended-info__container .form-feedback>form {
    padding: 10px;
  }

  .right-extended-info__container .form-feedback>h3 {
    padding: 22px 10px;
  }

  .minicart-content,
  .minifavorite-content {
    height: 240px;
  }

  .minicart-footer,
  .minifavorite-footer {
    display: block;
    padding: 15px;
    box-shadow: 0 -4px 24px 0 rgb(27 30 37 / 8%);
  }

  .minicart-footer__left,
  .minicart-footer__right,
  .minifavorite-footer__left,
  .minifavorite-footer__right {
    width: 100%;
    display: block;
    text-align: left;
    max-width: none;
  }

  .minicart-footer__left,
  .minifavorite-footer__left {
    padding-top: 0;
  }

  .minicart-footer__right,
  .minifavorite-footer__right {
    padding-top: 9px;
  }

  .close-right-for-mobi>span {
    position: absolute;
    right: 0;
    top: 7px;
    font-size: 50px;
    color: #cc0000;
  }

  .minicart-item__image,
  .minifavorite .minifavorite-item__image a img,
  .minifavorite-item__image {
    max-width: 50px;
    flex: 0 0 50px;
  }

  .minicart-item__middle,
  .minifavorite-item__middle {
    flex: 0 0 calc(100% - 50px);
  }

  .minicart-item__right,
  .minifavorite-item__right {
    flex: 0 0 100%;
    display: flex;
    padding-top: 10px;
    flex-direction: row-reverse;
    width: 100%;
    max-width: 100%;
  }

  .minicart-item,
  .minifavorite-item {
    flex-wrap: wrap;
    display: flex;
    padding: 15px;
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    min-height: auto;
    position: relative;
  }

  .minicart-header,
  .minifavorite-header {
    min-height: 64px;
  }

  .minicart-content>p,
  .minifavorite-content>p {
    padding: 10px;
    font-size: 13px;
  }

  .minicart-item__quantity,
  .minifavorite-item__quantity {
    position: relative;
    right: auto;
    bottom: auto;
  }

  .minicart-item__delete {
    position: relative;
    top: auto;
    right: auto;
    opacity: 1;
    margin-left: 10px;
    padding-top: 2px;
  }

  /*.right-extended-panel__item:last-child {
    border-right: none;
  }*/

  .right-extended-panel {
    opacity: 1;
  }

  .iww_panel_____visible .iww_panel_____main {
    display: none;
  }

  .row {
    margin: 0;
    overflow: hidden;
  }

  .slider_index .swiper-wrapper {
    padding-bottom: 15px;
  }

  .block-categories__column-name {
    font-size: 13px;
  }

  .tingle-modal {
    padding-top: 60px ! important;
  }

  .geo-city__search-input {
    padding-left: 0;
    padding-right: 0;
  }

  .geo-list {
    column-count: 2;
  }

  .header__top-city_link {
    margin-top: 15px;
  }

  .minicart-header,
  .minifavorite-header {
    display: block;
  }

  .minicart-header__left,
  .minicart-header__right,
  .minifavorite-header__left,
  .minifavorite-header__right {
    text-align: left;
  }

  .main-filter {
    display: block;
    position: fixed;

    top: 0;
    left: calc(-100% - 10px);
    background: #fff;
    width: 100%;
    height: 100vh;
    height: -webkit-fill-available;
    z-index: 80;
    padding-right: 5px;

    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }

  .width300 .tingle-modal-box,
  .width400 .tingle-modal-box,
  .width500 .tingle-modal-box,
  .width600 .tingle-modal-box,
  .width700 .tingle-modal-box,
  .width800 .tingle-modal-box,
  .width900 .tingle-modal-box,
  .width1000 .tingle-modal-box,
  .width1100 .tingle-modal-box,
  .width1200 .tingle-modal-box {
    max-width: none;
  }

  .main-filter.main-filter--mobi-enable {
    left: 0;
  }

  #main-catalog .column-80 {
    width: 100%;
    flex: 0 0 100%;
    padding: 0;
  }

  .offers-main .row {
    gap: 8px;
  }

  .offers-column:not(.catalog-element) {
    width: calc(50% - 4px);
    min-width: calc(50% - 4px);
    max-width: calc(50% - 4px);
    padding: 10px;
    padding-bottom: 55px;
    padding: 10px;
    padding-bottom: 55px;
  }

  .offers-column__prices {
    margin-top: 10px;
  }

  .offers-column__incart-right {
    padding-left: 5px;
    padding-right: 8px;
  }

  .product-row .offers-column__incart-right {
    padding-left: 0;
  }

  .catalog-header__left,
  .catalog-header__right-right {  
    display: block;
    flex: 0 0 25%;
  }

  .catalog-header__left {
    flex: 0 0 100%;
    text-align: left;
  }

  .catalog-header__right-right {
    text-align: right;
    flex: 0 0 50%;
    padding-top: 15px;
  }

  .catalog-header__right {
    text-align: center;
  }

  .catalog-header__right {
    flex: 0 0 50%;
    padding-top: 9px;
  }

  .catalog-sort-list {
    left: 0;
    right: auto;
    margin-left: calc(50% - 86.5px);
  }

  .catalog-header {
    flex-wrap: wrap;
  }

  .catalog-header__right > div:first-child {
    display: none;
  }

  .catalog-sort-active>span {
    font-size: 12px;
    margin-right: 4px;
  }

  .catalog-sort-active,
  .catalog-sort-active:hover,
  .catalog-sort-active>span {
    font-size: 12px;
    top: 3px;
  }

  .catalog-header__right-right>a {
    font-size: 12px;
    line-height: 12px;
    color: #404040;
    vertical-align: middle;
  }

  .catalog-header__right-right>a>span {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: #404040;
    margin-right: 1px;
    vertical-align: middle;
  }

  .catalog-header__left a:last-child span {
    /*color: #404040;*/
  }

  .offers-column__info {
    padding-bottom: 0 ! important;
  }

  .offers-column__incart {
    bottom: -45px;
  }

  #page-cart-content .minicart-item__right,
  #page-favorite-content .minifavorite-item__right {
    padding-right: calc(100% - 200px);
  }

  #page-cart-content .minicart-footer,
  #page-favorite-content .minifavorite-footer {
    box-shadow: none;
  }

  #page-cart-content .minicart-footer__right a:first-child,
  #page-favorite-content .minifavorite-footer__right a:first-child {
    /*margin-bottom: 10px;*/
  }

  #page-cart-content .minicart-item,
  #page-favorite-content .minifavorite-item {
    padding-left: 0;
    padding-right: 0;
  }

  #page-cart-content .minicart-footer,
  #page-favorite-content .minifavorite-footer {
    height: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .minicart-item .cart-current-error,
  .minifavorite-item .minifavorite-current-error {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    width: 100%;
    margin-bottom: 5px;
  }

  .catalog-subcategoreis {
    display: none;
  }

  .minicart-mobi-empty {
    padding-top: 13px ! important;
  }

  .header__top-phone_link {
    margin-top: 20px;
  }

  .header__top-callme_link {
    margin-top: 10px;
  }

  .page-image img {
    max-width: 100%;
    height: auto;
  }

  .header-filter.main-filter--enable .filter-enable {
    display: none ! important;
  }

  .header.header-filter {
    padding-top: 20px;
    margin: 0;
    padding-bottom: 42px;
    box-shadow: 0 -4px 24px 0 rgb(27 30 37 / 8%);
    margin-left: -15px;
    width: auto;
    margin-right: -5px;
    padding-left: 15px;
    padding-right: 5px;
  }

  .main-filter__content,
  .main-filter__content.main-filter__content--enable {
    height: calc(100% - 55px);
    padding-bottom: 100px;
  }

  .main-filter__content form {
    height: 100%;
    margin-bottom: 0;
    padding-bottom: 15px;
    position: static;
  }

  .main-filter__blocks {
    height: 100%;
    padding-right: 10px;
    padding-top: 15px;
  }

  .main-filter__content .main-filter__block-bottom {
    box-shadow: 0 -4px 24px 0 rgb(27 30 37 / 8%);
    position: absolute;
    /*bottom: 100px;*/
    top: calc(100% - 100px);
    left: 0;
    right: 0;
  }

  .main-filter__block {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 7px 15px;
  }

  .main-filter__block-header__name {
    padding: 13px 0;
  }

  .contacts_map .yandex-map {
    height: 250px ! important;
  }

  .contacts_map-info {
    margin-top: 15px;
    display: block;
    padding: 10px;
  }

  .contacts_map-column {
    width: 100% ! important;
  }

  .contacts_map-info__item {
    padding-left: 13px;
    padding-top: 0px;
  }

  .tingle-modal-box {
    min-height: 100%;
  }

  .cart-order {
    display: block;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .cart-order__right,
  .cart-order__left {
    width: 100%;
    padding: 0;
  }

  .cart-order__right .cart-order__container {
    position: fixed;
    z-index: 12;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    box-shadow: 0 -4px 24px 0 rgb(27 30 37 / 8%);
  }

  .cart-order__client-types {
    justify-content: center;
  }

  .cart-order__categories-item--mt {
    margin: 0;
  }

  body.iww_panel_____visible header.header {
    z-index: 13;
  }

  .cart-order__block-choise__svg {
    width: 25px;
    left: 15px;
    top: 10px;
  }

  .cart-order__block-choise__svg svg {
    max-width: 25px;
    max-height: 25px;
    width: auto;
    height: auto;
  }

  .cart-order__block-choise {
    display: block;
  }

  .cart-order__block-container {
    padding: 10px 20px 58px 50px;
    height: auto;
  }

  .cart-order__categories-item {
    padding: 10px;
  }

  .cart-order__block-choise__item {
    margin-bottom: 10px;
    flex: 0 0 100%;
    width: 100%;
  }

  .cart-order__block-choise__name {
    font-size: 14px;
  }

  .cart-order__right .cart-order__categories-item {
    padding-bottom: 15px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, .1);
    border-radius: 0;
  }

  .cart-order__right--line__left span,
  .cart-order__right--line__right span {
    background: #fff;
  }

  .form-feedback__form-bottom .btn {
    width: 100%;
  }

  .catalog-element.offers-column {
    width: auto;
    min-width: auto;
    max-width: none;
    display: block;
    margin: 0;
  }

  .catalog-element__left,
  .catalog-element__right,
  .catalog-element__center {
    width: auto;
    padding: 0;
    flex: none;
  }

  .catalog-element__center {
    padding-bottom: 30px;
  }

  .calalog-element__properties.catalog-element__right {
    position: fixed;
    z-index: 22;
    background: #fff;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 -4px 24px 0 rgb(27 30 37 / 8%);
    padding: 15px 10px;
    overflow: hidden;
    min-height: 152px;
  }

  .tab-buttons {
    margin-top: 15px;
  }

  .tab-buttons .tab-button {
    padding: 12px 10px;
  }

  .plural-property.plural-property__in_left {
    display: none;
  }

  .calalog-element__properties.catalog-element__right.detail-quantity-in-cart--noactive {
    min-height: 124px;
  }

  .calalog-element__properties.catalog-element__right.detail-quantity-in-cart--noincart {
    min-height: 78px;
  }

  .catalog-element.offers-column .offers-column__in-stock {
    margin: 6px 0;
  }

  .catalog-element.offers-column .offers-column__incart {
    display: block ! important;
    left: auto ! important;
  }

  .catalog-element .offers-column__incart-left,
  .catalog-element .offers-column__incart-right {
    flex: none;
    max-width: none;
    padding: 0;
  }

  .catalog-element.offers-column .offers-column__prices {
    margin-top: 0 ! important;
  }

  .block-sale .swiper-button-next {
    right: 5px;
  }

  .block-sale .swiper-button-prev {
    left: 5px;
  }
}

@media screen and (max-width: 637px) {

  .main-wrapper .container,
  .main-wrapper .container-fluid,
  .main-wrapper .container-lg,
  .main-wrapper .container-md,
  .main-wrapper .container-sm,
  .main-wrapper .container-xl,
  .main-wrapper .container-xxl {
    padding-right: 10px;
    padding-left: 10px;
  }

  body.iww_panel_____visible,
  body.iww_panel_____visible header.header {
    margin-top: 0 ! important;
  }

  h1 {
    font-size: 22px;
  }

  .breadcrumb {
    white-space: nowrap;
    flex-wrap: nowrap;
    margin: 15px 0 5px;
  }

  .footer-column-1 {
    width: 100%;
  }

  .footer-column-1 .footer-column__wrapper {
    max-width: 320px;
    margin-bottom: 30px;
  }

  .footer-column-2 {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer-column-3 {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer-column-4 {
    width: 100%;
    /*margin-bottom: 30px;*/
  }

  .footer-column-5 {
    width: 100%;
  }

  .footer-column__search {
    margin-top: 30px;
  }

  .offers-column {
    padding: 10px 10px 0 10px;
  }

  .catalog-element.n_shop_detail-columns.offers-column.offers-column-new {
    padding: 0;
  }

  .n_shop_detail-columns .n_shop_detail {
    padding-left: 0;
    padding-right: 0;
  }

  .offers-column__incart-left {
    display: none;
  }

  .offers-column__incart-right {
    /*width: 100%;
    max-width: 100%;
    min-width: 100%;*/
  }

  .offers-column__incart {
    right: -10px;
    left: -10px ! important;
  }

  .offers-column__slider-container {
    height: 140px;
    padding-top: 20px;
  }

  .offers-column__info {
    top: 175px ! important;
  }

  .offers-column {
    height: 365px;
  }

  .offers-column__incart {
    padding-top: 5px;
    padding-left: 5px;
  }

  .product-row .offers-column__incart {
    padding-left: 0;
  }

  .offers-column__tags {
    font-size: 0;
    top: 0;
  }

  .offers-column__tags>a {
    font-size: 8px;
    line-height: 8px;
    padding: 3px 3px 3px;
    margin-left: 2px;
    margin-bottom: 2px;
  }

  .offers-column__first .offers-column__other-buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
  }

  /*.timer__items {
    justify-content: center;
  }*/

  .offers-column__first {
    width: 50%;
    min-width: 50%;
    max-width: 50%;
  }

  .offers-column__middle,
  .offers-column__rate {
    display: none;
  }

  .offers-column__other-buttons {
    display: block;
    opacity: 1;
    top: -4px;
  }

  .offers-column__prices-now,
  .offers-column__prices-old {
    padding: 0;
  }

  .offers-column__counter-right {
    display: none;
  }

  .offers-column__counter-left {
    display: block;
    margin-top: 4px;
    width: 100%;
  }

  .offers-column__prices {
    margin: 0;
    margin-top: 10px;
  }

  .offers-column__prices-now,
  .offers-column__prices-old {
    widtH: 100%;
    flex: none;
  }

  .offers-column__prices-more {
    display: none;
  }

  .timer__item>span:last-child,
  .offers-column__counter-quantity>span:last-child {
    font-size: 7px;
    line-height: 7px;
  }

  .offers-column__first .offers-column__offerbig:after {
    background: rgba(0, 0, 0, .3);
    opacity: 1;
  }

  .column-slide:last-child {
    max-width: 100%;
  }

  .offers-column {
    height: auto ! important;
  }

  .offers-column__info {
    position: relative;
    top: auto ! important;
    right: auto;
    left: auto;
    bottom: auto;
    padding-bottom: 52px;
  }

  .offers-column__first .offers-column__info {
    position: absolute;
    bottom: 0;
  }

  .column-25 {
    width: 50%;
  }

  .block-services__item-img {
    padding-top: 127%;
  }

  .block-services__item-name {
    font-size: 15px;
    line-height: 1.22;
  }

  .block-collections__item {
    width: 50%;
  }

  .block-compilation__swiper-item__info-scroll {
    max-height: 150px;
  }

  .block-compilation__swiper-left {
    flex-wrap: wrap;
  }

  .block-compilation__swiper-item__img,
  .block-compilation__swiper-item__info {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    height: auto;
  }

  .block-compilation__swiper-item__img {
    text-align: center;
  }

  .block-compilation__swiper-item__img img {
    max-height: 200px;
  }

  .block-compilation__navigation>ul {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .block-compilation__navigation-right {
    display: none;
  }

  .block-compilation__swiper-item__properties-item,
  .block-compilation__swiper-item__properties-item__left,
  .block-compilation__swiper-item__properties-item__right {
    display: block;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  .block-compilation__swiper-item__properties-item .block-compilation__swiper-item__properties-item__left>span,
  .block-compilation__swiper-item__properties-item .block-compilation__swiper-item__properties-item__right>span {
    text-align: left;
    background: transparent;
    padding: 0;
  }

  .block-compilation__swiper-item__properties-item .block-compilation__swiper-item__properties-item__right>span {
    font-weight: 500;
  }

  .block-compilation__swiper-item__properties-item .block-compilation__swiper-item__properties-item__right {
    text-align: left;
  }

  .block-compilation__swiper-item__info {
    height: 103px;
  }

  .block-compilation__swiper-item__info {
    padding: 16px 0 16px 20px;
  }

  .block-compilation__swiper-item__info .btn {
    padding: 5px 10px;
    display: block;
    width: 205px;
    left: 0;
    right: 0;
    margin: auto;
  }

  .block-compilation__swiper-container .swiper-button-next:after,
  .block-compilation__swiper-container .swiper-button-prev:after {
    padding: 22px 8px;
  }

  .block-compilation__navigation>ul li {
    margin-bottom: 10px;
  }

  .block-compilation__swiper-item__items-item__container:first-child {
    border-top: 1px solid #F2F2F2;
  }

  .block-compilation__swiper-item__items {
    max-height: 250px;
  }

  .block-compilation__swiper-item__properties-item .block-compilation__swiper-item__properties-item__left:before {
    display: none;
  }

  .block-compilation__swiper-item__items-item__container {
    display: block;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .block-categories__column-img {
    padding-top: 51%;
  }

  .block-categories__column-img img {
    max-width: 200px;
    max-height: 135px;
  }

  .block-categories__column-name {
    padding: 15px 0 18px;
  }

  .block-sale__item-info {
    padding: 10px;
  }

  .block-sale .block-sale__all-link,
  .block-articles .block-articles__all-link {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    width: 175px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  .block-sale h2,
  .block-articles h2 {
    margin-bottom: 15px;
  }

  .block-partners__list-item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

}

@media screen and (max-width: 530px) {
  .catalog-subcategoreis__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 360px) and (max-width: 450px) {

  .block-sale .column {
    width: 100%;
  }

  .block-sale .block-sale__all-link,
  .block-articles .block-articles__all-link {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    width: 175px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  .block-sale h2,
  .block-articles h2 {
    margin-bottom: 15px;
  }

  .block-articles .column-50 {
    width: 100%;
  }

  .block-articles .column-25 {
    width: 100%;
  }

  .block-article__item {
    padding: 10px;
  }

}

@media screen and (min-width: 320px) and (max-width: 359px) {

  .offers-column__tags>a {
    font-size: 7px;
    line-height: 7px;
    margin-left: 1px;
    margin-bottom: 1px;
    padding: 4px 3px 4px;
  }

  .block-collections__item {
    width: 100%;
  }

  .block-sale .column {
    width: 100%;
  }

  .block-sale .block-sale__all-link,
  .block-articles .block-articles__all-link {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    width: 175px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  .block-sale h2,
  .block-articles h2 {
    margin-bottom: 15px;
  }

  .block-articles .column-50 {
    width: 100%;
  }

  .block-articles .column-25 {
    width: 100%;
  }

  .block-article__item {
    padding: 10px;
  }

  .block-partners__list-item {
    padding: 28px 16px;
  }

}

/** 768 **/

@media screen and (min-width: 767px) and (max-width: 1023px) {

  .footer-column-1 {
    width: 100%;
  }

  .footer-column-1 .footer-column__wrapper {
    max-width: 320px;
    margin-bottom: 30px;
  }

  .footer-column-2 {
    width: 25%;
  }

  .footer-column-3 {
    width: 25%;
  }

  .footer-column-4 {
    width: 25%;
  }

  .footer-column-5 {
    width: 100%;
  }

  .footer-column__search {
    margin-top: 30px;
  }

  .column-25 {
    width: 50%;
  }

  .header__top-phone_link {
    max-width: 150px;
  }

  .header__top-phone_link a:first-child {
    font-size: 11px;
    font-weight: 700;
    line-height: 24px;
  }

  .header__top-search_link a span:last-child,
  .header__top-login_link a span:last-child,
  .header__top-user_link a span:last-child,
  .header__top-slogan {
    display: none;
  }

  .header__navigation .header__navigation-container>ul>li.fill>ul>li>ul>li {
    padding-left: 0;
  }

  .header__navigation .header__navigation-container>ul>li.fill>ul>li>ul>li>svg {
    display: none;
  }

  .header__top-search_link {
    padding-right: 5px;
  }

  .header__top-login_link,
  .header__top-user_link {
    padding-left: 5px;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .slider_index .container {
    padding-left: 0;
    padding-right: 0;
  }

  .block-categories__column {
    width: 25%;
  }

  .block-categories__column-img img {
    max-width: 80px;
    max-height: 80px;
  }

  .offers-column {
    min-width: 33.3333%;
    max-width: 33.3333%;
    width: 33.3333%;
  }

  .offers-column.offers-column-new {
    min-width: auto;
    max-width: none;
    width: auto;
  }

  .offers-column.offers-column-new .offers-column__incart {
    display: block ! important;
  }

  .offers-column.offers-column-new .offers-column__incart-left,
  .offers-column.offers-column-new .offers-column__incart-right {
    width: 100%;
  }

  .offers-column__first {
    min-width: 66.6666%;
    max-width: 66.6666%;
    width: 66.6666%;
  }

  .offers-column {
    padding: 15px 15px 0 15px;
  }

  .offers-column__info {
    left: 0;
    right: 0;
  }

  .timer__item,
  .offers-column__counter-quantity {
    min-width: 36px;
    max-width: 50px;
  }

  .timer__item>span:first-child,
  .offers-column__counter-quantity>span:first-child {
    font-size: 15px;
    line-height: 15px;
  }

/*  .offers-column:not(.offers-column__first):hover .offers-column__info {
    left: 15px;
    right: 15px;
  }*/

  .offers-column__counter-left>span,
  .offers-column__counter-right>span {
    font-size: 10px;
    line-height: 10px;
    margin-bottom: 4px;
  }

  .offers-column__change-count__button {
    padding: 12px 15px;
  }

  .offers-column__incart {
    height: auto;
  }

  .offers-column__incart-left,
  .offers-column__incart-right {
    height: 40px;
  }

  .offers-column__incart .btn {
    padding-top: 17px;
  }

  .offers-column__variants-name,
  .offers-column__properties-lines-name {
    font-size: 10px;
    line-height: 14px;
    margin-bottom: 2px;
  }

  .offers-column__info {
    top: 368px;
  }

  .offers-column__buttons--incart .offers-column__one-click .btn {
    height: auto;
    padding: 14px 10px;
  }

  .offers-column__buttons--incart .offers-column__incart {
    width: 274px;
  }

  .container {
    margin-left: 15px;
    margin-right: 15px;
  }

  .block-product-of-the-day__column {
    padding: 30px;
  }

  .offers-column__other-buttons-big>a {
    padding: 9px 12px 6px;
  }

  .offers-column__change-count__input {
    width: 50px;
  }

  .offers-column__first .offers-column__offerbig:after {
    background: rgba(0, 0, 0, .3);
    opacity: 1;
  }

  .block-product-of-the-day__column {
    padding: 15px;
    width: 100%;
  }

  .block-product-of-the-day__column-right {
    padding-bottom: 70px;
    border-top: 0;
  }

  .timer__item>span:last-child,
  .offers-column__counter-quantity>span:last-child {
    font-size: 8px;
    line-height: 8px;
  }

  .block-services__item-img {
    padding-top: 50%;
  }

  .block-banner-image-and-button:after {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(255, 255, 255, .3);
  }

  .block-banner-image-and-button>div {
    position: relative;
    z-index: 2;
  }

  .block-banner-image-and-button__button .btn {
    white-space: nowrap;
  }

  .block-collections__item {
    width: 33.333%;
  }

  .block-compilation__swiper-left {
    padding: 5px 0px;
  }

  .block-compilation__swiper-item__info-scroll {
    max-height: 200px;
    padding-right: 40px;
  }

  .block-compilation__swiper-item__items {
    max-height: 341px;
  }

  .block-compilation__swiper-item__info {
    min-height: auto;
  }

  .block-article__item--first .block-article__item-img {
    padding-top: 98%;
  }

  .block-about__reasons-item {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  .block-partners__left,
  .block-partners__right {
    width: 100%;
  }

  .block-partners__left {
    margin-bottom: 30px;
  }

  .catalog-subcategoreis__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 17px 10px;
    padding-left: 70px;
  }

  .catalog-subcategoreis__item>svg {
    left: 15px;
    top: 18px;

  }

}

@media screen and (min-width: 767px) and (max-width: 870px) {
  .offers-column {
    width: 50%;
    min-width: 50%;
    max-width: 50%;
  }

  .timer__item>span:last-child,
  .offers-column__counter-quantity>span:last-child {
    font-size: 8px;
    line-height: 8px;
  }

  .catalog-subcategoreis__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 17px 10px;
    padding-left: 70px;
  }

  .catalog-subcategoreis__item>svg {
    left: 15px;
    top: 18px;

  }

}

/** 1024 **/

@media screen and (min-width: 1024px) and (max-width: 1139px) {

  .footer-column-1 {
    width: 25%;
  }

  .footer-column-1 .footer-column__wrapper,
  .footer-column-5 .footer-column__wrapper {
    max-width: 320px;
  }

  .footer-column-2 {
    width: 25%;
  }

  .footer-column-3 {
    width: 25%;
  }

  .footer-column-4 {
    width: 25%;
  }

  .footer-column-5 {
    width: 100%;
  }

  .footer-column__search {
    margin-top: 30px;
  }

  .column-25 {
    width: 50%;
  }

  .header__top-phone_link {
    max-width: 150px;
  }

  .header__top-phone_link a:first-child {
    font-size: 11px;
    font-weight: 700;
    line-height: 24px;
  }

  .header__top-login_link,
  .header__top-user_link {
    padding-right: 30px;
  }

  .header__top-logo img {
    left: 30px;
  }

  .block-categories__column-img img {
    max-width: 90px;
    max-height: 90px;
  }

  .offers-column {
    padding: 15px 15px 0 15px;
  }

  .offers-column__info {
    left: 0;
    right: 0;
  }

  .timer__item>span:last-child,
  .offers-column__counter-quantity>span:last-child {
    font-size: 8px;
    line-height: 8px;
  }

  .timer__item,
  .offers-column__counter-quantity {
    min-width: 36px;
    max-width: 50px;
  }

  .timer__item>span:first-child,
  .offers-column__counter-quantity>span:first-child {
    font-size: 15px;
    line-height: 15px;
  }

  .offers-column:not(.offers-column__first):hover .offers-column__info {
    left: 15px;
    right: 15px;
  }

  .offers-column__counter-left>span,
  .offers-column__counter-right>span {
    font-size: 10px;
    line-height: 10px;
    margin-bottom: 4px;
  }

  .offers-column__change-count__button {
    padding: 12px 15px;
  }

  .offers-column__incart {
    height: auto;
  }

  .offers-column__incart-left,
  .offers-column__incart-right {
    height: 40px;
  }

  .offers-column__incart .btn {
    padding: 16px 0;
  }

  .offers-column__variants-name,
  .offers-column__properties-lines-name {
    font-size: 10px;
    line-height: 14px;
    margin-bottom: 2px;
  }

  .offers-column__info {
    top: 368px;
  }

  .offers-column__buttons--incart .offers-column__one-click .btn {
    height: auto;
    padding: 14px 10px;
  }

  .offers-column__buttons--incart .offers-column__incart {
    width: 274px;
  }

  /*.container {
    margin-left: 15px;
    margin-right: 15px;
  }*/

  .block-product-of-the-day__column {
    padding: 30px;
  }

  .offers-column__other-buttons-big>a {
    padding: 9px 12px 6px;
  }

  .offers-column__change-count__input {
    width: 40px;
  }

  .offers-column__tags>a {
    padding: 4px;
  }

  .offers-column__in-stock>a,
  .offers-column__in-stock,
  .offers-column__article {
    font-size: 10px;
    line-height: 11px;
  }

  .offers-column__variants>a {
    padding: 4px 5px;
  }

  .offers-column {
    height: 589px;
  }

  .offers-column__first .offers-column__offerbig:after {
    background: rgba(0, 0, 0, .3);
    opacity: 1;
  }

  .block-services__item-img {
    padding-top: 50%;
  }

  .block-banner-image-and-button {
    position: relative;
  }

  .block-collections__item {
    width: 33.333%;
  }

  .block-article__item--first .block-article__item-img {
    padding-top: 86%;
  }

  .block-partners__list-item {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .catalog-subcategoreis__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-edgeColumn {
    width: 30%;
    flex: 0 0 30%;
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn {
    width: 40%;
    flex: 0 0 40%;
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 134px);
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-text {
    width: 230px;
    font-size: 14px;
    line-height: 18px;
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 134px);
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 85px);
  }

  .header_socials {
    display: none;
  }

}

@media screen and (min-width: 1140px) and (max-width: 1279px) {

  .header_socials {
    display: none;
  }

  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 52px);
  }

  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 29px);
  }

  .container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 12px);
  }

  .container1500.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2,
  .container1700.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% + 50px);
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-edgeColumn {
    width: 30%;
    flex: 0 0 30%;
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn {
    width: 40%;
    flex: 0 0 40%;
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 177px);
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-text {
    width: 230px;
    font-size: 14px;
    line-height: 18px;
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 163px);
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 52px);
  }

  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 134px);
  }

  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 134px);
  }

  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 85px);
  }

}

@media screen and (min-width: 1280px) and (max-width: 1343px) {

  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 52px);
  }

  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 29px);
  }

  .container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 12px);
  }

  .container1500.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2,
  .container1700.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% + 50px);
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-edgeColumn {
    width: 30%;
    flex: 0 0 30%;
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn {
    width: 40%;
    flex: 0 0 40%;
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 174px);
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-text {
    width: 250px;
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 198px);
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 29px);
  }

  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 177px);
  }

  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 178px);
  }

  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 218px);
  }

  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 189px);
  }

  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 134px);
  }

  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 134px);
  }

  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 85px);
  }

}

@media screen and (min-width: 1344px) and (max-width: 1499px) {

  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 52px);
  }

  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 29px);
  }

  .container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 12px);
  }

  .container1500.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2,
  .container1700.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% + 50px);
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-edgeColumn {
    width: 30%;
    flex: 0 0 30%;
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn {
    width: 40%;
    flex: 0 0 40%;
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 216px);
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-text {
    width: 250px;
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 225px);
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% + 10px);
  }

  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 177px);
  }

  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 178px);
  }

  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 218px);
  }

  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 221px);
  }

  .container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 239px);
  }

  .container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 217px);
  }

  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 134px);
  }

  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 134px);
  }

  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 85px);
  }

}

@media screen and (min-width: 1500px) and (max-width: 1699px) {

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% + 38px);
  }

  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 52px);
  }

  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 29px);
  }

  .container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 12px);
  }

  .container1500.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2,
  .container1700.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% + 50px);
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-edgeColumn {
    width: 30%;
    flex: 0 0 30%;
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn {
    width: 40%;
    flex: 0 0 40%;
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 271px);
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 268px);
  }

  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 177px);
  }

  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 178px);
  }

  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 218px);
  }

  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 221px);
  }

  .container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 239px);
  }

  .container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 241px);
  }

  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 134px);
  }

  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 134px);
  }

  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 85px);
  }

}

@media screen and (min-width: 1700px) and (max-width: 1919px) {

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% + 85px);
  }

  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 52px);
  }

  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 29px);
  }

  .container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 12px);
  }

  .container1500.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2,
  .container1700.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% + 50px);
  }


  .container.block_step-by-step-path-columns2 .step-by-step__item-edgeColumn {
    width: 30%;
    flex: 0 0 30%;
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn {
    width: 40%;
    flex: 0 0 40%;
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 330px);
  }

  .container.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container1920.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 355px);
  }

  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 177px);
  }

  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container1140.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 178px);
  }

  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 218px);
  }

  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container1280.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 221px);
  }

  .container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 239px);
  }

  .container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container1344.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 241px);
  }

  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+3) .step-by-step__item-text,
  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+5) .step-by-step__item-text {
    left: calc(-100% - 134px);
  }

  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+2) .step-by-step__item-text,
  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(4n+4) .step-by-step__item-text {
    right: calc(-100% - 134px);
  }

  .container1024.block_step-by-step-path-columns2 .step-by-step__item-centerColumn .step-by-step__item:nth-child(odd) .step-by-step__tech-2 {
    width: calc(100% - 85px);
  }

}

.container1024 {
  max-width: 1024px;
}

.container1140 {
  max-width: 1140px;
}

.container1280 {
  max-width: 1280px;
}

.container1500 {
  max-width: 1656px;
}

.container1700 {
  max-width: 1656px;
}

.container1920 {
  max-width: 1874px;
}

.container1024 .catalog-subcategoreis__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.container1024 .header__top-phone_link {
  max-width: 150px;
}

.container1024 .header__top-phone_link a:first-child {
  font-size: 11px;
  font-weight: 700;
  line-height: 24px;
}

.container1024 .block-categories__column-img img {
  max-width: 90px;
  max-height: 90px;
}

.container1024 .offers-column {
  padding: 15px 15px 0 15px;
}

.container1024 .offers-column__info {
  left: 0;
  right: 0;
}

.container1024 .timer__item,
.container1024 .offers-column__counter-quantity {
  min-width: 36px;
  max-width: 50px;
}

.container1024 .timer__item>span:first-child,
.container1024 .offers-column__counter-quantity>span:first-child {
  font-size: 15px;
  line-height: 15px;
}

.container1024 .offers-column:not(.offers-column__first):hover .container1024 .offers-column__info {
  left: 15px;
  right: 15px;
}

.container1024 .offers-column__counter-left>span,
.container1024 .offers-column__counter-right>span {
  font-size: 10px;
  line-height: 10px;
  margin-bottom: 4px;
}

.container1024 .offers-column__change-count__button {
  padding: 12px 15px;
}

.container1024 .offers-column__incart {
  height: auto;
}

.container1024 .offers-column__incart-left,
.container1024 .offers-column__incart-right {
  height: 40px;
}

.container1024 .offers-column__incart .btn {
  padding: 16px 0;
}

.container1024 .offers-column__variants-name,
.container1024 .offers-column__properties-lines-name {
  font-size: 10px;
  line-height: 14px;
  margin-bottom: 2px;
}

.container1024 .offers-column__info {
  top: 368px;
}

.container1024 .offers-column__buttons--incart .offers-column__one-click .btn {
  height: auto;
  padding: 14px 10px;
}

.container1024 .offers-column__buttons--incart .offers-column__incart {
  width: 274px;
}

.container1024.container {
  /*margin-left: 15px;
  margin-right: 15px;*/
}

.container1024 .block-product-of-the-day__column {
  padding: 30px;
}

.container1024 .offers-column__other-buttons-big>a {
  padding: 9px 12px 6px;
}

.container1024 .offers-column__change-count__input {
  width: 40px;
}

.container1024 .offers-column__tags>a {
  padding: 4px;
}

.container1024 .offers-column__in-stock>a,
.container1024 .offers-column__in-stock,
.container1024 .offers-column__article {
  font-size: 10px;
  line-height: 11px;
}

.container1024 .offers-column__variants>a {
  padding: 4px 5px;
}

.container1024 .offers-column {
  height: 589px;
}

.container1024 .offers-column__first .offers-column__offerbig:after {
  background: rgba(0, 0, 0, .3);
  opacity: 1;
}

.container1024 .timer__item>span:last-child,
.container1024 .offers-column__counter-quantity>span:last-child {
  font-size: 8px;
  line-height: 8px;
}

.container1024 .block-services__item-img {
  padding-top: 50%;
}

.container1024 .block-article__item--first .block-article__item-img {
  padding-top: 86%;
}

/** end1024 **/

@media screen and (min-width: 1101px) and (max-width: 1344px) {
  .block-categories__column-img img {
    max-width: 90px;
    max-height: 90px;
  }

  .offers-column {
    padding: 15px 15px 0 15px;
  }

  .offers-column__info {
    left: 0;
    right: 0;
  }

  .timer__item,
  .offers-column__counter-quantity {
    min-width: 36px;
    max-width: 50px;
  }

  .timer__item>span:first-child,
  .offers-column__counter-quantity>span:first-child {
    font-size: 15px;
    line-height: 15px;
  }

  .offers-column:not(.offers-column__first):hover .offers-column__info {
    left: 15px;
    right: 15px;
  }

  .offers-column__counter-left>span,
  .offers-column__counter-right>span {
    font-size: 10px;
    line-height: 10px;
    margin-bottom: 4px;
  }

  .offers-column__change-count__button {
    padding: 12px 15px;
  }

  .offers-column__incart {
    height: auto;
  }

  .offers-column__incart-left,
  .offers-column__incart-right {
    height: 40px;
  }

  .offers-column__incart .btn {
    padding-top: 17px;
  }

  .offers-main .offers-column__incart .btn {
    font-size: 9px;
    padding-top: 15px;
  }

  .offers-main .offers-column__change-count__input {
    width: 46px;
  }

  .offers-column__variants-name,
  .offers-column__properties-lines-name {
    font-size: 10px;
    line-height: 14px;
    margin-bottom: 2px;
  }

  .offers-column__info {
    top: 368px;
  }

  .offers-column__buttons--incart .offers-column__one-click .btn {
    height: auto;
    padding: 14px 10px;
  }

  .offers-column__buttons--incart .offers-column__incart {
    width: 274px;
  }

  .container {
    margin-left: 15px;
    margin-right: 15px;
  }

  .block-product-of-the-day__column {
    padding: 30px;
  }

  .offers-column__other-buttons-big>a {
    padding: 9px 12px 6px;
  }

  .offers-column__change-count__input {
    width: 50px;
  }

  .block-services__item-img {
    padding-top: 50%;
  }

  .block-banner-image-and-button__left {
    padding-left: 40px;
  }

  .block-banner-image-and-button__right {
    padding-left: 25%;
  }

  .block-sale__item-info,
  .block-article__item-info {
    padding: 10px;
  }

  .block-sale__item .timer__item,
  .block-sale__item .offers-column__counter-quantity {
    padding: 2px 4px 4px;
  }

  .block-sale__item .offers-column__counter-quantity>span:last-child {
    font-size: 10px;
    line-height: 10px;
  }

  .catalog-subcategoreis__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.preloader {
  display: block;
  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(--color-maintheme);
  border-radius: 50%;
  border-top-color: transparent;
  animation: swiper-preloader-spin 1s infinite linear;

  --swiper-preloader-color: var(--color-maintheme);
}

.minifavorite-modal_accept {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.minifavorite-modal_accept .site-ajax-form {
  display: flex;
  background-color: #fff;
  border-radius: 15px;
  padding: 50px;
}

.offer_block,
.minifavorite-item__buttons,
.compare-item__buttons {
  display: flex;
}

.offer_block .ajax-compare,
.offer_block .ajax-favs,
.minifavorite-item__buttons a,
.compare-item__buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
}

.offer_block a:hover span,
.offer_block a.selected span,
.minifavorite-item__buttons a:hover span,
.minifavorite-item__buttons a.selected span,
.compare-item__buttons a:hover span,
.compare-item__buttons a.selected span {
  color: white;
}

.offer_block a span,
.compare-item__buttons a span,
.minifavorite-item__buttons a span {
  color: #404040;
}

.separator {
  border: solid white 1px;
}

#compare {
  height: fit-content;
}

#compare .column {
  height: fit-content;
}

.compare-checkbox {
  padding: 5px 0 5px 0;
}

.compare-checkbox span {
  font-size: large;
  margin-left: 40px;
  position: relative;
  top: 9px;
  cursor: pointer;
}

#compare input.form-check-input-in {
  width: 4em;
  height: 2em;
}

@media (max-width: 400px) {
  .compare-checkbox {
    padding: 1px 0 1px 0;
  }

  .compare-checkbox span {
    font-size: medium;
    margin-left: 10px;
    position: relative;
    top: 4px;
    cursor: pointer;
  }

  #compare input.form-check-input-in {
    width: 2.5em;
    height: 1.5em;
  }

}

.compare-checkbox,
.compare-item__bottom,
.compare-item__bottom-characteristics,
.compare-item__bottom-dimensions {
  border-bottom: #F2F2F2 solid 1px;
}

.compare-item__name,
.compare-item__bottom {
  border-left: #F2F2F2 solid 1px;
  border-right: #F2F2F2 solid 1px;
}

.compare-item__bottom {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin-bottom: 15px;
}

.compare-item__bottom-characteristics {
  margin-bottom: 15px;
  height: 75px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
}

.compare-item__bottom-characteristics-name {
  display: flex;
  font-size: 14px;
  line-height: 22px;
  color: #B0B0B0;
  margin-bottom: 8px;
}

.compare-item__bottom-characteristics-name span {
  cursor: pointer;
}

.compare-item__bottom-characteristics-value {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #404040;
  word-break: break-word;
  margin-right: 8px;
  max-height: 70px;
  overflow: hidden;
}

.compare-item__image img {
  height: auto;
  object-fit: fill;
  width: auto;
  margin: auto;
}

.compare-item__image {
  border: #F2F2F2 solid 1px;
  border-bottom: none;
  display: block;
  padding: 0 10px;
  text-align: center;
}

.compare-item__name {
  height: 75px;
  text-align: center;
}

.compare-item__bottom-prices {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

#compare .swiper-button-prev {
  left: 30px;
}

#selectLanguageSite{
  border-radius: 10px;


}

.header__top-language_link{
  display: flex;
  align-items: center;
}

/* Макеты регистрации, авторизации, восстановления доступа, страница профиля */

#regist .container,
#auth .container,
#access_recovery .container {
  display: flex;
  justify-content: center;
}

#regist .form-regist,
#auth .form-auth,
#access_recovery .form-access_recovery,
#profile .form-profile {
  display: flex;
  flex-flow: column;
}

.form-regist .form-buttons,
.form-auth .form-buttons,
.form-access_recovery .form-buttons,
.form-profile .form-buttons {
  text-align: left;
  margin-bottom: 15px;
}

.form-regist .form-buttons .btn,
.form-auth .form-buttons .btn,
.form-access_recovery .form-buttons .btn,
.form-profile .form-buttons .btn,
.form-regist .form-buttons a,
.form-auth .form-buttons a,
.form-access_recovery .form-buttons a,
.form-profile .form-buttons a {
  margin-right: 15px;
}

.form-regist a,
.form-auth a,
.form-access_recovery a,
.form-profile a {
  font-size: 13px;
  border-bottom: dashed 1px black !important;
}

.form-regist a.privacy-link {
  text-decoration: none;
  font-size: normal;
  border-bottom: dashed 1px black !important;
}

.form-regist .form-check-in,
.form-profile .form-check-in {
  cursor: pointer;
}

.form-regist .form-field-text,
.form-profile .jur_person .form-field-text {
  width: 95%;
}

.form-regist .org_data,
.form-regist .bank_data,
.form-regist .email_pass,
.form-regist .name,
.form-profile .org_data,
.form-profile .bank_data,
.form-profile .email_pass,
.form-profile .name {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
}

.form-regist .person_data,
.form-profile .person_data {
  display: flex;
  flex-flow: row nowrap;
}

.form-regist .jur_person,
.form-profile .jur_person {
  margin-top: 15px;
}

.header__top-user_link {
  display:flex;
  width: auto;
}

.header__top-user_link .dropdown {
  position: relative;
  display: inline-block;
  width: 80px;
}

.header__top-user_link .dropdown-toggle {
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.header__top-user_link .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  top:100%;
}

.header__top-user_link .dropdown-menu .btn,
.header__top-user_link .dropdown-menu a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.header__top-user_link .dropdown-menu a:hover,
.header__top-user_link .dropdown-menu .btn:hover {
  background-color: #f1f1f1;
}

.header__top-user_link .dropdown-toggle:hover .dropdown-menu {
  display: block;
}

.header__top-user_link .btn {
  background-color: transparent;
  border: none;
}

.user_profile .name>div {
  width: 95%;
}

.user_profile .toggle {
  margin-bottom: 15px;
}

.user_profile .toggle .form-switch-in {
  margin-bottom: 0;
}

.user_profile .pass_reset {
  border-bottom: none !important;
  width: 100%;
}