:root {
  --1-text-color: #2f3540;
  --2-text-color: #fff;
  --22-text-color: #fff;
  --3-text-color: #a19fd3;
  --4-text-color: #371111;
  --5-text-color: #5f5e76;
  --11-text-color: #eeeeee;
  --12-text-color: #e8e8e8;
  --13-text-color: #5c5b8b;
  --14-text-color: #ff0000;
  --text-orange: #f68b20;
  --button-text: #222222;
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

html, body {
  height: 100%;
}

body {
  margin: 0;
  /* font-family: "Open sans", arial, verdana; */
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  overflow-x: hidden;
  background: #f6f4f4;
  color: #222222;
}

button {
  cursor: pointer;
  cursor: hand;
}

div, section, input, textarea, select, button, a {
  box-sizing: border-box;
  transition: all 0.3s linear;
}

a {
  color: var(--1-text-color);
  text-decoration: none;
}

a:hover {
  color: var(--text-orange);
  text-decoration: none;
}

h1 {
  font-size: 32px;
  padding: 10px 0;
  margin: 0;
}

.star {
  color: var(--14-text-color);
}

.text--fail {
  color: var(--14-text-color);
  font-size: 12px;
}

.no--info--find {
  color: var(--text-orange);
  font-size: 18px;
  width: 100%;
  text-align: center;
}

input, button, select, textarea {
  outline: none;
}

button {
  padding: 10px 20px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  background: var(--text-orange);
  color: var(--button-text);
  border: 0;
  border-radius: 3px;
}

button:hover {
  background: #f6f4f4;
  color: var(--text-orange);
  box-shadow: 0 0 3px 1px var(--text-orange);
}

input[type="text"] {
  padding: 10px 18px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid #e3e3e3;
  width: 100%;
  border-radius: 0;
}

input[type="text"]:focus {
  border-color: #adadad;
}

input[type="number"] {
  padding: 10px 18px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  border: 1px solid var(--5-text-color);
  width: 100%;
  border-radius: 10px;
}

input[type="number"]:focus {
  border: 1px solid var(--3-text-color);
  box-shadow: 0 0 2px var(--5-text-color);
}

input[type="datetime-local"] {
  padding: 10px 18px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  border: 1px solid var(--5-text-color);
  width: 100%;
  border-radius: 10px;
}

input[type="datetime-local"]:focus {
  border: 1px solid var(--3-text-color);
  box-shadow: 0 0 2px var(--5-text-color);
}

input[type="password"] {
  padding: 10px 18px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid #e3e3e3;
  width: 100%;
  border-radius: 0;
}

input[type="password"]:focus {
  border-color: #adadad;
}

textarea {
  padding: 10px 18px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid #e3e3e3;
  width: 100%;
  border-radius: 0;
}

textarea:focus {
  border-color: #adadad;
}

select {
  padding: 10px 18px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid #e3e3e3;
  width: 100%;
  border-radius: 0;
  background: transparent;
}

select:focus {
  border-color: #adadad;
}

input.fail--input {
  border-color: var(--14-text-color);
}

textarea.fail--input {
  border-color: var(--14-text-color);
}

.js__body--background {
  display: none;
  background: var(--1-text-color);
  width: 100%;
  height: 120%;
  position: fixed;
  top: -20px;
  z-index: 1001;
  opacity: 0;
}

.js__body--popup {
  position: fixed;
  background: #ffffff;
  padding: 25px;
  display: none;
  z-index: 1002;
  width: 600px;
  left: 50%;
  top: calc(50% + calc(var(--hh) / 2));
  transform: translateY(-50%) translateX(-50%);
  max-width: 90%;
  opacity: 0;
  max-height: 90%;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 15px;
}

.js__big--images--popup {
  width: 1620px;
}

.pointerhand {
  cursor: pointer;
  cursor: hand;
}

.body section.home {
  max-width: 100% !important;
}

/*Ð¨Ð°Ð¿ÐºÐ°*/

.header .container{
	position:relative;
	z-index:10000;
	background:#f6f4f4;
	    width: 100%;
}

.header--overhead {
  display: none;
}

.header--overhead__inner {
  max-width: 1620px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media all and (max-width: 700px) {
  .header--overhead__inner {
    flex-wrap: wrap;
  }
}

.header--overhead--inner__left {
  padding: 0 5px;
}

.header--overhead--inner__right {
  padding: 0 5px;
}

.header--centerhead {
  display: flex;
  justify-content: space-between;
}

.header--centerhead__inner {
  max-width: 1620px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5px;
}

@media all and (max-width: 1100px) {
  .header--centerhead__inner {
    flex-wrap: wrap;
  }
}

.header--centerhead--inner__logo {
  padding: 5px;
  order: 1;
}

.header--centerhead--inner__logo img {
  max-height: 80px;
}

@media all and (max-width: 1100px) {
  .header--centerhead--inner__logo img {
    max-height: 60px;
  }
}

@media all and (max-width: 500px) {
  .header--centerhead--inner__logo img {
    max-height: 46px;
  }
}

.header--centerhead--inner__column1 {
  /* order: 3; */
  padding: 0 5px;
  flex-grow: 1;
}

@media all and (max-width: 1100px) {
  .header--centerhead--inner__column1 {
    order: 1;
  }
}

.fnc--header--contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fnc--header--contacts__left {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fnc--header--contacts__right {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  /* flex-grow: 1; */
}

.fnc--header--contacts__left * {
  margin: 0;
  color: #000000;
  opacity: 0.63;
  font-size: 14px;
}

.fnc--header--contacts__left p {
  margin-right: 25px;
}

.fnc--header--contacts__mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px;
  font-weight:bolder;
  margin: 0 10px;
}

.fnc--header--contacts__mid img {
  margin-right: 15px;
}

.fnc--header--contacts__mid a {
  color: #2f3540;
}

.fnc--header--contacts__right img {
  /* margin-right: 20px; */
}

.fnc--header--contacts__right a {
  font-weight: 900;
  color: #2f3540;
  transition: font-sise 0s;
}

.fnc--header--contacts__right div {
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-right: 1px solid #e8e8e8;
}

.header--centerhead--inner__column2 {
  display: flex;
  align-items: center;
  flex-grow: 1;
  order: 2;
  padding: 0 15px;
  max-width: 560px;
  display: none;
}

@media all and (max-width: 1100px) {
  .header--centerhead--inner__column2 {
    order: 4;
    padding: 0 5px;
  }
}

@media all and (max-width: 600px) {
  .header--centerhead--inner__column2 {
    flex-basis: 100%;
  }
}

.header--centerhead--inner--column2__in1 {
  padding: 5px;
  flex-grow: 1;
}

.header--centerhead--inner--column2__in2 {
  padding: 5px;
  display: none;
}

.header--centerhead--inner__column3 {
  display: flex;
  order: 4;
  /* border-left: 1px solid var(--12-text-color); */
  /* padding: 0px 0 0 30px; */
}

@media all and (max-width: 1100px) {
  .header--centerhead--inner__column3 {
    order: 3;
  }
}

@media all and (max-width: 900px) {
  .header--centerhead--inner__column3 {
    padding: 0 0 0 0px;
    border-left: 0;
  }
}

@media all and (max-width: 800px) {
  .header--centerhead--inner__column3 {
    flex-direction: column;
  }
}

.header--centerhead--inner--column3__in1 {
  padding: 5px 20px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  display: none;
}

@media all and (max-width: 600px) {
  .header--centerhead--inner--column3__in1 {
    padding: 5px 5px;
  }
}

.header--centerhead--inner--column3__in2 {
  padding: 5px;
  display: flex;
  align-items: center;
  padding-left: 15px;
}

.header--underhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header--underhead__inner {
  max-width: 1620px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media all and (max-width: 700px) {
  .header--underhead__inner {
    flex-wrap: wrap;
  }
}

.header--underhead--inner__left {
  flex-grow: 1;
  padding-right: 24px;
  border-right: 1px solid #e8e8e8;
}

.header--underhead--inner__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding-left: 25px; */
  position: relative;
}

/*Ð¡Ð»Ð°Ð¹Ð´ÐµÑ€*/

.under--header--slider {}

.under--header--slider__left {}

.under--header--slider__center {
  /* min-height: 400px; */
}

.under--header--slider__right {}

/*Ð‘Ð»Ð¾Ðº ÐºÐ¾Ð½Ñ‚ÐµÐ½Ñ‚Ð°*/

.content--center--main {
  width: 100%;
  margin: 0 auto;
  /* max-width: 1416px; */
}

.content--center--inner {
  /* display: flex; */
}

.content--center--inner__left {
  flex-basis: 25%;
  max-width: 300px;
  padding-right: 15px;
}

@media all and (max-width: 800px) {
  .content--center--inner__left {
    display: none;
  }
}

.content--center--inner--left__column {}

.content--center--inner__center {
  flex-grow: 1;
  /* flex-basis: 80%; */
  flex-basis: 100%;
}

.content--center--inner--center__column {}

.content--center--inner__right {
  flex-basis: 260px;
  max-width: 260px;
}

@media all and (max-width: 800px) {
  .content--center--inner__right {
    display: none;
  }
}

.content--center--inner--right__column {}

.content--center--page {}

.content--center--page--cart {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 20px;
}

@media all and (max-width: 1100px) {
  .content--center--page--cart {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
  }
}

[data-page="category"] .content--center--page__text {
  /* max-width: 980px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.5em;
  margin-bottom: 70px; */
}

.content--center--page__main {}

/*Ð Ð°Ð·Ð´ÐµÐ»Ð¸Ñ‚ÐµÐ»Ð¸*/

.content--center__separator {}

.content--left__deliver {}

.content--center__deliver {}

.content--right__deliver {}

.content--footer__deliver {}

/*ÐŸÐ¾Ð´Ð²Ð°Ð»*/

.content--footer {
  width: 100%;
}

.footer-top {
  background: #e5e5e5;
  padding: 30px 0;
}

.footer-map {
  max-width: 350px;
  width: 100%;
  height: 250px;
  margin-right: 50px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  flex-grow: 1;
  padding: 15px 0;
}

.footer-block h5 {
  margin: 0;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-text {
  display: flex;
  align-items: center;
}

.footer-text img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-text p, .footer-text a {
  margin: 0;
  font-size: 16px;
  color: #222222;
}

.footer-text:not(:last-child) {
  margin-bottom: 25px;
}

.footer-tel {
  display: flex;
  align-items: center;
  margin: 4px 0;
}

.footer-text:last-child {
  margin-top: 25px;
}

.footer-tel img {
  margin-right: 10px;
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.footer-tel a {
  font-size: 16px;
  color: #222222;
}

.footer-tel:nth-of-type(3) img {
  opacity: 0;
}

.footer-top .container .row {
  align-items: center;
}

.footer-bottom {
  background: #c4c4c4;
  text-align: center;
  padding: 5px 0;
}

.footer-bottom .row {
  justify-content: space-between;
  width: 60%;
  align-items: center;
  margin-right: 0;
  margin-left: auto;
}

.footer-bottom span {
  font-size: 16px;
}

/*Ð¥Ð»ÐµÐ±Ð½Ñ‹Ðµ ÐºÑ€Ð¾ÑˆÐºÐ¸*/

.breads {}

.breads__container {
  padding: 10px 5px;
  display: flex;
}

.breads__inner {
  display: flex;
  align-items: center;
}

.breads--inner__item__separator {
  padding: 0 10px 0 0;
  font-size: 80%;
}

.breads--inner__item {
  padding: 0 10px 0 0;
}

.breads--inner__item__active {
  color: var(--text-orange);
}

/*ÐœÐ¾Ð´ÑƒÐ»Ð¸*/

/*ÐŸÐ¾Ð¸ÑÐº*/

.fnc--search {
  position: relative;
  z-index: 1;
}

.fnc--search__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.fnc--search__inner {}

.fnc--search__field {
  width: 100%;
}

.fnc--search__button {
  position: absolute;
  right: 0px;
}

.fnc--search__button button {
  background-image: url(/themes/main/magnifying-glass.png);
  background-repeat: no-repeat;
  background-color: var(--3-text-color);
  font-size: 0;
  background-position: 50%;
  padding: 0;
  border: 0;
  width: 41px;
  height: 41px;
  background-size: 24px;
  padding: 0;
  border-radius: 0 5px 5px 0;
}

.search--list--item {
  padding: 5px;
}

.search--list--item__name {}

.search--list--item__info {}

.fnc--search--dropdown {
  display: none;
  position: absolute;
  width: 100%;
}

.fnc--search--dropdown__inner {
  background: var(--22-text-color);
  border: 1px solid var(--5-text-color);
}

.fnc--search--dropdown__row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--11-text-color);
  cursor: pointer;
  cursor: hand;
}

.fnc--search--dropdown__row:hover {
  background: var(--11-text-color);
}

.fnc--search--dropdown__name {
  padding: 4px;
  flex-grow: 1;
}

.fnc--search--dropdown__price {
  padding: 4px;
  color: var(--14-text-color);
  flex-basis: 110px;
  text-align: center;
}

.fnc--search--dropdown__image {
  padding: 4px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 60px;
}

.fnc--search--dropdown__image img {
  max-width: 60px;
  max-height: 60px;
}

/*ÐÐ²Ñ‚Ð¾Ñ€Ð¸Ð·Ð°Ñ†Ð¸Ñ ÐºÐ½Ð¾Ð¿ÐºÐ¸*/

.fnc--login--buttons__container {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}

.fnc--login--buttons__inner {
  padding: 0 5px;
}

.fnc--login--buttons__inner:nth-child(1) button {
  background-color: transparent;
  padding: 5px 10px;
  border: 0;
  border-radius: 0;
  background-image: url("/themes/main/user.svg");
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 16px;
  padding-left: 25px;
  color: var(--1-text-color);
}

.fnc--login--buttons__inner:nth-child(2) button {
  background-color: transparent;
  padding: 5px 10px;
  border: 0;
  border-radius: 0;
  color: var(--1-text-color);
}

/*Ð Ð°Ð·Ð´ÐµÐ»Ñ‹ Ð¼ÐµÐ½ÑŽ*/

.menu--chapters {
  display: flex;
  /* flex-grow: 1; */
  justify-content: space-between;
}

.menu--chapters__item {
  padding: 5px 10px;
  position: relative;
}

.menu--chapters__item a {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}

.menu--chapters__submenu {
  display: none;
  position: absolute;
  top: 29px;
  left: 10px;
  background: #ffffff;
  box-shadow: 0px 1px 3px 0px #00000052;
  padding: 4px 0;
  z-index: 3;
  border-radius: 0 0 5px 5px;
}

.menu--chapters__submenu a {
  color: var(--1-text-color);
  font-size: 14px;
  opacity: 0.8;
  white-space: nowrap;
}

.menu--chapters--submenu__item.actrive a {
  color: var(--text-orange);
}

.menu--chapters--submenu__item {
  min-width: 130px;
  padding: 5px 10px;
}

.menu--chapters--submenu__item:hover:not(.actrive) {
  background: #f3ac00;
}

.menu--chapters__item:hover .menu--chapters__submenu {
  display: block;
}

.menu--chapters__item:hover>a, .menu--chapters--item__active>a {
  color: var(--text-orange);
}

.menu--chapters__item.has_sub:after {
  content: url("/img/header/arrow-down.png");
  display: block;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}

/*Ð Ð°Ð·Ð´ÐµÐ»Ñ‹ ÐºÐ¾Ð»Ð¾Ð½ÐºÐ°*/

.fnc--column--chapters {
  margin-bottom: 15px;
}

.fnc--column--chapters__title {
  padding: 10px;
  font-weight: bolder;
}

.fnc--column--chapters__container {
  padding: 10px;
}

.fnc--column--chapter0 {
  padding: 5px;
}

.fnc--column--chapter__active0 {
  padding: 5px;
}

.fnc--column--chapter1 {
  padding: 5px;
  padding-left: 20px;
}

.fnc--column--chapter__active1 {
  padding: 5px;
  padding-left: 20px;
}

.fnc--column--chapter2 {
  padding: 5px;
  padding-left: 40px;
}

.fnc--column--chapter__active2 {
  padding: 5px;
  padding-left: 40px;
}

.fnc--column--chapter3 {
  padding: 5px;
  padding-left: 60px;
}

.fnc--column--chapter__active3 {
  padding: 5px;
  padding-left: 60px;
}

/*Ð Ð°Ð·Ð´ÐµÐ»Ñ‹ Ñ†ÐµÐ½Ñ‚Ñ€*/

.fnc--center--chapters {
  padding: 50px 0;
}

.fnc--center--chapters__container {
  max-width: 1620px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.fnc--center--chapters__list--item {
  flex-basis: calc(25% - 40px);
  margin: 15px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

@media all and (max-width: 700px) {
  .fnc--center--chapters__container {
    flex-wrap: wrap;
  }
}

@media all and (max-width: 600px) {
  .fnc--center--chapters__list--item {
    flex-basis: calc(50% - 40px);
  }
}

@media all and (max-width: 400px) {
  .fnc--center--chapters__list--item {
    flex-basis: calc(100% - 40px);
  }
}

.fnc--center--chapters--item__main {}

.fnc--center--chapters--item__name {
  padding: 10px 0;
}

.fnc--center--chapters--item__name a {
  font-size: 18px;
}

.fnc--center--chapters--item__image {
  padding: 10px 0;
}

.fnc--center--chapters--item__image img {
  max-width: 100%;
  max-height: 300px;
}

.fnc--center--chapters--item__additional {}

.fnc--center--chapters--item__info {}

.fnc--center--chapters--item__button {
  padding: 10px 0;
}

.fnc--center--chapters--item__button a {
  border-bottom: 1px var(--5-text-color) solid;
  font-size: 14px;
  color: var(--5-text-color);
}

.fnc--center--chapters--item__button a:hover {
  border-bottom: 1px var(--3-text-color) solid;
  font-size: 14px;
  color: var(--3-text-color);
  text-decoration: none;
}

/*ÐœÐµÐ½ÑŽ Ð¼Ð¾Ð±Ð¸Ð»ÑŒÐ½Ð¾Ðµ*/

.menu--chapters--mobile {
  display: none;
}

/* @media all and (max-width: 700px) {
  .menu--chapters {
    display: none;
  }

  .menu--chapters--mobile {
    position: relative;
    display: block;
    width: 32px;
    height: 32px;
    margin-left: 0px;
    margin-top: 4px;
    margin-bottom: 4px;
  }
} */

.js__mobile--menu--container {
  /* display: none; */
  position: fixed;
  height: 100%;
  width: 0px;
  top: var(--hh);
  left: 0;
  z-index: 4292929;
  max-height: 100%;
  overflow-y: auto;
  background: var(--2-text-color);
  opacity: 0;
  height: calc(var(--vh, 1vh) * 100 - var(--hh));
  opacity: 0;
  transform: translateX(-150%);
  transition: 0.5s;
  padding-top: 10px;
}

.js__show--mobile--menu {
  font-size: 0;
  cursor: pointer;
  cursor: hand;
  width: 32px;
  height: 32px;
  background: url("/themes/main/burger_menu.svg");
  background-size: contain;
}

.js__show--mobile--menu.opened {
  background: url(/themes/main/delete.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.js__mobile--menu--active {
  width: 100%;
  opacity: 1;
  display: block;
  transform: translateX(0);
  background-color: rgba(44, 49, 53, 1);
  transition: 0.5s;
}

.fnc--mobile--chapters__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
  padding-right: 10px;
}

.billing--mobile {
  display: flex;
  align-items: center;
  border: 1px solid;
  border-color: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
}

.billing--mobile img {
  display: block;
  width: 25px;
  height: 25px;
}

.billing--mobile a {
  font-size: 20px;
  position: relative;
  padding: 5px;
  color: #fafafa;
}

.js__mobile--menu--active a {
  color: #fafafa;
}

.fnc--mobile--chapters__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  margin: auto;
  font-size: 14px;
  line-height: 1.8;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  padding: 8px;
}

.fnc--mobile--chapters__item img, .fnc--mobile--chapters__item_sub img {
  display: block;
  width: 20px;
  height: 20px;
}

.fnc--mobile--chapters__item a, .fnc--mobile--chapters__item_sub a {
  position: relative;
  padding-left: 15px;
  font-size: 16px;
}

.fnc--mobile--chapters__item_sub-wrap {
  background-color: rgb(28 31 33);
  transition: all 0s;
}

.fnc--mobile--chapters__item_sub {
  padding: 1px;
  border-bottom: 1px solid var(--bg-gray-color);
  width: 90%;
  margin: auto;
  font-size: 12px;
  line-height: 1.8;
  padding-top: 8px;
  padding-bottom: 8px;
  border-color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
}

.fnc--mobile--chapters__item.has-sub:after {
  content: "";
  display: block;
  position: relative;
  width: 15px;
  height: 15px;
  background-image: url(/themes/main/arrow-down-sign-to-navigate.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.2s ease;
  margin-left: 15px;
}

.fnc--mobile--chapters__item.has-sub.opened:after {
  transform: rotate(-180deg);
}

.fnc--mobile--chapters__top .languages {
  display: flex;
  align-items: center;
  padding: 5px;
  width: auto;
  font-weight: 500;
  flex-direction: row;
}

.fnc--mobile--chapters__top .languageact {
  order: unset;
}

.fnc--mobile--chapters__top .languageact a {
  color: white;
  border: 1px solid transparent;
  border-width: 10px;
  background-color: #40444f;
  font-weight: 500;
  font-size: 15px;
}

.fnc--mobile--chapters__top .languages div:not(:last-child) {
  margin-right: 7px;
}

.fnc--mobile--chapters__top .language a {
  color: #fafafa;
  opacity: 1;
  font-size: 15px;
}

/*ÐšÐ°Ñ‚Ð°Ð»Ð¾Ð³ Ð¼ÐµÐ½ÑŽ*/

.menu--catalog {
  display: flex;
}

.menu--catalog__item {
  padding: 10px 25px;
  position: relative;
}

.menu--catalog__submenu {
  display: none;
  position: absolute;
  top: 36px;
  left: 0px;
  background: var(--5-text-color);
  padding: 10px 15px;
  z-index: 1;
}

.menu--catalog__submenu a {
  color: var(--2-text-color);
  font-size: 13px !important;
}

.menu--catalog--submenu__item {
  min-width: 200px;
  padding: 5px 0;
}

.menu--catalog__item:hover .menu--catalog__submenu {
  display: block;
}

.menu--catalog__item:hover, .menu--catalog--item__active {
  background: var(--5-text-color);
}

.menu--catalog__item a {
  font-size: 14px;
}

.menu--catalog__item:hover a, .menu--catalog--item__active a {
  color: var(--2-text-color);
  font-size: 14px;
  text-decoration: none;
}

/*ÐšÐ°Ñ‚Ð°Ð»Ð¾Ð³ ÐºÐ¾Ð»Ð¾Ð½ÐºÐ°*/

.fnc--column--catalog {
  margin-bottom: 50px;
}

.fnc--column--catalog__title {
  font-size: 36px;
  font-weight: 900;
  color: #040404;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
  padding: 10px 0;
}

.fnc--column--catalog__container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fnc--column--catalog__container:after {
  content: "";
  height: 2px;
  width: 100%;
  background: #f8f9f7;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
}

.fnc--column--category0 {
  margin: 0 2px;
}

.fnc--column--category0 a {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 2px solid #f8f9f7;
  background: #ffffff;
  padding: 30px 75px;
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 10px 10px 0 0;
}

.fnc--column--category0.active a {
  color: #ffffff;
  background: #e1aa00;
  border-color: #e1aa00;
}

.fnc--column--category1 {
  padding: 5px;
  padding-left: 20px;
}

.fnc--column--category__active1 {
  padding: 5px;
  padding-left: 20px;
}

.fnc--column--category__active1 a {
  color: var(--3-text-color);
  text-decoration: underline;
}

.fnc--column--category2 {
  padding: 5px;
  padding-left: 40px;
}

.fnc--column--category__active2 {
  padding: 5px;
  padding-left: 40px;
}

.fnc--column--category__active2 a {
  color: var(--3-text-color);
  text-decoration: underline;
}

.fnc--column--category3 {
  padding: 5px;
  padding-left: 60px;
}

.fnc--column--category__active3 {
  padding: 5px;
  padding-left: 60px;
}

.fnc--column--category__active3 a {
  color: var(--3-text-color);
  text-decoration: underline;
}

/*ÐšÐ°Ñ‚Ð°Ð»Ð¾Ð³ Ñ†ÐµÐ½Ñ‚Ñ€*/

.fnc--center--catalog {
  padding: 20px 0 50px 0;
  margin: 60px 0 30px 0;
  background: var(--12-text-color);
}

.fnc--center--catalog__title {
  font-size: 26px;
  padding: 30px 0;
  color: var(--1-text-color);
  text-align: center;
  font-weight: bolder;
}

.fnc--center--catalog__container {
  max-width: 1620px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.fnc--center--catalog__list--item {
  flex-basis: calc(25% - 40px);
  margin: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  background: var(--22-text-color);
  border-radius: 10px;
}

@media all and (max-width: 700px) {
  .fnc--center--catalog__container {
    flex-wrap: wrap;
  }
}

@media all and (max-width: 600px) {
  .fnc--center--catalog__list--item {
    flex-basis: calc(50% - 40px);
  }
}

@media all and (max-width: 400px) {
  .fnc--center--catalog__list--item {
    flex-basis: calc(100% - 40px);
  }
}

.fnc--center--catalog__list--item:hover {
  box-shadow: 0 0 20px -10px var(--13-text-color);
}

.fnc--center--catalog--item__main {
  display: flex;
  flex-direction: column-reverse;
}

.fnc--center--catalog--item__name {
  padding: 20px 0;
}

.fnc--center--catalog--item__name a {
  font-size: 16px;
  font-weight: bolder;
}

.fnc--center--catalog--item__name a:hover {
  color: var(--5-text-color);
  text-decoration: none;
}

.fnc--center--catalog--item__image {
  padding: 0px 0;
}

.fnc--center--catalog--item__image img {
  width: 100%;
  max-height: 100%;
  display: flex;
  border-radius: 10px 10px 0 0;
}

.fnc--center--catalog--item__additional {
  display: none;
}

.fnc--center--catalog--item__info {}

.fnc--center--catalog--item__button {
  padding: 10px 0;
}

.fnc--center--catalog--item__button a {
  border-bottom: 1px var(--5-text-color) solid;
  font-size: 14px;
  color: var(--5-text-color);
}

.fnc--center--catalog--item__button a:hover {
  border-bottom: 1px var(--3-text-color) solid;
  font-size: 14px;
  color: var(--3-text-color);
  text-decoration: none;
}

.fnc--center--catalog--item__submenu {
  padding: 10px 0;
}

.fnc--center--catalog--item__submenu--list {
  max-width: 100%;
  padding: 3px 0;
}

.fnc--center--catalog--item__submenu--list a {}

/*ÐšÐ°Ñ‚Ð°Ð»Ð¾Ð³ Ð¼ÐµÐ³Ð° Ð¼ÐµÐ½ÑŽ/*


/*-- ÐœÐ•Ð“ÐÐœÐ•ÐÐ®--*/

.fnc--megamenu {
  width: 100%;
  background: var(--5-text-color);
}

.fnc--megamenu--container {
  max-width: 1620px;
  cursor: pointer;
  cursor: hand;
  margin: 0 auto;
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.fnc--megamenu--category {
  display: flex;
  align-items: center;
  cursor: pointer;
  cursor: hand;
  flex-grow: 1;
  text-align: center;
  justify-content: center;
  flex-direction: column;
}

.fnc--megamenu--category:hover {
  display: flex;
  align-items: center;
  background: var(--2-text-color);
}

.fnc--megamenu--category:hover .fnc--megamenu--category__link {
  color: var(--5-text-color);
  text-decoration: none;
}

.fnc--megamenu--category__active {
  display: flex;
  align-items: center;
  cursor: pointer;
  cursor: hand;
  flex-grow: 1;
  text-align: center;
  justify-content: center;
  background: var(--2-text-color);
  flex-direction: column;
}

.fnc--megamenu--category__link {
  color: var(--2-text-color);
  display: block;
  padding: 15px 10px;
}

.fnc--megamenu--category__link__active {
  color: var(--5-text-color);
  display: block;
  padding: 15px 10px;
}

.fnc--megamenu--submenu__load {
  opacity: 0;
  display: block;
}

.fnc--megamenu--submenu {
  opacity: 1;
  display: none;
}

.fnc--megamenu--category__active:hover .fnc--megamenu--submenu {
  display: block;
}

.fnc--megamenu--category:hover .fnc--megamenu--submenu {
  display: block;
}

.fnc--megamenu--submenu {
  position: relative;
  left: 0%;
  top: 0px;
  z-index: 200;
  display: none;
}

.fnc--megamenu--submenu:hover {
  display: block;
}

.fnc--megamenu--submenu__inner {
  position: absolute;
}

@media all and (max-width: 770px) {
  .fnc--megamenu--submenu__inner {
    display: none;
  }
}

.fnc--megamenu--submenu__inner--info {
  position: relative;
  width: 100%;
  z-index: 200;
  background: var(--2-text-color);
  border: 1px solid var(--5-text-color);
  border-top: 0;
}

.fnc--megamenu--submenu__row {
  display: flex;
  flex-direction: row;
}

.fnc--megamenu--submenu__column {
  display: flex;
  flex-direction: column;
}

.fnc--megamenu--submenu__column {
  min-width: 250px;
  text-align: left;
}

.fnc--megamenu--submenu__main {
  padding: 5px 20px;
  margin-bottom: 5px;
}

.fnc--megamenu--submenu__mainlink {}

.fnc--megamenu--submenu__mainsublink {
  padding: 3px 3px 3px 10px;
}

.fnc--megamenu--submenu__link {
  color: var(--5-text-color);
}

.fnc--megamenu--submenu__link:hover {
  color: var(--5-text-color);
  text-decoration: underline;
}

.fnc--megamenu--submenu__sublink {
  color: var(--5-text-color);
  font-size: 90%;
}

.fnc--megamenu--submenu__sublink:hover {
  color: var(--5-text-color);
  font-size: 90%;
  text-decoration: none;
}

/* ÐÐ´Ð°Ð¿Ñ‚Ð¸Ð²Ð½Ð¾Ðµ Ð¼ÐµÐ½ÑŽ ÐºÐ°Ñ‚Ð°Ð»Ð¾Ð³Ð° */

.fnc--catalog--adapt {
  display: none;
}

@media all and (max-width: 700px) {
  .fnc--megamenu {
    display: none;
  }

  .menu--catalog {
    display: none;
  }

  .header--underhead--inner__left {
    width: 100%;
  }
}

.fnc--adaptive--category {
  padding: 15px 10px;
  text-align: center;
  background: var(--5-text-color);
  border-bottom: 1px solid var(--3-text-color);
}

.fnc--adaptive--category a {
  color: var(--2-text-color);
  font-size: 16px;
}

.fnc--adaptive--category:hover a {
  color: var(--2-text-color);
  font-size: 16px;
}

/*Ð›ÐµÐ½Ñ‚Ð° ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð¾Ð² ÐµÐ´Ð¸Ð½Ð¸Ñ†Ð°*/

.content--center--article {
  padding: 10px;
  margin-bottom: 30px;
}

.page--article--back {
  padding: 10px 0;
}

.page--article--back a {
  padding: 10px 45px;
  border: none;
  display: inline-block;
  margin: 0 auto;
  border-radius: 3px;
  background: #ffffff;
  font-size: 16px;
  color: #222222;
}

.page--article--back a:hover {
  color: var(--text-orange);
  text-decoration: none;
}

.page--article--name {
  padding: 10px 0;
}

.page--article--text {
  padding: 10px 0;
  line-height: 1.5em;
}

.page--article--text:after, .page--article--text:before {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.page--article--text img {
  max-width: 100%;
  float: left;
  margin-right: 30px;
  max-width: 50%;
  max-height: 300px;
  /* width: 100%; */
  /* object-fit: scale-down; */
  /* aspect-ratio: 3 / 2;  */
}

.no-image .page--article--text img {
  display: none;
}

.oplata .page--article--text {
  display: flex;
}

.oplata .page--article--text img {
  max-width: 300px;
  object-fit: scale-down;
  width: auto;
  margin-bottom: 15px;
  float: none;
}

.page--article--date {
  padding: 10px 0;
  font-size: 14px;
  font-style: italic;
  text-align: end;
}

.content--center--article>.row {
  justify-content: space-between;
  align-items: center;
}

.fnc--articles--listitem__block {
  height: 100%;
}

/*Ð›ÐµÐ½Ñ‚Ð° ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð¾Ð² ÑÑ‚Ñ€Ð°Ð½Ð¸Ñ†Ð°*/

.fnc--articles--list {
  width: 100%;
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: flex-start;
}

.fnc--articles--listitem {
  flex-basis: 30%;
  margin: 0 1.65%;
  margin-bottom: 30px;
}

@media all and (max-width: 1100px) {
  .fnc--articles--listitem {
    flex-basis: 46%;
    margin: 0 2%;
    margin-bottom: 30px;
  }
}

@media all and (max-width: 600px) {
  .fnc--articles--listitem {
    flex-basis: 96%;
    margin: 0;
    margin-bottom: 30px;
  }

  .fnc--articles--list {
    justify-content: center;
  }
}

.fnc--articles--listitem__main {
  padding: 5px;
}

.fnc--articles--listitem__name {
  padding: 5px;
}

.fnc--articles--listitem__image img {
  max-width: 100%;
}

.fnc--articles--listitem__info {}

.fnc--articles--listitem__date {
  padding: 10px 20px;
  font-size: 14px;
  text-align: end;
  font-style: italic;
}

/*Ð›ÐµÐ½Ñ‚Ð° ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð¾Ð² Ð² ÐºÐ¾Ð»Ð¾Ð½ÐºÐµ*/

.fnc--column--articles {}

.fnc--column--articles__title {}

.fnc--column--articles__container {}

.fnc--column--article_listitem {}

.fnc--column--article--listitem__img {}

.fnc--column--article--listitem__img img {
  max-width: 100%;
}

.fnc--column--article--listitem__info {}

.fnc--column--article--listitem__name {}

.fnc--column--article--listitem__date {}

.fnc--column--articles__button {}

/*Ð›ÐµÐ½Ñ‚Ð° ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð¾Ð² Ð¿Ð¾ Ñ†ÐµÐ½Ñ‚Ñ€Ñƒ*/

.fnc--center--articles {
  position: relative;
  padding: 30px 0;
}

.fnc--center--articles:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 70%;
  background: #e1aa00;
  bottom: 0;
  z-index: -1;
}

.fnc--center--articles__title {
  font-size: 36px;
  text-align: center;
  font-weight: 900;
  padding-bottom: 90px;
  text-transform: uppercase;
}

.fnc--center--articles__container {
  max-width: 1620px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}

.fnc--center--articles__listitem, .fnc--articles--listitem {
  display: flex;
  flex-direction: column;
  text-align: center;
  border: 1px solid #f6f6f7;
  background: #ffffff;
  border-radius: 0 0 10px 10px;
  padding-bottom: 10px;
  justify-content: space-between;
  transition: transform 0.3s ease-in-out;
}

.fnc--center--articles__listitem__main {
  display: flex;
  flex-direction: column-reverse;
  border-radius: 0 0 10px 10px;
}

.fnc--center--articles__listitem *, .item--block * {
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.fnc--center--articles--listitem__image {
  display: flex;
  justify-content: center;
  height: 230px;
}

.fnc--center--articles--listitem__image a {
  font-size: 0;
  line-height: 0;
  width: 100%;
  display: flex;
}

.fnc--center--articles--listitem__image img {
  max-width: 100%;
  /* max-height: 250px; */
  /* min-height: 250px; */
  max-height: 250px;
  object-fit: cover;
  display: flex;
  width: 100%;
}

.fnc--center--articles--listitem__info {
  text-align: left;
  padding: 10px 20px;
  font-size: 16px;
}

.fnc--center--articles--listitem__info p {
  margin: 0;
  line-height: 1.5rem;
}

.fnc--center--articles--listitem__name {
  font-size: 16px;
  padding: 25px 20px 10px 20px;
  text-align: left;
}

.fnc--center--articles--listitem__name a {
  font-weight: bolder;
  font-size: 16px;
  color: #222222;
  font-weight: 900;
}

.fnc--center--article--listitem__date {}

.fnc--center--articles--listitem__button {
  text-align: center;
  padding: 10px 20px;
}

.fnc--center--articles__button {
  text-align: center;
  margin-top: 35px;
}

.fnc--center--articles__button a {
  padding: 10px 45px;
  border: none;
  display: inline-block;
  margin: 0 auto;
  border-radius: 3px;
  background: #ffffff;
  font-size: 16px;
  color: #222222;
}

.fnc--center--articles__button a:hover {
  color: var(--text-orange);
  text-decoration: none;
}

.fnc--center--articles__slider:before {
  content: url("/img/backgrounds/Shape1.png");
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  transform: translate(25%, -35%);
}

/*Ð¡Ð»Ð°Ð¹Ð´ÐµÑ€*/

.fnc--slider--container {
  transition: none;
}

.fnc--slider--inner {
  transition: none;
}

.fnc--slider--inner__images {}

.js__adv--banner__absolute {
  position: absolute;
  transition: none;
  transition: none;
}

.js__fnc--slider--inner__relative {
  position: relative;
  display: flex;
  justify-content: center;
  transition: none;
}

.js__fnc--slider--inner__absolute {
  position: absolute;
  opacity: 0;
  transition: none;
}

.fnc--slider--inner__text {
  position: absolute;
}

.fnc--slider--inner--arrows__left {
  position: absolute;
  top: 50%;
  left: 1%;
  z-index: 100;
}

.fnc--slider--inner--arrows__right {
  position: absolute;
  top: 50%;
  right: 1%;
  z-index: 100;
}

.fnc--slider--inner--arrow__left {}

.fnc--slider--inner--arrow__left button {
  background-image: url(/themes/main/back.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  font-size: 0;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  padding: 5px 5px;
}

.fnc--slider--inner--arrow__right {}

.fnc--slider--inner--arrow__right button {
  background-image: url(/themes/main/next.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  font-size: 0;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  padding: 5px 5px;
}

.fnc--slider--inner__buttons {
  position: absolute;
  top: 90%;
  width: 100%;
}

.fnc--slider--inner--buttons__inner {
  display: flex;
  justify-content: center;
}

.fnc--slider--inner--button {
  padding: 5px 10px;
  background: var(--22-text-color);
  border-radius: 100%;
  border: 1px solid var(--12-text-color);
  margin: 0 5px;
}

.fnc--slider--inner--button:hover {
  padding: 5px 10px;
  background: var(--5-text-color);
  color: var(--2-text-color);
  border-radius: 100%;
  border: 1px solid var(--12-text-color);
  margin: 0 5px;
}

.fnc--slider--inner--button__active {
  padding: 5px 10px;
  background: var(--5-text-color);
  color: var(--2-text-color);
  border-radius: 100%;
  border: 1px solid var(--12-text-color);
  margin: 0 5px;
}

/*ÐŸÐ°Ð³Ð¸Ð½Ð°Ñ†Ð¸Ñ*/

.fnc--pagination {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.fnc--paging--button {
  margin: 5px;
  padding: 6px 12px;
  border: 1px solid var(--text-orange);
  color: var(--button-text);
  background: var(--text-orange);
  border-radius: 5px;
}

.fnc--paging--button:hover {
  margin: 5px;
  padding: 6px 12px;
  border: 1px solid var(--text-orange);
  color: var(--text-orange);
  background: var(--2-text-color);
}

.fnc--paging--button__now {
  margin: 5px;
  padding: 6px 12px;
  border: 1px solid var(--text-orange);
  border-radius: 5px;
  color: var(--text-orange);
}

/*Ð“Ð°Ð»ÐµÑ€ÐµÑ ÑÐ»Ð°Ð¹Ð´ÐµÑ€*/

.fnc--slider--gallery {
  padding: 50px 10px;
}

.fnc--slider--gallery__title {
  font-size: 18px;
  text-align: center;
}

.fnc--slider--gallery__container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.fnc--slider--gallery--container__center {
  margin: 0 auto;
}

.fnc--slider--gallery--container--center__main {
  display: flex;
  flex-direction: row;
}

.fnc--slider--gallery--container--center__listitem {
  display: flex;
}

.fnc--slider--gallery--container--center__item {
  width: 286px;
  margin: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fnc--slider--gallery--container--center__image img {
  max-width: 100%;
}

.fnc--slider--gallery--button {
  padding: 10px 0;
  text-align: center;
}

.fnc--slider--gallery--button a {
  border-bottom: 1px var(--5-text-color) solid;
  font-size: 14px;
  color: var(--5-text-color);
}

.fnc--slider--gallery--button a:hover {
  border-bottom: 1px var(--3-text-color) solid;
  font-size: 14px;
  color: var(--3-text-color);
  text-decoration: none;
}

/*Ð“Ð°Ð»ÐµÑ€ÐµÑ ÑÑ‚Ð¾Ð»Ð±ÐµÑ†*/

.fnc--column--gallery {}

.fnc--column--gallery__title {}

.fnc--column--gallery__container {}

.fnc--column--gallery__listitem {}

.fnc--column--gallery--listitem__name {}

.fnc--column--gallery--listitem__image {}

.fnc--column--gallery__button {}

/*Ð“Ð°Ð»ÐµÑ€ÐµÑ ÑÑ‚Ñ€Ð°Ð½Ð¸Ñ†Ð°*/

.fnc--gallery--list {
  max-width: 1620px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5px;
}

.fnc--gallery--listitem {
  flex-basis: 22%;
  margin-bottom: 10px;
}

@media all and (max-width: 600px) {
  .fnc--gallery--listitem {
    flex-basis: 30%;
  }
}

@media all and (max-width: 400px) {
  .fnc--gallery--listitem {
    flex-basis: 90%;
  }
}

.fnc--gallery--listitem__image img {
  max-width: 100%;
}

.fnc--gallery--listitem__text {}

/*Ð’Ð¾Ð¿Ñ€Ð¾Ñ-Ð¾Ñ‚Ð²ÐµÑ‚*/

.fnc--addfaq--container {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.fnc--addfaq--title {
  font-size: 17px;
  text-align: center;
}

.fnc--addfaq--item {
  padding: 3px;
}

/*ÐžÐ¿Ñ€Ð¾ÑÑ‹*/

.fnc--polls--main__inner {
  display: flex;
  position: relative;
  padding: 10px 0;
  padding-right: 20px;
}

.fnc--polls--main--inner__votes {
  position: absolute;
  right: 0;
}

input.js__poll--check {
  display: none;
}

input.js__poll--check+label:before {
  content: "\2713";
  font-size: 13px;
  color: transparent;
  text-align: center;
  font-weight: bolder;
  border: 2px solid var(--5-text-color);
  background: var(--2-text-color);
  cursor: pointer;
  cursor: hand;
  padding: 0 3px 0 4px;
  transition: all 0.3s ease;
}

input.js__poll--check:checked+label:before {
  content: "\2713";
  font-size: 13px;
  color: var(--5-text-color);
  text-align: center;
  font-weight: bolder;
  border: 2px solid var(--5-text-color);
  background: var(--2-text-color);
  cursor: pointer;
  cursor: hand;
  padding: 0 3px 0 4px;
}

input.js__poll--check:disabled+label:before {
  content: "\2713";
  font-size: 13px;
  color: transparent;
  text-align: center;
  font-weight: bolder;
  border: 2px solid var(--11-text-color);
  background: var(--2-text-color);
  cursor: pointer;
  cursor: hand;
  padding: 0 3px 0 4px;
  transition: all 0.3s ease;
}

.fnc--polls--main__linein {
  height: 20px;
  background: #eee;
}

/*Ð¤Ð¾Ñ€Ð¼Ñ‹ ÑÐ²ÑÐ·Ð¸*/

.fnc--feedback {
  /* padding: 50px 10px; */
  /* background: var(--5-text-color); */
  /* color: var(--2-text-color); */
}

.fnc--feedback--container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.fnc--feedback__title {
  font-size: 20px;
  padding: 10px 0;
}

.fnc--feedback__second--title {
  font-size: 16px;
  padding: 10px 0;
}

.fnc--feedback--main {}

.fnc--feedback--main__line {}

.fnc--feedback--main__name {
  padding: 5px 0;
  display: none;
}

.fnc--feedback--main__param {
  padding: 5px 0;
}

.fnc--feedback--main__button {
  padding: 10px 0;
  text-align: center;
}

.fnc--feedback--main__button button {
  /* color: var(--5-text-color); */
  /* background: var(--2-text-color); */
}

.fnc--feedback--main__button button:hover {
  background: var(--5-text-color);
  color: var(--2-text-color);
}

/*ÐžÑ‚Ð·Ñ‹Ð²Ñ‹ Ð² ÐºÐ¾Ð»Ð¾Ð½ÐºÐµ*/

.fnc--column--comments {}

.fnc--column--comments__title {}

.fnc--center--comments--container {}

.fnc--center--comments--listitem__main {}

.fnc--center--comments--listitem__name {}

.fnc--center--comments--listitem__text {}

.fnc--center--comments--listitem__date {}

/*ÐžÑ‚Ð·Ñ‹Ð²Ñ‹ Ð² ÑÐ»Ð°Ð¹Ð´ÐµÑ€Ðµ*/

.fnc--slider--comments {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
}

.fnc--slider--comments__title {
  font-size: 17px;
  text-align: center;
}

.fnc--slider--comments--container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.fnc--slider--comments__main {
  padding: 0 40px;
  max-width: 500px;
  width: 100%;
}

.fnc--slider--comments__name {
  padding: 5px 0;
}

.fnc--slider--comments__text {
  padding: 5px 0;
}

.fnc--slider--comments__date {
  padding: 5px 0;
}

/*ÐžÑ‚Ð·Ñ‹Ð²Ñ‹ ÑÑ‚Ñ€Ð°Ð½Ð¸Ñ†Ð°*/

.fnc--comments--list {
  padding: 10px;
  max-width: 1620px;
}

.fnc--addcomment--container {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.fnc--addcomment--title {
  text-align: center;
  font-size: 17px;
}

.fnc--addcomment--item {
  padding: 3px;
}

.fnc--comments--listitem {
  border-bottom: 1px solid var(--12-text-color);
}

.fnc--comments--listitem__main {
  display: flex;
  align-items: center;
  padding: 3px 0;
  justify-content: space-between;
}

.fnc--comments--listitem__name {
  font-weight: bolder;
}

.fnc--comments--listitem__text {
  font-size: 17px;
  padding: 3px 0;
}

/*Ð—Ð°ÐºÐ°Ð·Ð°Ñ‚ÑŒ Ð·Ð²Ð¾Ð½Ð¾Ðº*/

.fnc--order--call {
  position: relative;
  z-index: 11;
}

/*ÐŸÐ¾Ð¿Ð°Ð¿*/

.js__body--popup {}

.popup--callme--container {}

.popup--container__main {}

.popup--container__close {
  text-align: right;
  position: absolute;
  right: 15px;
  top: 15px;
  display: flex;
}

.popup--container__close button {
  background: transparent;
  padding: 0;
  display: flex;
}

.popup--container__close button:hover {
  box-shadow: none;
  background: transparent;
}

.popup--container__title {
  display: block;
  font-size: 1.5em;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  text-align: center;
}

.popup--container__line {
  padding: 5px 0;
}

.popup--container__button {
  text-align: center;
  margin-top: 15px;
}

.popup--container__required {
  margin-top: 10px;
  text-align: start;
}

.popup--container__text {
  margin-top: 20px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.5;
}

/*ÐÐ²Ñ‚Ð¾Ñ€Ð¸Ð·Ð°Ñ†Ð¸Ñ*/

.fnc--login--fields {}

.fnc--login--fields--container {}

.fnc--login--fields__main {}

.fnc--login--fields__field {
  padding: 5px 0;
}

.fnc--login--fields__buttons {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.fnc--login--fields__social {
  text-align: center;
  padding: 5px 0;
}

.fnc--login--fields--social__buttons {
  display: flex;
  justify-content: space-evenly;
}

.fnc--login--fields__forgot {
  padding: 5px 0;
  text-align: right;
}

.js__forgot--button {
  cursor: pointer;
  cursor: hand;
}

/*Ð ÐµÐ³Ð¸ÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ*/

.registration--center--page {
  max-width: 1620px;
  margin: 0 auto;
  width: 100%;
  padding: 30px 10px;
}

.registration--main {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.registration--main__title {
  font-size: 22px;
  padding: 3px 0;
}

.registration--main__inner {}

.registration--main__line {
  padding: 3px 0;
}

.registration--main__name {
  padding: 3px 0;
}

.registration--main__param {
  padding: 3px 0;
}

.registration--main__button {
  padding: 3px 0;
}

.js__registration--page--info {
  color: var(--14-text-color);
}

/*ÐÐºÐºÐ°ÑƒÐ½Ñ‚*/

.account--center--page {
  max-width: 1620px;
  margin: 0 auto;
  width: 100%;
  padding: 30px 10px;
}

.account--info--row {
  font-size: 22px;
  padding: 3px 0;
}

.account--info--row__welcome {}

.account--tabs {
  display: flex;
  align-items: flex-end;
  margin: 20px 0;
  border-bottom: 1px solid var(--5-text-color);
  height: 42px;
}

@media all and (max-width: 700px) {
  .account--tabs {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }
}

.account--tabs__position {
  margin-right: 1px;
}

.account--tab {
  color: var(--3-text-color);
  padding: 5px 30px;
  cursor: pointer;
  cursor: hand;
  font-weight: bolder;
}

.account--tab:hover {
  color: var(--1-text-color);
  padding: 5px 30px;
  cursor: pointer;
  cursor: hand;
  font-weight: bolder;
}

.account--tab__active {
  color: var(--1-text-color);
  padding: 5px 30px;
  cursor: pointer;
  cursor: hand;
  font-weight: bolder;
}

.account--tabs__columns {
  display: flex;
  justify-content: space-between;
}

.account--tabs---column__left {
  flex-basis: 48%;
}

.account--tabs---column__right {
  flex-basis: 48%;
}

@media all and (max-width: 700px) {
  .account--tabs__columns {
    flex-direction: column;
  }

  .account--tabs---column__left {
    flex-basis: 100%;
  }

  .account--tabs---column__right {
    flex-basis: 100%;
  }
}

.account--tabs--column__title {
  font-size: 18px;
  padding: 3px;
}

.account--main__line {
  padding: 3px;
}

.account--main__name {
  padding: 3px;
}

.account--main__param {
  padding: 3px;
}

.account--main__button {
  padding: 3px;
}

.js__user--data--info, .js__user--main--info {
  color: var(--14-text-color);
  padding: 3px;
  font-size: 12px;
}

.js__user--avatar--container img {
  max-width: 150px;
  max-height: 150px;
}

.fnc--account--order {
  margin-bottom: 15px;
  border-bottom: 1px solid var(--12-text-color);
  padding-bottom: 10px;
}

.fnc--account--order__wrap {}

.fnc--account--order__titlerow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fnc--account--order__number {}

.fnc--account--order__parent {}

.fnc--account--order__inforow {
  padding: 5px 0;
}

.fnc--cartlist--container {
  padding: 5px 0;
  max-width: 1000px;
  margin: 0 auto;
}

.fnc--account--order__more {
  text-decoration: underline;
  cursor: pointer;
  cursor: hand;
}

/*Ð‘Ð»Ð¾Ðº Ð½Ð°Ð´ ÑÐ¿Ð¸ÑÐºÐ¾Ð¼ Ñ‚Ð¾Ð²Ð°Ñ€Ð¾Ð²*/

.fnc--itemshow--container {
  display: flex;
  justify-content: space-between;
  padding: 10px 5px;
  border-bottom: 1px solid var(--12-text-color);
  border-top: 1px solid var(--12-text-color);
}

@media all and (max-width: 600px) {
  .fnc--itemshow--container {
    flex-wrap: wrap;
  }
}

/*Ð‘Ð»Ð¾Ðº ÑÐ¾Ñ€Ñ‚Ð¸Ñ€Ð¾Ð²ÐºÐ¸*/

.fnc--sorting {
  display: flex;
  align-items: center;
}

@media all and (max-width: 600px) {
  .fnc--sorting {
    display: none;
  }
}

.fnc--sorting__title {
  padding: 5px 15px 5px 0;
}

.fnc--sorting__wrap {
  display: flex;
  align-items: center;
}

.fnc--sorting__cell {
  padding: 5px;
}

.fnc--sorting--cell__inner {
  display: flex;
  align-items: center;
}

.fnc--sorting--cell--inner__arrow {
  padding-left: 5px;
}

.js__sort--button {
  padding: 5px 10px;
}

/*Ð‘Ð»Ð¾Ðº ÐºÐ¾Ð»-Ð²Ð¾ Ñ‚Ð¾Ð²Ð°Ñ€Ð¾Ð² Ð½Ð° ÑÑ‚Ñ€Ð°Ð½Ð¸Ñ†Ðµ*/

.fnc--perpage--items {}

.fnc--perpage--items--container select {
  padding: 5px 10px;
}

/*Ð‘Ð»Ð¾Ðº Ñ‚Ð¸Ð¿Ð° Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñ‚Ð¾Ð²Ð°Ñ€Ð¾Ð²*/

.fnc--viewblock--items {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: flex-end;
  padding-right: 15px;
}

.fnc--viewblock--table div {
  width: 26px;
  height: 26px;
  background: url("/themes/main/table.jpg") no-repeat;
  cursor: pointer;
  cursor: hand;
  margin: 0 2px;
}

.fnc--viewblock--table__active div {
  width: 26px;
  height: 26px;
  background: url("/themes/main/table_act.jpg") no-repeat;
  cursor: pointer;
  cursor: hand;
  margin: 0 2px;
}

.fnc--viewblock--list div {
  width: 26px;
  height: 26px;
  background: url("/themes/main/list.jpg") no-repeat;
  cursor: pointer;
  cursor: hand;
  margin: 0 2px;
}

.fnc--viewblock--list__active div {
  width: 26px;
  height: 26px;
  background: url("/themes/main/list_act.jpg") no-repeat;
  cursor: pointer;
  cursor: hand;
  margin: 0 2px;
}

/*Ð¡Ð¿Ð¸ÑÐ¾Ðº Ñ‚Ð¾Ð²Ð°Ñ€Ð¾Ð² Ñ‚Ð°Ð±Ð»Ð¸Ñ†Ð°*/

.fnc--products--listVer {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 50px;
  justify-content: space-between;
}

.fnc--products--listitem {
  flex-basis: calc(20% - 12px);
  margin: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--12-text-color);
  position: relative;
  border-radius: 10px;
  position: relative;
}

@media all and (max-width: 1520px) {
  .fnc--products--listitem {
    flex-basis: calc(25% - 12px);
  }
}

@media all and (max-width: 1100px) {
  .fnc--products--listitem {
    flex-basis: calc(33% - 12px);
  }
}

@media all and (max-width: 600px) {
  .fnc--products--listitem {
    flex-basis: calc(50% - 12px);
  }
}

.fnc--products--listitem:hover {
  box-shadow: 0 0 20px -10px var(--13-text-color);
}

.fnc--products--listitem__icon {
  position: absolute;
  top: 0px;
  left: 0px;
}

.fnc--products--listitem__main {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
}

.fnc--products--listitem__name {
  padding: 0 15px;
  text-align: center;
  height: 50px;
  display: flex;
  align-items: center;
}

.fnc--products--listitem__name a {
  font-weight: bolder;
}

.fnc--products--listitem__image {
  display: flex;
  height: 268px;
  padding: 0 0 0px 0;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

@media all and (max-width: 1520px) {
  .fnc--products--listitem__image {
    height: 272px;
  }
}

@media all and (max-width: 1300px) {
  .fnc--products--listitem__image {
    height: 250px;
  }
}

@media all and (max-width: 400px) {
  .fnc--products--listitem__image {
    height: 182px;
  }
}

.fnc--products--listitem__image img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 10px 10px 0 0;
}

.fnc--products--listitem__additional {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 15px;
  flex-wrap: wrap;
}

.fnc--products--listitem__votes {
  display: flex;
  align-items: center;
  padding: 5px 0;
  justify-content: center;
}

.fnc--products--listitem__vote {
  padding: 0 5px;
}

.fnc--products--listitem__info {}

.fnc--products--listitem__buttons {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 5px 0;
}

.fnc--products--listitem__shopinfo {
  display: flex;
  flex-direction: column;
  padding: 0px 0;
  width: 100%;
}

.fnc--products--listitem__price {
  display: flex;
  font-size: 130%;
  flex-direction: column;
  padding: 5px 15px;
  min-height: 62px;
  justify-content: center;
}

.fnc--products--listitem__oldprice {
  color: var(--5-text-color);
  font-size: 60%;
  text-decoration: line-through;
  padding-right: 10px;
}

.fnc--products--listitem__actprice {
  font-weight: bolder;
}

.fnc--products--listitem__buy {
  width: 100%;
  min-height: 32px;
  display: flex;
  justify-content: center;
  border-radius: 0 0 10px 10px;
}

.fnc--products--listitem__buy button {
  width: 100%;
  padding: 15px 20px;
  border-radius: 0 0 10px 10px;
  text-transform: uppercase;
  font-weight: bolder;
}

/*Ð¡Ð¿Ð¸ÑÐ¾Ðº Ñ‚Ð¾Ð²Ð°Ñ€Ð¾Ð² ÑÐ¿Ð¸ÑÐ¾Ðº*/

.fnc--products--listHor {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}

.fnc--products--listhoritem {
  display: flex;
  flex-direction: column;
  margin: 2px 0;
  border: 1px solid #eee;
  position: relative;
}

.fnc--products--listhoritem:hover {
  box-shadow: 0 0 2px 1px var(--13-text-color);
}

.fnc--products--listhoritem__icon {
  position: absolute;
  top: 0px;
  left: 0px;
}

.fnc--products--listhoritem__inner {
  display: flex;
  flex-direction: row;
}

.fnc--products--listhoritem__main {
  padding-left: 15px;
}

.fnc--products--listhoritem__name {
  padding: 5px 0;
}

.fnc--products--listhoritem__image {
  display: flex;
  flex-basis: 200px;
  height: 220px;
  padding: 10px 0;
  align-items: center;
  justify-content: center;
}

.fnc--products--listhoritem__image img {
  max-width: 100%;
  max-height: 200px;
  display: block;
}

.fnc--products--listhoritem__votes {
  display: flex;
  align-items: center;
  padding: 5px 0;
  justify-content: center;
}

.fnc--products--listhoritem__vote {
  padding: 0 5px;
}

.fnc--products--listhoritem__info {
  padding: 5px;
}

.fnc--products--listhoritem__buttons {
  display: flex;
}

.fnc--products--listhoritem__buttons div {
  padding-right: 10px;
}

.fnc--products--listhoritem__price {
  padding: 5px;
  color: var(--14-text-color);
}

/*Ð¡Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ð° Ñ‚Ð¾Ð²Ð°Ñ€Ð°*/

.content--item--page {}

.itempage--nextitems {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.itempage--nextitems__prev {}

.itempage--nextitems__next {
  padding: 10px 0;
}

.itempage--overblock {}

.itempage--overblock__name {}

.itempage--overblock__code {}

.itempage--columns {
  display: flex;
  padding: 5px 10px;
}

.itempage--left--column {
  width: 100%;
  max-width: 405px;
}

.itempage--center--column {
  flex-grow: 1;
  padding: 0 15px;
}

.itempage--right--column {
  width: 100%;
  max-width: 250px;
}

@media all and (max-width: 1000px) {
  .itempage--right--column {
    display: none;
  }

  .itempage--nextitems {
    display: none;
  }
}

@media all and (max-width: 600px) {
  .itempage--columns {
    flex-wrap: wrap;
  }

  .itempage--left--column {
    max-width: 100%;
  }

  .itempage--center--column {
    padding: 0 5px;
  }

  .itempage--right--column {
    padding: 0 5px;
    max-width: 100%;
  }

  .itempage--nextitems {
    display: none;
  }
}

.itempage--item--image {
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  cursor: hand;
}

.itempage--item--image img {
  max-width: 100%;
  max-height: 435px;
}

.itempage--item--image__icons {}

.itempage--center--name {}

.itempage--center--code {
  padding: 5px 0;
  color: var(--3-text-color);
  font-size: 16px;
}

.itempage--center--status {
  padding: 5px 0;
  font-size: 16px;
}

.itempage--center--pricefor {
  padding: 3px 0;
}

.itempage--center--price {
  padding: 3px 0;
  color: var(--14-text-color);
  font-size: 18px;
}

.itempage--center--valutes {
  padding: 3px 0;
}

.itempage--center--valutes__inner {}

.itempage--center--brand {
  padding: 3px 0;
}

.itempage--center--text {
  padding: 3px 0;
}

.itempage--center--buttons {
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.itempage--center--quest {
  padding-right: 5px;
}

.itempage--center--quest button {
  color: var(--1-text-color);
  background: transparent;
  font-weight: Bolder;
}

.itempage--center--quest button:hover {
  color: var(--3-text-color);
  background: transparent;
}

.itempage--center--favor {
  padding: 0 15px;
  position: relative;
  top: -2px;
}

.itempage--center--favor button {
  padding: 0;
}

.itempage--center--compare {
  padding: 0 15px;
  position: relative;
  top: -2px;
}

.itempage--center--compare button {
  padding: 0;
}

.favor--item {
  background-image: url("/themes/main/heart.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  width: 20px;
  height: 20px;
  font-size: 0;
}

.favor--item__active, .favor--item__active:hover, .favor--item:hover {
  background-image: url("/themes/main/favorite_red.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  width: 20px;
  height: 20px;
  font-size: 0;
}

.compare--item {
  background-image: url("/themes/main/comparison.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  width: 20px;
  height: 20px;
  font-size: 0;
}

.compare--item__active, .compare--item__active:hover, .compare--item:hover {
  background-image: url("/themes/main/comparison_red.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  width: 20px;
  height: 20px;
  font-size: 0;
}

/*Ð¢Ð°Ð±Ñ‹ Ñ‚Ð¾Ð²Ð°Ñ€Ð°*/

.itempage--tabs {
  padding: 10px 10px;
}

.itempage--tabs--buttons {
  display: flex;
  align-items: flex-end;
  margin: 20px 0;
  border-bottom: 1px solid var(--5-text-color);
  height: 42px;
}

.itempage--tabs--button {
  margin-right: 1px;
}

.itempage--tabs--button__inner {
  color: var(--3-text-color);
  padding: 5px 30px;
  cursor: pointer;
  cursor: hand;
  font-weight: bolder;
}

.itempage--tabs--button__inner:hover {
  color: var(--1-text-color);
  padding: 5px 30px;
  cursor: pointer;
  cursor: hand;
  font-weight: bolder;
}

.itempage--tabs--button__inner--active {
  color: var(--1-text-color);
  padding: 5px 30px;
  cursor: pointer;
  cursor: hand;
  font-weight: bolder;
}

@media all and (max-width: 600px) {
  .itempage--tabs--buttons {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .itempage--tabs--button__inner {
    height: auto;
    width: 100%;
  }

  .itempage--tabs--button__inner--active {
    height: auto;
    width: 100%;
  }

  .itempage--tabs--button {
    width: 100%;
    margin-right: 0px;
  }

  .itempage--tabs--button__inner {
    padding: 15px 30px;
  }

  .itempage--tabs--button__inner--active {
    padding: 15px 30px;
  }
}

.itempage--tab--info {}

.itempage--files--container {}

.itempage--files--listitem {
  display: flex;
  align-items: center;
}

.itempage--files--listitem__icon {
  width: 50px;
}

.itempage--files--listitem__icon img {
  max-width: 100%;
}

.itempage--files--listitem__name {
  padding-left: 15px;
}

.itempage--center--prices {
  font-size: 22px;
  padding: 15px 0;
  display: flex;
  align-items: flex-end;
  font-weight: bolder;
}

.itempage--center--valutes {
  padding: 5px 0;
  display: flex;
  align-items: flex-end;
}

.itempage--product__oldprice {
  color: var(--3-text-color);
  text-decoration: line-through;
  padding-right: 10px;
  font-size: 14px;
}

.itempage--product__actprice {}

.itempage--valute__oldprice {
  color: var(--1-text-color);
  text-decoration: line-through;
  padding-right: 10px;
  font-size: 12px;
}

.itempage--valute__actprice {}

.itempage--center--buyinfo {
  padding: 5px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.itempage--center--quantity {
  width: 80px;
  padding-right: 5px;
}

.itempage--center--quantity input {
  text-align: center;
  padding: 17px 20px;
  position: relative;
  width: 95px;
  font-size: 14.5px;
  border: 1px solid var(--12-text-color);
  border-radius: 10px 0 0 10px;
}

.itempage--center--buybutton {
  padding: 0 5px;
  position: Relative;
}

.itempage--center--buybutton button {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: Bolder;
  padding: 15px 40px;
  border-radius: 10px;
}

.itempage--center--oneclick button:hover {}

.itempage--center--oneclick {
  padding: 0 5px;
}

.itempage--center--oneclick button {
  color: var(--1-text-color);
  background: transparent;
  font-weight: Bolder;
}

.itempage--center--oneclick button:hover {
  color: var(--3-text-color);
  background: transparent;
}

/*-- Ð‘Ð»Ð¾Ðº Ð´Ð»Ñ Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ñ‹Ñ… Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð¾Ð² Ñ‚Ð¾Ð²Ð°Ñ€Ð°--*/

.itempage--center--options {
  border-bottom: 1px solid var(--12-text-color);
  border-top: 1px solid var(--12-text-color);
  padding: 10px 0 20px 0;
  margin-top: 10px;
}

.itempage--center--option {
  position: relative;
  margin: 0px 0;
  display: inline-block;
  align-items: center;
}

.itempage--center--option__input {
  display: flex;
  align-items: center;
  border: 1px solid var(--12-text-color);
  padding: 10px;
  cursor: pointer;
  cursor: hand;
  min-width: 300px;
  border-radius: 5px;
}

.itempage--center--option--name {
  padding: 10px 0;
}

.itempage--center--option--nameinner {
  position: relative;
}

.itempage--center--option__image {
  padding-right: 10px;
}

.itempage--center--option__image img {
  max-width: 24px;
  max-height: 24px;
  display: block;
}

.itempage--center--option__dropdown {
  display: none;
  position: absolute;
  width: 100%;
  border: 1px solid var(--12-text-color);
  background: var(--22-text-color);
  z-index: 2;
  top: 42px;
}

.itempage--center--option__dropdown--line {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid var(--12-text-color);
  cursor: pointer;
  cursor: hand;
}

.itempage--center--option__dropdown-line:hover {
  background: var(--12-text-color);
}

.itempage--center--checks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.itempage--center--check {
  display: flex;
  align-items: center;
  margin: 2px;
  margin-left: 0;
  padding: 5px;
  cursor: pointer;
  cursor: hand;
}

.itempage--center--check div {
  padding: 2px;
  font-weight: Bolder;
}

/*ÐÐºÑ†Ð¸Ð¾Ð½Ð½Ñ‹Ðµ Ð½Ð°Ð±Ð¾Ñ€Ñ‹*/

.itempage--actpocket--container {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  background: var(--12-text-color);
  padding: 10px;
  border-radius: 10px;
}

.itempage--actpocket--wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.itempage--actpocket--title {
  font-size: 18px;
  font-weight: Bolder;
  padding: 5px;
  margin-bottom: 10px;
}

.itempage--actpocket--center {
  display: flex;
  align-items: center;
}

@media all and (max-width: 600px) {
  .itempage--actpocket--wrap {
    flex-direction: column;
  }

  .itempage--actpocket--center {
    flex-direction: column;
  }
}

.itempage--actpocket--plus {
  padding: 0 20px;
  font-size: 18px;
  font-weight: bolder;
}

.itempage--actpocket--item {
  padding: 20px 20px;
}

.itempage--actpocket--img {
  height: 210px;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.itempage--actpocket--img img {
  max-width: 100%;
  max-height: 200px;
}

.itempage--actpocket--name {
  padding: 10px 0;
  font-weight: bolder;
}

.itempage--actpocket--oldprice {
  color: var(--3-text-color);
  text-decoration: line-through;
  padding-right: 10px;
  font-size: 14px;
  padding: 2px 0;
}

.itempage--actpocket--newprice {
  font-size: 18px;
  font-weight: bolder;
  padding: 2px 0;
}

.itempage--actpocket--summ {
  padding: 0 20px;
  font-size: 16px;
  font-weight: bolder;
}

.itempage--actpocket--allprice {
  font-weight: bolder;
  font-size: 22px;
}

.itempage--actpocket--buybutton {
  padding: 10px 0;
}

.itempage--actpocket--buybutton button {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: Bolder;
  padding: 15px 40px;
  border-radius: 10px;
}

/*Ð¡Ñ‡ÐµÑ‚Ñ‡Ð¸Ðº*/

.itempage--center--timer {
  background: var(--12-text-color);
  padding: 10px;
  font-size: 110%;
  color: var(--14-text-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 4px 0;
}

.itempage--center--timer__title {
  color: var(--14-text-color);
}

.itempage--center--clock {
  display: flex;
  flex-direction: row;
  padding-left: 10px;
  font-size: 150%;
}

/*Ð ÐµÐ¹Ñ‚Ð¸Ð½Ð³*/

.itempage--center--rate {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 5px 0;
}

.fnc--addcomment--vote {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2px 0;
}

.fnc--addcomment--vote__name {
  padding-right: 10px;
}

.itempage--vote--rate {
  margin-right: 5px;
}

.fnc--addcomment--vote__rate {
  margin-right: 3px;
  cursor: pointer;
  cursor: hand;
}

.item--vote {
  background-image: url("/themes/main/star.svg");
  width: 12px;
  height: 12px;
}

.item--vote--act {
  background-image: url("/themes/main/star_act.svg");
  width: 12px;
  height: 12px;
}

.itempage--center--rate .item--vote {
  background-image: url("/themes/main/star.svg");
  width: 18px;
  height: 18px;
}

.itempage--center--rate .item--vote--act {
  background-image: url("/themes/main/star_act.svg");
  width: 18px;
  height: 18px;
}

.fnc--comments--list__votes {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 5px 0;
}

.fnc--comments--list__vote {
  margin-right: 3px;
}

/*Ð¥Ð°Ñ€Ð°ÐºÑ‚ÐµÑ€Ð¸ÑÑ‚Ð¸ÐºÐ¸ Ñ‚Ð¾Ð²Ð°Ñ€Ð°*/

.item--page--chars--container {}

.item--page--chars__row {
  display: flex;
  flex-direction: row;
  width: 100%;
  border-bottom: 1px solid var(--12-text-color);
}

.item--page--chars__row:nth-child(odd) {
  background: var(--hard-light-color);
}

.item--page--chars__row--name {
  padding: 5px;
  flex-basis: 20%;
  font-size: 100%;
}

.item--page--chars__row--text {
  padding: 5px;
  font-size: 100%;
  flex-basis: 80%;
}

.fnc--product--icon__action {
  background-image: url(/themes/main/medal.svg);
  background-repeat: no-repeat;
  background-size: 30px;
  width: 30px;
  height: 30px;
}

.fnc--product--icon__top {
  background-image: url(/themes/main/reward.svg);
  background-repeat: no-repeat;
  background-size: 30px;
  width: 30px;
  height: 30px;
}

.fnc--product--icon__new {
  background-image: url(/themes/main/new.svg);
  background-repeat: no-repeat;
  background-size: 30px;
  width: 30px;
  height: 30px;
}

/*Ð¢Ð¾Ð²Ð°Ñ€Ñ‹ Ð² ÑÐ»Ð°Ð¹Ð´ÐµÑ€Ðµ ÑÐ¸ÑÑ‚ÐµÐ¼Ð½Ñ‹Ðµ ÑÑ‚Ð¸Ð»Ð¸*/

.fnc--slider--sameitems {
  position: relative;
  padding: 15px 5px;
  max-width: 1620px;
  margin: 0 auto;
}

.fnc--slider--sameitems__title {
  font-size: 26px;
  padding: 30px 0;
  color: var(--1-text-color);
  text-align: center;
  font-weight: bolder;
}

.fnc--slider--sameitems__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.slider--sameitems--inner {}

.slider--sameitems__container {
  display: block;
  overflow: hidden;
  margin: 0px auto;
}

.js__slider--sameitems__container {
  display: flex;
  flex-direction: row;
}

.fnc--slider--sameitem__main {
  display: flex;
}

.fnc--slider--topitems {
  position: relative;
  padding: 15px 5px;
  max-width: 1620px;
  margin: 0 auto;
}

.fnc--slider--topitems__title {
  font-size: 26px;
  padding: 30px 0;
  color: var(--1-text-color);
  text-align: center;
  font-weight: bolder;
}

.fnc--slider--topitems__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.slider--topitems--inner {}

.slider--topitems__container {
  display: block;
  overflow: hidden;
  margin: 0px auto;
}

.js__slider--topitems__container {
  display: flex;
  flex-direction: row;
}

.fnc--slider--topitem__main {
  display: flex;
  align-items: flex-start;
}

.fnc--slider--newitems {
  position: relative;
  padding: 15px 5px;
  max-width: 1620px;
  margin: 0 auto;
}

.fnc--slider--newitems__title {
  font-size: 26px;
  padding: 30px 0;
  color: var(--1-text-color);
  text-align: center;
  font-weight: bolder;
}

.fnc--slider--newitems__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.slider--newitems--inner {}

.slider--newitems__container {
  display: block;
  overflow: hidden;
  margin: 0px auto;
}

.js__slider--newitems__container {
  display: flex;
  flex-direction: row;
}

.fnc--slider--newitem__main {
  display: flex;
}

.fnc--slider--actitems {
  position: relative;
  padding: 15px 5px;
  max-width: 1620px;
  margin: 0 auto;
}

.fnc--slider--actitems__title {
  font-size: 26px;
  padding: 30px 0;
  color: var(--1-text-color);
  text-align: center;
  font-weight: bolder;
}

.fnc--slider--actitems__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.slider--actitems--inner {}

.slider--actitems__container {
  display: block;
  overflow: hidden;
  margin: 0px auto;
}

.js__slider--actitems__container {
  display: flex;
  flex-direction: row;
}

.fnc--slider--actitem__main {
  display: flex;
}

.fnc--slider--lasitems {
  position: relative;
  padding: 0 5px;
  max-width: 1620px;
  margin: 0 auto;
}

.fnc--slider--lasitems__title {
  font-size: 26px;
  padding: 30px 0;
  color: var(--1-text-color);
  text-align: center;
  font-weight: bolder;
}

.fnc--slider--lasitems__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.slider--lasitems--inner {}

.slider--lasitems__container {
  display: block;
  overflow: hidden;
  margin: 0px auto;
}

.js__slider--lasitems__container {
  display: flex;
  flex-direction: row;
}

.fnc--slider--lasitem__main {
  display: flex;
}

.fnc--slider--favitems {
  position: relative;
  padding: 0 5px;
  max-width: 1620px;
  margin: 0 auto;
}

.fnc--slider--favitems__title {
  font-size: 18px;
  padding: 20px 0;
}

.fnc--slider--favitems__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.slider--favitems--inner {}

.slider--favitems__container {
  display: block;
  overflow: hidden;
  margin: 0px auto;
}

.js__slider--favitems__container {
  display: flex;
  flex-direction: row;
}

.fnc--slider--favitem__main {
  display: flex;
}

.fnc--slider--accessoriesitems {
  position: relative;
  padding: 0 5px;
  max-width: 1620px;
  margin: 0 auto;
}

.fnc--slider--accessoriesitems__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.slider--accessoriesitems--inner {}

.slider--accessoriesitems__container {
  display: block;
  overflow: hidden;
  margin: 0px auto;
}

.js__slider--accessoriesitems__container {
  display: flex;
  flex-direction: row;
}

.fnc--slider--accessoriesitem__main {
  display: flex;
}

.fnc--slider--complectitems {
  position: relative;
  padding: 0 5px;
  max-width: 1620px;
  margin: 0 auto;
}

.fnc--slider--complectitems__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.slider--complectitems--inner {}

.slider--complectitems__container {
  display: block;
  overflow: hidden;
  margin: 0px auto;
}

.js__slider--complectitems__container {
  display: flex;
  flex-direction: row;
}

.fnc--slider--complectitem__main {
  display: flex;
}

/*Ð¢Ð¾Ð²Ð°Ñ€Ñ‹ Ð² ÑÐ»Ð°Ð¹Ð´ÐµÑ€Ðµ*/

.fnc--slider--item__left {
  padding-right: 5px;
  box-sizing: border-box;
}

.fnc--slider--item__left button {
  background-image: url(/themes/main/back.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  font-size: 0;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  padding: 5px 5px;
}

.fnc--slider--item__right {
  padding-left: 5px;
  box-sizing: border-box;
}

.fnc--slider--item__right button {
  background-image: url(/themes/main/next.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  font-size: 0;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  padding: 5px 5px;
}

.fnc--slider--listitem {
  width: 288px;
  margin: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--12-text-color);
  position: relative;
  border-radius: 10px;
}

@media all and (max-width: 1100px) {
  .fnc--slider--listitem {
    width: 288px;
  }
}

.fnc--slider--listitem:hover {
  box-shadow: 0 0 20px -10px var(--13-text-color);
}

.fnc--items--slider__main {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
}

.fnc--items--slider__icon {
  position: absolute;
  left: -5px;
  top: -5px;
}

.fnc--items--slider__name {
  padding: 0 15px;
  text-align: center;
  height: 50px;
  display: flex;
  align-items: center;
  position: relative;
}

.fnc--items--slider__name a {
  font-weight: bolder;
}

.fnc--items--slider__image {
  padding: 0px 0;
  height: 308px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 10px 0 0;
}

.fnc--items--slider__image img {
  max-width: 100%;
  max-height: 308px;
  border-radius: 10px 10px 0 0;
  display: block;
}

.fnc--products--slider__additional {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 15px;
}

.fnc--products--slider__buttons {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-basis: 50%;
  padding: 5px 0;
}

.fnc--products--slider__votes {
  display: flex;
  align-items: center;
  padding: 5px 0;
  flex-basis: 50%;
}

.fnc--products--slider__vote {
  padding: 0 2px;
}

.fnc--products--slider__shopinfo {
  display: flex;
  flex-direction: column;
  padding: 0px 0;
  width: 100%;
}

.fnc--products--slider__price {
  display: flex;
  font-size: 130%;
  flex-direction: column;
  padding: 5px 15px;
  min-height: 62px;
  justify-content: center;
}

.fnc--products--slider__oldprice {}

.fnc--products--slider__actprice {}

.fnc--products--slider__buy {
  width: 100%;
  min-height: 32px;
  display: flex;
  justify-content: center;
  border-radius: 0 0 10px 10px;
}

.fnc--products--slider__buy button {
  width: 100%;
  padding: 15px 20px;
  border-radius: 0 0 10px 10px;
  text-transform: uppercase;
  font-weight: bolder;
}

.fnc--slider--item__button {
  text-align: center;
}

.fnc--slider--item__button a {
  padding: 10px 15px;
  border: 1px solid transparent;
  border-bottom: 1px solid var(--5-text-color);
  display: inline-block;
  margin: 0 auto;
  border-radius: 10px;
}

.fnc--slider--item__button a:hover {
  border: 1px solid var(--5-text-color);
  background: var(--5-text-color);
  color: var(--2-text-color);
  text-decoration: none;
  border-radius: 10px;
}

/*Ð¢Ð¾Ð¿ Ñ‚Ð¾Ð²Ð°Ñ€Ñ‹ Ð² Ñ†ÐµÐ½Ñ‚Ñ€Ðµ*/

.fnc--center-topitems {
  max-width: 1620px;
  width: 100%;
  padding: 10px;
  margin: 0 auto;
}

.fnc--center-topitems__title {
  font-size: 18px;
  padding: 20px 0;
}

.fnc--center-topitems__ver--container {
  display: flex;
  flex-wrap: wrap;
}

.fnc--center-topitems__hor--container {}

/*Ð¢Ð¾Ð²Ð°Ñ€Ñ‹ Ð² ÑÑ‚Ð¾Ð»Ð±Ð¸ÐºÐµ*/

.fnc--items--column {
  position: relative;
  padding: 15px 5px;
  max-width: 1620px;
  margin: 0 auto;
}

.fnc--items--column__title {
  font-size: 16px;
  padding: 10px 0;
  color: var(--1-text-color);
  text-align: center;
  font-weight: bolder;
}

.fnc--items--column__container {}

.fnc--items--column__listitem {
  border: 1px solid var(--12-text-color);
  border-radius: 6px;
  margin-bottom: 10px;
}

.fnc--items--column__main {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
}

.fnc--items--column__name {
  text-align: center;
  padding: 5px 0;
  font-weight: bolder;
}

.fnc--items--column__price {
  text-align: center;
  padding: 5px;
}

.fnc--items--column__image--left, .fnc--items--column__image--right {
  text-align: center;
}

.fnc--items--column__image--left img {
  max-width: 100%;
  max-height: 100%;
}

.fnc--items--column__image--right img {
  max-width: 100%;
  max-height: 100%;
}

.fnc--products--column__buy {
  padding: 10px 0;
  text-align: center;
}

.fnc--items--column__button {
  padding: 8px 0;
  text-align: center;
}

/*ÐžÐºÐ½Ð¾ Ð·Ð°Ð´Ð°Ñ‚ÑŒ Ð²Ð¾Ð¿Ñ€Ð¾Ñ*/

.popup--container--iteminfo {
  display: flex;
}

.popup--container--iteminfo__image {
  width: 100px;
  text-align: center;
}

.popup--container--iteminfo__image img {
  max-width: 100%;
  max-height: 100px;
}

.popup--container--iteminfo__main {}

.popup--container--iteminfo__name {
  font-size: 18px;
  padding-bottom: 10px;
}

.popup--container--iteminfo__code {}

/*Ð¡Ð»Ð°Ð¹Ð´ÐµÑ€ Ð¼Ð°Ð»ÐµÐ½ÑŒÐºÐ¸Ñ… Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ð¹*/

.fnc--small--images__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.fnc--small--images__left {
  padding-right: 5px;
  box-sizing: border-box;
}

.fnc--small--images__right {
  padding-left: 5px;
  box-sizing: border-box;
}

.fnc--small--images__left button {
  background-image: url(/themes/main/back.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  font-size: 0;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  padding: 5px 5px;
}

.fnc--small--images__right button {
  background-image: url(/themes/main/next.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  font-size: 0;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  padding: 5px 5px;
}

.fnc--small--images__center {
  width: 100%;
}

.fnc--small--images--inner {
  display: flex;
  flex-direction: row;
}

.fnc--small--images--listitem__main {
  margin: 2px;
  width: 79.75px;
  height: 79.75px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  cursor: hand;
}

.fnc--small--images--listitem__main:hover {
  box-shadow: 0 0 2px 1px var(--13-text-color);
}

.fnc--small-image--button {}

.fnc--small-image--button img {
  max-width: 100%;
  max-height: 71px;
  display: block;
}

/*Ð‘Ð¾Ð»ÑŒÑˆÐ¾Ðµ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ðµ*/

.fnc--bigimage--header--line {
  display: flex;
  justify-content: space-between;
}

.fnc--bigimage--header__name {
  font-size: 18px;
}

.fnc--bigimage--header__code {}

.fnc--bigimage--inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.fnc--bigimage--left {
  position: absolute;
  z-index: 200;
  top: 50%;
  left: 0px;
}

.fnc--bigimage--right {
  position: absolute;
  z-index: 200;
  top: 50%;
  right: 0px;
}

.js__slider--small--images--popup {
  overflow-y: hidden;
  margin: 0 auto;
}

.js__slider--small--images--inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.js__slider--small--images--item {
  border: 1px solid transparent;
  cursor: pointer;
  cursor: hand;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  margin: 2px;
  height: 80px;
}

.js__slider--small--images--item img {
  display: block;
  max-width: 78px;
  max-height: 78px;
}

.js__image--itembig {
  cursor: pointer;
  cursor: hand;
}

/*ÐŸÑ€Ð¾Ð¸Ð·Ð²Ð¾Ð´Ð¸Ñ‚ÐµÐ»Ð¸ Ð² ÑÐ»Ð°Ð¹Ð´ÐµÑ€Ðµ*/

.fnc--slider--brands {
  position: relative;
  padding: 0 5px;
  max-width: 1620px;
  margin: 0 auto;
}

.fnc--slider--brands__title {
  font-size: 18px;
  padding: 15px 0;
  color: var(--3-text-color);
  border-bottom: 1px solid var(--3-text-color);
  margin-bottom: 10px;
  background-image: url("/themes/main/apple.svg");
  background-repeat: no-repeat;
  background-position: 0% 50%;
  background-size: 30px;
  padding-left: 40px;
}

.fnc--slider--brands__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.slider--brands--inner {}

.slider--brands__container {
  display: block;
  overflow: hidden;
  margin: 0px auto;
}

.js__slider--brands__container {
  display: flex;
  flex-direction: row;
}

.fnc--slider--brands__main {
  display: flex;
}

.fnc--slider--brands__left {
  padding-right: 5px;
  box-sizing: border-box;
}

.fnc--slider--brands__right {
  padding-left: 5px;
  box-sizing: border-box;
}

.fnc--slider--listbrand {
  width: 263px;
  margin: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #eee;
}

.fnc--slider--listbrand:hover {
  box-shadow: 0 0 2px 1px var(--13-text-color);
}

.fnc--brands--slider__name {
  padding: 5px;
  text-align: center;
}

.fnc--brands--slider__image {
  padding: 5px 0;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fnc--brands--slider__image img {
  max-width: 100%;
  max-height: 200px;
}

.fnc--slider--brands__button {
  padding: 5px 0;
  text-align: center;
}

.fnc--slider--brands__button a {
  padding: 10px 15px;
  border: 1px solid transparent;
  border-bottom: 1px solid var(--5-text-color);
  display: inline-block;
  margin: 0 auto;
}

.fnc--slider--brands__button a:hover {
  border: 1px solid var(--5-text-color);
  background: var(--5-text-color);
  color: var(--2-text-color);
  text-decoration: none;
}

/*ÐŸÑ€Ð¾Ð¸Ð·Ð²Ð¾Ð´Ð¸Ñ‚ÐµÐ»Ð¸ Ð² ÑÑ‚Ð¾Ð»Ð±Ð¸ÐºÐµ*/

.fnc--brands--column {}

.fnc--brands--column__title {
  font-size: 18px;
  padding: 20px 0;
}

.fnc--brands--column--container {}

.fnc--brands--column__listitem {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.fnc--brands--column__name {}

.fnc--brands--column__image--left img {
  max-width: 100%;
}

.fnc--brands--column__image--right img {
  max-width: 100%;
}

.fnc--brands--column__button {
  padding: 10px 0;
}

/*ÐŸÑ€Ð¾Ð¸Ð·Ð²Ð¾Ð´Ð¸Ñ‚ÐµÐ»Ð¸ Ñ†ÐµÐ½Ñ‚Ñ€*/

.fnc--brands--list {
  padding: 30px 0;
}

.fnc--brands--container {
  max-width: 1620px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.fnc--brands--listitem {
  flex-basis: calc(33% - 40px);
  margin: 15px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

@media all and (max-width: 700px) {
  .fnc--brands--container {
    flex-wrap: wrap;
  }
}

@media all and (max-width: 600px) {
  .fnc--brands--listitem {
    flex-basis: calc(50% - 40px);
  }
}

@media all and (max-width: 400px) {
  .fnc--brands--listitem {
    flex-basis: calc(100% - 40px);
  }
}

.fnc--brands--listitem:hover {
  box-shadow: 0 0 1px 0 var(--3-text-color);
}

.fnc--brands--listitem__main {}

.fnc--brands--listitem__name {
  padding: 10px 0;
}

.fnc--brands--listitem__name a {
  font-size: 18px;
}

.fnc--brands--listitem__image {
  padding: 10px 0;
  display: flex;
  align-items: center;
  height: 200px;
  justify-content: center;
}

.fnc--brands--listitem__image img {
  max-width: 100%;
}

.fnc--brands--listitem__info {}

/*Ð¤Ð¸Ð»ÑŒÑ‚Ñ€Ñ‹*/

.mobile--show--filters {
  display: none;
  margin: 0 auto;
  padding: 10px 0;
  text-align: center;
}

.js__filters--popup {
  display: none;
  position: fixed;
  height: 100%;
  width: 0px;
  top: 0px;
  left: 0;
  z-index: 4292929;
  max-height: 100%;
  background: var(--22-text-color);
  border-right: 1px solid var(--4-text-color);
  opacity: 0;
}

.js__filters--popup--content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 100%;
}

.js__filters--popup--close {
  padding: 5px;
  text-align: right;
}

@media all and (max-width: 800px) {
  .js__filters--wrapper {
    display: none;
  }

  .mobile--show--filters {
    display: block;
  }
}

.fnc--filters--container {
  padding: 5px 10px;
}

.js__filters--popup--content {
  padding: 5px 10px;
}

.fnc--filters--title {
  font-weight: bolder;
  font-size: 18px;
  display: none;
}

.fnc--filters--wrap {}

.fnc--filters--item {
  border-bottom: 1px solid var(--5-text-color);
  padding-bottom: 15px;
}

.fnc--filters--item__name {
  padding: 15px 0;
  font-size: 16px;
}

.fnc--filters--item__params {
  padding: 3px 0;
}

.fnc--filters--item__inner {
  display: flex;
  padding: 3px 0;
  align-items: center;
}

.fnc--filters--item__inner--name {
  padding: 0 5px 0 0;
}

.fnc--filters--item__inner--param {
  flex-grow: 1;
  padding: 0 5px;
}

.fnc--filters--item__inner--slider {
  display: flex;
  padding: 3px 0;
  justify-content: space-between;
  align-items: center;
}

.fnc--filters--item__inner--slider input {
  padding: 5px 20px;
}

.fnc--filters--item__inner select {
  padding: 5px 20px;
}

.fnc--filters--item__inner--slider div:nth-child(2) {
  padding: 0 5px;
}

.fnc--filters--button {
  padding: 15px 0;
}

.label--filter--checkbox {
  width: 14px;
  height: 14px;
  border: 1px solid var(--5-text-color);
  background: var(--22-text-color);
  display: block;
  cursor: pointer;
  cursor: hand;
  position: relative;
}

input[type="checkbox"]:checked+label:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: var(--5-text-color);
  position: absolute;
  top: 2px;
  left: 2px;
}

input[type="checkbox"]:not([disabled]):hover+label:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: var(--5-text-color);
  position: absolute;
  top: 2px;
  left: 2px;
}

input[type="checkbox"]:disabled+label {
  background: var(--11-text-color);
  border: 1px solid var(--11-text-color);
  cursor: default;
}

input[type="radio"]:checked+label:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: var(--5-text-color);
  position: absolute;
  top: 2px;
  left: 2px;
}

input[type="radio"]:not([disabled]):hover+label:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: var(--5-text-color);
  position: absolute;
  top: 2px;
  left: 2px;
}

input[type="radio"]:disabled+label {
  background: var(--11-text-color);
  border: 1px solid var(--11-text-color);
  cursor: default;
}

.js__filter--check {
  display: none;
}

.js__brand--check {
  display: none;
}

.js__slider--price {
  margin: 10px 0;
}

/*ÐšÐ¾Ñ€Ð·Ð¸Ð½Ð°*/

.fnc--cart--container {
  cursor: pointer;
  cursor: hand;
  background-image: url(/themes/main/shopping-cart.svg);
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: 0px 50%;
  padding-left: 35px;
  min-height: 100%;
  display: flex;
  align-items: center;
}

@media all and (max-width: 570px) {
  .fnc--cart--container {
    width: 25px;
    height: 25px;
    position: relative;
    margin: 0 auto;
    padding-left: 0px;
  }

  .fnc--cart--container__quantity {
    position: absolute;
    background: var(--5-text-color);
    color: var(--2-text-color);
    padding: 0px 4px;
    border-radius: 100%;
    left: -1px;
    top: -2px;
    font-size: 11px;
    border: 1px solid var(--5-text-color);
  }
}

.fnc--cart--container__title {
  font-weight: bolder;
  padding-bottom: 5px;
  display: none;
}

.fnc--cart--container__amount {
  font-weight: Bolder;
}

@media all and (max-width: 800px) {}

.fnc--cartlist--container table {
  width: 100%;
  padding: 10px 0;
}

.fnc--cartlist--container table td {
  padding: 5px;
  vertical-align: middle;
}

.js__cart--popup {
  width: 1000px;
}

.fnc--cartlist--row__title {
  background: var(--5-text-color);
  color: var(--2-text-color);
}

.fnc--cartlist--row__total {
  background: var(--5-text-color);
  color: var(--2-text-color);
}

.fnc--cartlist--row:nth-child(odd) {
  background: var(--12-text-color);
}

.fnc--cartlist--cell__code {
  width: 80px;
  word-wrap: break-word;
  text-align: center;
}

.fnc--cartlist--row__title .fnc--cartlist--cell__img {
  font-size: 0;
}

.fnc--cartlist--cell__img {
  width: 60px;
  text-align: center;
}

.fnc--cartlist--cell__img img {
  max-width: 100%;
  max-height: 60px;
}

.fnc--cartlist--cell__qnt {
  width: 80px;
  text-align: center;
}

.fnc--cartlist--cell__qnt input {
  text-align: center;
}

.fnc--cartlist--cell__price, .fnc--cartlist--cell__total__summ, .fnc--cartlist--cell__amount {
  text-align: center;
  width: 100px;
}

.fnc--cartlist--cell__delete {
  text-align: center;
  width: 50px;
}

.fnc--cartlist--cell__total__text {
  text-align: right;
}

@media all and (max-width: 600px) {
  .fnc--cartlist--cell__code {
    display: none;
  }

  .fnc--cartlist--cell__price {
    display: none;
  }
}

.fnc--cartlist--params__table {
  padding: 2px 0 !important;
  color: var(--5-text-color);
  font-size: 11px;
  width: auto !important;
}

.fnc--cartlist--params__table--name {
  padding: 2px 0 !important;
}

.fnc--cartlist--params__table--param {
  padding: 2px 0 !important;
  padding-left: 10px !important;
}

.fnc--cartpopup--buttons {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.fnc--cartpopup--continue {}

.fnc--cartpopup--gotocart {}

.fnc--cartpopup--empty {}

.cart--page--container {
  flex-basis: 38%;
}

.fnc--cartlist--section {
  flex-basis: 60%;
  font-size: 12px;
}

.fnc--cartlist--section input {
  font-size: 12px;
}

.cart--page--title {
  font-weight: bolder;
}

.cart--page--inner {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 10px 0;
}

.cart--page--inner--block__name {
  padding: 3px 0;
  font-size: 12px;
}

.cart--page--inner--block__param {
  padding: 3px 0;
}

.cart--page--inner--block__param input {
  font-size: 12px;
}

.cart--page--inner--block__param textarea {
  font-size: 12px;
}

.cart--page--inner--block__param select {
  font-size: 12px;
}

.cart--page--checkout {
  padding: 10px;
  text-align: center;
}

.cart--page--checkout button {
  font-size: 18px;
  font-weight: bolder;
  padding: 15px 40px;
}

.cartsumm {
  text-align: Center;
}

.cart--page--payment__line {
  display: flex;
  padding: 5px 0;
  align-items: center;
}

.cart--page--payment__line--left {}

.cart--page--payment__line--right {}

.fnc--payment--title {
  text-align: center;
  font-weight: bolder;
  padding: 20px;
}

.fnc--comparision--container {
  cursor: pointer;
  cursor: hand;
}

.fnc--comparision--container__wrap {
  background-image: url("/themes/main/comparison.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: transparent;
  width: 25px;
  height: 25px;
  position: relative;
}

.fnc--comparision--active {
  background-image: url("/themes/main/comparison_red.svg");
}

.fnc--comparision--amount {
  position: absolute;
  background: var(--5-text-color);
  color: var(--2-text-color);
  padding: 2px 7px;
  border-radius: 100%;
  left: -3px;
  top: -4px;
  font-size: 12px;
  border: 1px solid var(--5-text-color);
}

.fnc--favors--container {
  cursor: pointer;
  cursor: hand;
}

.fnc--favors--container__wrap {
  background-image: url("/themes/main/heart.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: transparent;
  width: 20px;
  height: 20px;
  position: relative;
}

.fnc--favors--active {
  background-image: url("/themes/main/favorite_red.svg");
}

.fnc--favors--amount {
  position: absolute;
  background: var(--5-text-color);
  color: var(--2-text-color);
  padding: 0px 4px;
  border-radius: 100%;
  left: -8px;
  top: -5px;
  font-size: 11px;
  border: 1px solid var(--5-text-color);
}

.js__delivery--city {
  position: relative;
  z-index: 5;
}

.js__cart--cities--field--container {
  position: relative;
}

.js__cart--cities--field--inner {
  position: absolute;
  width: 100%;
  z-index: 40;
  border: 1px solid #555;
  background: #fff;
  top: 0px;
  padding-top: 10px;
  display: none;
  left: 0%;
  font-size: 14px;
  overflow: auto;
  max-height: 300px;
}

.js__cart--cities--field--inner #getWarehouseBycity {
  padding: 5px 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  cursor: hand;
}

.js__cart--cities--field--inner #getWarehouseBycity:hover {
  padding: 5px 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  cursor: hand;
  background: #fbfbfb;
}

.js__delivery--warehouse {
  position: relative;
  z-index: 3;
}

.js__cart--warehouses--field--container {
  position: relative;
}

.js__cart--warehouses--field--inner {
  position: absolute;
  width: 100%;
  z-index: 40;
  border: 1px solid #555;
  background: #fff;
  top: 0px;
  padding-top: 10px;
  display: none;
  left: 0%;
  font-size: 14px;
  overflow: auto;
  max-height: 300px;
}

.js__cart--warehouses--field--inner #selectWare {
  padding: 5px 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  cursor: hand;
}

.js__cart--warehouses--field--inner #selectWare:hover {
  padding: 5px 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  cursor: hand;
  background: #fbfbfb;
}

.fnc--payments--line {
  display: none;
  align-items: center;
  margin: 4px 0;
}

.fnc--payments--line div {
  padding: 0 5px;
}

.fnc--payments--line select {
  padding: 5px 10px;
}

.fnc--pay--parts {
  display: inline-flex;
  align-items: center;
  background: var(--12-text-color);
  margin: 15px 0;
  padding: 20px;
}

@media all and (max-width: 799px) {
  .fnc--pay--parts {
    flex-direction: column;
    align-items: flex-start;
  }
}

.fnc--pay--parts div:nth-child(1) {
  padding-right: 30px;
  font-size: 18px;
}

.fnc--pay--parts div:nth-child(2) {
  padding-left: 30px;
}

@media all and (max-width: 799px) {
  .fnc--pay--parts div:nth-child(2) {
    padding-left: 0px;
  }

  .fnc--pay--parts div:nth-child(2) button {
    padding: 15px 0;
  }
}

.fnc--pay--parts button {
  color: var(--1-text-color);
  background: transparent;
  font-weight: Bolder;
}

.fnc--pay--parts button:hover {
  color: var(--3-text-color);
  background: transparent;
}

.fnc--payparts--line {
  display: flex;
  padding: 15px 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--12-text-color);
}

.fnc--payparts--line div:nth-child(1) {
  flex-basis: 40%;
}

.fnc--payparts--line select {
  padding: 4px 8px;
}

.content--center--chapter__rating {
  display: none;
}

.fnc--rightitem--block {
  border: 1px solid var(--12-text-color);
  border-radius: 10px;
  padding: 20px;
}

.fnc--rightitem--block__title {
  font-size: 18px;
  font-weight: Bolder;
  padding: 10px 0;
}

.fnc--rightitem--block__text {
  padding: 10px 0;
}

.fnc--rightitem--block__icons {
  display: flex;
}

.fnc--rightitem--block__icons div {
  padding: 5px;
}

.fnc--rightitem--block__icons img {
  max-width: 100%;
}

.pagination--mobile {
  display: none;
}

@media all and (max-width: 600px) {
  .fnc--pagination {
    display: none;
  }
}

.pagination--mobile {
  display: flex !important;
}

@media all and (min-width: 600px) {
  .pagination--mobile {
    display: none !important;
  }
}

.container {
  padding: 0 calc(50% - 708px);
}

@media all and (max-width: 1416px) {
  .container {
    padding: 0 10px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.header__col {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.languages {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.languageact {
  order: 1;
}

.language {
  margin-right: 15px;
}

.language a {
  color: #000000;
  opacity: 0.63;
  font-size: 14px;
}

.language a:hover {
  color: var(--text-orange);
}

.languageact a {
  font-weight: bold;
  color: var(--text-orange);
}

.header__logo a {
  line-height: 0;
  font-size: 0;
  display: flex;
  align-items: center;
}

.header__logo {
  display: flex;
  margin-right: 20px;
  transition: all 0s;
}

.header .row {
  /* align-items: center; */
  padding: 15px 0;
  position: relative;
}

.billing--login {
  /* margin-right: 25px; */
  padding: 10px 45px;
  cursor: pointer;
  transition: none;
}

.billing--login>a, .billing--login>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #2f3540;
  font-size: 16px;
  user-select: none;
  transition: none;
}

.header__logo img {
  width: 100%;
  height: auto;
  transition: all 0s;
}

.billing--login img {
  margin-right: 10px;
  transition: none;
}

.main--slider--block .row {
  justify-content: space-between;
  align-items: center;
}

.main--slider--block__image, .main--slider--block__text {
  width: calc(50% - 10px);
}

.main--slider--block__image {
  position: relative;
  /* width: auto; */
}

.main--slider--block__image:before {
  content: url("/img/backgrounds/Shape2.png");
  position: absolute;
  display: block;
  right: 30%;
  top: 20px;
  z-index: 1;
}

.main--slider--block__image img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  left: -60px;
  max-height: 400px;
  /* width: auto !important; */
  margin: auto;
  object-fit: contain;
}

.main--slider--block__text {
  font-size: 45px;
  line-height: 1.2;
  font-weight: 900;
  color: #222222;
}

.main--slider--block__text button {
  background: #ffffff;
}

.main--slider {
  position: relative;
  padding: 25px 0;
  /* max-width: 1920px; */
  margin: auto;
}

.main--slider:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: url("/img/backgrounds/background2.png");
  background-repeat: no-repeat;
  background-position: center;
  /* background-size: 100% 100%; */
  /* background-size: contain; */
  z-index: -1;
  /* background-size: 100% 100%; */
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.main--slider:after {
  /* content: url(/img/backgrounds/Shape4.png); */
  /* position: absolute; */
  /* top: 100%; */
  /* right: 0; */
  /* transform: translate(-80%, -50%); */
  /* z-index: -1; */
}

.main--slider .owl-dots {
  position: absolute;
  left: calc(50% + 10px);
  bottom: 20%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.main--slider .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 8px;
  background: #ffffff;
  display: block;
  -webkit-backface-visibility: visible;
  /* transition: opacity 0.2s ease; */
  border-radius: 30px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 0 2px 1px #ffad0085;
}

.main--slider .owl-dot.active span, .main--slider .owl-dot:hover span {
  background: #d0720f;
  border: 2px solid #ffffff;
  width: 25px;
}

.item--block-wrap {
  padding: 20px;
}

.item--block {
  background: #ffffff;
  /* border-radius: 10px; */
  border-width: 1px;
  border-color: rgb(246, 246, 247);
  border-style: solid;
  border-radius: 8px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 19px 16.38px 1.62px rgba(24, 67, 5, 0.03);
  /* width: 33%; */
  transition: transform .3s ease-in-out;
}

.item--block:hover {
  transform: scale(1.09);
}

.item--block__title {
  background: #ff9007;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 24px 10px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.item--block__descr {
  padding: 15px 20px 0px;
  text-align: center;
}

.item--block__bonus {
  background: #fafcf9;
  padding: 10px 10px;
  text-transform: uppercase;
  color: #222222;
  font-size: 18px;
}

.item--block__bonus span {
  text-transform: initial;
  font-size: 21px;
  font-weight: bold;
  color: #1da51a;
  margin-left: 15px;
}

.item--block__for {
  font-size: 16px;
  padding: 15px 10px;
}

.item--block__price {
  font-size: 24px;
  font-weight: bold;
  padding: 15px 10px;
}

.item--block__btn button {
  position: relative;
  background: #1da51a;
  color: #ffffff;
  width: calc(100% + 40px);
  left: -20px;
}

.item--block__btn button:hover {
  box-shadow: none;
}

.items--slider--title {
  text-align: center;
  margin-bottom: 50px;
}

.items--slider--title h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
}

.items--slider--wrap {
  padding: 25px 0;
}

.item--block__spec .row {
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.item--block__spec .row div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  min-height: 30px;
}

.item--block__spec .row div img {
  width: auto;
  height: auto;
  margin-right: 15px;
}

.with-nav.owl-carousel {
  padding: 0 50px;
}

.with-nav.owl-carousel .owl-nav {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  /* background: red; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: -1;
}

.with-nav.owl-carousel .owl-nav button {
  display: flex;
}

.for--clients {
  background: url("/img/moduls/block-left-side.png"), url("/img/moduls/block-right-side.jpg");
  background-repeat: no-repeat;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
  background-position-y: center;
  background-position-x: left, right;
  background-size: auto, 30% 660px;
}

.for--clients .row {
  align-items: center;
  position: relative;
}

.for--clients--title {
  margin-right: 95px;
  position: relative;
  z-index: 1;
}

.for--clients--title h2 {
  font-size: 36px;
  font-weight: 900;
}

.for--clients--title span {
  color: #f88a16;
}

.for--clients--block {
  position: relative;
  z-index: 1;
}

.for--clients--block .row {
  padding: 15px 0;
  align-items: center;
  flex-wrap: nowrap;
}

.for--clients--block img {
  margin-right: 40px;
}

.for--clients--block p {
  font-size: 18px;
  font-weight: 900;
}

.for--clients--img {
  position: absolute;
  right: 0;
  display: flex;
  z-index: 0;
  width: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.for--clients--img img {
  width: 100%;
  height: auto;
}

.for--clients:before {
  /* content: url("/img/moduls/block-left-side.jpg"); */
  /* position: absolute; */
  /* height: 100%; */
}

.advantages {
  padding-top: 120px;
  padding-bottom: 120px;
  background: url("/img/moduls/video-screen.png");
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  /* background-size: cover; */
  background: transparent;
}

.advantages__video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  object-fit: cover;
  filter: blur(2px);
}

.advantages__title {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  /* background: red; */
  transform: translate(-50%, -100%);
}

.advantages__title h2 {
  margin: 0;
  color: #ffffff;
  font-size: 48px;
  font-weight: 900;
}

.advantages>.row {
  justify-content: space-between;
}

.advantages__img {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 20px; */
  background: #ffffff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin-right: 30px;
  min-width: 100px;
}

.advantages__img img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.advantages__img+p {
  font-size: 20px;
  color: #f6f4f4;
  font-weight: 900;
  width: calc(100% - 100px);
  text-shadow: 0 0 5px black;
}

.advantages__right .row, .advantages__left .row {
  align-items: center;
  padding: 25px 0;
  flex-wrap: nowrap;
}

.advantages__right .advantages__img {
  margin-right: 0;
  margin-left: 30px;
}

.advantages__right .row {
  flex-direction: row-reverse;
  text-align: end;
}

.advantages__right {
  padding-left: 130px;
}

.advantages__left {
  padding-right: 130px;
}

div#map {
  height: 600px;
}

.covering {
  padding: 50px 0;
}

.covering--title {
  margin-bottom: 70px;
  text-align: center;
  position: relative;
}

.covering--title:before {
  content: url("/img/backgrounds/Shape5.png");
  position: absolute;
  right: 0;
  top: 100%;
  z-index: -1;
  transform: translateX(-50%);
}

.covering--title h2, .we-accept-title h2, .main_advantages--title h2, .about_us--title h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 900;
  color: #040404;
  text-transform: uppercase;
}

.we-accept {
  padding: 30px 0;
}

.we-accept .container>.row {
  align-items: center;
  position: relative;
}

.we-accept .container>.row:after {
  /* content: url("/img/backgrounds/Shape4.png"); */
  /* position: absolute; */
  /* right: 0; */
  /* bottom: 30px; */
  /* transform: translateX(100%) rotate(-90deg); */
}

.we-accept_block {
  flex-grow: 1;
}

.we-accept-title {
  margin-bottom: 20px;
}

.we-accept_block .row {
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.we-accept_block img {
  width: auto;
  height: auto;
  padding: 0 5px;
  filter: grayscale(1);
  transition: filter 0.3s ease-in;
}

.we-accept_block img:hover {
  filter: grayscale(0);
}

.we-accept_img img {
  width: 100%;
}

.item--block.item--block__listVer {
  width: calc(calc(100% / 3) - calc(100px / 3));
  margin-bottom: 50px;
  flex-shrink: 0;
}

.item--block.item--block__listVer:nth-last-child(-n+3) {
  margin-bottom: 0;
}

.owl-dots button:hover, .owl-nav button:hover {
  box-shadow: none;
}

.main_advantages--title {
  text-align: center;
  margin-bottom: 50px;
}

.main_advantages--block {
  display: flex;
  align-items: center;
  flex-basis: calc(100% / 3);
  padding: 15px 5px;
  padding-right: 15px;
}

.main_advantages--block img {
  margin-right: 30px;
  max-width: 50px;
  width: 100%;
  height: auto;
}

.main_advantages--block p {
  margin: 0;
  font-weight: 900;
  font-size: 18px;
}

.main_advantages {
  padding: 50px 0;
  position: relative;
}

.main_advantages:before {
  /* content: url(/img/backgrounds/Shape4.png); */
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* transform: translate(50%, 0%); */
  /* z-index: -1; */
}

.w-50 {
  width: 50%;
}

.about_us {
  padding: 50px 0;
  position: relative;
}

.about_us--title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.about_us--title h2 span {
  color: #f88a16;
}

.about_us--img {
  position: relative;
  display: flex;
}

.about_us--img img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.about_us--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.about_us--text p {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  margin-bottom: 30px;
}

.about_us--title:before {
  /* content: url(/img/backgrounds/Shape4.png); */
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* transform: translate(-50%, 0%); */
  /* z-index: -1; */
  /* opacity: 0.5; */
}

.about_us--title:after {
  content: url(/img/backgrounds/Shape3.png);
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(20%, -50%);
  z-index: -1;
  opacity: 0.5;
}

.about_us:before {
  content: url(/img/backgrounds/Shape2.png);
  position: absolute;
  top: 10%;
  right: 3%;
  z-index: -1;
}

.about_us--page .main_advantages:before {
  right: 10%;
  left: unset;
  transform: translate(0%, 0%);
}

.about_us--page .main_advantages:after {
  /* content: url(/img/backgrounds/Shape4.png); */
  /* position: absolute; */
  /* bottom: 0; */
  /* left: 0; */
  /* transform: translate(60%, 100%); */
  /* z-index: -1; */
}

.for-house {
  overflow: hidden;
}

.for-house-title h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
}

.for-house-title h2 span {
  color: var(--text-orange);
}

.for-house-title {
  padding: 20px 0;
}

.for-house-img {
  max-width: 40%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.for-house-img img {
  position: relative;
}

.for-house-block {
  max-width: 60%;
}

.for-house-adv_block {
  display: flex;
  align-items: center;
  padding: 15px 0;
}

.for-house-adv_block img {
  margin-right: 40px;
}

.for-house-adv_block, .for-house-adv_block span {
  font-size: 18px;
  font-weight: 900;
}

.for-house-block .for-house-adv_block {
  width: 50%;
  padding-right: 40px;
}

.for-house-title p {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 30px;
}

.tariff-text {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.5em;
  margin-bottom: 70px;
  margin-top: 30px;
}

.additional-services-title h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
}

.additional-services-title {
  text-align: center;
  margin-bottom: 50px;
}

.additional-services-title p {
  margin: 0;
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.5rem;
}

.additional-services {
  padding-top: 50px;
  padding-bottom: 50px;
}

.additional-services-table {}

.additional-services-table table {
  margin: 0 auto;
  max-width: 940px;
  width: 100%;
  border-spacing: 0;
}

.additional-services-table th, .additional-services-table td {
  padding: 15px 25px;
  text-align: start;
}

.additional-services-table th {
  background: #f68b20;
  font-size: 18px;
  font-weight: 900;
}

.additional-services-table tr:nth-child(even) {
  background: #f1f0f0;
}

.additional-services-table tr:nth-child(odd) {
  background: #eaeaea;
}

.additional-services-table td {
  font-size: 16px;
}

.equipment-block {
  background: #fff;
  box-shadow: 0px 19px 16.38px 1.62px rgba(24, 67, 5, 0.03);
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.equipment {
  margin-bottom: 50px;
}

.equipment .row {
  justify-content: space-between;
}

.equipment-block img {
  width: 100%;
  height: auto;
}

.equipment-block_text {
  width: 100%;
  padding: 10px 15px;
}

.equipment-block_text h4 {
  font-size: 16px;
  font-weight: 900;
  margin: 0;
}

.equipment-block_text p {
  font-size: 16px;
}

#error-popup, #request-success-popup, #register-popup, #map-popup {
  position: fixed;
  z-index: 1002;
  width: 95%;
  max-width: 600px;
 /*top: calc(50% + calc(var(--hh) / 2));*/
     top: 50vh;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 25px;
  display: none;
  border-radius: 15px;
}


#map-popup form {
  text-align: center;
}

#map-popup form input {
  margin: 8px 0;
}

.brand--img {
  flex-basis: 400px;
}

.brand--table {
  flex-basis: calc(100% - 400px);
  padding: 0 20px;
}

.brand--img img {
  width: auto;
  height: auto;
}

.brand--table td:first-child {
  width: 27% !important;
}

.brand--table td:last-child {
  width: 70% !important;
  padding-left: 15px;
}

.brand--table td {
  padding-top: 8px;
}

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

.leaflet-marker-pane .leaflet-clusterer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
}

.leaflet-marker-pane .leaflet-clusterer.clusterer-1 {
  width: 53px;
  height: 52px;
  background-image: url(/img/map/m1.png);
}

.leaflet-marker-pane .leaflet-clusterer.clusterer-2 {
  width: 56px;
  height: 55px;
  background-image: url(/img/map/m2.png);
}

.leaflet-marker-pane .leaflet-clusterer.clusterer-3 {
  width: 66px;
  height: 65px;
  background-image: url(/img/map/m3.png);
}

.leaflet-marker-pane .leaflet-clusterer.clusterer-4 {
  width: 78px;
  height: 77px;
  background-image: url(/img/map/m4.png);
}

.leaflet-control-geocoder-form input {
  margin-left: 0 !important;
  background: transparent !important;
  width: 24.125rem !important;
  font-family: Roboto, sans-serif !important;
  font-weight: 400 !important;
  line-height: 1.1875rem !important;
  font-size: 1rem !important;
  color: #000 !important;
  padding-left: 10px !important;
  margin-top: 0.625rem !important;
  margin-bottom: 0.625rem !important;
  z-index: 233;
  display: block;
  position: relative;
  top: 0;
  margin: 0 auto;
  background-color: white;
  width: 250px;
  height: 35px;
  left: 0;
  padding: 10px;
  font-size: 16px;
}

.leaflet-touch .leaflet-control-geocoder {
  border: none !important;
  width: 28.25rem;
  position: relative !important;
  top: 0.7rem;
  left: 1.875rem;
  z-index: 99;
  -webkit-box-shadow: 0 8px 20px rgb(3 64 146 / 15%) !important;
  box-shadow: 0 8px 20px rgb(3 64 146 / 15%) !important;
  border-radius: 0.1875rem;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0 !important;
  margin-top: 0 !important;
  justify-content: space-between;
}

.leaflet-touch .leaflet-control-geocoder {
  /*display: flex;*/
  /*flex-direction: row-reverse;*/
  display: block;
}

#leaflet_map .leaflet-control-geocoder-icon {
  background-color: white;
  background-image: url("/build/i/search.svg");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  width: 16px;
  height: 55px;
  margin-right: 1.25rem;
  position: absolute;
  right: 1px;
}

#leaflet_map .leaflet-popup {
  /*bottom: 55px !important;*/
  /*left: -67px !important;*/
}

a.leaflet-rrose-close-button {
  padding: 8px 21px 0 0;
}

.cover-map__right_box_address {
  margin-left: 0;
}

.cover-map__right_box_tariff {
  margin-left: 0;
}

.cover-map__right_box_input {
  margin-left: 0;
}

.leaflet-rrose-content p {
  margin: 8px 0;
}

.private_info-connected__header, .private_info-connection__header, .private_info-no-connection__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: center;
  margin-top: 1.1875rem;
  margin-bottom: 0.6875rem;
  align-content: center;
  flex-direction: row;
}

.private_info-connected__footer, .private_info-connection__footer, .leaflet-map-connect-request-btn {
  margin: auto;
}

.leaflet-rrose-tip-container {
  height: 10px;
}

.private_info-connected__header span {
  word-break: normal;
}

.leaflet-control-geocoder-alternatives {
  width: 100%;
  background-color: #fff;
  position: absolute !important;
  z-index: 1000;
  border-radius: 2px;
  border-top: 1px solid #d9d9d9;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 6px rgb(0 0 0 / 30%);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.leaflet-control-geocoder-error {
  margin-top: 0;
  display: block;
  color: #444;
  text-align: center;
  padding-bottom: 8px;
  font-size: 16px;
}

.leaflet-control-geocoder-alternatives li {
  border-top: 0 !important;
  font-size: 0.8125rem !important;
  cursor: default;
  padding: 5px 10px;
  white-space: nowrap;
  line-height: 30px;
  border-bottom: 0;
}

.leaflet-control-geocoder-alternatives li a {
  font-family: Roboto, sans-serif !important;
  font-weight: 400 !important;
  line-height: 1.1875rem !important;
  font-size: 1rem !important;
  color: #000 !important;
  cursor: pointer !important;
}

/* Media Query for Tablets Ipads portrait mode */

@media (max-width: 768px) {
  .leaflet-touch .leaflet-control-geocoder {
    top: 0.6rem;
    left: 0.6rem;
    width: 17.25rem;
  }

  .leaflet-control-geocoder-form input {
    width: 15.125rem !important;
    height: 28px;
  }

  #leaflet_map .leaflet-control-geocoder-icon {
    height: 47px;
    margin-right: 1rem;
  }
}

#map.leaflet-touch .leaflet-control-geocoder {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 10px;
}

#map.leaflet-touch .leaflet-control-geocoder-icon {
  padding: 0;
  font-size: 0;
  line-height: 0;
}

#map.leaflet-touch .leaflet-control-geocoder-icon:hover {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.2 13l3.4 6.6c.6 1.1 2.5-.4 2-1.2l-4-6.2z'/%3E%3Ccircle cx='10.8' cy='8.9' r='3.9' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E");
}

input[name="street"], input[name="house"] {}

#map-popup .row {
  justify-content: space-between;
  align-items: center;
}

input[name="entrance"], input[name="floor"], input[name="apartment"] {}

#map-popup input[name="lng"], #map-popup input[name="lat"] {}

#map-popup button {
  margin-top: 25px;
}

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

/* Style the buttons that are used to open and close the accordion panel */

.accordion {
  background-color: #eee;
  cursor: pointer;
  padding: 15px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  text-transform: none;
  font-weight: bold;
  margin-top: 15px;
  border-radius: 0;
  font-size: 16px;
  color: var(--button-text);
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */

.accordion.active, .accordion:hover {
  background-color: var(--text-orange);
  color: var(--button-text);
  box-shadow: none;
}

/* Style the accordion panel. Note: hidden by default */

.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}

.panel img {
  max-width: 100%;
}

.fnc--faqs--list {
  padding: 50px 0;
}

.call-us img, .call-us_hidden-btn img {
  width: 100%;
  height: 100%;
}

.call-us, .call-us_hidden-btn {
  max-width: 68px;
  max-height: 68px;
  width: 68px;
  height: 68px;
  padding: 18px;
  border-radius: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fd5900+0,ff8800+100 */
  background: rgb(253, 89, 0);
  /* Old browsers */
  background: -moz-linear-gradient(left, rgba(253, 89, 0, 1) 0%, rgba(255, 136, 0, 1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(253, 89, 0, 1) 0%, rgba(255, 136, 0, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(253, 89, 0, 1) 0%, rgba(255, 136, 0, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fd5900', endColorstr='#ff8800', GradientType=1);
  /* IE6-9 */
}

.call-us-border {
  padding: 5px;
  max-width: max-content;
  border: 1px solid #ff9f6f;
  border-radius: 100%;
  position: relative;
  width: 80px;
  height: 80px;
}

.call-us_hidden-btn {
  font-size: 0;
}

.call-us_hidden {
  display: flex;
  flex-direction: column;
  height: 280px;
  justify-content: space-between;
  padding: 20px 5px;
  max-width: max-content;
  display: none;
}

.call-us-border:not(.no-hover):hover {
  border: transparent;
  padding: 14px;
}

.call-us-border:not(.no-hover):hover .call-us {
  background: #3b3478;
  max-width: 50px;
  max-height: 50px;
  padding: 16px;
}

.call-us-img-hover, .call-us-border:not(.no-hover):hover .call-us-img {
  display: none;
}

.call-us-border:not(.no-hover):hover .call-us-img-hover {
  display: block;
}

.call-us-border:not(.no-hover):hover .call-us_hidden {
  position: absolute;
  display: flex;
  bottom: 60px;
  left: 0;
}

.call-us-wrapper {
  position: fixed;
  left: 3%;
  bottom: 3%;
  z-index: 1000;
}

.telegram-bot-wrapper {
  display: none;
}

.call-us_hidden-content {
  position: relative;
}

.call-us_hidden-content p {
  position: absolute;
  top: 50%;
  left: 110%;
  width: 200px;
  max-width: max-content;
  transform: translateY(-50%);
  background: rgb(253, 89, 0);
  /* Old browsers */
  background: -moz-linear-gradient(left, rgba(253, 89, 0, 1) 0%, rgba(255, 136, 0, 1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(253, 89, 0, 1) 0%, rgba(255, 136, 0, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(253, 89, 0, 1) 0%, rgba(255, 136, 0, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fd5900', endColorstr='#ff8800', GradientType=1);
  /* IE6-9 */
  border-radius: 30px;
  padding: 5px 10px;
  color: #fff;
  opacity: 0;
  margin: 0;
}

.call-us_hidden-content:hover p {
  opacity: 1;
}

.call-us_hidden-content p {
  opacity: 1;
}

.call-us_hidden-btn:hover {
  background: rgb(253, 89, 0);
  background: -moz-linear-gradient(left, rgba(253, 89, 0, 1) 0%, rgba(255, 136, 0, 1) 100%);
  background: -webkit-linear-gradient(left, rgba(253, 89, 0, 1) 0%, rgba(255, 136, 0, 1) 100%);
  background: linear-gradient(to right, rgba(253, 89, 0, 1) 0%, rgba(255, 136, 0, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fd5900', endColorstr='#ff8800', GradientType=1);
}

.main--slider--block__image.brand--slider--block__image {
  /* width: 35%; */
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
}

.main--slider--block__text.brand--slider--block__text {
  /* width: 62%; */
}

.main--slider--block__image.brand--slider--block__image img {
  /* position: unset; */
  /* max-width: 300px; */
}

.main--slider.brand--slider {
  margin: 30px 0;
}

.container.fixed {
  position: fixed !important;
  background: #f6f4f4;
  z-index: 10000;
  box-shadow: 0px 1px 5px 0px #00000026;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  transition: 0s;
}

.container.fixed .header--centerhead {
  display: none;
}

.container.fixed .row {
  align-items: center;
  padding: 0;
  transition: all 0s;
}

.container.fixed .header__logo img {
  max-height: 60px;
  transition: all 0s;
}

.container.fixed .header__col {
  padding: 15px 0;
  transition: all 0s;
}

.oplata .fnc--center--articles--listitem__image img {
  height: auto;
  max-width: 100%;
  width: auto;
  margin: auto;
  max-height: 200px;
}

.oplata .fnc--center--articles__listitem__main {
  justify-content: space-between;
  height: 100%;
  align-items: center;
}

.oplata .fnc--center--articles--listitem__image {
  padding: 16px 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oplata .fnc--center--articles--listitem__name {
  text-align: center;
  line-height: 1.5em;
}

.oplata .fnc--articles--listitem {
  padding-bottom: 20px;
}

.request-success-popup_close, .register-popup_close, .map-popup_close {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  display: flex;
}

.map-popup_close:hover svg path {
  fill: var(--text-orange);
}

.map-popup_close svg * {
  transition: all 0.3s ease;
}

.connection-cost {
  background: #e1aa00;
  padding: 25px 0;
  margin-top: 30px;
}

.connection-cost img {
  display: block;
  flex-basis: 80px;
  width: 80px;
  margin-right: 20px;
}

.connection-cost_text {
  width: calc(100% - 100px);
}

.connection-cost .row {
  align-items: center;
  justify-content: space-between;
}

.connection-cost_text h5 {
  margin: 0;
  font-size: 24px;
}

.connection-cost_text p {
  font-size: 16px;
  margin-bottom: 0;
  letter-spacing: 0.3px;
  line-height: 1.5em;
}

select#tariff {
  width: auto;
  flex-grow: 1;
  margin-left: 15px;
  padding-left: 5px;
}

.row.article--row {
  justify-content: space-between;
  align-items: center;
}

.article--tow--row {
  background: var(--text-orange);
  margin: 10px 0;
}

.popup--container--line__inner, .map-form-field {
  position: relative;
}

.popup--container--line__inner .star, .map-form-field .star {
  position: absolute;
  left: 0;
  top: 0;
}

.popup--container--line__inner .star-add {
  top: 10px;
}

.star-add {
  color: green;
}

.w-30 {
  width: 30%;
}

.w-48 {
  width: 48%;
}

.js__body--termspopup {
  position: fixed;
  background: #1da51a;
  color: var(--2-text-color);
  padding: 10px 20px 20px 20px;
  text-align: center;
  border-top: 1px solid #f7f7f7;
  z-index: 5000;
  width: 100%;
  left: 0;
  bottom: 0;
  font-size: 12px;
}

.termspopup--close {
  text-align: right;
  display: none;
}

.termspopup--close button {
  background: #fff;
  border-radius: 100%;
  padding: 8px 12px;
  color: #292929;
  background: 1px solid #292929;
}

.termspopup--close button:hover {
  background: #292929;
  border-radius: 100%;
  padding: 8px 12px;
  color: #fff;
  background: 1px solid #fff;
}

.termspopup--text {
  padding: 10px 0;
}

.termspopup--text a {
  color: #fff;
}

.termspopup--buttons {
  display: flex;
  justify-content: space-around;
}

[data-tariff-field="disabled"] {
  display: none;
}

@media all and (max-width: 600px) {
  .termspopup--buttons {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-around;
  }

  .termspopup--buttons div:nth-child(1) {
    margin-top: 5px;
  }
}

.termspopup--buttons button {
  margin: 0 5px;
}

.termspopup--buttons button {
  background: #fff;
  padding: 8px 15px;
  color: #292929;
  background: 1px solid #292929;
  border: 1px solid #f7f7f7;
  font-size: 12px;
}

.termspopup--buttons button:hover {
  color: var(--text-orange);
}

.termspopup--buttons div:nth-child(1) button {
  background: var(--text-orange);
  border: 1px solid #f7f7f7;
  padding: 8px 15px;
  color: #fff;
  background: 1px solid #292929;
  font-size: 12px;
}

.termspopup--buttons div:nth-child(1) button:hover {
  background: #fff;
  padding: 8px 15px;
  color: #292929;
  border: 1px solid #f7f7f7;
  background: 1px solid #292929;
  font-size: 12px;
}

.terms--all--content {
  max-width: 1360px;
  font-size: 16px;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
}

label[for="offer_agree"]:before {
  display: none !important;
}

.leaflet-control-geocoder-alternatives {
  top: 0;
}

#map .leaflet-control-geocoder-error {
  position: absolute;
  right: 0;
  color: red;
  padding: 5px 10px;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  background: #ffffff;
}

#map-popup form input:disabled {
  background: transparent;
}

.for--clients.error--page {
  background: url(/img/moduls/block-left-side.png);
  padding-top: 0;
  padding-bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
}

.error404--center--page {
  padding: 50px 20px 50px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  /* padding: 0; */
}

.error404--center--first {
  font-size: 100px;
  color: #f68b20;
  text-shadow: 2px 2px 4px black;
  font-weight: bolder;
}

.error404--center--second {
  font-size: 20px;
  padding: 20px 0;
}

.error404--center--third {
  font-size: 20px;
  font-weight: bolder;
}

.error404--center--third a {
  color: #f68b20;
}

.additionalInfo {
  max-width: fit-content;
  margin: 15px auto;
  /* color: black; */
  font-size: 15px;
  line-height: 1.5;
}

.additionalInfo h3 {
  text-indent: 20px;
  margin-bottom: 5px;
  color: var(--text-orange);
}

.login-block {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 10px 10px;
  background: white;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  box-shadow: 0px 7px 7px 0px #00000040;
  z-index: 10;
  display: none;
}

.login-wrap:hover .billing--login, .login-wrap.hover .billing--login {
  background: white;
}

.login-wrap:hover .login-block, .login-wrap.hover .login-block {
  display: block;
}

.login-wrap:hover .billing--login>div, .login-wrap.hover .billing--login>div {
  color: var(--text-orange);
}

.login-wrap:hover .billing--login img, .login-wrap.hover .billing--login img {
  filter: invert(64%) sepia(8%) saturate(6818%) hue-rotate(346deg) brightness(100%) contrast(94%);
}

.fnc--center--articles--listitem--wrap {
  padding: 20px;
}

.fnc--center--articles__listitem:hover {
  transform: scale(1.09);
}

@media all and (min-width: 1920px) {
  .main--slider:before {
    background-size: 100% 80%;
  }
}

@media all and (max-width: 1700px) {
  .we-accept .container>.row:after {
    transform: translateX(0%) rotate(-90deg);
  }
}

@media all and (max-width: 1600px) {
  .main--slider--block__image img {
    left: 0;
  }

  .fnc--center--articles__slider:before {
    transform: translate(0%, -35%);
  }

  .for--clients {
    background-size: auto 100%, 25% 100%;
  }

  .main--slider--block__image:before {
    right: 20%;
  }
}

@media all and (max-width: 1400px) {
  .fnc--header--contacts__left {
    flex-direction: column;
  }

  .fnc--header--contacts__left p {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .we-accept .container>.row:after {
    display: none;
  }

  .we-accept_img {
    width: 40%;
  }

  .we-accept_block {
    width: 60%;
  }

  .for--clients--img {
    position: unset;
    width: 45%;
    transform: none;
  }

  .for--clients--block {
    width: 30%;
  }

  .for--clients--title {
    width: 25%;
    margin-right: 0;
  }

  .for--clients {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .about_us--page .main_advantages:before {
    right: 0;
  }

  .about_us--page .main_advantages:after {
    transform: translate(0%, 100%);
  }

  .advantages__left, .advantages__right {
    width: 100%;
    padding: 0;
  }

  .advantages.container {
    padding-top: 25px;
    padding-bottom: 25px;
    background-size: cover;
  }

  .advantages__right .row, .advantages__left .row {
    padding: 5px 0;
  }

  .advantages__left .row:nth-child(even) {
    flex-direction: row-reverse;
    text-align: end;
  }

  .advantages__left .row:nth-child(even) .advantages__img {
    margin-right: 0;
    margin-left: 30px;
  }

  .advantages__right .row:nth-child(even) {
    flex-direction: revert;
    text-align: start;
  }

  .advantages__right .row:nth-child(even) .advantages__img {
    margin-left: 0;
    margin-right: 30px;
  }

  .main_advantages--block {
    flex-basis: calc(100% / 2);
  }

  /* .main--slider--block__image,
  .main--slider--block__text {
    width: calc(50% - 10px);
  } */
}

@media all and (max-width: 1366px) {
  .menu--chapters__item a {
    font-size: 14px;
  }

  .menu--chapters__item {
    padding: 5px;
  }
}

@media all and (max-width: 1250px) {
  .fnc--header--contacts__right {
    flex-direction: column;
    position: relative;
    padding-left: 32px;
  }

  .login-block {
    width: 30vw;
    left: auto;
    right: 0;
    top: 80px;
    border-radius: 5px;
  }

  .fnc--header--contacts__right>img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .header--underhead--inner__right {
    flex-direction: column;
    padding-top: 10px;
    padding-left: 15px;
  }

  .header--underhead--inner__left {
    padding-right: 14px;
  }

  .fnc--order--call button {
    padding: 10px;
    font-size: 12px;
  }

  .billing--login {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .login-wrap {
    position: relative;
    display: flex;
  }

  .fnc--order--call {
    z-index: 0;
  }

  .billing--login {
    margin-bottom: 0px;
  }

  .login-wrap.hover {
    background: white;
  }
}

@media all and (max-width: 1200px) {
  .main--slider--block__text {
    font-size: 36px;
    padding-left: 20px;
  }

  .main--slider:before {
    background-size: auto;
  }

  .main--slider:after {
    display: none;
  }

  .main--slider .owl-dots {
    /* bottom: 10%; */
  }

  .covering--title {
    margin-bottom: 50px;
  }

  .covering--title:before {
    transform: none;
  }

  .advantages__title {
    position: relative;
    position: unset;
    transform: none;
  }

  .advantages__left {
    padding-right: 10px;
  }

  .advantages__right {
    padding-left: 10px;
  }

  .fnc--center--articles__title {
    padding-bottom: 50px;
  }

  .we-accept_block .row:nth-child(even) img {
    width: calc(calc(100% / 3) - 10px);
  }

  .we-accept_block .row:nth-child(odd) img {
    width: calc(calc(100% / 4) - 10px);
  }

  .footer-map {
    margin-right: 15px;
  }

  .for--clients--title {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .for--clients, .for--clients.error--page {
    background: #f6f4f4;
  }

  .for--clients--title h2 {
    margin: 0;
  }

  .for--clients--title br {
    display: none;
  }

  .for--clients--block {
    width: 50%;
  }

  .for--clients--img {
    width: 50%;
  }

  .item--block.item--block__listVer {
    width: calc(calc(100% / 2) - calc(50px / 2));
  }

  .for-house-block, .for-house-img {
    max-width: 100%;
    width: 100%;
  }

  .for-house-title {
    text-align: center;
  }

  .brand--table, .brand--img {
    flex-basis: 100%;
    padding: 5px 0;
  }

  .main--slider--block__image:before {
    right: 15%;
  }
}

@media all and (max-width: 1150px) {
  .footer-map {
    order: 1;
    margin-right: 0;
    max-width: 100%;
    margin-top: 15px;
  }

  .main_advantages:before {
    transform: translate(0%, 0%);
  }
}

@media all and (max-width: 1000px) {
  .languages {
    flex-direction: column;
  }

  .language {
    margin-right: 0;
    margin-bottom: 1px;
  }

  .menu--chapters__item {
    padding: 5px;
  }

  .w-50 {
    width: 100%;
  }

  .about_us--img {
    justify-content: center;
    align-items: center;
  }

  .about_us--text {
    order: -1;
    padding: 15px 30px;
  }

  .about_us--page .main_advantages:before, .about_us--page .main_advantages:after, .about_us:before, .about_us--title:before {
    display: none;
  }

  .header__logo img {
    max-width: 160px;
  }

  .menu--chapters__item a {
    font-size: 12px;
  }

  .header--underhead--inner__right {
    padding-left: 10px;
  }

  .header--underhead--inner__left {
    padding-right: 9px;
  }

  .main--slider--block__image:before {
    right: 5%;
  }
}

@media all and (max-width: 900px) {
  .fnc--header--contacts__left *, .fnc--header--contacts__right a, .fnc--header--contacts__mid a {
    font-size: 12px;
  }

  .header__logo {
    flex-basis: 160px;
  }

  .main--slider--block__text {
    font-size: 32px;
  }

  .menu--chapters--mobile {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .menu--chapters, .header--underhead--inner__right, .header--centerhead--inner--column3__in2 {
    display: none;
  }

  .header--underhead--inner__left {
    border: none;
  }

  .header__col {
    justify-content: center;
  }

  .header--centerhead--inner__column1 {
    padding-right: 40px;
  }

  .fnc--header--contacts__left, .fnc--header--contacts__mid {
    display: none;
  }

  .fnc--header--contacts__right {
    flex-direction: row;
    flex-grow: 1;
  }

  .fnc--header--contacts__right a {
    font-size: 14px;
  }

  .fnc--center--articles__listitem {
    padding-bottom: 25px;
  }

  /* --- FIXED HEADER --- */
  .header {
    height: var(--hh);
  }

  .header .container {
    position: unset;
    background: #f6f4f4;
    z-index: 10000;
    box-shadow: 0px 1px 5px 0px #00000026;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
  }

  /* /// FIXED HEADER /// */
  .footer-bottom .row {
    width: 100%;
  }
}

@media all and (max-width: 768px) {
  .we-accept-title h2 {
    font-size: 28px;
  }

  .footer-row {
    flex-wrap: wrap;
  }

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

  .footer-block {
    flex-grow: 1;
    text-align: center;
  }

  .footer-text {
    justify-content: center;
  }

  .footer-tel {
    justify-content: center;
  }

  .for--clients--block {
    width: 100%;
  }

  .for--clients--img {
    width: 100%;
  }

  .item--block.item--block__listVer {
    width: calc(100% - calc(100px / 2));
  }

  .js__list--container.fnc--products--listVer {
    justify-content: center;
  }

  .fnc--column--category0, .fnc--column--category__active0 {
    width: calc(calc(100% / 3) - 2px);
  }

  .fnc--column--category0 a, .fnc--column--category__active0 a {
    padding: 30px 0;
    text-align: center;
    width: 100%;
  }

  .main_advantages:before {
    display: none;
  }

  .main_advantages {
    padding: 25px 0;
  }

  .for-house-block .for-house-adv_block {
    width: 100%;
    padding-right: 0;
  }

  .tariff-text {
    margin-bottom: 30px;
  }

  .equipment-block {
    width: calc(50% - 15px);
  }

  .equipment-block:not(:last-child) {
    margin-bottom: 30px;
  }

  .for-house-adv_block span, .for-house-adv_block, .for--clients--block p {
    font-size: 16px;
  }

  .oplata .page--article--text {
    flex-wrap: wrap;
  }

  .page--article--text img {
    float: none;
    margin-right: 0;
    max-width: 100%;
  }

  .main--slider--block__image:before {
    right: -20px;
  }

  .error404--center--first {
    font-size: 78px;
  }

  .error404--center--page {
    padding-left: 0;
    padding-right: 0;
  }

  .item--block-wrap, .fnc--center--articles--listitem--wrap {
    padding: 0;
  }

  .item--block:hover, .fnc--center--articles__listitem:hover {
    transform: none;
  }
}

@media all and (max-width: 700px) {
  .fnc--header--contacts__right {
    flex-direction: column;
    flex-grow: unset;
  }

  .fnc--header--contacts {
    justify-content: center;
  }

  .fnc--header--contacts__right div {
    border: none;
    padding: 0 5px;
  }

  .fnc--header--contacts {
    border-right: 1px solid #e8e8e8;
  }

  .main--slider--block__text {
    font-size: 28px;
  }

  .main--slider--block__text a {
    margin-top: 10px;
    display: flex;
  }

  .main--slider .owl-dots {
    bottom: 15%;
  }
}

@media all and (max-width: 600px) {
  .main--slider--block__text {
    font-size: 24px;
  }

  .with-nav.owl-carousel {
    padding: 0 30px;
  }

  .items--slider--title, .covering--title {
    margin-bottom: 30px;
  }

  .covering--title:before {
    display: none;
  }

  div#map {
    height: 60vh;
  }

  .covering {
    padding: 25px 0;
  }

  .fnc--center--articles__slider:before {
    transform: translate(0%, -25%);
  }

  .main_advantages--block {
    flex-basis: 100%;
  }

  .main_advantages--title {
    margin-bottom: 25px;
  }

  .about_us--title {
    margin-bottom: 30px;
  }

  .for-house-img img {
    width: 100%;
    height: auto;
  }

  .for-house-adv_block img {
    margin-right: 20px;
  }

  .fnc--products--listVer {
    padding: 10px 0;
  }

  .for--clients--block img {
    margin-right: 20px;
  }

  .main--slider--block__image:before {
    top: -10px;
    right: -30px;
    transform: scale(0.8);
  }
}

@media all and (max-width: 500px) {
  .main--slider--block__text {
    font-size: 18px;
  }

  .covering--title h2, .we-accept-title h2, .fnc--center--articles__title, .for--clients--title h2, .main_advantages--title h2, .fnc--column--catalog__title, .items--slider--title h2, .about_us--title h2, .for-house-title h2, .additional-services-title h2 {
    font-size: 28px;
  }

  .advantages__img+p {
    font-size: 16px;
  }

  .advantages__title h2 {
    font-size: 36px;
  }

  .we-accept-title h2 {
    font-size: 24px;
  }

  .fnc--column--catalog {
    margin-bottom: 25px;
  }

  [data-page="category"] .content--center--page__text {
    margin-bottom: 50px;
  }

  .about_us--title:after {
    /* transform: translate(50%, -50%); */
    display: none;
  }

  .additional-services {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .equipment-block {
    width: 100%;
  }

  .main--slider .owl-dots {
    bottom: 10%;
  }

  #map .leaflet-control-geocoder-form input {
    margin: 0 !important;
  }

  .error404--center--first {
    font-size: 60px;
  }

  .footer-bottom .row>div {
    width: 100%;
  }

  .footer-bottom .row>div:first-child {
    margin-bottom: 10px;
  }

  /* .under--header--slider__center {
    min-height: 350px;
    min-height: unset;
  } */
}

@media all and (max-width: 400px) {
  .header__logo {
    flex-basis: 130px;
    margin-right: 10px;
  }

  .fnc--header--contacts__right a {
    font-size: 12px;
  }

  .main--slider--block__text {
    font-size: 16px;
  }

  .item--block__descr {
    padding: 10px 5px 20px;
  }

  .item--block__spec .row {
    padding: 10px 5px;
  }

  .fnc--center--articles--listitem__info {
    font-size: 14px;
  }

  .fnc--center--articles--listitem__image img {
    height: 200px;
  }

  .we-accept-title h2 {
    font-size: 18px;
  }

  .item--block.item--block__listVer {
    width: calc(100% - 25px);
  }

  .fnc--column--category0 a, .fnc--column--category__active0 a {
    font-size: 16px;
  }

  [data-page="category"] .content--center--page__text {
    margin-bottom: 25px;
  }

  .about_us {
    padding: 25px 0;
  }

  .for-house-title h2 {
    font-size: 24px;
  }

  .content--brand--page .additional-services-table td {
    display: block;
  }

  .content--brand--page .additional-services-table td:nth-child(odd) {
    background: var(--text-orange);
  }

  .item--block__btn button {
    width: calc(100% + 10px);
    left: -5px;
  }

  .connection-cost img {
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .connection-cost_text {
    width: 100%;
  }

  .main--slider .owl-dots {
    left: 45%;
    bottom: 5%;
  }

  .main--slider--block__image:before {
    transform: scale(0.6);
    right: -40px;
    top: -20px;
  }
}

@media all and (max-width: 350px) {
  .header__logo {
    flex-basis: 100px;
  }

  .main--slider--block__text {
    font-size: 14px;
  }

  .for--clients--block p {
    font-size: 14px;
  }
}

.fnc--desc--title {
  color: #1da51a;
  font-weight: bolder;
  padding: 10px 20px;
  padding-top: 30px;
  font-size: 24px;
}

@media (prefers-color-scheme: dark) {
  * {
    background: initial;
    color: initial;
    background-color: initial;
    border-color: initial;
  }
}

@supports (-ms-ime-align:auto) {
  .advantages {
    overflow: hidden;
  }

  .advantages__video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: blur(2px);
    z-index: -1;
  }
}

#request-success-popup, #register-popup {
  max-width: 800px;
}

.request-info_title {
  font-size: 16px;
  font-weight: 600;
}

.request-info_offer-text .important {
  color: var(--text-orange);
  font-size: 15px;
  font-weight: 600;
}

.request-info_offer_read {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

a.request-info_offer-link {
  color: var(--text-orange);
  margin: 10px 0 5px;
}

.request-info_buttons {
  display: flex;
  justify-content: space-between;
}

#offer_readed.error label {
  color: #ff0000;
}

.request-info_buttons>a {
  padding: 10px 20px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  background: var(--text-orange);
  color: var(--button-text);
  border: 0;
  border-radius: 3px;
  text-decoration: none !important;
  max-width: 48%;
  text-align: center;
}

.request-note {
  background: #f6f4f4;
  padding: 10px;
  text-align: center;
  margin: 10px 0;
}

.request-info_text a {
  text-decoration: underline;
}

.receipt-link {
  text-align: center;
  background: #f6f4f4;
  padding: 10px;
  color: var(--text-orange);
  cursor: pointer;
}

@media (max-width: 1024px) {
  #register-popup {
    max-width: 600px;
    max-height: 80vh;
    overflow: auto;
  }

  .request-info_offer {
    margin-bottom: 10px;
  }

  #register-popup img {
    max-width: 150px;
    height: auto;
  }
}

@media (max-width: 600px) {
	#request-success-popup {
      top: 85px;
      height: calc(100vh - 90px);
      transform: translate(-50%, 0);
      overflow-y: auto;
	}
}

/* --- PRELOADER --- */

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  /* Ñ„Ð¾Ð½Ð¾Ð²Ñ‹Ð¹ Ñ†Ð²ÐµÑ‚ */
  background: #f6f4f4;
  z-index: 10001;
}

.preloader__row {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
}

.preloader__row img {
  max-width: 100%;
  margin-bottom: 15px;
}

.preloader__image {
  width: 70px;
  height: 70px;
  text-align: center;
  animation: preloader-rotate 2s infinite linear;
}

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

.loaded_hiding .preloader {
  transition: 0.3s opacity;
  opacity: 0;
}

.loaded .preloader {
  display: none;
}

.auth-modal_info-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.auth-modal_info {
  flex-basis: 50%;
  width: 50%;
  margin: 5px 0;
}

.auth-modal_title {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-orange);
  padding: 10px 0;
}

.auth-modal_info-value {
  margin-bottom: 10px;
  font-style: italic;
}

.auth-modal_info-value ul {
  list-style: none;
  padding: 0;
}

.auth-modal_info-title {
  margin-bottom: 5px;
  font-weight: 600;
  display: flex;
}

.auth-modal_info-title img {
  margin-right: 10px;
}

.auth-modal_info-value ul .type {
  display: inline-block;
  width: 50px;
}

.auth-modal_footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  /* justify-content: center; */
}

.auth-modal_footer a {
  display: flex;
  /* align-items: center; */
  /* font-weight: 600; */
  /* background: #ffad00; */
  /* padding: 5px 15px; */
  /* width: -webkit-fill-available; */
  flex-grow: 1;
  justify-content: center;
  min-width: calc(33% - 10px);
  max-width: calc(50% - 10px);
}

.auth-modal_footer button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: unset;
  padding: 10px 7px;
  width: 100%;
  justify-content: center;
}

.auth-modal_footer img {
  max-width: 20px;
  margin-right: 5px;
}

/* .auth-modal_footer a:first-child button img {
  margin: 0;
} */

.error-message {
  text-align: center;
  font-size: 16px;
  color: var(--14-text-color);
  margin-top: 10px;
}

.wow:not(body#tinymce .wow) {
  visibility: hidden;
}

.payment_button_modal {
  background: #f6f4f4;
  color: var(--text-orange);
  box-shadow: 0 0 3px 1px var(--text-orange);
  background-image: url(/img/weAccept/logo10-c.png);
  background-repeat: no-repeat;
  background-position: 95% 50%;
  background-size: 30%;
  padding-right: 100px;

}

.payment_button_modal:hover {
  background: #f6f4f4;
  color: var(--text-orange);
  box-shadow: 0 0 3px 1px var(--text-orange);
  background-image: url(/img/weAccept/logo10-c.png);
  background-repeat: no-repeat;
  background-position: 95% 50%;
  background-size: 30%;
  padding-right: 100px;
  box-shadow: 0 0 3px 1px var(--text-orange);

}

.auth-modal_change_plan select#change_tariff{
  width: 50%;
  margin-right: 10px;
  flex-grow: 1;
  padding-left: 5px;
}

.auth-modal_change_plan select#change_tariff + button{
  width: calc(50% - 10px);
}

.auth-modal_footer .auth-modal_change_plan{
  display: flex;
  flex-wrap: wrap;
}

.auth-modal_change_plan .auth-modal_info-title{
  width: 100%;
}

.popup--changeplan--container .popup--container__title{
  font-size: 19px;
}

.popup--changeplan--container .popup--container__footer{
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .js__body--popup input[type="text"]{
    font-size: 16px;
  }
}

 /* disable ru/en/uk */

.languages {
display:none;
}

.fnc--mobile--chapters__top .languages {
display:none;
}