@charset "UTF-8";
/*** загальні ***/
body {
  font-family: "Exo 2", sans-serif;
  -webkit-font-feature-settings: "clig" off, "liga" off;
  font-feature-settings: "clig" off, "liga" off;
  color: #22223a;
  min-height: 100vh;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a {
  text-decoration: none;
  color: #22223a;
}

a:focus,
a:active {
  text-decoration: none;
}

*::-webkit-scrollbar {
  width: 10px;
  background-color: #22223a;
  border-radius: 5px;
}

*::-webkit-scrollbar-track {
  background: #fff;
}

*::-webkit-scrollbar-thumb {
  background-color: #22223a;
  border: 3px solid #fff;
  border-radius: 5px;
}

input,
button,
textarea {
  font-family: inherit;
  cursor: pointer;
  background-color: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

div,
a,
input,
textarea,
button,
path,
label,
section,
img,
p,
svg {
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

img {
  display: block;
}

h1 {
  font-size: 96px;
  line-height: 120px;
  font-weight: 700;
}

h2 {
  font-size: 60px;
  line-height: 80px;
  font-weight: 700;
}

h3 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
}

h4 {
  font-size: 34px;
  line-height: 40px;
  font-weight: 600;
}

h5 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}

h6 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}

p.p1 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}

p.p2 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.block {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

.wrapper {
  padding: 120px 24px 24px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

.download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  padding: 12px;
  background-color: #fff;
  border: 1px solid #fff;
}
.download p {
  white-space: nowrap;
}
.download:hover {
  background-color: #000000;
}
.download:hover p {
  color: #fff;
}

.instruction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 12px;
  color: #fff;
}

.to_catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #22223a;
  background-color: #22223a;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 8px auto 0;
}
.to_catalog svg {
  fill: #fff;
}
.to_catalog:hover {
  background-color: #fff;
  color: #22223a;
}
.to_catalog:hover svg {
  fill: #22223a;
}

/*****  загальні для Слайдер Slick *****/
.slick-list {
  overflow: hidden;
}

.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.slick-dots {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px;
  border-radius: 24px;
  background-color: #f1f2f6;
}
.slick-dots li {
  list-style: none;
  height: 24px;
  width: 24px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  cursor: pointer;
}
.slick-dots li.slick-active {
  background: -o-linear-gradient(261deg, #ffad32 0%, #da532f 100%);
  background: linear-gradient(189deg, #ffad32 0%, #da532f 100%);
}
.slick-dots li button {
  font-size: 0;
}

/*****  модалки *****/
.modal_blocks {
  display: none;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  opacity: 0;
}
.modal.on {
  z-index: 1001;
  opacity: 1;
}
.modal .close svg {
  fill: #fff;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.modal .close:hover svg {
  fill: #ffad32;
}
.modal .language {
  background: #fff;
  padding: 48px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 36px;
}
.modal .language a {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.modal .language a:hover,
.modal .language a.on {
  background-color: #f1f2f6;
}
.modal .user_drop {
  background-color: #fff;
  padding: 12px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.modal .user_drop a {
  padding: 8px 12px;
  border-radius: 4px;
}
.modal .user_drop a:hover {
  background-color: #f1f2f6;
}
.modal iframe {
  display: block;
  max-width: 1272px;
  width: 100%;
  max-height: 714px;
  height: 100%;
}
.modal .including_list {
  border-radius: 8px;
  background-color: #fff;
  padding: 24px;
  max-width: 576px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
}
.modal .including_list .title {
  padding-left: 28px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  position: relative;
  margin-bottom: 12px;
}
.modal .including_list .title::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/main/Info-24.svg") 50% 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.modal .including_list .cont {
  padding-left: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.modal .including_list .cont ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  margin-left: 20px;
  margin-bottom: 12px;
}
.modal .including_list .cont ul li {
  font-size: 14px;
  line-height: 20px;
  position: relative;
}
.modal .including_list .cont ul li::marker {
  font-size: 0;
}
.modal .including_list .cont ul li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: -o-linear-gradient(261deg, #ffad32 0%, #da532f 100%);
  background: linear-gradient(189deg, #ffad32 0%, #da532f 100%);
  position: absolute;
  left: -20px;
  top: 4px;
}
.modal .including_list .cont h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.modal .including_list .cont .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 6px;
  border-radius: 8px;
  background-color: #f1f2f6;
}
.modal .including_list .cont .item .name {
  color: #00aff0;
  margin-right: auto;
  font-size: 14px;
}
.modal .including_list .cont .item .counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.modal .including_list .cont .item .counter button {
  border-radius: 4px;
  width: 36px;
  height: 35px;
  background: url("../img/catalog/pagination_arrow.svg") 50% 50%;
  background-size: cover;
}
.modal .including_list .cont .item .counter button:hover {
  background: url("../img/catalog/pagination_arrow.svg") 50% 50% #fff;
  background-size: cover;
}
.modal .including_list .cont .item .counter button:nth-child(3) {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.modal .including_list .cont .item .counter input {
  width: 48px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 0;
  background-color: #fff;
  text-align: center;
}
.modal .including_list .cont .item .add_to_cart svg rect {
  fill: #22223a;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.modal .including_list .cont .item .add_to_cart svg:hover rect {
  fill: #da532f;
}
.modal .info {
  border-radius: 8px;
  background-color: #fff;
  padding: 24px;
  max-width: 576px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.modal .info .title {
  padding-left: 28px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  position: relative;
}
.modal .info .title::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/main/Info-24.svg") 50% 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.modal .info p {
  padding-left: 28px;
}
.modal .info_order {
  border-radius: 8px;
  background-color: #fff;
  padding: 24px;
  max-width: 576px;
  width: 100%;
  max-height: 85vh;
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.modal .info_order .title {
  padding-left: 28px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  position: relative;
}
.modal .info_order .title::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/main/Info-24.svg") 50% 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.modal .info_order p {
  padding-left: 28px;
}
.modal .info_order p a {
  color: #00aff0;
}
.modal .info_order .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 6px;
  border-radius: 8px;
  background-color: #f1f2f6;
  margin-left: 28px;
}
.modal .info_order .item .name {
  color: #00aff0;
  margin-right: auto;
  font-size: 14px;
}
.modal .info_order .item .counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.modal .info_order .item .counter button {
  border-radius: 4px;
  width: 36px;
  height: 35px;
  background: url("../img/catalog/pagination_arrow.svg") 50% 50%;
  background-size: cover;
}
.modal .info_order .item .counter button:hover {
  background: url("../img/catalog/pagination_arrow.svg") 50% 50% #fff;
  background-size: cover;
}
.modal .info_order .item .counter button:nth-child(3) {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.modal .info_order .item .counter input {
  width: 48px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 0;
  background-color: #fff;
  text-align: center;
}
.modal .info_order .item .add_to_cart svg rect {
  fill: #22223a;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.modal .info_order .item .add_to_cart svg:hover rect {
  fill: #da532f;
}

@media (max-width: 500px) {
  .modal .including_list .cont .item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .modal .including_list .cont .item .name {
    width: 100%;
  }
  .modal .including_list .cont .item .counter {
    width: 100%;
  }
  .modal .including_list .cont .item .counter input {
    width: calc(100% - 96px);
  }
  .modal .including_list .cont .item .price {
    margin-left: auto;
  }
  .modal .info_order {
    padding: 16px;
  }
  .modal .info_order p {
    padding-left: 0;
  }
  .modal .info_order .item {
    margin-left: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .modal .info_order .item .name,
  .modal .info_order .item .counter {
    width: calc(50% - 6px);
  }
  .modal .info_order .item .counter,
  .modal .info_order .item .add_to_cart {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
/*****  хедер *****/
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #f1f2f6;
  padding: 6px 24px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
  background-color: #fff;
}
header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .logo .logo_text {
  margin-top: 27px;
}
header nav {
  margin-left: auto;
  display: block;
  background-color: #fff;
}
header nav div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
header nav div a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 16px;
  border-radius: 12px;
}
header nav div a.on {
  background-color: #f1f2f6;
}
header nav div a svg {
  fill: #22223a;
}
header nav div a:hover {
  color: #fff;
  background-color: #22223a;
}
header nav div a:hover svg {
  fill: #fff;
}
header .cll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
header .cll button {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
header .cll .cart_link {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
header .cll .cart_link svg {
  fill: #22223a;
}
header .cll .cart_link span {
  font-size: 10px;
  font-weight: 600;
  color: #91919d;
  position: absolute;
  width: 12px;
  height: 12px;
  top: 12px;
  right: 0;
}
header .cll .cart_link:hover {
  background: -o-linear-gradient(261deg, #ffad32 0%, #da532f 100%);
  background: linear-gradient(189deg, #ffad32 0%, #da532f 100%);
}
header .cll .cart_link:hover svg {
  fill: #fff;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
header .cll .cart_link:hover span {
  color: #fff;
}
header .cll .language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 12px;
}
header .cll .language:hover {
  background-color: #22223a;
}
header .cll .language:hover a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .cll .language:hover a.on {
  display: none;
}
header .cll .language a {
  display: none;
  width: 48px;
  height: 48px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
header .cll .language a.on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .cll .login {
  position: relative;
}
header .cll .login button {
  display: none;
}
header .cll .login button:hover {
  background-color: #f1f2f6;
}
header .cll .login button.on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .cll .login .user_drop {
  position: absolute;
  right: 0;
  top: calc(100% + 24px);
  border-radius: 12px;
  border: 1px solid #f1f2f6;
  background-color: #fff;
  padding: 12px;
  z-index: -1;
  opacity: 0;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: 80% 10%;
  -ms-transform-origin: 80% 10%;
  transform-origin: 80% 10%;
}
header .cll .login .user_drop.on {
  z-index: 1;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
header .cll .login .user_drop a {
  display: block;
  padding: 8px 12px;
  border-radius: 4px;
  white-space: nowrap;
}
header .cll .login .user_drop a:hover {
  background-color: #f1f2f6;
}
header .cll .burger {
  display: none;
}

@media (max-width: 1500px) {
  header {
    padding: 24px;
  }
  header .logo .logo_text {
    display: none;
  }
}
@media (max-width: 1220px) {
  header {
    padding: 6px 24px;
  }
  header .logo .logo_text {
    display: block;
  }
  header nav {
    display: none;
    margin: 0;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    padding: 24px;
    width: 100%;
    height: calc(100vh - 96px);
  }
  header nav div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  header .cll {
    margin-left: auto;
    gap: 4px;
  }
  header .cll .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
  }
  header .cll .burger::after,
  header .cll .burger::before {
    content: "";
    width: 20px;
    height: 4px;
    border-radius: 1px;
    background-color: #22223a;
    position: absolute;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  header .cll .burger::before {
    top: 14px;
    left: 14px;
  }
  header .cll .burger::after {
    bottom: 14px;
    left: 14px;
  }
  header .cll .burger:hover {
    background-color: #f1f2f6;
  }
  header .cll .burger span {
    width: 20px;
    height: 4px;
    border-radius: 1px;
    background-color: #22223a;
  }
  header .cll .burger.on {
    background-color: #f1f2f6;
  }
  header .cll .burger.on span {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  header .cll .burger.on::before {
    top: 22px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header .cll .burger.on::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 22px;
  }
}
@media (max-width: 610px) {
  header {
    padding: 24px;
  }
  header .logo .logo_text {
    display: none;
  }
}
/*****  main_title *****/
.main_title {
  padding: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.main_title h3 {
  width: calc(100% - 124px);
}
.main_title img {
  width: 100px;
  height: 100px;
}

@media (max-width: 600px) {
  .main_title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .main_title h3 {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    font-size: 34px;
    line-height: 40px;
    font-weight: 600;
  }
}
/***** вибір сценарія *****/
.choosing_scenario {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 24px 0;
}
.choosing_scenario .item {
  width: calc(33.33% - 16px);
  border-radius: 16px;
  border: 1px solid #f1f2f6;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.choosing_scenario .item .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 4px;
}
.choosing_scenario .item .title h4 {
  width: 100%;
}
.choosing_scenario .item .title p {
  padding: 4px 8px;
  border-radius: 4px;
  background-color: #f1f2f6;
}
.choosing_scenario .item .illustration {
  margin-top: auto;
  overflow: hidden;
  position: relative;
}
.choosing_scenario .item .illustration .moving_block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.choosing_scenario .item .illustration .moving_block .picture {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}
.choosing_scenario .item .illustration .moving_block button {
  padding: 12px 16px;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  background-color: #22223a;
  border-radius: 12px;
  border: 1px solid #22223a;
  width: 100%;
}
.choosing_scenario .item .illustration .moving_block button:hover {
  background-color: #fff;
  color: #22223a;
}
.choosing_scenario .item:hover .illustration .moving_block {
  top: -66px;
}
.choosing_scenario .item.v1 .illustration .moving_block .picture {
  background: url("../img/main/01.svg") no-repeat;
  background-size: cover;
}
.choosing_scenario .item.v1:hover .illustration .moving_block .picture {
  background: url("../img/main/01-hover.svg") no-repeat;
  background-size: cover;
}
.choosing_scenario .item.v2 .illustration .moving_block .picture {
  background: url("../img/main/02.svg") no-repeat;
  background-size: cover;
}
.choosing_scenario .item.v2:hover .illustration .moving_block .picture {
  background: url("../img/main/02-hover.svg") no-repeat;
  background-size: cover;
}
.choosing_scenario .item.v3 .illustration .moving_block .picture {
  background: url("../img/main/03.svg") no-repeat;
  background-size: cover;
}
.choosing_scenario .item.v3:hover .illustration .moving_block .picture {
  background: url("../img/main/03-hover.svg") no-repeat;
  background-size: cover;
}

@media (max-width: 1130px) {
  .choosing_scenario {
    position: relative;
    margin-bottom: 72px;
  }
  .choosing_scenario .item {
    height: 100%;
  }
  .choosing_scenario .item .illustration {
    max-width: 400px;
    width: 100%;
    margin: auto;
  }
  .choosing_scenario .slick-dots {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
@media (max-width: 500px) {
  .choosing_scenario .item .illustration {
    max-width: 100%;
  }
  .choosing_scenario .item .title h4 {
    font-size: 24px;
    line-height: 30px;
  }
}
/***** Текст про рішення *****/
.text_decision {
  padding: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  max-width: 724px;
  width: 100%;
  margin: 0 auto;
}

/***** Замініть систему управління *****/
.replacement {
  padding-bottom: 24px;
}
.replacement .title {
  width: 200px;
  height: 100px;
  margin-bottom: 24px;
}
.replacement .slider_block {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.replacement .slider {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.replacement .slider .item {
  height: 400px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.replacement .slider .item .fond {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.replacement .slider .item .cont {
  position: absolute;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 24px;
}
.replacement .slider .item .cont h3 {
  color: #fff;
}
.replacement .slider .item .cont a {
  margin-right: auto;
  color: #fff;
  text-align: center;
  padding: 16px 24px;
  border-radius: 12px;
  background: -o-linear-gradient(261deg, #ffad32 0%, #da532f 100%);
  background: linear-gradient(189deg, #ffad32 0%, #da532f 100%);
}
.replacement .slider .item .cont a:hover {
  background: #22223a;
}
.replacement .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 16px;
  position: absolute;
  bottom: 48px;
  right: 48px;
}
.replacement .buttons button {
  background-color: #fff;
  border-radius: 12px;
}
.replacement .buttons button:last-child img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.replacement .buttons button:hover {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

@media (max-width: 520px) {
  .replacement .slider .item .cont {
    padding: 24px;
  }
  .replacement .slider .item .cont h3 {
    font-size: 34px;
    line-height: 40px;
    font-weight: 600;
  }
  .replacement .slider .slick-dots {
    margin-top: 24px;
  }
  .replacement .buttons {
    display: none;
  }
}
/***** швидке замовлення *****/
.quick_order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 24px;
}
.quick_order .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.quick_order .title img {
  width: 100px;
  height: 100px;
}
.quick_order .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid #f1f2f6;
  padding: 16px;
  white-space: nowrap;
}
.quick_order .item:hover {
  background-color: #f1f2f6;
}
.quick_order .item .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: calc(100% - 511px);
}
.quick_order .item .info .img {
  width: 100px;
  height: 100px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 8px;
}
.quick_order .item .info .img img {
  width: 100%;
}
.quick_order .item .info .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  width: calc(100% - 116px);
}
.quick_order .item .info .text .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.quick_order .item .info .text .name p {
  color: #91919d;
  line-height: 24px;
}
.quick_order .item .info .text .sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.quick_order .item .info .text .sum .price {
  font-size: 30px;
  line-height: 40px;
  font-weight: 800;
}
.quick_order .item .info .text .sum .old_price {
  display: none;
  font-size: 20px;
  font-weight: 600;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  color: #91919d;
}
.quick_order .item .info .text .sum.discount .price {
  background: -o-linear-gradient(261deg, #ffad32 0%, #da532f 100%);
  background: linear-gradient(189deg, #ffad32 0%, #da532f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #da532f;
}
.quick_order .item .info .text .sum.discount .old_price {
  display: block;
}
.quick_order .item .control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  width: 495px;
}
.quick_order .item .control .counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.quick_order .item .control .counter button {
  width: 48px;
  height: 48px;
  border: 1px solid #fff;
  border-radius: 12px;
  background-color: #fff;
}
.quick_order .item .control .counter button:last-child img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.quick_order .item .control .counter button:hover {
  border: 1px solid #22223a;
}
.quick_order .item .control .counter input {
  width: 72px;
  padding: 12px 0;
  border-radius: 12px;
  background-color: #fff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
  color: #22223a;
}
.quick_order .item .control .add_to_cart,
.quick_order .item .control .detailed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background-color: #22223a;
  color: #fff;
  border: 1px solid #22223a;
}
.quick_order .item .control .add_to_cart svg,
.quick_order .item .control .detailed svg {
  fill: #fff;
}
.quick_order .item .control .add_to_cart:hover,
.quick_order .item .control .detailed:hover {
  background-color: #fff;
  color: #22223a;
}
.quick_order .item .control .add_to_cart:hover svg,
.quick_order .item .control .detailed:hover svg {
  fill: #22223a;
}
.quick_order .item .control.off .counter {
  display: none;
}
.quick_order .item .control.off .detailed {
  margin-left: auto;
}

@media (max-width: 1020px) {
  .quick_order .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .quick_order .item .info {
    width: 100%;
  }
  .quick_order .item .info .text .name p {
    white-space: normal;
  }
  .quick_order .item .control {
    width: 100%;
  }
  .quick_order .item .control .counter {
    width: calc(50% - 12px);
  }
  .quick_order .item .control .counter input {
    width: calc(100% - 144px);
  }
  .quick_order .item .control .add_to_cart {
    width: calc(50% - 12px);
  }
  .quick_order .item .control .detailed {
    width: 100%;
  }
}
@media (max-width: 635px) {
  .quick_order .title h5 {
    font-size: 20px;
    line-height: 24px;
    white-space: nowrap;
  }
  .quick_order .item .info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .quick_order .item .info .img {
    width: 100%;
    padding: 20px;
  }
  .quick_order .item .info .text {
    width: 100%;
  }
  .quick_order .item .info .text .name {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .quick_order .item .info .text .sum .price {
    font-size: 20px;
    line-height: 30px;
  }
  .quick_order .item .info .text .sum .old_price {
    font-size: 16px;
    line-height: 20px;
  }
  .quick_order .item .control {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .quick_order .item .control .counter,
  .quick_order .item .control .add_to_cart {
    width: 100%;
  }
}
/***** інфо лист *****/
.info_list {
  padding-bottom: 24px;
}
.info_list .title {
  width: 300px;
  height: 100px;
  margin: 0 0 24px auto;
}
.info_list .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #f1f2f6;
}
.info_list .list .item {
  border: 1px solid #f1f2f6;
  border-radius: 8px;
  padding: 16px;
  width: calc(33.33% - 11px);
}
.info_list .list .item h6 {
  margin-left: 24px;
  position: relative;
}
.info_list .list .item h6::before {
  content: "";
  position: absolute;
  top: 0;
  left: -24px;
  width: 24px;
  height: 24px;
  background: url("../img/main/info_list_before.svg");
}
.info_list .list .item h6 span {
  color: #da532f;
}

@media (max-width: 800px) {
  .info_list .list .item {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .info_list .list .item h6 {
    font-size: 16px;
  }
}
/***** main_flow *****/
.main_flow {
  padding-bottom: 24px;
}
.main_flow img {
  width: 300px;
  height: 100px;
  margin: 0 auto;
}

/***** Зручне керування *****/
.convenient_management {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 48px;
  margin-bottom: 24px;
  border-radius: 16px;
  background-color: #000000;
}
.convenient_management .disc {
  width: calc(50% - 24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px 24px;
}
.convenient_management .disc h3,
.convenient_management .disc h5 {
  width: 100%;
  color: #fff;
}
.convenient_management .disc a {
  width: calc(50% - 12px);
}
.convenient_management .disc a:hover {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
.convenient_management .disc a img {
  width: 100%;
}
.convenient_management .gifs {
  width: calc(50% - 24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  padding: 70px 38px;
}
.convenient_management .gifs img {
  width: 33.33%;
}
.convenient_management .gifs div {
  width: 33.33%;
}
.convenient_management .gifs div img {
  width: 100%;
}

@media (max-width: 768px) {
  .convenient_management .disc {
    width: 100%;
  }
  .convenient_management .gifs {
    width: 100%;
    padding: 48px;
  }
}
@media (max-width: 500px) {
  .convenient_management {
    padding: 24px;
    gap: 24px;
  }
  .convenient_management .disc {
    gap: 24px;
  }
  .convenient_management .disc h3 {
    font-size: 34px;
    line-height: 40px;
    font-weight: 600;
  }
  .convenient_management .disc h5 {
    font-size: 20px;
    line-height: 24px;
  }
  .convenient_management .disc a {
    width: 100%;
  }
  .convenient_management .gifs {
    padding: 0;
  }
}
/***** Встановіть додаток *****/
.install_app {
  background-color: #000000;
  padding: 24px;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.install_app h5 {
  color: #fff;
  white-space: nowrap;
}

@media (max-width: 1280px) {
  .install_app {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .install_app h5 {
    width: 100%;
    white-space: normal;
  }
}
/***** товари *****/
.goods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.goods .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid #f1f2f6;
  padding: 16px;
  background-color: #fff;
}
.goods .item:hover {
  background-color: #f1f2f6;
}
.goods .item .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 256px;
  border: 1px solid #f1f2f6;
  border-radius: 8px;
  position: relative;
  background-color: #fff;
}
.goods .item .img::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/catalog/catalog_discount.svg") no-repeat;
  position: absolute;
  top: 12px;
  left: 12px;
  display: none;
}
.goods .item .img img {
  max-width: 100%;
  max-height: 100%;
}
.goods .item .p2 {
  margin: 16px 0 8px;
}
.goods .item .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
  gap: 4px;
}
.goods .item .bottom .old_price {
  display: none;
  font-size: 16px;
  line-height: 24px;
  color: #91919d;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
}
.goods .item .bottom .to_cart {
  margin-left: auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: url("../img/catalog/cart_catalogue.svg");
}
.goods .item .bottom .to_cart:hover {
  background: url("../img/catalog/cart_catalogue_hover.svg");
}
.goods .item.discount .img::before {
  display: block;
}
.goods .item.discount .bottom .price {
  background: -o-linear-gradient(261deg, #ffad32 0%, #da532f 100%);
  background: linear-gradient(189deg, #ffad32 0%, #da532f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #da532f;
}
.goods .item.discount .bottom .old_price {
  display: block;
}

/***** каталог *****/
.catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.catalog .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.catalog .title img {
  width: 100px;
}
.catalog .filters {
  display: none;
}
.catalog .sidebar {
  width: 313px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  background-color: #fff;
}
.catalog .sidebar .you_choose {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.catalog .sidebar .you_choose .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
}
.catalog .sidebar .you_choose .head p {
  font-size: 10px;
  line-height: 16px;
}
.catalog .sidebar .you_choose .head button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 4px;
  border: 1px solid #f1f2f6;
}
.catalog .sidebar .you_choose .head button:hover {
  background-color: #f1f2f6;
}
.catalog .sidebar .you_choose .selected_categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.catalog .sidebar .you_choose .selected_categories button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  padding: 2px 4px;
  border-radius: 4px;
  border: 1px solid #f1f2f6;
  background-color: #f1f2f6;
}
.catalog .sidebar .you_choose .selected_categories button p {
  font-size: 10px;
  line-height: 16px;
}
.catalog .sidebar .you_choose .selected_categories button:hover {
  border: 1px solid #22223a;
}
.catalog .sidebar .range {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background-color: #f1f2f6;
  margin-bottom: 24px;
}
.catalog .sidebar .range input,
.catalog .sidebar .range button {
  width: 65.5px;
  padding: 12px 0;
  background-color: #fff;
  font-size: 14px;
  border-radius: 8px;
  text-align: center;
}
.catalog .sidebar .range input::-moz-placeholder {
  color: #22223a;
}
.catalog .sidebar .range input:-ms-input-placeholder {
  color: #22223a;
}
.catalog .sidebar .range input::-webkit-input-placeholder {
  color: #22223a;
}
.catalog .sidebar .range input::-ms-input-placeholder {
  color: #22223a;
}
.catalog .sidebar .range input::placeholder {
  color: #22223a;
}
.catalog .sidebar .range button {
  width: 48px;
  border: 1px solid #f1f2f6;
}
.catalog .sidebar .range button:hover {
  border: 1px solid #22223a;
}
.catalog .sidebar .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e6e7ed;
  margin-bottom: 24px;
}
.catalog .sidebar .category:last-child {
  border: none;
  margin-bottom: 0;
}
.catalog .sidebar .category .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}
.catalog .sidebar .category .head:hover img {
  border: 1px solid #22223a;
}
.catalog .sidebar .category .head h6 {
  width: calc(100% - 36px);
}
.catalog .sidebar .category .head img {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 1px solid #fff;
}
.catalog .sidebar .category .head img.on {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.catalog .sidebar .category .checkboxes_block {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.catalog .sidebar .category .checkbox {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  margin-bottom: 24px;
}
.catalog .sidebar .category .checkbox:last-child {
  margin-bottom: 0;
}
.catalog .sidebar .category .checkbox:hover span {
  background: -o-linear-gradient(261deg, #ffad32 0%, #da532f 100%);
  background: linear-gradient(189deg, #ffad32 0%, #da532f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #da532f;
}
.catalog .sidebar .category .checkbox span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 28px;
  font-size: 16px;
  line-height: 24px;
}
.catalog .sidebar .category .checkbox span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: url("../img/catalog/check.svg") no-repeat;
  background-size: cover;
  border-radius: 8px;
}
.catalog .sidebar .category .checkbox input[type="checkbox"] {
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
}
.catalog .sidebar .category .checkbox input[type="checkbox"]:checked + span:before {
  background: url("../img/catalog/checked.svg") no-repeat;
  background-size: cover;
}
.catalog .goods {
  width: calc(100% - 329px);
}
.catalog .goods .item {
  width: calc(33.33% - 11px);
}
.catalog .goods .controls {
  width: 100%;
}
.catalog .goods .controls .more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  border-radius: 16px 16px 0px 0px;
  background-color: #f1f2f6;
  margin-bottom: 1px;
}
.catalog .goods .controls .more button {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #fff;
  background: url("../img/catalog/more.svg") no-repeat;
}
.catalog .goods .controls .more button:hover {
  border: 1px solid #22223a;
}
.catalog .goods .controls .pagin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  border-radius: 0px 0px 16px 16px;
  background-color: #f1f2f6;
}
.catalog .goods .controls .pagin a {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  background-color: #fff;
}
.catalog .goods .controls .pagin a.prev,
.catalog .goods .controls .pagin a.next {
  border: 1px solid #fff;
  background: url("../img/catalog/pagination_arrow.svg") no-repeat 50% 50% #fff;
}
.catalog .goods .controls .pagin a.prev:hover,
.catalog .goods .controls .pagin a.next:hover {
  border: 1px solid #22223a;
}
.catalog .goods .controls .pagin a.next {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.catalog .goods .controls .pagin a:hover:not(.off, .prev, .next),
.catalog .goods .controls .pagin a.on {
  background-color: #22223a;
  color: #fff;
}
.catalog .goods .controls .pagin a.off:hover {
  cursor: default;
}

@media (max-width: 1170px) {
  .catalog .goods .item {
    width: calc(50% - 8px);
  }
}
@media (max-width: 910px) {
  .catalog .goods .item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .catalog .filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background-color: #f1f2f6;
    cursor: pointer;
  }
  .catalog .filters .open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
  }
  .catalog .filters .close {
    display: none;
    margin-left: auto;
    width: 24px;
    height: 24px;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  .catalog .filters.on .open {
    display: none;
  }
  .catalog .filters.on .close {
    display: block;
  }
  .catalog .sidebar {
    position: relative;
    top: 0;
    width: 100%;
  }
  .catalog .sidebar .you_choose .head {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .catalog .sidebar .you_choose .head h6 {
    display: none;
  }
  .catalog .sidebar .you_choose.on .head {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .catalog .sidebar .you_choose.on .head h6 {
    display: block;
  }
  .catalog .sidebar .drop {
    display: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  .catalog .goods {
    width: 100%;
  }
  .catalog .goods .item {
    width: calc(50% - 8px);
  }
}
@media (max-width: 575px) {
  .catalog .goods .item {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .catalog .goods .controls .pagin a:not(.prev, .next, .on) {
    display: none;
  }
  .catalog .goods .controls .pagin .on {
    width: calc(100% - 128px);
  }
}
/***** продукт *****/
.bread_crumps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.bread_crumps a:last-child {
  color: #91919d;
  cursor: default;
}

.product {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product .sidebar {
  width: 124px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 120px;
}
.product .sidebar .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.product .sidebar .head p {
  color: #91919d;
  font-size: 12px;
  line-height: 16px;
}
.product .sidebar .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 8px;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
}
.product .sidebar .item svg {
  fill: #91919d;
}
.product .sidebar .item:hover,
.product .sidebar .item.on {
  background-color: #f1f2f6;
}
.product .sidebar .item:hover svg,
.product .sidebar .item.on svg {
  fill: #da532f;
}
.product .cont {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.product .cont .info {
  border-radius: 24px;
  border: 1px solid #f1f2f6;
  display: none;
}
.product .cont .info.on {
  display: block;
}
.product .cont .info .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 24px;
  border-radius: 24px 24px 0 0;
  background-color: #f1f2f6;
}
.product .cont .info .head .slider_block {
  position: relative;
  width: 464px;
  height: 464px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.product .cont .info .head .slider_block .slider {
  width: 100%;
  height: 100%;
}
.product .cont .info .head .slider_block .slider .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 464px;
  height: 464px;
}
.product .cont .info .head .slider_block .slider .item img {
  max-width: 90%;
}
.product .cont .info .head .slider_block .pag {
  position: absolute;
  width: calc(100% - 24px);
  bottom: 12px;
  left: 12px;
  border-radius: 24px;
  padding: 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #f1f2f6;
}
.product .cont .info .head .slider_block .pag .prev,
.product .cont .info .head .slider_block .pag .next {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  border: 1px solid #fff;
  background: url("../img/catalog/category_arrow.svg") no-repeat 50% 50% #fff;
}
.product .cont .info .head .slider_block .pag .prev:hover,
.product .cont .info .head .slider_block .pag .next:hover {
  border: 1px solid #22223a;
}
.product .cont .info .head .slider_block .pag .prev {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.product .cont .info .head .slider_block .pag .next {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.product .cont .info .head .text {
  width: calc(100% - 488px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  text-align: right;
}
.product .cont .info .head .text img {
  display: none;
  width: 24px;
  height: 24px;
  margin-left: auto;
}
.product .cont .info .head .text h5 {
  margin-top: auto;
}
.product .cont .info .head .text .old_price {
  color: #91919d;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  text-decoration: line-through;
}
.product .cont .info .head .text button {
  padding: 16px 24px;
  border-radius: 12px;
  background: -o-linear-gradient(261deg, #ffad32 0%, #da532f 100%);
  background: linear-gradient(189deg, #ffad32 0%, #da532f 100%);
  color: #fff;
}
.product .cont .info .head .text button:hover {
  background: #22223a;
}
.product .cont .info .head.discount .text img {
  display: block;
}
.product .cont .info .head.discount .text h3 {
  background: -o-linear-gradient(261deg, #ffad32 0%, #da532f 100%);
  background: linear-gradient(189deg, #ffad32 0%, #da532f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #da532f;
}
.product .cont .info .fill {
  padding: 24px;
}
.product .cont .info .fill ul {
  border-radius: 16px;
  border: 1px solid #f1f2f6;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.product .cont .info .fill ul li {
  font-size: 18px;
  line-height: 24px;
  margin-left: 25px;
  position: relative;
}
.product .cont .info .fill ul li::marker {
  font-size: 0;
}
.product .cont .info .fill ul li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: -o-linear-gradient(261deg, #ffad32 0%, #da532f 100%);
  background: linear-gradient(189deg, #ffad32 0%, #da532f 100%);
  position: absolute;
  top: 5px;
  left: -20px;
}
.product .cont .info .fill .controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.product .cont .info .fill .controls button {
  width: calc(50% - 12px);
  padding: 12px 24px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  border-radius: 12px;
  background-color: #fff;
}
.product .cont .info .fill .controls button.on,
.product .cont .info .fill .controls button:hover {
  background-color: #f1f2f6;
}
.product .cont .info .fill .discription {
  display: none;
  gap: 24px 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 24px;
}
.product .cont .info .fill .discription.on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product .cont .info .fill .discription h5 {
  width: 100%;
}
.product .cont .info .fill .discription .title {
  width: calc(50% - 8px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4px 12px;
}
.product .cont .info .fill .discription .title p {
  color: #5a5a6c;
  width: 100%;
}
.product .cont .info .fill .discription .paragraph {
  border-bottom: 1px solid #f1f2f6;
  padding: 12px 0 24px;
}
.product .cont .info .fill .discription .paragraph h6 {
  margin-bottom: 24px;
}
.product .cont .info .fill .discription .paragraph p {
  margin-bottom: 12px;
}
.product .cont .info .fill .characteristics {
  padding-top: 24px;
  display: none;
}
.product .cont .info .fill .characteristics.on {
  display: block;
}
.product .cont .info .fill .characteristics .partition {
  padding: 24px 0 36px;
  border-bottom: 1px solid #f1f2f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px 16px;
}
.product .cont .info .fill .characteristics .partition h6 {
  width: 100%;
}
.product .cont .info .fill .characteristics .partition .item {
  width: calc(50% - 8px);
}
.product .cont .info .fill .characteristics .partition .item p {
  color: #5a5a6c;
  margin-bottom: 4px;
}
.product .cont .info .fill .characteristics .partition .item h6 {
  font-size: 16px;
  line-height: 24px;
}
.product .cont .info .fill .characteristics .partition ul {
  width: 100%;
}
.product .cont .docs {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  display: none;
}
.product .cont .docs.on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product .cont .docs a {
  width: calc(50% - 12px);
  border: 1px solid #f1f2f6;
  border-radius: 8px;
  padding: 24px;
}
.product .cont .docs a:hover {
  background: #f1f2f6;
}
.product .cont .docs a h6 {
  margin-bottom: 24px;
}
.product .cont .docs a p {
  color: #91919d;
}
.product .cont .video {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  display: none;
}
.product .cont .video.on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product .cont .video button {
  border-radius: 8px;
  border: 1px solid #f1f2f6;
  height: 400px;
  padding: 24px;
  width: calc(50% - 12px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  background: url("../img/product/video_arrow.png") no-repeat 50% 50% #fff;
}
.product .cont .video button:hover {
  background: url("../img/product/video_arrow_hover.png") no-repeat 50% 50% #f1f2f6;
}
.product .cont .video button h6 {
  text-align: center;
}
.product .cont .faq {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  display: none;
}
.product .cont .faq.on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product .cont .faq .item {
  padding: 16px 16px 16px 48px;
  border-radius: 8px;
  border: 1px solid #f1f2f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.product .cont .faq .item h6 {
  position: relative;
}
.product .cont .faq .item h6::before {
  content: "";
  position: absolute;
  left: -32px;
  width: 24px;
  height: 24px;
  background: url("../img/product/question.svg");
}
.product .cont .faq .item .answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

/***** Ви переглядали *****/
.viewed {
  padding: 36px 0 24px;
  border-top: 1px solid #f1f2f6;
}
.viewed .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.viewed .title h5 {
  margin-right: auto;
}
.viewed .title button {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: url("../img/main/replacement_slider_arrow.svg") 50% 50%;
  border: 1px solid #fff;
}
.viewed .title button:hover {
  border: 1px solid #22223a;
}
.viewed .title button.next {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.viewed .goods {
  border-radius: 16px;
  border: 1px solid #f1f2f6;
  overflow: hidden;
}
.viewed .goods .item {
  margin-left: 16px;
  width: 276px;
}
.viewed .goods .item .img {
  height: 176px;
}

@media (max-width: 420px) {
  .viewed .title h5 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    white-space: nowrap;
  }
}
/***** Готові рішення *****/
.ready_solutions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid #f1f2f6;
  padding: 16px;
}
.ready_solutions h5,
.ready_solutions a {
  width: calc(25% - 12px);
}
.ready_solutions a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 36px 0;
  border-radius: 12px;
}
.ready_solutions a:hover {
  background-color: #f1f2f6;
}
.ready_solutions a h6 {
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 940px) {
  .ready_solutions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .ready_solutions h5,
  .ready_solutions a {
    width: 100%;
  }
  .ready_solutions a {
    padding: 0;
  }
  .ready_solutions a h6 {
    white-space: nowrap;
  }
}
/***** додаток *****/
.application {
  padding: 295px 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.application .accessory_phone {
  height: 894px;
  border-radius: 16px;
  background-color: #000000;
  padding: 0 24px 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  position: relative;
}
.application .accessory_phone .boiler {
  position: absolute;
  top: -271px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 384px;
  height: 823px;
  background: url("../img/application/phone.webp") no-repeat;
  padding: 162px 36px 0;
}
.application .accessory_phone .boiler .gifs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.application .accessory_phone .boiler .gifs img {
  width: 33.33%;
}
.application .accessory_phone .boiler .gifs div {
  width: 33.33%;
}
.application .accessory_phone .boiler .gifs div img {
  width: 100%;
}
.application .accessory_phone h5 {
  color: #fff;
  text-align: center;
}
.application .points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid #f1f1f1;
  padding: 16px;
}
.application .points h6 {
  position: relative;
  padding: 16px 16px 16px 48px;
  border-radius: 8px;
  border: 1px solid #f1f1f1;
  width: calc(33.33% - 11px);
}
.application .points h6::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: -o-linear-gradient(261deg, #ffad32 0%, #da532f 100%);
  background: linear-gradient(189deg, #ffad32 0%, #da532f 100%);
}
.application .screens {
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  border-radius: 16px;
  padding: 34px;
  background-color: #000;
  position: relative;
}
.application .screens .item {
  width: 360px;
  height: 592px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  border-radius: 24px;
  border: 1px solid #22223a;
}
.application .screens .item p {
  color: #fff;
  width: 100%;
  border-radius: 16px 16px 0px 0px;
  background-color: #22223a;
  padding: 12px;
  text-align: center;
}

@media (max-width: 900px) {
  .application .points h6 {
    width: calc(50% - 8px);
  }
}
@media (max-width: 600px) {
  .application h3 {
    font-size: 34px;
    line-height: 40px;
    font-weight: 600;
  }
  .application .points h6 {
    width: 100%;
    font-size: 16px;
  }
}
@media (max-width: 525px) {
  .application {
    padding: 192px 0 24px;
    border-top: 1px solid #f1f1f1;
  }
  .application .accessory_phone {
    height: 620px;
    padding: 0 16px 24px;
    gap: 16px;
  }
  .application .accessory_phone .boiler {
    top: -120px;
    width: 192px;
    height: 412px;
    background-size: cover;
    padding: 81px 18px 0;
  }
  .application .screens .item {
    width: 312px;
    height: 550px;
  }
}
/***** документи *****/
.documents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}
.documents h4 {
  width: 100%;
}
.documents .sidebar {
  width: 200px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: sticky;
  top: 110px;
}
.documents .sidebar .filters {
  display: none;
}
.documents .sidebar .nav .column_all {
  color: #91919d;
  font-size: 10px;
  line-height: 12px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 16px;
}
.documents .sidebar .nav .column_all:hover {
  color: #22223a;
}
.documents .sidebar .nav .title {
  color: #91919d;
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}
.documents .sidebar .nav .title::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #91919d;
  position: absolute;
  left: 4px;
  top: 4px;
}
.documents .sidebar .nav .title.on,
.documents .sidebar .nav .title:hover {
  color: #22223a;
}
.documents .sidebar .nav .title.on::before,
.documents .sidebar .nav .title:hover::before {
  background: -o-linear-gradient(261deg, #ffad32 0%, #da532f 100%);
  background: linear-gradient(189deg, #ffad32 0%, #da532f 100%);
}
.documents .sidebar .nav .unit {
  margin-bottom: 16px;
}
.documents .sidebar .nav .unit .title {
  margin-bottom: 4px;
  cursor: pointer;
  margin-bottom: 4px;
}
.documents .sidebar .nav .unit .drop {
  padding-left: 32px;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.documents .sidebar .nav .unit .drop button {
  font-size: 14px;
  line-height: 20px;
  color: #91919d;
  display: block;
  margin-bottom: 4px;
}
.documents .sidebar .nav .unit .drop button.on,
.documents .sidebar .nav .unit .drop button:hover {
  color: #22223a;
}
.documents .cont {
  width: calc(100% - 224px);
}
.documents .cont .docs_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}
.documents .cont .docs_block .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #f1f2f6;
  width: calc(33.33% - 11px);
  height: 400px;
}
.documents .cont .docs_block .item p {
  color: #91919d;
}
.documents .cont .docs_block .item a {
  width: 100%;
  margin-top: auto;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #22223a;
  background-color: #22223a;
  color: #fff;
  opacity: 0;
}
.documents .cont .docs_block .item a:hover {
  background-color: #fff;
  color: #22223a;
}
.documents .cont .docs_block .item:hover {
  background-color: #f1f2f6;
}
.documents .cont .docs_block .item:hover a {
  opacity: 1;
}
.documents .cont .video_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #f1f2f6;
}
.documents .cont .video_block button {
  border-radius: 8px;
  border: 1px solid #f1f2f6;
  height: 400px;
  padding: 24px;
  width: calc(50% - 12px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  background: url("../img/product/video_arrow.png") no-repeat 50% 50% #fff;
}
.documents .cont .video_block button:hover {
  background: url("../img/product/video_arrow_hover.png") no-repeat 50% 50% #f1f2f6;
}
.documents .cont .video_block button h6 {
  text-align: center;
}

@media (max-width: 870px) {
  .documents .cont .docs_block .item {
    width: calc(50% - 8px);
  }
}
@media (max-width: 768px) {
  .documents .sidebar {
    width: 100%;
    position: relative;
    top: 0;
  }
  .documents .sidebar .filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border-radius: 8px;
    background-color: #f1f2f6;
    cursor: pointer;
  }
  .documents .sidebar .filters .open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
  }
  .documents .sidebar .filters .close {
    display: none;
    margin-left: auto;
    width: 24px;
    height: 24px;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  .documents .sidebar .filters.on .open {
    display: none;
  }
  .documents .sidebar .filters.on .close {
    display: block;
  }
  .documents .sidebar .nav {
    display: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  .documents .sidebar .nav .column_all {
    display: none;
  }
  .documents .cont {
    width: 100%;
  }
  .documents .cont .docs_block .item {
    width: 100%;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .documents .cont .docs_block .item h5 {
    width: 100%;
  }
  .documents .cont .docs_block .item p {
    width: 34px;
  }
  .documents .cont .docs_block .item a {
    width: calc(100% - 58px);
  }
  .documents .cont .video_block button {
    width: 100%;
  }
}
/***** компанія *****/
.company .company_block {
  max-width: 728px;
  width: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  padding: 24px 0;
}
.company .company_block img {
  width: 200px;
  height: 100px;
}
.company .slider {
  border-radius: 16px;
  overflow: hidden;
  margin: 24px 0;
}
.company .slider .item {
  padding: 24px;
  background-color: #22223a;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 300px;
  height: 300px;
  position: relative;
}
.company .slider .item .half_circle {
  width: 16px;
  height: 16px;
  border: 8px solid transparent;
  border-bottom: 8px solid #fff;
  border-right: 8px solid #fff;
  border-radius: 8px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: -8px;
}
.company .slider .item p {
  margin-top: auto;
}

/***** сервіс *****/
.service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
}
.service h4 {
  width: 100%;
}
.service .item {
  width: calc(50% - 12px);
}

@media (max-width: 768px) {
  .service .item {
    width: 100%;
  }
}
/***** контакти *****/
.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
}
.contacts h4 {
  width: 100%;
}
.contacts .info {
  width: calc(50% - 12px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.contacts .info .item h6 {
  margin-bottom: 8px;
}
.contacts .info .item ul {
  padding: 8px 8px 8px 40px;
  border-radius: 16px;
  border: 1px solid #f1f2f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.contacts .info .item ul li {
  font-size: 18px;
  line-height: 24px;
  position: relative;
}
.contacts .info .item ul li::marker {
  font-size: 0;
}
.contacts .info .item ul li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: -o-linear-gradient(261deg, #ffad32 0%, #da532f 100%);
  background: linear-gradient(189deg, #ffad32 0%, #da532f 100%);
  position: absolute;
  left: -30px;
  top: 4px;
}
.contacts .info .item a {
  font-size: 18px;
  line-height: 24px;
  margin-right: 8px;
  white-space: nowrap;
}
.contacts .form {
  width: calc(50% - 12px);
}
.contacts .form form {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  border-radius: 16px;
  background-color: #f1f2f6;
}
.contacts .form form input,
.contacts .form form textarea {
  padding: 12px;
  border-radius: 8px;
  background-color: #fff;
  width: 100%;
}
.contacts .form form input::-moz-placeholder,
.contacts .form form textarea::-moz-placeholder {
  font-size: 14px;
  line-height: 20px;
  color: #91919d;
}
.contacts .form form input:-ms-input-placeholder,
.contacts .form form textarea:-ms-input-placeholder {
  font-size: 14px;
  line-height: 20px;
  color: #91919d;
}
.contacts .form form input::-webkit-input-placeholder,
.contacts .form form textarea::-webkit-input-placeholder {
  font-size: 14px;
  line-height: 20px;
  color: #91919d;
}
.contacts .form form input::-ms-input-placeholder,
.contacts .form form textarea::-ms-input-placeholder {
  font-size: 14px;
  line-height: 20px;
  color: #91919d;
}
.contacts .form form input::placeholder,
.contacts .form form textarea::placeholder {
  font-size: 14px;
  line-height: 20px;
  color: #91919d;
}
.contacts .form form textarea {
  resize: none;
}
.contacts .form form input[type="submit"] {
  border: 1px solid #22223a;
  background-color: #22223a;
  color: #fff;
}
.contacts .form form input[type="submit"]:hover {
  background-color: #fff;
  color: #22223a;
}

@media (max-width: 768px) {
  .contacts .info,
  .contacts .form {
    width: 100%;
  }
}
/*****  помилка *****/
.error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 80px 0 100px;
  margin-bottom: 24px;
}
.error img {
  max-width: 600px;
  width: 100%;
}

/***** товари для  схеми *****/
.scheme_tabs {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.scheme_tabs .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}
.scheme_tabs .links a {
  border-radius: 12px;
  padding: 12px 16px 12px 48px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  position: relative;
  white-space: nowrap;
}
.scheme_tabs .links a::before {
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 0;
  left: 0;
}
.scheme_tabs .links a:nth-child(1)::before {
  background: url("../img/product/solutions-01-48.svg") 50% 50%;
}
.scheme_tabs .links a:nth-child(2)::before {
  background: url("../img/product/solutions-02-48.svg") 50% 50%;
}
.scheme_tabs .links a:nth-child(3)::before {
  background: url("../img/product/solutions-03-48.svg") 50% 50%;
}
.scheme_tabs .links a:hover,
.scheme_tabs .links a.on {
  background-color: #f1f2f6;
}
.scheme_tabs .links a:hover:nth-child(1)::before,
.scheme_tabs .links a.on:nth-child(1)::before {
  background: url("../img/product/solutions-01-48_hover.svg") 50% 50%;
}
.scheme_tabs .links a:hover:nth-child(2)::before,
.scheme_tabs .links a.on:nth-child(2)::before {
  background: url("../img/product/solutions-02-48_hover.svg") 50% 50%;
}
.scheme_tabs .links a:hover:nth-child(3)::before,
.scheme_tabs .links a.on:nth-child(3)::before {
  background: url("../img/product/solutions-03-48_hover.svg") 50% 50%;
}
.scheme_tabs nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
  padding: 12px;
  border-radius: 24px;
  background-color: #f1f2f6;
}
.scheme_tabs nav .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #fff;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  gap: 2px;
  position: relative;
  cursor: pointer;
}
.scheme_tabs nav .number svg {
  fill: #000;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.scheme_tabs nav .number:hover,
.scheme_tabs nav .number.on {
  background: -o-linear-gradient(261deg, #ffad32 0%, #da532f 100%);
  background: linear-gradient(189deg, #ffad32 0%, #da532f 100%);
}
.scheme_tabs nav .number:hover svg,
.scheme_tabs nav .number.on svg {
  fill: #fff;
}
.scheme_tabs nav .number::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -32px;
  width: 16px;
  height: 16px;
  background: url("../img/scheme/chevron-arrow.svg") 50% 50%;
}
.scheme_tabs nav .number:last-child::after {
  display: none;
}

.scheme {
  margin: 0 auto 24px;
  overflow: auto;
}
.scheme .img {
  width: 1000px;
  height: 600px;
  opacity: 0;
  display: none;
}
.scheme .img.on {
  display: block;
  opacity: 1;
}
.scheme .img svg {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.scheme .img .info {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: #fff;
  position: absolute;
  cursor: pointer;
  background: -o-linear-gradient(261deg, #ffad32 0%, #da532f 100%);
  background: linear-gradient(189deg, #ffad32 0%, #da532f 100%);
}
.scheme .img .info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: #fff;
}
.scheme .img .info:hover {
  background: #22223a;
}
.scheme .img .info:hover::before {
  width: 4px;
  height: 4px;
}
.scheme .img .info h6,
.scheme .img .info p {
  display: none;
}
.scheme .img .inet {
  position: absolute;
  width: 24px;
  height: 24px;
}
.scheme .img .boiler {
  width: 76px;
  height: 150px;
  position: absolute;
  background: url("../img/scheme/boiler.svg") 50% 50% no-repeat;
}
.scheme .img .boiler:hover {
  background: url("../img/scheme/boiler_hover.webp") 50% 50% no-repeat;
}
.scheme .img .pump_tap {
  width: 162px;
  height: 86px;
  position: absolute;
  background: url("../img/scheme/pump-tap.svg") 50% 50% no-repeat;
}
.scheme .img .pump_tap:hover {
  background: url("../img/scheme/pump-tap-hover.webp") 50% 50% no-repeat;
}
.scheme .img .pump_l {
  width: 100px;
  height: 68px;
  position: absolute;
  background: url("../img/scheme/pump-l.webp") 50% 50% no-repeat;
}
.scheme .img .pump_l:hover {
  background: url("../img/scheme/pump-l-hover.webp") 50% 50% no-repeat;
}
.scheme .img .boost {
  width: 48px;
  height: 48px;
  position: absolute;
  background: url("../img/scheme/boost.webp") 50% 50% no-repeat;
}
.scheme .img .boost:hover {
  background: url("../img/scheme/boost-hover.webp") 50% 50% no-repeat;
}
.scheme .img .boiler2 {
  width: 100px;
  height: 150px;
  position: absolute;
  background: url("../img/scheme/boiler2.webp") 50% 50% no-repeat;
}
.scheme .img .boiler2:hover {
  background: url("../img/scheme/boiler2-hover.webp") 50% 50% no-repeat;
}
.scheme .img .radiator {
  width: 120px;
  height: 100px;
  position: absolute;
  background: url("../img/scheme/radiator.webp") 50% 50% no-repeat;
}
.scheme .img .radiator:hover {
  background: url("../img/scheme/radiator-hover.webp") 50% 50% no-repeat;
}
.scheme .img .battery {
  width: 112px;
  height: 150px;
  position: absolute;
  background: url("../img/scheme/battery.webp") 50% 50% no-repeat;
}
.scheme .img .battery:hover {
  background: url("../img/scheme/battery-hover.webp") 50% 50% no-repeat;
}
.scheme .img .boiler3 {
  width: 48px;
  height: 48px;
  position: absolute;
}
.scheme .img .pump_r_s {
  width: 50px;
  height: 34px;
  position: absolute;
  background: url("../img/scheme/pump-r-s.webp") 50% 50% no-repeat;
}
.scheme .img .pump_r_s:hover {
  background: url("../img/scheme/pump-r-s-hover.webp") 50% 50% no-repeat;
}
.scheme .img .servomotor {
  width: 48px;
  height: 48px;
  position: absolute;
  background: url("../img/scheme/servomotor.webp") 50% 50% no-repeat;
}
.scheme .img .servomotor:hover {
  background: url("../img/scheme/servomotor-hover.webp") 50% 50% no-repeat;
}
.scheme .img .floor {
  width: 120px;
  height: 100px;
  position: absolute;
  background: url("../img/scheme/floor.webp") 50% 50% no-repeat;
}
.scheme .img .floor:hover {
  background: url("../img/scheme/floor-hover.webp") 50% 50% no-repeat;
}
.scheme .img .big {
  width: 1000px;
  height: 600px;
  position: relative;
  background: url("../img/scheme/scheme1_1.webp") 50% 50% no-repeat;
}
.scheme .img .big .term {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 12px;
  left: 12px;
  cursor: pointer;
}
.scheme .img .big .term svg {
  fill: #c8c8ce;
}
.scheme .img .big .term:hover svg {
  fill: #22223a;
}
.scheme .img .big .term .info {
  top: 0;
  right: 0;
}
.scheme .img .big .system_ka1 {
  position: absolute;
  top: 12px;
  left: 84px;
  width: 150px;
  height: 150px;
}
.scheme .img .big .system_ka1 .inet {
  top: 0;
  left: 0;
}
.scheme .img .big .system_ka1 .n1 {
  top: 4px;
  left: 24px;
}
.scheme .img .big .system_ka1 .n2 {
  top: 4px;
  right: 4px;
}
.scheme .img .big .system_ka1 .n3 {
  bottom: 4px;
  left: 24px;
}
.scheme .img .big .system_ka1 .n4 {
  bottom: 4px;
  right: 24px;
}
.scheme .img .big .n5 {
  top: 195px;
  right: 442px;
}
.scheme .img .big .boiler {
  top: 227px;
  right: 432px;
}
.scheme .img .big .n6 {
  top: 227px;
  right: 416px;
}
.scheme .img .big .pump_tap {
  top: 293px;
  left: 306px;
}
.scheme .img .big .n7 {
  top: 293px;
  left: 468px;
}
.scheme .img .big .u1 {
  top: 293px;
  right: 308px;
}
.scheme .img .big .n8 {
  top: 293px;
  right: 292px;
}
.scheme .img .big .n9 {
  top: 390px;
  left: 152px;
}
.scheme .img .big .n10 {
  top: 390px;
  left: 186px;
}
.scheme .img .big .n11 {
  top: 390px;
  left: 220px;
}
.scheme .img .big .boost {
  left: 84px;
  bottom: 67px;
}
.scheme .img .big .n12 {
  left: 100px;
  bottom: 51px;
}
.scheme .img .big .boiler2 {
  left: 144px;
  bottom: 12px;
}
.scheme .img .big .n13 {
  left: 248px;
  bottom: 139px;
}
.scheme .img .big .u2 {
  left: 268px;
  bottom: 16px;
}
.scheme .img .big .n14 {
  left: 368px;
  bottom: 68px;
}
.scheme .img .big .n15 {
  left: 408px;
  bottom: 18px;
}
.scheme .img .big .n16 {
  right: 144px;
  bottom: 168px;
}
.scheme .img .big .n17 {
  right: 73px;
  bottom: 168px;
}
.scheme .img .big .n18 {
  right: 8px;
  bottom: 112px;
}
.scheme .img .big .n19 {
  right: 376px;
  bottom: 186px;
}
.scheme .img .big .radiator {
  right: 24px;
  bottom: 28px;
}
.scheme .img .big .battery {
  right: 328px;
  bottom: 4px;
}
.scheme .img .big .n20 {
  right: 312px;
  bottom: 138px;
}
.scheme .img .big .u3 {
  right: 204px;
  bottom: 16px;
}
.scheme .img .big .n21 {
  right: 188px;
  bottom: 68px;
}
.scheme .img .big .n22 {
  top: 16px;
  right: 454px;
}
.scheme .img .big .n23 {
  top: 16px;
  right: 348px;
}
.scheme .img .big .boiler3 {
  top: 12px;
  right: 28px;
}
.scheme .img .big .n24 {
  top: 12px;
  right: 12px;
}
.scheme .img .big .n25 {
  top: 117px;
  right: 298px;
}
.scheme .img .big .u4 {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  top: 181px;
  right: 285px;
}
.scheme .img .big .n26 {
  top: 173px;
  right: 277px;
}
.scheme .img .big .n27 {
  top: 225px;
  right: 262px;
}
.scheme .img .big .s1 {
  right: 288px;
  bottom: 241px;
}
.scheme .img .big .n28 {
  right: 280px;
  bottom: 281px;
}
.scheme .img .big .n29 {
  right: 226px;
  bottom: 285px;
}
.scheme .img .big .u5 {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  right: 212px;
  bottom: 203px;
}
.scheme .img .big .n30 {
  right: 204px;
  bottom: 229px;
}
.scheme .img .big .n31 {
  right: 190px;
  bottom: 201px;
}
.scheme .img .big .s2 {
  right: 216px;
  bottom: 129px;
}
.scheme .img .big .n32 {
  right: 208px;
  bottom: 169px;
}
.scheme .img .big .f1 {
  right: 24px;
  bottom: 172px;
}
.scheme .img .big .n33 {
  right: 144px;
  bottom: 256px;
}
.scheme .img .big .n34 {
  right: 4px;
  bottom: 256px;
}
.scheme .img .big .n35 {
  right: 144px;
  bottom: 312px;
}
.scheme .img .big .n36 {
  right: 73px;
  bottom: 312px;
}
.scheme .img .big .n37 {
  left: 12px;
  bottom: 66px;
}
.scheme .img .big .n38 {
  left: 532px;
  bottom: 120px;
}
.scheme .img .big .n39 {
  right: 288px;
  bottom: 260px;
}
.scheme .img .big .n40 {
  right: 260px;
  bottom: 200px;
}
.scheme .img .big .n41 {
  right: 370px;
  bottom: 98px;
}
.scheme .img .small {
  display: none;
}
.scheme .img.v2 .big {
  background: url("../img/scheme/scheme1_2.webp") 50% 50% no-repeat;
}
.scheme .img.v3 .big {
  background: url("../img/scheme/scheme1_3.webp") 50% 50% no-repeat;
}
.scheme .img.v3 .big .system_ka1 {
  top: 12px;
  left: 12px;
}
.scheme .img.v3 .big .n5 {
  top: 196px;
  right: 473px;
}
.scheme .img.v3 .big .boiler {
  top: 228px;
  right: 463px;
}
.scheme .img.v3 .big .n6 {
  top: 228px;
  right: 447px;
}
.scheme .img.v3 .big .pump_tap {
  top: 294px;
  left: 272px;
}
.scheme .img.v3 .big .n7 {
  top: 294px;
  left: 434px;
}
.scheme .img.v3 .big .u1 {
  top: 294px;
  right: 342px;
}
.scheme .img.v3 .big .n8 {
  top: 294px;
  right: 326px;
}
.scheme .img.v3 .big .n9 {
  left: 80px;
}
.scheme .img.v3 .big .n10 {
  left: 114px;
}
.scheme .img.v3 .big .n11 {
  left: 148px;
}
.scheme .img.v3 .big .boost {
  left: 12px;
}
.scheme .img.v3 .big .n12 {
  left: 28px;
}
.scheme .img.v3 .big .boiler2 {
  left: 72px;
}
.scheme .img.v3 .big .n13 {
  left: 176px;
}
.scheme .img.v3 .big .u2 {
  left: 196px;
}
.scheme .img.v3 .big .n14 {
  left: 296px;
}
.scheme .img.v3 .big .n15 {
  left: 336px;
}
.scheme .img.v3 .big .n16 {
  bottom: 500px;
}
.scheme .img.v3 .big .n17 {
  bottom: 500px;
}
.scheme .img.v3 .big .n18 {
  bottom: 444px;
}
.scheme .img.v3 .big .radiator {
  bottom: 360px;
}
.scheme .img.v3 .big .n19 {
  right: 408px;
  bottom: 158px;
}
.scheme .img.v3 .big .battery {
  right: 336px;
}
.scheme .img.v3 .big .n20 {
  right: 320px;
}
.scheme .img.v4 .big,
.scheme .img.v5 .big {
  background: url("../img/scheme/scheme1_4.webp") 50% 50% no-repeat;
}
.scheme .img.v4 .big .system_ka1,
.scheme .img.v5 .big .system_ka1 {
  top: 12px;
  left: 12px;
}
.scheme .img.v4 .big .n22,
.scheme .img.v5 .big .n22 {
  top: 16px;
  right: 535px;
}
.scheme .img.v4 .big .n23,
.scheme .img.v5 .big .n23 {
  top: 16px;
  right: 429px;
}
.scheme .img.v4 .big .n22_dub,
.scheme .img.v5 .big .n22_dub {
  top: 16px;
  right: 193px;
}
.scheme .img.v4 .big .n23_dub,
.scheme .img.v5 .big .n23_dub {
  top: 16px;
  right: 87px;
}
.scheme .img.v4 .big .n16,
.scheme .img.v5 .big .n16 {
  left: 154px;
  top: 222px;
}
.scheme .img.v4 .big .n17,
.scheme .img.v5 .big .n17 {
  left: 225px;
  top: 222px;
}
.scheme .img.v4 .big .n18,
.scheme .img.v5 .big .n18 {
  left: 290px;
  top: 278px;
}
.scheme .img.v4 .big .radiator,
.scheme .img.v5 .big .radiator {
  top: 278px;
  left: 170px;
}
.scheme .img.v4 .big .n16_dub,
.scheme .img.v5 .big .n16_dub {
  left: 358px;
  top: 222px;
}
.scheme .img.v4 .big .n17_dub,
.scheme .img.v5 .big .n17_dub {
  left: 429px;
  top: 222px;
}
.scheme .img.v4 .big .n18_dub,
.scheme .img.v5 .big .n18_dub {
  left: 494px;
  top: 278px;
}
.scheme .img.v4 .big .radiator.dub,
.scheme .img.v5 .big .radiator.dub {
  top: 278px;
  left: 374px;
}
.scheme .img.v4 .big .f1,
.scheme .img.v5 .big .f1 {
  top: 278px;
  right: 302px;
}
.scheme .img.v4 .big .n33,
.scheme .img.v5 .big .n33 {
  right: 422px;
  bottom: 306px;
}
.scheme .img.v4 .big .n34,
.scheme .img.v5 .big .n34 {
  right: 282px;
  bottom: 306px;
}
.scheme .img.v4 .big .n35,
.scheme .img.v5 .big .n35 {
  right: 422px;
  bottom: 362px;
}
.scheme .img.v4 .big .n36,
.scheme .img.v5 .big .n36 {
  right: 351px;
  bottom: 362px;
}
.scheme .img.v4 .big .f2,
.scheme .img.v5 .big .f2 {
  top: 278px;
  right: 98px;
}
.scheme .img.v4 .big .n33_dub,
.scheme .img.v5 .big .n33_dub {
  right: 218px;
  bottom: 306px;
}
.scheme .img.v4 .big .n34_dub,
.scheme .img.v5 .big .n34_dub {
  right: 78px;
  bottom: 306px;
}
.scheme .img.v4 .big .n35_dub,
.scheme .img.v5 .big .n35_dub {
  right: 218px;
  bottom: 362px;
}
.scheme .img.v4 .big .n36_dub,
.scheme .img.v5 .big .n36_dub {
  right: 147px;
  bottom: 362px;
}
.scheme .img.v4 .big .n25,
.scheme .img.v5 .big .n25 {
  left: 261px;
  top: 402px;
}
.scheme .img.v4 .big .u4,
.scheme .img.v5 .big .u4 {
  left: 219px;
  top: 436px;
}
.scheme .img.v4 .big .n26,
.scheme .img.v5 .big .n26 {
  top: 428px;
  right: 723px;
}
.scheme .img.v4 .big .n27,
.scheme .img.v5 .big .n27 {
  top: 402px;
  right: 702px;
}
.scheme .img.v4 .big .n25_dub,
.scheme .img.v5 .big .n25_dub {
  left: 465px;
  top: 402px;
}
.scheme .img.v4 .big .u6,
.scheme .img.v5 .big .u6 {
  left: 423px;
  top: 436px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.scheme .img.v4 .big .n26_dub,
.scheme .img.v5 .big .n26_dub {
  top: 428px;
  right: 519px;
}
.scheme .img.v4 .big .n27_dub,
.scheme .img.v5 .big .n27_dub {
  top: 402px;
  right: 498px;
}
.scheme .img.v4 .big .n25_dub2,
.scheme .img.v5 .big .n25_dub2 {
  left: 669px;
  top: 402px;
}
.scheme .img.v4 .big .u7,
.scheme .img.v5 .big .u7 {
  left: 627px;
  top: 436px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.scheme .img.v4 .big .n26_dub2,
.scheme .img.v5 .big .n26_dub2 {
  top: 428px;
  right: 315px;
}
.scheme .img.v4 .big .n27_dub2,
.scheme .img.v5 .big .n27_dub2 {
  top: 402px;
  right: 294px;
}
.scheme .img.v4 .big .n25_dub3,
.scheme .img.v5 .big .n25_dub3 {
  left: 873px;
  top: 402px;
}
.scheme .img.v4 .big .u8,
.scheme .img.v5 .big .u8 {
  left: 831px;
  top: 436px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.scheme .img.v4 .big .n26_dub3,
.scheme .img.v5 .big .n26_dub3 {
  top: 428px;
  right: 111px;
}
.scheme .img.v4 .big .n27_dub3,
.scheme .img.v5 .big .n27_dub3 {
  top: 402px;
  right: 90px;
}
.scheme .img.v4 .big .s3,
.scheme .img.v5 .big .s3 {
  left: 218px;
  bottom: 70px;
}
.scheme .img.v4 .big .n28,
.scheme .img.v5 .big .n28 {
  left: 261px;
  bottom: 102px;
}
.scheme .img.v4 .big .s4,
.scheme .img.v5 .big .s4 {
  left: 422px;
  bottom: 70px;
}
.scheme .img.v4 .big .n28_dub,
.scheme .img.v5 .big .n28_dub {
  left: 465px;
  bottom: 102px;
}
.scheme .img.v4 .big .s5,
.scheme .img.v5 .big .s5 {
  left: 626px;
  bottom: 70px;
}
.scheme .img.v4 .big .n28_dub2,
.scheme .img.v5 .big .n28_dub2 {
  left: 669px;
  bottom: 102px;
}
.scheme .img.v4 .big .s6,
.scheme .img.v5 .big .s6 {
  left: 830px;
  bottom: 70px;
}
.scheme .img.v4 .big .n28_dub3,
.scheme .img.v5 .big .n28_dub3 {
  left: 873px;
  bottom: 102px;
}
.scheme .img.v5 .big {
  background: url("../img/scheme/scheme1_5.webp") 50% 50% no-repeat;
}
.scheme .img.v5 .big .term {
  top: 24px;
  left: 94px;
}
.scheme .img.v5 .big .inet {
  top: 12px;
  left: 425px;
}
.scheme .img.v5 .big .n4 {
  top: 142px;
  right: 449px;
}
.scheme .img.v5 .big .f1 {
  right: 506px;
}
.scheme .img.v5 .big .n33 {
  right: 626px;
  bottom: 306px;
}
.scheme .img.v5 .big .n34 {
  right: 486px;
  bottom: 306px;
}
.scheme .img.v5 .big .n35 {
  right: 626px;
  bottom: 362px;
}
.scheme .img.v5 .big .n36 {
  right: 555px;
  bottom: 362px;
}
.scheme .img.v5 .big .n16_dub {
  left: 562px;
  top: 222px;
}
.scheme .img.v5 .big .n17_dub {
  left: 633px;
  top: 222px;
}
.scheme .img.v5 .big .n18_dub {
  left: 698px;
  top: 278px;
}
.scheme .img.v5 .big .radiator.dub {
  top: 278px;
  left: 578px;
}
.scheme .img.v5 .big .pump_tap {
  width: 54px;
  height: 29px;
  background-size: cover;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  top: 269px;
  left: 52px;
}
.scheme .img.v5 .big .n7 {
  top: 253px;
  left: 90px;
}
.scheme .img.v5 .big .n5 {
  top: 257px;
  right: 964px;
}
.scheme .img.v5 .big .u9 {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: 19px;
  bottom: 136px;
}
.scheme .img.v5 .big .n26_dub4 {
  position: absolute;
  left: 61px;
  bottom: 162px;
}
.scheme .img.v5 .big .n19 {
  right: 827px;
  bottom: 112px;
}
.scheme .img.v6 .big,
.scheme .img.v7 .big {
  background: url("../img/scheme/scheme2_1.webp") 50% 50% no-repeat;
}
.scheme .img.v6 .big .term,
.scheme .img.v7 .big .term {
  top: 24px;
  left: 420px;
}
.scheme .img.v6 .big .inet,
.scheme .img.v7 .big .inet {
  top: 12px;
  left: 12px;
}
.scheme .img.v6 .big .n22,
.scheme .img.v7 .big .n22 {
  top: 16px;
  left: 36px;
}
.scheme .img.v6 .big .n23,
.scheme .img.v7 .big .n23 {
  top: 16px;
  left: 142px;
}
.scheme .img.v6 .big .n4,
.scheme .img.v7 .big .n4 {
  top: 142px;
  left: 122px;
}
.scheme .img.v6 .big .s7,
.scheme .img.v7 .big .s7 {
  right: 297px;
  bottom: 196px;
}
.scheme .img.v6 .big .n28,
.scheme .img.v7 .big .n28 {
  right: 288px;
  bottom: 228px;
}
.scheme .img.v6 .big .n39_dub,
.scheme .img.v7 .big .n39_dub {
  position: absolute;
  right: 44px;
  bottom: 260px;
}
.scheme .img.v6 .big .s8,
.scheme .img.v7 .big .s8 {
  right: 53px;
  bottom: 196px;
}
.scheme .img.v6 .big .n28_dub,
.scheme .img.v7 .big .n28_dub {
  position: absolute;
  right: 44px;
  bottom: 228px;
}
.scheme .img.v6 .big .n40_dub,
.scheme .img.v7 .big .n40_dub {
  right: 16px;
  bottom: 200px;
}
.scheme .img.v7 .big {
  background: url("../img/scheme/scheme2_2.webp") 50% 50% no-repeat;
}
.scheme .img.v7 .big .n39 {
  right: 288px;
  bottom: 284px;
}
.scheme .img.v7 .big .n39_dub {
  right: 123px;
  bottom: 284px;
}
.scheme .img.v7 .big .s7 {
  right: 297px;
  bottom: 158px;
}
.scheme .img.v7 .big .s8 {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  right: 121px;
  bottom: 158px;
}
.scheme .img.v7 .big .n28 {
  right: 287px;
  bottom: 198px;
}
.scheme .img.v7 .big .n28_dub {
  right: 122px;
  bottom: 198px;
}
.scheme .img.v7 .big .n40 {
  right: 260px;
  bottom: 162px;
}
.scheme .img.v7 .big .n40_dub {
  right: 191px;
  bottom: 162px;
}
.scheme .img.v7 .big .u6 {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  right: 295px;
  bottom: 226px;
}
.scheme .img.v7 .big .u7 {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  right: 130px;
  bottom: 226px;
}
.scheme .img.v7 .big .n26 {
  right: 287px;
  top: 332px;
}
.scheme .img.v7 .big .n26_dub {
  right: 122px;
  bottom: 252px;
}
.scheme .img.v8 .big {
  background: url("../img/scheme/scheme2_3.webp") 50% 50% no-repeat;
}
.scheme .img.v8 .big .term {
  top: 24px;
  left: 94px;
}
.scheme .img.v8 .big .inet {
  top: 12px;
  left: 241px;
}
.scheme .img.v8 .big .n22 {
  top: 16px;
  left: 265px;
}
.scheme .img.v8 .big .n23 {
  top: 16px;
  left: 371px;
}
.scheme .img.v8 .big .n4 {
  top: 142px;
  left: 351px;
}
.scheme .img.v8 .big .n22_dub {
  top: 16px;
  right: 267px;
}
.scheme .img.v8 .big .n23_dub {
  top: 16px;
  right: 161px;
}
.scheme .img.v8 .big .n38 {
  left: 60px;
  bottom: 120px;
}
.scheme .img.v8 .big .n41 {
  left: 142px;
  bottom: 98px;
}
.scheme .img.v8 .big .u6 {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: 221px;
  bottom: 192px;
}
.scheme .img.v8 .big .u7 {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: 354px;
  bottom: 192px;
}
.scheme .img.v8 .big .u8 {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: 673px;
  bottom: 192px;
}
.scheme .img.v8 .big .u9 {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: 806px;
  bottom: 192px;
}
.scheme .img.v8 .big .n26 {
  left: 263px;
  top: 366px;
}
.scheme .img.v8 .big .n26_dub {
  left: 396px;
  bottom: 218px;
}
.scheme .img.v8 .big .n26_dub2 {
  left: 715px;
  bottom: 218px;
}
.scheme .img.v8 .big .n26_dub3 {
  left: 848px;
  bottom: 218px;
}
.scheme .img.v8 .big .s7 {
  left: 221px;
  bottom: 128px;
}
.scheme .img.v8 .big .s8 {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  left: 364px;
  bottom: 128px;
}
.scheme .img.v8 .big .s9 {
  left: 673px;
  bottom: 128px;
}
.scheme .img.v8 .big .s10 {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  left: 816px;
  bottom: 128px;
}
.scheme .img.v8 .big .n28 {
  left: 263px;
  bottom: 160px;
}
.scheme .img.v8 .big .n28_dub {
  left: 396px;
  bottom: 168px;
}
.scheme .img.v8 .big .n28_dub2 {
  left: 715px;
  bottom: 160px;
}
.scheme .img.v8 .big .n28_dub3 {
  left: 848px;
  bottom: 168px;
}
.scheme .img.v8 .big .n39 {
  left: 262px;
  bottom: 246px;
}
.scheme .img.v8 .big .n39_dub {
  left: 394px;
  bottom: 246px;
}
.scheme .img.v8 .big .n39_dub2 {
  left: 714px;
  bottom: 246px;
}
.scheme .img.v8 .big .n39_dub3 {
  left: 846px;
  bottom: 246px;
}
.scheme .img.v8 .big .n40 {
  left: 290px;
  bottom: 200px;
}
.scheme .img.v8 .big .n40_dub {
  left: 326px;
  bottom: 200px;
}
.scheme .img.v8 .big .n40_dub2 {
  left: 742px;
  bottom: 200px;
}
.scheme .img.v8 .big .n40_dub3 {
  left: 778px;
  bottom: 200px;
}
.scheme .img.v9 .big {
  background: url("../img/scheme/scheme3_1.webp") 50% 50% no-repeat;
}
.scheme .img.v9 .big .term {
  top: 267px;
  left: 214px;
}
.scheme .img.v9 .big .system_ka1 {
  top: 12px;
  left: 12px;
}
.scheme .img.v9 .big .i2 {
  top: 12px;
  left: 425px;
}
.scheme .img.v9 .big .n22 {
  top: 16px;
  left: 449px;
}
.scheme .img.v9 .big .n23 {
  top: 16px;
  left: 555px;
}
.scheme .img.v9 .big .n4_dub {
  top: 142px;
  left: 535px;
}
.scheme .img.v9 .big .n22_dub {
  top: 16px;
  right: 122px;
}
.scheme .img.v9 .big .n23_dub {
  top: 16px;
  right: 16px;
}
.scheme .img.v9 .big .n5 {
  left: 203px;
  top: 478px;
}
.scheme .img.v9 .big .u6 {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: 366px;
  bottom: 154px;
}
.scheme .img.v9 .big .u7 {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: 499px;
  bottom: 154px;
}
.scheme .img.v9 .big .u8 {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: 680px;
  bottom: 154px;
}
.scheme .img.v9 .big .u9 {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: 850px;
  bottom: 154px;
}
.scheme .img.v9 .big .n26 {
  left: 408px;
  top: 404px;
}
.scheme .img.v9 .big .n26_dub {
  left: 541px;
  top: 404px;
}
.scheme .img.v9 .big .n26_dub2 {
  left: 722px;
  top: 404px;
}
.scheme .img.v9 .big .n26_dub3 {
  left: 892px;
  top: 404px;
}
.scheme .img.v9 .big .s7 {
  left: 366px;
  bottom: 90px;
}
.scheme .img.v9 .big .s8 {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  left: 509px;
  bottom: 90px;
}
.scheme .img.v9 .big .s9 {
  left: 680px;
  bottom: 90px;
}
.scheme .img.v9 .big .s10 {
  left: 850px;
  bottom: 90px;
}
.scheme .img.v9 .big .n28 {
  left: 408px;
  bottom: 122px;
}
.scheme .img.v9 .big .n28_dub {
  left: 541px;
  bottom: 130px;
}
.scheme .img.v9 .big .n28_dub2 {
  left: 722px;
  bottom: 122px;
}
.scheme .img.v9 .big .n28_dub3 {
  left: 892px;
  bottom: 122px;
}
.scheme .img.v9 .big .n39 {
  left: 407px;
  bottom: 208px;
}
.scheme .img.v9 .big .n39_dub {
  left: 539px;
  bottom: 208px;
}
.scheme .img.v9 .big .n39_dub2 {
  left: 721px;
  bottom: 208px;
}
.scheme .img.v9 .big .n39_dub3 {
  left: 891px;
  bottom: 208px;
}
.scheme .img.v9 .big .n40 {
  left: 435px;
  bottom: 162px;
}
.scheme .img.v9 .big .n40_dub {
  left: 471px;
  bottom: 162px;
}
.scheme .img.v9 .big .n40_dub2 {
  left: 749px;
  bottom: 162px;
}
.scheme .img.v9 .big .n40_dub3 {
  left: 919px;
  bottom: 162px;
}
.scheme .img.v9 .big .n16 {
  top: 265px;
  right: 328px;
}
.scheme .img.v9 .big .n17 {
  top: 265px;
  right: 257px;
}
.scheme .img.v9 .big .n18 {
  top: 308px;
  right: 221px;
}
.scheme .img.v9 .big .radiator {
  width: 60px;
  height: 50px;
  background-size: cover;
  top: 308px;
  right: 237px;
}
.scheme .img.v9 .big .f1 {
  width: 60px;
  height: 50px;
  background-size: cover;
  bottom: 242px;
  right: 67px;
}
.scheme .img.v9 .big .n33 {
  bottom: 276px;
  right: 127px;
}
.scheme .img.v9 .big .n34 {
  bottom: 272px;
  right: 27px;
}
.scheme .img.v9 .big .n35 {
  bottom: 319px;
  right: 158px;
}
.scheme .img.v9 .big .n36 {
  bottom: 319px;
  right: 87px;
}
.scheme .img.v9 .big .boiler2 {
  left: 24px;
  bottom: 24px;
}

.add_to_order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 24px 4px;
  border-radius: 16px;
  border: 1px solid #f1f2f6;
}
.add_to_order .img {
  width: 100px;
  height: 100px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.add_to_order .img img {
  width: 100%;
}
.add_to_order h5 {
  width: calc(100% - 418px);
}
.add_to_order h5 span {
  white-space: nowrap;
  background: -o-linear-gradient(261deg, #ffad32 0%, #da532f 100%);
  background: linear-gradient(189deg, #ffad32 0%, #da532f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #da532f;
}
.add_to_order h5 i {
  font-style: normal;
  color: #ffad32;
}
.add_to_order .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.add_to_order .buttons .to_order_btn {
  margin-top: auto;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: #fff;
  background: -o-linear-gradient(261deg, #ffad32 0%, #da532f 100%);
  background: linear-gradient(189deg, #ffad32 0%, #da532f 100%);
}
.add_to_order .buttons .to_order_btn:hover {
  background: #22223a;
}
.add_to_order .buttons .store {
  font-size: 14px;
  line-height: 20px;
  color: #91919d;
}
.add_to_order .buttons .store:hover {
  color: #22223a;
}

@media (max-width: 1037px) {
  .scheme {
    width: 100%;
  }
  .scheme .img {
    width: 100%;
    height: initial;
  }
  .scheme .img .big {
    display: none;
  }
  .scheme .img .small {
    display: block;
    border-radius: 16px;
    border: 1px dashed #e6e7ed;
    overflow: hidden;
    position: relative;
  }
  .scheme .img .small .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #f1f2f6;
  }
  .scheme .img .small .head .term {
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 12px;
  }
  .scheme .img .small .item {
    padding: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
  }
  .scheme .img .small .item .pict {
    width: 48px;
    height: 48px;
    padding: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #e6e7ed;
    background-color: #fff;
    z-index: 1;
  }
  .scheme .img .small .item .pict img {
    max-width: 100%;
    max-height: 100%;
  }
  .scheme .img .small .item .pict p {
    text-align: center;
  }
  .scheme .img .small .item .inf {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
    padding-top: 14px;
  }
  .scheme .img .small .item .inf p {
    white-space: nowrap;
  }
  .scheme .img .small .item .inf .icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
  }
  .scheme .img .small .item .inf .icons div {
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .scheme .img .small .item .inf .icons div img {
    max-width: 100%;
  }
  .scheme .img .small .item .inf .icons div.ka4 {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    border-radius: 4px;
    border: 0.5px solid #e6e7ed;
  }
  .scheme .img .small .item .title {
    border-radius: 8px;
    border: 0.5px solid #e6e7ed;
    padding: 14px 12px;
  }
  .scheme .img .small .item.mid {
    padding: 12px 12px 12px 36px;
  }
  .scheme .img .small .item.mid2 {
    padding: 12px 12px 12px 48px;
  }
  .scheme .img .small .item.mid3 {
    padding: 12px 12px 12px 60px;
  }
  .scheme .img .small .item.mid4 {
    padding: 12px 12px 12px 72px;
  }
  .scheme .img .small .item.end {
    padding: 12px 12px 12px 24px;
  }
  .scheme .img .small .item.dashed .pict {
    border: 1px dashed #c8c8ce;
  }
  .scheme .img .small .item.head {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background-color: #fff;
    gap: 0;
    padding: 12px 12px 12px 48px;
  }
  .scheme .img .small .item.head div {
    width: 48px;
    left: 48px;
    background-color: #f1f1f1;
  }
  .scheme .img .small .item.head div.term {
    margin: 0;
    border-radius: 8px 0 0 8px;
  }
  .scheme .img .small .item.head div.nature {
    border-radius: 0 8px 8px 0;
    margin-right: 12px;
  }
  .scheme .img .small .item.head div.nature img {
    width: 100%;
  }
  .scheme .img .small .item .rotate90 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .scheme .img .small .expand_scheme {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
    padding: 0 24px;
  }
  .scheme .img .small .small-arrow-down {
    position: absolute;
    top: 72px;
    left: 12px;
  }
  .scheme .img .small .arrow_export {
    position: absolute;
    left: 10px;
    top: 161px;
  }
  .scheme .img .small .arrow_export2 {
    position: absolute;
    left: 22px;
    top: 161px;
  }
  .scheme .img .small .arrow_export3 {
    position: absolute;
    left: 22px;
    top: 161px;
  }
  .scheme .img .small .arrow_export_small1_v2 {
    position: absolute;
    left: 22px;
    top: 161px;
  }
  .scheme .img .small .arrow_export_small2_v2 {
    position: absolute;
    left: 22px;
    top: 320px;
  }
  .scheme .img .small .img3small_arrow {
    position: absolute;
    left: 12px;
    top: 161px;
  }
  .scheme .img .small .img3small_arrow2 {
    position: absolute;
    left: 10px;
    top: 590px;
  }
  .scheme .img .small .img3small_arrow3 {
    position: absolute;
    left: 34px;
    top: 977px;
  }
  .scheme .img .small .img3small_arrow4 {
    position: absolute;
    left: 24px;
    top: 590px;
  }
  .scheme .img .small .img3small_arrow5 {
    position: absolute;
    left: 34px;
    top: 672px;
  }
  .scheme .img .small .img4small_arrow {
    position: absolute;
    left: 10px;
    top: 160px;
  }
  .scheme .img .small .img4small_arrow2 {
    position: absolute;
    left: 22px;
    top: 160px;
  }
  .scheme .img .small .img4small_arrow3 {
    position: absolute;
    left: 10px;
    top: 465px;
  }
  .scheme .img .small .img4small_arrow4 {
    position: absolute;
    left: 34px;
    top: 465px;
  }
  .scheme .img .small .img4small_arrow5 {
    position: absolute;
    left: 22px;
    top: 465px;
  }
  .scheme .img .small .img4small_arrow6 {
    position: absolute;
    left: 34px;
    top: 625px;
  }
  .scheme .img .small .img4small_arrow7 {
    position: absolute;
    left: 34px;
    top: 928px;
  }
  .scheme .img .small .img4small_arrow8 {
    position: absolute;
    left: 10px;
    top: 1230px;
  }
  .scheme .img .small .img4small_arrow9 {
    position: absolute;
    left: 22px;
    top: 1320px;
  }
  .scheme .img .small .img4small_arrow10 {
    position: absolute;
    left: 22px;
    top: 1624px;
  }
  .scheme .img .small .img5small_arrow {
    position: absolute;
    left: 10px;
    top: 160px;
  }
  .scheme .img .small .img5small_arrow2 {
    position: absolute;
    left: 22px;
    top: 160px;
  }
  .scheme .img .small .img5small_arrow3 {
    position: absolute;
    left: 34px;
    top: 160px;
  }
  .scheme .img .small .img5small_arrow4 {
    position: absolute;
    left: 46px;
    top: 160px;
  }
  .scheme .img .small .img5small_arrow5 {
    position: absolute;
    left: 58px;
    top: 160px;
  }
  .scheme .img .small .img5small_arrow6 {
    position: absolute;
    left: 34px;
    top: 460px;
  }
  .scheme .img .small .img5small_arrow7 {
    position: absolute;
    left: 34px;
    top: 762px;
  }
  .scheme .img .small .img5small_arrow8 {
    position: absolute;
    left: 10px;
    top: 1055px;
  }
  .scheme .img .small .img5small_arrow9 {
    position: absolute;
    left: 22px;
    top: 1150px;
  }
  .scheme .img .small .img5small_arrow10 {
    position: absolute;
    left: 22px;
    top: 1452px;
  }
  .scheme .img .small .img6small_arrow {
    position: absolute;
    left: 10px;
    top: 160px;
  }
  .scheme .img .small .img6small_arrow2 {
    position: absolute;
    left: 22px;
    top: 160px;
  }
  .scheme .img .small .img8small_arrow {
    position: absolute;
    left: 22px;
    top: 160px;
  }
  .scheme .img .small .img8small_arrow2 {
    position: absolute;
    left: 34px;
    top: 160px;
  }
  .scheme .img .small .img8small_arrow3 {
    position: absolute;
    left: 10px;
    top: 160px;
  }
  .scheme .img .small .img8small_arrow4 {
    position: absolute;
    left: 22px;
    top: 820px;
  }
  .scheme .img .small .img8small_arrow5 {
    position: absolute;
    left: 10px;
    top: 820px;
  }
  .scheme .img .small .img9small_arrow {
    position: absolute;
    top: 315px;
    left: 10px;
  }
  .scheme .img .small .img9small_arrow2 {
    position: absolute;
    top: 315px;
    left: 34px;
  }
  .scheme .img .small .img9small_arrow3 {
    position: absolute;
    top: 315px;
    left: 22px;
  }
  .scheme .img .small .img9small_arrow4 {
    position: absolute;
    top: 722px;
    left: 10px;
  }
}
@media (max-width: 1024px) {
  .scheme_tabs .links {
    gap: 8px;
  }
  .add_to_order {
    padding: 24px;
  }
  .add_to_order h5 {
    width: calc(100% - 124px);
  }
  .add_to_order .buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 24px;
    width: 100%;
  }
  .add_to_order .buttons .to_order_btn {
    width: calc(50% - 12px);
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .add_to_order .buttons .store {
    width: calc(50% - 12px);
    text-align: center;
  }
}
@media (max-width: 750px) {
  .scheme_tabs .links {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}
@media (max-width: 500px) {
  .scheme_tabs h5 {
    font-size: 20px;
    line-height: 24px;
  }
  .scheme .img .small .expand_scheme {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    padding: 24px;
  }
  .scheme .img .small .expand_scheme h6 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    font-size: 16px;
    white-space: nowrap;
  }
  .add_to_order {
    padding: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
  .add_to_order .img {
    width: 100%;
    height: initial;
    padding: 24px;
  }
  .add_to_order h5 {
    width: 100%;
  }
  .add_to_order .buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .add_to_order .buttons .to_order_btn {
    width: 100%;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    font-size: 20px;
    line-height: 24px;
    padding: 16px;
  }
  .add_to_order .buttons .store {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 400px) {
  .scheme_tabs nav {
    gap: 40px;
  }
  .scheme_tabs nav .number::after {
    right: -28px;
  }
}
/***** товари для  схеми *****/
.goods_for_scheme {
  margin-bottom: 24px;
}
.goods_for_scheme .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.goods_for_scheme .title img {
  width: 100px;
  height: 100px;
}
.goods_for_scheme .goods .item {
  width: 313px;
}

@media (max-width: 768px) {
  .goods_for_scheme .goods .item {
    margin-right: 16px;
  }
}
/***** вікно  схеми *****/
.scheme_fond {
  background-color: rgba(0, 0, 0, 0.8);
  min-height: 100vh;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.scheme_fond nav {
  max-width: 1000px;
  width: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  border-radius: 16px;
  overflow: hidden;
}
.scheme_fond nav .title {
  max-width: calc(100% - 144px);
  margin: auto;
}
.scheme_fond nav .title .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.scheme_fond nav .title .item h6 {
  text-align: center;
}
.scheme_fond nav .right {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.scheme_fond nav button img:hover {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
.scheme_fond .scheme {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
  height: 620px;
  border-radius: 16px;
  overflow: auto;
}
.scheme_fond .scheme .img {
  opacity: 1;
  display: block;
  width: 1000px;
  height: 620px;
  overflow: auto;
}
.scheme_fond .foot {
  max-width: 1000px;
  width: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
}
.scheme_fond .foot button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #22223a;
  background-color: #22223a;
}
.scheme_fond .foot button svg {
  fill: #fff;
}
.scheme_fond .foot button p {
  color: #fff;
}
.scheme_fond .foot button:hover {
  background-color: #fff;
}
.scheme_fond .foot button:hover svg {
  fill: #22223a;
}
.scheme_fond .foot button:hover p {
  color: #22223a;
}

@media (max-width: 1037px) {
  .scheme_fond .scheme .img .big {
    display: block;
  }
}
@media (max-width: 500px) {
  .scheme_fond h6 {
    font-size: 14px;
    line-height: 18px;
  }
}
/***** кошик *****/
.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.cart .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.cart .head img {
  width: 100px;
  height: 100px;
}
.cart .according_scheme {
  padding: 16px;
  border-radius: 24px;
  border: 1px dashed #c8c8ce;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.cart .according_scheme .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cart .according_scheme .title a {
  margin-right: auto;
  width: 48px;
  height: 48px;
  border-radius: 8px;
}
.cart .according_scheme .title a svg rect {
  fill: #fff;
}
.cart .according_scheme .title a svg path {
  fill: #c8c8ce;
}
.cart .according_scheme .title a:hover svg {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.cart .according_scheme .title a:hover svg rect {
  fill: #c8c8ce;
}
.cart .according_scheme .title a:hover svg path {
  fill: #000;
}
.cart .order_menu {
  position: relative;
  cursor: pointer;
  width: 48px;
  height: 48px;
}
.cart .order_menu svg {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.cart .order_menu svg rect {
  fill: #fff;
}
.cart .order_menu svg path {
  fill: #e6e7ed;
}
.cart .order_menu:hover rect {
  fill: #e6e7ed;
}
.cart .order_menu:hover path {
  fill: #000;
}
.cart .order_menu .cloud {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 12px;
  border: 1px solid #000;
  background-color: #fff;
  position: absolute;
  bottom: 100%;
  right: 0;
  cursor: default;
}
.cart .order_menu .cloud.on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cart .order_menu .cloud button {
  width: 48px;
  padding: 6px 4px;
  font-size: 14px;
  line-height: 20px;
  border-radius: 4px;
  border: 1px solid #f1f1f1;
}
.cart .order_menu .cloud button:hover {
  background-color: #f1f2f6;
}
.cart .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #f1f2f6;
  background-color: #fff;
}
.cart .item:hover {
  background-color: #f1f2f6;
}
.cart .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: auto;
  width: 100%;
}
.cart .item a .img {
  width: 48px;
  height: 48px;
  padding: 4px;
  border-radius: 8px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cart .item a .img img {
  max-width: 100%;
  max-height: 100%;
}
.cart .item .sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  white-space: nowrap;
}
.cart .item .sum .old_price {
  display: none;
  color: #91919d;
  text-decoration: line-through;
}
.cart .item .counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.cart .item .counter button {
  border-radius: 12px;
  border: 1px solid #fff;
  background-color: #fff;
}
.cart .item .counter button:hover {
  border: 1px solid #22223a;
}
.cart .item .counter button:nth-child(3) {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cart .item .counter input {
  width: 72px;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  border-radius: 12px;
  padding: 12px 0;
  background-color: #fff;
}
.cart .item.discount .sum .old_price {
  display: block;
}
.cart .item.discount .sum .price {
  background: -o-linear-gradient(261deg, #ffad32 0%, #da532f 100%);
  background: linear-gradient(189deg, #ffad32 0%, #da532f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #da532f;
}
.cart .confirm_block {
  border-radius: 16px;
  border: 1px solid #f1f2f6;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 24px;
}
.cart .confirm_block .total {
  color: #91919d;
}
.cart .confirm_block .total_sum {
  background: -o-linear-gradient(261deg, #ffad32 0%, #da532f 100%);
  background: linear-gradient(189deg, #ffad32 0%, #da532f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #da532f;
}
.cart .confirm_block .confirm {
  padding: 16px 24px;
  border-radius: 12px;
  background: -o-linear-gradient(261deg, #ffad32 0%, #da532f 100%);
  background: linear-gradient(189deg, #ffad32 0%, #da532f 100%);
  color: #fff;
}
.cart .confirm_block .confirm:hover {
  background: #22223a;
}
.cart .to_catalog {
  margin: 12px auto;
}

@media (max-width: 768px) {
  .cart .item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cart .item .counter {
    margin-left: auto;
  }
  .cart .confirm_block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
  .cart .confirm_block .total {
    width: 100%;
  }
  .cart .confirm_block .quantity {
    margin-right: auto;
  }
}
@media (max-width: 600px) {
  .cart .head h5 {
    font-size: 20px;
    line-height: 24px;
  }
  .cart .according_scheme .title h6 {
    font-size: 16px;
  }
  .cart .item {
    padding: 8px;
    gap: 8px;
  }
  .cart .item a .name {
    font-size: 16px;
  }
  .cart .item .sum {
    font-size: 16px;
    width: 100%;
    padding: 12px 0;
  }
  .cart .item .counter {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    gap: 8px;
  }
  .cart .item .order_menu .cloud {
    left: 0;
    right: initial;
  }
  .cart .confirm_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .cart .confirm_block .confirm {
    margin: 0 auto;
    font-size: 16px;
    padding: 16px;
    width: 100%;
  }
}
/***** порожній кошик *****/
.cart_empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  overflow: hidden;
}
.cart_empty h5 {
  text-align: center;
}
.cart_empty .cart_empty_img {
  width: 650px;
}
.cart_empty .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid #f1f2f6;
  padding: 16px;
  width: 100%;
}
.cart_empty .links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: calc(33.33% - 11px);
  border-radius: 12px;
  padding: 36px 24px 36px 48px;
}
.cart_empty .links a p {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  position: relative;
  white-space: nowrap;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.cart_empty .links a p::before {
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: -12px;
  left: -48px;
}
.cart_empty .links a:nth-child(1) p::before {
  background: url("../img/product/solutions-01-48.svg") 50% 50%;
}
.cart_empty .links a:nth-child(2) p::before {
  background: url("../img/product/solutions-02-48.svg") 50% 50%;
}
.cart_empty .links a:nth-child(3) p::before {
  background: url("../img/product/solutions-03-48.svg") 50% 50%;
}
.cart_empty .links a:hover {
  background-color: #f1f2f6;
}
.cart_empty .links a:hover:nth-child(1) p::before {
  background: url("../img/product/solutions-01-48_hover.svg") 50% 50%;
}
.cart_empty .links a:hover:nth-child(2) p::before {
  background: url("../img/product/solutions-02-48_hover.svg") 50% 50%;
}
.cart_empty .links a:hover:nth-child(3) p::before {
  background: url("../img/product/solutions-03-48_hover.svg") 50% 50%;
}

@media (max-width: 768px) {
  .cart_empty .links a {
    width: 100%;
    padding: 12px 12px 12px 48px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    border-radius: 12px;
  }
}
@media (max-width: 500px) {
  .cart_empty h5 {
    font-size: 20px;
    line-height: 24px;
  }
}
/*****  футер *****/
footer {
  padding: 48px;
  border-radius: 16px;
  border: 1px solid #f1f2f6;
  margin-top: auto;
  background-color: #fff;
}
footer .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
footer .block .h6_1 {
  width: 100%;
  display: none;
}
footer .block .part {
  width: calc(25% - 48px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
footer .block .part .language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
footer .block .part .language a {
  padding: 16px 13px;
  border-radius: 12px;
}
footer .block .part .language a:hover,
footer .block .part .language a.on {
  background-color: #f1f2f6;
}
footer .block .part .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
footer .block .part .social a {
  padding: 12px;
}
footer .block .part .application_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
footer .block .part .application_footer .cloud {
  padding: 8px;
  border-radius: 8px;
  position: relative;
  background-color: #91919d;
}
footer .block .part .application_footer .cloud p {
  color: #fff;
}
footer .block .part .application_footer .cloud::before {
  content: "";
  border: 8px solid transparent;
  border-right: 8px solid #91919d;
  position: absolute;
  left: -16px;
  top: calc(50% - 8px);
}
footer .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px;
  border-radius: 8px;
  background-color: #22223a;
}
footer .copyright p {
  color: #fff;
}
footer .copyright p a {
  color: #00aff0;
}

@media (max-width: 970px) {
  footer {
    padding: 24px;
  }
  footer .block {
    gap: 24px;
  }
  footer .block .h6_1 {
    display: block;
  }
  footer .block .part {
    width: calc(25% - 18px);
  }
  footer .block .part .h6_2 {
    display: none;
  }
  footer .block .part .application_footer .cloud {
    display: none;
  }
}
@media (max-width: 660px) {
  footer .block .part {
    width: calc(50% - 12px);
  }
}
@media (max-width: 390px) {
  footer .block .part {
    width: 100%;
  }
}
