@charset "UTF-8";

/*~~~~~~~~~~~~~~~~~~~~~~~~~
FONT FAMILY
~~~~~~~~~~~~~~~~~~~~~~~~~*/

@font-face {
  font-family: "Montserrat";
  src: url("./../../fonts/Montserrat-Light.woff2") format("woff2"), url("./../../fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("./../../fonts/Montserrat-Regular.woff2") format("woff2"), url("./../../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("./../../fonts/Montserrat-Medium.woff2") format("woff2"), url("./../../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("./../../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("./../../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("./../../fonts/Montserrat-Bold.woff2") format("woff2"), url("./../../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~
VARIABLES
~~~~~~~~~~~~~~~~~~~~~~~~~*/

:root {
  /*font-family*/
  --fm-1: "Montserrat", sans-serif;
  /*colors*/
  --color-primary: #b7b000;
  --color-primary-lig: #fffdd1;
  --color-secondary: #241600;
  --color-text: #383838;
  --basick-black: #000;
  --basick-white: #fff;
  --basick-orange: #ff7d28;
  --basick-green: #58a956;
  --basick-birch: #a0c8e4;
  --color-primary-hsl: hsl(58, 100%, 36%);
  --scroll-bar-color: hsl(58, 42%, 90%);
  --scroll-thumb-color: hsl(58, 42%, 70%);
  --scroll-thumb-color-hover: hsl(58, 42%, 60%);
}

/***********************Main*/

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

:focus,
:active {
  outline: none;
}

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

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
}

textarea {
  resize: none;
}

input {
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

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

a,
a:visited,
a:hover {
  text-decoration: none;
}

a {
  color: inherit;
}

ul li {
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

input[type="number"] {
  -moz-appearance: textfield;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~
ОБЩИЕ СТИЛИ
~~~~~~~~~~~~~~~~~~~~~~~~~*/

/*~~~~~~~~~~~~~~~~~~~~~~~~~
ОБЩИЕ СТИЛИ
~~~~~~~~~~~~~~~~~~~~~~~~~*/

.flex,
.flex-wrap,
.vt-center,
.gt-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/*Общие стили сетки*/

.vt-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gt-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.for-table {
  display: none;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.color-primary {
  color: var(--color-primary);
}

:root {
  --column: 12;
  --air-l: 30px;
  --air-b: 20px;
}

.bCols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 calc(var(--air-b) * -1) calc(var(--air-l) * -1);
}

.bCols__col {
  margin: 0 0 var(--air-b) var(--air-l);
  word-wrap: break-word;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 calc(var(--air-b) * -1) calc(var(--air-l) * -1);
}

.col {
  margin: 0 0 var(--air-b) var(--air-l);
  word-wrap: break-word;
}

.col-1 {
  width: calc(100% / 12 * 1);
}

.col-2 {
  width: calc(100% / 12 * 2);
}

.col-3 {
  width: calc(100% / 12 * 3);
}

.col-4 {
  width: calc(100% / 12 * 4);
}

.col-5 {
  width: calc(100% / 12 * 5);
}

.col-6 {
  width: calc(100% / 12 * 6);
}

.col-7 {
  width: calc(100% / 12 * 7);
}

.col-8 {
  width: calc(100% / 12 * 8);
}

.col-9 {
  width: calc(100% / 12 * 9);
}

.col-10 {
  width: calc(100% / 12 * 10);
}

.col-11 {
  width: calc(100% / 12 * 11);
}

.col-12 {
  width: calc(100% / 12 * 12);
}

.content-wrap {
  padding: 4rem 0 6rem;
}

.content-wrap h1 {
  margin-bottom: 65px;
}

.bread-crumb + .content-wrap {
  padding-top: 48px;
}

/*section*/

.section {
  padding: 85px 0 20px;
}

.section__title {
  margin-bottom: 65px;
}

.section__btn {
  --height: 72px;
  margin: 80px auto 0;
  padding: 0 2.33333em;
}

html,
body {
  font-family: var(--fm-1);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  scrollbar-color: var(--scroll-thumb-color) var(--scroll-bar-color);
  /* «цвет ползунка» «цвет полосы скроллбара» */
  scrollbar-width: thin;
  /* толщина */
}

::-webkit-scrollbar {
  width: 0.8rem;
  background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--scroll-thumb-color-hover);
}

.body {
  height: 1px;
  min-height: 100vh;
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}

/*--------------------------------Common--------------------------------*/

.container {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1170px;
}

a[href*="tel:"],
a[href*="mailto:"] {
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

a[href*="tel:"]:hover,
a[href*="mailto:"]:hover {
  color: var(--color-primary);
}

.title-1 span,
.title-2 span {
  padding-left: 0.5em;
  border-left: 0.30556em solid var(--color-primary);
}

.title-1 {
  font-size: 36px;
  line-height: 1.22222;
  text-transform: uppercase;
  text-align: center;
}

.title-2 {
  font-size: 32px;
  line-height: 1.21875;
}

.title-3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.20833;
  text-transform: uppercase;
  text-align: center;
}

.text {
  font-size: 18px;
  line-height: 1.45833;
}

.text--lg {
  font-size: 24px;
  line-height: 1.45833;
}

/*accardion*/

.accardion {
  margin: 0 auto;
  max-width: 575px;
}

.accardion__item {
  background-color: #fff;
  font-size: 16px;
  border: 1px solid #eeeeee;
  border-bottom: none;
}

.accardion__item:last-child {
  margin-bottom: 0;
  border-bottom: 1px solid #eeeeee;
}

.accardion__item.open .accardion__item-arr {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.accardion__item-header {
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5em 3.875em 0.5em 1.875em;
  min-height: 3.25em;
  font-weight: 600;
  line-height: 1.2;
}

.accardion__item-arr {
  position: absolute;
  top: 50%;
  right: 1.6875em;
  display: block;
  width: 1.61111em;
  height: 0.83333em;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.accardion__item-arr svg {
  width: 100%;
  height: 100%;
  fill: var(--color-primary);
}

.accardion__item-drop {
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.accardion__item.open .accardion__item-drop {
  height: auto;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.accardion__item-content {
  padding: 0.71429em 2.14286em 1.28571em 2.28571em;
  font-size: 14px;
  line-height: 1.42857;
}

.accardion__item-content p + p {
  margin-top: 0.8em;
}

/*b-tabs*/

.b-tabs__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  background-color: #fbfbfb;
  overflow-x: auto;
}

.b-tabs__link {
  position: relative;
  font-weight: 500;
  padding: 0.875em 2.625em;
}

.b-tabs__link:hover {
  background-color: var(--color-primary-lig);
}

.b-tabs__link.active {
  cursor: default;
  color: #fff;
  background-color: var(--color-primary);
}

.b-tabs__content {
  margin-top: 40px;
}

.b-tabs__pane {
  height: 0;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
}

.b-tabs__pane.active {
  height: auto;
  visibility: visible;
  overflow: visible;
  opacity: 1;
  -webkit-transition: opacity 0.7s ease;
  -o-transition: opacity 0.7s ease;
  transition: opacity 0.7s ease;
}

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

.b-tabs__pane p::after {
  content: "";
  display: block;
  clear: both;
}

.b-tabs__pane > * {
  margin-top: 1.5em;
}

.b-tabs__pane > *:first-child {
  margin-top: 0;
}

.b-tabs__pane img {
  height: auto;
}

/*b-input*/

.b-input {
  --air: 0 0 25px;
  --pl: 45px;
  --pr: 40px;
  --pdT: 21px var(--pl) 16px;
  --h: 65px;
  --fz: 18px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: var(--air);
}

.b-input__title {
  margin-top: 15px;
  margin-right: 0.83333em;
}

.b-input__input {
  position: relative;
  max-width: 490px;
  width: 100%;
}

.b-input__input input,
.b-input__input textarea {
  width: 100%;
  font-size: var(--fz);
  background-color: #fff;
  border: 1px solid var(--color-primary);
  -webkit-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  transition: border-color 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.b-input__input input::-webkit-input-placeholder, .b-input__input textarea::-webkit-input-placeholder {
  color: #7d7d7d;
}

.b-input__input input::-moz-placeholder, .b-input__input textarea::-moz-placeholder {
  color: #7d7d7d;
}

.b-input__input input:-ms-input-placeholder, .b-input__input textarea:-ms-input-placeholder {
  color: #7d7d7d;
}

.b-input__input input::-ms-input-placeholder, .b-input__input textarea::-ms-input-placeholder {
  color: #7d7d7d;
}

.b-input__input input::placeholder,
.b-input__input textarea::placeholder {
  color: #7d7d7d;
}

.b-input__input input {
  padding: 0 var(--pr) 0 var(--pl);
  height: var(--h);
}

.b-input__input textarea {
  padding: var(--pdT);
  min-height: 98px;
}

.b-input__placeholder {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.b-input__placeholder {
  pointer-events: none;
  left: var(--pl);
  display: none;
  padding-right: 80px;
  max-width: 100%;
  color: var(--color-primary);
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.b-input__placeholder span {
  color: var(--basick-red);
}

.b-input input:focus ~ .b-input__placeholder {
  opacity: 0.4;
}

.b-input input:-moz-placeholder-shown ~ .b-input__placeholder {
  display: block;
}

.b-input input:-ms-input-placeholder ~ .b-input__placeholder {
  display: block;
}

.b-input input:placeholder-shown ~ .b-input__placeholder {
  display: block;
}

.b-radio {
  cursor: pointer;
  position: relative;
  display: block;
  padding-left: 1.94444em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.b-radio__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
  pointer-events: none;
}

.b-radio__input:checked ~ .b-radio__custom::before {
  opacity: 1;
}

.b-radio__custom {
  position: absolute;
  left: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.1em;
  height: 1.1em;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid var(--color-primary);
}

.b-radio__custom::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 45.45455%;
  height: 45.45455%;
  background-color: var(--color-primary);
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.b-radio__content {
  display: inline-block;
  min-width: 1.8125em;
  line-height: 1.2;
}

.b-checkbox {
  cursor: pointer;
  position: relative;
  display: block;
  padding-left: 1.78571em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.b-checkbox:hover .b-checkbox__custom {
  border-color: #241600;
}

.b-checkbox__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
  pointer-events: none;
}

.b-checkbox__input:checked ~ .b-checkbox__custom::before {
  opacity: 1;
}

.b-checkbox__custom {
  position: absolute;
  left: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.21429em;
  height: 1.21429em;
  background-color: #fff;
  border: 1px solid #c4c4c4;
}

.b-checkbox__custom::before {
  content: "\2713";
  position: absolute;
  left: 50%;
  top: 45%;
  display: block;
  width: 75%;
  height: 75%;
  opacity: 0;
  color: #241600;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.b-checkbox__content {
  display: inline-block;
  min-width: 1.8125em;
  line-height: 1.2;
}

.b-select {
  display: inline-block;
  width: 192px;
  height: 40px;
  font-size: 12px;
  overflow: hidden;
  background-color: #fcfcfc;
  background-image: url(./../../img/icons/b-select-arr.svg);
  background-repeat: no-repeat;
  background-position: right 1.16667em center;
}

.b-select select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  padding: 0 2.58333em 0 1.41667em;
  height: 100%;
  width: 100%;
  font-size: inherit;
  font-family: inherit;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  background-color: transparent;
}

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

.b-select--viewing {
  background-image: none;
}

.b-select--viewing input {
  padding: 0 2.58333em 0 1.41667em;
  height: 100%;
  width: 100%;
  background-color: transparent;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

/*bro menu*/

.bro-menu {
  position: relative;
  width: 100%;
  font-size: 18px;
  overflow: hidden;
  -webkit-transition: height 0.3s;
  -o-transition: height 0.3s;
  transition: height 0.3s;
  will-change: height;
}

.bro-menu__container {
  display: block;
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.bro-menu__submenu {
  width: 100%;
}

.bro-menu__next,
.bro-menu__back,
.bro-menu__link {
  cursor: pointer;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 1em;
  width: 100%;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.bro-menu__next:hover,
.bro-menu__back:hover,
.bro-menu__link:hover {
  background-color: #f4f4f4;
}

.bro-menu__link {
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
}

.bro-menu li.active > .bro-menu__link {
  background-color: #f4f4f4;
}

.bro-menu li .bro-menu__submenu {
  visibility: hidden;
  position: absolute;
  left: 100%;
  top: 0;
  -webkit-transition: visibility 0s 0.3s;
  -o-transition: visibility 0s 0.3s;
  transition: visibility 0s 0.3s;
}

.bro-menu li .bro-menu__submenu.active {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  -o-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
}

.bro-menu li .bro-menu__submenu .bro-menu__link {
  font-size: 16px;
}

.bro-menu__next svg,
.bro-menu__back svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 10px;
}

.bro-menu__next svg {
  margin-left: auto;
}

.bro-menu__back {
  background-color: var(--color-primary) !important;
  font-size: 18px !important;
  color: var(--basick-white);
}

.bro-menu__back svg {
  margin-right: 1em;
  fill: var(--basick-white);
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}

/*search*/

.search {
  cursor: pointer;
  font-size: 10px;
  height: 29px;
  -webkit-transition: width 0.3s, background-color 0s 0.3s;
  -o-transition: width 0.3s, background-color 0s 0.3s;
  transition: width 0.3s, background-color 0s 0.3s;
}

.search {
  width: 300px;
  -webkit-transition: width 0.3s, background-color 0s 0s;
  -o-transition: width 0.3s, background-color 0s 0s;
  transition: width 0.3s, background-color 0s 0s;
}

.search .search__inner {
  pointer-events: all;
}

.search .search__input {
  padding: 0px 42px 0 27px;
  opacity: 1;
}

.search__inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.search__input {
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #f3fbfe;
  border-radius: inherit;
  -webkit-transition: opacity 0.3s, padding 0s 0.15s;
  -o-transition: opacity 0.3s, padding 0s 0.15s;
  transition: opacity 0.3s, padding 0s 0.15s;
}

.search__input::-webkit-input-placeholder {
  color: #b8d9ea;
}

.search__input::-moz-placeholder {
  color: #b8d9ea;
}

.search__input:-ms-input-placeholder {
  color: #b8d9ea;
}

.search__input::-ms-input-placeholder {
  color: #b8d9ea;
}

.search__input::placeholder {
  color: #b8d9ea;
}

.search__btn,
.search__close {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  padding: 0 10px;
  height: 100%;
}

.search__btn svg,
.search__close svg {
  fill: var(--color-primary);
}

.search__btn svg {
  width: 14.5px;
  height: 14.5px;
}

.search__close {
  display: none;
}

.search__close svg {
  width: 14px;
  height: 14px;
}

/*v-modal*/

.v-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.71);
  opacity: 0;
  -webkit-transition: opacity 0.25s;
  -o-transition: opacity 0.25s;
  transition: opacity 0.25s;
  pointer-events: none;
  overflow: auto;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  /*v-form*/
}

.v-modal.active {
  opacity: 1;
  pointer-events: all;
}

.v-modal__inner {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.v-modal__form {
  position: relative;
  margin: auto 0;
  max-width: 675px;
  width: 100%;
  background-color: #fff;
  text-align: center;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.21);
          box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.21);
}

.v-modal__form-inner {
  position: relative;
  padding: 74px 70px 56px;
}

.v-modal__close {
  cursor: pointer;
  position: absolute;
  top: 22px;
  right: 25px;
  width: 29px;
  height: 29px;
  overflow: hidden;
  z-index: 3;
  background-color: #f5f4f4;
  border-radius: 50%;
  -webkit-transition: opacity 0.25s;
  -o-transition: opacity 0.25s;
  transition: opacity 0.25s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.v-modal__close:hover {
  background-color: var(--color-primary);
}

.v-modal__close::before,
.v-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 53.125%;
  height: 2.5px;
  border-radius: 2px;
  background-color: #fff;
}

.v-modal__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.v-modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.v-modal__title {
  margin-bottom: 1.52778em;
}

.v-modal__application .b-input {
  --air: 0 0 24px;
  width: 100%;
}

.v-modal .application-f__submit {
  margin-top: 25px;
}

/*slider price*/

.slider-from-to__title {
  margin-right: 1.41667em;
}

.slider-from-to__title span {
  color: #c4c4c4;
  text-transform: uppercase;
}

.slider-from-to__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider-from-to__label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 13px;
  padding: 0 5px 0 10px;
  width: 95px;
  height: 40px;
  font-size: 18px;
  color: #5a5a5a;
  border: 1px solid var(--color-primary);
}

.slider-from-to__label:last-child {
  margin-right: 0;
}

.slider-from-to__label::before {
  content: attr(data-subtext);
  position: absolute;
  top: 45%;
  left: 5px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #c4c4c4;
}

.slider-from-to__text {
  color: #c4c4c4;
}

.slider-from-to__input {
  padding: 0 5px;
  height: 17px;
  width: 100%;
  text-align: center;
  color: #5a5a5a;
  background-color: #fcfcfc;
}

.slider-from-to__input::-webkit-input-placeholder {
  color: #c4c4c4;
}

.slider-from-to__input::-moz-placeholder {
  color: #c4c4c4;
}

.slider-from-to__input:-ms-input-placeholder {
  color: #c4c4c4;
}

.slider-from-to__input::-ms-input-placeholder {
  color: #c4c4c4;
}

.slider-from-to__input::placeholder {
  color: #c4c4c4;
}

.slider-from-to__slider {
  margin: 25px 0 28px;
}

/*number slider*/

.number-slider {
  display: -ms-inline-grid;
  display: inline-grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  row-gap: 8px;
  font-size: 18px;
}

.number-slider__input {
  -ms-grid-row-span: 2;
  grid-row: span 2;
  display: block;
  width: 2.77778em;
  height: 2.77778em;
  line-height: 2.77778em;
  text-align: center;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
}

.number-slider__up,
.number-slider__down {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / 3;
  display: block;
  font-weight: 500;
  width: 1.16667em;
  height: 1.16667em;
  line-height: 1.16667em;
  text-align: center;
  color: #c4c4c4;
  background-color: #eee;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.number-slider__up:hover,
.number-slider__down:hover {
  background-color: #938e00;
}

.number-slider__up {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
}

.number-slider--type-2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0 !important;
     -moz-column-gap: 0 !important;
          column-gap: 0 !important;
  row-gap: 0 !important;
  height: 40px;
  font-size: 18px;
  border-radius: 20px;
  overflow: hidden;
}

.number-slider--type-2 .number-slider__input {
  grid-row: auto;
  width: 47px;
  height: 100%;
  line-height: normal;
  color: #7d7d7d;
  background-color: #f5f4f4;
  border: none;
  border-radius: 0;
}

.number-slider--type-2 .number-slider__up,
.number-slider--type-2 .number-slider__down {
  grid-row: auto;
  grid-column: auto;
  display: block;
  width: 45px;
  height: 100%;
  font-size: 1.2em;
  line-height: normal;
  color: #fff;
  background-color: #cecece;
  border-radius: 0;
}

.number-slider--type-2 .number-slider__up:hover,
.number-slider--type-2 .number-slider__down:hover {
  background-color: #9b9b9b;
}

/*dropdown*/

.js-tree-menu {
  scrollbar-color: transparent #606060;
  /* «цвет ползунка» «цвет полосы скроллбара» */
  scrollbar-width: thin;
  /* толщина */
}

.js-tree-menu ul {
  height: 0;
  min-height: 0;
  overflow: hidden;
  -webkit-transition-property: min-height, height;
  -o-transition-property: min-height, height;
  transition-property: min-height, height;
  -webkit-transition-duration: 0.3s;
       -o-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.js-tree-menu *::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: transparent;
}

.js-tree-menu *::-webkit-scrollbar-thumb {
  background-color: #606060;
  border-radius: 3px;
}

.js-tree-menu *::-webkit-scrollbar-thumb:hover {
  background-color: #7a7a7a;
}

.js-bFilter .hide {
  display: none;
}

.noUi-horizontal {
  height: 2px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 1px;
}

.noUi-connects {
  background: #c4c4c4;
  border-radius: 1px;
}

.noUi-connect {
  background: var(--color-primary);
}

.noUi-horizontal .noUi-handle {
  cursor: pointer;
  right: -8px;
  top: -5px;
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  border: none;
  border-radius: 50%;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.noUi-horizontal .noUi-handle::after {
  display: none;
}

.noUi-horizontal .noUi-handle::before {
  cursor: pointer;
  display: block;
  left: 50%;
  top: 50%;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  background-color: transparent;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*==================== BUTTONS ====================*/

.btn,
.btnGo,
.btnArr,
.btnBasket,
.btn-filter {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 16px;
  font-weight: 500;
  text-align: center;
}

.btn,
.btnGo,
.btn-filter {
  --height: 40px;
  --fz: 14px;
  --colorText: #fff;
  --colorTone: var(--color-primary);
  height: var(--height);
  font-size: var(--fz);
  color: var(--colorText);
  background-color: var(--colorTone);
}

.btn {
  font-weight: 500;
  line-height: 1.25;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn:hover {
  --colorTone: var(--color-secondary);
}

.btn--secondary {
  --colorTone: var(--color-secondary);
  background-color: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}

.btn--secondary:hover {
  color: #fff;
  background-color: var(--colorTone);
}

.btn--light {
  --colorTone: #f5f4f4;
  --colorText: #7d7d7d;
}

.btn--light:hover {
  --colorTone: var(--color-primary-lig);
}

.btnGo {
  --height: 50px;
  --fz: 16px;
  --colorTone: var(--color-secondary);
  --colorText: var(--color-secondary);
  padding: 7px 1.125em 7px 1.4375em;
  background-color: transparent;
  border: 2px solid var(--colorTone);
  text-transform: uppercase;
  overflow: hidden;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.btnGo__text {
  margin-right: 1.6875em;
}

.btnGo__arrWrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  height: 100%;
}

.btnGo__arr {
  margin: 0 auto;
  width: 0.71875em;
  height: 1.3125em;
  fill: currentColor;
}

.btnGo:hover {
  color: #fff;
  background-color: var(--colorTone);
}

.btnGo--secondary {
  --colorTone: var(--color-primary);
  --colorText: var(--color-primary);
}

.btnArr {
  --color-border: var(--color-primary);
  --color-arr: var(--color-primary);
  padding: 0;
  width: 31px;
  height: 31px;
  fill: transparent;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btnArr svg {
  max-width: 100%;
  max-height: 100%;
}

.btnArr:hover {
  --color-arr: #fff;
  fill: var(--color-primary);
}

.btnBasket {
  position: relative;
  padding: 0;
}

.btnBasket__ic {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 37px;
  height: 31px;
  fill: var(--color-primary);
}

.btnBasket strong {
  position: absolute;
  top: -10px;
  right: -10px;
  font-weight: 300;
  font-size: 14px;
  line-height: 1;
  color: #c4c4c4;
}

.btnBasket--circ {
  width: 65px;
  height: 65px;
  background-color: var(--color-primary);
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btnBasket--circ .btnBasket__ic {
  margin: 0 0 -6px -6px;
  fill: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btnBasket--circ strong {
  top: 12px;
  right: 11px;
  font-size: 12px;
  color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btnBasket--circ:hover {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 20px rgba(255, 111, 97, 0.34);
          box-shadow: 0px 0px 20px rgba(255, 111, 97, 0.34);
}

.btnBasket--circ:hover .btnBasket__ic {
  fill: var(--color-primary);
}

.btnBasket--circ:hover strong {
  color: var(--color-primary);
}

.search-toggle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 38px;
  width: 38px;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  text-align: center;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.search-toggle svg {
  display: block;
  width: 50%;
  height: 50%;
  fill: #fff;
  -webkit-transition: fill 0.3s;
  -o-transition: fill 0.3s;
  transition: fill 0.3s;
}

.search-toggle:hover {
  background-color: transparent;
}

.search-toggle:hover svg {
  fill: var(--color-primary);
}

/*btn-filter*/

.btn-filter {
  --height: 55px;
  --fz: 14px;
  --colorText: #272727;
  --colorTone: #272727;
  font-weight: 600;
  text-transform: uppercase;
  background-color: transparent;
  border: 1px solid var(--colorTone);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-filter:hover {
  background-color: var(--colorTone);
  color: #fff;
}

.btn-filter svg {
  margin-left: 0.5em;
  width: 1.64286em;
  height: 1.35714em;
  fill: currentColor;
  -webkit-transition: fill 0.3s;
  -o-transition: fill 0.3s;
  transition: fill 0.3s;
}

/*v-up*/

.v-up {
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 155px;
  z-index: 250;
  width: 77px;
  height: 77px;
  background-color: var(--color-primary);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: background-color 0.3s, opacity 0.3s;
  -o-transition: background-color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, opacity 0.3s;
}

.v-up.active {
  opacity: 1;
  pointer-events: all;
}

.v-up:hover {
  background-color: var(--color-secondary);
}

.v-up:hover::before,
.v-up:hover::after {
  background-color: #fff;
}

.v-up::before,
.v-up::after {
  content: "";
  position: absolute;
  top: 60%;
  left: 40%;
  width: 35%;
  height: 7%;
  background-color: #fff;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.v-up::before {
  border-radius: 0px 3px 3px 0;
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.v-up::after {
  margin-left: -15.4%;
  border-radius: 3px 0 0 3px;
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*==================== COMON BLOCKS ====================*/

/*application block*/

.application-b {
  --air-l: 30px;
  --air-b: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 75px 0 0;
}

.application-b h1,
.application-b h2,
.application-b h3 {
  text-align: left;
}

.application-b__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 calc(var(--air-b) * -1) calc(var(--air-l) * -1);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.application-b__application-f,
.application-b__map {
  margin: 0 0 var(--air-b) var(--air-l);
  word-wrap: break-word;
}

.application-b__application-f {
  width: calc(100% / var(--column) * 5.5 - var(--air-l));
}

.application-b__application-f .b-input__input {
  max-width: none;
}

.application-b__map {
  width: calc(100% / var(--column) * 6 - var(--air-l));
  height: 380px;
}

.application-b__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/*application form*/

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

.application-f__submit {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin: 34px auto 0;
}

/*availability-label*/

.availability-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-weight: 600;
}

.availability-label::before {
  content: "";
  display: inline-block;
  margin-right: 0.5em;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: contain;
}

.availability-label--available {
  color: var(--basick-green);
}

.availability-label--available::before {
  background-image: url(./../../img/icons/sprite.svg#availability_yes);
}

.availability-label--find {
  color: var(--basick-birch);
}

.availability-label--find::before {
  background-image: url(./../../img/icons/sprite.svg#availability_find);
}

.availability-label--no {
  color: var(--color-primary);
}

.availability-label--no::before {
  background-image: url(./../../img/icons/sprite.svg#availability_no);
}

/*articlesLaw-b*/

.articlesLaw-b__text {
  margin-bottom: 1.5em;
  font-size: 18px;
  line-height: 1.38889;
}

.articlesLaw-b__text p {
  margin-bottom: 1.38889em;
}

.articlesLaw-b__text p:nth-last-of-type(1) {
  margin-bottom: 0;
}

.articlesLaw-b__articles {
  font-size: 14px;
  line-height: 1.78571;
}

.articlesLaw-b__articles h2,
.articlesLaw-b__articles h3 {
  margin-top: 2.5em;
  font-weight: 600;
}

.articlesLaw-b__articles h2:nth-of-type(1),
.articlesLaw-b__articles h3:nth-of-type(1) {
  margin-top: 0;
}

.articlesLaw-b ol {
  list-style: none;
  counter-reset: li;
}

.articlesLaw-b ol li::before {
  counter-increment: li;
  content: counters(li, ".") ". ";
}

.articlesLaw-b ul li {
  list-style-position: inside;
}

.articlesLaw-b ul li::marker {
  content: "- ";
}

/*Главное меню*/

.bread-crumb {
  padding: 30px 0 20px;
}

.bread-crumb__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 12px;
  line-height: 1.25;
  text-transform: uppercase;
  color: #7d7d7d;
}

.bread-crumb__item {
  position: relative;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

a.bread-crumb__item {
  margin-right: 1.66667em;
}

a.bread-crumb__item::before {
  content: ">";
  position: absolute;
  top: 50%;
  left: calc(100% + 6px);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

a.bread-crumb__item:hover {
  color: var(--color-primary);
}

/*catalogMenu*/

.catalogMenu {
  position: relative;
  z-index: 5;
  padding: 23px 0 31px 25px;
  background-color: #fcfcfc;
}

.catalogMenu__title {
  margin-bottom: 1em;
  font-weight: 600;
  font-size: 18px;
}

.catalogMenu ul {
  position: relative;
  font-size: 15px;
  background-color: #fcfcfc;
}

.catalogMenu ul li > span,
.catalogMenu ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1em 0.93333em 1em 0;
}

.catalogMenu ul li > span:hover,
.catalogMenu ul a:hover {
  color: var(--color-primary);
}

.catalogMenu ul li > span svg,
.catalogMenu ul a svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 10px;
  width: 0.6875em;
  height: 1.25em;
  fill: var(--color-primary);
}

.catalogMenu ul li:not(.open) {
  /*2-ой уровень меню*/
}

.catalogMenu ul li:not(.open):hover ul {
  opacity: 1;
  pointer-events: all;
}

.catalogMenu ul li:not(.open) ul {
  position: absolute;
  top: 0;
  left: 100%;
  padding: 10px;
  min-width: 270px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1), inset 0px 10px 10px -10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1), inset 0px 10px 10px -10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  min-height: 100%;
}

.catalogMenu ul li:not(.open) ul li > span,
.catalogMenu ul li:not(.open) ul a {
  padding: 10px;
}

.catalogMenu ul li.open {
  padding-bottom: 1.5625em;
}

.catalogMenu ul li.open > span,
.catalogMenu ul li.open > a {
  padding: 0.3em 1.5625em 0.3em 0;
  color: var(--color-primary);
}

.catalogMenu ul li.open ul li > span,
.catalogMenu ul li.open ul a {
  padding: 0.46667em 1.66667em 0.4em 0.8em;
  font-size: 0.9375em;
}

.catalogMenu ul li.active > span,
.catalogMenu ul li.active > a {
  color: var(--color-primary);
}

/*category links*/

.catalogLinks-b {
  padding: 48px 0 100px;
  font-weight: 500;
  line-height: 1.25;
}

.catalogLinks-b__row {
  --air-l: 31px;
  --air-b: 38px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.catalogLinks-b__link {
  position: relative;
  text-transform: uppercase;
  overflow: hidden;
  width: calc(100% / var(--column) * 6 - var(--air-l));
  -webkit-box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.catalogLinks-b__link::before {
  content: "";
  display: block;
  padding-bottom: 60.21127%;
}

.catalogLinks-b__link:hover {
  -webkit-box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.15);
}

.catalogLinks-b__link:hover .catalogLinks-b__link-bg img {
  -webkit-filter: saturate(1.1);
          filter: saturate(1.1);
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.catalogLinks-b__link-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.catalogLinks-b__link-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-transform 0.5s, -webkit-filter 0.5s;
  transition: -webkit-transform 0.5s, -webkit-filter 0.5s;
  -o-transition: transform 0.5s, filter 0.5s;
  transition: transform 0.5s, filter 0.5s;
  transition: transform 0.5s, filter 0.5s, -webkit-transform 0.5s, -webkit-filter 0.5s;
}

.catalogLinks-b__link-text {
  position: absolute;
  left: 50%;
  bottom: 25px;
  display: block;
  padding: 0.8125em 1.9375em;
  width: 80%;
  text-align: center;
  background-color: #fff;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.catalogLinks-b__link-arr {
  display: none;
  position: absolute;
  top: 50%;
  right: 22.7px;
  width: 0.78571em;
  height: 1.5em;
  fill: var(--color-primary);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*company description*/

.companyDesc-b__item {
  margin-top: 90px;
}

.companyDesc-b__item:first-child {
  margin-top: 0;
}

.companyDesc-b__item:nth-child(even) .companyDesc-b__itemRow {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.companyDesc-b__item .companyDesc-b__itemRow {
  --air-b: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 calc(var(--air-b) * -1) calc(var(--air-l) * -1);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.companyDesc-b__item .companyDesc-b__itemTextBox,
.companyDesc-b__item .companyDesc-b__itemImgBox {
  margin: 0 0 var(--air-b) var(--air-l);
  word-wrap: break-word;
}

.companyDesc-b__item .companyDesc-b__itemTextBox {
  width: calc(100% / var(--column) * 7 - var(--air-l));
}

.companyDesc-b__item .companyDesc-b__itemTextBox a {
  color: var(--color-primary);
}

.companyDesc-b__item .companyDesc-b__itemTextBox a:hover {
  text-decoration: underline;
}

.companyDesc-b__item .companyDesc-b__itemImgBox {
  width: calc(100% / var(--column) * 5 - var(--air-l));
}

.companyDesc-b__item h1,
.companyDesc-b__item h2,
.companyDesc-b__item h3 {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.23077;
  text-transform: uppercase;
}

.companyDesc-b__item--type-2 {
  margin-top: 78px;
}

.companyDesc-b__item--type-2 .companyDesc-b__itemRow {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.companyDesc-b__item--type-2 .companyDesc-b__itemTextBox > * {
  margin-top: 1.8em;
}

.companyDesc-b__item--type-2 .companyDesc-b__itemTextBox > *:first-child {
  margin-top: 0;
}

.companyDesc-b__item--type-2 .companyDesc-b__itemTextBox p + ul {
  margin-top: 0.4em;
}

/*filters-f*/

.filters-f {
  --air-l: 22px;
  --air-b: 10px;
  font-size: 12px;
  color: #5a5a5a;
}

.filters-f__item {
  margin: 0 0 var(--air-b) var(--air-l);
  word-wrap: break-word;
  width: calc(100% / var(--column) * 3 - var(--air-l));
}

.filters-f__item.slider-from-to {
  min-width: 230px;
}

.filters-f__btns {
  --air-l: 15px;
  --air-b: 10px;
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.filters-f__btns button {
  min-width: 180px;
  height: 32px;
  font-size: 12px;
}

/*filters*/

.filters {
  font-weight: 300;
  color: #000;
}

.filters-wrap {
  position: relative;
  padding-bottom: 34px;
  background-color: #fff;
}

.filters-wrap .btn-filter {
  --colorText: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: none;
  margin-bottom: 10px;
  width: 100%;
  background-color: var(--colorTone);
}

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

.filters__section {
  margin: 32px 0 30px;
}

.filters__title {
  margin-bottom: 1.3125em;
  color: var(--color-secondary);
  font-weight: 500;
}

.js-tree-menu__item--open .filters-menu__head {
  padding-bottom: 1em;
  color: var(--color-primary);
}

.js-tree-menu__item--open .filters-menu__submenu {
  margin-bottom: 20px;
}

.filters-menu__item {
  border-bottom: 2px solid var(--color-secondary);
}

.filters-menu__head {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 1.0625em 0 0.625em;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.filters-menu__arr {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  height: 10px;
  width: 15px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.js-tree-menu__item--open .filters-menu__arr {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.filters-menu__arr svg {
  max-height: 100%;
  fill: currentColor;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.filters-menu__submenu {
  max-height: 370px;
  font-size: 14px;
  overflow: auto;
}

.filters-menu__submenu > li {
  padding-bottom: 1.6875em;
  max-height: 300px;
  overflow: auto;
}

.filters-menu__submenu > li > * {
  margin-bottom: 1em;
}

.filters-menu__submenu > li > *:last-child {
  margin-bottom: 0;
}

.filters-menu .b-checkbox {
  display: block;
  color: #c4c4c4;
}

.filters__buttons {
  display: none;
  row-gap: 12px;
  margin-top: 33px;
}

.filters__buttons button {
  --height: 40px;
  --fz: 14px;
  margin: 0 auto;
  min-width: 200px;
}

.filters__submit {
  font-weight: 700;
  text-transform: uppercase;
}

/*filter product*/

.filter-prod {
  font-size: 12px;
}

.filter-prod__list {
  --air-l: 1.75em;
  --air-b: 1.25em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 calc(var(--air-b) * -1) calc(var(--air-l) * -1);
}

.filter-prod__item {
  cursor: pointer;
  margin: 0 0 var(--air-b) var(--air-l);
  word-wrap: break-word;
  width: calc(100% / var(--column) * 3 - var(--air-l));
  padding: 5px 16px;
  min-height: 4.41667em;
  display: inline-block;
  color: #272727;
  background: #fff;
  border: 1px solid var(--color-primary);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.filter-prod__item:last-child {
  margin-right: 0;
}

.filter-prod__item.active {
  background-color: var(--color-primary);
}

.filter-prod__item.active,
.filter-prod__item.active span {
  color: #fff;
}

.filter-prod__item:not(.active):hover {
  background-color: rgba(196, 196, 196, 0.2);
}

.filter-prod__item span {
  font-weight: 500;
  color: var(--color-primary);
}

/*delivery info*/

.deliveryInfo-b__text {
  font-size: 18px;
  line-height: 1.22222;
  text-align: center;
  text-transform: uppercase;
}

.deliveryInfo-b__methods {
  margin-top: 77px;
}

/*deliveryMethods*/

.deliveryMethods__list {
  --air-l: 0px;
  --air-b: 0px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.deliveryMethods__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% / var(--column) * 4 - var(--air-l));
  padding: 20px 20px 38px;
  min-height: 188px;
  font-size: 18px;
  text-align: center;
  line-height: 1.22222;
  outline: 1px solid #eeeeee;
}

.deliveryMethods__item-title {
  margin-top: 20px;
  font-weight: 600;
}

.deliveryMethods__item-text {
  margin: auto 0;
  color: #7d7d7d;
}

/*defaultText*/

.defaultText {
  font-size: 18px;
  line-height: 1.94444;
}

.defaultText h1,
.defaultText h2,
.defaultText h3 {
  margin: 2.77778em 0 2.5em;
}

.defaultText p,
.defaultText ul,
.defaultText ol {
  margin: 2.33333em 0;
}

.defaultText > h1:first-child,
.defaultText >
  h2:first-child,
.defaultText >
  h3:first-child,
.defaultText >
  h4:first-child,
.defaultText >
  h5:first-child,
.defaultText >
  div:first-child,
.defaultText >
  p:first-child,
.defaultText >
  ul:first-child,
.defaultText >
  ol:first-child {
  margin-top: 0;
}

.defaultText > h1:last-child,
.defaultText >
  h2:last-child,
.defaultText >
  h3:last-child,
.defaultText >
  h4:last-child,
.defaultText >
  h5:last-child,
.defaultText >
  div:last-child,
.defaultText >
  p:last-child,
.defaultText >
  ul:last-child,
.defaultText >
  ol:last-child {
  margin-bottom: 0;
}

/*fag block*/

.faq-b h1,
.faq-b h2,
.faq-b h3 {
  margin-bottom: 1.91667em;
}

/*grid gallery*/

.gridGallery-b__list {
  --air-l: 23px;
  --air-b: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 calc(var(--air-b) * -1) calc(var(--air-l) * -1);
}

.gridGallery-b__img {
  position: relative;
  margin: 0 0 var(--air-b) var(--air-l);
  word-wrap: break-word;
  width: calc(100% / var(--column) * 3 - var(--air-l));
  display: block;
  overflow: hidden;
  -webkit-box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.gridGallery-b__img:hover {
  -webkit-box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.15);
}

.gridGallery-b__img::before {
  content: "";
  display: block;
  padding-bottom: 63.13869%;
}

.gridGallery-b__img img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.gallery {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 600px;
  width: 100%;
}

.gallery__thumbsWrap {
  position: absolute;
  inset: 0 auto 0 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 97px;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.gallery__thumbs {
  height: 100%;
}

.gallery__thumbs-item {
  cursor: pointer;
  position: relative;
  display: inline-block;
  height: auto;
}

.gallery__thumbs-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border: 2px solid transparent;
  -webkit-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.gallery__thumbs-item.swiper-slide-thumb-active::before {
  border-color: var(--color-primary);
}

.gallery__thumbs-item img {
  max-height: 100%;
}

.gallery__sliderWrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  margin-left: 118px;
}

.gallery__slider-slide {
  position: relative;
  overflow: hidden;
}

.gallery__slider-slide::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.gallery__slider-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.gallery__slider-slide img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.gallery__fullScreenBtn {
  position: absolute;
  top: 27px;
  right: 16px;
  padding: 0.71429em 1.78571em 0.71429em 0.78571em;
  font-size: 14px;
  color: #7d7d7d;
  background-color: rgba(255, 255, 255, 0.54);
  border-radius: 100px;
}

.gallery__fullScreenBtn-ic {
  display: inline-block;
  margin-right: 0.35714em;
  width: 0.96429em;
  height: 1em;
}

.gallery__fullScreenBtn-ic svg {
  max-height: 100%;
  fill: currentColor;
}

.gallery .slider-nav {
  display: none;
  position: static;
  z-index: 5;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.gallery .slider-arr {
  --color-arr: rgba(255, 255, 255, 0.37);
  --color-border: rgba(255, 255, 255, 0.37);
  position: absolute;
  top: 0;
  z-index: 5;
  width: 50px;
  height: 100%;
  fill: rgba(255, 255, 255, 0.37);
}

.gallery .slider-arr.swiper-button-disabled {
  pointer-events: all;
}

.gallery .slider-arr svg {
  width: 31px;
  height: 31px;
}

.gallery .slider-arr--prev {
  left: 0px;
}

.gallery .slider-arr--prev svg {
  margin-right: 3px;
  margin-left: auto;
}

.gallery .slider-arr--next {
  right: 0px;
}

.gallery .slider-arr--next svg {
  margin-right: 3px;
  margin-left: auto;
}

/*firm info*/

.firm-info {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.firm-info__ic {
  display: inline-block;
  margin-right: 0.25em;
  max-width: 20px;
  max-height: 20px;
  fill: var(--color-primary);
}

.firm-info--work .firm-info__ic {
  max-height: 2.17647em;
  max-width: 2.17647em;
  margin-right: -1.42857em;
}

.firm-info--loc .firm-info__ic {
  margin-top: -0.14286em;
  max-height: 1.5em;
  max-width: 1.25em;
}

.firm-info--mail .firm-info__ic,
.firm-info--clock .firm-info__ic {
  margin-right: 0.5em;
  max-height: 1.14286em;
  max-width: 1.14286em;
}

.firm-info--mai .firm-info__ic {
  margin-right: 0.64286em;
}

.fullScreenSlider {
  margin: 0 auto;
  width: calc(100% - 178px);
}

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

.fullScreenSlider__slide::before {
  content: "";
  display: block;
  padding-bottom: 56.34675%;
}

.fullScreenSlider__slide img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*general slider settings*/

.slider-wrap {
  position: relative;
}

.slider-nav {
  position: absolute;
  top: 50%;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.slider-nav .swiper-button-lock {
  display: none !important;
}

.slider-arr {
  width: 50px;
  height: 50px;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.slider-arr.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.slider-arr--prev {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}

.slider-pagination {
  display: block;
  z-index: 2;
  margin-top: 40px;
  padding-left: 30px;
  padding-right: 30px;
  max-width: 100%;
  text-align: center;
}

.slider-pagination.swiper-pagination-lock {
  display: none !important;
}

.slider-pagination .swiper-pagination-bullet {
  margin: 0 15px 7px 0;
  width: 9px;
  height: 9px;
  background: #f2e7dc;
  opacity: 1;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.slider-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}

.slider-pagination .swiper-pagination-bullet:hover {
  background-color: var(--color-primary);
}

.slider-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*sort block*/

.sort-f {
  margin: 37px 0 32px;
  padding: 10px 30px;
  font-size: 14px;
  line-height: 1.21429;
  color: #a6a7a7;
  background-color: #fcfcfc;
  border-radius: 100px;
}

.sort-f__row {
  --air-l: 7px;
  --air-b: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 calc(var(--air-b) * -1) calc(var(--air-l) * -1);
}

.sort-f__row > * {
  margin: 0 0 var(--air-b) var(--air-l);
  word-wrap: break-word;
}

/*table details*/

.tableDetails {
  border: 1px solid #eeeeee;
}

.tableDetails__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 8px 10px 25px;
  min-height: 72px;
  border-bottom: 1px solid #eeeeee;
}

.tableDetails__row:last-child {
  border-bottom: none;
}

.tableDetails__row-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 7px;
  word-break: break-word;
}

.tableDetails--small .tableDetails__row {
  min-height: 52px;
}

.tableWrap {
  overflow: auto;
}

.tableWrap table {
  word-break: break-word;
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  min-width: 775px;
  text-align: center;
  border-left: 1px solid #eeeeee;
  border-top: 1px solid #eeeeee;
}

.tableWrap table td,
.tableWrap table th {
  padding: 10px 7px;
  border-bottom: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
}

/*product*/

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

.product__details {
  margin-left: 5.89744%;
}

.product__details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.product__details .tableDetails {
  margin-bottom: 31px;
}

.product__details .tableDetails__row-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.product__availability {
  font-size: 14px;
  line-height: 1.78571;
}

.product__article {
  line-height: 1.25;
}

.product__article-val {
  color: #727272;
}

.product__price {
  font-size: 18px;
}

.product__price .old_price {
  font-weight: 500;
  font-size: 0.8em;
  color: #7d7d7d !important;
}

.product__price-val {
  font-weight: 700;
  font-size: 1.33333em;
  color: var(--color-primary);
}

.product__price-unit {
  color: #cecece;
}

.product__quantity {
  --air-l: 24px;
  --air-b: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 31px;
  font-size: 18px;
}

.product__quantity p {
  font-weight: 500;
  font-size: 14px;
}

.product__btns {
  --air-l: 21px;
  --air-b: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 calc(var(--air-b) * -1) calc(var(--air-l) * -1);
}

.product__toBasket,
.product__buy {
  margin: 0 0 var(--air-b) var(--air-l);
  word-wrap: break-word;
  min-width: 192px;
}

.product__buy {
  text-transform: uppercase;
}

.product__specific {
  margin-top: 31px;
}

.product__specific-item {
  font-weight: 500;
  font-size: 14px;
  line-height: 2.14286;
}

.product__specific-item p span {
  font-weight: 400;
}

.product__hint {
  margin-top: 31px;
  padding: 18px 35px;
  font-size: 14px;
  line-height: 1.42857;
  background-color: #fbfbfb;
}

.product__hint strong {
  font-weight: 600;
}

.product__tabs {
  margin-top: 69px;
}

.product__tabs .tableDetails__row-col:first-child {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 33.49282%;
  font-weight: 600;
}

.product__tabs .defaultText {
  font-size: 16px;
}

/*panel block*/

.panel-b {
  /*producers-b*/
  /*products block*/
}

.panel-b__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 calc(var(--air-b) * -1) calc(var(--air-l) * -1);
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.panel-b__sidebar,
.panel-b__content {
  margin: 0 0 var(--air-b) var(--air-l);
  word-wrap: break-word;
}

.panel-b__sidebar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 300px;
}

.panel-b__sidebar .catalogMenu + .filters-wrap {
  margin-top: 54px;
}

.panel-b__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.panel-b .producers-b .producerCard {
  width: calc(100% / var(--column) * 3 - var(--air-l));
}

.panel-b .products-b .productCard {
  width: calc(100% / var(--column) * 4 - var(--air-l));
}

/*producers block*/

.producers-b__row {
  --air-l: 22px;
  --air-b: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 calc(var(--air-b) * -1) calc(var(--air-l) * -1);
}

.producers-b .producerCard {
  margin: 0 0 var(--air-b) var(--air-l);
  word-wrap: break-word;
  width: calc(100% / var(--column) * 3 - var(--air-l));
}

/*products block*/

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

.products-b .filter-prod {
  margin-bottom: 30px;
}

.products-b .btn-filter {
  display: none;
  margin: 15px 0 30px;
}

.products-b__list {
  --air-l: 25px;
  --air-b: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 calc(var(--air-b) * -1) calc(var(--air-l) * -1);
}

.products-b .productCard {
  margin: 0 0 var(--air-b) var(--air-l);
  word-wrap: break-word;
  width: calc(100% / var(--column) * 3 - var(--air-l));
}

.products-b .pagination {
  padding: 53px 0 0;
}

.producerCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 10px 13px;
  font-size: 12px;
  line-height: 1.25;
  color: #272727;
  text-transform: uppercase;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  -webkit-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.producerCard:hover {
  border-color: var(--color-primary);
}

.producerCard__img {
  position: relative;
  margin: 0 auto auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 85%;
  width: 100%;
  height: 39px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.producerCard__img::before {
  content: "";
  display: block;
  padding-bottom: 22.74052%;
}

.producerCard__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: 100%;
  max-width: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.producerCard__name {
  margin-top: 0.75em;
}

/*products slider*/

.productsSlider-b {
  padding: 62px 0 105px;
  background-color: #fbfbfb;
  overflow: hidden;
}

.productsSlider-b h1,
.productsSlider-b h2,
.productsSlider-b h3 {
  margin-bottom: 65px;
}

.productsSlider-b .productsSlider {
  margin: -27px 0 -60px;
  overflow: visible;
}

.productsSlider {
  --pd: 60px;
  padding: var(--pd) 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.productsSlider__slide {
  height: auto;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s !important;
  transition: opacity 0.3s, -webkit-transform 0.3s !important;
  -o-transition: opacity 0.3s, transform 0.3s !important;
  transition: opacity 0.3s, transform 0.3s !important;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s !important;
}

.productsSlider__slide:not(.swiper-slide-visible) {
  opacity: 0.6;
}

.productCard {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.productCard > form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.productCard__img {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

.productCard__img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.productCard__img img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.productCard__textBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px 23px 45px;
}

.productCard__availabilityWrap {
  --air-l: 7px;
  --air-b: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 calc(var(--air-b) * -1) calc(var(--air-l) * -1);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 13px;
  font-size: 14px;
  color: #a9a9a9;
}

.productCard__availabilityWrap > div {
  margin: 0 0 var(--air-b) var(--air-l);
  word-wrap: break-word;
}

.productCard__name {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5625;
  text-transform: uppercase;
}

.productCard__desc {
  margin-bottom: auto;
  font-weight: 500;
  font-size: 14px;
  line-height: 2.14286;
}

.productCard__desc-item span {
  font-weight: 400;
}

.productCard__price {
  margin: 0.875em 0 1.20833em;
}

.productCard__price-inner {
  --air-l: 12px;
  --air-b: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 calc(var(--air-b) * -1) calc(var(--air-l) * -1);
}

.productCard__price-val,
.productCard__price-old {
  margin: 0 0 var(--air-b) var(--air-l);
  word-wrap: break-word;
}

.productCard__price-val {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.20833;
  text-align: center;
  color: var(--color-primary);
}

.productCard__price-old {
  font-weight: 500;
  font-size: 18px;
  color: #7d7d7d;
}

.productCard__toBasket,
.productCard__buy {
  width: 100%;
}

.productCard__buy {
  margin-top: 12px;
}

/*products labels*/

.productLabels {
  --air-l: 13px;
  --air-b: 10px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 2;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 calc(var(--air-b) * -1) calc(var(--air-l) * -1);
}

.productLabels .productLabel {
  margin: 0 0 var(--air-b) var(--air-l);
  word-wrap: break-word;
}

/*productLabel*/

.productLabel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 66px;
  height: 66px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.22222;
  color: #fff;
  text-transform: uppercase;
  background-color: var(--basick-orange);
  overflow: hidden;
}

.productLabel--stock {
  font-size: 14px;
  line-height: 1.21429;
  background-color: var(--color-primary);
}

.productLabel--new {
  background-color: var(--basick-green);
}

/*pagination*/

.pagination {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 0 30px;
  row-gap: 10px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}

.pagination .page-item {
  margin: 0 0.2em;
}

.pagination .page-item:hover:not(.disabled) a,
.pagination .page-item.active a {
  font-weight: 600;
  color: var(--color-primary);
}

.pagination .page-item:last-child,
.pagination .page-item:first-child {
  margin-bottom: -0.3125em;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.pagination .page-item:last-child svg,
.pagination .page-item:first-child svg {
  width: 1em;
  height: 1em;
  color: var(--basick-white);
  fill: var(--color-primary);
}

.pagination .page-item:last-child:hover,
.pagination .page-item:first-child:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.pagination .page-item.disabled {
  pointer-events: none;
}

.pagination .page-item.disabled svg {
  fill: #a6a7a7;
}

.pagination .page-item:first-child {
  margin-right: 0.83333em;
}

.pagination .page-item:first-child svg {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}

.pagination .page-item:last-child {
  margin-left: 0.83333em;
}

.pagination a {
  display: inline-block;
  min-width: 1.04167em;
  height: 1.20833em;
  color: #c4c4c4;
  line-height: 1.20833em;
  text-align: center;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

/*paymentInfo*/

.paymentInfo-b__text {
  font-size: 18px;
  line-height: 1.21429;
  text-transform: uppercase;
  text-align: center;
}

.paymentInfo-b__text > * {
  margin-top: 1.55556em;
}

.paymentInfo-b__text > *:first-child {
  margin-top: 0;
}

.paymentInfo-b p,
.paymentInfo-b ul {
  line-height: 1.66667;
  text-transform: none;
  color: #7d7d7d;
}

.paymentInfo-b p + ul {
  margin-top: 0;
}

.paymentInfo-b__methods {
  margin-top: 68px;
}

.reviews-b {
  padding: 72px 0 69px;
  background-color: #fbfbfb;
}

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

.reviews-b__row {
  --air-b: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 calc(var(--air-b) * -1) calc(var(--air-l) * -1);
}

.reviews-b .reviewsCard {
  margin: 0 0 var(--air-b) var(--air-l);
  word-wrap: break-word;
  width: calc(100% / var(--column) * 6 - var(--air-l));
}

.reviews-b__more {
  margin: 55px auto 0;
}

/*reviewsCard*/

.reviewsCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 31px 17px 15px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
}

.reviewsCard__row {
  --air-b: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 calc(var(--air-b) * -1) calc(var(--air-l) * -1);
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: auto;
}

.reviewsCard__imgBox,
.reviewsCard__textBox {
  margin: 0 0 var(--air-b) var(--air-l);
  word-wrap: break-word;
}

.reviewsCard__imgBox {
  min-width: 170px;
  text-align: center;
}

.reviewsCard__img {
  margin: 0 auto;
  width: 112px;
  height: 112px;
}

.reviewsCard__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.reviewsCard__requesites {
  margin-top: 0.97222em;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.27778;
}

.reviewsCard__textBox {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
  font-size: 14px;
  line-height: 1.64286;
}

.reviewsCard__more {
  margin: 8px 0 0 auto;
}

/*replacement-f*/

.replacement-f {
  padding-top: 59px;
}

.replacement-f h1,
.replacement-f h2,
.replacement-f h3 {
  margin-bottom: 2.08333em;
}

.replacement-f__inputs {
  margin: 0 auto;
  max-width: 535px;
}

.replacement-f .b-input__input {
  max-width: none;
}

.replacement-f__submit {
  margin: 28px auto 0;
}

/*sci*/

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

.sci__link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  margin-left: 7px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.sci__link:not(.sci__link--phone):hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.sci__link:first-child {
  margin-left: 0;
}

.sci__link--phone {
  position: relative;
  margin-left: 0.8125em;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  height: auto;
}

.sci__link--phone::before {
  content: "";
  position: absolute;
  bottom: -10%;
  left: 50%;
  display: block;
  height: 1px;
  width: 0;
  opacity: 0;
  background-color: #b7b000;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: width 0.3s, opacity 0s 0.3s;
  -o-transition: width 0.3s, opacity 0s 0.3s;
  transition: width 0.3s, opacity 0s 0.3s;
}

.sci__link--phone:hover::before {
  opacity: 1;
  width: 100%;
  -webkit-transition: width 0.3s, opacity 0s;
  -o-transition: width 0.3s, opacity 0s;
  transition: width 0.3s, opacity 0s;
}

.sci__link svg {
  display: block;
  width: 27.5px;
  height: 27.5px;
}

.sci__hint {
  font-size: 0.875em;
  color: #a6a7a7;
}

.selectWrap {
  display: inline-block;
  overflow: hidden;
  background-image: url(./../../img/icons/arr-tr-down.png);
  background-repeat: no-repeat;
  background-position: right 5px center;
}

.selectWrap select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  padding: 0 20px 0 0;
  height: 100%;
  width: 100%;
  font-size: inherit;
  font-family: inherit;
  background-color: transparent;
}

.similarProducts-b {
  padding: 63px 0 105px;
  background-color: #fbfbfb;
  overflow: hidden;
}

.similarSlider {
  margin: -27px 0 -60px;
  padding: 60px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: visible;
}

/*sci link*/

.sci-link {
  display: inline-block;
  height: 30px;
  width: 30px;
}

.sci-link object {
  pointer-events: none;
}

.sci-link svg,
.sci-link img {
  max-height: 100%;
  max-width: 100%;
}

/*search panel*/

.search-panel {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.search-panel__container {
  height: 100%;
  padding: 0;
}

.search-panel__inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid var(--color-primary);
  overflow: hidden;
  background-color: #fff;
}

.search-panel input {
  padding-top: 2px;
  padding-right: 3.5em;
  padding-left: 0.75em;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.search-panel button {
  position: absolute;
  top: 0;
  right: 0;
  margin: 2px 0;
  width: 2.75em;
  height: calc(100% - 4px);
}

.search-panel button svg {
  width: 1.25em;
  height: 100%;
  fill: var(--color-primary);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.search-panel button:hover svg {
  fill: #eae100;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

/*main slider*/

.mainSlider {
  font-size: 24px;
}

.mainSlider__slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 660px;
  overflow: hidden;
}

.mainSlider__slide-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mainSlider__slide-bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.mainSlider__slide-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mainSlider__slide-textBox {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 3.75em 4.58333em 3.54167em 0;
  height: 100%;
  width: 62.47863%;
  line-height: 1.45833;
}

.mainSlider__slide-textBox::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 1000%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: skewX(-12deg);
      -ms-transform: skewX(-12deg);
          transform: skewX(-12deg);
}

.mainSlider__slide-textBox h1,
.mainSlider__slide-textBox h2 {
  margin-bottom: 0.21429em;
  font-size: 1.75em;
  line-height: 1.42857;
  font-weight: 500;
  text-transform: uppercase;
}

.mainSlider__slide-textBox P {
  color: #595959;
}

.mainSlider__slide-textBox > * {
  margin-top: 1.08333em;
}

.mainSlider__slide-textBox > *:first-child {
  margin-top: 0;
}

.mainSlider__slide-textBox .btnGo {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 3.5625em 0 0;
}

.mainSlider__slide-textBox .btnGo + .btnGo {
  margin: 1.375em 0 0;
}

.mainSlider__paginationWrap {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.mainSlider__paginationWrap .slider-pagination {
  margin: 0;
  padding: 0;
}

.mainSlider__paginationWrap .slider-pagination .swiper-pagination-bullet {
  display: block;
  margin: 10.6px 0 10.6px auto;
  width: 11px;
  height: 11px;
  background: rgba(255, 255, 255, 0.76);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.mainSlider__paginationWrap .slider-pagination .swiper-pagination-bullet-active {
  margin: 12.7px 0 12.7px auto;
  background: var(--color-primary);
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: scale(1.53);
      -ms-transform: scale(1.53);
          transform: scale(1.53);
}

#map {
  position: relative;
  overflow: hidden;
}

/*mobile basket btn*/

.mobile-btnBasket {
  display: none;
  position: fixed;
  z-index: 10;
  left: 30px;
  bottom: 50px;
}

/*logo*/

.logo {
  display: block;
  max-width: 220px;
}

/*hamburger*/

.hamburger {
  position: relative;
  width: 23px;
  height: 20px;
  color: var(--color-primary);
}

.hamburger span {
  top: 50%;
  display: block;
  margin-top: -2px;
  -webkit-transition: background-color 0s linear 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s;
  transition: background-color 0s linear 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s;
  -o-transition: transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s, background-color 0s linear 75ms;
  transition: transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s, background-color 0s linear 75ms;
  transition: transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s, background-color 0s linear 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s;
}

.hamburger.active span {
  -webkit-transition: background-color 0s linear 0.15s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: background-color 0s linear 0.15s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -o-transition: transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.15s;
  transition: transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.15s;
  transition: transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.15s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: transparent !important;
}

.hamburger.active span::after {
  bottom: 0;
  -webkit-transition: bottom 75ms ease-out 0.1s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: bottom 75ms ease-out 0.1s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  -o-transition: bottom 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: bottom 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: bottom 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.active span::before {
  top: 0;
  -webkit-transition: top 75ms ease-out 0.1s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: top 75ms ease-out 0.1s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  -o-transition: top 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: top 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: top 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.hamburger span,
.hamburger span::before,
.hamburger span:after {
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  border-radius: 1.5px;
}

.hamburger span::before,
.hamburger span::after {
  display: block;
  content: "";
}

.hamburger span::before {
  top: -8px;
  -webkit-transition: top 75ms ease-in 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: top 75ms ease-in 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  -o-transition: top 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: top 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: top 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

.hamburger span::after {
  bottom: -8px;
  -webkit-transition: bottom 75ms ease-in 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: bottom 75ms ease-in 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  -o-transition: bottom 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: bottom 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: bottom 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

/*illustrated Methods*/

.illustratedMethods__list {
  --air-l: 0px;
  --air-b: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 calc(var(--air-b) * -1) calc(var(--air-l) * -1);
}

.illustratedMethods__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 25px 10px 10px;
  margin: 0 0 var(--air-b) var(--air-l);
  word-wrap: break-word;
  width: calc(100% / var(--column) * 3 - var(--air-l));
  min-height: 188px;
  font-size: 18px;
  text-align: center;
  background-color: #fff;
  outline: 1px solid #eeeeee;
}

.illustratedMethods__img {
  margin: 0 auto;
  width: 86px;
  height: 86px;
}

.illustratedMethods__img svg {
  max-height: 100%;
  max-width: 100%;
}

.illustratedMethods__title {
  margin: 0.94444em 0 0;
  font-weight: 600;
  line-height: 1.22222;
}

.illustratedMethods__text {
  margin-top: 0.72222em;
  line-height: 1.22222;
  color: #7d7d7d;
}

.illustratedMethods--small .illustratedMethods__item {
  padding: 20px 10px 22px;
}

.illustratedMethods--small .illustratedMethods__img {
  width: 54px;
  height: 54px;
}

.illustratedMethods--small .illustratedMethods__title {
  margin: 0.72222em 0 0;
}

/*payment info*/

.illustratedInfo-b__row {
  --air-b: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 calc(var(--air-b) * -1) calc(var(--air-l) * -1);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.illustratedInfo-b__textBox,
.illustratedInfo-b__imgBox {
  margin: 0 0 var(--air-b) var(--air-l);
  word-wrap: break-word;
}

.illustratedInfo-b__textBox {
  width: calc(100% / var(--column) * 7 - var(--air-l));
  max-width: 600px;
}

.illustratedInfo-b__textBox h1,
.illustratedInfo-b__textBox h2,
.illustratedInfo-b__textBox h3 {
  margin: 1.66667em 0 1.33333em;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.20833;
  text-transform: uppercase;
}

.illustratedInfo-b__textBox h1:first-child,
.illustratedInfo-b__textBox h2:first-child,
.illustratedInfo-b__textBox h3:first-child {
  margin-top: 0;
}

.illustratedInfo-b__textBox > * {
  margin-top: 1em;
}

.illustratedInfo-b__textBox > *:first-child {
  margin-top: 0;
}

.illustratedInfo-b__textBox p + ul {
  margin-top: 0.4em;
}

.illustratedInfo-b__imgBox {
  width: calc(100% / var(--column) * 5 - var(--air-l));
  max-width: 435px;
}

/*illustratedLinks*/

.illustratedLinks__row {
  --air-b: 79px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.illustratedLinks__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 270px;
  width: 100%;
}

.illustratedLinks__link-ic {
  display: block;
  margin: 0 auto;
  width: 127px;
  height: 127px;
}

.illustratedLinks__link-ic svg {
  max-height: 100%;
}

.illustratedLinks__link-title {
  margin-top: 1.7em;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5625;
  text-transform: uppercase;
}

.illustratedLinks__link-btn {
  margin-top: 20px;
  width: 48px;
  height: 48px;
}

/*==================== HEADER ====================*/

header {
  position: relative;
  z-index: 10;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation: anim 0.5s;
          animation: anim 0.5s;
}

@-webkit-keyframes anim {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes anim {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.header {
  /*logo*/
  /*header top*/
  /*header bottom*/
}

.header__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__aside p {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: var(--color-primary);
}

.header__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 4.2735%;
  padding-top: 11px;
}

.header__logo {
  margin-top: 12px;
  padding: 10px 0;
  max-width: 226px;
}

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

.header__firm-info {
  margin-left: 5.29471%;
}

.header__sciLinks {
  margin-left: auto;
}

.header__sciLinks .sci-link {
  margin-right: 8px;
}

.header__sciLinks .sci-link:last-child {
  margin-right: 0;
}

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

.header__bottom .sci-link {
  display: none;
  margin-left: auto;
  width: 34px;
  height: 34px;
  border: 0.5px solid #f4f3f3;
}

.header__bottom .sci-link svg {
  margin: 0 auto;
  max-width: 58.82353%;
}

.header__bottom-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-top: -13px;
}

.header__burger .bro-menu {
  overflow: visible;
}

.header__burger .menu {
  font-size: 14px;
}

.header__burger .menu > .menu__item {
  margin-right: 6px;
}

.header__search-toggle {
  margin-right: 18px;
}

.header__search-toggle--mobile {
  display: none;
}

.header__search-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2.25em;
  z-index: 1;
  font-size: 20px;
  opacity: 0;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: center top;
      -ms-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.header__search-panel.open {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
  opacity: 1;
}

.header__search-panel .search-panel__inner {
  -webkit-box-shadow: inset 0px 20px 20px -20px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0px 20px 20px -20px rgba(0, 0, 0, 0.1);
}

.header__callback {
  --height: 2.71429em;
  --fz: 14px;
  min-width: 12.28571em;
}

.header__btnBasket {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 30px;
}

.header__hamburger {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: none;
  margin-left: 40px;
  height: 31px;
  width: 31px;
  color: var(--basick-white);
  background-color: var(--color-primary);
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.header__hamburger span {
  left: 50%;
  width: 58.06452%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header__hamburger span::before {
  top: -6px;
}

.header__hamburger span::after {
  bottom: -6px;
}

.header__hamburger.active span {
  -webkit-transform: translateX(-50%) rotate(90deg);
      -ms-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}

/*menu*/

.menu {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  /*1-ый уровень, не скрытый, горизонтальный*/
  /***********************************/
}

.menu > .menu__item {
  position: relative;
  margin-right: 10px;
}

.menu > .menu__item:first-child {
  padding-left: 0;
}

.menu > .menu__item:last-child {
  margin-right: 0;
  padding-right: 0;
}

.menu > .menu__item > .menu__link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 15px 10px 28px;
  line-height: 1.25;
  white-space: nowrap;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.menu > .menu__item > .menu__link > .menu__arr svg {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.menu > .menu__item:hover > .menu__link,
.menu > .menu__item.active > .menu__link {
  color: var(--color-primary);
}

.menu > .menu__item:hover > .menu__link .menu__arr {
  -webkit-transform: scaleY(-1);
      -ms-transform: scaleY(-1);
          transform: scaleY(-1);
}

/*==================== FOOTER ====================*/

footer {
  padding-top: 40px;
  margin-top: auto;
  font-size: 12px;
  color: #fff;
  background-color: #383838;
}

.footer {
  /*footer top*/
}

.footer__top {
  padding-bottom: 13px;
}

.footer__top-row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__top-col p {
  margin-top: 14px;
  line-height: 1.25;
}

.footer__top-col:nth-of-type(1) {
  max-width: 315px;
}

.footer__top-col:nth-of-type(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

.footer__company p {
  margin: 0 0 0 12px;
  line-height: 1.55;
}

.footer__logo {
  max-width: 70px;
}

.footer__sci {
  margin-top: 16px;
  font-size: 14px;
}

.footer__category {
  line-height: 1.83333;
}

.footer__category a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__category a:hover,
.footer__category li.active span {
  color: var(--color-primary);
}

.footer__menu {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -0.53571em;
  font-size: 14px;
  line-height: 1.21429;
}

.footer__menu > .menu__item > .menu__link {
  padding: 0 0.53571em;
}

.footer__links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1.58333em;
  line-height: 1.3;
}

.footer__links li {
  margin-right: 1.83333em;
}

.footer__links a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__links a:hover,
.footer__links li.active span {
  color: var(--color-primary);
}

.footer__firmInfoBox {
  display: -ms-inline-grid;
  display: inline-grid;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 1.07143em;
     -moz-column-gap: 1.07143em;
          column-gap: 1.07143em;
  row-gap: 2.33333em;
  margin-top: 1.57143em;
  font-size: 14px;
}

.footer__sciLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.16667em;
}

.footer__sciLinks .sci-link {
  margin-left: auto;
}

.footer__bottom {
  padding: 11px 0;
  background-color: #343434;
  font-size: 12px;
  line-height: 1.25;
}

.footer__bottom-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__bottom .ArtBro {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  color: var(--color-primary);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*==================== INDEX PAGE ====================*/

.index-pg .content-wrap {
  padding-top: 0;
}

/*==================== CATALOG ====================*/

.catalog-pg .filters-f {
  margin-bottom: 40px;
}

/*==================== BASKET ====================*/

.basket-pg .basket-table {
  margin-bottom: 19px;
}

.basket-pg .products-slider-b {
  margin-top: 130px;
}

/*basket form*/

.basket-f__bottom {
  --air-l: 20px;
  --air-b: 15px;
  font-size: 14px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.basket-f__bottom-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.basket-f__minCost {
  padding: 12px 7px 13px;
  min-width: 277px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: var(--color-primary);
}

.basket-f__reset-btn,
.basket-f__submit-btn {
  min-width: 194px;
}

.basket-f__submit-btn {
  font-weight: 700;
  text-transform: uppercase;
}

/*basket info*/

.basket-table {
  font-size: 12px;
  border: 1px solid #c4c4c4;
}

.basket-table__row {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.basket-table__row > div {
  padding: 0 5px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.basket-table__head {
  padding: 1.16667em 20px 1.16667em 35px;
  line-height: 1.25;
  text-transform: uppercase;
  background-color: #eeeeee;
}

.basket-table__body {
  padding: 0 20px 0 35px;
}

.basket-table__body .basket-table__row {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding-bottom: 1.5em;
}

.basket-table__body .basket-table__row > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 5px 20px;
  border-right: 1px solid #eeeeee;
}

.basket-table__body .basket-table__row > div:last-child {
  border-right: 0;
}

.basket-table__body .basket-table__row:last-child {
  padding-bottom: 0;
}

.basket-table__body .basket-table__name {
  text-align: left;
}

.basket-table__body .basket-table__name p {
  margin-bottom: 0.91667em;
  line-height: 1.5;
  word-wrap: break-word;
}

.basket-table__body .basket-table__name a {
  display: inline-block;
}

.basket-table__body .basket-table__name img {
  max-width: 100px;
}

.basket-table__body .basket-table__price,
.basket-table__body .basket-table__unit {
  font-size: 14px;
}

.basket-table__body .basket-table__cost {
  font-weight: 600;
  font-size: 16px;
  color: var(--color-primary);
}

.basket-table__name {
  min-width: 30%;
}

.basket-table__name-copy {
  display: none !important;
}

/*payer form*/

.order-registration {
  font-size: 20px;
  line-height: 1.2;
}

.order-registration__data {
  margin: 0 auto;
  max-width: 645px;
}

.order-registration h2,
.order-registration h3 {
  margin: 2.27778em 0 1.75em;
}

.order-registration__inputs + h2,
.order-registration__inputs + h3 {
  margin-top: 1.61111em;
}

.order-registration__toggles {
  margin-bottom: 40px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.order-registration__inputs {
  margin: 0 auto;
  max-width: 535px;
}

.order-registration__inputs .b-input {
  --air: 0 0 24px;
  width: 100%;
}

.order-registration__inputs .b-input__input {
  max-width: none;
}

.order-registration .form-action {
  margin-top: 70px;
}

/*form action buttons*/

.form-action {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form-action__back,
.form-action__submit-btn {
  min-width: 200px;
}

.form-action__submit-btn {
  text-transform: uppercase;
}

/*total purchase*/

.total-purchase__cost {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
}

/*==================== ABOUT PAGE ====================*/

.about-pg .gridGallery-b {
  margin-top: 78px;
}

/*==================== PRODUCTS ====================*/

.product-pg .content-wrap {
  padding-bottom: 0;
}

.product-pg h1 {
  margin-bottom: 83px;
}

.product-pg .similarProducts-b {
  margin-top: 85px;
}

/*==================== NOTIFY PAGE ====================*/

.notify-pg .content-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-repeat: no-repeat;
}

.notify-pg h1 {
  margin-bottom: 21px;
  font-weight: 300;
  font-size: 48px;
  line-height: 1.22917;
  text-transform: uppercase;
}

.notify-pg main {
  margin: auto 0;
}

.notify-pg main .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.notify-pg main .btnGo {
  margin: 43px auto 0;
}

.notify-pg main p {
  font-size: 18px;
}

.notify-pg main .firm-info {
  margin: 21px auto 0;
  font-size: 14px;
}

.thanks-pg .content-wrap {
  background-position: left 27% bottom;
  background-size: auto 100%;
}

.err-pg h1 {
  margin-bottom: 3px;
  font-size: 144px;
  line-height: 1.22222;
}

.err-pg .content-wrap {
  background-position: center;
  background-size: cover;
}

/*--------------------------------Other--------------------------------*/

@media screen and (min-width: 1025px) {
  .productCard:hover {
    -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@media screen and (min-width: 1231px) {
  header .menu > li > ul {
    /*имитация тени шапки над выпадающим списком*/
  }

  header .menu > li > ul::before {
    content: "";
    position: absolute;
    right: -10px;
    bottom: 100%;
    left: -10px;
    z-index: 1;
    display: block;
    height: 13px;
    background-color: #fff;
  }

  .menu {
    /*Все вложенные списки в меню, скрытые, вертикальные*/
    /*Раскрытие вложенного списка при наведение на li*/
    /*Позиционирование 2-го уровень меню*/
    /*Позиционирование 3+-го уровень меню*/
    /*ссылки со 2-го уровня меню*/
    /*Элементы со 2-го уровня меню(активные)*/
    /*Элементы со 2-го уровня меню(наведение)*/
    /*Вложенное меню в 1-ом уровне*/
  }

  .menu ul {
    position: absolute;
    padding: 14px 0;
    min-width: 300px;
    max-width: 340px;
    background-color: var(--basick-white);
    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05), inset 0px 20px 20px -20px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05), inset 0px 20px 20px -20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .menu li {
    position: relative;
  }

  .menu li:not(.menu__item--drop):hover > ul {
    opacity: 1;
    pointer-events: all;
  }

  .menu > li > ul {
    top: 100%;
    left: 0;
  }

  .menu ul ul {
    padding: 0;
    top: 0;
    left: 100%;
  }

  ul .menu__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 12px 20px 12px 20px;
    width: 100%;
  }

  .menu ul li.active {
    background-color: var(--color-primary);
  }

  .menu ul li.active > a,
  .menu ul li.active > span {
    color: var(--basick-white);
  }

  .menu ul li.active > a > span svg,
  .menu ul li.active > span > span svg {
    fill: var(--basick-white);
  }

  .menu ul li:not(.active):hover {
    background-color: var(--color-primary);
  }

  .menu ul li:not(.active):hover > a,
  .menu ul li:not(.active):hover > span {
    color: var(--basick-white);
  }

  .menu ul li:not(.active):hover > a > span svg,
  .menu ul li:not(.active):hover > span > span svg {
    fill: var(--basick-white);
  }

  .menu__item--drop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
  }

  .menu__item--drop > .menu__link {
    padding-left: 5px !important;
  }

  .menu__item--drop.active > ul {
    opacity: 1;
    pointer-events: all;
  }

  .menu__item--drop .menu__arr {
    margin-left: 20px;
  }

  .menu__item--drop .menu__item-toggle {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: -0.83333em;
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
  }

  .menu__item--drop .menu__item-toggle.active + .menu__link {
    color: var(--color-primary);
    text-shadow: 0.05px 0.05px 0 var(--color-primary), -0.05px -0.05px 0 var(--color-primary);
  }

  .menu__arr {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0.25em 0 0 0.5em;
    height: 0.6875em;
    width: 0.625em;
    fill: var(--textColor);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }

  .menu__arr svg {
    max-height: 100%;
  }
}

@media (max-width: 1230px) {
  .col-lg-1 {
    width: calc(100% / 12 * 1);
  }

  .col-lg-2 {
    width: calc(100% / 12 * 2);
  }

  .col-lg-3 {
    width: calc(100% / 12 * 3);
  }

  .col-lg-4 {
    width: calc(100% / 12 * 4);
  }

  .col-lg-5 {
    width: calc(100% / 12 * 5);
  }

  .col-lg-6 {
    width: calc(100% / 12 * 6);
  }

  .col-lg-7 {
    width: calc(100% / 12 * 7);
  }

  .col-lg-8 {
    width: calc(100% / 12 * 8);
  }

  .col-lg-9 {
    width: calc(100% / 12 * 9);
  }

  .col-lg-10 {
    width: calc(100% / 12 * 10);
  }

  .col-lg-11 {
    width: calc(100% / 12 * 11);
  }

  .col-lg-12 {
    width: calc(100% / 12 * 12);
  }

  .content-wrap {
    padding: 3.5rem 0 7rem;
  }

  .content-wrap h1 {
    margin-bottom: 50px;
  }

  .section {
    padding: 90px 0 20px;
  }

  .section__title {
    margin-bottom: 60px;
  }

  .section__btn {
    --height: 60px;
    --fz: 16px;
    margin: 70px auto 0;
  }

  .container {
    max-width: 960px;
  }

  .title-1 {
    font-size: 28px;
  }

  .title-2 {
    font-size: 28px;
  }

  .title-3 {
    font-size: 22px;
  }

  .text--lg {
    font-size: 20px;
  }

  .b-input {
    --pl: 30px;
    --h: 55px;
    --fz: 16px;
  }

  .v-modal__form {
    max-width: 580px;
  }

  .v-modal__form-inner {
    padding: 69px 60px 50px;
  }

  .v-up {
    width: 65px;
    height: 65px;
  }

  .application-b {
    --air-l: 30px;
  }

  .application-f .b-input {
    --pl: 30px;
    --h: 55px;
    --fz: 16px;
  }

  .articlesLaw-b__text {
    font-size: 16px;
  }

  .catalogLinks-b__row {
    --air-l: 25px;
    --air-b: 25px;
  }

  .companyDesc-b__item {
    margin-top: 70px;
  }

  .companyDesc-b__item h1,
  .companyDesc-b__item h2,
  .companyDesc-b__item h3 {
    font-size: 22px;
  }

  .companyDesc-b__item--type-2 {
    margin-top: 60px;
  }

  .deliveryInfo-b__text {
    font-size: 16px;
  }

  .deliveryInfo-b__methods {
    margin-top: 50px;
  }

  .defaultText {
    font-size: 16px;
    line-height: 1.5625;
  }

  .gallery {
    max-width: 530px;
  }

  .fullScreenSlider {
    width: calc(100% - 140px);
  }

  .fullScreenSlider-nav .slider-arr {
    width: 40px;
    height: 40px;
  }

  .panel-b .products-b .productCard {
    width: calc(100% / var(--column) * 6 - var(--air-l));
  }

  .panel-b .filters-f__item {
    width: calc(100% / var(--column) * 4 - var(--air-l));
  }

  .productsSlider-b h1,
  .productsSlider-b h2,
  .productsSlider-b h3 {
    margin-bottom: 54px;
  }

  .paymentInfo-b__text {
    font-size: 16px;
  }

  .paymentInfo-b__methods {
    margin-top: 50px;
  }

  .replacement-f {
    padding-top: 45px;
  }

  .similarProducts-b {
    padding: 58px 0 80px;
  }

  .mainSlider {
    font-size: 20px;
  }

  .mainSlider__slide {
    min-height: 620px;
  }

  .mobile-btnBasket {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .illustratedInfo-b__textBox h1,
  .illustratedInfo-b__textBox h2,
  .illustratedInfo-b__textBox h3 {
    font-size: 22px;
  }

  header.fixed {
    padding: 10px 0;
  }

  header {
    padding: 10px 0;
  }

  .header__firm-info,
  .header__bottom-col,
  .header__sciLinks {
    display: none;
  }

  .header__top {
    padding-bottom: 0;
  }

  .header__body {
    padding-top: 0;
  }

  .header__logo {
    margin-top: 10px;
    padding: 0;
    max-width: 140px;
  }

  .header__hamburger {
    display: block;
  }

  .header__search-toggle--mobile {
    margin: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 27.5px;
    height: 27.5px;
  }

  .header__sci {
    margin-left: auto;
  }

  .header__burger {
    position: fixed;
    left: -100%;
    z-index: 999;
    width: 100%;
    background-color: var(--basick-white);
    -webkit-box-shadow: inset 0px 20px 20px -20px rgba(0, 0, 0, 0.1);
            box-shadow: inset 0px 20px 20px -20px rgba(0, 0, 0, 0.1);
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    -o-transition: transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
    /*bro menu*/
  }

  .header__burger::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 98;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
  }

  .header__burger.open {
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }

  .header__burger-inner {
    max-height: 100vh;
    width: 100%;
    overflow: auto;
  }

  .header__burger .hamburger,
  .header__burger .menu__arr,
  .header__burger .menu__item-arr {
    display: none !important;
  }

  .header__burger .bro-menu {
    font-size: 16px;
  }

  .header__burger .bro-menu ul {
    width: 100%;
  }

  .header__burger .bro-menu__next,
  .header__burger .bro-menu__back,
  .header__burger .bro-menu .menu__link {
    cursor: pointer;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.9rem 1em;
    width: 100%;
    text-transform: uppercase;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }

  .header__burger .bro-menu__next:hover,
  .header__burger .bro-menu__back:hover,
  .header__burger .bro-menu .menu__link:hover {
    background-color: #f4f4f4;
  }

  .header__burger .bro-menu .menu__link {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }

  .header__burger .bro-menu .menu__item.active > .bro-menu__link {
    background-color: #f4f4f4;
  }

  .header__burger .bro-menu__next svg,
  .header__burger .bro-menu__back svg {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: block;
    width: 13px;
  }

  .header__burger .bro-menu__next svg {
    margin-left: auto;
  }

  .header__burger .bro-menu__back {
    background-color: var(--color-primary) !important;
    color: var(--basick-white);
  }

  .header__burger .bro-menu__back svg {
    margin-right: 1em;
    fill: var(--basick-white);
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1);
  }

  .header__burger .menu {
    display: block;
  }

  .header__burger .menu > .menu__item {
    position: static;
    margin-right: 0;
  }

  .header__burger .menu > .menu__item > .menu__link {
    padding: 0.9em 1em;
  }

  .header__burger .bro-menu {
    overflow: hidden;
  }

  .footer__top-row {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .footer__top-col:nth-of-type(2) {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .footer__firmInfoBox {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    row-gap: 1.28571em;
  }

  .basket-pg .products-slider-b {
    margin-top: 90px;
  }

  .order-registration {
    font-size: 18px;
  }

  .order-registration .form-action {
    margin-top: 50px;
  }

  .about-pg .gridGallery-b {
    margin-top: 60px;
  }

  .product-pg h1 {
    margin-bottom: 70px;
  }

  .product-pg .similarProducts-b {
    margin-top: 65px;
  }

  .notify-pg h1 {
    font-size: 32px;
  }

  .notify-pg main p {
    font-size: 16px;
  }

  .err-pg h1 {
    font-size: 122px;
  }
}

@media (max-width: 1024px) {
  .for-table {
    display: block;
  }

  .col-md-1 {
    width: calc(100% / 12 * 1);
  }

  .col-md-2 {
    width: calc(100% / 12 * 2);
  }

  .col-md-3 {
    width: calc(100% / 12 * 3);
  }

  .col-md-4 {
    width: calc(100% / 12 * 4);
  }

  .col-md-5 {
    width: calc(100% / 12 * 5);
  }

  .col-md-6 {
    width: calc(100% / 12 * 6);
  }

  .col-md-7 {
    width: calc(100% / 12 * 7);
  }

  .col-md-8 {
    width: calc(100% / 12 * 8);
  }

  .col-md-9 {
    width: calc(100% / 12 * 9);
  }

  .col-md-10 {
    width: calc(100% / 12 * 10);
  }

  .col-md-11 {
    width: calc(100% / 12 * 11);
  }

  .col-md-12 {
    width: calc(100% / 12 * 12);
  }

  .content-wrap {
    padding: 2.5rem 0 5rem;
  }

  .bread-crumb + .content-wrap {
    padding-top: 15px;
  }

  .section {
    padding: 58px 0 20px;
  }

  .section__btn {
    --height: 51px;
    --fz: 12px;
    margin: 50px auto 0;
  }

  .container {
    padding-right: 20px;
    padding-left: 20px;
    max-width: 768px;
  }

  .b-tabs__content {
    margin-top: 30px;
  }

  .application-b h1,
  .application-b h2,
  .application-b h3 {
    text-align: center;
  }

  .application-b__application-f,
  .application-b__map {
    width: calc(100% / var(--column) * 12 - var(--air-l));
  }

  .application-b .application-f {
    margin-left: auto;
    margin-right: auto;
    max-width: 490px;
  }

  .application-b .application-f .b-input__input {
    max-width: 490px;
  }

  .application-f__submit {
    margin: 23px auto 0;
  }

  .bread-crumb {
    padding: 23px 0 20px;
  }

  .companyDesc-b__item .companyDesc-b__itemTextBox,
  .companyDesc-b__item .companyDesc-b__itemImgBox {
    width: calc(100% / var(--column) * 12 - var(--air-l));
  }

  .companyDesc-b__item .companyDesc-b__itemImgBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .companyDesc-b__item .companyDesc-b__itemImg {
    display: inline-block;
    margin: 0 auto;
    max-width: 465px;
  }

  .filters-wrap {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 300;
    margin-top: 0 !important;
    padding-top: 55px;
    width: 100%;
    max-height: 100%;
    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
    overflow: auto;
    -webkit-transition: all 0.45s cubic-bezier(0.3, 0, 0.15, 1);
    -o-transition: all 0.45s cubic-bezier(0.3, 0, 0.15, 1);
    transition: all 0.45s cubic-bezier(0.3, 0, 0.15, 1);
  }

  .filters-wrap.open {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }

  .filters-wrap .btn-filter {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .filters__buttons {
    display: -ms-grid;
    display: grid;
  }

  .deliveryMethods__item {
    width: calc(100% / var(--column) * 6 - var(--air-l));
    min-width: 310px;
  }

  .gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: none;
  }

  .gallery__sliderWrap {
    margin: 0 auto;
    max-width: 500px;
  }

  .gallery__thumbsWrap {
    position: static;
    margin-top: 21px;
    width: auto;
    height: 97px;
  }

  .gallery__thumbs-item {
    height: 100%;
    width: auto;
  }

  .gallery__fullScreenBtn {
    inset: 0;
    background-color: transparent;
    border-radius: 0;
  }

  .gallery__fullScreenBtn-inner {
    opacity: 0;
  }

  .gallery .slider-nav {
    display: block;
  }

  .product__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .product__gallery {
    margin: 0 auto;
  }

  .product__details {
    margin: 30px 0 0;
    text-align: center;
  }

  .product__details .tableDetails {
    margin-bottom: 25px;
  }

  .product__availability {
    margin: 0 auto;
  }

  .product__btns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .product__hint {
    text-align: left;
  }

  .panel-b {
    /*products block*/
  }

  .panel-b__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .panel-b__sidebar {
    display: none;
    width: auto;
  }

  .panel-b .products-b .productCard {
    width: calc(100% / var(--column) * 4 - var(--air-l));
  }

  .products-b .filter-prod {
    margin-bottom: 0;
  }

  .products-b .btn-filter {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .reviewsCard {
    padding: 30px 15px 24px;
  }

  .reviewsCard__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .reviewsCard__more {
    width: 50px;
    height: 50px;
  }

  .mainSlider {
    font-size: 18px;
  }

  .mainSlider__slide {
    min-height: 500px;
  }

  .mainSlider__slide-bg {
    background-position: center;
  }

  .mainSlider__slide-textBox {
    padding: 47px 25px 105px;
    width: 100%;
    text-align: center;
  }

  .mainSlider__slide-textBox::before {
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
  }

  .mainSlider__paginationWrap {
    top: auto;
    bottom: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }

  .mainSlider__paginationWrap .slider-pagination {
    display: block;
    padding-bottom: 48px;
  }

  .mainSlider__paginationWrap .slider-pagination .swiper-pagination-bullet {
    display: inline-block;
    margin: 0 12px 7px 0;
    width: 13px;
    height: 13px;
  }

  .mainSlider__paginationWrap .slider-pagination .swiper-pagination-bullet-active {
    margin: 0 16px 7px 4px;
  }

  .illustratedMethods__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .illustratedMethods__item {
    width: calc(100% / var(--column) * 6 - var(--air-l));
    max-width: 293px;
    min-width: 240px;
  }

  header.fixed {
    padding: 10px 0;
  }

  .footer__top-row {
    --air-b: 22px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .footer__top-col:nth-of-type(1) {
    max-width: none;
  }

  .footer__top-col:nth-of-type(2) {
    min-width: 70%;
  }

  .footer__bottom .ArtBro {
    position: static;
    margin-left: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }

  .catalog-pg .panel-b__sidebar {
    display: block;
    margin: 0;
  }

  .catalog-pg .catalogMenu {
    display: none;
  }
}

@media (max-width: 768px) {
  .col-sm-1 {
    width: calc(100% / 12 * 1);
  }

  .col-sm-2 {
    width: calc(100% / 12 * 2);
  }

  .col-sm-3 {
    width: calc(100% / 12 * 3);
  }

  .col-sm-4 {
    width: calc(100% / 12 * 4);
  }

  .col-sm-5 {
    width: calc(100% / 12 * 5);
  }

  .col-sm-6 {
    width: calc(100% / 12 * 6);
  }

  .col-sm-7 {
    width: calc(100% / 12 * 7);
  }

  .col-sm-8 {
    width: calc(100% / 12 * 8);
  }

  .col-sm-9 {
    width: calc(100% / 12 * 9);
  }

  .col-sm-10 {
    width: calc(100% / 12 * 10);
  }

  .col-sm-11 {
    width: calc(100% / 12 * 11);
  }

  .col-sm-12 {
    width: calc(100% / 12 * 12);
  }

  .content-wrap h1 {
    margin-bottom: 35px;
  }

  .section__title {
    margin-bottom: 58px;
  }

  .container {
    padding-right: 10px;
    padding-left: 10px;
    max-width: 100%;
  }

  .title-1 {
    font-size: 20px;
  }

  .title-2 {
    font-size: 18px;
  }

  .title-3 {
    font-size: 18px;
  }

  .text {
    font-size: 16px;
  }

  .accardion {
    max-width: none;
  }

  .accardion__container {
    padding: 0;
  }

  .accardion__item-header {
    font-size: 14px;
  }

  .b-tabs__content {
    margin-top: 20px;
  }

  .b-input {
    --air: 0 0 23px;
    --pl: 28px;
    --pdT: 18.45px 20px 15px var(--pl);
    --h: 45px;
    --fz: 15px;
  }

  .v-modal__form {
    max-width: 500px;
  }

  .v-modal__form-inner {
    padding: 56px 25px 30px 25px;
  }

  .v-modal .application-f__submit {
    margin-top: 15px;
    min-width: 230px;
  }

  .slider-from-to__label {
    width: 50%;
  }

  .number-slider {
    grid-auto-flow: column;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    font-size: 14px;
  }

  .number-slider__up,
  .number-slider__down,
  .number-slider__input {
    grid-column: auto;
    grid-row: auto;
  }

  .number-slider__up,
  .number-slider__down {
    width: 1.5em;
    height: 1.5em;
  }

  .v-up {
    right: 20px;
  }

  .application-b {
    padding: 65px 0 0;
  }

  .application-b__row {
    --air-l: 0px;
  }

  .application-f .b-input {
    --air: 0 0 23px;
    --pl: 28px;
    --pdT: 18.45px 20px 15px var(--pl);
    --h: 45px;
    --fz: 15px;
  }

  .application-f .b-input__input textarea {
    min-height: 88px;
  }

  .catalogLinks-b {
    padding: 26px 0 67px;
    font-size: 14px;
  }

  .catalogLinks-b__row {
    --air-l: 15px;
    --air-b: 16px;
  }

  .catalogLinks-b__link {
    width: calc(100% / var(--column) * 12 - var(--air-l));
    max-width: 400px;
  }

  .catalogLinks-b__link::before {
    padding-bottom: 102.38908%;
  }

  .catalogLinks-b__link-text {
    bottom: 29px;
  }

  .companyDesc-b__item {
    margin-top: 52px;
  }

  .companyDesc-b__item h1,
  .companyDesc-b__item h2,
  .companyDesc-b__item h3 {
    font-size: 18px;
  }

  .companyDesc-b__item--type-2 {
    margin-top: 46px;
  }

  .filters-f__btns button {
    min-width: 148px;
  }

  .filters-menu__item {
    border-bottom: 1px solid #c0c0c0;
  }

  .filters-menu__head {
    padding: 1em 0 1em;
    font-size: 16px;
  }

  .filters-menu__arr {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: inline-block;
    height: 10px;
    width: 15px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }

  .js-tree-menu__item--open .filters-menu__arr {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .filters-menu__arr svg {
    max-height: 100%;
    fill: var(--color-primary);
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .filters-menu__submenu li {
    padding-bottom: 1.25em;
  }

  .filter-prod__item {
    width: calc(100% / var(--column) * 6 - var(--air-l));
  }

  .deliveryInfo-b__text {
    font-size: 14px;
  }

  .deliveryInfo-b__methods {
    margin-top: 28px;
  }

  .defaultText h1,
  .defaultText h2,
  .defaultText h3 {
    margin: 1.875em 0 1.5625em;
  }

  .defaultText p,
  .defaultText ul,
  .defaultText ol {
    margin: 1.5625em 0;
  }

  .faq-b h1,
  .faq-b h2,
  .faq-b h3 {
    margin-bottom: 31px;
  }

  .gridGallery-b__list {
    --air-l: 31px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .gridGallery-b__img {
    width: calc(100% / var(--column) * 6 - var(--air-l));
    max-width: 275px;
  }

  .fullScreenSlider {
    width: calc(100% - 82px);
  }

  .fullScreenSlider-nav .slider-arr {
    width: 34px;
    height: 34px;
  }

  .slider-pagination {
    margin-top: 30px;
  }

  .tableDetails__row {
    padding: 10px 7px;
  }

  .product__hint {
    padding: 18px 27px;
  }

  .product__tabs {
    margin-top: 20px;
    font-size: 14px;
  }

  .product__tabs .tableDetails__row-col:first-child {
    width: 40%;
  }

  .product__tabs .defaultText {
    font-size: 14px;
  }

  .panel-b {
    /*producers-b*/
    /*products block*/
  }

  .panel-b .filters-f__item {
    width: calc(100% / var(--column) * 6 - var(--air-l));
  }

  .panel-b .producers-b .producerCard {
    width: calc(100% / var(--column) * 4 - var(--air-l));
  }

  .panel-b .products-b .productCard {
    width: calc(100% / var(--column) * 6 - var(--air-l));
  }

  .producers-b__row {
    --air-l: 16px;
    --air-b: 16px;
  }

  .producers-b .producerCard {
    width: calc(100% / var(--column) * 4 - var(--air-l));
  }

  .products-b {
    --air-b: 33px;
  }

  .products-b__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .products-b .productCard {
    min-width: 270px;
  }

  .products-b .pagination {
    padding: 65px 0 0;
  }

  .producerCard {
    padding: 10px 10px 12px;
    font-size: 10px;
  }

  .producerCard__name {
    margin-top: 7.5px;
  }

  .productsSlider-b {
    padding: 40px 0 60px;
  }

  .productsSlider-b h1,
  .productsSlider-b h2,
  .productsSlider-b h3 {
    margin-bottom: 70px;
  }

  .productsSlider-b .productsSlider {
    margin-left: auto;
    margin-right: auto;
    max-width: 270px;
  }

  .productsSlider .swiper-slide-visible {
    -webkit-transform: translateY(-25px);
        -ms-transform: translateY(-25px);
            transform: translateY(-25px);
  }

  .paymentInfo-b__text {
    font-size: 14px;
  }

  .paymentInfo-b__text > * {
    margin-top: 1.14286em;
  }

  .paymentInfo-b__methods {
    margin-top: 43px;
  }

  .reviews-b__row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .reviews-b .reviewsCard {
    width: calc(100% / var(--column) * 12 - var(--air-l));
    max-width: 330px;
  }

  .reviews-b__more {
    margin: 70px auto 0;
  }

  .replacement-f {
    padding-top: 35px;
  }

  .replacement-f h1,
  .replacement-f h2,
  .replacement-f h3 {
    margin-bottom: 23px;
  }

  .replacement-f .b-input__input textarea {
    padding: 12px var(--pr) 0 var(--pl);
    height: var(--h);
    min-height: auto;
  }

  .replacement-f__submit {
    margin-top: 18px;
  }

  .similarProducts-b {
    padding: 51px 0 68px;
  }

  .similarProducts-b h1,
  .similarProducts-b h2,
  .similarProducts-b h3 {
    margin-bottom: 70px;
  }

  .similarProducts-b .similarSlider {
    margin-left: auto;
    margin-right: auto;
    max-width: 270px;
  }

  .similarSlider .swiper-slide {
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s !important;
    transition: opacity 0.3s, -webkit-transform 0.3s !important;
    -o-transition: opacity 0.3s, transform 0.3s !important;
    transition: opacity 0.3s, transform 0.3s !important;
    transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s !important;
  }

  .similarSlider__slide:not(.swiper-slide-visible) {
    opacity: 0.6;
  }

  .similarSlider .swiper-slide-visible {
    -webkit-transform: translateY(-25px);
        -ms-transform: translateY(-25px);
            transform: translateY(-25px);
  }

  .mainSlider {
    font-size: 16px;
  }

  .mainSlider__slide-textBox h1,
  .mainSlider__slide-textBox h2 {
    margin-bottom: 0.26923em;
    font-size: 26px;
  }

  .mainSlider__slide .btnGo {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }

  .mainSlider__paginationWrap .slider-pagination {
    margin-top: 0;
  }

  .illustratedInfo-b__textBox,
  .illustratedInfo-b__imgBox {
    width: calc(100% / var(--column) * 12 - var(--air-l));
    max-width: none;
  }

  .illustratedInfo-b__textBox h1,
  .illustratedInfo-b__textBox h2,
  .illustratedInfo-b__textBox h3 {
    font-size: 18px;
  }

  .illustratedInfo-b__img {
    margin: 0 auto;
    max-width: 400px;
  }

  header {
    padding: 8px 0;
  }

  .header__aside p {
    font-size: 10px;
  }

  .header__logo {
    max-width: 115px;
  }

  .header__hamburger {
    margin-left: 27px;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }

  .header__sci {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }

  .header__sci .search-toggle {
    margin-left: auto;
  }

  .header__sci .sci__link--phone {
    display: none;
  }

  .footer__sciLinks .sci-link {
    margin: 0 auto;
  }

  .footer__bottom {
    padding: 12px 0;
  }

  .footer__bottom-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .footer__bottom .ArtBro {
    margin: 0.58333em 0 0;
  }

  .basket-pg .basket-table {
    margin-bottom: 15px;
  }

  .basket-pg .products-slider-b {
    margin-top: 61px;
  }

  .basket-f__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .basket-f__bottom-right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 31px;
  }

  .basket-table__head .basket-table__row > div:not(.basket-table__name) {
    display: none;
  }

  .basket-table__head .basket-table__row > div {
    padding: 0;
  }

  .basket-table__body {
    padding: 23px 20px 30px 25px;
  }

  .basket-table__body .basket-table__row {
    display: -ms-grid;
    display: grid;
        grid-template-areas: "name name" "image unit" "image price" "image cost" "quantity quantity";
    grid-auto-columns: -webkit-min-content auto;
    grid-auto-columns: min-content auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
    row-gap: 9px;
    padding-bottom: 2.5em;
  }

  .basket-table__body .basket-table__row > div {
    padding: 0;
    border-right: none;
    text-align: left;
  }

  .basket-table__body .basket-table__name {
    grid-area: image;
    margin-top: 2px;
  }

  .basket-table__body .basket-table__name img {
    max-width: 180px;
  }

  .basket-table__body .basket-table__name p {
    display: none;
  }

  .basket-table__body .basket-table__unit {
    grid-area: unit;
    font-size: 14px;
  }

  .basket-table__body .basket-table__price {
    grid-area: price;
    font-size: 16px;
  }

  .basket-table__body .basket-table__cost {
    grid-area: cost;
    font-size: 18px;
  }

  .basket-table__body .basket-table__quantity {
    grid-area: quantity;
  }

  .basket-table__name-copy {
    grid-area: name;
    display: block !important;
    text-align: left !important;
  }

  .basket-table__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .basket-table__name {
    min-width: auto;
  }

  .order-registration {
    font-size: 16px;
  }

  .order-registration h2,
  .order-registration h3 {
    margin: 46px 0;
  }

  .order-registration__inputs + h2,
  .order-registration__inputs + h3 {
    margin-top: 22px;
  }

  .order-registration__inputs textarea {
    min-height: 87px;
  }

  .order-registration .form-action {
    margin-top: 40px;
  }

  .about-pg .gridGallery-b {
    margin-top: 42px;
  }

  .product-pg h1 {
    margin-bottom: 51px;
  }

  .product-pg .similarProducts-b {
    margin-top: 46px;
  }

  .notify-pg h1 {
    font-size: 24px;
  }

  .notify-pg main .firm-info {
    margin: 15px auto 0;
  }

  .notify-pg main .btnGo {
    margin: 30px auto 0;
  }

  .thanks-pg .content-wrap {
    background-position: left bottom;
  }

  .err-pg h1 {
    font-size: 86px;
  }
}

@media (max-width: 768px){

  .basket-table__body .basket-table__name {
    -ms-grid-row: 3;
    -ms-grid-row-span: 5;
    -ms-grid-column: 1;
  }

  .basket-table__body .basket-table__unit {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }

  .basket-table__body .basket-table__price {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }

  .basket-table__body .basket-table__cost {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }

  .basket-table__body .basket-table__quantity {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }

  .basket-table__name-copy {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}

@media (max-width: 520px) {
  .order-registration__toggles {
    --air-l: 35px;
    --air-b: 23px;
    margin-bottom: 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 0 calc(var(--air-b) * -1) calc(var(--air-l) * -1);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .order-registration__toggles label {
    margin: 0 0 var(--air-b) var(--air-l);
    word-wrap: break-word;
  }

  .order-registration__inputs {
    margin-top: 29px;
  }
}

@media (max-width: 480px) {
  .col-xs-1 {
    width: calc(100% / 12 * 1);
  }

  .col-xs-2 {
    width: calc(100% / 12 * 2);
  }

  .col-xs-3 {
    width: calc(100% / 12 * 3);
  }

  .col-xs-4 {
    width: calc(100% / 12 * 4);
  }

  .col-xs-5 {
    width: calc(100% / 12 * 5);
  }

  .col-xs-6 {
    width: calc(100% / 12 * 6);
  }

  .col-xs-7 {
    width: calc(100% / 12 * 7);
  }

  .col-xs-8 {
    width: calc(100% / 12 * 8);
  }

  .col-xs-9 {
    width: calc(100% / 12 * 9);
  }

  .col-xs-10 {
    width: calc(100% / 12 * 10);
  }

  .col-xs-11 {
    width: calc(100% / 12 * 11);
  }

  .col-xs-12 {
    width: calc(100% / 12 * 12);
  }

  .v-modal__form-inner {
    padding: 70px 20px 30px 20px;
  }

  .filter-prod__item {
    width: calc(100% / var(--column) * 12 - var(--air-l));
  }

  .deliveryMethods__item {
    min-width: 290px;
  }

  .product__quantity {
    margin-bottom: 13px;
  }

  .product__quantity .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .panel-b {
    /*producers-b*/
  }

  .panel-b .filters-f__item {
    width: calc(100% / var(--column) * 12 - var(--air-l));
  }

  .panel-b .producers-b .producerCard {
    width: calc(100% / var(--column) * 6 - var(--air-l));
  }

  .form-action {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 75px;
  }

  .form-action .btn:not(:last-child) {
    margin-bottom: 29px;
  }
}

@media screen and (max-width: 400px) {
  .mainSlider h1,
  .mainSlider h2 {
    font-size: 20px;
  }

  .header__sci .sci__link--phone {
    font-size: 10px;
  }

  .header__search-toggle {
    display: none;
  }

  .header__search-panel {
    display: none;
    font-size: 18px;
  }

  .header__hamburger {
    margin-left: 15px;
    width: 29px;
    height: 29px;
  }

  .header__sci .sci__link:nth-of-type(1) {
    margin-left: auto;
  }
}