@charset "UTF-8";
/*** загальні ***/
body {
  font-family: "Inter", sans-serif;
  color: #282828;
  min-height: 100vh;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

:focus,
:active {
  outline: none;
}

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

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

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;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: #ebebeb;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb {
  background-color: #6a6a6a;
  border-radius: 8px;
}

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

h1 {
  font-size: 40px;
  line-height: normal;
  font-weight: 700;
}

h2 {
  font-size: 32px;
  line-height: normal;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  line-height: normal;
  font-weight: 700;
}

h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}

.p1 {
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
}

.p2 {
  font-size: 14px;
  line-height: 180%;
  font-weight: 400;
}

.p3 {
  font-size: 13px;
  line-height: 160%;
  font-weight: 400;
}

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

.wrapper {
  padding: 0 20px;
}

/*****  картка товару *****/
.card {
  background-color: #fff;
  padding: 12px;
  border: 1px solid #ebebeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 263px;
  width: 100%;
}
.card .announced {
  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: 12px;
}
.card .announced .best_seller {
  padding: 4px 12px;
  border-radius: 20px;
  color: #fff;
  font-size: 13px;
  line-height: 160%;
  font-weight: 400;
  margin-right: auto;
}
.card .announced .best_seller.blue {
  background-color: #0c73fe;
}
.card .announced .best_seller.red {
  background-color: #eb5757;
}
.card .announced .best_seller.green {
  background-color: #0c9300;
}
.card .announced .best_seller.orange {
  background-color: #ff8f00;
}
.card .announced .best_seller.purple {
  background-color: #6d67ed;
}
.card .announced .best_seller.blue_dark {
  background-color: #003083;
}
.card .announced .compar_btn,
.card .announced .favor {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: url("../img/card/compar_btn.svg") no-repeat 50% 50% #ebebeb;
  position: relative;
}
.card .announced .compar_btn:after,
.card .announced .favor:after {
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  border-radius: 7px;
  background: url("../img/card/check.svg") no-repeat 50% 50% #0c9300;
  position: absolute;
  top: 2px;
  right: 2px;
  display: none;
}
.card .announced .compar_btn.checked:after,
.card .announced .favor.checked:after {
  display: block;
}
.card .announced .favor {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: url("../img/product/disc2.svg") no-repeat 50% 50% #ebebeb;
}
.card .announced .delete {
  width: 24px;
  height: 24px;
}
.card .announced .delete svg {
  fill: #858585;
}
.card .announced .delete:hover svg {
  fill: #0c73fe;
}
.card .img {
  width: 204px;
  height: 204px;
  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: 23px auto 0;
}
.card .img img {
  max-width: 100%;
  max-height: 100%;
}
.card .img:hover img {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
.card .selected_color {
  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: 12px 0;
  gap: 8px;
}
.card .selected_color 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;
  border-radius: 4px;
  border: 1px solid #000;
  overflow: hidden;
}
.card .selected_color div span {
  width: 100%;
  height: 100%;
}
.card .selected_color p {
  color: #7b7b7b;
}
.card .name {
  margin: auto 0 12px;
}
.card .reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.card .old_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin: 4px 0;
}
.card .old_price .sum {
  color: #6a6a6a;
  text-decoration: line-through;
}
.card .old_price .difference {
  color: #ea4335;
}
.card .price {
  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: 10px;
}
.card .price .sum {
  white-space: nowrap;
  font-size: 24px;
  font-weight: 700;
}
.card .price .availability {
  text-align: right;
  line-height: 18px;
}
.card .price .availability.green {
  color: #0eaa00;
}
.card .price .availability.red {
  color: #ea4335;
}
.card .price .availability.grey {
  color: #858585;
}
.card .price .availability.blue {
  color: #0c73fe;
}
.card .buy {
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  color: #0c73fe;
  padding: 9px;
  margin-top: 11px;
  text-align: center;
  border-radius: 4px;
  border: 2px solid #0c73fe;
}
.card .buy:hover {
  background-color: #0c73fe;
  color: #fff;
}
.card.action {
  background: url("../img/card/ellipse.png") no-repeat #000 50% 0;
}
.card.action .announced .promo_marker {
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  background-color: #fff;
  border-radius: 20px;
  color: #0c73fe;
  margin-right: auto;
}
.card.action .announced .compar_btn {
  display: none;
}
.card.action .img {
  width: 100%;
}
.card.action .pick_color {
  display: none;
}
.card.action .name {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 160%;
  margin-bottom: 16px;
}
.card.action .reviews {
  display: none;
}
.card.action .old_price {
  display: none;
}
.card.action .price h3 {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}
.card.action .price p {
  display: none;
}
.card.action .buy {
  margin-top: 16px;
  background-color: #0c73fe;
  color: #fff;
}
.card.action .buy:hover {
  background-color: #fff;
  color: #0c73fe;
}

.pick_color {
  width: 100%;
  margin: 12px 0;
  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: 8px;
}
.pick_color .item {
  position: relative;
}
.pick_color .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #000;
}
.pick_color .item a span {
  width: 100%;
  height: 100%;
}
.pick_color .item a.all {
  background: url("../img/arrow_slader_disabled.svg") 50% 50% no-repeat;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  border: 1px solid #ebebeb;
}
.pick_color .item .cloud {
  position: absolute;
  bottom: calc(100% + 8px);
  width: 90px;
  left: -30px;
  margin: 0 auto;
  font-size: 14px;
  padding: 4px;
  border-radius: 5px;
  background-color: #d9d9d9;
  text-align: center;
  opacity: 0;
  z-index: -1;
}
.pick_color .item .cloud::after {
  content: "";
  border: 5px solid transparent;
  border-top: 5px solid #d9d9d9;
  position: absolute;
  top: 100%;
  left: 40px;
}
.pick_color .item:hover .cloud {
  opacity: 1;
  z-index: 1;
}

.stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.stars svg {
  fill: #dadada;
}
.stars svg.on {
  fill: #feb803;
}

.clear_all {
  font-size: 12px;
  line-height: 130%;
  padding: 4px 4px 4px 8px;
  border-radius: 20px;
  border: 1px solid #001945;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  background-color: #fff;
}
.clear_all svg {
  fill: #001945;
}
.clear_all:hover {
  background-color: #001945;
  color: #fff;
}
.clear_all:hover svg {
  fill: #fff;
}

.counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.counter button {
  width: 32px;
  height: 32px;
}
.counter button svg {
  fill: #0c73fe;
}
.counter button:hover svg {
  fill: #003083;
}
.counter button.off svg {
  fill: #7b7b7b;
}
.counter input {
  display: block;
  width: 50px;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  text-align: center;
}

.download_more {
  display: block;
  border: 1px solid #ebebeb;
  padding: 19px;
}
.download_more h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding-right: 36px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  text-align: center;
  position: relative;
}
.download_more h6::after {
  width: 24px;
  height: 24px;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url("../img/catalog_goods/download_more.svg");
}
.download_more:hover {
  background-color: #ebebeb;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pagination a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 19px 9px;
  border: 1px solid #ebebeb;
}
.pagination a:not(.plug, .mobile_page):hover {
  background-color: #ebebeb;
}
.pagination a.pagin_prev p {
  padding-left: 24px;
  position: relative;
}
.pagination a.pagin_prev p::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/catalog_goods/pagination_arrow.svg");
  position: absolute;
  left: 0;
  top: 3px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.pagination a.pagin_next p {
  padding-right: 24px;
  position: relative;
}
.pagination a.pagin_next p::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/catalog_goods/pagination_arrow.svg");
  position: absolute;
  right: 0;
  top: 3px;
}
.pagination a.plug {
  cursor: default;
}
.pagination a.active {
  background-color: #ebebeb;
}
.pagination a.active p {
  font-size: 16px;
  font-weight: 700;
  color: #0c73fe;
}
.pagination a.mobile_page {
  display: none;
  cursor: default;
}
.pagination a p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}

/*****хлібні крихти *****/
.bread_crumbs {
  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: 16px 48px;
  padding: 20px 0;
}
.bread_crumbs a {
  color: #0c73fe;
  font-size: 13px;
  line-height: 160%;
  position: relative;
}
.bread_crumbs a:hover {
  color: #003083;
}
.bread_crumbs a::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../img/bread_crumbs/arrow_grey.svg");
  position: absolute;
  top: calc(50% - 8px);
  right: -32px;
}
.bread_crumbs a:first-child {
  padding-left: 21px;
}
.bread_crumbs a:first-child::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../img/bread_crumbs/home.svg");
  position: absolute;
  top: calc(50% - 8px);
  left: 0;
}

.btn {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  padding: 19px;
  border-radius: 8px;
  border: 2px solid #0c73fe;
  background-color: #0c73fe;
}
.btn:hover {
  background-color: #fff;
  color: #0c73fe;
}

@media (max-width: 940px) {
  .pagination a:not(.pagin_prev, .pagin_next, .mobile_page) {
    display: none;
  }
  .pagination a.mobile_page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/*****  загальні для Слайдер 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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.slick-dots li {
  list-style: none;
  height: 16px;
  width: 16px;
  border-radius: 8px;
  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;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: #ebebeb;
}
.slick-dots li.slick-active button {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: #0c73fe;
}

.prev,
.next {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: url("../img/arrow_slider.svg") 50% 50% no-repeat #0c73fe;
}
.prev:hover,
.next:hover {
  background: url("../img/arrow_slider.svg") 50% 50% no-repeat #003083;
}
.prev.slick-disabled,
.next.slick-disabled {
  background: url("../img/arrow_slader_disabled.svg") 50% 50% no-repeat #f2f3f7;
}

.next {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*****  модал фон *****/
.modal_fond {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  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;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  z-index: -1;
  opacity: 0;
}
.modal_fond.on {
  z-index: 1002;
  opacity: 1;
}

/*****  модал кошик *****/
.modal_cart {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  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;
  padding: 20px;
  opacity: 0;
  z-index: -1;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  min-width: 762px;
  width: 100%;
}
.modal_cart.on {
  z-index: 1005;
  opacity: 1;
}
.modal_cart .cont {
  max-width: 762px;
  width: 100%;
  border-radius: 12px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
.modal_cart .cont .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 20px 16px;
  border-bottom: 1px solid #d9d9d9;
}
.modal_cart .cont .head .close {
  width: 24px;
  height: 24px;
  margin-left: auto;
}
.modal_cart .cont .head .close svg {
  fill: #282828;
}
.modal_cart .cont .head .close:hover svg {
  fill: #0c73fe;
}
.modal_cart .cont .body {
  padding: 0 16px;
  height: 314px;
  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;
}
.modal_cart .cont .body .item {
  padding: 32px 0;
  border-bottom: 1px solid #ebebeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}
.modal_cart .cont .body .item .title {
  width: 100%;
}
.modal_cart .cont .body .item .title span {
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 180%;
  border-radius: 4px;
  background-color: #f2f3f7;
}
.modal_cart .cont .body .item .part {
  width: calc(50% - 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.modal_cart .cont .body .item .part:last-child {
  margin-left: auto;
}
.modal_cart .cont .body .item .part .img {
  width: 92px;
  height: 92px;
  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: #f7f7f7;
}
.modal_cart .cont .body .item .part .img img {
  max-width: 100%;
  width: 100%;
  max-height: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.modal_cart .cont .body .item .part .info {
  max-width: calc(100% - 108px);
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.modal_cart .cont .body .item .part .info a {
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  color: #0c73fe;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.modal_cart .cont .body .item .part p.p3 {
  display: none;
}
.modal_cart .cont .body .item .part .management .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 32px;
  margin-top: 32px;
}
.modal_cart .cont .body .item .part .management .buttons button {
  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: 0 7px 0 0;
  white-space: nowrap;
}
.modal_cart .cont .body .item .part .management .buttons button:hover {
  background-color: #ebebeb;
}
.modal_cart .cont .body .item .part .management .buttons button .pict {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background-color: #ebebeb;
  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_cart .cont .body .item .part .price {
  margin-left: auto;
  white-space: nowrap;
  width: 80px;
}
.modal_cart .cont .body .item .part .price .old {
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
  text-decoration: line-through;
}
.modal_cart .cont .body .item .part .price .present {
  font-size: 14px;
  font-weight: 700;
  line-height: 180%;
}
.modal_cart .cont .body .item.kit .part .info {
  max-width: calc(100% - 204px);
}
.modal_cart .cont .body .cart_empty {
  margin: auto;
}
.modal_cart .cont .foot {
  padding: 20px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: auto;
}
.modal_cart .cont .foot .left button {
  border-radius: 4px;
  border: 2px solid #0c73fe;
  padding: 19px;
  font-size: 18px;
  font-weight: 700;
}
.modal_cart .cont .foot .left button:hover {
  background-color: #0c73fe;
  color: #fff;
}
.modal_cart .cont .foot .right {
  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: end;
  -ms-flex-align: end;
  align-items: end;
}
.modal_cart .cont .foot .right .old_price {
  text-decoration: line-through;
}
.modal_cart .cont .foot .right .sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  margin: 10px 0 35px;
}
.modal_cart .cont .foot .right .sum h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
.modal_cart .cont .foot .right .sum h2 {
  line-height: 40px;
  font-size: 40px;
}

@media (max-width: 768px) {
  .modal_cart {
    padding: 0;
    min-width: initial;
  }
  .modal_cart .cont {
    height: 100vh;
    max-width: 100%;
    border-radius: 0;
  }
  .modal_cart .cont .head {
    border-bottom: 0;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  }
  .modal_cart .cont .head .clear_all {
    display: none;
  }
  .modal_cart .cont .body {
    height: calc(100% - 64px);
  }
  .modal_cart .cont .body .item {
    padding: 24px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .modal_cart .cont .body .item .part .info {
    max-width: 100%;
    width: calc(100% - 108px);
  }
  .modal_cart .cont .body .item .part .management {
    margin: 0 auto 0 0;
    max-width: calc(100% - 96px);
  }
  .modal_cart .cont .body .item .part .management .buttons {
    margin-top: 24px;
  }
  .modal_cart .cont .body .item .part .price {
    width: 80px;
  }
  .modal_cart .cont .foot {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .modal_cart .cont .foot .left {
    width: 100%;
    padding: 20px 16px;
  }
  .modal_cart .cont .foot .left button {
    display: block;
    width: 100%;
  }
  .modal_cart .cont .foot .right {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 16px;
    background-color: #f2f3f7;
  }
  .modal_cart .cont .foot .right .old_price {
    display: none;
  }
  .modal_cart .cont .foot .right .sum {
    margin: 0 0 12px 0;
  }
  .modal_cart .cont .foot .right button {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .modal_cart .cont .body .item .part {
    width: 100%;
  }
  .modal_cart .cont .body .item .part .management .p3,
  .modal_cart .cont .body .item .part .price .p3 {
    display: block;
    color: #7b7b7b;
    margin-bottom: 25px;
  }
}
/*****  модал колор *****/
.modal_color {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  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;
  padding: 20px;
  opacity: 0;
  z-index: -1;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.modal_color.on {
  z-index: 1005;
  opacity: 1;
}
.modal_color .cont {
  max-width: 990px;
  width: 100%;
  border-radius: 12px;
  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: 10px;
  padding: 20px;
  position: relative;
}
.modal_color .cont .close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  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: 4px;
  cursor: pointer;
}
.modal_color .cont .close:hover {
  background-color: #d9d9d9;
}
.modal_color .cont .close svg {
  fill: #001945;
}
.modal_color .cont .pagin {
  display: none;
}
.modal_color .cont .slider {
  width: calc(100% - 120px);
}
.modal_color .cont .slider .card {
  margin: 0 10px;
  max-width: initial;
}

@media (max-width: 475px) {
  .modal_color .cont {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 40px 20px 20px;
  }
  .modal_color .cont .close {
    top: 5px;
    right: 5px;
  }
  .modal_color .cont .slider {
    width: 100%;
  }
  .modal_color .cont .prev,
  .modal_color .cont .next {
    display: none;
  }
  .modal_color .cont .pagin {
    width: 100%;
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/*****  модал images *****/
.modal_images {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  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;
  padding: 20px;
  z-index: -1;
  opacity: 0;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.modal_images.on {
  z-index: 1005;
  opacity: 1;
}
.modal_images .block {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px 12px;
  height: 650px;
}
.modal_images .block .title {
  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: 12px;
  margin-bottom: 24px;
  position: relative;
  padding-right: 52px;
}
.modal_images .block .title h2 {
  margin-right: auto;
}
.modal_images .block .title .btn {
  padding: 9px;
  font-size: 16px;
  max-width: 297px;
  width: 100%;
}
.modal_images .block .title .close {
  padding: 8px;
  border-radius: 4px;
  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: 0;
  right: 0;
}
.modal_images .block .title .close:hover {
  background-color: #d9d9d9;
}
.modal_images .block .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.modal_images .block .cont .pag {
  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;
  width: 100px;
}
.modal_images .block .cont .pag .slider {
  width: 60px;
}
.modal_images .block .cont .pag .slider .slick-track {
  display: block;
}
.modal_images .block .cont .pag .slider .small_img {
  height: 60px;
  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: 4px;
  border: 1px solid #ebebeb;
  margin-bottom: 12px;
  cursor: pointer;
}
.modal_images .block .cont .pag .slider .small_img.slick-current {
  border: 1px solid #0c73fe;
}
.modal_images .block .cont .pag .slider .small_img.video {
  border: 1px solid #eb5757;
}
.modal_images .block .cont .pag .slider .small_img.video.slick-current {
  border: 1px solid #eb5757;
}
.modal_images .block .cont .pag .slider .small_img img {
  max-width: 100%;
  max-height: 100%;
}
.modal_images .block .cont .pag .prev {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-bottom: 12px;
  background: url("../img/arrow_slader_disabled.svg") 50% 50% no-repeat #f2f3f7;
}
.modal_images .block .cont .pag .next {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  background: url("../img/arrow_slader_disabled.svg") 50% 50% no-repeat #f2f3f7;
}
.modal_images .block .cont .main {
  width: calc(100% - 112px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.modal_images .block .cont .main .slider {
  border-radius: 8px;
  border: 1px solid #ebebeb;
  width: calc(100% - 104px);
}
.modal_images .block .cont .main .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;
}
.modal_images .block .cont .main .slider .item .big_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;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
}
.modal_images .block .cont .main .slider .item .big_img img {
  display: block;
  max-height: 470px;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.modal_images .block .cont .main .slider .item .big_img iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 800px) {
  .modal_images .block .title h2 {
    font-size: 24px;
  }
}
/*****  модал авторизація *****/
.authorization {
  display: none;
  position: relative;
}

.authorization_fond {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  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;
  padding: 20px;
  z-index: -1;
  opacity: 0;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.authorization_fond.on {
  z-index: 1005;
  opacity: 1;
}
.authorization_fond .authorization {
  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: 8px;
  background-color: #f2f3f7;
  max-width: 800px;
  width: 100%;
}
.authorization_fond .authorization .head {
  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;
  position: relative;
}
.authorization_fond .authorization .head img {
  width: 24px;
  height: 24px;
}
.authorization_fond .authorization .head p {
  font-size: 14px;
  line-height: 180%;
  font-weight: 400;
}
.authorization_fond .authorization .head .close {
  padding: 8px;
  border-radius: 4px;
  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: 0;
  right: 0;
}
.authorization_fond .authorization .head .close:hover {
  background-color: #d9d9d9;
}
.authorization_fond .authorization .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px 20px;
}
.authorization_fond .authorization .body .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 6px;
}
.authorization_fond .authorization .body .rating input {
  display: none;
}
.authorization_fond .authorization .body .rating label {
  cursor: pointer;
}
.authorization_fond .authorization .body .rating label svg {
  fill: #dadada;
}
.authorization_fond .authorization .body .rating label:hover svg,
.authorization_fond .authorization .body .rating label:hover ~ label svg {
  fill: #feb803;
}
.authorization_fond .authorization .body .rating label:has(input:checked) svg {
  fill: #feb803;
}
.authorization_fond .authorization .body .rating label:has(input:checked) ~ label svg {
  fill: #feb803;
}
.authorization_fond .authorization .body .input {
  width: calc(50% - 10px);
  position: relative;
}
.authorization_fond .authorization .body .input.w100 {
  width: 100%;
}
.authorization_fond .authorization .body .input input,
.authorization_fond .authorization .body .input textarea {
  width: 100%;
  font-size: 16px;
  padding: 16px;
  border-radius: 4px;
  border: 2px solid #858585;
  resize: none;
  background-color: #fff;
}
.authorization_fond .authorization .body .input input:focus,
.authorization_fond .authorization .body .input textarea:focus {
  border: 2px solid #0c73fe;
}
.authorization_fond .authorization .body .input input:focus + span,
.authorization_fond .authorization .body .input textarea:focus + span {
  color: #0c73fe;
}
.authorization_fond .authorization .body .input span {
  position: absolute;
  left: 14px;
  top: -8px;
  padding: 0 4px;
  background-color: #fff;
  font-size: 13px;
}
.authorization_fond .authorization .foot {
  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;
  font-size: 13px;
  font-weight: 700;
  line-height: 160%;
}
.authorization_fond .authorization .foot button {
  font-size: 13px;
  font-weight: 700;
  line-height: 160%;
}
.authorization_fond .authorization .foot button:hover {
  color: #0c73fe;
}

@media (max-width: 550px) {
  .modal_fond .authorization .body .input {
    width: 100%;
  }
}
.post_message {
  position: fixed;
  top: -350px;
  right: 20px;
  background-color: #0c73fe;
  color: #fff;
  padding: 15px;
  border-radius: 5px;
  z-index: 1005;
  opacity: 0;
  max-width: 450px;
  width: 100%;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.post_message.on {
  top: 20px;
  opacity: 1;
}
.post_message.green {
  background-color: #0c9300;
}
.post_message.red {
  background-color: #ea4335;
}
.post_message.orange {
  background-color: #ff8f00;
}
.post_message.violet {
  background-color: #6d67ed;
}
.post_message.blue {
  background-color: #003083;
}
.post_message .close {
  position: absolute;
  top: 12px;
  right: 12px;
}
.post_message .close:hover {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
.post_message h4 {
  margin-bottom: 15px;
}

@media (max-width: 550px) {
  .post_message {
    max-width: 316px;
  }
}
.preloader {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  width: 100%;
  height: 100%;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
}
.preloader.on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.preloader img {
  width: clamp(24px, 12%, 100px);
}

/*****  хедер *****/
header {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #fff;
}
header.sticky {
  position: sticky;
  z-index: 1002;
  top: 0;
}
header .line1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  position: relative;
}
header .line1 a {
  color: #282828;
  white-space: nowrap;
}
header .line1 a:hover {
  color: #0c73fe;
}
header .line1 .logo_small {
  display: none;
}
header .line1 .links_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
header .line1 .links_container .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  padding: 18px 0;
  position: relative;
  cursor: pointer;
}
header .line1 .links_container .link svg {
  fill: #282828;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
header .line1 .links_container .link .drop {
  border: 1px solid #ebebeb;
  padding: 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;
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: -20px;
  z-index: 1004;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  cursor: default;
  color: #282828;
}
header .line1 .links_container .link.connect .drop {
  gap: 8px;
  top: 6px;
  left: -10px;
}
header .line1 .links_container .link.connect .drop h6 {
  margin-top: 4px;
  font-size: 14px;
  line-height: 24px;
}
header .line1 .links_container .link.connect .drop a {
  line-height: 24px;
  padding-left: 28px;
  position: relative;
  color: #0c73fe;
}
header .line1 .links_container .link.connect .drop a::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/header/call.svg");
  position: absolute;
  left: -4px;
}
header .line1 .links_container .link:hover {
  color: #0c73fe;
}
header .line1 .links_container .link:hover svg {
  fill: #0c73fe;
}
header .line1 .links_container .link:hover svg.arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
header .line1 .links_container .link:hover .drop {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
header .line2 {
  background-color: #001945;
  padding: 0 20px;
  position: relative;
  z-index: 1003;
}
header .line2 .block {
  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;
  position: relative;
}
header .line2 .block .logo,
header .line2 .block .logo_small {
  display: none;
}
header .line2 .block .logo.on,
header .line2 .block .logo_small.on {
  display: block;
}
header .line2 .block .burger {
  display: none;
}
header .line2 .block .catalog_btn {
  max-width: 23.86%;
  width: 100%;
  height: 80px;
  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: 10px;
  padding: 0 24px;
  background-color: #003083;
  color: #fff;
}
header .line2 .block .catalog_btn img:nth-child(2) {
  display: none;
}
header .line2 .block .catalog_btn.on img:nth-child(2) {
  display: block;
}
header .line2 .block .catalog_btn.on img:nth-child(1) {
  display: none;
}
header .line2 .block .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  max-width: 35.9%;
  width: 100%;
}
header .line2 .block .search input {
  padding: 10px;
  font-size: 16px;
  line-height: normal;
}
header .line2 .block .search input[type="text"] {
  background-color: #fff;
  color: #282828;
  width: 76.8%;
}
header .line2 .block .search input[type="submit"] {
  color: #fff;
  background-color: #0c73fe;
  width: 23.2%;
}
header .line2 .block .search input[type="submit"]:hover {
  background-color: #003083;
}
header .line2 .block .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
header .line2 .block .links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
header .line2 .block .links a span {
  background-color: #0c73fe;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px;
  border-radius: 8px;
  display: none;
}
header .line2 .block .links a span.on {
  display: block;
}
header .line2 .block .links a p {
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 14px;
}
header .line2 .block #account_enter {
  cursor: pointer;
}
header .line2 .block .language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .line2 .block .language a {
  width: 24px;
  height: 24px;
  color: #f1f1f1;
  opacity: 0.5;
  cursor: pointer;
}
header .line2 .block .language a.on {
  color: #fff;
  opacity: 1;
  cursor: default;
}
header .line2 .block .header_catalog {
  position: absolute;
  top: 100%;
  left: 0;
  max-width: 1320px;
  width: 100%;
  height: 0;
  background-color: #fff;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
header .line2 .block .header_catalog.on {
  padding: 24px 0;
  height: calc(100vh - 160px);
}
header .line2 .block .header_catalog .nav {
  width: 313px;
  height: 100%;
  overflow: auto;
  border-right: 1px solid #ebebeb;
  cursor: pointer;
}
header .line2 .block .header_catalog .nav .item {
  padding: 8px 0 8px 8px;
}
header .line2 .block .header_catalog .nav .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
header .line2 .block .header_catalog .nav .item.on {
  background-color: #f2f3f7;
}
header .line2 .block .header_catalog .nav .item .layer {
  display: none;
}
header .line2 .block .header_catalog .cont {
  width: calc(100% - 333px);
  -moz-columns: 305px;
  -webkit-columns: 305px;
  columns: 305px;
  -moz-column-fill: auto;
  -webkit-column-fill: auto;
  column-fill: auto;
  -moz-column-gap: 20px;
  -webkit-column-gap: 20px;
  column-gap: 20px;
  height: 100%;
  overflow: auto;
  background-color: #fff;
}
header .line2 .block .header_catalog .cont .back {
  display: none;
}
header .line2 .block .header_catalog .cont a {
  display: block;
  font-size: 14px;
  line-height: 180%;
  margin: 10px 0;
  width: 305px;
}
header .line2 .block .header_catalog .cont a.title {
  font-size: 16px;
  font-weight: 700;
  color: #003083;
  margin: 20px 0;
}
header .line2 .block .header_catalog .cont a:hover {
  color: #0c73fe;
}
header .line2 .block .drop_menu {
  display: none;
  position: absolute;
  z-index: 1001;
  top: 62px;
  left: 0;
  width: 100%;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  background-color: #fff;
  border-bottom: 1px solid #001945;
}
header .line2 .block .drop_menu .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  background-color: #001945;
}
header .line2 .block .drop_menu .top .login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  padding: 23px 20px;
  color: #fff;
}
header .line2 .block .drop_menu .top .language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 20px;
}
header .line2 .block .drop_menu .drop_menu_cont {
  padding: 24px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
header .line2 .block .drop_menu .drop_menu_cont a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}
header .line2 .block .drop_menu .drop_menu_cont a:nth-child(1n + 5) {
  gap: 8px;
}
header .line2 .block .drop_menu .drop_menu_cont a span {
  background-color: #0c73fe;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px;
  border-radius: 8px;
  display: none;
}
header .line2 .block .drop_menu .drop_menu_cont a span.on {
  display: block;
}
header .line2 .block .drop_menu .drop_menu_cont a p {
  font-size: 14px;
}
header .line2 .block .drop_menu .drop_menu_cont .border {
  border-bottom: 1px solid #d9d9d9;
}
header .line2 .block .drop_menu .drop_menu_cont .assembling {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #0c73fe;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

@media (max-width: 1290px) {
  header .line1 .logo {
    display: none;
  }
  header .line1 .logo_small {
    display: block;
  }
}
@media (max-width: 1165px) {
  header {
    padding: 0;
  }
  header .line1 {
    display: none;
  }
  header .line2 {
    padding: 0;
  }
  header .line2 .block {
    padding: 12px 20px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 12px 24px;
    position: relative;
  }
  header .line2 .block .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;
    width: 24px;
    height: 40px;
    padding: 3px;
    cursor: pointer;
  }
  header .line2 .block .burger span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: relative;
  }
  header .line2 .block .burger span::before,
  header .line2 .block .burger span::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  header .line2 .block .burger span::before {
    top: -5px;
  }
  header .line2 .block .burger span::after {
    bottom: -5px;
  }
  header .line2 .block .burger.on {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-left: auto;
  }
  header .line2 .block .burger.on span {
    height: 0;
  }
  header .line2 .block .burger.on span::before {
    top: -1px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header .line2 .block .burger.on span::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: -1px;
  }
  header .line2 .block .catalog_btn {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    max-width: calc(100% + 40px);
    width: calc(100% + 40px);
    height: 44px;
    margin: 0 -20px;
    padding: 10px 24px;
  }
  header .line2 .block .catalog_btn h3 {
    font-size: 18px;
  }
  header .line2 .block .search {
    max-width: calc(100% - 317px);
  }
  header .line2 .block .search input[type="text"] {
    width: 100%;
  }
  header .line2 .block .search input[type="submit"] {
    display: none;
  }
  header .line2 .block .search.off {
    display: none;
  }
  header .line2 .block .links.off {
    display: none;
  }
  header .line2 .block .links a:not(.buy),
  header .line2 .block .links .language {
    display: none;
  }
  header .line2 .block .links a p {
    display: none;
  }
}
@media (max-width: 768px) {
  header .line2 .block .header_catalog .cont {
    -moz-columns: initial;
    -webkit-columns: initial;
    columns: initial;
  }
}
@media (max-width: 650px) {
  header .line2 .block .header_catalog {
    overflow: hidden;
  }
  header .line2 .block .header_catalog .nav {
    width: 100%;
    padding: 0 20px;
  }
  header .line2 .block .header_catalog .nav .item {
    padding: 8px 0;
    position: relative;
  }
  header .line2 .block .header_catalog .nav .item::after {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    top: 8px;
    right: 0;
    background: url("../img/header/arrow.svg");
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  header .line2 .block .header_catalog .cont {
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    padding: 20px;
  }
  header .line2 .block .header_catalog .cont.on {
    left: 0%;
  }
  header .line2 .block .header_catalog .cont .back {
    display: block;
    padding: 8px 8px 8px 42px;
    background-color: #0c73fe;
    color: #fff;
    font-size: 14px;
    line-height: 180%;
    width: 100%;
    text-align: left;
    position: relative;
  }
  header .line2 .block .header_catalog .cont .back::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
    background: url("../img/header/arrow_white.svg");
  }
  header .line2 .block .header_catalog .cont a {
    position: relative;
    margin: 0;
    padding: 8px 34px 8px 0;
    width: 100%;
  }
  header .line2 .block .header_catalog .cont a::after {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    top: 8px;
    right: 0;
    background: url("../img/header/arrow.svg");
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}
@media (max-width: 600px) {
  header .line2 .block {
    gap: 10px;
  }
  header .line2 .block .search {
    max-width: calc(100% - 145px);
  }
}
/*****  мєйн баннер *****/
.main_banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 32px 0 37px;
}
.main_banner .nav {
  width: 313px;
}
.main_banner .nav .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 8px;
}
.main_banner .nav .item:hover {
  background-color: #f2f3f7;
}
.main_banner .banner {
  width: calc(100% - 313px);
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: relative;
}
.main_banner .banner h1 {
  margin-bottom: 20px;
}
.main_banner .banner .slider {
  border-radius: 8px;
  overflow: hidden;
}
.main_banner .banner .slider .item {
  aspect-ratio: 93/35;
  border-radius: 8px;
  position: relative;
}
.main_banner .banner .slider .item img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  -o-object-fit: contain;
  object-fit: contain;
}
.main_banner .banner .slider .item .text {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
  color: #fff;
  padding: 0 20px 0 80px;
}
.main_banner .banner .slider .item .text h2 {
  font-size: 50px;
}
.main_banner .banner .slider .item .text p {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  margin: 30px 0 30px;
}
.main_banner .banner .slider .item .text a {
  color: #fff;
  padding: 10px 20px;
  border: 1px solid #fff;
  border-radius: 21px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.main_banner .banner .slider .item .text a:hover {
  background-color: #0c73fe;
}
.main_banner .banner .prev,
.main_banner .banner .next {
  position: absolute;
  top: calc((100% + 69px) / 2 - 20px);
}
.main_banner .banner .prev {
  left: 16px;
}
.main_banner .banner .next {
  right: 16px;
}
.main_banner .banner .pagin {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
}

@media (max-width: 1275px) {
  .main_banner .banner .slider .item .text h2 {
    font-size: 40px;
  }
}
@media (max-width: 1165px) {
  .main_banner {
    padding: 32px 0 35px;
  }
  .main_banner .nav {
    display: none;
  }
  .main_banner .banner {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .main_banner .banner .slider .item .text {
    padding: 0 16px 16px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }
  .main_banner .banner .slider .item .text h2 {
    font-size: 24px;
  }
  .main_banner .banner .slider .item .text a {
    padding: 8px 16px;
    font-size: 14px;
  }
  .main_banner .banner .slider .item .text p {
    margin: 12px 0;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
  }
  .main_banner .banner .prev,
  .main_banner .banner .next {
    display: none;
  }
  .main_banner .banner .pagin {
    bottom: -40px;
  }
}
@media (max-width: 650px) {
  .main_banner .banner .slider .item .text {
    padding: 0 8px 8px;
  }
  .main_banner .banner .slider .item .text h2 {
    font-size: 16px;
    line-height: 20px;
  }
  .main_banner .banner .slider .item .text a {
    padding: 6px 12px;
    font-size: 14px;
  }
  .main_banner .banner .slider .item .text p {
    margin: 12px 0;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
  }
}
/***** Популярні бренди *****/
.popular_brands {
  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: 30px 0;
}
.popular_brands .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  border: 1px solid #ebebeb;
}
.popular_brands .cont .brands {
  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: 50px;
  padding: 30px;
  width: calc(100% - 157px);
  border-right: 1px solid #ebebeb;
}
.popular_brands .cont .brands a {
  display: block;
}
.popular_brands .cont .brands a:hover {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
.popular_brands .cont .all_brands {
  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: 157px;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  color: #0c73fe;
}
.popular_brands .cont .all_brands:hover {
  background-color: #ebebeb;
}

@media (max-width: 780px) {
  .popular_brands h2 {
    font-size: 24px;
  }
  .popular_brands .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .popular_brands .cont .brands {
    border-right: 0;
    border-bottom: 1px solid #ebebeb;
    width: 100%;
    gap: 52px 22px;
    padding: 30px 20px 20px;
  }
  .popular_brands .cont .brands a {
    width: calc(50% - 11px);
  }
  .popular_brands .cont .brands a img {
    display: block;
    max-width: 100%;
    margin: auto;
  }
  .popular_brands .cont .all_brands {
    width: 100%;
    padding: 15px;
  }
}
/***** Чому нам довіряють *****/
.trust {
  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: 30px 0;
}
.trust .slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.trust .slider .item {
  width: calc(33.33% - 14px);
  border-radius: 8px;
  background-color: #f2f3f7;
  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: 36px 40px 41px;
}
.trust .slider .item img {
  width: 24px;
}

@media (max-width: 768px) {
  .trust .slider .item {
    padding: 20px 16px 23px;
  }
  .trust .slider .item h3 {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .trust h2 {
    font-size: 24px;
  }
  .trust .slider .item {
    width: 288px;
    padding: 20px 16px 23px;
    margin-right: 20px;
  }
  .trust .slider .item h3 {
    font-size: 18px;
  }
}
/***** Топ продажів на сайті *****/
.top_sellers {
  padding: 30px 0;
}
.top_sellers .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.top_sellers .head h2 {
  margin-right: auto;
}

@media (max-width: 550px) {
  .top_sellers .head h2 {
    font-size: 24px;
  }
  .top_sellers .head .prev,
  .top_sellers .head .next {
    display: none;
  }
}
/***** Найкращі відеодомофони *****/
.best_intercoms {
  border-radius: 8px;
  background: url("../img/best_intercom/best_intercom_fond.svg") repeat-x 0% 100% #003083;
  padding: 22px 28px 21px 43px;
  margin: 30px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
.best_intercoms .head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 24px;
}
.best_intercoms .text {
  width: 297px;
}
.best_intercoms .text h2 {
  color: #fff;
}
.best_intercoms .text ul {
  margin: 45px 0 70px 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: 23px;
}
.best_intercoms .text ul li {
  color: #fff;
  margin-left: 40px;
  line-height: 20px;
  position: relative;
}
.best_intercoms .text ul li::marker {
  font-size: 0;
}
.best_intercoms .text ul li::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/best_intercom/circle_check.svg");
  position: absolute;
  left: -40px;
}
.best_intercoms .all_intercoms {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  color: #fff;
  padding: 9px;
  border-radius: 4px;
  background-color: #0c73fe;
}
.best_intercoms .all_intercoms:hover {
  background-color: #fff;
  color: #0c73fe;
}
.best_intercoms .slider_blue {
  width: calc(100% - 317px);
}
.best_intercoms .slider_blue .card {
  margin-left: 22px;
  max-width: 100%;
}
.best_intercoms .slider_blue .card_project {
  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;
  background-color: #fff;
  margin-left: 20px;
  min-height: 407px;
}
.best_intercoms .slider_blue .card_project .img {
  height: 227px;
}
.best_intercoms .slider_blue .card_project .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.best_intercoms .slider_blue .card_project h6 {
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  margin: 0 12px;
}
.best_intercoms .slider_blue .card_project p {
  margin: 0 12px;
  font-size: 14px;
}
.best_intercoms .slider_blue .card_project a {
  width: calc(100% - 24px);
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  color: #0c73fe;
  padding: 9px;
  margin: auto auto 18px;
  text-align: center;
  border-radius: 4px;
  border: 2px solid #0c73fe;
}
.best_intercoms .slider_blue .card_project a:hover {
  background-color: #0c73fe;
  color: #fff;
}
.best_intercoms .pagin {
  display: none;
}

@media (max-width: 700px) {
  .best_intercoms {
    padding: 20px 20px 126px;
    gap: 0;
  }
  .best_intercoms .head {
    display: none;
  }
  .best_intercoms .text {
    width: 100%;
  }
  .best_intercoms .text h2 {
    font-size: 24px;
  }
  .best_intercoms .text ul {
    margin: 25px 0 40px;
  }
  .best_intercoms .all_intercoms {
    margin-top: 60px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
  }
  .best_intercoms .slider_blue {
    width: 100%;
  }
  .best_intercoms .slider_blue .card,
  .best_intercoms .slider_blue .card_project {
    margin: 0 10px;
  }
  .best_intercoms .pagin {
    display: block;
    position: absolute;
    bottom: 87px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .best_intercoms .slider_blue .card,
  .best_intercoms .slider_blue .card_project {
    margin: 0;
  }
}
/***** Реклама бренда *****/
.advertising {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 13px;
  margin: 30px auto;
  position: relative;
}
.advertising::after {
  content: "";
  width: 100%;
  height: 109px;
  border-radius: 8px;
  background-color: #1f4fcc;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.advertising .img {
  width: 200px;
}
.advertising .img img {
  width: 100%;
}
.advertising .brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 27px;
}
.advertising .brand img {
  width: 178px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.advertising .brand .text {
  color: #fff;
}

@media (max-width: 750px) {
  .advertising {
    -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;
  }
  .advertising::after {
    height: 239px;
  }
  .advertising .brand {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .advertising .brand .text {
    text-align: center;
  }
  .advertising .brand .text h3 {
    font-size: 18px;
  }
}
/***** Наше щось *****/
.our {
  padding: 30px 0;
}
.our .head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.our .head h2 {
  margin-right: auto;
}
.our .slider {
  margin-top: 24px;
}
.our .slider .item {
  display: block;
  width: 426px;
  margin-right: 20px;
}
.our .slider .item iframe {
  width: 100%;
  height: 245px;
  border-radius: 8px;
}
.our .slider .item .img {
  height: 177px;
  margin-bottom: 16px;
  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;
}
.our .slider .item .img img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}
.our .slider .item p {
  font-weight: 700;
}
.our .slider .item:hover .img img {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

@media (max-width: 600px) {
  h2 {
    font-size: 24px;
  }
}
@media (max-width: 470px) {
  .our .slider .item {
    width: 320px;
  }
}
/***** Як встановити домофон *****/
.howToInstall {
  padding: 30px 0;
}
.howToInstall .cont {
  margin-top: 24px;
  border-radius: 8px;
  background: url("../img/howToInstall/howToInstall_fond.svg") 0% 100% space #003083;
  padding: 26px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
}
.howToInstall .cont .video {
  max-width: 485px;
  width: 100%;
}
.howToInstall .cont .video iframe {
  width: 100%;
  height: 278px;
  -o-object-fit: cover;
  object-fit: cover;
}
.howToInstall .cont .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;
  color: #fff;
}
.howToInstall .cont .text img {
  width: 24px;
  height: 24px;
  display: none;
}
.howToInstall .cont .text a {
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.howToInstall .cont .text a:hover h3 {
  color: #0c73fe;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.howToInstall .cont .text .more {
  position: relative;
  font-size: 14px;
  line-height: 24px;
}
.howToInstall .cont .text .more::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/howToInstall/arrows_white.svg");
  position: absolute;
  right: -24px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.howToInstall .cont .text .more:hover::after {
  right: -34px;
}

@media (max-width: 650px) {
  .howToInstall h2 {
    font-size: 24px;
  }
  .howToInstall .cont {
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .howToInstall .cont .img {
    width: 100%;
  }
  .howToInstall .cont .text img {
    display: block;
  }
  .howToInstall .cont .text h3 {
    font-size: 18px;
  }
}
/***** Як встановити домофон *****/
.reviews_main {
  padding: 30px 0;
}
.reviews_main .stars svg.on {
  fill: #e7721c;
}
.reviews_main .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 43px;
  margin-bottom: 44px;
}
.reviews_main .head .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
}
.reviews_main .head .rating img {
  width: 49px;
  height: 50px;
}
.reviews_main .head .rating .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: 4px;
}
.reviews_main .head .rating .text p {
  color: #6a6a6a;
}
.reviews_main .head .rating .text .value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.reviews_main .head .rating .text .value span {
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  color: #e7721c;
}
.reviews_main .cont {
  position: relative;
}
.reviews_main .cont .item {
  border-radius: 8px;
  border: 1px solid #eee;
  background: #fafafa;
  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;
  gap: 16px;
  width: 426px;
  margin-right: 20px;
}
.reviews_main .cont .item .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;
}
.reviews_main .cont .item .title img {
  width: 23px;
  height: 24px;
}
.reviews_main .cont .item p {
  font-size: 13px;
  line-height: 160%;
  font-weight: 400;
}
.reviews_main .cont .item p:last-child {
  margin-top: auto;
}
.reviews_main .cont .prev {
  position: absolute;
  top: calc(50% - 20px);
  left: -20px;
}
.reviews_main .cont .next {
  position: absolute;
  top: calc(50% - 20px);
  right: -20px;
}

@media (max-width: 650px) {
  .reviews_main .head {
    -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;
    gap: 23px;
  }
  .reviews_main .head h2 {
    font-size: 24px;
  }
  .reviews_main .cont .item {
    width: 280px;
  }
  .reviews_main .cont .prev,
  .reviews_main .cont .next {
    display: none;
  }
}
/***** Відповіді на часто задаваємі питання: *****/
.answers {
  padding: 30px 0;
}
.answers .cont {
  margin-top: 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: 16px;
}
.answers .cont .item {
  padding-bottom: 16px;
  border-bottom: 1px solid #ebebeb;
  cursor: pointer;
}
.answers .cont .item h6 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  padding: 0 34px 0 30px;
  position: relative;
}
.answers .cont .item h6::before {
  content: "🤔";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
}
.answers .cont .item h6::after {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: calc(50% - 12px);
  right: 0;
  background: url("../img/arrow_blue.svg");
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.answers .cont .item.on h6::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.answers .cont .item p {
  font-size: 14px;
  line-height: 180%;
  font-weight: 400;
  padding-top: 16px;
  max-width: 717px;
  display: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

/*****main_info *****/
.main_info {
  padding: 30px 0;
}
.main_info .text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  max-height: 384px;
  overflow: hidden;
}
.main_info .text.on {
  max-height: 100%;
  padding-bottom: 40px;
}
.main_info .text p {
  color: #6a6a6a;
  font-size: 13px;
  line-height: 160%;
  font-weight: 400;
}
.main_info .text .fond {
  width: 100%;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  bottom: 0;
  left: 0;
}
.main_info .text .fond.off {
  background: rgba(255, 255, 255, 0);
}
.main_info .text .fond button {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  color: #0c73fe;
}
.main_info .text .fond button:hover {
  color: #001945;
}

/***** каталог *****/
.catalog {
  padding: 15px 0 30px;
}
.catalog .title {
  width: 100%;
  padding: 40px 0;
}
.catalog .title.v2 {
  background: url("../img/catalog/title_v2.svg") no-repeat 95% 0%;
}
.catalog .title.v3 {
  background: url("../img/catalog/title_v3.svg") no-repeat 95% 0%;
}
.catalog .title.v4 {
  background: url("../img/catalog/title_v4.svg") no-repeat 95% 0%;
}
.catalog .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.catalog .cont .item {
  padding: 20px;
  border: 1px solid #ebebeb;
  width: 25%;
}
.catalog .cont .item .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 0 17px;
}
.catalog .cont .item .img img {
  max-width: 190px;
  width: 100%;
  margin: 35px auto 0;
}
.catalog .cont .item .img h6 {
  color: #001945;
}
.catalog .cont .item .img:hover h6 {
  color: #0c73fe;
}
.catalog .cont .item 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: 10px;
}
.catalog .cont .item ul li::marker {
  font-size: 0;
}
.catalog .cont .item ul li a {
  font-size: 14px;
}
.catalog .cont .item ul li a:hover {
  color: #0c73fe;
}
.catalog .cont .item.marked {
  background-color: #003083;
}
.catalog .cont .item.marked .img h6 {
  color: #fff;
}
.catalog .cont .item.marked .img:hover h6 {
  color: #0c73fe;
}
.catalog .cont .item.marked ul li a {
  color: #fff;
}
.catalog .cont .item.marked ul li a:hover {
  color: #0c73fe;
}

@media (max-width: 970px) {
  .catalog .cont .item {
    width: 33.33%;
  }
}
@media (max-width: 740px) {
  .catalog .cont .item {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .catalog h1 {
    font-size: 28px;
  }
  .catalog .title {
    padding: 32px 0;
  }
  .catalog .title h2 {
    font-size: 24px;
  }
  .catalog .cont .item {
    width: 100%;
  }
}
/***** Каталог брендів *****/
.brands_catalog {
  padding: 15px 0 30px;
}
.brands_catalog h1 {
  margin-bottom: 28px;
}
.brands_catalog .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.brands_catalog .cont .title {
  width: 100%;
  padding: 12px 0;
}
.brands_catalog .cont a {
  display: block;
  border: 1px solid #ebebeb;
  width: 14.28%;
  height: 80px;
  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;
}
.brands_catalog .cont a img {
  max-width: 100%;
  max-height: 100%;
}
.brands_catalog .cont a:hover {
  border: 1px solid #0c73fe;
}

@media (max-width: 1024px) {
  .brands_catalog .cont a {
    width: 16.66%;
  }
}
@media (max-width: 855px) {
  .brands_catalog .cont a {
    width: 25%;
  }
}
@media (max-width: 650px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 18px;
  }
  .brands_catalog .cont a {
    width: 33.33%;
  }
}
@media (max-width: 500px) {
  .brands_catalog .cont a {
    width: 50%;
  }
}
@media (max-width: 370px) {
  .brands_catalog .cont a {
    width: 100%;
  }
}
/*****  Назва бренду *****/
.brand {
  padding: 15px 0 20px;
}
.brand .brand_banner {
  position: relative;
}
.brand .brand_banner .item img {
  width: 100%;
  height: 500px;
  -o-object-fit: contain;
  object-fit: contain;
}
.brand .brand_banner .prev {
  position: absolute;
  top: calc(50% - 20px);
  left: 16px;
}
.brand .brand_banner .next {
  position: absolute;
  top: calc(50% - 20px);
  right: 16px;
}
.brand .brand_banner .pagin {
  margin: 24px auto 0;
  display: none;
}
.brand .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  margin: 40px auto;
  max-width: 985px;
  width: 100%;
}
.brand .info .img {
  width: 188px;
  height: 80px;
  border: 1px solid #ebebeb;
  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;
}
.brand .info .img img {
  max-width: 100%;
  max-height: 100%;
}
.brand .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: 20px;
}
.brand .brand_categories {
  margin-bottom: 40px;
}
.brand .brand_categories h2 {
  margin-bottom: 40px;
}
.brand .brand_categories .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.brand .brand_categories .cont .item {
  display: block;
  padding: 12px;
  border: 1px solid #ebebeb;
  width: 25%;
  overflow: hidden;
}
.brand .brand_categories .cont .item .img {
  width: 200px;
  height: 200px;
  margin: 0 auto 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;
}
.brand .brand_categories .cont .item .img img {
  max-width: 100%;
  max-height: 100%;
}
.brand .brand_categories .cont .item p {
  font-size: 14px;
  font-weight: 700;
  line-height: 180%;
  color: #0c73fe;
  display: block;
  text-align: center;
}
.brand .brand_categories .cont .item:hover .img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.brand .brand_categories .cont .item:hover p {
  color: #003083;
}
.brand .video_reviews {
  margin-bottom: 40px;
  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;
}
.brand .video_reviews .item {
  border-radius: 8px;
  padding: 24px;
  background-color: #001945;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.brand .video_reviews .item .video {
  width: calc(50% - 12px);
}
.brand .video_reviews .item .video iframe {
  width: 100%;
  height: 353px;
  border-radius: 4px;
}
.brand .video_reviews .item .text {
  width: calc(50% - 12px);
  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;
  gap: 16px;
}
.brand .more_brands {
  margin-bottom: 40px;
}
.brand .more_brands .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.brand .more_brands .title .prev {
  margin-left: auto;
}
.brand .more_brands .slider {
  margin: 24px 0;
}
.brand .more_brands .slider .item {
  border: 1px solid #ebebeb;
  height: 120px;
  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;
  padding: 20px;
}
.brand .more_brands .slider .item img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.brand .more_brands .slider .item:hover {
  border: 1px solid #0c73fe;
}
.brand .more_brands .all_brands {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-left: auto;
  padding-right: 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  color: #0c73fe;
  position: relative;
}
.brand .more_brands .all_brands::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/arrow_blue.svg");
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.brand .more_brands .all_brands:hover::after {
  right: -10px;
}

@media (max-width: 950px) {
  .brand .brand_categories .cont .item {
    width: 33.33%;
  }
}
@media (max-width: 768px) {
  .brand {
    padding: 15px 0 20px;
  }
  .brand .brand_banner {
    position: relative;
  }
  .brand .brand_banner .item img {
    height: 250px;
  }
  .brand .video_reviews .item {
    padding: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .brand .video_reviews .item .video,
  .brand .video_reviews .item .text {
    width: 100%;
  }
}
@media (max-width: 720px) {
  .brand .brand_categories .cont .item {
    width: 50%;
  }
}
@media (max-width: 650px) {
  .brand {
    padding: 15px 0 20px;
  }
  .brand .brand_banner .prev,
  .brand .brand_banner .next {
    display: none;
  }
  .brand .brand_banner .pagin {
    display: block;
  }
  .brand .more_brands .title .prev,
  .brand .more_brands .title .next {
    display: none;
  }
  .brand .more_brands .slider .item {
    width: 280px;
  }
}
@media (max-width: 500px) {
  .brand .brand_categories .cont .item {
    width: 225px;
  }
}
/*****  каталог товарів *****/
.catalog_goods {
  padding: 15px 0 30px;
}
.catalog_goods .designation {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 12px;
}
.catalog_goods .designation h2 {
  margin-bottom: 2px;
}
.catalog_goods .mobile_filter_btn {
  display: none;
}
.catalog_goods .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.catalog_goods .cont .side_panel {
  width: 325px;
  background-color: #fff;
}
.catalog_goods .cont .side_panel .mobile_head {
  display: none;
}
.catalog_goods .cont .side_panel .you_chose .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;
}
.catalog_goods .cont .side_panel .you_chose .head h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
.catalog_goods .cont .side_panel .you_chose .units {
  padding: 16px 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.catalog_goods .cont .side_panel .you_chose .units button {
  font-size: 12px;
  line-height: 130%;
  padding: 4px 4px 4px 8px;
  border-radius: 20px;
  border: 1px solid #001945;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  color: #fff;
  background-color: #001945;
}
.catalog_goods .cont .side_panel .you_chose .units button svg {
  fill: #fff;
}
.catalog_goods .cont .side_panel .you_chose .units button:hover {
  background-color: #fff;
  color: #001945;
}
.catalog_goods .cont .side_panel .you_chose .units button:hover svg {
  fill: #001945;
}
.catalog_goods .cont .side_panel .chechbox_block {
  padding: 24px 16px 24px 0;
  border-top: 1px solid #ebebeb;
}
.catalog_goods .cont .side_panel .chechbox_block .head {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  padding: 3px 48px 3px 0;
  position: relative;
  cursor: pointer;
}
.catalog_goods .cont .side_panel .chechbox_block .head::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 32px;
  height: 32px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background: url("../img/catalog_goods/chechboxes_block_arrow.svg");
}
.catalog_goods .cont .side_panel .chechbox_block .head.on::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.catalog_goods .cont .side_panel .chechbox_block .drop {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .search {
  margin-top: 16px;
  padding: 10px 46px 10px 12px;
  border-radius: 4px;
  border: 1px solid #ebebeb;
  position: relative;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .search input {
  font-size: 14px;
  line-height: 24px;
  position: relative;
  width: 100%;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .search input::-moz-placeholder {
  color: #282828;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .search input:-ms-input-placeholder {
  color: #282828;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .search input::-webkit-input-placeholder {
  color: #282828;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .search input::-ms-input-placeholder {
  color: #282828;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .search input::placeholder {
  color: #282828;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .search::after {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 10px;
  right: 12px;
  background: url("../img/catalog_goods/search.svg");
}
.catalog_goods .cont .side_panel .chechbox_block .drop .labels {
  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: 16px;
  max-height: 396px;
  overflow: auto;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .labels label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  cursor: pointer;
  position: relative;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .labels label input[type="checkbox"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .labels label p {
  padding-left: 31px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .labels label p span {
  color: #7b7b7b;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .labels label p::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/catalog_goods/checkbox.svg");
}
.catalog_goods .cont .side_panel .chechbox_block .drop .labels label input[type="checkbox"]:checked + p::before {
  background: url("../img/catalog_goods/checkbox_on.svg");
}
.catalog_goods .cont .side_panel .chechbox_block .drop .labels label input[type="checkbox"]:disabled ~ p {
  color: #a9a6a9;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .labels label input[type="checkbox"]:disabled ~ p span {
  color: #a9a6a9;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .labels label input[type="checkbox"]:disabled ~ p::before {
  background: url("../img/catalog_goods/сheckbox_disable.svg");
}
.catalog_goods .cont .side_panel .chechbox_block .drop .labels.colors label input[type="checkbox"]:checked + .coloring {
  border: 1px solid #003083;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .labels.colors label .coloring {
  border-radius: 4px;
  border: 1px solid #a9a6a9;
  padding: 3px;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .labels.colors label .coloring div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 2px;
  overflow: hidden;
  width: 18px;
  height: 18px;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .labels.colors label .coloring div span {
  width: 100%;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .labels.colors label p {
  padding: 0;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .labels.colors label p::before {
  display: none;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .nouiSlider {
  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;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .nouiSlider .fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .nouiSlider .fields input[type="number"] {
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #ebebeb;
  font-size: 14px;
  width: 90px;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .nouiSlider .fields input[type="submit"] {
  padding: 9px 12px;
  border-radius: 4px;
  border: 1px solid #0c73fe;
  background-color: #0c73fe;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  width: 82px;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .nouiSlider .fields input[type="submit"]:hover {
  background-color: #fff;
  color: #0c73fe;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .nouiSlider .slider {
  margin: 20px 0 0 6px;
  width: calc(100% - 30px);
}
.catalog_goods .cont .side_panel .chechbox_block .drop .nouiSlider .noUi-horizontal {
  height: 4px;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .nouiSlider .noUi-origin {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .nouiSlider .noUi-target {
  border-radius: 2px;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .nouiSlider .noUi-connects {
  background-color: #ebebeb;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .nouiSlider .noUi-connect {
  background-color: #0c73fe;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .nouiSlider .noUi-handle {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  border: 4px solid #0c73fe;
  background-color: #ebebeb;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .nouiSlider .noUi-handle-lower,
.catalog_goods .cont .side_panel .chechbox_block .drop .nouiSlider .noUi-handle-upper {
  top: -9px;
}
.catalog_goods .cont .side_panel .chechbox_block .drop .nouiSlider .noUi-handle-lower::before,
.catalog_goods .cont .side_panel .chechbox_block .drop .nouiSlider .noUi-handle-lower::after,
.catalog_goods .cont .side_panel .chechbox_block .drop .nouiSlider .noUi-handle-upper::before,
.catalog_goods .cont .side_panel .chechbox_block .drop .nouiSlider .noUi-handle-upper::after {
  display: none;
}
.catalog_goods .cont .side_panel .mobile_foot {
  display: none;
}
.catalog_goods .cont .goods {
  width: calc(100% - 325px);
}
.catalog_goods .cont .goods .head {
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  border: 1px solid #ebebeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding: 13px 20px;
}
.catalog_goods .cont .goods .head .choice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  width: calc(100% - 316px);
}
.catalog_goods .cont .goods .head .choice button {
  font-size: 12px;
  line-height: 130%;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid #001945;
  background-color: #001945;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}
.catalog_goods .cont .goods .head .choice button svg {
  fill: #fff;
}
.catalog_goods .cont .goods .head .choice button:hover {
  background-color: #fff;
  color: #001945;
}
.catalog_goods .cont .goods .head .choice button:hover svg {
  fill: #001945;
}
.catalog_goods .cont .goods .head .choice button.cancel_filters {
  border: 1px solid #001945;
  background-color: #fff;
  color: #001945;
}
.catalog_goods .cont .goods .head .choice button.cancel_filters svg {
  fill: #001945;
}
.catalog_goods .cont .goods .head .choice button.cancel_filters:hover {
  background-color: #001945;
  color: #fff;
}
.catalog_goods .cont .goods .head .choice button.cancel_filters:hover svg {
  fill: #fff;
}
.catalog_goods .cont .goods .head select {
  display: block;
  width: 300px;
  height: 44px;
  padding: 9px 12px;
  border-radius: 4px;
  border: 1px solid #ebebeb;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
  margin-left: auto;
}
.catalog_goods .cont .goods .head select option {
  padding: 9px 0;
}
.catalog_goods .cont .goods .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.catalog_goods .cont .goods .card {
  width: 25%;
  max-width: 100%;
  position: relative;
}
.catalog_goods .cont .goods .card .hidden_text {
  padding: 0 12px 12px;
  width: calc(100% + 2px);
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  overflow: hidden;
  position: absolute;
  background-color: #fff;
  z-index: -1;
  top: 100%;
  left: -1px;
  border: 1px solid #0c73fe;
  border-top: none;
  -webkit-box-shadow: 0px 8px 6px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 6px 0px rgba(0, 0, 0, 0.2);
}
.catalog_goods .cont .goods .card .hidden_text ul {
  font-size: 13px;
  font-weight: 400;
  line-height: 160%;
  color: #7b7b7b;
}
.catalog_goods .cont .goods .card .hidden_text ul li {
  margin-left: 15px;
}
.catalog_goods .cont .goods .card:hover {
  border: 1px solid #0c73fe;
  -webkit-box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.2);
}
.catalog_goods .cont .goods .card:hover .hidden_text {
  z-index: 1;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.catalog_goods .cont .goods .card.action .hidden_text {
  display: none;
}
.catalog_goods .cont .goods .main_info {
  padding-left: 20px;
}

@media (max-width: 1230px) {
  .catalog_goods .cont .goods .items .card {
    width: 33.33%;
  }
}
@media (max-width: 1020px) {
  .catalog_goods .cont .goods .items .card {
    width: 50%;
  }
}
@media (max-width: 890px) {
  .catalog_goods .cont .goods .head .choice {
    display: none;
  }
}
@media (max-width: 820px) {
  .catalog_goods .cont .goods .items .card {
    width: 100%;
  }
}
@media (max-width: 740px) {
  .catalog_goods h1 {
    margin-bottom: 20px;
  }
  .catalog_goods .mobile_filter_btn {
    width: 100%;
    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: 8px;
    padding: 7px;
    border-radius: 4px;
    border: 1px solid #0c73fe;
    margin-bottom: 20px;
    color: #0c73fe;
  }
  .catalog_goods .mobile_filter_btn svg {
    fill: #0c73fe;
  }
  .catalog_goods .mobile_filter_btn h6 {
    font-size: 15px;
    font-weight: 700;
    line-height: 30px;
  }
  .catalog_goods .mobile_filter_btn:hover {
    background-color: #0c73fe;
    color: #fff;
  }
  .catalog_goods .mobile_filter_btn:hover svg {
    fill: #fff;
  }
  .catalog_goods .cont .side_panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    opacity: 0;
    padding: 90px 0 60px;
    overflow: auto;
  }
  .catalog_goods .cont .side_panel.on {
    z-index: 1006;
    opacity: 1;
  }
  .catalog_goods .cont .side_panel .mobile_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;
    padding: 25px 20px;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 2;
    width: 100%;
    background-color: #fff;
  }
  .catalog_goods .cont .side_panel .mobile_head .close {
    width: 24px;
    height: 24px;
  }
  .catalog_goods .cont .side_panel .mobile_head .close svg {
    fill: #282828;
  }
  .catalog_goods .cont .side_panel .you_chose {
    padding: 0 20px;
  }
  .catalog_goods .cont .side_panel .chechbox_block {
    padding: 24px 20px;
  }
  .catalog_goods .cont .side_panel .mobile_foot {
    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: 8px 20px;
    background-color: #f2f3f7;
    position: fixed;
    bottom: 0;
    z-index: 2;
    width: 100%;
  }
  .catalog_goods .cont .side_panel .mobile_foot .cancel {
    font-size: 14px;
    font-weight: 700;
    line-height: 180%;
    color: #0c73fe;
  }
  .catalog_goods .cont .side_panel .mobile_foot .show {
    padding: 7px 21px;
    border-radius: 4px;
    background-color: #0c73fe;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 200%;
  }
  .catalog_goods .cont .goods {
    width: 100%;
  }
  .catalog_goods .cont .goods .items .card {
    width: 50%;
  }
  .catalog_goods .cont .goods .main_info {
    padding-left: 0;
  }
}
@media (max-width: 500px) {
  .catalog_goods .cont .goods .items .card {
    width: 100%;
  }
}
/*****  Переглянуті товари *****/
.reviewed_products {
  padding: 30px 0;
}
.reviewed_products h2 {
  margin-bottom: 24px;
}

/*****  Продукт *****/
.product {
  padding: 0 0 30px 0;
}
.product .top_panel {
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
  background-color: #f2f3f7;
  width: 100%;
  overflow: auto;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
.product .top_panel .nav_block {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  background-color: #f2f3f7;
}
.product .top_panel .nav_block a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  padding: 15.5px 0;
  border-bottom: 4px solid transparent;
  white-space: nowrap;
}
.product .top_panel .nav_block a.on,
.product .top_panel .nav_block a:hover {
  border-bottom: 4px solid #0c73fe;
}
.product .top_panel .nav_block a span {
  background-color: #0c73fe;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px;
  border-radius: 8px;
  display: none;
}
.product .top_panel .nav_block a span.on {
  display: block;
}
.product .cont {
  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;
  margin-top: 24px;
}
.product .cont .unit {
  display: -ms-grid;
  display: grid;
  grid-gap: 20px;
  -ms-grid-columns: 538px 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 538px repeat(5, 1fr);
  -ms-grid-rows: auto 20px auto 20px auto 20px auto 20px auto 20px auto 20px auto 20px auto;
  grid-template-rows: repeat(8, auto);
}
.product .cont .unit > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.product .cont .unit > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.product .cont .unit > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.product .cont .unit > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
.product .cont .unit > *:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 9;
}
.product .cont .unit > *:nth-child(6) {
  -ms-grid-row: 1;
  -ms-grid-column: 11;
}
.product .cont .unit > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.product .cont .unit > *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.product .cont .unit > *:nth-child(9) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.product .cont .unit > *:nth-child(10) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}
.product .cont .unit > *:nth-child(11) {
  -ms-grid-row: 3;
  -ms-grid-column: 9;
}
.product .cont .unit > *:nth-child(12) {
  -ms-grid-row: 3;
  -ms-grid-column: 11;
}
.product .cont .unit > *:nth-child(13) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.product .cont .unit > *:nth-child(14) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
.product .cont .unit > *:nth-child(15) {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
}
.product .cont .unit > *:nth-child(16) {
  -ms-grid-row: 5;
  -ms-grid-column: 7;
}
.product .cont .unit > *:nth-child(17) {
  -ms-grid-row: 5;
  -ms-grid-column: 9;
}
.product .cont .unit > *:nth-child(18) {
  -ms-grid-row: 5;
  -ms-grid-column: 11;
}
.product .cont .unit > *:nth-child(19) {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}
.product .cont .unit > *:nth-child(20) {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
}
.product .cont .unit > *:nth-child(21) {
  -ms-grid-row: 7;
  -ms-grid-column: 5;
}
.product .cont .unit > *:nth-child(22) {
  -ms-grid-row: 7;
  -ms-grid-column: 7;
}
.product .cont .unit > *:nth-child(23) {
  -ms-grid-row: 7;
  -ms-grid-column: 9;
}
.product .cont .unit > *:nth-child(24) {
  -ms-grid-row: 7;
  -ms-grid-column: 11;
}
.product .cont .unit > *:nth-child(25) {
  -ms-grid-row: 9;
  -ms-grid-column: 1;
}
.product .cont .unit > *:nth-child(26) {
  -ms-grid-row: 9;
  -ms-grid-column: 3;
}
.product .cont .unit > *:nth-child(27) {
  -ms-grid-row: 9;
  -ms-grid-column: 5;
}
.product .cont .unit > *:nth-child(28) {
  -ms-grid-row: 9;
  -ms-grid-column: 7;
}
.product .cont .unit > *:nth-child(29) {
  -ms-grid-row: 9;
  -ms-grid-column: 9;
}
.product .cont .unit > *:nth-child(30) {
  -ms-grid-row: 9;
  -ms-grid-column: 11;
}
.product .cont .unit > *:nth-child(31) {
  -ms-grid-row: 11;
  -ms-grid-column: 1;
}
.product .cont .unit > *:nth-child(32) {
  -ms-grid-row: 11;
  -ms-grid-column: 3;
}
.product .cont .unit > *:nth-child(33) {
  -ms-grid-row: 11;
  -ms-grid-column: 5;
}
.product .cont .unit > *:nth-child(34) {
  -ms-grid-row: 11;
  -ms-grid-column: 7;
}
.product .cont .unit > *:nth-child(35) {
  -ms-grid-row: 11;
  -ms-grid-column: 9;
}
.product .cont .unit > *:nth-child(36) {
  -ms-grid-row: 11;
  -ms-grid-column: 11;
}
.product .cont .unit > *:nth-child(37) {
  -ms-grid-row: 13;
  -ms-grid-column: 1;
}
.product .cont .unit > *:nth-child(38) {
  -ms-grid-row: 13;
  -ms-grid-column: 3;
}
.product .cont .unit > *:nth-child(39) {
  -ms-grid-row: 13;
  -ms-grid-column: 5;
}
.product .cont .unit > *:nth-child(40) {
  -ms-grid-row: 13;
  -ms-grid-column: 7;
}
.product .cont .unit > *:nth-child(41) {
  -ms-grid-row: 13;
  -ms-grid-column: 9;
}
.product .cont .unit > *:nth-child(42) {
  -ms-grid-row: 13;
  -ms-grid-column: 11;
}
.product .cont .unit > *:nth-child(43) {
  -ms-grid-row: 15;
  -ms-grid-column: 1;
}
.product .cont .unit > *:nth-child(44) {
  -ms-grid-row: 15;
  -ms-grid-column: 3;
}
.product .cont .unit > *:nth-child(45) {
  -ms-grid-row: 15;
  -ms-grid-column: 5;
}
.product .cont .unit > *:nth-child(46) {
  -ms-grid-row: 15;
  -ms-grid-column: 7;
}
.product .cont .unit > *:nth-child(47) {
  -ms-grid-row: 15;
  -ms-grid-column: 9;
}
.product .cont .unit > *:nth-child(48) {
  -ms-grid-row: 15;
  -ms-grid-column: 11;
}
.product .cont .unit .visual {
  width: 538px;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 8;
  grid-row: 1/9;
  position: relative;
}
.product .cont .unit .visual .big_img {
  width: 100%;
  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-bottom: 24px;
  border-radius: 8px;
  background-color: #fff;
}
.product .cont .unit .visual .big_img img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  cursor: pointer;
}
.product .cont .unit .visual .big_img iframe {
  width: 90%;
  height: 90%;
  border-radius: 8px;
  display: none;
}
.product .cont .unit .visual .slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 72px;
}
.product .cont .unit .visual .slider .small_img,
.product .cont .unit .visual .slider .video {
  width: 60px;
  height: 60px;
  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: 4px;
  border: 1px solid #ebebeb;
  cursor: pointer;
}
.product .cont .unit .visual .slider .small_img img,
.product .cont .unit .visual .slider .video img {
  max-width: 100%;
  max-height: 100%;
}
.product .cont .unit .visual .slider .small_img:hover,
.product .cont .unit .visual .slider .video:hover {
  border: 1px solid #0c73fe;
}
.product .cont .unit .visual .slider .small_img.add {
  display: none;
}
.product .cont .unit .visual .slider .video {
  border: 1px solid #eb5757;
  position: relative;
}
.product .cont .unit .visual .slider .video::before {
  content: "";
  width: 48px;
  height: 48px;
  background: url("../img/product/video.gif");
  position: absolute;
  top: 6px;
  left: 6px;
}
.product .cont .unit .visual .slider .video iframe {
  width: 100%;
  height: 100%;
  display: none;
}
.product .cont .unit .visual .slider .video:hover {
  border: 1px solid #eb5757;
}
.product .cont .unit .visual .more {
  width: 60px;
  height: 60px;
  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: 4px;
  border: 1px solid #ebebeb;
  cursor: pointer;
  position: absolute;
  right: 0;
}
.product .cont .unit .visual .more img {
  max-width: 100%;
  max-height: 100%;
}
.product .cont .unit .visual .more:hover {
  border: 1px solid #0c73fe;
}
.product .cont .unit .title {
  -ms-grid-column: 2;
  -ms-grid-column-span: 5;
  grid-column: 2/7;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.product .cont .unit .title h1 {
  margin-bottom: 22px;
}
.product .cont .unit .title .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.product .cont .unit .title .info .action {
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  line-height: 160%;
  border-radius: 20px;
  color: #fff;
}
.product .cont .unit .title .info .action.v1 {
  background-color: #0c73fe;
}
.product .cont .unit .title .info .action.v2 {
  background-color: #0c9300;
}
.product .cont .unit .title .info .action.v3 {
  background-color: #ea4335;
}
.product .cont .unit .title .info .action.v4 {
  background-color: #ff8f00;
}
.product .cont .unit .title .info .action.v5 {
  background-color: #6d67ed;
}
.product .cont .unit .title .info .action.v6 {
  background-color: #003083;
}
.product .cont .unit .title .info .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product .cont .unit .title .info .stars p {
  margin-left: 8px;
  font-size: 13px;
  line-height: 180%;
  font-weight: 400;
}
.product .cont .unit .title .info .code {
  font-size: 14px;
  line-height: 180%;
  font-weight: 400;
  margin-left: auto;
}
.product .cont .unit .title .info .code span {
  color: #001945;
}
.product .cont .unit .colors {
  margin-bottom: 24px;
}
.product .cont .unit .colors h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 12px;
}
.product .cont .unit .colors .pick_color {
  margin: 12px 0 0;
  gap: 4px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  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: 8px;
}
.product .cont .unit .colors .pick_color .item {
  position: relative;
  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: 38px;
  height: 38px;
}
.product .cont .unit .colors .pick_color .item label input {
  display: none;
}
.product .cont .unit .colors .pick_color .item label input + div {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  border: 1px solid #000;
  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;
  cursor: pointer;
}
.product .cont .unit .colors .pick_color .item label input + div span {
  width: 100%;
  height: 100%;
  border-radius: 1px;
}
.product .cont .unit .colors .pick_color .item label input:checked + div {
  border: 1px solid #0c73fe;
  -webkit-box-shadow: 0px 0px 5px 4px rgba(12, 115, 254, 0.5);
  box-shadow: 0px 0px 5px 4px rgba(12, 115, 254, 0.5);
}
.product .cont .unit .colors .pick_color .item .all {
  background: url("../img/arrow_slader_disabled.svg") 50% 50% no-repeat #f2f3f7;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  width: 30px;
  height: 30px;
  border-radius: 2px;
  border: 1px solid #7b7b7b;
}
.product .cont .unit .colors .pick_color .item .cloud {
  position: absolute;
  bottom: calc(100% + 8px);
  width: 90px;
  left: -26px;
  margin: 0 auto;
  font-size: 14px;
  padding: 4px;
  border-radius: 8px;
  background-color: #d9d9d9;
  text-align: center;
  opacity: 0;
  z-index: -1;
}
.product .cont .unit .colors .pick_color .item .cloud::after {
  content: "";
  border: 5px solid transparent;
  border-top: 5px solid #d9d9d9;
  position: absolute;
  top: 100%;
  left: 40px;
}
.product .cont .unit .colors .pick_color .item:hover .cloud {
  opacity: 1;
  z-index: 1;
}
.product .cont .unit .product_card {
  -ms-grid-column: 4;
  -ms-grid-column-span: 3;
  grid-column: 4/7;
  -ms-grid-row: 2;
  -ms-grid-row-span: 7;
  grid-row: 2/9;
}
.product .cont .unit .product_card .top {
  padding: 24px 16px 32px;
}
.product .cont .unit .main_features {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 7;
  grid-row: 2/9;
}
.product .cont .unit .main_features h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
.product .cont .unit .main_features ul {
  margin: 12px 0 24px;
}
.product .cont .unit .main_features ul li {
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
  margin-left: 20px;
}
.product .cont .unit .main_features .prop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 12px;
  margin-bottom: 16px;
}
.product .cont .unit .main_features .prop .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: 4px;
}
.product .cont .unit .main_features .prop .text h6 {
  font-size: 13px;
  font-weight: 700;
  line-height: 160%;
}
.product .cont .unit .main_features .prop .text p {
  font-size: 13px;
  line-height: 160%;
  font-weight: 400;
}
.product .cont .recommendations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}
.product .cont .recommendations .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  background-color: #f2f3f7;
  overflow: hidden;
  width: calc(50% - 10px);
}
.product .cont .recommendations .item .img {
  width: 50%;
  height: 250px;
  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;
}
.product .cont .recommendations .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product .cont .recommendations .item .text {
  width: 50%;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
}
.product .cont .recommendations .item .text img {
  width: 24px;
}
.product .cont .recommendations .item .text a {
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
  color: #0c73fe;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 28px;
}
.product .cont .recommendations .item .text a::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/arrow_blue.svg");
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  position: absolute;
  top: 1px;
  right: 0;
}
.product .cont .recommendations .item .text a:hover::after {
  right: -10px;
}
.product .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin: 24px auto 0;
}
.product .description .left {
  max-width: 874px;
  width: 100%;
}
.product .description .left .select_description {
  display: none;
  padding: 8px;
  border-radius: 4px;
  border: 2px solid #f2f3f7;
  width: 320px;
  margin-bottom: 24px;
  position: relative;
}
.product .description .left .select_description span {
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  padding-right: 48px;
  display: block;
  cursor: pointer;
}
.product .description .left .select_description span::after {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 4px;
  position: absolute;
  right: 8px;
  background: url("../img/product/select_arrow.svg") no-repeat 50% 50% #f2f3f7;
}
.product .description .left .select_description .drop {
  display: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.product .description .left .select_description .drop p {
  margin: 5px 0;
  padding: 5px;
  cursor: pointer;
}
.product .description .left .select_description .drop p:hover {
  background-color: #f2f3f7;
}
.product .description .left .text_description {
  padding-bottom: 40px;
}
.product .description .left .text_description .text {
  margin: 24px 0 0 0;
  max-height: 350px;
  overflow: hidden;
  position: relative;
  font-size: 14px;
  line-height: 180%;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.product .description .left .text_description .text.on {
  max-height: 100%;
  padding-bottom: 40px;
}
.product .description .left .text_description .text .hide {
  display: block;
  height: 50px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
}
.product .description .left .text_description .text button {
  color: #0c73fe;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  font-size: 14px;
}
.product .description .left .text_description .text .table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px 0;
  width: 100%;
}
.product .description .left .text_description .text .table p {
  font-size: 14px;
  line-height: 180%;
  font-weight: 400;
}
.product .description .left .text_description .text .table p:nth-child(odd) {
  width: 50%;
  padding: 0 10px 7px 0;
  border-bottom: 1px solid #ebebeb;
  font-weight: 700;
}
.product .description .left .text_description .text .table p:nth-child(even) {
  width: 50%;
  padding-left: 0 0 7px 10px;
  border-bottom: 1px solid #ebebeb;
}
.product .description .left .text_description .text .videos {
  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;
}
.product .description .left .text_description .text .videos iframe {
  display: block;
  max-width: 700px;
  width: 100%;
  height: 300px;
}
.product .description .left .instruction {
  padding-bottom: 40px;
}
.product .description .left .instruction .cont {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.product .description .left .instruction .cont .item {
  width: calc(50% - 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 24px;
  background-color: #f2f3f7;
  border-radius: 8px;
  padding: 16px;
}
.product .description .left .instruction .cont .item .text img {
  display: block;
}
.product .description .left .instruction .cont .item .text h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
.product .description .left .instruction .cont .item .text a {
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
  color: #0c73fe;
}
.product .description .left .instruction .cont .item .text a:hover {
  color: #003083;
}
.product .description .left .customer_reviews {
  padding-bottom: 40px;
}
.product .description .left .customer_reviews h2 {
  margin-bottom: 24px;
}
.product .description .left .customer_reviews .add_rew {
  width: 100%;
  padding: 12px;
  background-color: #f2f3f7;
  border-radius: 4px;
  margin-bottom: 24px;
  border: 1px solid #f2f3f7;
}
.product .description .left .customer_reviews .add_rew:hover {
  background-color: #fff;
}
.product .description .left .customer_reviews .add_rew h6 {
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  color: #0c73fe;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}
.product .description .left .customer_reviews .add_rew h6::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/header/header_catalog2.svg");
  position: absolute;
  top: 0;
  left: -36px;
}
.product .description .left .customer_reviews .item {
  border-radius: 8px;
  border: 1px solid #ebebeb;
  padding: 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;
  margin-bottom: 24px;
}
.product .description .left .customer_reviews .item.hide {
  display: none;
}
.product .description .left .customer_reviews .item .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;
}
.product .description .left .customer_reviews .item .head h6 {
  font-size: 16px;
}
.product .description .left .customer_reviews .item .head p {
  font-size: 13px;
  line-height: 160%;
  font-weight: 400;
}
.product .description .left .customer_reviews .item .stars {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product .description .left .customer_reviews .item .stars p {
  margin-left: 8px;
  font-size: 13px;
  line-height: 160%;
  font-weight: 400;
}
.product .description .left .customer_reviews .item .text {
  font-size: 14px;
  line-height: 180%;
  font-weight: 400;
}
.product .description .left .customer_reviews .item .reviews_img {
  width: 128px;
}
.product .description .left .customer_reviews .item .reaction .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.product .description .left .customer_reviews .item .reaction .title h6 {
  font-size: 16px;
}
.product .description .left .customer_reviews .item .reaction 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: 10px;
  margin-left: 30px;
}
.product .description .left .customer_reviews .item .reaction ul li {
  font-size: 14px;
  line-height: 180%;
}
.product .description .left .customer_reviews .item .reaction ul li::marker {
  font-size: 0;
}
.product .description .left .customer_reviews .item .make_reply {
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  padding-left: 36px;
  color: #0c73fe;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.product .description .left .customer_reviews .item .make_reply::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  background: url("../img/header/header_catalog2.svg");
}
.product .description .left .customer_reviews .item .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: 24px;
}
.product .description .left .customer_reviews .item .item_answer .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 13px;
}
.product .description .left .customer_reviews .item .item_answer .name img {
  display: block;
  width: 156px;
}
.product .description .left .customer_reviews .item .item_answer .name h6 {
  font-size: 16px;
}
.product .description .left .customer_reviews .item .item_answer .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: 20px;
  font-size: 14px;
  line-height: 180%;
  font-weight: 400;
}
.product .description .left .customer_reviews .show_all {
  color: #0c73fe;
  width: 100%;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid #f2f3f7;
  background-color: #f2f3f7;
  text-align: center;
}
.product .description .left .customer_reviews .show_all:hover {
  background-color: #fff;
}
.product .description .left .photos h2 {
  margin-bottom: 24px;
}
.product .description .left .photos .images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.product .description .left .photos .images .img {
  width: calc(50% - 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;
}
.product .description .left .photos .images .img img {
  max-width: 100%;
  max-height: 100%;
}
.product .description .right {
  max-width: calc(100% - 894px);
  width: 100%;
}
.product .description .right .product_card {
  position: sticky;
  top: 64px;
}

.product_card {
  -webkit-box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.product_card .top {
  padding: 0 16px 32px;
  border-radius: 8px 8px 0 0;
  border: 2px solid #0c73fe;
}
.product_card .top a {
  display: block;
  width: 100%;
  background-color: #0c73fe;
  color: #fff;
  font-weight: 400;
  padding: 7px 10px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #0c73fe;
  margin-top: 10px;
}
.product_card .top a:hover {
  color: #0c73fe;
  background-color: #fff;
}
.product_card .top .special_offer {
  border-radius: 4px;
  border: 1px solid #eb5757;
  padding: 12px;
  margin-bottom: 24px;
  display: none;
  -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: 8px;
}
.product_card .top .special_offer h6 {
  color: #eb5757;
  text-align: center;
}
.product_card .top .special_offer img {
  max-width: 100%;
  width: 100%;
}
.product_card .top .special_offer p {
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  color: #7b7b7b;
  text-align: center;
}
.product_card .top .special_offer .countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
}
.product_card .top .special_offer .countdown .item {
  padding: 4px;
  width: 17.67%;
  position: relative;
}
.product_card .top .special_offer .countdown .item::after {
  content: ":";
  position: absolute;
  top: 8px;
  right: -8px;
  font-size: 18px;
  font-weight: 700;
}
.product_card .top .special_offer .countdown .item h3 {
  text-align: center;
  color: #000;
  margin: 0;
}
.product_card .top .special_offer .countdown .item p {
  color: #7b7b7b;
  text-align: center;
}
.product_card .top .special_offer .countdown .item:last-child h3,
.product_card .top .special_offer .countdown .item:last-child p {
  color: #eb5757;
}
.product_card .top .special_offer .countdown .item:last-child::after {
  display: none;
}
.product_card .top .special_offer a {
  width: 100%;
  background-color: #eb5757;
  color: #fff;
  font-weight: 400;
  padding: 7px 10px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #eb5757;
  margin: 0;
}
.product_card .top .special_offer a:hover {
  color: #eb5757;
  background-color: #fff;
}
.product_card .top .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;
  border-radius: 4px;
  background-color: #f7f7f7;
  margin-top: 16px;
}
.product_card .top .img img {
  max-width: 100%;
  max-height: 100%;
}
.product_card .top h3 {
  margin: 32px 0 24px;
}
.product_card .top .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.product_card .top .head .prices {
  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;
}
.product_card .top .head .prices .old {
  display: none;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
}
.product_card .top .head .prices .old .sum {
  color: #6a6a6a;
  text-decoration: line-through;
}
.product_card .top .head .prices .old .discount {
  color: #ea4335;
}
.product_card .top .head .prices .present {
  font-size: 40px;
}
.product_card .top .head .status {
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 160%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.product_card .top .head .status.v1 {
  border: 1px solid #0c9300;
  background: rgba(14, 170, 0, 0.1);
  color: #0c9300;
}
.product_card .top .head .status.v2 {
  border: 1px solid #0c73fe;
  background: rgba(12, 115, 254, 0.1);
  color: #282828;
}
.product_card .top .head .status.v3 {
  border: 1px solid #6a6a6a;
  background: rgba(144, 144, 144, 0.1);
  color: #282828;
}
.product_card .top .btn {
  width: 100%;
  margin: 24px 0;
}
.product_card .top .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.product_card .top .links button {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.product_card .top .links button .icon {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  position: relative;
}
.product_card .top .links button .icon::after {
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  border-radius: 7px;
  background: url("../img/card/check.svg") no-repeat 50% 50% #0c9300;
  position: absolute;
  top: 2px;
  right: 2px;
  display: none;
}
.product_card .top .links button.compar .icon {
  background: url("../img/product/disc1.svg") #ebebeb no-repeat 50%;
}
.product_card .top .links button.favor .icon {
  background: url("../img/product/disc2.svg") #ebebeb no-repeat 50%;
}
.product_card .top .links button:hover {
  color: #0c73fe;
}
.product_card .top .links button.on .icon::after {
  display: block;
}
.product_card .top .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.product_card .top .share button {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.product_card .top .share button:hover {
  color: #0c73fe;
}
.product_card .top .share button .icon {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  position: relative;
  background: url("../img/product/disc3.svg") #ebebeb no-repeat 50%;
}
.product_card .top .share .soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.product_card .top .share .soc a {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  border: none;
  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: 0;
  opacity: 0;
  pointer-events: none;
  background-color: #d9d9d9;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.product_card .top .share .soc a.telegram:hover {
  background-color: #229ed9;
}
.product_card .top .share .soc a.telegram img {
  margin: 2px 3px 0 0;
}
.product_card .top .share .soc a.telegram.anim {
  pointer-events: auto;
  -webkit-animation: soc_link 0.3s ease forwards;
  animation: soc_link 0.3s ease forwards;
}
.product_card .top .share .soc a.telegram.hidden {
  pointer-events: none;
  -webkit-animation: soc_link2 0.3s ease 0.45s forwards;
  animation: soc_link2 0.3s ease 0.45s forwards;
}
.product_card .top .share .soc a.viber:hover {
  background-color: #7360f2;
}
.product_card .top .share .soc a.viber img {
  width: 22px;
}
.product_card .top .share .soc a.viber.anim {
  pointer-events: auto;
  -webkit-animation: soc_link 0.3s ease 0.15s forwards;
  animation: soc_link 0.3s ease 0.15s forwards;
}
.product_card .top .share .soc a.viber.hidden {
  pointer-events: none;
  -webkit-animation: soc_link2 0.3s ease 0.3s forwards;
  animation: soc_link2 0.3s ease 0.3s forwards;
}
.product_card .top .share .soc a.whatsapp:hover {
  background-color: #25d366;
}
.product_card .top .share .soc a.whatsapp img {
  display: block;
  width: 22px;
}
.product_card .top .share .soc a.whatsapp.anim {
  pointer-events: auto;
  -webkit-animation: soc_link 0.3s ease 0.3s forwards;
  animation: soc_link 0.3s ease 0.3s forwards;
}
.product_card .top .share .soc a.whatsapp.hidden {
  pointer-events: none;
  -webkit-animation: soc_link2 0.3s ease 0.15s forwards;
  animation: soc_link2 0.3s ease 0.15s forwards;
}
.product_card .top .share .soc a.facebook:hover {
  background-color: #4267b2;
}
.product_card .top .share .soc a.facebook.anim {
  pointer-events: auto;
  -webkit-animation: soc_link 0.3s ease 0.45s forwards;
  animation: soc_link 0.3s ease 0.45s forwards;
}
.product_card .top .share .soc a.facebook.hidden {
  pointer-events: none;
  -webkit-animation: soc_link2 0.3s ease forwards;
  animation: soc_link2 0.3s ease forwards;
}
.product_card .bottom {
  padding: 32px 16px 21px;
  border-radius: 0 0 8px 8px;
  border: 2px solid #0c73fe;
  border-top: 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: 16px;
}
.product_card .bottom h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
.product_card .bottom .direction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.product_card .bottom .direction button {
  font-size: 14px;
  line-height: 180%;
  font-weight: 400;
  border-bottom: 2px solid transparent;
}
.product_card .bottom .direction button.on {
  color: #0c73fe;
  border-bottom: 2px solid #0c73fe;
}
.product_card .bottom .announcement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background-color: #f2f3f7;
  border-radius: 8px;
}
.product_card .bottom .pickup span {
  color: #0c9300;
}
.product_card.action .top .special_offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product_card.discount .top .head .prices .old {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@-webkit-keyframes soc_link {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(0, -20%);
    transform: translate(0, -20%);
  }
  100% {
    opacity: 1;
  }
}

@keyframes soc_link {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(0, -20%);
    transform: translate(0, -20%);
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes soc_link2 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes soc_link2 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.cheaper {
  padding: 30px 0;
}
.cheaper .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.cheaper .head h2 {
  margin-right: auto;
}
.cheaper .item {
  border-radius: 4px;
  border: 1px solid #ebebeb;
  margin: 0 10px;
}
.cheaper .item .top {
  padding: 33px 24px 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
.cheaper .item .top .thing {
  width: 32%;
}
.cheaper .item .top .thing .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;
  background-color: #f7f7f7;
  margin-bottom: 17px;
}
.cheaper .item .top .thing .img img {
  max-width: 100%;
  max-height: 100%;
}
.cheaper .item .top::before {
  content: "";
  width: 36px;
  height: 36px;
  position: absolute;
  top: 40%;
  left: calc(50% - 16px);
  background: url("../img/product/green_plus.svg");
}
.cheaper .item .bottom {
  padding: 30px 24px 24px;
  border-top: 1px solid #ebebeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.cheaper ul.slick-dots {
  margin-top: 26px;
}

@media (max-width: 1250px) {
  .product .cont .unit {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(6, 1fr);
    -ms-grid-rows: auto 20px auto 20px auto 20px auto 20px auto 20px auto 20px auto 20px auto 20px auto;
    grid-template-rows: repeat(9, auto);
  }
  .product .cont .unit > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .product .cont .unit > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .product .cont .unit > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .product .cont .unit > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }
  .product .cont .unit > *:nth-child(5) {
    -ms-grid-row: 1;
    -ms-grid-column: 9;
  }
  .product .cont .unit > *:nth-child(6) {
    -ms-grid-row: 1;
    -ms-grid-column: 11;
  }
  .product .cont .unit > *:nth-child(7) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .product .cont .unit > *:nth-child(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .product .cont .unit > *:nth-child(9) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }
  .product .cont .unit > *:nth-child(10) {
    -ms-grid-row: 3;
    -ms-grid-column: 7;
  }
  .product .cont .unit > *:nth-child(11) {
    -ms-grid-row: 3;
    -ms-grid-column: 9;
  }
  .product .cont .unit > *:nth-child(12) {
    -ms-grid-row: 3;
    -ms-grid-column: 11;
  }
  .product .cont .unit > *:nth-child(13) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .product .cont .unit > *:nth-child(14) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .product .cont .unit > *:nth-child(15) {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
  }
  .product .cont .unit > *:nth-child(16) {
    -ms-grid-row: 5;
    -ms-grid-column: 7;
  }
  .product .cont .unit > *:nth-child(17) {
    -ms-grid-row: 5;
    -ms-grid-column: 9;
  }
  .product .cont .unit > *:nth-child(18) {
    -ms-grid-row: 5;
    -ms-grid-column: 11;
  }
  .product .cont .unit > *:nth-child(19) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .product .cont .unit > *:nth-child(20) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }
  .product .cont .unit > *:nth-child(21) {
    -ms-grid-row: 7;
    -ms-grid-column: 5;
  }
  .product .cont .unit > *:nth-child(22) {
    -ms-grid-row: 7;
    -ms-grid-column: 7;
  }
  .product .cont .unit > *:nth-child(23) {
    -ms-grid-row: 7;
    -ms-grid-column: 9;
  }
  .product .cont .unit > *:nth-child(24) {
    -ms-grid-row: 7;
    -ms-grid-column: 11;
  }
  .product .cont .unit > *:nth-child(25) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .product .cont .unit > *:nth-child(26) {
    -ms-grid-row: 9;
    -ms-grid-column: 3;
  }
  .product .cont .unit > *:nth-child(27) {
    -ms-grid-row: 9;
    -ms-grid-column: 5;
  }
  .product .cont .unit > *:nth-child(28) {
    -ms-grid-row: 9;
    -ms-grid-column: 7;
  }
  .product .cont .unit > *:nth-child(29) {
    -ms-grid-row: 9;
    -ms-grid-column: 9;
  }
  .product .cont .unit > *:nth-child(30) {
    -ms-grid-row: 9;
    -ms-grid-column: 11;
  }
  .product .cont .unit > *:nth-child(31) {
    -ms-grid-row: 11;
    -ms-grid-column: 1;
  }
  .product .cont .unit > *:nth-child(32) {
    -ms-grid-row: 11;
    -ms-grid-column: 3;
  }
  .product .cont .unit > *:nth-child(33) {
    -ms-grid-row: 11;
    -ms-grid-column: 5;
  }
  .product .cont .unit > *:nth-child(34) {
    -ms-grid-row: 11;
    -ms-grid-column: 7;
  }
  .product .cont .unit > *:nth-child(35) {
    -ms-grid-row: 11;
    -ms-grid-column: 9;
  }
  .product .cont .unit > *:nth-child(36) {
    -ms-grid-row: 11;
    -ms-grid-column: 11;
  }
  .product .cont .unit > *:nth-child(37) {
    -ms-grid-row: 13;
    -ms-grid-column: 1;
  }
  .product .cont .unit > *:nth-child(38) {
    -ms-grid-row: 13;
    -ms-grid-column: 3;
  }
  .product .cont .unit > *:nth-child(39) {
    -ms-grid-row: 13;
    -ms-grid-column: 5;
  }
  .product .cont .unit > *:nth-child(40) {
    -ms-grid-row: 13;
    -ms-grid-column: 7;
  }
  .product .cont .unit > *:nth-child(41) {
    -ms-grid-row: 13;
    -ms-grid-column: 9;
  }
  .product .cont .unit > *:nth-child(42) {
    -ms-grid-row: 13;
    -ms-grid-column: 11;
  }
  .product .cont .unit > *:nth-child(43) {
    -ms-grid-row: 15;
    -ms-grid-column: 1;
  }
  .product .cont .unit > *:nth-child(44) {
    -ms-grid-row: 15;
    -ms-grid-column: 3;
  }
  .product .cont .unit > *:nth-child(45) {
    -ms-grid-row: 15;
    -ms-grid-column: 5;
  }
  .product .cont .unit > *:nth-child(46) {
    -ms-grid-row: 15;
    -ms-grid-column: 7;
  }
  .product .cont .unit > *:nth-child(47) {
    -ms-grid-row: 15;
    -ms-grid-column: 9;
  }
  .product .cont .unit > *:nth-child(48) {
    -ms-grid-row: 15;
    -ms-grid-column: 11;
  }
  .product .cont .unit > *:nth-child(49) {
    -ms-grid-row: 17;
    -ms-grid-column: 1;
  }
  .product .cont .unit > *:nth-child(50) {
    -ms-grid-row: 17;
    -ms-grid-column: 3;
  }
  .product .cont .unit > *:nth-child(51) {
    -ms-grid-row: 17;
    -ms-grid-column: 5;
  }
  .product .cont .unit > *:nth-child(52) {
    -ms-grid-row: 17;
    -ms-grid-column: 7;
  }
  .product .cont .unit > *:nth-child(53) {
    -ms-grid-row: 17;
    -ms-grid-column: 9;
  }
  .product .cont .unit > *:nth-child(54) {
    -ms-grid-row: 17;
    -ms-grid-column: 11;
  }
  .product .cont .unit .title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
    grid-column: 1/7;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
  .product .cont .unit .visual {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    width: 100%;
  }
  .product .cont .unit .visual .big_img {
    height: initial;
  }
  .product .cont .unit .product_card {
    -ms-grid-column: 4;
    -ms-grid-column-span: 3;
    grid-column: 4/7;
    -ms-grid-row: 2;
    -ms-grid-row-span: 3;
    grid-row: 2/5;
  }
  .product .cont .unit .main_features {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
    -ms-grid-row: 3;
    -ms-grid-row-span: 6;
    grid-row: 3/9;
  }
  .product .description .right {
    display: none;
  }
}
@media (max-width: 1150px) {
  .product .top_panel {
    max-width: calc(100% + 40px);
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
  .product .top_panel::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}
@media (max-width: 768px) {
  .product .top_panel {
    position: sticky;
    top: 0;
    z-index: 1001;
  }
  .product .description .left .select_description {
    display: block;
  }
  .product .description .left .showy > div:not(:nth-child(1)) {
    display: none;
  }
}
@media (max-width: 700px) {
  .cheaper .item {
    margin: 0;
  }
  .cheaper .item .top {
    padding: 33px 16px 16px;
  }
  .cheaper .item .top .thing {
    width: calc(50% - 35px);
  }
  .cheaper .item .bottom {
    padding: 25px 16px 16px;
  }
}
@media (max-width: 650px) {
  .product .cont .unit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .product .cont .unit .title {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .product .cont .unit .title h1 {
    margin-bottom: 8px;
  }
  .product .cont .unit .title .info {
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .product .cont .unit .title .info .code {
    width: 100%;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .product .cont .unit .title .info .action {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .product .cont .unit .title .info .stars {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .product .cont .unit .visual {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .product .cont .unit .visual .big_img {
    display: none;
  }
  .product .cont .unit .visual .slider {
    padding: 0;
  }
  .product .cont .unit .visual .slider .small_img {
    width: initial;
    height: 319px;
    border: 1px solid transparent;
  }
  .product .cont .unit .visual .slider .small_img.add {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .product .cont .unit .visual .slider .small_img:hover {
    border: 1px solid transparent;
  }
  .product .cont .unit .visual .slider .video {
    width: initial;
    height: 319px;
    border: 1px solid #f7f7f7;
  }
  .product .cont .unit .visual .slider .video::before {
    display: none;
  }
  .product .cont .unit .visual .slider .video iframe {
    display: block;
  }
  .product .cont .unit .visual .slider .video:hover {
    border: 1px solid #f7f7f7;
  }
  .product .cont .unit .visual .more {
    display: none;
  }
  .product .cont .unit .colors {
    margin: 24px 0;
  }
  .product .cont .unit .product_card {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .product .cont .unit .main_features {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
@media (max-width: 550px) {
  .product .description .left .instruction .cont .item {
    width: 100%;
  }
  .cheaper .head .prev,
  .cheaper .head .next {
    display: none;
  }
  .cheaper .item .bottom {
    -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;
  }
  .cheaper .item .bottom button {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .product .cont .recommendations .item .img {
    display: none;
  }
  .product .cont .recommendations .item .text {
    width: 100%;
  }
}
@media (max-width: 385px) {
  .product_card .top .share {
    gap: 8px;
  }
  .product_card .top .share button {
    gap: 5px;
  }
  .product_card .top .share .soc {
    gap: 8px;
  }
}
.mobile_price {
  position: fixed;
  bottom: 0;
  z-index: 1001;
  width: 100%;
  padding: 8px 20px;
  background-color: #f2f3f7;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.mobile_price button {
  font-size: 15px;
  font-weight: 700;
  line-height: 200%;
  padding: 7px 37px;
  color: #fff;
  border-radius: 4px;
  border: 2px solid #0c73fe;
  background-color: #0c73fe;
}
.mobile_price button:hover {
  background-color: #fff;
  color: #0c73fe;
}

@media (max-width: 768px) {
  .mobile_price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/*****  перевірка *****/
.checkout {
  padding: 30px 0;
}
.checkout .title {
  margin-bottom: 40px;
}
.checkout .number {
  color: #7b7b7b;
  margin-bottom: 40px;
  display: none;
}
.checkout form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.checkout form .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  max-width: 873px;
  width: calc(66% - 10px);
}
.checkout form .container .box1 .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #ebebeb;
  gap: 24px 12px;
}
.checkout form .container .box1 .item:last-child {
  border-bottom: 0;
  padding: 24px 0 0;
}
.checkout form .container .box1 .item .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkout form .container .box1 .item .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 50%;
  margin-left: auto;
}
.checkout form .container .box1 .item .img {
  width: 92px;
  height: 92px;
  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: #f7f7f7;
  margin: 0 20px 0 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.checkout form .container .box1 .item .img img {
  max-width: 100%;
  max-height: 100%;
}
.checkout form .container .box1 .item .info {
  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;
  -ms-flex-negative: 2;
  flex-shrink: 2;
}
.checkout form .container .box1 .item .info a {
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  color: #0c73fe;
  max-width: 250px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.checkout form .container .box1 .item .info .color {
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 2px;
  overflow: hidden;
}
.checkout form .container .box1 .item .info .color span {
  width: 100%;
  height: 100%;
}
.checkout form .container .box1 .item .delete {
  margin: 5px auto 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.checkout form .container .box1 .item .delete svg {
  fill: #1c1b1f;
}
.checkout form .container .box1 .item .delete:hover svg {
  fill: #0c73fe;
}
.checkout form .container .box1 .item .price {
  margin: 0 auto;
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
}
.checkout form .container .box1 .item .price p {
  color: #7b7b7b;
  margin-bottom: 16px;
}
.checkout form .container .box1 .item .price .old {
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
  text-decoration: line-through;
}
.checkout form .container .box1 .item .price .present {
  font-size: 14px;
  font-weight: 700;
  line-height: 180%;
}
.checkout form .container .box1 .item .management {
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
  margin: 0 auto;
}
.checkout form .container .box1 .item .management p {
  margin-bottom: 16px;
  color: #7b7b7b;
}
.checkout form .container .box1 .item .sum {
  margin-left: auto;
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
}
.checkout form .container .box1 .item .sum p {
  color: #7b7b7b;
  margin-bottom: 20px;
}
.checkout form .container .box2 h3 {
  margin-bottom: 32px;
}
.checkout form .container .box2 .role_selection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.checkout form .container .box2 .role_selection label {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}
.checkout form .container .box2 .role_selection label input {
  display: none;
}
.checkout form .container .box2 .role_selection label input + p {
  padding: 12px 20px;
  font-size: 14px;
  line-height: 170%;
  border-radius: 25px;
  border: 2px solid transparent;
  background: rgba(45, 45, 45, 0.1);
  white-space: nowrap;
}
.checkout form .container .box2 .role_selection label input:checked + p {
  color: #0c73fe;
  border: 2px solid #0c73fe;
  background: rgba(12, 115, 254, 0.1);
}
.checkout form .container .box2 .fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px 20px;
}
.checkout form .container .box2 .fields .wrappage {
  display: block;
  width: calc(50% - 10px);
  border-radius: 4px;
  border: 1px solid #858585;
  position: relative;
  padding: 2px;
}
.checkout form .container .box2 .fields .wrappage.w100 {
  width: 100%;
}
.checkout form .container .box2 .fields .wrappage.w25 {
  width: calc(25% - 15px);
}
.checkout form .container .box2 .fields .wrappage.w51 {
  width: calc(50% - 9px);
}
.checkout form .container .box2 .fields .wrappage.n1,
.checkout form .container .box2 .fields .wrappage.n2,
.checkout form .container .box2 .fields .wrappage.n6,
.checkout form .container .box2 .fields .wrappage.n7 {
  display: none;
}
.checkout form .container .box2 .fields .wrappage input,
.checkout form .container .box2 .fields .wrappage textarea,
.checkout form .container .box2 .fields .wrappage select {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  padding: 14px 0 14px 14px;
  background-color: #fff;
}
.checkout form .container .box2 .fields .wrappage textarea {
  resize: none;
}
.checkout form .container .box2 .fields .wrappage span {
  font-size: 13px;
  height: 16px;
  padding: 0 4px;
  background-color: #fff;
  position: absolute;
  top: -8px;
  left: 12px;
}
.checkout form .container .box3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}
.checkout form .container .box3 .delivery_options {
  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;
}
.checkout form .container .box3 .delivery_options .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}
.checkout form .container .box3 .delivery_options .item label {
  cursor: pointer;
}
.checkout form .container .box3 .delivery_options .item label input {
  display: none;
}
.checkout form .container .box3 .delivery_options .item label input + p {
  padding-left: 32px;
  position: relative;
}
.checkout form .container .box3 .delivery_options .item label input + p::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 1px;
  background: url("../img/checkout_radio1.svg") no-repeat 50% 50%;
}
.checkout form .container .box3 .delivery_options .item label input:checked + p::before {
  background: url("../img/checkout_radio2.svg") no-repeat 50% 50%;
}
.checkout form .container .box3 .delivery_options .item .val {
  font-size: 14px;
  font-weight: 700;
  line-height: 180%;
}
.checkout form .container .box3 .delivery_options .item .val.v1 {
  color: #0c73fe;
}
.checkout form .container .box3 .delivery_options .item .val.v2 {
  color: #0c9300;
}
.checkout form .container .box3 .delivery_options .item .val.v3 {
  color: #000000;
}
.checkout form .container .message {
  display: none;
}
.checkout form .right_side {
  width: calc(34% - 10px);
  padding-bottom: 55px;
}
.checkout form .right_side .to_pay {
  border-radius: 8px;
  border: 2px solid #0c73fe;
  -webkit-box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.2);
  padding: 26px 20px 0;
  position: sticky;
  top: 20px;
}
.checkout form .right_side .to_pay h2 {
  margin-bottom: 28px;
}
.checkout form .right_side .to_pay .row {
  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;
  margin-bottom: 24px;
}
.checkout form .right_side .to_pay .row:last-child {
  margin: 0;
}
.checkout form .right_side .to_pay .row h6 {
  font-size: 14px;
  font-weight: 700;
  line-height: 180%;
}
.checkout form .right_side .to_pay .row h6.green {
  color: #0c9300;
}
.checkout form .right_side .to_pay label {
  cursor: pointer;
}
.checkout form .right_side .to_pay label input {
  display: none;
}
.checkout form .right_side .to_pay label input + p {
  margin-top: 28px;
  border-top: 1px solid #ebebeb;
  padding: 20px 0 50px 32px;
  position: relative;
}
.checkout form .right_side .to_pay label input + p::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  background: url("../img/checkbox1.svg");
}
.checkout form .right_side .to_pay label input:checked + p::before {
  background: url("../img/checkbox2.svg");
}
.checkout form .right_side .to_pay button {
  width: calc(100% - 40px);
  position: absolute;
  top: calc(100% - 5px);
}
.checkout form .offer {
  width: calc(66% - 10px);
  border-radius: 4px;
  border: 1px solid #858585;
  padding: 38px 20px 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  font-size: 13px;
  line-height: 160%;
  font-weight: 400;
}
.checkout form .offer span {
  padding: 0 4px;
  background-color: #fff;
  position: absolute;
  top: -11px;
  left: 12px;
}
.checkout form .offer ul {
  margin-left: 16px;
}
.checkout.confirm .title {
  color: #0c9300;
  margin-bottom: 8px;
}
.checkout.confirm .number {
  display: block;
}
.checkout.confirm form .container .box1 .item .management p {
  margin-bottom: 20px;
}
.checkout.confirm form .container .box2,
.checkout.confirm form .container .box3 {
  display: none;
}
.checkout.confirm form .container .message {
  display: block;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #0c73fe;
  background: rgba(12, 115, 254, 0.1);
}
.checkout.confirm form .container .message p {
  padding-left: 32px;
  position: relative;
}
.checkout.confirm form .container .message p::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  background: url("../img/info.svg");
}
.checkout.confirm form .right_side label,
.checkout.confirm form .right_side button {
  display: none;
}
.checkout.confirm form .offer {
  display: none;
}

@media (max-width: 1050px) {
  .checkout form {
    gap: 54px;
  }
  .checkout form .container,
  .checkout form .right_side,
  .checkout form .offer {
    max-width: 100%;
    width: 100%;
  }
  .checkout form .container {
    gap: 54px;
  }
  .checkout form .container .box1 .item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 12px;
  }
  .checkout form .container .box1 .item .img {
    margin-right: 16px;
  }
  .checkout form .container .box1 .item .info {
    width: calc(100% - 140px);
  }
  .checkout form .container .box1 .item .delete {
    margin: 0 0 0 8px;
  }
  .checkout form .container .box1 .item .price,
  .checkout form .container .box1 .item .sum {
    margin: 0;
  }
  .checkout form .right_side {
    padding-bottom: 0;
  }
  .checkout form .right_side .to_pay {
    padding: 26px 20px 20px;
  }
  .checkout form .right_side .to_pay label input {
    display: none;
  }
  .checkout form .right_side .to_pay label input + p {
    margin-top: 28px;
    border-top: 1px solid #ebebeb;
    padding: 20px 0 20px 32px;
  }
  .checkout form .right_side .to_pay button {
    position: relative;
    top: 0;
    width: 100%;
  }
}
@media (max-width: 740px) {
  .checkout form .container .box3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 54px;
  }
  .checkout form .container .box3 .delivery_options .item {
    gap: 15px;
  }
}
@media (max-width: 700px) {
  .checkout form .container .box1 .item .left,
  .checkout form .container .box1 .item .right {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .checkout form .container .box1 .item .left {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px 0;
  }
  .checkout form .container .box2 h3 {
    margin-bottom: 24px;
  }
  .checkout form .container .box2 .role_selection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
  }
  .checkout form .container .box2 .role_selection label input + p {
    padding: 12px;
  }
  .checkout form .container .box2 .fields .wrappage {
    width: 100%;
  }
  .checkout form .container .box2 .fields .wrappage.w51 {
    width: 100%;
  }
  .checkout form .container .box2 .fields .wrappage.w25 {
    width: calc(50% - 10px);
  }
}
/*****  порівняння *****/
.compare {
  padding: 30px 0;
}
.compare .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 18px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  margin-bottom: 60px;
}
.compare .title button {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  color: #0c73fe;
}
.compare .title button:hover {
  color: #003083;
}
.compare .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid #ebebeb;
}
.compare .head h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
.compare .head button {
  border-radius: 8px;
  border: 1px solid #6a6a6a;
  padding: 6px 16px;
  font-size: 13px;
  line-height: 160%;
  background: rgba(144, 144, 144, 0.1);
}
.compare .head button.on {
  border: 1px solid #0c73fe;
  background-color: #0c73fe;
  color: #fff;
}
.compare .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: auto;
  border: 1px solid #ebebeb;
  border-top: 0;
}
.compare .cont .compare_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1px;
  width: 100%;
  background-color: #ebebeb;
}
.compare .cont .compare_block .compare_item {
  width: clamp(316px, 33.3333333333%, 440px);
}
.compare .cont .compare_block .compare_item .card {
  max-width: 100%;
  width: 100%;
  min-height: 496px;
  border-top: 0;
  border-right: 0;
  border-left: 0;
}
.compare .cont .compare_block .compare_item .property {
  padding: 16px 12px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
}
.compare .cont .compare_block .compare_item .property:hover {
  background-color: #ebebeb;
}
.compare .cont .compare_block .compare_item .property p {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.compare .cont .compare_block .compare_item .property p:nth-child(1) {
  font-size: 14px;
  line-height: 180%;
  font-weight: 400;
  margin-bottom: 8px;
  color: #6a6a6a;
}
.compare .cont .compare_block .compare_item .property p:nth-child(2) {
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
}
.compare .cont .compare_block .compare_item .property .cloud {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 95%;
  border-radius: 5px;
  background-color: #0c73fe;
  color: #fff;
  padding: 16px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.compare .cont .compare_block .compare_item .property .cloud::after {
  content: "";
  border: 10px solid transparent;
  border-top: 10px solid #0c73fe;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 6px);
}

@media (max-width: 550px) {
  .compare .title {
    margin-bottom: 24px;
  }
  .compare .head {
    padding: 20px 12px;
  }
  .compare .head h5 {
    display: none;
  }
  .compare .cont .compare_block .compare_item {
    width: clamp(235px, 33.3333333333%, 440px);
  }
}
/*****  профіль *****/
.profile {
  padding: 16px 0 30px;
}
.profile .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.profile .head h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
.profile .head h5.name {
  width: 315px;
  padding-left: 28px;
  position: relative;
}
.profile .head h5.name::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  background: url("../img/profile.svg");
}
.profile .head .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  width: 565px;
}
.profile .head .info div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.profile .head .info div h6 {
  font-size: 14px;
  font-weight: 700;
  line-height: 180%;
}
.profile .head .info .btn {
  padding: 9px;
  max-width: 297px;
  width: 100%;
  border-radius: 4px;
  font-size: 16px;
}
.profile .head .clear_all {
  border: 1px solid #7b7b7b;
  color: #7b7b7b;
  margin-left: auto;
}
.profile .head .clear_all svg {
  fill: #7b7b7b;
}
.profile .head .clear_all:hover {
  border: 1px solid #282828;
  color: #282828;
  background-color: #fff;
}
.profile .head .clear_all:hover svg {
  fill: #282828;
}
.profile .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.profile .cont .side_bar {
  width: 315px;
  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;
}
.profile .cont .side_bar a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
}
.profile .cont .side_bar a svg {
  fill: #282828;
}
.profile .cont .side_bar a:hover,
.profile .cont .side_bar a.on {
  color: #0c73fe;
}
.profile .cont .side_bar a:hover svg,
.profile .cont .side_bar a.on svg {
  fill: #0c73fe;
}
.profile .cont .pages {
  width: calc(100% - 335px);
}
.profile .cont .pages .in_cart .item {
  padding: 20px 0;
  border-bottom: 1px solid #ebebeb;
  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;
}
.profile .cont .pages .in_cart .item .img {
  width: 92px;
  height: 92px;
  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: #f7f7f7;
}
.profile .cont .pages .in_cart .item .img img {
  max-width: 100%;
  max-height: 100%;
}
.profile .cont .pages .in_cart .item .info {
  width: 33%;
  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;
}
.profile .cont .pages .in_cart .item .info a {
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  color: #0c73fe;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  line-clamp: 2;
  box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.profile .cont .pages .in_cart .item p.p3 {
  display: none;
}
.profile .cont .pages .in_cart .item .price .old {
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
  text-decoration: line-through;
}
.profile .cont .pages .in_cart .item .price .present {
  font-size: 14px;
  font-weight: 700;
  line-height: 180%;
}
.profile .cont .pages .in_cart .item .delete svg {
  fill: #ebebeb;
}
.profile .cont .pages .in_cart .item .delete:hover svg {
  fill: #282828;
}
.profile .cont .pages .in_cart .item:first-child {
  padding: 0 0 20px;
}
.profile .cont .pages .in_cart .total {
  padding-top: 20px;
  border-top: 1px solid #0c73fe;
  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: end;
  -ms-flex-align: end;
  align-items: end;
}
.profile .cont .pages .in_cart .total div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 12px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 0 24px;
}
.profile .cont .pages .in_cart .total div h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
.profile .cont .pages .in_cart .total button {
  max-width: 387px;
  width: 100%;
}
.profile .cont .pages .my_orders .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  padding: 12px;
  border: 1px solid #ebebeb;
  border-bottom: 0;
}
.profile .cont .pages .my_orders .item:hover {
  background-color: #f2f3f7;
}
.profile .cont .pages .my_orders .item p {
  width: 100px;
}
.profile .cont .pages .my_orders .item p.status {
  margin-right: auto;
  padding-left: 18px;
  position: relative;
}
.profile .cont .pages .my_orders .item p.status::before {
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  border: 4px solid #fff;
  background-color: #0c73fe;
  position: absolute;
  left: 0;
  top: 2px;
}
.profile .cont .pages .my_orders .item p.status.v2::before {
  background-color: #ea4335;
}
.profile .cont .pages .my_orders .item .img {
  width: 48px;
  height: 24px;
  padding: 0 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;
}
.profile .cont .pages .my_orders .item .img img {
  max-width: 100%;
  max-height: 100%;
}
.profile .cont .pages .order_detail .item {
  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: 10px 0;
  border-bottom: 1px solid #ebebeb;
}
.profile .cont .pages .order_detail .item .img {
  width: 92px;
  height: 92px;
  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;
}
.profile .cont .pages .order_detail .item .img img {
  max-width: 100%;
  max-height: 100%;
}
.profile .cont .pages .order_detail .item .info {
  width: 33%;
  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;
}
.profile .cont .pages .order_detail .item .info a {
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  color: #0c73fe;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  line-clamp: 2;
  box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.profile .cont .pages .order_detail .item .price,
.profile .cont .pages .order_detail .item .management,
.profile .cont .pages .order_detail .item .sum {
  width: 100px;
  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: end;
  -ms-flex-align: end;
  align-items: end;
}
.profile .cont .pages .order_detail .item .price h6,
.profile .cont .pages .order_detail .item .management h6,
.profile .cont .pages .order_detail .item .sum h6 {
  font-size: 14px;
  font-weight: 700;
  line-height: 180%;
}
.profile .cont .pages .order_detail .total {
  padding-top: 10px;
  border-top: 1px solid #0c73fe;
  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;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.profile .cont .pages .order_detail .total h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
.profile .cont .pages .order_detail .total .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.profile .cont .pages .order_detail .total .text div {
  width: 100px;
}
.profile .cont .pages .order_detail .total .text div p {
  color: #7b7b7b;
  text-align: right;
}
.profile .cont .pages .order_detail .total .text div h6 {
  text-align: right;
}
.profile .cont .pages .order_detail .total button {
  max-width: 387px;
  width: 100%;
}
.profile .cont .pages .chosen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.profile .cont .pages .chosen .card {
  max-width: 100%;
  width: 25%;
}

@media (max-width: 1320px) {
  .profile .cont .pages .my_orders .item .img {
    display: none;
  }
}
@media (max-width: 1250px) {
  .profile .cont .pages .chosen .card {
    width: 33.33%;
  }
}
@media (max-width: 1050px) {
  .profile .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .profile .cont .side_bar,
  .profile .cont .pages {
    width: 100%;
  }
  .profile .cont .pages .chosen .card {
    width: 25%;
  }
}
@media (max-width: 1100px) {
  .profile .head .info {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }
}
@media (max-width: 950px) {
  .profile .cont .pages .chosen .card {
    width: 33.33%;
  }
}
@media (max-width: 710px) {
  .profile .cont .pages .in_cart .item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .profile .cont .pages .in_cart .item p.p3 {
    display: block;
    margin-bottom: 16px;
  }
  .profile .cont .pages .in_cart .item .info {
    width: calc(100% - 148px);
  }
  .profile .cont .pages .in_cart .item .price,
  .profile .cont .pages .in_cart .item .management,
  .profile .cont .pages .in_cart .item .sum {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
  }
  .profile .cont .pages .order_detail .item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px 0;
  }
  .profile .cont .pages .order_detail .item .info {
    width: calc(100% - 108px);
  }
  .profile .cont .pages .order_detail .item .price,
  .profile .cont .pages .order_detail .item .management,
  .profile .cont .pages .order_detail .item .sum {
    width: calc(33.33% - 16px);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .profile .cont .pages .chosen .card {
    width: 50%;
  }
}
@media (max-width: 550px) {
  .profile .head .clear_all {
    margin: 0;
  }
  .profile .cont .pages .my_orders .item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .profile .cont .pages .my_orders .item p {
    width: calc(50% - 12px);
  }
  .profile .cont .pages .chosen .card {
    width: 100%;
  }
}
@media (max-width: 513px) {
  .profile .head .info {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
}
/*****  акції *****/
.promo {
  padding: 16px 0 30px;
}
.promo h1 {
  margin-bottom: 40px;
}
.promo .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  max-width: 985px;
  width: 100%;
  margin: 0 auto;
}
.promo .cont .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.promo .cont .item .img {
  width: 50%;
}
.promo .cont .item .img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.promo .cont .item .text {
  width: 50%;
  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;
  gap: 20px;
  color: #fff;
  background: url("../img/promo_fond.svg") no-repeat 100% 100% #001945;
}
.promo .cont .item .text h1 {
  background: -o-linear-gradient(343deg, #4ef001 0%, #0c73fe 100%);
  background: linear-gradient(107deg, #4ef001 0%, #0c73fe 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
.promo .cont .item .text p {
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
}
.promo .cont .item .text h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
.promo .cont .item .text .btn {
  width: 100%;
  margin-top: auto;
}
.promo .cont .item .archival {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(133, 133, 133, 0.5);
}
.promo .cont .item .archival span {
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: #858585;
  font-size: 13px;
  font-weight: 700;
  line-height: 160%;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
}

@media (max-width: 650px) {
  .promo h1 {
    margin-bottom: 20px;
  }
  .promo .cont .item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .promo .cont .item .img {
    width: 100%;
    height: 200px;
  }
  .promo .cont .item .text {
    width: 100%;
    padding: 20px;
  }
}
/*****  акція інфо *****/
.promo_info {
  padding: 16px 0 30px;
}
.promo_info .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.promo_info .head .pict {
  width: calc(50% - 10px);
  height: 230px;
  padding: 48px;
  border-radius: 8px;
  background: url("../img/promo_fond.svg") no-repeat 100% 100% #001945;
}
.promo_info .head .pict h1 {
  background: -o-linear-gradient(343deg, #4ef001 0%, #0c73fe 100%);
  background: linear-gradient(107deg, #4ef001 0%, #0c73fe 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.promo_info .head .text {
  width: calc(50% - 10px);
}
.promo_info .head .text h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
.promo_info .head .text p {
  font-size: 24px;
  font-weight: 300;
  line-height: 135%;
  margin-top: 24px;
}
.promo_info .head:hover .text {
  color: #0c73fe;
}
.promo_info .promo_goods .top {
  margin-top: 40px;
  padding: 12px;
  border: 1px solid #ebebeb;
  border-bottom: 0;
}
.promo_info .promo_goods .top select {
  display: block;
  font-family: Inter;
  margin-left: auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #ebebeb;
  width: 290px;
}
.promo_info .promo_goods .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.promo_info .promo_goods .items .card {
  max-width: 100%;
  width: 20%;
}

@media (max-width: 1200px) {
  .promo_info .promo_goods .items .card {
    width: 25%;
  }
}
@media (max-width: 1000px) {
  .promo_info .promo_goods .items .card {
    width: 33.33%;
  }
}
@media (max-width: 768px) {
  .promo_info .promo_goods .items .card {
    width: 50%;
  }
}
@media (max-width: 650px) {
  .promo_info .head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .promo_info .head .pict {
    width: 100%;
    padding: 20px;
  }
  .promo_info .head .text {
    width: 100%;
  }
  .promo_info .head .text p {
    font-size: 15px;
    line-height: normal;
  }
}
@media (max-width: 530px) {
  .promo_info .promo_goods .items .card {
    width: 100%;
  }
}
/*****  акція артикль *****/
.promo_article {
  padding: 16px 0 30px;
}
.promo_article .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.promo_article .text {
  max-width: 985px;
  width: 100%;
  margin: 40px auto 0;
}
.promo_article .text h1 {
  margin-bottom: 40px;
}
.promo_article .text p {
  font-size: 14px;
  line-height: 180%;
  font-weight: 400;
}

/*****  about *****/
.about {
  padding: 16px 0 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 315px 20px auto;
  grid-template-columns: 315px auto;
  gap: 20px;
}
.about .nav {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  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;
}
.about .nav .head {
  display: none;
}
.about .nav .drop {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.about .nav .drop .links {
  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;
}
.about .nav a.on,
.about .nav a:hover {
  color: #0c73fe;
}
.about .cont {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 4;
  grid-row: 1/5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
.about .cont h1 {
  font-size: 32px;
}
.about .cont .unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.about .cont .unit .banner {
  height: 350px;
  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;
  background: url("../img/about/reger_fond.svg") no-repeat 0% 0%,
    url("../img/about/reger_fond2.svg") no-repeat 100% 100% #001945;
}
.about .cont .unit .certificate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
  margin: 0 auto;
}
.about .cont .unit .w100 {
  width: 100%;
}
.about .cont .unit .w50 {
  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;
  width: calc(50% - 12px);
}
.about .cont .unit p {
  font-size: 14px;
  line-height: 180%;
  font-weight: 400;
  width: 100%;
}
.about .cont .unit ul {
  margin-left: 20px;
}
.about .cont .unit ul li a {
  text-decoration: underline;
}
.about .cont .unit ul li p {
  font-size: 13px;
  line-height: 160%;
  font-weight: 400;
}
.about .cont .unit .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;
}
.about .cont .unit .img img {
  width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about .cont .unit .video {
  width: 100%;
  height: 555px;
}
.about .cont .unit .video iframe {
  width: 100%;
  height: 100%;
}
.about .cont .unit .contacts {
  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;
}
.about .cont .unit .contacts span {
  font-weight: 700;
}
.about .cont .unit .contacts a {
  text-decoration: underline;
}
.about .cont .unit .contacts a:hover {
  color: #0c73fe;
}
.about .cont .unit .map {
  width: 100%;
  height: 470px;
}
.about .cont .unit .map iframe {
  width: 100%;
  height: 100%;
}
.about .cont .unit .install_banner {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 90%;
  object-position: 90%;
}
.about .cont .unit .object_types {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 20px;
}
.about .cont .unit .object_types .item {
  width: calc(33.33% - 14px);
}
.about .cont .unit .object_types .item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
}
.about .cont .unit .what_we_offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
}
.about .cont .unit .what_we_offer .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.about .cont .unit .what_we_offer .item img {
  display: block;
  width: 315px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  border-radius: 8px;
}
.about .cont .unit .what_we_offer .item .text {
  width: calc(100% - 335px);
}
.about .cont .unit .what_we_offer .item .text h6 {
  margin-bottom: 16px;
}
.about .cont .article_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.about .cont .article_item .img {
  width: 315px;
  border-radius: 8px;
  overflow: hidden;
  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;
}
.about .cont .article_item .img img {
  display: block;
  border-radius: 8px;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.about .cont .article_item .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(100% - 335px);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
}
.about .cont .article_item .text p {
  font-size: 14px;
  line-height: 180%;
  font-weight: 400;
}
.about .cont .article_item .text p:nth-child(2) {
  color: #6a6a6a;
}
.about .cont .article_item .text p:not(:nth-child(2)) {
  margin: 16px 0;
}
.about .cont .article_item .text a {
  color: #0c73fe;
  font-size: 14px;
}
.about .cont .article_item .text a:hover {
  color: #001945;
}
.about .consultation {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}

@media (max-width: 860px) {
  .about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
  }
  .about .nav {
    padding: 8px;
    border-radius: 4px;
    border: 2px solid #f2f3f7;
  }
  .about .nav.v2 {
    padding: 0 0 30px 0;
    border: 0;
    border-bottom: 2px solid #f2f3f7;
  }
  .about .nav .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;
    cursor: pointer;
  }
  .about .nav .head .checkmark {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: #f2f3f7;
    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;
  }
  .about .nav .head .checkmark.on {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .about .nav .drop {
    display: none;
    padding: 8px 0;
  }
}
@media (max-width: 650px) {
  .about .cont {
    gap: 32px;
  }
  .about .cont h1 {
    font-size: 24px;
  }
  .about .cont .unit .w50 {
    width: 100%;
  }
  .about .cont .unit .video {
    height: 300px;
  }
  .about .cont .unit .object_types {
    gap: 20px;
  }
  .about .cont .unit .object_types .item {
    width: 100%;
  }
  .about .cont .unit .what_we_offer .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about .cont .unit .what_we_offer .item .text {
    width: 100%;
  }
  .about .cont .article_item .img {
    width: 100%;
  }
  .about .cont .article_item .text {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .about .cont {
    gap: 32px;
  }
  .about .cont .unit .banner {
    height: 293px;
    background: url("../img/about/reger_fond.svg") no-repeat -30% -500%,
      url("../img/about/reger_fond2.svg") no-repeat 200% 200% #001945;
  }
  .about .cont .unit .banner img {
    width: 226px;
  }
  .about .cont .unit .certificate {
    gap: 38px;
  }
  .about .cont .unit .certificate img {
    width: 211px;
  }
  .about .cont .unit .contacts {
    gap: 16px;
  }
  .about .cont .unit .contacts p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 400px) {
  .about .cont {
    gap: 32px;
  }
  .about .cont .unit .video {
    height: 200px;
  }
}
.consultation {
  width: 315px;
  padding: 40px 15px;
  border-radius: 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;
  background-color: #f2f3f7;
}
.consultation a {
  font-size: 14px;
  font-weight: 700;
  line-height: 180%;
}
.consultation a:hover {
  color: #0c73fe;
}
.consultation a.mail {
  margin-top: 8px;
  color: #0c73fe;
}

.form {
  width: 100%;
  border-radius: 8px;
  background-color: #f2f3f7;
  padding: 36px 24px 24px;
}
.form .title {
  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;
}
.form .title img {
  width: 24px;
}
.form .fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 33px 0 24px;
  gap: 24px 20px;
}
.form .fields .wrap {
  position: relative;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #858585;
  background-color: #fff;
}
.form .fields .wrap.w33 {
  width: calc(33.33% - 14px);
}
.form .fields .wrap span {
  font-size: 13px;
  line-height: 16px;
  position: absolute;
  top: -9px;
  left: 12px;
  padding: 0 4px;
  background-color: #fff;
}
.form .fields .wrap input,
.form .fields .wrap textarea {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  line-height: normal;
  resize: none;
}
.form .fields input[type="submit"] {
  max-width: 287px;
  width: 100%;
}

@media (max-width: 600px) {
  .form {
    padding: 24px 20px;
  }
  .form .fields {
    gap: 20px;
    margin: 24px 0;
  }
  .form .fields .wrap.w33 {
    width: 100%;
  }
}
/*****  Реалізовані проекти *****/
.projects {
  padding: 40px 0 30px;
}
.projects .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 40px;
}
.projects .cont .item {
  width: 33.33%;
  border: 1px solid #ebebeb;
  padding: 24px;
}
.projects .cont .item:hover {
  border: 1px solid #0c73fe;
  -webkit-box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.2);
}
.projects .cont .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;
}
.projects .cont .item .img img {
  max-width: 100%;
  max-height: 100%;
}
.projects .cont .item .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: 12px;
  margin-top: 24px;
}
.projects .cont .item .text .p3 {
  color: #7b7b7b;
}
.projects .cont .item .text h3 {
  color: #0c73fe;
}

@media (max-width: 850px) {
  .projects .cont .item {
    width: 50%;
  }
}
@media (max-width: 560px) {
  .projects .cont .item {
    width: 100%;
    padding: 20px;
  }
  .projects .cont .item .text {
    margin-top: 20px;
  }
}
/*****  Проект *****/
.project {
  padding: 15px 0 30px;
  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: 985px;
  width: 100%;
  margin: 0 auto;
}
.project .project_banner {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 90%;
  object-position: 90%;
}
.project .unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.project .unit .w50 {
  width: calc(50% - 12px);
}
.project .unit li {
  margin-left: 20px;
}
.project .unit img {
  width: 100%;
}
.project .unit .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: 12px;
}
.project .video {
  width: 100%;
}
.project .video h3 {
  margin-bottom: 16px;
}
.project .video iframe {
  width: 100%;
  height: 555px;
}

.gallery {
  padding: 0 0 30px;
}
.gallery h2 {
  max-width: 985px;
  width: 100%;
  margin: 0 auto 24px;
}
.gallery .block {
  padding: 0 60px;
  position: relative;
}
.gallery .slider {
  max-width: 1200px;
  width: 100%;
}
.gallery .slider .item {
  width: 300px;
  height: 300px;
}
.gallery .slider .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery .prev {
  position: absolute;
  top: calc(50% - 20px);
  left: 12px;
}
.gallery .next {
  position: absolute;
  top: calc(50% - 20px);
  right: 12px;
}

@media (max-width: 768px) {
  .gallery .block {
    padding: 0;
  }
  .gallery .slider .item {
    margin-right: 16px;
  }
  .gallery .slider .slick-dots {
    margin-top: 20px;
  }
  .gallery .next,
  .gallery .prev {
    display: none;
  }
}
@media (max-width: 650px) {
  .project .project_banner {
    height: 200px;
  }
  .project .unit .w50 {
    width: 100%;
  }
  .project .video iframe {
    height: 200px;
  }
}
.services {
  padding: 40px 0 30px;
}
.services .introductory_text {
  margin: 40px 0;
}
.services .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.services .cont .item {
  width: 25%;
  max-height: 400px;
  border: 1px solid #ebebeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.services .cont .item:hover {
  border: 1px solid #0c73fe;
  -webkit-box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.2);
}
.services .cont .item:hover h6 {
  color: #0c73fe;
}
.services .cont .item:hover p::after {
  right: -10px;
}
.services .cont .item .img {
  width: 100%;
}
.services .cont .item .img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.services .cont .item h6 {
  margin: 24px;
}
.services .cont .item p {
  margin: auto 24px 24px auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-left: auto;
  padding-right: 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  color: #0c73fe;
  position: relative;
}
.services .cont .item p::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/arrow_blue.svg");
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

@media (max-width: 1000px) {
  .services .cont .item {
    width: 33.33%;
  }
}
@media (max-width: 700px) {
  .services .cont .item {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .services .cont .item {
    width: 100%;
  }
}
.service {
  padding: 15px 0 30px;
}
.service .cont {
  max-width: 985px;
  width: 100%;
  margin: 0 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;
}
.service .cont .unit {
  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;
}
.service .cont .unit img {
  width: 100%;
}
.service .cont .unit p {
  font-size: 14px;
  line-height: 180%;
  font-weight: 400;
}
.service .cont .unit ul {
  -moz-columns: 2;
  -webkit-columns: 2;
  columns: 2;
  -moz-column-gap: 20px;
  -webkit-column-gap: 20px;
  column-gap: 20px;
}
.service .cont .unit ul li {
  margin: 0 0 5px 16px;
}
.service .cont .unit iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.service .cont .unit .form img {
  width: 30px;
}

@media (max-width: 650px) {
  .service .cont .unit ul {
    -moz-columns: 1;
    -webkit-columns: 1;
    columns: 1;
  }
}
.error {
  background-color: #001945;
  padding: 24px 20px 60px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.error .cont {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  padding: 236px 0 0;
  color: #fff;
  text-align: center;
  background: url("../img/404.svg") no-repeat 50% 0%;
  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;
}
.error .cont a {
  max-width: 387px;
  width: 100%;
}

@media (max-width: 1165px) {
  .error {
    margin: 0 -20px;
    width: calc(100% + 40px);
  }
}
/*****  футер *****/
footer {
  max-width: 1440px;
  width: 100%;
  margin: auto auto 0;
  padding-top: 30px;
}
footer .blurb {
  background-color: #f2f3f7;
  padding: 0 20px;
}
footer .blurb .block {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}
footer .blurb .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: 16px;
  width: calc(25% - 15px);
}
footer .blurb .block .item img {
  width: 24px;
}
footer .main {
  padding: 60px 20px 185px;
  background: url("../img/footer/footer_fond.svg") space #001945 100% 100%;
}
footer .main .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 60px;
  border-bottom: 1px solid #012a70;
}
footer .main .cont .item {
  width: calc(25% - 15px);
}
footer .main .cont .item .logo {
  max-width: 297px;
  width: 100%;
  margin-bottom: 24px;
  display: block;
}
footer .main .cont .item .logo img {
  width: 94.5%;
}
footer .main .cont .item .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
footer .main .cont .item .social a {
  display: block;
  width: 24px;
}
footer .main .cont .item .social a svg {
  fill: #fff;
}
footer .main .cont .item .social a:hover svg {
  fill: #0c73fe;
}
footer .main .cont .item h3 {
  color: #fff;
  margin-bottom: 12px;
}
footer .main .cont .item .tel {
  font-size: 16px;
  line-height: 160%;
  font-weight: 700;
  color: #0c73fe;
  margin-bottom: 20px;
  display: block;
}
footer .main .cont .item .tel:hover {
  color: #fff;
}
footer .main .cont .item .link {
  display: block;
  font-size: 13px;
  line-height: 300%;
  color: #fff;
  margin-bottom: 12px;
}
footer .main .cont .item .link:hover {
  color: #0c73fe;
}
footer .main .cont .item .link:last-child {
  margin-bottom: 0;
}
footer .main .autors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  line-height: 160%;
}
footer .main .autors a {
  display: block;
  color: #fff;
}
footer .main .autors a:hover {
  color: #0c73fe;
}
footer .main .autors p {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
}

@media (max-width: 1080px) {
  footer .blurb .block .item {
    width: calc(50% - 10px);
  }
  footer .main {
    background: url("../img/footer/footer_fond.svg") no-repeat #001945 0% 100%;
  }
  footer .main .cont .item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 550px) {
  footer .main .cont .item {
    width: 100%;
  }
}
@media (max-width: 400px) {
  footer .blurb .block .item {
    width: 100%;
  }
}
