/* Typography. */

@font-face {
  font-family: 'Averta CY';
  src: url('../fonts/Averta_Cyrillic_ExtraBold.otf') format('opentype');
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'Averta CY';
  src: url('../fonts/Averta_Cyrillic_Bold.otf') format('opentype');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Averta CY';
  src: url('../fonts/Averta_Cyrillic_SemiBold.otf') format('opentype');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Averta CY';
  src: url('../fonts/Averta_Cyrillic_Regular.otf') format('opentype');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Averta CY';
  src: url('../fonts/Averta_Cyrillic_Light.otf') format('opentype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Circe';
  src: url("../fonts/CirceRounded-ExtraLight.ttf")format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Circe';
  src: url("../fonts/CirceRounded-Regular.ttf")format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

/* Typography. */

/* Root. */

:root {
  --scroll: 0px;
  /* icon. */
  --icon_size: 24px;
  /* icon. */
  /* font-size. */
  --body: 15px;
  --family: 'Circe', sans-serif;
  --font2: 'Averta CY', sans-serif;
  --font3: 'Mulish', sans-serif;
  /* font-size. */
  /* color. */
  --color: var(--black);
  --bg: #F5F5F5;
  --white: #fff;
  --black: #000;
 /* --primary: #4BBE01;
  --primary: #00b400; */
  --primary: #019F01;
  /* --primary: #23272e; */
  --header_color: #23272e;
  --accent: #F8B200;
  --dark: #019F01;
  --gray: #909090;
  --red: #E11919;
  /* color. */
  /* btn.*/
  --btn_height: 55px;
  --btn_inner: 18px;
  --btn_color: var(--white);
  --btn_font: var(--body);
  --btn_bg: var(--primary);
  --btn_bd_size: 1px;
  --btn_bd_color: var(--primary);
  --btn_shadow: var(--primary);
  --btn__lh: 0px;
  /* btn.*/
  /* inner. */
  --inner_g: ;
  --catalog_size: 348px;
  --bone: 16px;
  --bone_w: 1288px;
  --bone_size: max((100vw - var(--bone_w) - var(--scroll)) / 2, var(--bone));
  /* inner. */
  /* grid. */
  --grid_2: 2;
  --grid_3: 3;
  --grid_4: 4;
  --light_hover: #00B100;
  /* grid. */
}

/* Root. */

/* Null. */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--color);
}

html {
  display: block;
}

body {
  margin: 0;
  padding: 0;
  color: var(--color);
  font-size: var(--body);
  font-weight: 400;
  font-style: normal;
  line-height: 1.25;
  font-family: var(--family);
  background-color: var(--bg);
}

img,
svg {
  display: block;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

input,
button,
textarea {
  display: block;
  font-family: var(--family);
  background-color: transparent;
  border: 0 none;
  box-shadow: none;
  appearance: none;
  outline: none;
  resize: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--color);
  font-family: var(--family);
}

/* Null. */

/* Global. */

html.hidden {
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.bone {
  width: 100%;
  max-width: calc(var(--bone_w) + var(--bone) * 2);
  margin: 0 auto;
  padding: 0 var(--bone);
}

h1 {
  font-size: 25px;
  font-family: var(--font2);
  font-weight: 700;
}

h2 {
  font-size: 20px;
  font-family: var(--font2);
  font-weight: 700;
}

h3 {
  font-size: 22px;
  font-family: var(--font2);
  font-weight: 800;
}

h4 {
  font-size: 18px;
  font-family: var(--font2);
  font-weight: 600;
}

h5 {
  font-size: 15px;
  font-family: var(--font2);
  font-weight: 600;
}

.more {
  --icon_size: 20px;
  --color: var(--accent);
  position: relative;
  font-family: var(--font2);
  padding-right: 30px;
}

.more._primary {
  --color: var(--primary);
}

.more:before {
  right: 0;
  margin-top: 1px;
}

._home_cart_triger {
  display: none;
}

.arrow {
  --size: clamp(40px, 8vw,60px);
  position: fixed;
  left: var(--bone_size);
  bottom: 60px;
  width: var(--size);
  height: var(--size);
  box-shadow: 0px 20px 30px 0px rgba(75, 190, 1, 0.20);
  background-color: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  z-index: 99991;
  transition: background-color .43s, opacity .43s;
}

.arrow:not(.active) {
  visibility: hidden;
  opacity: 0;
  transition: background-color .43s, opacity .43s, visibility 0s .43s,;
}

.arrow:hover {
  background-color: var(--accent);
}

/* Global. */

/* Grid. Flex. */

[class*=__grid] {
  display: grid;
  grid-gap: var(--inner_g);
}

.__grid-twoo {
  grid-template-columns: repeat(var(--grid_2), 1fr);
}

.__grid-three {
  grid-template-columns: repeat(var(--grid_3), 1fr);
}

.__grid-four {
  grid-template-columns: repeat(var(--grid_4), 1fr);
}

[class*=__flex] {
  display: flex;
}

.__flex-align {
  align-items: center;
}

.__flex-start {
  align-items: flex-start;
  justify-content: space-between;
}

.__flex-end {
  align-items: flex-end;
  justify-content: space-between;
}

.__flex-center {
  align-items: center;
  justify-content: space-between;
}

/* Grid. Flex. */

/* Icon. */

[class*=__icon-] {
  position: relative;
}

[class*=__icon-]:before {
  content: '';
  position: absolute;
  top: calc(50% - var(--icon_size) / 2);
  width: var(--icon_size);
  height: var(--icon_size);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.__icon-arrow:before {
  background-image: url("../images/icon/arrow.svg");
}

.__icon-arrow_orange:before {
  background-image: url("../images/icon/arrow_orange.svg");
}

.__icon-back:before {
  background-image: url("../images/icon/back.svg");
}

.__icon-comment:before {
  background-image: url("../images/icon/comment.svg");
}

.__icon-more:before {
  background-image: url("../images/icon/more.svg");
}

.__icon-more_primary:before {
  background-image: url("../images/icon/more_primary.svg");
}

.__icon-star:before {
  background-image: url("../images/icon/star.svg");
}

/* Icon. */

/* Button. */

.__btn {
  --color: var(--btn_color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-gap: 12px;
  position: relative;
  min-width: min(var(--btn_w), 100%);
  height: var(--btn_height);
  padding: 0 var(--btn_inner);
  font-family: var(--font2);
  font-size: var(--btn_font);
  font-weight: 700;
  text-align: center;
  line-height: 1;
  background-color: var(--btn_bg);
  border: var(--btn_bd_size) solid var(--btn_bd_color);
  border-radius: 6px;
  cursor: pointer;
  transition: all .43s;
}

.__btn:not(._line):hover {
  background-color: #3F9C03;
  background-color: var(--light_hover);
  border-color: var(--light_hover);
}

.__btn[disabled] {
  --color: var(--white) !important;
  pointer-events: none;
  background-color: #DADADA !important;
  border-color: #DADADA !important;
}

.__btn._line:not(:hover) {
  --color: var(--btn_bg);
  --btn_shadow: var(--btn_bd_color);
  background-color: transparent;
}

.__btn._line._primary {
  --color: var(--primary);
  --btn_bd_color: var(--primary);
  --btn_shadow: var(--primary);
  background-color: transparent;
}

.__btn._dark {
  --btn_bg: var(--dark);
  --btn_bd_color: var(--dark);
  --btn_shadow: var(--dark);
}

.__btn._accent {
  --btn_bg: var(--accent);
  --btn_bd_color: var(--accent);
  --btn_shadow: var(--accent);
}

.__btn._blue,
.__btn._google {
  --btn_bg: #3262A2;
  --btn_bd_color: #3262A2 !important;
  --btn_shadow: #3262A2;
}

.__btn._silver {
  --color: var(--black);
  --btn_bg: #DADADA;
  --btn_bd_color: #DADADA !important;
  --btn_shadow: #DADADA;
}

.__btn._red {
  --btn_bg: var(--red);
  --btn_bd_color: var(--red);
  --btn_shadow: var(--red);
}

.__btn._google {
  --size: 40px;
}

.__btn._google img {
  position: absolute;
  top: calc(50% - var(--size) / 2);
  left: 20px;
  width: var(--size);
  height: var(--size);
}

.__btn rect,
.__btn path {
  transition: all .43s;
}

.__btn svg {
  --size: 18px;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
}

/* Button. */

/* Close. */

._close {
  --color: var(--black);
  --heigth: 2px;
  position: absolute;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
  transform: rotate(50grad);
  transition: opacity .43s;
}

._close:before,
._close:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: var(--heigth);
  margin-top: calc(var(--heigth) / 2);
  background-color: var(--color);
  border-radius: calc(var(--heigth) / 2);
  transition: background-color .43s;
}

._close:after {
  transform: rotate(100grad);
}

._close:hover {
  --color: var(--primary);
}

/* Close. */

/* Input. */

._input {
  display: block;
  position: relative;
}

input:not([type=checkbox], [type=radio], [type=submit], [type=range]),
textarea {
  width: 100%;
  min-height: var(--btn_height);
  color: #909090;
  padding: 0 16px;
  font-size: var(--body);
  font-family: var(--font2);
  text-overflow: ellipsis;
  border: 1px solid #DADADA;
  border-radius: 6px;
  transition: border-color .43s, color .43s;
}

textarea {
  height: 120px;
  padding-top: 16px;
}

input:not([type=checkbox], [type=radio], [type=submit], [type=range])::placeholder,
textarea::placeholder {
  color: #909090;
  text-overflow: ellipsis;
}

input:not([type=checkbox], [type=radio], [type=submit], [type=range]):hover,
input:not([type=checkbox], [type=radio], [type=submit], [type=range]):focus,
textarea:hover,
textarea:focus {
  color: var(--black);
  border-color: var(--black);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.__input_hidden {
  width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 none !important;
  opacity: 0;
  z-index: -1;
}

/* Input. */

/* Error. */

._error input,
._error textarea {
  --color: var(--red) !important;
  border-color: var(--red) !important;
}

._error input::placeholder,
._error textarea::placeholder {
  color: var(--red) !important;
}

._error .error_text {
  display: block;
}

.error_text {
  display: none;
  margin-top: 8px;
  color: var(--red);
  font-size: 11px;
  z-index: 1;
}

/* Error. */

/* Input radio and checkbox. */

input[type=checkbox] + p,
input[type=radio] + p {
  --size: 14px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  cursor: pointer;
}

input[type=checkbox] + p:before,
input[type=radio] + p:before {
  content: '';
  position: absolute;
  top: calc(50% - var(--size) / 2);
  left: 0;
  width: var(--size);
  height: var(--size);
  margin-top: -1px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 6px;
  border: 1px solid var(--gray);
  border-radius: 50%;
  cursor: pointer;
  transition: background .43s, border-color .43s;
}

input[type=checkbox]:not([readonly]):checked + p:before,
input[type=radio]:not([readonly]):checked + p:before {
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.25 1.38086L2.25 4.38086L0.75 2.88086' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Input radio and checkbox. */

/* Slider. */

/* Слайдер */

.slick-slider {
  /* slide inner. */
  --inner_slider-x: 0px;
  --inner_slider-y: 0px;
  --inner_slider-shadow: 0px;
  /* slide inner. */
  /* slide arrow. */
  --arrow-size: 25px;
  --arrow-icon_size: 11px;
  --arrow-ind: 0;
  /* slide arrow. */
  /* slide dot. */
  --dot-size: 12px;
  /* slide dot. */
  position: relative;
}

.slick-slider._all {
  overflow: hidden;
  margin: 0 calc(var(--bone_size) * -1);
}

.slick-slider._all .slick-list {
  overflow: hidden;
  padding: 0 var(--bone_size);
  margin: min(var(--inner_slider-y) * -1, var(--inner_slider-shadow) * -1) 0 !important;
}

/* Ограничивающая оболочка */

.slick-list {
  overflow: hidden;
  position: relative;
  /*	height: 100%;*/
  margin: min(var(--inner_slider-y) * -1, var(--inner_slider-shadow) * -1) min(var(--inner_slider-x) / -2, var(--inner_slider-shadow) * -1);
  padding: 0 max(var(--inner_slider-shadow) - var(--inner_slider-x) / 2, 0);
}

/* Лента слайдов */

.slick-track {
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  /*    height: 100%;*/
}

/* Слайд */

.slick-slide {
  outline: 0 !important;
  margin: var(--inner_slider-y) calc(var(--inner_slider-x) / 2);
}

/* Точки (pins) */

.slick-dots {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  grid-gap: 12px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  z-index: 2;
}

/* Стили точки. */

.slick-dots button {
  display: block;
  width: var(--dot-size);
  height: var(--dot-size);
  font-size: 0;
  border: 1px solid green;
  border-radius: 50%;
  cursor: pointer;
  transition: box-shadow .43s;
}

/* Hover на точку. */

.slick-dots button:hover {
  box-shadow: inset 0 0 0 var(--dot-size) green;
}

/* Активная точка. */

.slick-dots .slick-active button {
  box-shadow: inset 0 0 0 2px white, inset 0 0 0 var(--dot-size) green;
}

/* Стрелка. */

.slick-arrow {
  position: absolute;
  top: calc(50% - var(--arrow-size) / 2);
  left: var(--arrow-ind);
  width: var(--arrow-size);
  height: var(--arrow-size);
  font-size: 0;
  background-color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  z-index: 2;
  transition: transform .43s;
}

.slick-arrow:before {
  content: '';
  position: absolute;
  top: calc(50% - var(--arrow-icon_size) / 2);
  left: calc(50% - var(--arrow-icon_size) / 2);
  width: var(--arrow-icon_size);
  height: var(--arrow-icon_size);
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='11' viewBox='0 0 7 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.95 8.95625C6.325 9.31875 6.325 9.90625 5.9625 10.2813C5.775 10.4688 5.5375 10.5562 5.2875 10.5562C5.05 10.5562 4.8125 10.4688 4.6375 10.2813L0.275 5.94375C0.1 5.76875 0 5.53125 0 5.28125C0 5.03125 0.1 4.79375 0.275 4.61875L4.6375 0.28125C5 -0.09375 5.5875 -0.09375 5.9625 0.28125C6.325 0.64375 6.325 1.24375 5.95 1.60625L2.2625 5.28125L5.95 8.95625Z' fill='%234BBE01'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* Стрелка вправо. */

.slick-arrow.slick-next {
  left: auto;
  right: var(--arrow-ind);
}

.slick-arrow.slick-next:before {
  transform: rotate(200grad);
}

/* Стрелка hover. */

.slick-arrow:not(.slick-disabled):hover {
  transform: scale(1.2);
}

/* Slider. */

/* Select. */

._select {
  --selcet_arrow_size: 18px;
  --selcet_arrow_inner: 8px;
  --selcet_options_height: 160px;
  --selcet_inner_l: 8px;
  --selcet_inner_r: calc(var(--selcet_arrow_size) + var(--selcet_arrow_inner));
  --select_height: 35px;
  --selcet_bg: var(--white);
  --select_bd: var(--primary);
  --select_bdrs: 6px;
  --selcet_shadow: none;
  position: relative;
  height: var(--select_height);
}

._select._outline {
  --selcet_bg: var(--white);
}

._select._outline .current.active,
._select._outline .select_dropdown.active {
  border-color: var(--black);
}

._select._inactive select,
._select._inactive .current {
  cursor: no-drop;
  opacity: 0.3;
}

._select select,
._select .current {
  position: relative;
  display: block;
  width: 100%;
  height: var(--select_height);
  padding: 0 var(--selcet_inner_r) 0 var(--selcet_inner_l);
  line-height: var(--select_height);
  background-color: var(--selcet_bg);
  border: 1px solid var(--select_bd);
  border-radius: var(--select_bdrs);
  box-shadow: var(--selcet_shadow);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color .43s, color .43s;
}

._select select:hover,
._select .current:not(.active):hover {
  border-color: black;
}

._select .current:before {
  content: '';
  position: absolute;
  top: 50%;
  right: var(--selcet_arrow_inner);
  width: var(--selcet_arrow_size);
  height: var(--selcet_arrow_size);
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='19' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.9043 6.79639L9.65872 12.042L4.41309 6.79639' stroke='%23595B59' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate3d(0, -50%, 0px);
  transition: transform .43s;
  z-index: 1;
}

._select .current.active:before {
  transform: rotate(-200grad) translate3d(0, 50%, 0px);
}

.select_dropdown {
  overflow: hidden;
  position: relative;
  left: 0;
  right: 0;
  margin-top: 4px;
  font-size: var(--h4);
  background-color: var(--selcet_bg);
  border: 1px solid var(--select_bd);
  border-radius: var(--select_bdrs);
  z-index: 10;
  transition: opacity .43s, margin .43s, border .43s;
}

.select_dropdown:not(.active) {
  pointer-events: none;
  margin-top: 12px;
  opacity: 0;
}

.select_dropdown ul {
  overflow-y: scroll;
  margin-right: -40px;
  padding-right: calc(40px - var(--scroll));
  max-height: var(--selcet_options_height);
}

.select_dropdown li {
  overflow: hidden;
  padding: 6px var(--selcet_inner_r) 6px var(--selcet_inner_l);
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: background-color .23s, color .23s;
}

.select_dropdown li.disabled {
  opacity: 0.4;
  cursor: no-drop;
}

.select_dropdown li.focus:not(.disabled) {
  color: var(--white);
  background-color: var(--primary);
  cursor: pointer;
}

._selectselect.error {
  --select_bd: var(--red);
}

._selectselect.error select {
  --color: var(--red);
}

/* Select. */

/* Amount. */



.kamount input {
  flex-grow: 1;
  max-width: 80px;
  min-height: 36px;
  padding: 0;
  font-size: 20px;
  color: var(--black);
  text-align: center;
  background-color: transparent;
  border: 0 none;
  border-top: 1px solid #F5F5F5 !important;
  border-bottom: 1px solid #F5F5F5 !important;
  border-radius: 0;
}

.kamount_btn {
  --size: 36px;
  --icon_size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  background-color: #F5F5F5;
  border-radius: 6px 0 0 6px;
  cursor: pointer;
}

.kamount_btn.__add {
  border-radius: 0 6px 6px 0;
}

.kamount_btn:hover {
  --color: var(--mint);
}

.kamount_btn svg {
  width: var(--icon_size);
}

.kamount_btn path {
  transition: fill .43s;
}

/* Amount. */

/* Pagination. */



.pagination_btn {
  white-space: nowrap;
  text-align: center;
  margin-bottom: 16px;
}

.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 20px;
}

.pagination._end ul {
  justify-content: flex-end;
  grid-gap: 10px;
}

.pagination a {
  --bg: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .43s;
}

.pagination a._disabled {
  --bg: #DADADA;
  pointer-events: none;
}

.pagination a:hover {
  cursor: pointer;
  --bg: var(--accent);
  color: var(--accent);
}

.pagination li.active a {
  --color: #909090;
}

.pagination svg {
  --size: 25px;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
}

.pagination rect,
.pagination path {
  transition: all .43s;
}

.pagination ul .active{
	display: flex;
    align-items: center;
    justify-content: center; 
    width: 24px;
    height: 24px; 
    background-color: var(--accent);
    border-radius: 50%;
    line-height: 31px;
}
.pagination ul .active b{
    padding-top: 2px;
}

/* Pagination. */

/* Rate. */

.rate {
  grid-gap: 20px;
}

.rate_caption {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font2);
}

.rate_mask {
  display: flex;
  align-items: center;
  grid-gap: 16px;
  font-family: var(--font2);
}

.rate_mask span {
  display: block;
  margin-top: -2px;
}

.rate_mask_stars {
  position: relative;
  width: 144px;
  height: 25px;
  -webkit-clip-path: url(#rate-mask);
  clip-path: url(#rate-mask);
}

.rate_mask_stars:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #DADADA;
}

.rate_mask_stars:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: calc(var(--rate) * 20%);
  background-color: var(--accent);
}

.rate_mask svg {
  width: 0;
  height: 0;
}

.rate_small {
  --icon_size: 18px;
  position: relative;
  padding: 2px 6px 2px 26px;
  color: var(--gray);
  font-family: var(--font2);
  font-size: 13px;
  background: #F8F8F8;
  border-radius: 3px;
}

.rate_small:before {
  content: '';
  position: absolute;
  top: calc(50% - var(--icon_size) / 2);
  left: 4px;
  width: var(--icon_size);
  height: var(--icon_size);
  background-image: url("../images/icon/star.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.rate_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rate_wrapper label {
  position: relative;
  width: calc(var(--rate_size) + var(--rate_inner) * 2);
  height: var(--rate_size);
  padding: 0 var(--rate_inner);
  cursor: pointer;
}

.rate_wrapper label:before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--rate_inner);
  right: var(--rate_inner);
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.1661 14.9987C18.8963 15.2602 18.7723 15.6384 18.8338 16.0092L19.7599 21.1345C19.838 21.5689 19.6547 22.0085 19.2911 22.2596C18.9348 22.52 18.4609 22.5513 18.0723 22.3429L13.4585 19.9365C13.2981 19.8511 13.1199 19.8053 12.9376 19.8001H12.6553C12.5574 19.8146 12.4616 19.8459 12.3741 19.8938L7.75921 22.3117C7.53107 22.4262 7.27273 22.4669 7.01959 22.4262C6.40289 22.3096 5.9914 21.722 6.09245 21.1022L7.01959 15.9769C7.08105 15.6029 6.95708 15.2227 6.68728 14.9571L2.92561 11.311C2.61101 11.0058 2.50162 10.5475 2.64538 10.1339C2.78497 9.72136 3.14124 9.4203 3.57148 9.35259L8.74885 8.60151C9.14262 8.56088 9.48848 8.32128 9.66557 7.9671L11.9469 3.28975C12.0011 3.18558 12.0709 3.08974 12.1553 3.00848L12.249 2.93556C12.298 2.88139 12.3543 2.8366 12.4168 2.80014L12.5303 2.75847L12.7074 2.68555H13.146C13.5377 2.72617 13.8825 2.96056 14.0627 3.31058L16.3743 7.9671C16.541 8.30774 16.8649 8.54421 17.2389 8.60151L22.4163 9.35259C22.8538 9.41509 23.2195 9.7172 23.3643 10.1339C23.5007 10.5516 23.383 11.01 23.0622 11.311L19.1661 14.9987Z' fill='%23F8B200'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: background-image .43s;
}

.rate_wrapper label:not(.hover, .active):before {
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.1661 14.9987C18.8963 15.2602 18.7723 15.6384 18.8338 16.0092L19.7599 21.1345C19.838 21.5689 19.6547 22.0085 19.2911 22.2596C18.9348 22.52 18.4609 22.5513 18.0723 22.3429L13.4585 19.9365C13.2981 19.8511 13.1199 19.8053 12.9376 19.8001H12.6553C12.5574 19.8146 12.4616 19.8459 12.3741 19.8938L7.75921 22.3117C7.53107 22.4262 7.27273 22.4669 7.01959 22.4262C6.40289 22.3096 5.9914 21.722 6.09245 21.1022L7.01959 15.9769C7.08105 15.6029 6.95708 15.2227 6.68728 14.9571L2.92561 11.311C2.61101 11.0058 2.50162 10.5475 2.64538 10.1339C2.78497 9.72136 3.14124 9.4203 3.57148 9.35259L8.74885 8.60151C9.14262 8.56088 9.48848 8.32128 9.66557 7.9671L11.9469 3.28975C12.0011 3.18558 12.0709 3.08974 12.1553 3.00848L12.249 2.93556C12.298 2.88139 12.3543 2.8366 12.4168 2.80014L12.5303 2.75847L12.7074 2.68555H13.146C13.5377 2.72617 13.8825 2.96056 14.0627 3.31058L16.3743 7.9671C16.541 8.30774 16.8649 8.54421 17.2389 8.60151L22.4163 9.35259C22.8538 9.41509 23.2195 9.7172 23.3643 10.1339C23.5007 10.5516 23.383 11.01 23.0622 11.311L19.1661 14.9987Z' fill='%23DADADA'/%3E%3C/svg%3E%0A");
}

/* Rate. */

/* Search. */

.search {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}

.search input {
  position: relative;
  padding-left: 14px;
  padding-right: 60px;
  min-height: 42px;
  border: 0 none;
  background-color: var(--white);
  z-index: 100;
}

.search button {
  --size: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52px;
  background-color: var(--dark);
  cursor: pointer;
  z-index: 100;
}

.search button img {
  width: var(--size);
  height: var(--size);
  object-fit: contain;
  object-position: center;
}

.search button:after {
  --size: 100px;
  pointer-events: none;
  content: '';
  position: absolute;
  top: calc(50% - var(--size) / 2);
  right: calc(100% - 6px);
  width: var(--size);
  height: var(--size);
  background-color: var(--white);
  border-radius: 50%;
}

.search_veil {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background-color: #000;
  opacity: 0.2;
  transition: opacity .43s;
}

.search:not(.active) .search_veil {
  pointer-events: none;
  opacity: 0;
}

.search_result {
  --inner: 20px;
  display: grid;
  grid-template-columns: 267px 1fr;
  position: absolute;
  left: 50%;
  margin-top: 5px;
  width: calc(100% - var(--bone) * 2);
  max-width: 1084px;
  background-color: var(--white);
  border-radius: 6px;
  z-index: 100;
  transform: translate3d(-50%, 0, 0px);
}

.search_result_cat {
  padding: var(--inner) 30px;
  border-right: 1px solid #DADADA;
}

.search_result_caption {
  margin-bottom: 16px;
}

.search_result_cat ul {
  display: grid;
  grid-gap: 12px;
  font-weight: 400;
  font-size: 12px;
  text-decoration: underline;
}

.search_result_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  padding: var(--inner) 15px;
}

.search_result_li li {
  border-top: 1px solid #DADADA;
}

.search_product {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  padding: 10px 12px;
}

.search_product_img img {
  --size: 68px;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  object-fit: contain;
  object-position: center;
}



.search_product_name {
  font-size: 12px;
  font-weight: 400;
}

.search_product_price {
  display: flex;
  align-items: center;
  grid-gap: 12px;
  margin-top: 8px;
  font-family: var(--font2);
  font-size: 18px;
  font-weight: 700;
}

.search_product_price span {
  font-size: 12px;
}

.search_product_price ._old {
  --color: #C1C1C1;
  font-size: 10px;
}

/* Search. */

/* Cart. */

.cart {
  position: absolute;
  right: var(--bone_size);
  width: 494px;
  max-width: calc(100% - var(--bone_size) * 2);
  z-index: 100;
}

.cart_wrapper {
  position: relative;
  padding: 20px 28px;
  background-color: var(--white);
  border-radius: 6px;
  z-index: 1;
}



.cart_title {
  grid-gap: 16px;
  font-family: var(--font2);
  font-size: 25px;
  font-weight: 600;
}

.cart_title img {
  --size: 24px;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  object-fit: contain;
  object-position: center;
}

.cart_close {
  --size: 20px;
  position: static;
}

.cart_products {
  margin-top: 21px;
}

.cart_product {
  grid-gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #DADADA;
}

.cart_product_img {
  margin-left: 10px;
}

.cart_product_img img {
  --size: 92px;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  object-fit: contain;
  object-position: center;
}



.cart_product_name {
  font-weight: 400;
}

.cart_product_code {
  --color: var(--gray);
  margin-top: 10px;
  font-size: 10px;
  font-family: var(--font2);
}

.cart_product_right {
  grid-gap: 16px;
}

.cart_product_price {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font2);
  white-space: nowrap;
}

.cart_product_price span {
  font-size: var(--body);
}

.cart_product_price ._old {
  --color: #C1C1C1;
  font-size: 12px;
}

.cart_product_clear {
  --size: 24px;
}

.cart_product_clear img {
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  object-fit: contain;
  object-position: center;
}

.cart_bottom {
  grid-gap: 20px;
  margin-top: 32px;
}

.cart_total ._price {
  margin-top: 3px;
  font-family: var(--font2);
  font-size: 30px;
  font-weight: 700;
}

.cart_total ._price span {
  font-size: 25px;
}

.cart_btn {
  --btn_w: 240px;
  width: var(--btn_w);
}

.cart_veil {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.2;
}

/* Cart. */

/* Product. */

.product {
  position: relative;
  padding: 15px;
  background: var(--white);
  box-shadow: 0 0 0 1px #DADADA;
  transition: filter .43s;
}

.product:hover {
  z-index: 1;
}

.product_top {
  position: relative;
}

.product_hr_wrapper {
  display: flex;
  flex-direction: column;
  grid-gap: 9px;
  position: absolute;
  top: 0;
  right: 0;
}

.product_hr_wrapper .product_hr {
  --size: 35px;
  background-color: var(--white);
}

.product_img {
  position: relative;
}

.product_img:after {
  content: '';
  display: block;
  padding-bottom: 89%;
}

.product_img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product_content {
  margin-top: 16px;
}



.product_credit {
  grid-gap: 4px;
}

.product_credit_icon img {
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  object-fit: contain;
  object-position: center;
}

.product_credit li {
  --size: 32px;
  position: relative;
}

.product_credit li:not(:hover) .product_credit_info {
  pointer-events: none;
  opacity: 0;
}

.product_credit_info {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  padding: 20px 18px;
  width: 268px;
  font-weight: 400;
  background-color: var(--white);
  border-radius: 6px;
  filter: drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.15));
  z-index: 1;
  transition: opacity .43s;
}

.product_credit_info:before {
  content: '';
  position: absolute;
  left: calc((var(--size) - 20px) / 2);
  bottom: calc(100% - 1px);
  width: 20px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='15' viewBox='0 0 20 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1219_12620)'%3E%3Cpath d='M10.144 6L24.1252 23.655H-3.83711L10.144 6Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1219_12620'%3E%3Crect width='20' height='15' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.product_credit_info:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 15px;
}

.product_credit_name {
  font-family: var(--font2);
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.product_credit ul {
  margin-top: 20px;
}

.product_credit p {
  margin-top: 1em;
}

.product_cod {
  --color: var(--gray);
  font-family: var(--font2);
  font-size: 10px;
}

.product_name {
  margin-top: 8px;
}

.product_info {
  grid-gap: 14px;
  position: relative;
  margin-top: 16px;
  padding-top: 14px;
  margin-top: 0;
  padding-top: 0;
}

.product_price {
  position: relative;
  font-family: var(--font2);
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.product_price span {
  font-size: var(--body);
}

.product_price_wrapper {
  bottom: 100%;
  left: 0;
  right: 0;
  grid-gap: 8px;
  min-height: 19px;
}
.product_price ._old {
  --color: #C1C1C1;
  font-size: 12px;
  text-decoration: line-through;
}

.product_price ._sale {
  padding: 2px 4px;
  color: var(--white);
  font-size: 10px;
  background-color: #FF1515;
  border-radius: 3px;
}
.product_info_right {
  --color: var(--gray);
  grid-gap: 12px;
  font-family: var(--font2);
  font-size: 13px;
}

.product_rate {
  --icon_size: 18px;
  padding: 2px 4px 2px 26px;
  background-color: #F8F8F8;
  border-radius: 3px;
}

.product_rate:before {
  left: 4px;
}

.product_comment {
  --icon_size: 16px;
  padding-left: 20px;
}

.product_comment:before {
  left: 0;
}

.product_bottom {
  grid-gap: 6px;
  margin-top: 14px;
}

.product_bottom .product_price {
  text-align: right;
}

.product_bottom .product_price ._old {
  position: static;
}

.product_btn {
  --btn_w: 136px;
  --btn_height: 45px;
  margin-left: -15px;
  white-space: nowrap;
}

.product_btn .__btn {
  border-radius: 0 6px 6px 0;
}

.product_hrefs {
  grid-gap: 6px;
}

.product_hr {
  --size: 45px;
  --color: #DADADA;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  border: 1px solid var(--color);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color .43s;
}

.product_hr img,
.product_hr svg 
 {
  --size: 20px;
  width: var(--size);
  height: var(--size);
}
.product_hr img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(83%) saturate(1%) hue-rotate(295deg) brightness(91%) contrast(88%);
}

.product:not(:hover) .product_list {
  pointer-events: none;
  opacity: 0;
}

.product_list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0 12px 20px;
  background-color: var(--white);
  z-index: -1;
  transition: opacity .43s;
}

.product_list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 400;
  height: 21px;
  border-bottom: 1px solid #DADADA;
}

/* Product. */

/* Product. v2. */

._vw .product {
  display: flex;
  align-items: center;
  position: relative;
  /*	padding-left: 32px;*/
}

._vw .product_top {
  --size: 160px;
  width: var(--size);
  min-width: var(--size);
}

._vw .product_img:after {
  padding-bottom: 100%;
}

._vw .product_credit {
  /*position: absolute !important;
	bottom: 15px;
	right: 15px;*/
}

._vw .product_cod {
  /*position: absolute;
	top: 15px;
	right: 15px;*/
}

._vw .product_credit_info {
  left: auto;
  right: 0;
}

._vw .product_credit_info:before {
  left: auto;
  right: calc((var(--size) - 20px) / 2);
}

._vw .product_content {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  width: 100%;
}

._vw .product_name {
  /*	margin-top: 0;*/
}

/* Product. v2. */

/* Header. */

.header {
  position: relative;
  background-color: var(--white);
  z-index: 2;
}

.header_top {
  position: relative;
  padding: 10px 22px 10px 34px;
}

.header_logo {
  max-width: 165px;
}

.header_right {
  position: relative;
  grid-gap: 24px;
}

.header_top_nav > ul {
  display: flex;
  align-items: center;
  font-family: var(--font2);
  font-weight: 400;
}

.header_top_nav > ul > li {
  --inner: 24px;
  position: relative;
  padding: 0 24px;
}

.header_top_nav > ul > li:before {
  --size: 30px;
  content: '';
  position: absolute;
  top: calc(50% - var(--size) / 2);
  right: 0;
  width: 1px;
  height: var(--size);
  background-color: #C1C1C1;
  border-radius: 1px;
}

.header_top_nav_triger {
  padding-right: 17px;
  cursor: pointer;
}

.header_top_nav_triger:before {
  --icon_size: 7px;
  right: 0;
  transition: transform .43s;
}

.header_top_nav li:hover .header_top_nav_triger:before {
  transform: rotate(200grad);
}

.header_top_nav li:not(:hover) .header_top_nav_info {
  pointer-events: none;
  margin-top: 4px;
  opacity: 0;
}

.header_coll_triger {
  display: flex;
  align-items: center;
  grid-gap: 6px;
  padding-right: 22px;
  color: var(--accent);
  font-family: var(--font2);
  font-weight: 700;
  cursor: pointer;
}

.header_coll_triger img {
  --size: 24px;
  width: var(--size);
  height: var(--size);
  object-fit: contain;
  object-position: center;
}

.header_coll_triger:before {
  --icon_size: 10px;
  right: 0;
  transition: transform .43s;
}

.header_coll:hover .header_coll_triger:before {
  transform: rotate(200grad);
}

.header_coll_top {
  --inner: 24px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
  border-bottom: 1px solid #C1C1C1;
}

.header_coll_top li {
  padding-bottom: 16px;
}

.header_coll_top li:nth-child(odd) {
  width: calc(50% - var(--inner));
}

.header_coll_top li:nth-child(even) {
  width: calc(50% - 1px);
  margin-left: var(--inner);
  padding-left: var(--inner);
  border-left: 1px solid #C1C1C1;
}

.header_coll_top a {
  font-size: 17px;
  font-weight: 700;
  font-family: var(--font2);
}

.header_coll_top p {
  --color: #909090;
  margin-top: 5px;
  font-size: 12px;
  font-family: var(--font2);
}

.header_coll_bottom {
  --btn_height: 40px;
  --btn_font: 12px;
}

.header_coll_bottom p {
  max-width: 164px;
  font-size: 12px;
  font-family: var(--font2);
}

.header_coll_bottom form {
  --grid_2: 2;
  grid-gap: 10px;
  margin-top: 12px;
}

.header_coll_bottom input {
  font-size: 12px;
  padding: 0 12px;
}

.header_lang {
  margin-left: 22px;
  font-family: var(--font2);
  font-weight: 600;
}

.header_lang li {
  padding: 3px 0 1px;
}

.header_lang li:last-child {
  --inner: 7px;
  position: relative;
  margin-left: var(--inner);
  padding-left: calc(var(--inner) + 1px);
}

.header_lang li:last-child:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--black);
  border-radius: 1px;
}

.header_lang a {
  opacity: 0.34;
}

.header_net {
  --height: 60px;
  --color: var(--white);
  grid-gap: 40px;
  height: var(--height);
  margin: 0 calc(var(--bone_size) * -1);
  padding: 0 var(--bone_size);
  background-color: var(--header_color);
}

.header_catalog_triger,
.header_catalog_close,
.header_catalog_back {
  position: relative;
  display: flex;
  align-items: center;
  font-family: var(--font2);
  font-weight: 600;
}

.header_catalog_triger img {
  width: var(--size);
  height: var(--size);
  object-fit: contain;
  object-position: center;
}

.header_catalog_wrapepr {
  --color: var(--black);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
}

.header_catalog_wrapepr:not(.active) {
  pointer-events: none;
  opacity: 0;
}

.header_catalog_wrapepr ul {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
  width: var(--catalog_size);
  padding: 20px 40px;
  background-color: var(--white);
}

.header_catalog_wrapepr ul ul {
  position: absolute;
  top: 0;
  left: var(--catalog_size);
  bottom: 0;
}

.header_catalog_wrapepr ul ul:not(.active) {
  pointer-events: none;
  opacity: 0;
}

.header_catalog_wrapepr a {
  --icon_size: 6px;
  display: flex;
  align-items: center;
  grid-gap: 12px;
  position: relative;
  padding-right: 40px;
}

.header_catalog_wrapepr a span {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='12' viewBox='0 0 7 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.02148 0.690377L6.26712 5.93601L1.02148 11.1816' stroke='%23161616' stroke-width='0.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: var(--icon_size);
}

.header_catalog_wrapepr a img {
  --size: 20px;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  object-fit: contain;
  object-position: center;
}

.header_search {
  flex-grow: 1;
}

.header_links {
  --inner: 32px;
  display: flex;
  align-items: center;
  grid-gap: var(--inner);
}

.header_link {
  --size: 24px;
  position: relative;
}

.header_link._cab {
  display: none;
}

.header_link img,
.header_link svg {
  width: var(--size);
  height: var(--size);
  object-fit: contain;
  object-position: center;
}

.header_link:not(:first-child):before {
  --size: 35px;
  content: '';
  position: absolute;
  top: calc(50% - var(--size) / 2);
  left: calc(var(--inner) / -2);
  height: var(--size);
  border-left: 1px solid var(--color);
}

.header_link span {
  --size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -4px;
  right: -5px;
  width: var(--size);
  height: var(--size);
  font-family: var(--font2);
  font-weight: 600;
  font-size: 11px;
  background-color: var(--accent);
  border-radius: 50%;
  line-height: 1;
}

.header_cabinet {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 6px;
  width: 156px;
  height: var(--height);
  padding: 12px;
  font-family: var(--font2);
  font-weight: 600;
  background-color: var(--dark);
}

.header_cabinet img {
  --size: 24px;
  width: var(--size);
  height: var(--size);
  object-fit: contain;
  object-position: center;
}

/* Header. */

/* Bar. */

.bar {
  z-index: -1;
}

.bar_veil {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: -1;
  transition: opacity .43s;
}

.bar_veil:not(.active) {
  pointer-events: none;
  opacity: 0;
}

.bar_burger {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 36px;
  min-width: 36px;
  height: 36px;
  padding: 12px 8px;
  background-color: var(--dark);
  border-radius: 6px;
  cursor: pointer;
  z-index: 100;
  transition: background .43s, transform .43s;
}

.bar_burger span {
  width: 100%;
  height: 1px;
  background-color: var(--white);
  transition: transform .43s, opacity .43s;
}

.bar_burger.active span:nth-child(1) {
  transform: rotate(50grad) translate3d(3px, 4px, 0);
}

.bar_burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-100%);
}

.bar_burger.active span:nth-child(3) {
  transform: rotate(-50grad) translate3d(4px, -4px, 0);
}

.bar_wrapper {
  overflow: hidden;
  display: none;
  position: absolute;
  top: var(--header);
  left: 0;
  right: 0;
  height: 100vh;
  max-height: calc(100vh - var(--header));
  background-color: var(--white);
  z-index: -1;
}

.bar_net {
  overflow-y: scroll;
  width: calc(100% + 40px);
  height: 100%;
  max-height: 100vh;
  margin-right: -40px;
  padding: 10px calc(var(--bone) + 40px - var(--scroll)) calc(var(--bone) * 2) var(--bone);
}

.bar_nav ul {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
  margin-top: 20px;
  font-family: var(--font2);
  font-size: 14px;
}

.bar_nav ul ul {
  margin: 0;
}

.bar_coll {
  padding-top: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #C1C1C1;
}

.bar_hrefs {
  --size: 18px;
  display: flex;
  flex-direction: column;
  grid-gap: 32px;
  padding-top: 26px;
  padding-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font2);
  border-bottom: 1px solid #C1C1C1;
}

.bar_hrefs a,
.bar_hrefs div {
  display: flex;
  align-items: center;
  grid-gap: 12px;
}

.bar_hrefs img {
  width: var(--size);
  height: var(--size);
  object-fit: cover;
  object-position: center;
  filter: brightness(0) saturate(100%);
}

/* Bar. */

/* Footer. */

.footer {
  --color: var(--white);
  padding-top: 58px;
  background-color: #23272E;
}

.footer_net {
  flex-wrap: wrap;
  grid-gap: 40px;
}



.footer_logo img {
  max-width: 164px;
}

.footer_btn {
  --btn_height: 45px;
  --btn_w: 164px;
  --btn_font: 12px;
  width: var(--btn_w);
}
.footer_btn .__btn {
  --color: var(--white) !important;
}

.footer_nav {
  grid-gap: 80px;
}

.footer_nav_col ul {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  font-size: 12px;
}

.footer_nav_col a {
  transition: color .43s;
}

.footer_nav_col a:hover {
  color: var(--primary);
}

.footer_nav_name {
  --color: var(--accent);
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font2);
}

.footer_soc {
  --size: 35px;
  grid-gap: 6px;
  margin-top: 32px;
}

.footer_soc a:hover {
  --color: var(--accent);
}

.footer_soc path {
  transition: fill .43s, stroke .43s;
}

.footer_soc img {
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  object-fit: contain;
  object-position: center;
}

.footer_cop {
  margin-top: 40px;
  padding: 15px var(--bone_size) 13px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, .45);
  border-top: 1px solid #DADADA;
}
.footer_pay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 12px;
  max-width: 392px;
  margin-top: 56px;
}

.footer_pay img {
  /*	width: 100%;*/
}

/* Footer. */

/* Breadcrumbs. */

.breadcrumbs {
  margin: 16px 0;
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
}

.breadcrumbs li {
  position: relative;
  white-space: nowrap;
  color: #909090;
  font-size: 10px;
  line-height: 1;
}

.breadcrumbs li:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs a {
  --size: 10px;
  transition: color .43s;
}

.breadcrumbs a:hover {
  --color: var(--accent);
}

.breadcrumbs li:not(:first-child) {
  --size: 6px;
  --inner: 8px;
  padding-left: calc(var(--inner) * 2 + var(--size));
}

.breadcrumbs li:not(:first-child):before {
  content: '';
  position: absolute;
  top: calc(50% - var(--size) / 2 - 1px);
  left: var(--inner);
  width: var(--size);
  height: var(--size);
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='7' viewBox='0 0 7 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.12695 2.08105L3.87695 3.83105L2.12695 5.58105' stroke='%234BBE01' stroke-width='0.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.breadcrumbs svg {
  margin-top: -2px;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
}

.breadcrumbs path {
  transition: stroke .43s;
}

.breadcrumbs_title {
  grid-gap: 20px;
  margin-bottom: 25px;
}

.breadcrumbs_title h1 {
  font-size: 20px;
}

.breadcrumbs_title span {
  --color: var(--gray);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font2);
}

/* Breadcrumbs. */

/* Desc. */



.desc_list {
  grid-gap: 16px;
}

.desc_list li {
  padding: 16px 24px;
  background-color: #64FF000F;
  border-radius: 6px;
}

.desc_text:not(:first-child) {
  margin-top: 50px;
}

.desc_text {
  padding: 20px 42px;
  border: 1px solid #4BBE01;
  border-radius: 6px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.02);
}

/* Desc. */

/* Features. */



.features_title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font2);
}

.features ul {
  font-family: var(--font2);
}

.features li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 52px;
  padding: 0 24px;
}

.features li.more100{
	height: 72px;
	    font-size: 14px;
	
}

.features ._color li:nth-child(odd) {
  border-radius: 4.489px;
  background: rgba(100, 255, 0, 0.06);
}

.features li:before {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 14px;
  border-bottom: 1px solid var(--gray);
}

.features span:last-child {
  font-weight: 600;
  max-width: 75%;


}
.features .more100 span:last-child {
	    font-size: 14px;
}

/* Features. */

/* Reviews. */



.review_title {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font2);
  margin-bottom: 30px;
}

.review_net {
  grid-template-columns: 1fr 492px;
  grid-gap: 20px;
  margin-top: 32px;
}

.review_list {
  display: grid;
  align-self: start;
  grid-gap: 15px;
}

.review_li {
  padding: 20px 20px 20px 36px;
  background: var(--white);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.02);
}





.review_right {
  grid-gap: 20px;
}



.review_date {
  --color: var(--gray);
  font-size: 13px;
  font-family: var(--font2);
}

.review_text {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 400;
}

.review_more {
  --color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-family: var(--font2);
  border-bottom: 1px solid var(--accent);
  border-radius: 6px;
  transition: border-color .43s;
}

.review_more span {
  --size: 15px;
  --color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  padding-top: 2px;
  font-size: 9px;
  font-weight: 900;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0px 4.5px 7.5px 0px rgba(248, 178, 0, 0.22);
}

.review_more:hover {
  cursor: pointer;
}

.review_commet {
  display: grid;
  grid-gap: 12px;
  margin-top: 20px;
  margin-left: 26px;
}

.review_commet li {
  --icon_size: 18px;
  position: relative;
  padding-top: 4px;
  padding-left: 26px;
}

.review_commet li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: var(--icon_size);
  height: var(--icon_size);
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.625 12.4189H14.4697L11.3595 15.5284C11.2974 15.6004 11.2649 15.6932 11.2684 15.7882C11.2719 15.8832 11.3112 15.9733 11.3784 16.0405C11.4456 16.1077 11.5358 16.147 11.6307 16.1505C11.7257 16.1541 11.8185 16.1215 11.8905 16.0594L15.6405 12.3094C15.7106 12.2384 15.7497 12.1426 15.7494 12.0429C15.7492 11.9431 15.7095 11.8476 15.639 11.7769L11.8905 8.02845C11.8185 7.96638 11.7257 7.93384 11.6307 7.93735C11.5358 7.94086 11.4456 7.98016 11.3784 8.04736C11.3112 8.11457 11.2719 8.20471 11.2684 8.29969C11.2649 8.39467 11.2974 8.48746 11.3595 8.55945L14.4697 11.6689H3V2.29395C3 2.19449 2.96049 2.09911 2.89016 2.02878C2.81984 1.95845 2.72446 1.91895 2.625 1.91895C2.52554 1.91895 2.43016 1.95845 2.35984 2.02878C2.28951 2.09911 2.25 2.19449 2.25 2.29395V12.0439C2.25 12.1434 2.28951 12.2388 2.35984 12.3091C2.43016 12.3794 2.52554 12.4189 2.625 12.4189Z' fill='black'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}



.review_commet_text {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
}

.review_add {
  padding: 40px 52px;
  text-align: center;
  background-color: var(--white);
  border: 3px solid #F2F2F2;
  border-radius: 6px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.02);
}

.review_add_title {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font2);
  line-height: 1.05;
}

.review_add_caption {
  margin-top: 16px;
  font-weight: 400;
}

.review_add_form {
  --rate_size: 25px;
  --rate_inner: 2px;
  display: grid;
  grid-gap: 16px;
  margin-top: 30px;
}

.review_pagination {
  display: flex;
  justify-content: flex-end;
  grid-gap: 14px;
  margin-top: 20px;
}

.review_pagination_arrow {
  --size: 19px;
  position: relative;
  width: 35px;
  height: 35px;
  font-size: 0;
  background-color: var(--accent);
  border-radius: 10px;
  cursor: pointer;
  transition: transform .43s;
}

.review_pagination_arrow._inactive {
  background-color: #DADADA;
  cursor: no-drop;
}

.review_pagination_arrow:before {
  content: '';
  position: absolute;
  top: calc(50% - var(--size) / 2);
  left: calc(50% - var(--size) / 2);
  width: var(--size);
  height: var(--size);
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M-1.90735e-06 13.75C-1.90735e-06 6.16 6.17375 -1.90735e-06 13.75 -1.90735e-06L14.1347 0.00528145C21.547 0.209221 27.5 6.28864 27.5 13.75C27.5 21.3262 21.34 27.5 13.75 27.5C6.17375 27.5 -1.90735e-06 21.3262 -1.90735e-06 13.75ZM16.4719 19.25C16.8706 18.8375 16.8706 18.1912 16.4581 17.7925L12.4019 13.75L16.4581 9.70749C16.8706 9.30873 16.8706 8.64873 16.4719 8.24998C16.0594 7.83748 15.4131 7.83748 15.0144 8.24998L10.2156 13.0212C10.0231 13.2137 9.91314 13.475 9.91314 13.75C9.91314 14.025 10.0231 14.2862 10.2156 14.4787L15.0144 19.25C15.2069 19.4562 15.4681 19.5525 15.7294 19.5525C16.0044 19.5525 16.2656 19.4562 16.4719 19.25Z' fill='white'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.review_pagination_arrow._next:before {
  transform: rotate(200grad);
}

.review_btn {
  --btn_w: 260px;
  --btn_height: 36px;
  display: none;
  margin-top: 20px;
}

/* Reviews. */

/* Banner. */

.banner_slider {
  --inner_slider-x: 17px;
  position: relative;
  width: 100%;
  margin-left: auto;
  padding-top: 10px;
  z-index: 1;
}

.banner_slider .slick-arrow {
  /*--arrow-ind: 16px;



	top: auto;

	bottom: 16px;*/
}

/*.banner_slider .slick-arrow.slick-prev {

	left: auto;

	right: calc(var(--arrow-ind) + var(--arrow-size) + 15px);

}





*/
/* .banner_slider .banner_slide:not(:first-child, .slick-slide) { */
.banner_slider .banner_slide:not(.slick-slide) {

	display: none;

}
.banner_slide {
  position: relative;
  height: max(100%, 162px);
}

.banner_slide:after {
  content: '';
  display: block;
  padding-bottom: 195%;
}

.banner_slide img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
      border-radius: 5px;
} 
/* 
.banner_slider .before_init{
	display:none;
}
.banner_slider .banner_slide.init{
	display: inline-block;
	  margin: 0px 2px;  
}

.banner_slider .banner_slide.init img{
	position: static;
    width: inherit;
}
 */
/* Banner. */

/* Cat. */

.cat {
  overflow: hidden;
  margin-top: 10px;
}

.cat_slider {
  --inner_slider-x: 17px;
  margin-right: max(var(--bone_size) * -1, -60px);
}

.cat_slider .slick-list {
  margin: min(var(--inner_slider-y) * -1,var(--inner_slider-shadow) * -1) min(var(--inner_slider-x) / -2,var(--inner_slider-shadow) * -1) !important;
  padding-right: min(var(--bone_size), 60px);
}

.cat_slider .slick-list:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(var(--bone_size), 60px);
  background: linear-gradient(90deg,rgba(245, 245, 245, 0) -100%,var(--bg) 100%);
  z-index: 1;
}

.cat_slider .cat_slide:not(:first-child, .slick-slide) {
  display: none !important;
}

.cat_slider .cat_slide:not(.slick-slide) {
  display: block;
  max-width: 208px;
}

.cat_slide {
  position: relative;
}

.cat_slide:after {
  content: '';
  display: block;
  /* padding-bottom: 120%; */
}

.cat_slide h3 {
  --color: var(--white);
  position: absolute;
  top: 20px;
  left: 20px;
  line-height: 0.9;
  text-transform: uppercase;
  z-index: 1;
}

.cat_slide img {
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* height: 100%; */
  border-radius: 5px;
  object-fit: cover;
  object-position: center;
}

/* Cat. */

/* Procuts. */

.products {
  margin-top: 52px;
}

.products_top {
  grid-gap: 40px;
  margin-bottom: 25px;
}

.products_title {
  font-size: 25px;
}

.products_list {
  --net: 5;
  display: grid;
  grid-template-columns: repeat(var(--net), 1fr);
}

.products_slider {
  overflow: visible !important;
  --inner_slider-x: 1px;
  --inner_slider-y: 1px;
}

 

.products_slider .slick-slide.slick-active:before {
  pointer-events: none;
  opacity: 0;
}

.products_slider .slick-arrow {
  --arrow-size: 45px;
  --arrow-icon_size: 28px;
  --arrow-ind: 0;
  background-color: var(--primary);
  border-radius: 10px;
}

.products_slider .slick-arrow:before {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M-1.90735e-06 13.75C-1.90735e-06 6.16 6.17375 -1.90735e-06 13.75 -1.90735e-06L14.1347 0.00528145C21.547 0.209221 27.5 6.28864 27.5 13.75C27.5 21.3262 21.34 27.5 13.75 27.5C6.17375 27.5 -1.90735e-06 21.3262 -1.90735e-06 13.75ZM16.4719 19.25C16.8706 18.8375 16.8706 18.1912 16.4581 17.7925L12.4019 13.75L16.4581 9.70749C16.8706 9.30873 16.8706 8.64873 16.4719 8.24998C16.0594 7.83748 15.4131 7.83748 15.0144 8.24998L10.2156 13.0212C10.0231 13.2137 9.91314 13.475 9.91314 13.75C9.91314 14.025 10.0231 14.2862 10.2156 14.4787L15.0144 19.25C15.2069 19.4562 15.4681 19.5525 15.7294 19.5525C16.0044 19.5525 16.2656 19.4562 16.4719 19.25Z' fill='white'/%3E%3C/svg%3E%0A");
}

.products_slider .product:not(.slick-active) {
  box-shadow: none !important;
}
/* Procuts. */

/* News. */

.news {
  margin-top: 100px;
}

.news_slider {
  overflow: visible !important;
  --inner_slider-x: 10px;
  --inner_slider-y: 36px;
}

.news_slider .slick-slide:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
  z-index: 1;
  transition: opacity .43s;
}

.news_slider .slick-slide.slick-active:before {
  pointer-events: none;
  opacity: 0;
}

.news_slider .slick-arrow {
  --arrow-size: 45px;
  --arrow-icon_size: 28px;
  --arrow-ind: var(--bone_size);
  background-color: var(--primary);
  border-radius: 10px;
}

.news_slider .slick-arrow:before {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M-1.90735e-06 13.75C-1.90735e-06 6.16 6.17375 -1.90735e-06 13.75 -1.90735e-06L14.1347 0.00528145C21.547 0.209221 27.5 6.28864 27.5 13.75C27.5 21.3262 21.34 27.5 13.75 27.5C6.17375 27.5 -1.90735e-06 21.3262 -1.90735e-06 13.75ZM16.4719 19.25C16.8706 18.8375 16.8706 18.1912 16.4581 17.7925L12.4019 13.75L16.4581 9.70749C16.8706 9.30873 16.8706 8.64873 16.4719 8.24998C16.0594 7.83748 15.4131 7.83748 15.0144 8.24998L10.2156 13.0212C10.0231 13.2137 9.91314 13.475 9.91314 13.75C9.91314 14.025 10.0231 14.2862 10.2156 14.4787L15.0144 19.25C15.2069 19.4562 15.4681 19.5525 15.7294 19.5525C16.0044 19.5525 16.2656 19.4562 16.4719 19.25Z' fill='white'/%3E%3C/svg%3E%0A");
}

.news_item {
  position: relative;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.11);
  background-color: var(--white);
}

.news_item_img {
  position: relative;
}

.news_item_img:after {
  content: '';
  display: block;
  padding-bottom: 58%;
}

.news_item_img img {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.news_item_content {
  --inner: 13px;
  padding: var(--inner);
}



.news_item_text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  margin-top: 13px;
  font-weight: 400;
}

.news_item_bottom {
  margin-top: 20px;
}

.news_item_time {
  padding: 5px var(--inner) 3px;
  margin-left: calc(var(--inner) * -1);
  font-size: 12px;
  font-weight: 400;
  background-color: #F8F8F8;
  border-radius: 0 6px 6px 0;
}



/* News. */

/* Benefits. */

.benefits {
  padding: 48px 0px;
}

.benefits_list {
  --grid_4: 4;
  grid-gap: 10px;
}

.benefits_li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 0px 12px;
  padding: 14px 14px 14px 32px;
  background: #FFFFFF;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
}

.benefits_icon {
  --size: 80px;
}

.benefits_icon img {
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  object-fit: cover;
  object-position: center;
}

.benefits_content {
  max-width: 170px;
}

.benefits_name {
  margin-bottom: 10px;
}

.benefits_text {
  font-size: 12px;
  font-weight: 400;
}

/* Benefits. */

/* Mailing. */

.mailing {
  --color: var(--white);
  padding: 45px 0;
  background-color: var(--primary);
}

.mailing_net {
  grid-gap: 25px 40px;
  flex-wrap: wrap;
}

.mailing_info {
  max-width: 488px;
}

.mailing_title {
  font-size: 40px;
  font-weight: 700;
  font-family: var(--font2);
}

.mailing_text {
  margin-top: 9px;
}

.mailing_form {
  grid-gap: 15px;
  width: 100%;
  max-width: 592px;
}

.mailing_form input {
  flex-grow: 1;
  padding: 0 16px;
  background-color: var(--white);
}

.mailing_form .__btn {
  --btn_shadow: #368503;
  flex-grow: 1;
  width: 100%;
  max-width: 220px;
  background-color: #368503;
  border-color: #368503;
}

/* Mailing. */

/* Item. */

.item {
  --inner: 30px;
}

.item_net {
  display: grid;
  grid-template-columns: 35% 38% 27%;
  grid-auto-flow: dense;
}

.item_img {
  grid-row: 1/3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 16px;
  background-color: var(--white);
  border-right: 3px solid #F2F2F2;
}

.item_img .slick-slide {
  position: relative;
}

.item_img .slick-slide:after {
  content: '';
  display: block;
  padding-bottom: 95%;
}

.item_img .slick-slide img,
.item_img .slick-slide iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.item_img_active {
  width: 100%;
  max-width: 408px;
  margin: 0 auto;
  
}

.item_img_list {
  --inner_slider-x: 10px;
  margin-top: 28px;
}

.item_img_list .slick-slide:after {
  padding-bottom: 100%;
}

.item_img_list .slick-slide img,
.item_img_list .slick-slide iframe {
  padding: 10px;
  border: 1px solid #DADADA;
  border-radius: 6px;
  transition: border-color .43s;
}

.item_img_list .slick-slide:not(.slick-active) + .slick-active img {
  border-color: var(--primary);
}

.item_info {
  grid-column: 2/4;
  padding: 24px var(--inner);
  background-color: var(--white);
  border-bottom: 3px solid #F2F2F2;
}



.item_left {
  --color: var(--gray);
  grid-gap: 16px;
  font-size: 13px;
}

.item_cod {
  color: var(--gray);
  font-size: 10px;
  font-family: var(--font2);
}
#item_info-desktop .item_cod {
	 font-size: 12px;
}

.item_name {
  margin-top: 20px;
  font-size: 35px;
  font-weight: 600;
}

.item_credit {
  margin-top: 10px;
}

.item_info_bottom {
  grid-gap: 20px 40px;
  margin-top: 40px;
}

.item_info_left {
  grid-gap: 50px;
}

.item_price {
  position: relative;
  font-family: var(--font2);
  font-size: 35px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.05;
}

.item_price span {
  font-size: 25px;
}

.item_price ._sale {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2px 6px;
  color: var(--white);
  font-size: 12px;
  background-color: #FF1515;
  border-radius: 3px;
}
.item_price ._old {
  --color: #C1C1C1;
  font-size: var(--body);
  text-decoration: line-through;
}

.item_btn {
  grid-gap: 8px;
  width: 340px;
}

.item_info_right {
  flex-grow: 1;
  justify-content: flex-end;
  grid-gap: 8px;
}

.item_features {
  grid-column: 2/3;
  padding: 24px var(--inner);
  background-color: var(--white);
}

.item_complect {
  overflow: hidden;
  padding: 27px var(--inner);
  border-top: 3px solid #F2F2F2;
  background-color: var(--white);
}

.item_complect_title {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font2);
}

.item_complect_list {
  --inner_slider-x: 20px;
  margin: 22px calc(var(--inner) * -1) 0;
}

.item_complect .slick-list {
  padding: 0 calc(var(--inner) + 20px);
}

.item_complect .slick-slide:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
  z-index: 1;
  transition: opacity .43s;
}

.item_complect .slick-slide.slick-active:before {
  pointer-events: none;
  opacity: 0;
}

.item_complect .slick-arrow {
  --arrow-size: 35px;
  --arrow-icon_size: 20px;
  --arrow-ind: 24px;
  background-color: var(--primary);
  border-radius: 6px;
}

.item_complect .slick-arrow:before {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M-1.90735e-06 13.75C-1.90735e-06 6.16 6.17375 -1.90735e-06 13.75 -1.90735e-06L14.1347 0.00528145C21.547 0.209221 27.5 6.28864 27.5 13.75C27.5 21.3262 21.34 27.5 13.75 27.5C6.17375 27.5 -1.90735e-06 21.3262 -1.90735e-06 13.75ZM16.4719 19.25C16.8706 18.8375 16.8706 18.1912 16.4581 17.7925L12.4019 13.75L16.4581 9.70749C16.8706 9.30873 16.8706 8.64873 16.4719 8.24998C16.0594 7.83748 15.4131 7.83748 15.0144 8.24998L10.2156 13.0212C10.0231 13.2137 9.91314 13.475 9.91314 13.75C9.91314 14.025 10.0231 14.2862 10.2156 14.4787L15.0144 19.25C15.2069 19.4562 15.4681 19.5525 15.7294 19.5525C16.0044 19.5525 16.2656 19.4562 16.4719 19.25Z' fill='white'/%3E%3C/svg%3E%0A");
}

.item_complect_li {
  display: flex;
  align-items: center;
  position: relative;
  grid-gap: 10px;
  padding: 10px 16px;
  border: 1px solid #F2F2F2;
  border-radius: 6px;
  transition: background-color .43s;
}

.item_complect_li:hover {
  background-color: rgba(50, 98, 162, 0.06);
}

.item_complect_img {
  --size: 64px;
}

.item_complect_img img {
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  object-fit: contain;
  object-position: center;
}

.item_complect_info {
  flex-grow: 1;
}

.item_complect_name {
  font-size: 10px;
  margin-bottom: 6px;
}

.item_complect_bottom {
  justify-content: space-between;
  grid-gap: 8px;
}

.item_complect_price {
  font-family: var(--font2);
  font-weight: 600;
  font-size:13px;
}

.item_complect_price ._old {
  color: var(--gray);
  font-size: 10px;
  text-decoration: line-through;
}

.item_complect_price span {
  font-size: 10px;
}

.item_complect_buy {
  --btn_w: 36px;
  --btn_inner: 0px;
  --btn_height: 28px;
  width: var(--btn_w);
}

.item_complect_buy img {
  width: 16px;
  height: 16px;
}

.item_delivery {
  grid-column: 3/4;
  padding: var(--inner);
  background-color: var(--white);
  border-left: 3px solid #F2F2F2;
}

.item_delivery_title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font2);
}

.item_delivery_list {
  display: grid;
  grid-gap: 8px;
}

.item_delivery_li {
  --size: 35px;
  display: flex;
  align-items: center;
  grid-gap: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  border: 0.5px solid #F2F2F2;
  background: var(--white);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.02);
}

.item_delivery_icon {
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
}

.item_delivery_info {
  flex-grow: 1;
}



.item_delivery_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  grid-gap: 8px;
  margin-top: 4px;
}

.item_delivery_caption {
  font-size: 10px;
  font-weight: 400;
  flex-grow: 1;
}

.item_delivery_price {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
}

/* Item. */

/* Info. */

.info {
  margin: 50px 0 100px;
}

.info_tabs {
  --grid_4: 4;
}

.info_list {
  padding: 50px 40px 100px;
  background-color: var(--white);
  border: 0.6px solid #D3D3D3;
}

.info_li {
  display: none;
}

/* Info. */

/* Shop. */

.shop {
  flex-grow: 1;
}



.shop_list {
  grid-gap: 15px 20px;
  margin-top: 20px;
}

.shop_li {
  display: flex;
  align-items: center;
  grid-gap: 14px;
  padding: 12px;
  background-color: var(--white);
  border-radius: 6px;
  transition: box-shadow .43s;
}

.shop_li:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.shop_img {
  --size: 108px;
}

.shop_img img {
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  object-fit: contain;
  object-position: center;
}



/* Shop. */

/* Category. */

.category {
  box-shadow: inset 0 1px 0 #DADADA;
}

.category_net {
  display: grid;
  grid-template-columns: 333px 1fr;
}



.category_filter {
  border: 1px solid #DADADA;
  min-height: 400px;
}

.category_popular {
  margin-top: 40px;
  max-width: 320px;
}

.category_popular_items {
  margin-top: 25px;
}

.category_popular_item {
  padding: 12px 10px;
  border-top: 1px solid #DADADA;
}

.category_popular_item_img {
  position: relative;
  min-width: 70px;
}

.category_popular_item_img:after {
  content: '';
  display: block;
  padding-bottom: 97%;
}

.category_popular_item_img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}



.category_popular_item_name {
  font-size: 12px;
  font-weight: 400;
}

.category_popular_item_price {
  grid-gap: 12px;
  margin-top: 6px;
  font-family: var(--font2);
  font-size: 18px;
  font-weight: 700;
}

.category_popular_item_price ._old {
  --color: #C1C1C1;
  font-size: 10px;
  text-decoration: line-through;
}

.category_popular_item_price span {
  font-size: 12px;
}



.category_top {
  --color: #595B59;
  padding: 14px 16px 14px 36px;
  font-family: var(--font2);
  box-shadow: 1px 1px 0 #DADADA;
}

.category_top_sort {
  --size: 24px;
  grid-gap: 18px;
  cursor: pointer;
}

.category_top_sort img {
  width: var(--size);
  height: var(--size);
}

.category_top_count {
  --inner: 36px;
  grid-gap: 18px;
  height: 28px;
  margin-left: var(--inner);
  padding-left: var(--inner);
  border-left: 1px solid #C1C1C1;
}

.category_top_vis {
  --size: 24px;
}

.category_top_vis button:not([disabled]) {
  cursor: pointer;
}

.category_top_vis button[disabled] {
  --color: var(--primary);
}

.category_top_vis svg {
  width: var(--size);
  height: var(--size);
}

.category_top_vis path {
  transition: stroke .43s;
}

.category_top_vis button:not(:first-child) {
  --inner: 12px;
  margin-left: var(--inner);
  padding-left: var(--inner);
  border-left: 1px solid #C1C1C1;
}

.category_list .product_btn {
  --btn_height: 36px;
}

.category_list .product_hr {
  --size: 36px;
}

.category_list._vw {
  grid-template-columns: 1fr !important;
}

.category_top_filter {
  --btn_height: 36px;
  --btn_inner: 12px;
  display: none;
  margin-right: 12px;
}

.category_pagination {
  margin-top: 32px;
}

/* Category. */

/* Checkout. */

.checkout {
  padding-bottom: 40px;
}

.checkout_net {
  display: grid;
  grid-template-columns: 4fr 3fr;
  grid-gap: 40px;
}

.checkout_form {
  counter-reset: direction;
  display: grid;
  grid-gap: 10px;
}

.checkout_block {
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
  padding: 30px 40px;
  background-color: var(--white);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.02);
}

.checkout_caption {
  display: flex;
  align-items: center;
  grid-gap: 15px;
  margin-bottom: 10px;
}

.checkout_caption:before {
  --size: 25px;
  counter-increment: direction;
  content: counter(direction);
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  height: var(--size);
  padding-top: 2px;
  color: var(--white);
  line-height: 10px;
  font-family: var(--family);
  font-size: 16px;
  background-color: var(--primary);
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: 0px 8px 13px 0px rgba(75, 190, 1, 0.15);
}

.checkout_block > div {
  grid-gap: 18px;
}

.checkout_block ._wrap {
  flex-wrap: wrap;
}

.checkout_block input {
  max-width: 200px;
}

.checkout_select {
  --select_height: 55px;
  --select_bd: #DADADA;
  --selcet_inner_l: 18px;
  --selcet_arrow_inner: 20px;
  width: min(372px, 100%);
}

.checkout_select .current:before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.0625 9.42578C2.0625 13.2568 5.16825 16.3633 9 16.3633C12.831 16.3633 15.9375 13.2568 15.9375 9.42578C15.9375 5.59478 12.831 2.48828 9 2.48828C5.16825 2.48828 2.0625 5.59478 2.0625 9.42578Z' stroke='%23DADADA' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.39648 8.34424L8.99973 10.9587L11.603 8.34424' stroke='%23909090' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.checkout_items {
  display: grid;
  grid-gap: 8px;
}

.checkout_item {
  display: grid;
  grid-gap: 4px;
}

.checkout_item_content {
  grid-gap: 20px;
  padding: 20px 12px;
  background-color: var(--white);
}

.checkout_item_img img {
  --size: 92px;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  object-fit: contain;
  object-position: center;
}

.checkout_item_info {
  flex-grow: 1;
}

.checkout_item_name {
  font-size: 20px;
  font-weight: 400;
}

.checkout_item_code {
  --color: var(--gray);
  margin-top: 8px;
  font-size: 10px;
  font-family: var(--font2);
}

.checkout_item_right {
  grid-gap: 16px;
}

.checkout_item_price {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--font2);
  white-space: nowrap;
}

.checkout_item_price span {
  font-size: 25px;
}

.checkout_item_price ._old {
  --color: #C1C1C1;
  font-size: 15px;
}

.checkout_item_clear {
  --size: 24px;
}

.checkout_item_clear img {
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  object-fit: contain;
  object-position: center;
}

.checkout_item_bottom {
  padding: 15px 14px 15px 26px;
  font-size: 16px;
  background-color: var(--white);
}

.checkout_total {
  margin-top: 10px;
  padding: 30px 33px;
  font-family: var(--font2);
  background-color: var(--white);
}

.checkout_total_title {
  font-size: 30px;
  font-weight: 700;
}

.checkout_total_input {
  margin-top: 20px;
}

.checkout_total_caption {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 16px;
}

.checkout_total_input input {
  border-radius: 6px 0 0 6px;
}

.checkout_total_input button {
  width: 138px;
  min-width: 138px;
  text-align: center;
  font-size: 16px;
  background-color: #DADADA;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

.checkout_total_product {
  margin-top: 60px;
  padding-bottom: 18px;
  font-size: 20px;
  font-weight: 400;
  border-bottom: 1px solid #DADADA;
  border-radius: 6px;
}

.checkout_total_product ._price {
  font-size: 30px;
  font-weight: 700;
}

.checkout_total_product ._price span {
  font-size: 25px;
}

.checkout_total_bottom {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 600;
}

.checkout_total_bottom ._price {
  font-weight: 700;
}

.checkout_total_bottom ._old {
  color: #C1C1C1;
  font-size: 25px;
  text-decoration: line-through;
}

.checkout_total_bottom ._this {
  font-size: 40px;
}

.checkout_total_bottom ._this span {
  font-size: 40px;
}

.checkout_total_btn {
  --btn_height: 75px;
  --btn_font: 25px;
  --btn_w: 100%;
  margin-top: 48px;
}

.checkout_total_btn .__btn {
  text-transform: uppercase;
}

#checkout_items-table {
  display: none;
}

/* Checkout. */

/* Sign. */

.sign {
  --btn_w: 100%;
  --bone_w: 392px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  flex-grow: 1;
}

.sign_caption {
  margin-top: 12px;
  font-weight: 400;
}

.sign_caption span {
  font-weight: 400;
}

.sign_form {
  display: grid;
  grid-gap: 16px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.sign_form ._small_bgn {
  --btn_w: 106px !important;
  --btn_inner: 12px !important;
  --btn_height: 37px !important;
  --btn_font: 11px !important;
  text-align: right;
  margin-top: -12px;
}

.sign_form ._small_bgn .__btn {
  font-weight: 400;
}

.sign hr {
  width: 100%;
  max-width: min(90%, 326px);
  margin: 24px auto;
  border: 0 none;
  border-bottom: 1px solid #C1C1C1;
}

.sign_form hr {
  margin: 8px auto;
}

/* Sign. */

/* Cabinet. */

.cabinet {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 60px 0;
}

.cabinet_menu {
  display: none;
  --btn_w: 100%;
}

.cabinet_net {
  display: grid;
  grid-template-columns: 420px 1fr;
  grid-gap: 20px;
}

.cabinet_nav {
  overflow: hidden;
  background-color: var(--white);
}

.cabinet_close {
  display: none;
}

.cabinet_nav ul {
  --inner: 35px;
  --color: #595B59;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  grid-gap: 25px;
  margin-right: -40px;
  padding: 40px calc(40px - var(--scroll) + var(--inner)) 40px var(--inner);
}

.cabinet_nav .active {
  --color: var(--primary);
}

.cabinet_nav a,
.cabinet_nav button {
  --size: 24px;
  display: flex;
  align-items: center;
  grid-gap: 10px;
  width: 100%;
  padding: 12px;
  border-bottom: 1px solid var(--color);
  border-radius: 6px;
  transition: all .43s;
}

.cabinet_nav a:hover,
.cabinet_nav button:hover {
  cursor: pointer;
  --color: var(--accent);
}

.cabinet_nav svg {
  width: var(--size);
  height: var(--size);
}

.cabinet_nav path {
  transition: all .43s;
}

.cabinet_content {
  display: flex;
  flex-direction: column;
  padding: 40px 35px 0;
  background-color: var(--white);
}

.cabinet_top {
  grid-gap: 0 15px;
}

.cabinet_top .cabinet_title {
  margin-bottom: 0;
}

.cabinet_num {
  color: var(--primary);
  font-size: 45px;
  font-weight: 600;
  font-family: var(--font2);
}

.cabinet_title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font2);
}

.cabinet_caption {
  margin-bottom: 15px;
}

.cabinet_flex {
  grid-gap: 28px 32px;
  max-width: 716px;
}

.cabinet_list {
  counter-reset: direction;
  display: grid;
  grid-gap: 20px;
}

.cabinet_list li {
  display: flex;
  align-items: center;
  grid-gap: 15px;
}

.cabinet_list li:before {
  --size: 20px;
  counter-increment: direction;
  content: counter(direction);
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  padding-top: 2px;
  color: var(--white);
  line-height: 10px;
  font-family: var(--family);
  font-size: 12px;
  background-color: var(--primary);
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: 0px 8px 13px 0px rgba(75, 190, 1, 0.15);
}

.cabinet_green {
  max-width: 234px;
  padding: 35px;
  background: rgba(100, 255, 0, 0.06);
  border-radius: 6px;
}

.cabinet_img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-grow: 1;
}

.cabinet_img img {
  width: auto;
  max-width: 100%;
}

.cabinet_btn {
  --btn_w: 112px;
  grid-gap: 15px;
}

.cabinet .pagination:last-child {
  margin-bottom: 30px;
}

/* Cabinet. */

/* Setting. */

.setting {
  padding-bottom: 50px;
}

.setting_top {
  grid-gap: 20px 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #C1C1C1;
}

.setting_ava {
  --size: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  background-color: #EBEBEB;
  border-radius: 50%;
}

.setting_ava img {
  width: var(--size);
  height: var(--size);
  object-fit: cover;
  object-position: center;
}

.setting_ava._null img {
  --size: 24px;
}

.setting_ava p {
  font-size: 11px;
}

.setting_name {
  flex-grow: 1;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font2);
}

.setting_btn {
  --btn_w: 194px;
  width: var(--btn_w);
}

.setting_caption {
  margin-top: 24px;
  margin-bottom: 24px;
}

.setting_caption_title {
  font-weight: 700;
  font-family: var(--font2);
  text-decoration: underline;
}

.setting_caption_button {
  --size: 15px;
  grid-gap: 15px;
  font-weight: 400;
  font-family: var(--font2);
}

.setting_caption_button img {
  width: var(--size);
  height: var(--size);
  object-fit: cover;
  object-position: center;
}

.setting_form {
  grid-gap: 10px 8px;
  max-width: 620px;
}

.setting_form + .setting_form {
  margin-top: 24px;
}

.setting_form._small {
  grid-template-columns: 1fr 2fr 1fr;
}

.setting_form._small .setting_form_input {
  min-width: 0;
}

.setting_form._small input {
  max-width: none;
}

.setting_form_input:last-child {
  justify-self: end;
}

.setting_form_input {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
  min-width: 268px;
}

.setting_form_input input {
  max-width: 230px;
}



.setting_form_href {
  --size: 24px;
  margin-left: 12px;
}

.setting_form_href img {
  width: var(--size);
  height: var(--size);
  object-fit: cover;
  object-position: center;
}

/* Setting. */

/* History. */

.history {
  margin-bottom: 20px;
  font-family: var(--font2);
}

.history_net {
  display: grid;
  align-items: center;
  grid-template-columns: 40px 174px 80px 100px 80px 100px;
  justify-content: space-between;
  grid-gap: 12px;
  padding: 0 22px;
}

.history_top {
  --color: var(--white);
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  background-color: var(--primary);
  border-radius: 6px;
}

.history_tr {
  padding-top: 4px;
  padding-bottom: 1px;
  border-bottom: 3px solid #DADADA;
  border-radius: 6px;
}

.history_tr + .history_tr {
  margin-top: 16px;
}

.history_text {
  font-size: 12px;
}

.history_item {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}

.history_item_img {
  --size: 44px;
}

.history_item_img img {
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  object-fit: contain;
  object-position: center;
}

.history_item_name {
  font-size: 10px;
  font-family: var(--family);
}

.history_item_num {
  --size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  font-size: 12px;
  border: 1px solid #909090;
  border-radius: 6px;
}

.history_name {
  font-size: 12px;
  font-weight: 600;
}

.history_stat {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
}

.history_price {
  font-weight: 600;
}



/* History. */

/* Open. */

.open {
  padding-bottom: 40px;
}

.open_top {
  margin-bottom: 26px;
}

.open_back {
  --color: var(--primary);
  --size: 20px;
  grid-gap: 10px;
  font-family: var(--font2);
  font-weight: 600;
  transition: color .43s;
}

.open_back:hover {
  --color: var(--accent);
}

.open_back svg {
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
}

.open_back path {
  transition: all .43s;
}

.open_id {
  font-size: 20px;
  font-family: var(--font2);
}

.open_item {
  --inner: 26px;
  --img_size: 172px;
  --gap: 30px;
  align-items: stretch;
  grid-gap: var(--gap);
  margin-top: 20px;
  padding-left: 30px;
  padding-right: 12px;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}

.open_item_img {
  position: relative;
  width: var(--img_size);
  min-width: var(--img_size);
  max-width: var(--img_size);
}

.open_item_img:after {
  content: '';
  display: block;
  padding-bottom: 89%;
}

.open_item_img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.open_item_info {
  flex-grow: 1;
  max-width: min(365px, 100% - var(--img_size) - var(--gap));
  padding: var(--inner) 0;
}

.open_item_top {
  grid-gap: 20px;
}



.open_item_count {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 25px;
  padding: 2px 6px;
  font-size: 12px;
  font-family: var(--font2);
  border: 1px solid var(--primary);
  border-radius: 6px;
}

.open_item_btn {
  --grid_2: 2;
  grid-gap: 15px;
  margin-top: 15px;
}

.open_item_price {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--inner) 0;
  font-family: var(--font2);
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
}

.open_item_price span {
  font-size: 15px;
}

.open_item_price ._old {
  color: #C1C1C1;
  font-size: 12px;
  text-decoration: line-through;
}

.open_info {
  display: grid;
  grid-gap: 10px;
  margin-top: 10px;
}

.open_lines {
  grid-gap: 0px 10px;
}

.open_lines:first-child .open_caption {
  margin: 0;
  font-size: 15px;
}

.open_line {
  grid-gap: 32px;
  padding: 18px 20px;
  border-radius: 6px;
  border-bottom: 1px solid #DADADA;
}

.open_line:not(:first-child, :last-child) {
  flex-grow: 1;
}

.open_line b {
  color: var(--primary);
}

.open_caption {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font2);
}

.open_bottom {
  --inner: 70px;
  --color: var(--white);
  display: flex;
  align-items: center;
  grid-gap: var(--inner);
  margin-top: 30px;
  padding: 20px;
  white-space: nowrap;
  font-family: var(--font2);
  background-color: var(--primary);
  border-radius: 6px;
}

.open_bottom b {
  font-weight: 600;
}

.open_bottom_col:last-child {
  padding-left: var(--inner);
  border-left: 2px solid var(--white);
}

.open_bottom_col:last-child .open_bottom_text {
  font-size: 18px;
  line-height: 1.25rem;
}

.open_bottom_caption {
  font-size: 12px;
  margin-bottom: 10px;
}

.open_bottom_text {
  font-weight: 700;
}

/* Open. */

/* Four. */

.four {
  overflow: hidden;
  flex-grow: 1;
  position: relative;
  margin-top: 52px;
  margin-bottom: 52px;
  min-height: 480px;
}

.four_img {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: 754px;
}

.four_info {
  padding-top: 78px;
  max-width: 498px;
  font-family: var(--font2);
}

.four_title {
  font-size: 40px;
  font-weight: 700;
}

.four_text {
  margin-top: 32px;
  font-size: 20px;
  font-weight: 600;
}

/* Four. */

/* Thank. */

.thank {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-grow: 1;
  margin: 96px 0 48px;
}

.thank_img {
  max-width: 500px;
}

.thank_net,
.thank_net_twoo {
  grid-gap: 32px;
}

.thank_info {
  text-align: center;
  font-family: var(--font2);
}

.thank_title {
  font-size: 40px;
  font-weight: 700;
}

.thank_text {
  max-width: 226px;
  margin: 20px auto 0;
  font-size: 20px;
  font-weight: 600;
}

.thank_btn {
  --btn_w: 250px;
  margin: 48px auto 0;
  width: var(--btn_w);
  min-width: var(--btn_w);
}

/* Thank. */

/* About. */

.about {
  position: relative;
  margin-bottom: -78px;
}

.about_info {
  position: absolute;
  max-width: min(603px, 50%);
  padding: 30px 40px;
  background-color: var(--white);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.02);
}

.about_title {
  font-size: 25px;
  font-weight: 700;
  font-family: var(--font2);
}

.about_text {
  margin-top: 20px;
  font-weight: 400;
}

.about_text b {
  font-weight: 400;
}

.about_text p + p {
  margin-top: 1.25em;
}

.about_map {
  width: 100%;
  max-width: 792px;
  margin-left: auto;
}

/* About. */

/* Team. */



.team_info {
  max-width: min(603px, 50%);
  padding: 30px 40px;
  background-color: var(--white);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.02);
}

.team_title {
  font-size: 25px;
  font-weight: 700;
  font-family: var(--font2);
}

.team_text {
  margin-top: 20px;
  font-weight: 400;
}

.team_text b {
  font-weight: 400;
}

.team_text p + p {
  margin-top: 1.25em;
}

.team_list {
  overflow: hidden;
  --inner_slider-x: 15px;
  margin-top: 24px;
  margin-left: calc(var(--bone_size) * -1);
  margin-right: calc(var(--bone_size) * -1);
}

.team_list .slick-list {
  padding-left: var(--bone_size);
  padding-right: var(--bone_size);
}

.team_li {
  position: relative;
}

.team_li:after {
  content: '';
  display: block;
  padding-bottom: 120%;
}

.team_li img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Team. */

/* Company. */

.company {
  margin-top: 100px;
}

.company_info {
  padding: 30px 40px;
  background-color: var(--white);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.02);
}

.company_title {
  font-size: 25px;
  font-weight: 700;
  font-family: var(--font2);
}

.company_text {
  margin-top: 20px;
  font-weight: 400;
}

.company_text b {
  font-weight: 400;
}

.company_text p + p {
  margin-top: 1.25em;
}

.company_caption {
  margin-top: 50px;
  font-size: 20px;
  font-family: var(--font2);
  font-weight: 700;
  text-align: center;
}

.company_list {
  grid-gap: 15px 30px;
  margin-top: 50px;
}

.company_li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 15px 50px 0;
  background-color: var(--white);
  border-radius: 6px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.02);
}

.company_green {
  width: 100%;
  max-width: 246px;
  margin-bottom: 20px;
  padding: 12px 27px;
  text-align: center;
  background: rgba(100, 255, 0, 0.06);
  border-radius: 4.489px;
}

.company_icon {
  width: 100%;
  max-width: 300px;
}

/* Company. */

/* Staff. */

.staff {
  margin-top: 100px;
}

.staff_net {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.02);
}

.staff_info {
  padding: 30px 40px;
  background-color: var(--white);
}

.staff_title {
  font-size: 25px;
  font-family: var(--font2);
  font-weight: 700;
}

.staff_text {
  max-width: 302px;
  margin-top: 20px;
  font-weight: 400;
}

.staff_text b {
  font-weight: 400;
}

.staff_col {
  --color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background-color: #4BBE01;
  text-align: center;
}

.staff_col:nth-child(3) {
  background-color: #56D803;
}

.staff_num {
  font-size: clamp(40px, 5.2vw, 65px);
  font-family: var(--font2);
  font-weight: 600;
}

.staff_txt {
  margin-top: 10px;
  font-weight: 700;
}

/* Staff. */

/* Guar. */



.guar_title {
  font-size: 25px;
  font-weight: 700;
  font-family: var(--font2);
}

.guar_items {
  display: grid;
  grid-template-columns: repeat(var(--grid_3), 1fr);
  grid-gap: 20px;
  margin-top: 20px;
}

.guar_item {
  padding: 0 32px 28px;
  background-color: var(--white);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.02);
  border-radius: 6px;
}

.guar_item:nth-child(4) {
  grid-row: 2/3;
  grid-column: 1/3;
}

.guar_item:nth-child(4) .guar_icon {
  max-width: none;
}



.guar_name {
  margin-top: 4px;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font2);
}

.guar_name + .guar_text {
  margin-top: 0;
}

.guar_text {
  margin-top: 32px;
  max-width: 724px;
}

.guar_text a {
  text-decoration: underline;
  color: var(--primary);
  transition: color .43s;
}

.guar_text a:hover {
  color: var(--accent);
}

.guar_caption {
  margin-top: 100px;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font2);
  text-align: center;
}

.guar_list {
  grid-gap: 20px;
  margin-top: 50px;
}

.guar_li {
  display: flex;
  align-items: center;
  min-height: 80px;
  padding: 20px 28px 20px 40px;
  font-weight: 400;
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  background-color: var(--white);
}

.guar_li b {
  font-weight: 400;
}

.guar_li:last-child:nth-child(odd) {
  grid-column: 1/3;
}

.guar_return {
  display: grid;
  grid-template-columns: 414px 1fr;
  margin-top: 100px;
  background-color: var(--white);
  border-radius: 15px;
}

.guar_return_info {
  --color: var(--white);
  padding: 36px 32px 40px;
  background-color: var(--primary);
  border-radius: 15px;
  max-width: 414px;
  margin: 0 auto;
}

.guar_return_title {
  font-size: 20px;
  font-weight: 900;
  font-family: var(--font2);
  text-align: center;
}

.guar_return_text {
  margin-top: 28px;
  font-weight: 400;
}

.guar_return_text u {
  font-weight: 500;
}

.guar_return_caption {
  margin-top: 36px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font2);
  text-align: center;
}

.guar_return_list {
  display: flex;
  grid-gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.guar_return_li {
  --color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  max-width: 200px;
  min-width: 138px;
  height: 63px;
  padding: 12px 15px;
  background-color: var(--white);
  border-radius: 6px;
  text-align: center;
}

.guar_return_img {
  max-width: 600px;
  margin: 0 auto;
}

._delivery .guar_icon {
  max-width: 266px;
  margin: 0 auto;
}

/* Guar. */

/* Delivery. */

.delivery {
  margin-top: 100px;
}

.delivery_title {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font2);
  text-align: center;
}

.delivery_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-top: 50px;
}

.delivery_li {
  padding: 0 12px 24px;
  text-align: center;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.02);
}



.delivery_text {
  margin: 10px auto 0;
  font-size: 18px;
  font-weight: 700;
  max-width: 236px;
  line-height: 1.3;
}

/* Delivery. */

/* Blog. */

._blog {
  background-color: var(--white);
}

.blog_title {
  margin-bottom: 24px;
  font-size: 25px;
  font-weight: 700;
  font-family: var(--font2);
}

.blog_net {
  display: grid;
  grid-template-columns: 1fr 300px;
  justify-content: space-between;
  grid-gap: 20px;
}

.blog_net:not(:last-child) {
  margin-bottom: 100px;
}

.blog_post {
  max-width: 930px;
}

.blog_post_img {
  margin-bottom: 20px;
}

.blog_post_name {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font2);
}

.blog_post_text {
  margin-top: 16px;
}

.blog_post_text p + p {
  margin-top: 1em;
}

.blog_post_date {
  display: inline-block;
  margin-top: 20px;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 6px;
  background-color: #F8F8F8;
}

.blog_nav ul {
  display: grid;
  grid-gap: 16px;
}

.blog_nav a {
  --icon_size: 20px;
  position: relative;
  display: block;
  padding: 6px 5px 6px 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font2);
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  border-radius: 6px;
  transition: color .43s, border-color .43s;
}

.blog_list {
  grid-gap: 20px;
}

.blog_li {
  display: flex;
  align-items: stretch;
  background: #FFF;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.11);
}

.blog_li_img {
  width: min(296px, 50%);
  min-width: min(296px, 50%);
}

.blog_li_img img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog_li_info {
  padding: 26px 12px 26px 20px;
}

.blog_li_name {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font2);
}

.blog_li_text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  margin-top: 12px;
}

.blog_li_date {
  display: inline-block;
  margin-top: 13px;
  margin-left: -20px;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 0 6px 6px 0;
  background-color: #F8F8F8;
}

.blog_triger {
  display: none;
}

.blog_nav_top {
  margin-bottom: 20px;
}

.blog_nav_title {
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font2);
}

.blog_nav_close {
  --size: 12px;
  width: var(--size);
  height: var(--size);
}

/* Blog. */

/* Compare. */



.compare_top {
  margin-bottom: 24px;
}

.compare_title {
  font-size: 20px;
  font-family: var(--font2);
  font-weight: 700;
}

.compare_clear {
  display: none;
}



.compare_table_top {
  overflow: hidden;
  grid-gap: 40px;
}

.compare_table_tabs {
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
  margin-bottom: -40px;
  padding-bottom: calc(40px - var(--scroll));
}

.compare_table_tab {
  min-width: 260px;
  padding: 12px 20px;
  font-size: 15px;
  font-family: var(--font2);
  font-weight: 600;
  text-align: center;
  background-color: var(--white);
  border: 1px solid #DADADA;
  border-radius: 0 15px 0 0;
  transition: all .43s;
}

.compare_table_tab:not(:first-child) {
  margin-left: -20px;
  padding-left: 40px;
}

.compare_table_tab.active {
  --color: var(--white);
  border-color: var(--primary);
  background-color: var(--primary);
}

.compare_table_tab:not(.active):hover {
  --color: var(--white);
  border-color: var(--accent);
  background-color: var(--accent);
}

.compare_table_clear {
  --color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
  min-width: 200px;
  padding: 12px 20px;
  font-size: 15px;
  font-family: var(--font2);
  font-weight: 600;
  text-align: center;
  background-color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 15px 0 0 0;
  cursor: pointer;
  transition: all .43s;
}

.compare_table_clear img {
  width: 15px;
  min-width: 15px;
  height: 15px;
}

.compare_table_head {
  position: relative;
  border: 1px solid #DADADA;
  border-top: 0 none;
  box-shadow: 0 -1px 0 #DADADA;
  z-index: 2;
}

.compare_table .slick-arrow {
  top: calc(50% - 30px);
  height: 60px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.compare_table .slick-arrow.slick-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.compare_table_item {
  padding: 10px 12px 20px;
  background-color: var(--white);
}

.compare_table_item:not(:first-child) {
  border-left: 1px solid #DADADA;
}



.compare_table_item_code {
  --color: var(--gray);
  font-size: 10px;
  font-family: var(--font2);
}

.compare_table_item_remove {
  --color: var(--accent);
  cursor: pointer;
  width: 20px;
}

.compare_table_item_remove path {
  transition: fill .43s;
}

.compare_table_item_remove:hover {
  --color: var(--primary);
}

/*.compare_table_sticky_wrapper {
	position: sticky;
	top: 0;

	z-index: 1;
}

.compare_table_sticky {
	position: absolute;
	left: 0;
	right: 0;

	border: 1px solid #DADADA;
	border-top: 0 none;
}

.compare_table_center {
	grid-gap: 12px;

	margin-top: 12px;
}

.compare_table_center > * {
	margin: 0 !important;
}

.compare_table_center .compare_table_item_img {
	min-width: 60px;
}

.compare_table_center .compare_table_item_name {
	font-size: 12px;
}*/

.compare_table_item_img {
  position: relative;
  max-width: 228px;
  margin: 12px auto 0;
}

.compare_table_item_img:after {
  content: '';
  display: block;
  padding-bottom: 100%;
}

.compare_table_item_img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.compare_table_item_name {
  font-weight: 400;
  margin-top: 20px;
}

.compare_table_item_bottom {
  --btn_height: 45px;
  margin-top: 16px;
}

.compare_table_item_price {
  font-size: 20px;
  font-family: var(--font2);
  font-weight: 700;
}

.compare_table_item_price span {
  font-size: var(--body);
}

.compare_table_item_price ._old {
  color: #C1C1C1;
  font-size: 12px;
  text-decoration: line-through;
}

.compare_table_name {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-weight: 600;
  background-color: #F5F5F5;
  border-left: 1px solid #DADADA;
  border-right: 1px solid #DADADA;
}

.compare_table_row {
  border: 1px solid #DADADA;
}

.compare_table_info_col {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background-color: var(--white);
}

.compare_table_info_col:not(:first-child) {
  border-left: 1px solid #DADADA;
}

/* Compare. */

/* Credit. */

.credit {
  flex-grow: 1;
}

.credit_title {
  font-size: 20px;
  font-family: var(--font2);
  font-weight: 700;
}

.credit_block {
  overflow: hidden;
  position: relative;
  margin-top: 20px;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.02);
  z-index: 1;
}

.credit_left {
  padding: 32px;
}

.credit_caption {
  font-size: 18px;
  font-weight: 700;
}

.credit_list {
  counter-reset: direction;
  display: grid;
  grid-gap: 15px;
  margin-top: 24px;
  line-height: 1.3;
}

.credit_li {
  display: flex;
  grid-gap: 20px;
}

.credit_li:before {
  --size: 20px;
  counter-increment: direction;
  content: counter(direction);
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  margin-top: -2px;
  padding-top: 2px;
  color: var(--white);
  line-height: 10px;
  font-family: var(--family);
  font-size: 12px;
  font-weight: 800;
  background-color: var(--primary);
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: 0px 8px 13px 0px rgba(75, 190, 1, 0.15);
}

.credit_img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -4px;
  max-width: 800px;
  z-index: -1;
}

.credit_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.credit_table_wrapper {
  overflow: hidden;
  margin: 0 calc(var(--bone) * -1) 0;
}

.credit_table_scroll {
  overflow-x: scroll;
  margin-bottom: -40px;
  padding-bottom: calc(40px - var(--scroll));
}

.credit_table {
  width: 100%;
  min-width: 1312px;
  border-spacing: 0;
  padding: 52px var(--bone);
}

.credit_table th {
  color: var(--white);
  background: var(--primary);
  text-align: left;
  vertical-align: top;
  padding: 16px 24px 30px;
  white-space: nowrap;
}

.credit_table th:first-child,
.credit_table td:first-child {
  border-radius: 6px 0 0 6px;
}

.credit_table th:last-child,
.credit_table td:last-child {
  border-radius: 0 6px 6px 0;
}

.credit_table tr:not(:first-child) {
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.05);
}

.credit_table td {
  padding: 24px;
  background: var(--white);
  border-bottom: 3px solid #DADADA;
}

.credit_table p {
  color: #6C6C6C;
  font-family: var(--font2);
  font-weight: 400;
  line-height: 107.9%;
}

.credit_table img {
  width: auto;
  max-width: 132px;
}

.credit_pozor {
  padding: 30px 43.98px 37px 44.5px;
  font-weight: 700;
  line-height: 130.9%;
  border-radius: 6px;
  border-left: 3px solid var(--red);
  background: var(--white);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.02);
}

/* Credit. */

/* Faq. */

.faq {
  margin-top: 100px;
}

.faq_title {
  font-size: 18px;
  font-family: var(--font2);
  font-weight: 700;
}

.faq_list {
  display: grid;
  grid-gap: 15px;
  margin-top: 20px;
}

.faq_li {
  --size: 36px;
  --inner: 28px 40px;
  --inner_r: 40px;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.02);
}

.faq_triger {
  position: relative;
  padding: var(--inner);
  padding-right: calc(var(--inner_r) * 2 + var(--size));
  cursor: pointer;
}

.faq_triger:before {
  content: '';
  position: absolute;
  top: calc(50% - var(--size) / 2);
  right: var(--inner_r);
  width: var(--size);
  height: var(--size);
  border-radius: max(var(--size) * .16, 4px);
  background: var(--primary);
  box-shadow: -10px 0px 14px 0px rgba(0, 0, 0, 0.06);
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='19' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.56445 9.03711C2.56445 12.8681 5.6702 15.9746 9.50195 15.9746C13.333 15.9746 16.4395 12.8681 16.4395 9.03711C16.4395 5.20611 13.333 2.09961 9.50195 2.09961C5.6702 2.09961 2.56445 5.20611 2.56445 9.03711Z' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.89844 7.95508L9.50169 10.5696L12.1049 7.95508' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: max(var(--size) * .5, 12px);
  transition: all .43s;
}

.faq_triger.active:before {
  background-color: #F6FFF0;
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='19' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.4395 9C16.4395 5.169 13.3337 2.0625 9.50195 2.0625C5.67095 2.0625 2.56445 5.169 2.56445 9C2.56445 12.831 5.67095 15.9375 9.50195 15.9375C13.3337 15.9375 16.4395 12.831 16.4395 9Z' stroke='%234BBE01' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.1055 10.082L9.50222 7.46753L6.89897 10.082' stroke='%234BBE01' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.faq_content {
  display: none;
  padding: var(--inner);
  border-top: 1px solid #DADADA;
}

/* Faq. */
/* Procuts. */

.products_list .product:hover,
.category_list .product:hover {
  filter: drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.11));
  z-index:2;
}

.products_list .product:nth-child(5n + 5) .product_credit_info,
.category_list .product:nth-child(4n + 4) .product_credit_info {
  left: 50%;
  transform: translate3d(-50%, 0px, 0px);
}

.products_list .product:nth-child(5n + 5) .product_credit_info:before,
.category_list .product:nth-child(4n + 4) .product_credit_info:before {
  left: calc(50% - (var(--size) - 20px)/ 2);
  transform: translate3d(-50%, 0px, 0px);
}

/* Procuts. */

/* Modal. */

.modal {
  --modal_w: 494px;
  --modal_inner: 50px;
  --modal_close: 22px;
  --hide: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  transition: opacity .43s;
}

.modal_viel {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  opacity: 0.92;
  z-index: -1;
  transition: opacity .83s;
}

.modal:not(.active) {
  pointer-events: none;
  opacity: 0;
}

.modal_wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - var(--bone_size) * 2);
  max-width: var(--modal_w);
  background: white;
}

.modal_scroll {
  overflow-y: scroll;
  position: relative;
  width: calc(100% + var(--hide));
  max-height: calc(100vh - 80px);
  margin-right: calc(var(--hide) * -1);
  padding: 80px calc(var(--hide) - var(--scroll) + var(--modal_inner)) 60px var(--modal_inner);
}

.modal_close {
  --size: var(--modal_close);
  top: 24px;
  right: 24px;
}

#out-modal .modal_wrapper {
  border-radius: 6px;
}

#out-modal .modal_title {
  font-size: 25px;
  font-weight: 600;
  font-family: var(--font2);
}

#out-modal .modal_btn {
  grid-gap: 10px;
  margin-top: 52px;
  width: 100%;
}

#out-modal .modal_btn .__btn {
  flex-grow: 1;
}

#cong-modal {
  text-align: center;
}

#cong-modal .modal_wrapper {
  border-radius: 6px;
}

.cong_title {
  font-size: 50px;
  font-weight: 600;
  font-family: var(--font2);
  color: var(--primary);
}

.cong_caption {
  max-width: 348px;
  margin: 20px auto 0;
  font-size: 20px;
  font-family: var(--font2);
  font-weight: 400;
}

.cong_line {
  width: min(326px, 100%);
  margin: 20px auto 0;
  border-bottom: 1px solid #C1C1C1;
}



.cong_green {
  width: min(360px, 100%);
  margin: 40px auto 0;
  padding: 16px 44px;
  font-size: 20px;
  background: rgba(100, 255, 0, 0.06);
  border-radius: 6px;
}

/* Modal. */

/* Message. */

.message {
  position: absolute;
  right: var(--bone_size);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  grid-gap: 20px;
  max-width: 300px;
  margin-top: 12px;
  padding: 20px 28px;
  font-weight: 600;
  font-family: var(--font2);
  background-color: var(--white);
  border-radius: 6px;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(0,0,0,.11);
}

.message_close {
  --size: 20px;
  position: static;
  margin-top: calc(var(--size) * -.1);
  min-width: var(--size);
}

/* Message. */
 
/* Exchange. */

._exchange {
  counter-reset: direction;
}

.exchange {
  margin-top: 50px;
}

.exchange_top {
  max-width: 325px;
  margin-bottom: 20px;
  padding: 17px 29.581px 17px 39.032px;
  background: rgba(100, 255, 0, 0.06);
  border-radius: 4.489px;
}

._exchange-num {
  --size: 35px;
  position: relative;
  margin-left: calc(var(--size) / 2);
}

._exchange-num:before {
  counter-increment: direction;
  content: counter(direction);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - var(--size) / 2);
  left: calc(var(--size) / -2);
  width: var(--size);
  height: var(--size);
  max-height: var(--size);
  color: var(--white);
  padding-top: 4px;
  font-family: var(--family);
  font-size: 22.689px;
  font-weight: 800;
  line-height: 30px;
  border-radius: 50%;
  background-color: var(--primary);
  box-shadow: 0px 11.344483375549316px 18.907472610473633px 0px rgba(75, 190, 1, 0.23);
  box-sizing: border-box;
}


._exchange-num.item-2:before {
content: '2';	
}
._exchange-num.item-3:before {
content: '3';	
}

._exchange-num._white {
  margin-left: 0;
  padding-left: calc(var(--size) + 12px);
  text-align: right;
}

._exchange-num._white:before {
  left: 0;
  color: var(--primary);
  background-color: var(--white);
  box-shadow: 0px 11.344483375549316px 18.907472610473633px 0px rgba(75, 190, 1, 0.23);
}

.exchange_img {
  align-self: end;
  margin-top: -72px;
}

/* Exchange. */

/* Gallery. */

.gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-left: var(--bone_size);
  padding-right: var(--bone_size);
  z-index: 99999;
  transition: opacity .43s;
}

.gallery_bg {
  overflow: hidden;
  pointer-events: visible;
  width: 100%;
  max-height: 90vh;
  padding: 0px 52px;
  background-color: var(--white);
}

.gallery_veil {
  pointer-events: visible;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.58;
  z-index: -1;
}

.gallery:not(.active) {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s .43s, opacity .43s;
}

.gallery_wrapper {
  --size: 100px;
  display: flex;
  grid-gap: 50px;
}

.gallery_active {
  padding: 10px 20px;
  border: 1px solid #F2F2F2;
  border-radius: 6px;
}

.gallery_active .slick-slide {
  position: relative;
  width: 100%;
  max-height: 520px;
}

.gallery_active .slick-slide:after {
  content: '';
  display: block;
  padding-bottom: 95%;
}

.gallery_active .slick-slide img,
.gallery_active .slick-slide iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.gallery_images {
  width: var(--size);
  height: 100%;
}

.gallery_images {
  --inner_slider-y: 5px;
  --inner_slider-x: 0px;
  --inner_slider-shadow: 0px;
}

.gallery_images .slick-list {
  position: relative;
  margin: min(var(--inner_slider-y) * -1, var(--inner_slider-shadow) * -1) min(var(--inner_slider-x) / -2, var(--inner_slider-shadow) * -1);
  margin-bottom: -200px;
  padding: 0 max(var(--inner_slider-shadow) - var(--inner_slider-x) / 2, 0);
  padding-bottom: 200px;
}

.gallery_images .slick-list:before {
  pointer-events: none;
  content: '';
  position: absolute;
  left: -20px;
  right: -20px;
  bottom: 0;
  height: 170px;
  background-color: var(--white);
  filter: blur(13.5px);
  z-index: 10;
}

.gallery_images .slick-track {
  flex-direction: column;
}

.gallery_images .slick-slide {
  position: relative;
  margin: var(--inner_slider-y) calc(var(--inner_slider-x) / 2);
}

.gallery_images .slick-slide:after {
  content: '';
  display: block;
  padding-bottom: 100%;
}

.gallery_images .slick-slide:not(.slick-active) + .slick-slide.slick-active:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 2px;
  border: 1px solid var(--primary);
  z-index: 1;
}

.gallery_images .slick-slide img,
.gallery_images .slick-slide iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 1px solid #DADADA;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  z-index: 1;
  transition: border-color .43s;
}

.gallery_active {
  width: calc(100% - var(--size) - 50px);
}



.gallery_active .slick-arrow {
  --size: 44px;
  --arrow_size: 44px;
  left: 40px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='path-1-outside-1_356_1117' maskUnits='userSpaceOnUse' x='1.04199' y='1.04297' width='42' height='42' fill='black'%3E%3Crect fill='white' x='1.04199' y='1.04297' width='42' height='42'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.63975 21.8418C3.63975 11.7948 11.8121 3.64072 21.8409 3.64072L22.3501 3.64772C32.162 3.91768 40.042 11.9651 40.042 21.8418C40.042 31.8707 31.8879 40.043 21.8409 40.043C11.8121 40.043 3.63975 31.8707 3.63975 21.8418ZM25.4448 29.1216C25.9726 28.5755 25.9726 27.7201 25.4266 27.1923L20.0573 21.8411L25.4266 16.49C25.9726 15.9622 25.9726 15.0885 25.4448 14.5607C24.8988 14.0146 24.0433 14.0146 23.5155 14.5607L17.1633 20.8765C16.9085 21.1313 16.7629 21.4771 16.7629 21.8411C16.7629 22.2051 16.9085 22.551 17.1633 22.8058L23.5155 29.1216C23.7703 29.3946 24.1161 29.522 24.462 29.522C24.826 29.522 25.1718 29.3946 25.4448 29.1216Z'/%3E%3C/mask%3E%3Cpath d='M21.8409 3.64072L21.8724 1.34891L21.8566 1.34869H21.8409V3.64072ZM22.3501 3.64772L22.4131 1.35655L22.3973 1.35612L22.3816 1.3559L22.3501 3.64772ZM25.4266 27.1923L23.8087 28.8157L23.821 28.828L23.8336 28.8402L25.4266 27.1923ZM25.4448 29.1216L27.0655 30.7423L27.0793 30.7285L27.0928 30.7146L25.4448 29.1216ZM20.0573 21.8411L18.4393 20.2177L16.8103 21.8411L18.4393 23.4646L20.0573 21.8411ZM25.4266 16.49L23.8336 14.842L23.821 14.8542L23.8087 14.8665L25.4266 16.49ZM23.5155 14.5607L25.1315 16.186L25.1477 16.17L25.1634 16.1537L23.5155 14.5607ZM17.1633 20.8765L15.5473 19.2511L15.5426 19.2557L17.1633 20.8765ZM17.1633 22.8058L15.5426 24.4265L15.5473 24.4311L17.1633 22.8058ZM23.5155 29.1216L25.1911 27.5577L25.1619 27.5264L25.1315 27.4962L23.5155 29.1216ZM21.8409 1.34869C10.5477 1.34869 1.34771 10.5275 1.34771 21.8418H5.93178C5.93178 13.0622 13.0764 5.93276 21.8409 5.93276V1.34869ZM22.3816 1.3559L21.8724 1.34891L21.8094 5.93254L22.3186 5.93954L22.3816 1.3559ZM42.334 21.8418C42.334 10.7203 33.4623 1.66055 22.4131 1.35655L22.287 5.93889C30.8616 6.1748 37.75 13.21 37.75 21.8418H42.334ZM21.8409 42.335C33.1552 42.335 42.334 33.135 42.334 21.8418H37.75C37.75 30.6063 30.6205 37.7509 21.8409 37.7509V42.335ZM1.34771 21.8418C1.34771 33.1365 10.5462 42.335 21.8409 42.335V37.7509C13.0779 37.7509 5.93178 30.6048 5.93178 21.8418H1.34771ZM23.8336 28.8402C23.4373 28.4571 23.4763 27.8601 23.7969 27.5286L27.0928 30.7146C28.469 29.2909 28.508 26.983 27.0196 25.5443L23.8336 28.8402ZM18.4393 23.4646L23.8087 28.8157L27.0446 25.5688L21.6752 20.2177L18.4393 23.4646ZM23.8087 14.8665L18.4393 20.2177L21.6752 23.4646L27.0446 18.1135L23.8087 14.8665ZM23.8241 16.1814C23.4522 15.8095 23.4524 15.2106 23.8336 14.842L27.0196 18.1379C28.4929 16.7138 28.4931 14.3675 27.0655 12.94L23.8241 16.1814ZM25.1634 16.1537C24.7753 16.5552 24.1577 16.515 23.8241 16.1814L27.0655 12.94C25.6399 11.5143 23.3113 11.4741 21.8676 12.9677L25.1634 16.1537ZM18.7794 22.5018L25.1315 16.186L21.8994 12.9353L15.5473 19.2511L18.7794 22.5018ZM19.0549 21.8411C19.0549 22.0919 18.9541 22.3271 18.784 22.4972L15.5426 19.2557C14.8628 19.9355 14.4708 20.8623 14.4708 21.8411H19.0549ZM18.784 21.1851C18.9541 21.3552 19.0549 21.5904 19.0549 21.8411H14.4708C14.4708 22.8199 14.8628 23.7467 15.5426 24.4265L18.784 21.1851ZM25.1315 27.4962L18.7794 21.1804L15.5473 24.4311L21.8994 30.7469L25.1315 27.4962ZM24.462 27.23C24.6757 27.23 24.9633 27.3136 25.1911 27.5577L21.8399 30.6855C22.5773 31.4755 23.5566 31.814 24.462 31.814V27.23ZM23.8241 27.5009C23.9079 27.417 24.0166 27.3436 24.1413 27.2941C24.2634 27.2455 24.3753 27.23 24.462 27.23V31.814C25.3849 31.814 26.3292 31.4786 27.0655 30.7423L23.8241 27.5009Z' fill='%234BBE01' mask='url(%23path-1-outside-1_356_1117)'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 0;
  box-shadow: none;
  z-index: 9999999;
  transform: translate3d(0, 0px, 0px) !important;
  transition: background-image .43s;
}

.gallery_active .slick-arrow:before {
  display: none;
}

.gallery_active .slick-arrow:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='path-1-outside-1_356_1117' maskUnits='userSpaceOnUse' x='1.04199' y='1.04297' width='42' height='42' fill='black'%3E%3Crect fill='white' x='1.04199' y='1.04297' width='42' height='42'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.63975 21.8418C3.63975 11.7948 11.8121 3.64072 21.8409 3.64072L22.3501 3.64772C32.162 3.91768 40.042 11.9651 40.042 21.8418C40.042 31.8707 31.8879 40.043 21.8409 40.043C11.8121 40.043 3.63975 31.8707 3.63975 21.8418ZM25.4448 29.1216C25.9726 28.5755 25.9726 27.7201 25.4266 27.1923L20.0573 21.8411L25.4266 16.49C25.9726 15.9622 25.9726 15.0885 25.4448 14.5607C24.8988 14.0146 24.0433 14.0146 23.5155 14.5607L17.1633 20.8765C16.9085 21.1313 16.7629 21.4771 16.7629 21.8411C16.7629 22.2051 16.9085 22.551 17.1633 22.8058L23.5155 29.1216C23.7703 29.3946 24.1161 29.522 24.462 29.522C24.826 29.522 25.1718 29.3946 25.4448 29.1216Z'/%3E%3C/mask%3E%3Cpath d='M21.8409 3.64072L21.8724 1.34891L21.8566 1.34869H21.8409V3.64072ZM22.3501 3.64772L22.4131 1.35655L22.3973 1.35612L22.3816 1.3559L22.3501 3.64772ZM25.4266 27.1923L23.8087 28.8157L23.821 28.828L23.8336 28.8402L25.4266 27.1923ZM25.4448 29.1216L27.0655 30.7423L27.0793 30.7285L27.0928 30.7146L25.4448 29.1216ZM20.0573 21.8411L18.4393 20.2177L16.8103 21.8411L18.4393 23.4646L20.0573 21.8411ZM25.4266 16.49L23.8336 14.842L23.821 14.8542L23.8087 14.8665L25.4266 16.49ZM23.5155 14.5607L25.1315 16.186L25.1477 16.17L25.1634 16.1537L23.5155 14.5607ZM17.1633 20.8765L15.5473 19.2511L15.5426 19.2557L17.1633 20.8765ZM17.1633 22.8058L15.5426 24.4265L15.5473 24.4311L17.1633 22.8058ZM23.5155 29.1216L25.1911 27.5577L25.1619 27.5264L25.1315 27.4962L23.5155 29.1216ZM21.8409 1.34869C10.5477 1.34869 1.34771 10.5275 1.34771 21.8418H5.93178C5.93178 13.0622 13.0764 5.93276 21.8409 5.93276V1.34869ZM22.3816 1.3559L21.8724 1.34891L21.8094 5.93254L22.3186 5.93954L22.3816 1.3559ZM42.334 21.8418C42.334 10.7203 33.4623 1.66055 22.4131 1.35655L22.287 5.93889C30.8616 6.1748 37.75 13.21 37.75 21.8418H42.334ZM21.8409 42.335C33.1552 42.335 42.334 33.135 42.334 21.8418H37.75C37.75 30.6063 30.6205 37.7509 21.8409 37.7509V42.335ZM1.34771 21.8418C1.34771 33.1365 10.5462 42.335 21.8409 42.335V37.7509C13.0779 37.7509 5.93178 30.6048 5.93178 21.8418H1.34771ZM23.8336 28.8402C23.4373 28.4571 23.4763 27.8601 23.7969 27.5286L27.0928 30.7146C28.469 29.2909 28.508 26.983 27.0196 25.5443L23.8336 28.8402ZM18.4393 23.4646L23.8087 28.8157L27.0446 25.5688L21.6752 20.2177L18.4393 23.4646ZM23.8087 14.8665L18.4393 20.2177L21.6752 23.4646L27.0446 18.1135L23.8087 14.8665ZM23.8241 16.1814C23.4522 15.8095 23.4524 15.2106 23.8336 14.842L27.0196 18.1379C28.4929 16.7138 28.4931 14.3675 27.0655 12.94L23.8241 16.1814ZM25.1634 16.1537C24.7753 16.5552 24.1577 16.515 23.8241 16.1814L27.0655 12.94C25.6399 11.5143 23.3113 11.4741 21.8676 12.9677L25.1634 16.1537ZM18.7794 22.5018L25.1315 16.186L21.8994 12.9353L15.5473 19.2511L18.7794 22.5018ZM19.0549 21.8411C19.0549 22.0919 18.9541 22.3271 18.784 22.4972L15.5426 19.2557C14.8628 19.9355 14.4708 20.8623 14.4708 21.8411H19.0549ZM18.784 21.1851C18.9541 21.3552 19.0549 21.5904 19.0549 21.8411H14.4708C14.4708 22.8199 14.8628 23.7467 15.5426 24.4265L18.784 21.1851ZM25.1315 27.4962L18.7794 21.1804L15.5473 24.4311L21.8994 30.7469L25.1315 27.4962ZM24.462 27.23C24.6757 27.23 24.9633 27.3136 25.1911 27.5577L21.8399 30.6855C22.5773 31.4755 23.5566 31.814 24.462 31.814V27.23ZM23.8241 27.5009C23.9079 27.417 24.0166 27.3436 24.1413 27.2941C24.2634 27.2455 24.3753 27.23 24.462 27.23V31.814C25.3849 31.814 26.3292 31.4786 27.0655 30.7423L23.8241 27.5009Z' fill='%23F8B200' mask='url(%23path-1-outside-1_356_1117)'/%3E%3C/svg%3E%0A") !important;
}

.gallery_active .slick-arrow.slick-next {
  left: auto;
  right: 40px;
  transform: rotate(200grad) !important;
}

.gallery_top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-gap: 20px;
  padding: 10px 0;
}



.gallery_close {
  --size: 32px;
  position: absolute;
  right: -40px;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  cursor: pointer;
}

.gallery_close:hover path {
  fill: var(--accent);
}

.gallery_close path {
  transition: fill .43s;
}

.gallery_bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-gap: 20px;
  margin: 40px 0;
}

.gallery_price {
  position: relative;
  font-family: var(--font2);
  font-size: 35px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.05;
}

.gallery_price span {
  font-size: 25px;
}

.gallery_price ._sale {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2px 6px;
  color: var(--white);
  font-size: 12px;
  background-color: #FF1515;
  border-radius: 3px;
}

.gallery_price ._old {
  --color: #C1C1C1;
  font-size: var(--body);
  text-decoration: line-through;
}

/* Gallery. */


@media only screen and (min-width: 601px) {
  /* Product. v2. */

  ._vw .product_btn {
    margin-left: 0;
  }

  ._vw .product_btn .__btn {
    border-radius: 6px;
  }

  ._vw .product_btn picture {
    display: block !important;
  }

  ._vw .product_btn .__btn p {
    display: block !important;
  }

  ._vw .product_btn .__btn {
    width: auto !important;
    padding: 0 var(--btn_inner) !important;
  }

  /* Product. v2. */

  /* Shop. */

  .shop {
    margin-bottom: 100px;
  }

  /* Shop. */
}

@media only screen and (min-width: 771px) {
  /* Info. */

  .info_tab {
    position: relative;
  }

  .info_tab:nth-child(1) {
    z-index: 4;
  }

  .info_tab:nth-child(2) {
    z-index: 3;
  }

  .info_tab:nth-child(3) {
    z-index: 2;
  }

  .info_tab:nth-child(4) {
    z-index: 1;
  }

  .info_tab:not(:first-child) {
    margin-left: -40px;
  }

  .info_tab:not(:first-child) > button {
    padding-left: 40px;
  }

  .info_tab > button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 100%;
    font-weight: 600;
    font-family: var(--font2);
    background-color: var(--white);
    border-top: 0.6px solid #DADADA;
    border-right: 0.6px solid #DADADA;
    border-left: 0.6px solid #DADADA;
    border-radius: 0px 15px 0px 0px;
    transition: background-color .43s, color .43s;
  }

  .info_tab > button.active {
    color: var(--white);
    background-color: var(--primary);
  }

  .info_tab > button:hover:not(.active) {
    color: var(--white);
    background-color: var(--accent);
    cursor: pointer;
  }

  /* Info. */

  /* Blog. */

  .blog_nav a:before {
    content: '';
    position: absolute;
    top: calc(50% - var(--icon_size) / 2);
    right: 5px;
    width: var(--icon_size);
    height: var(--icon_size);
    background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.6344 14.4912V7.26706C18.6344 4.75039 16.8519 3.17122 14.3294 3.17122H7.52277C5.00027 3.17122 3.21777 4.74206 3.21777 7.26706L3.21777 14.4912C3.21777 17.0162 5.00027 18.5879 7.52277 18.5879H14.3294C16.8519 18.5879 18.6344 17.0162 18.6344 14.4912Z' stroke='%234BBE01' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.3315 10.8802H7.52148' stroke='%234BBE01' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.1943 7.75529L14.331 10.8786L11.1943 14.002' stroke='%234BBE01' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: background-image .43s;
  }

  .blog_nav a:hover {
    color: var(--accent);
    border-color: var(--accent);
  }

  .blog_nav a:hover:before {
    background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.6344 14.4912V7.26706C18.6344 4.75039 16.8519 3.17122 14.3294 3.17122H7.52277C5.00027 3.17122 3.21777 4.74206 3.21777 7.26706L3.21777 14.4912C3.21777 17.0162 5.00027 18.5879 7.52277 18.5879H14.3294C16.8519 18.5879 18.6344 17.0162 18.6344 14.4912Z' stroke='%23F8B200' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.3315 10.8802H7.52148' stroke='%23F8B200' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.1943 7.75529L14.331 10.8786L11.1943 14.002' stroke='%234BBE01' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  }

  .blog_nav_top {
    display: none;
  }

  /* Blog. */

  /* Compare. */

  .compare_table_item_bottom .__btn {
    border-radius: 0 6px 6px 0;
    margin-left: -12px;
    padding-left: 12px;
  }

  /* Compare. */
}

@media only screen and (min-width: 901px) {
  /* Header. */

  .header_catalog {
    position: relative;
  }

  .header_catalog_triger {
    grid-gap: 12px;
    width: var(--catalog_size);
    height: var(--height);
    padding: 12px 40px;
    font-size: 17px;
    background-color: var(--dark);
    z-index: 100;
  }

  .header_catalog_triger img {
    --size: 18px;
  }

  .header_catalog_veil {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background-color: #000;
    opacity: 0.2;
    transition: opacity .43s;
  }

  .header_catalog_triger:not(.active) ~ .header_catalog_veil {
    pointer-events: none;
    opacity: 0;
  }

  .header_catalog_close,
  .header_catalog_back {
    display: none;
  }

  .header_top_nav_info {
    position: absolute;
    left: 0;
    z-index: 999;
    transition: margin .43s, opacity .43s;
  }

  .header_top_nav_info ul {
    display: grid !important;
    grid-gap: 8px;
    width: 152px;
    margin-top: 20px;
    padding: 20px 18px;
    font-weight: 400;
    background-color: var(--white);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    z-index: 1;
  }

  .header_coll_info {
    position: absolute;
    right: 0;
    width: 364px;
    margin-top: 12px;
    padding: 30px 18px;
    background-color: var(--white);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    z-index: 999;
    transition: margin-top .43s, opacity .43s;
  }

  .header_coll_info:after {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 13px;
  }

  .header_coll:not(:hover) .header_coll_info {
    pointer-events: none;
    margin-top: 20px;
    opacity: 0;
  }

  /* Header. */

  /* Bar. */

  .bar,
  .bar_burger {
    display: none;
  }

  /* Bar. */
}

@media only screen and (min-width: 1200px) {
  /* Header. */

  body._home .header_catalog_wrapepr:hover ~ .header_catalog_veil {
    opacity: 0.2;
  }

  body._home .header_catalog_wrapepr:not(.active) {
    pointer-events: visible;
    opacity: 1;
  }

  /* Header. */

  /* Banner. */

  .banner_slider {
    height: var(--catalog_height);
    width: calc(100% - var(--catalog_size) - 10px);
  }

  .banner_slider .slick-list,
  .banner_slider .slick-track {
    height: 100%;
  }

  /* Banner. */
}

@media only screen and (min-width: 1201px) {
  /* Procuts. */

  .products_slider {
    overflow: visible !important;
    --inner_slider-x: 10px;
    --inner_slider-y: 36px;
  }

  .products_slider .slick-list {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 112px !important;
  }

  .products_slider .product {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.11);
  }

  .products_slider .slick-list:before,
  .products_slider .slick-list:after {
    content: '';
    position: absolute;
    top: var(--inner_slider-y);
    left: 0;
    bottom: var(--inner_slider-y);
    width: 112px;
    background: linear-gradient(-90deg,rgba(245, 245, 245, 0) 0%,var(--bg) 100%);
    z-index: 1;
  }

  .products_slider .slick-list:after {
    left: auto;
    right: 0;
    background: linear-gradient(90deg,rgba(245, 245, 245, 0) 0%,var(--bg) 100%);
  }
  /* Procuts. */

  /* News. */

  .news_slider .slick-list {
    padding: 0 calc(var(--bone_size) + 112px) !important;
  }

  /* News. */

  /* Item. */

  .item_btn .__btn:last-child {
    --btn_height: 26px;
    padding: 2px 0 7px;
    font-size: 14px;
    border: 0 none;
    border-bottom: 1px solid var(--primary);
    text-transform: lowercase;
    box-shadow: none;
  }

  /* Item. */
}

@media only screen and (max-width: 1400px) {
  /* Team. */

  .team_list .slick-list {
    padding-right: calc(var(--bone_size) + 40px);
  }

  /* Team. */
}

@media only screen and (max-width: 1200px) {
  /* Root. */

  :root {
    /* grid. */
    --grid_4: var(--grid_3);
    /* grid. */
  }

  /* Root. */

  /* Item. */

  .item_info_bottom {
    flex-wrap: wrap;
  }

  .item_btn {
    --grid_2: 3;
    order: 1;
    width: 100%;
  }

  .item_net {
    grid-template-columns: 35% repeat(2, 1fr);
  }

  /* Item. */

  /* Cabinet. */

  .cabinet_net {
    grid-template-columns: 320px 1fr;
  }

  .cabinet_flex {
    align-items: stretch;
    flex-direction: column;
  }

  .cabinet_green {
    max-width: none;
    text-align: center;
  }

  /* Cabinet. */

  /* Open. */

  .open_item {
    --inner: 12px;
    --img_size: 120px;
    --gap: 12px;
    grid-gap: 0px var(--gap);
    padding-left: 12px;
  }

  .open_bottom {
    padding: 12px;
    --inner: 20px;
  }

  .open_lines {
    --grid_3: var(--grid_2);
    flex-wrap: wrap;
  }

  .open_line {
    display: block;
    padding: 12px;
  }

  .open_lines:first-child .open_caption {
    margin-bottom: 10px;
    font-size: 12px;
  }

  /* Open. */
  /* Credit. */

  .credit_img {
    right: -180px;
	display:none;
  }

  /* Credit. */
 
}

@media only screen and (max-width: 1100px) {
  /* Root. */

  :root {
    --catalog_size: 280px;
  }

  /* Root. */

  /* Header. */

  .header_net {
    grid-gap: 20px;
  }

  .header_catalog_triger {
    padding-left: 16px;
  }

  .header_catalog_wrapepr ul {
    padding: 12px 16px;
  }

  .header_catalog_wrapepr a {
    margin-right: -16px;
    padding-right: 48px;
  }

  .header_catalog_wrapepr a span {
    width: 48px;
  }

  .header_cabinet {
    width: 120px;
  }

  /* Header. */

  /* Procuts. */

  .products_slider .product_btn {
    margin-left: 0;
  }

  .products_slider .product_btn .__btn {
    width: var(--btn_height);
    padding: 0;
    border-radius: 6px;
  }

  .products_slider .product_btn .__btn p {
    display: none;
  }

  .products_slider .product_btn picture {
    display: block !important;
  }

  .products_slider .product_bottom {
    flex-direction: row-reverse;
  }

  .products_slider .product_bottom .product_price {
    text-align: left;
  }

  /* Procuts. */

  /* Benefits. */

  .benefits {
    --bone_w: 600px;
  }

  .benefits_list {
    --grid_4: 2;
  }

  /* Benefits. */
}

@media only screen and (max-width: 1030px) {
  /* Footer. */

  .footer_net {
    grid-gap: 100px;
  }

  /* Footer. */

  /* Reviews. */

  .review_net {
    grid-template-columns: 1fr;
  }

  .review_btn {
    display: block;
  }

  .review_add {
    display: none;
  }

  /* Reviews. */

  /* Procuts. */

  .products_list_wrapper {
    overflow: hidden;
    margin: -1px calc(var(--bone_size) * -1);
  }

  .products_list {
    display: flex;
    overflow-x: scroll;
    margin-bottom: -40px;
    padding: 1px var(--bone_size) calc(40px + 1px - var(--scroll));
  }

  /* Procuts. */

  /* Item. */

  .item_net {
    grid-template-columns: 45% 55%;
  }

  .item_name {
    font-size: 25px;
  }

  .item_btn {
    --grid_2: 2;
  }

  .item_btn .__btn:first-child {
    grid-column: 1/3;
  }
  
  .__btn._blue, .__btn._google{
	  grid-column: 1/3;
  }

  .item_complect .slick-list {
    --inner: 100px;
  }

  .item_info {
    grid-column: auto;
  }

  .item_delivery {
    grid-column: auto;
    border-left: 0 none;
  }

  .item_img {
    position: sticky;
    display: block;
    padding-top: 40px;
  }

  .item_features {
    grid-column: 1/3;
    border-top: 3px solid #F2F2F2;
  }

  /* Item. */

  /* Category. */

  .category {
    box-shadow: none;
  }

  .category_net {
    grid-template-columns: 1fr;
  }

  .category_popular {
    display: none;
  }

  .category_filter {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg);
    z-index: 999;
  }

  .category_filter:not(.active) {
    pointer-events: none;
    opacity: 0;
  }

  .category_top {
    padding-left: 16px;
    box-shadow: 0 0 0 1px #DADADA;
  }

  .category_top_filter {
    display: block;
  }

  /* Category. */

  /* Setting. */

  .setting_form_input {
    min-width: 100%;
  }

  /* Setting. */

  /* Four. */

  .four_info {
    padding-top: 0;
    max-width: 360px;
  }

  .four {
    min-height: 320px;
  }

  /* Four. */

  /* Staff. */

  .staff_info {
    padding: 20px;
  }

  /* Staff. */

  /* Procuts. */

  .products_list .product,
  .category_list .product {
    filter: none !important;
    z-index: 0 !important;
  }

  .products_list .product_list,
  .category_list .product_list,
  .products_list .product_credit_info,
  .category_list .product_credit_info {
    display: none;
  }

  .products_list .product_btn,
  .category_list .product_btn {
    margin-left: 0;
  }

  .products_list .product_btn .__btn,
  .category_list .product_btn .__btn {
    width: var(--btn_height);
    padding: 0;
    border-radius: 6px;
  }

  .products_list .product_btn .__btn p,
  .category_list .product_btn .__btn p {
    display: none;
  }

  /* Procuts. */
}

@media only screen and (max-width: 900px) {
  /* Root. */

  :root {
    /* grid. */
    --grid_3: var(--grid_2);
    /* grid. */
  }

  /* Root. */

  /* Header. */

  .header_top {
    justify-content: center;
    padding: 0;
    height: 60px;
  }

  .header_right {
    display: none;
  }

  .header_links {
    padding-right: 4px;
  }

  .header_link {
    display: none;
  }

  .header_link._cab,
  .header_link._cart {
    display: flex;
  }

  .header_link._cab:before {
    display: none;
  }

  .header_cabinet {
    display: none;
  }

  #catalog-desktop {
    display: none;
  }

  .header_catalog_triger,
  .header_catalog_close,
  .header_catalog_back {
    grid-gap: 16px;
    height: 50px;
    font-size: 15px;
    border-bottom: 1px solid #C1C1C1;
  }

  .header_catalog_triger img {
    --size: 15px;
    filter: brightness(0) saturate(100%);
  }

  .header_catalog_close,
  .header_catalog_back {
    border: 0 none;
  }

  .header_catalog_back {
    padding-left: 24px;
  }

  .header_catalog_back:before {
    --icon_size: 10px;
    left: 0;
  }

  .header_catalog_close ._close {
    --size: 16px;
    --heigth: 1px;
    top: calc(50% var(--size) / 2);
    right: 0;
  }

  .header_catalog_wrapepr {
    overflow: hidden;
    top: 0;
    bottom: 0;
    background-color: var(--white);
    padding: 10px var(--bone);
  }

  .header_catalog_wrapepr ul {
    overflow-y: scroll;
    position: absolute;
    top: 60px;
    left: var(--bone);
    right: var(--bone);
    bottom: 0;
    grid-gap: 10px;
    width: auto;
    padding: 0;
    margin-right: -40px;
    margin-bottom: -40px;
    padding-right: calc(40px - var(--scroll));
    padding-bottom: calc(40px - var(--scroll) + 20px);
  }

  .header_catalog_wrapepr a {
    font-size: 12px;
    font-weight: 400;
  }

  .header_catalog_wrapepr ul ul {
    left: 0;
    right: 0;
    width: auto !important;
    margin: 0!important;
    z-index: 1;
  }

  .header_top_nav_triger {
    display: none;
  }

  /* Header. */

  /* Footer. */

  .footer_net {
    grid-gap: 80px;
  }

  .footer_nav {
    grid-gap: 40px;
  }

  /* Footer. */

  /* Item. */

  .item_complect .slick-list {
    --inner: 60px;
  }

  /* Item. */

  /* Checkout. */

  .checkout_net {
    --grid_3: 3;
    grid-gap: 20px;
    grid-template-columns: 1fr;
  }

  .checkout_block input {
    flex-grow: 1;
    max-width: none;
    width: auto;
  }

  #checkout_items-table {
    display: block;
  }

  #checkout_items-desktop {
    display: none;
  }

  /* Checkout. */

  /* Cabinet. */

  ._cabinet {
    background-color: var(--white);
  }

  .cabinet {
    padding: 20px 0;
  }

  .cabinet_menu {
    display: block;
    margin-bottom: 38px;
  }

  .cabinet_net {
    grid-template-columns: 1fr;
  }

  .cabinet_nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    transition: opacity .43s, transform .43s;
  }

  .cabinet_close {
    display: block;
    position: absolute;
    top: 22px;
    right: var(--bone_size);
    width: 12px;
    height: 12px;
    z-index: 1;
  }

  .cabinet_nav ul {
    --inner: var(--bone_size);
    max-height: 100%;
    padding-top: 20px;
  }

  .cabinet_nav:not(.active) {
    visibility: hidden;
    opacity: 0;
    transform: translate3d(-100%, 0px, 0px);
  }

  .cabinet_content {
    padding: 0;
  }

  .cabinet .pagination:last-child {
    margin-bottom: 0px;
  }

  /* Cabinet. */

  /* Setting. */

  .setting {
    padding-bottom: 0;
  }

  /* Setting. */

  /* Open. */

  .open {
    padding-bottom: 0;
  }

  /* Open. */

  /* Thank. */

  .thank_net {
    flex-direction: column;
    align-items: center;
    grid-gap: 0;
  }

  .thank_img:first-child {
    display: none;
  }

  .thank._twoo .thank_img {
    width: 100%;
    max-width: none;
  }

  /* Thank. */

  /* About. */

  .about {
    margin-bottom: 50px;
  }

  .about_info {
    position: static;
    max-width: none;
    margin-bottom: 10px;
  }

  .about_map {
    margin: 0 auto;
  }

  /* About. */

  /* Team. */

  .team_info {
    max-width: none;
  }

  /* Team. */

  /* Guar. */

  .guar_list {
    grid-template-columns: 1fr;
  }

  .guar_li:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .guar_return {
    display: flex;
    flex-direction: column-reverse;
    background-color: transparent;
    grid-gap: 16px;
  }

  /* Guar. */

  /* Delivery. */

  .delivery_list {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Delivery. */

  /* Blog. */

  .blog_net {
    grid-template-columns: 1fr 240px;
  }

  .blog_nav a {
    font-size: 14px;
  }

  /* Blog. */

  /* Compare. */

  .compare_table_tab {
    width: auto;
    min-width: 200px;
    white-space: nowrap;
  }

  /* Compare. */
    /* Exchange. */

  .exchange_img {
    justify-self: center;
    grid-column: 1/3;
    margin-top: 0;
  }

  /* Exchange. */
}

@media only screen and (max-width: 770px) {
  /* Footer. */

  .footer_net {
     align-items: center;
    flex-direction: column;
    grid-gap: 22px;
  }
   .footer_left {
    order: 1;
  }

  .footer_nav {
    flex-direction: column;
    grid-gap: 28px;
  }

  .footer_nav_col {
	width: 274px; 
    margin: 0 auto;
  }

  .footer_nav_col {
    padding-bottom: 6px;
    border-bottom: 1px solid #909090;
  }

  .footer_nav_name {
    --icon_size: 16px;
    position: relative;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
  }

  .footer_nav_name:before {
    content: '';
    position: absolute;
    top: calc(50% - var(--icon_size) / 2);
    right: 0;
    width: var(--icon_size);
    height: var(--icon_size);
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5176 5.94214L8.14258 10.3171L3.76758 5.94214' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform .43s;
  }

  .footer_nav_name.active:before {
    transform: rotate(200grad);
  }

  .footer_nav_col ul {
    margin-top: 12px;
  }

  .footer_logo {
    display: none;
  }

  .footer_btn {
    margin: 0 auto;
  }

  .footer_soc {
    margin-top: 0;
    justify-content: center;
  }

  .footer_cop {
    margin-top: 30px;
    padding: 10px;
    text-align: center;
  }

  .footer_cop br {
    display: none;
  }

  /* Footer. */

  /* Features. */

  .features_title {
    display: none;
  }

  .features_table {
    padding: 0;
    margin-top: 0;
  }

  .features ul {
    font-size: 12px;
  }

  /* Features. */

  /* Reviews. */

  .review {
    margin-top: 30px;
  }

  .review_title {
    display: none;
  }

  /* Reviews. */

  /* News. */

  .news_slider {
    --inner_slider-x: 5px;
  }

  .news_item_content {
    --inner: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  /* News. */

  /* Item. */

  .item {
    --inner: var(--bone_size);
  }

  .item_net {
    display: flex;
    flex-direction: column;
    margin: 0 calc(var(--bone_size) * -1);
  }

  .item .features_title {
    display: block;
  }

  .item_complect {
    border-bottom: 3px solid #F2F2F2;
    margin: 0 calc(var(--bone_size) * -1);
  }

  .item_complect .slick-list {
    --inner: var(--bone_size);
    padding: 0 var(--inner);
    padding-right: 140px;
  }

  .item_complect .slick-slide:before {
    display: none;
  }

  .item_img {
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 3px solid #F2F2F2;
  }

  .item_img_list {
    display: none;
  }

  #item_info-table {
    display: flex;
    flex-direction: column;
  }

  .item_name {
    order: -1;
    margin-top: 0;
    margin-bottom: 14px;
  }

  .item_credit {
    margin-top: 15px;
  }

  .item_info {
    padding-top: 0;
  }

  .item_info_bottom {
    margin-top: 20px;
  }

  .item_img_active {
    --arrow-size: 16px;
    --arrow-icon_size: 7px;
    --dot-size: 5px;
    padding: 28px 24px 36px;
  }

  .item_img_active .slick-dots {
    bottom: 8px;
  }

  .item_img_active .slick-dots button {
    border: 0 none;
    background-color: #D9D9D9;
    box-shadow: none !important;
  }

  .item_img_active .slick-dots .slick-active button {
    background-color: var(--primary);
  }

  .item_img_active .slick-arrow {
    border: 1px solid var(--primary);
  }

  .product_credit {
    position: relative;
    z-index: 99999;
    z-index: 2;
  }

  .item_features {
    /* display: none; */ 
  }

  /* Item. */

  /* Info. */

  .info_tabs {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }

  .info_list {
    display: none;
  }

  .info_tab > button {
    --color: var(--primary);
    --icon_size: 10px;
    display: inline-flex;
    align-items: center;
    grid-gap: 12px;
    position: relative;
    min-width: 100%;
    height: 50px;
    padding: 0 40px 0 20px;
    font-family: var(--font2);
    font-size: var(--btn_font);
    font-weight: 600;
    border: 1px solid var(--primary);
    border-radius: 6px;
    cursor: pointer;
  }

  .info_tab > button:before {
    content: '';
    position: absolute;
    top: calc(50% - var(--icon_size) / 2);
    right: 24px;
    width: var(--icon_size);
    height: var(--icon_size);
    background-image: url("../images/icon/arrow_primary.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform .43s;
  }

  .info_tab > button.active:before {
    transform: rotate(200grad);
  }

  .info_li {
    margin-top: 10px;
  }

  /* Info. */

  /* Category. */

  .category_top_count {
    display: none;
  }

  /* Category. */

  /* Checkout. */

  .checkout_net {
    --grid_3: 1;
    --grid_2: 1;
  }

  .checkout_block {
    padding: 30px 20px;
  }

  .checkout_block input {
    max-width: none;
  }

  .checkout_block .__flex-align,
  .checkout_block .__flex-center {
    align-items: stretch;
    flex-direction: column;
  }

  .checkout_caption {
    font-size: 15px;
    margin-bottom: 0;
  }

  .checkout_block>div {
    grid-gap: 15px;
  }

  .checkout_caption:before {
    --size: 15px;
    font-size: 9px;
  }

  .checkout_item_content {
    position: relative;
    grid-gap: 14px;
    padding: 30px 20px;
  }

  .checkout_item_img img {
    --size: 56px;
  }

  .checkout_item_name {
    font-size: 12px;
  }

  .checkout_item_code {
    display: none;
  }

  .checkout_item_right {
    grid-gap: 0;
  }

  .checkout_item_price {
    zoom: .6;
  }

  .checkout_item_clear {
    --size: 15px;
    position: absolute;
    top: 15px;
    right: 20px;
  }

  .checkout_item {
    grid-gap: 1px;
  }

  .checkout_item_bottom {
    font-size: 12px;
    padding: 16px 20px;
  }

  .checkout_total {
    padding: 30px 20px;
  }

  .checkout_total_title {
    font-size: 15px;
  }

  .checkout_total_caption {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .checkout_total_input {
    margin-top: 30px;
  }

  .checkout_total_input input {
    min-height: 45px;
  }

  .checkout_total_input button {
    width: 100px;
    min-width: 100px;
    height: 45px;
    font-size: 12px;
  }

  .checkout_total_product {
    margin-top: 30px;
    padding-bottom: 10px;
    font-size: 12px;
  }

  .checkout_total_product ._price {
    zoom: .5;
  }

  .checkout_total_bottom {
    margin-top: 30px;
    font-size: 12px;
  }

  .checkout_total_bottom ._price {
    zoom: .6;
  }

  .checkout_total_btn {
    --btn_font: 15px;
    --btn_height: 50px;
    margin-top: 30px;
  }

  /* Checkout. */

  /* Four. */

  .four_info {
    max-width: 50%;
  }

  .four_title {
    font-size: 32px;
  }

  .four {
    min-height: 320px;
  }

  .four_text {
    font-size: 16px;
  }

  /* Four. */

  /* Staff. */

  .staff_net {
    grid-template-columns: repeat(2, calc(50% - 5px));
    grid-gap: 10px;
    grid-auto-flow: dense;
    box-shadow: none;
  }

  .staff_info {
    grid-column: 1/3;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.02);
  }

  .staff_col:nth-child(3) {
    flex-direction: row;
    grid-gap: 34px;
    grid-column: 1/3;
    grid-row: 2/3;
  }

  .staff_col:nth-child(3) .staff_txt {
    margin-top: 0;
  }

  .staff_num {
    font-size: 50px;
  }

  /* Staff. */

  /* Guar. */

  .guar_list {
    grid-template-columns: 1fr;
  }

  .guar_li:last-child:nth-child(odd) {
    grid-column: auto;
  }

  /* Guar. */

  /* Blog. */

  .blog_net {
    grid-template-columns: 1fr;
  }

  .blog_net:not(:last-child) {
    margin-bottom: 50px;
  }

  .blog_list {
    grid-template-columns: 1fr;
  }

  .blog_triger {
    display: block;
  }

  .blog_nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    padding: 20px 16px;
    background-color: var(--white);
    transition: opacity .43s;
  }

  .blog_nav:not(.active) {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s .43s, opacity .43s;
  }

  /* Blog. */

  /* Compare. */

  .compare_table_item_bottom .__btn {
    --btn_inner: 0px;
    width: 45px;
  }

  .compare_table_item_bottom p {
    display: none;
  }

  .compare_table_clear {
    display: none;
  }

  .compare_clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--accent);
    border-radius: 6px;
  }

  .compare_clear img {
    width: 15px;
    height: 15px;
  }

  /* Compare. */
  

  /* Gallery. */

  .gallery_close {
    --size: 24px;
  }

  .gallery_images {
    display: none;
  }

  .gallery_active {
    width: 100%;
  }

  .gallery_bg {
    padding: 0 16px;
  }

  .gallery_top {
    justify-content: space-between;
  }

  .gallery_close {
    position: static;
  }

  .gallery_name {
    flex-grow: 1;
  }

  .gallery_bottom {
    margin: 20px 0;
  }

  .gallery_active .slick-arrow:not(.slick-next) {
    left: 4px;
  }

  .gallery_active .slick-arrow.slick-next {
    right: 4px;
  }

  .gallery_active {
    padding: 20px 12px;
  }

  /* Gallery. */
}

@media only screen and (max-width: 600px) {
  /* Root. */

  :root {
    /* grid. */
    --grid_2: 1;
    /* grid. */
  }

  /* Root. */

  /* Global. */

  ._home_cart_triger {
    display: block;
    margin-top: 10px;
    --btn_w: 100%;
  }

  .more {
    --icon_size: 14px;
    font-size: 12px;
    padding-right: 20px;
  }

  /* Global. */

  /* Amount. */

  .kamount input {
    max-width: 55px;
    min-height: 25px;
    font-size: 12px;
  }

  .kamount_btn {
    --size: 25px;
    --icon_size: 11px;
  }

  /* Amount. */

  /* Rate. */

  .rate_small {
    --icon_size: 10px;
    padding: 2px 4px 1px 16px;
    font-size: 9px;
  }

  .rate_small:before {
    left: 3px;
  }

  /* Rate. */

  /* Search. */

  .search input {
    min-height: 36px;
    padding-right: 40px;
  }

  .search button {
    --size: 15px;
    width: 36px;
  }

  .search button:after {
    --size: 70px;
  }

  /* Search. */

  /* Cart. */

  .cart_wrapper {
    padding: 20px;
  }

  .cart_product {
    grid-gap: 12px;
    position: relative;
    padding: 30px 20px;
    margin: 0 -20px;
  }

  .cart_product_img {
    margin-left: 0;
  }

  .cart_product_img img {
    --size: 56px;
  }

  .cart_product_name {
    font-size: 12px;
  }

  .cart_product_code {
    display: none;
  }

  .cart_product_price {
    font-size: 16px;
  }

  .cart_product_price span {
    font-size: 12px;
  }

  .cart_product_clear {
    --size: 15px;
    position: absolute;
    top: 15px;
    right: 20px;
  }

  .cart_bottom {
    align-items: flex-end;
    flex-direction: column;
  }

  .cart_total {
    display: flex;
    align-items: flex-end;
    grid-gap: 24px;
  }

  .cart_total p {
    font-size: 12px;
  }

  .cart_total ._price {
    margin-top: 0;
    font-size: 26px;
  }

  .cart_total ._price span {
    font-size: 20px;
  }

  .cart_btn {
    --btn_w: 100%;
    --btn_height: 50px;
  }

  /* Cart. */

  /* Procuts. */

  .products_title {
    font-size: 18px;
  }

  .product {
    padding: 16px 10px 20px;
  }

  .product_content {
    margin-top: 10px;
  }

  .product_credit li {
    --size: 23px;
  }

  .product_cod {
    display: none;
  }

  .product_name {
    font-size: 12px;
  }

  .product_price {
    font-size: 16px;
  }

  .product_price span {
    font-size: 12px;
  }

  .product_price ._old {
    font-size: 9px;
  }

  .product_price ._sale {
    font-size: 7px;
    padding: 1px 3px;
  }
  .product_info_right {
    grid-gap: 8px;
    font-size: 9px;
  }

  .product_rate {
    --icon_size: 10px;
    padding-left: 16px;
  }

  .product_comment {
    --icon_size: 10px;
    padding-left: 12px;
  }

  .product_btn {
    --btn_height: 36px;
  }

  .product_hr {
    --size: 36px;
  }

  .product_credit_info {
    width: 200px;
    font-size: 12px;
  }

  .product_credit_name {
    font-size: 14px;
  }

  /* Procuts. */

  /* Product. v2. */

  ._vw .product {
    padding: 12px 18px 12px 6px;
  }

  ._vw .product_top {
    --size: 80px;
  }

  ._vw .product_name {
    padding-right: 80px;
    margin-top: 0;
  }

  ._vw .product_cap {
    position: absolute;
    right: 18px;
  }

  ._vw .product_info {
    margin-top: 4px;
    padding-top: 10px;
  }

  .product_bottom {
    margin-top: 6px;
	min-height: 41px;
  }

  /* Product. v2. */

  /* Header. */

  .header_logo {
    max-width: 84px;
  }

  .header_coll_top {
    --inner: 12px;
  }

  .header_top {
    height: 52px;
  }

  /* Header. */

  /* Desc. */

  .desc_list {
    grid-gap: 10px;
  }

  .desc_list li {
    padding: 14px 22px;
    font-size: 12px;
  }

  .desc_text:not(:first-child) {
    margin-top: 20px;
  }

  .desc_text {
    padding: 14px 22px;
    font-size: 12px;
  }

  /* Desc. */

  /* Reviews. */

  .review_btn {
    --btn_w: 100%;
  }

  .review_li {
    padding: 18px 16px;
  }

  .review_date {
    font-size: 9px;
  }

  .review_text {
    margin-top: 10px;
  }

  .review_more {
    display: flex;
    justify-content: center;
    max-width: 155px;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
  }

  .review_commet {
    margin-top: 10px;
    margin-left: 20px;
  }

  /* Reviews. */

  /* Block_name. */

  .banner {
    --bone: 0px;
  }

  .banner_slider .slick-list {
    padding-left: var(--bone_size);
    padding-right: calc(var(--bone_size) + 20px);
	    margin: 2px 1px 3px -7px;
  }

  /* Block_name. */

  /* Cat. */

  .cat_slide h3 {
    font-size: 3.4vw;
  }

  /* Cat. */

  /* News. */

  .news_item_name {
    font-size: 15px;
  }

  .news_item_text {
    font-size: 12px;
    margin-top: 10px;
  }

  .news_item_bottom {
    margin-top: 14px;
  }

  .news_item_time {
    font-size: 10px;
    padding-top: 2px;
    padding-bottom: 0;
    padding-right: 7px;
  }

  .news_slider .slick-list {
    padding-right: calc(var(--bone_size) + 20%) !important;
  }

  .news_slider .slick-active + .slick-slide:before {
    opacity: 0;
  }

  /* News. */

  /* Benefits. */

  .benefits_li {
    flex-direction: column;
    border-radius: 6px;
  }

  .benefits_name {
    font-size: 12px;
    text-align: center;
  }

  .benefits_text {
    display: none;
  }

  /* Benefits. */

  /* Mailing. */

  .mailing {
    padding: 25px 0;
  }

  .mailing_title {
    font-size: 18px;
  }

  .mailing_text {
    font-size: 12px;
    max-width: 180px;
  }

  .mailing_form input {
    min-height: 36px;
    font-size: 12px;
  }

  .mailing_form .__btn {
    --btn_height: 36px;
    max-width: 100px;
    font-size: 12px;
  }

  /* Mailing. */

  /* Item. */

  .item_btn {
    --btn_height: 36px;
    --btn_font: 12px;
  }

  .item_name {
    font-size: 15px;
  }

  .item_left {
    font-size: 12px;
  }

/*   .item_cod {
    font-size: 8px;
  } */

  .item_price {
    font-size: 25px;
  }

  .item_price span {
    font-size: 15px;
  }

  .item_price ._old {
    font-size: 15px;
  }

  .item .features_title,
  .item_complect_title,
  .item_delivery_title {
    font-size: 15px;
  }

  /* Item. */

  /* Category. */

  .category_top {
    padding: 7px 11px;
    font-size: 12px;
  }

  .category_top_filter {
    --btn_font: 12px;
  }

  .category_top_sort {
    --size: 18px;
    grid-gap: 8px;
  }

  .category_list {
    grid-template-columns: repeat(2, 1fr);
  }

  .category_top_vis button:not(:first-child) {
    --inner: 0;
    border-left: 0 none;
  }

  .category_top_vis button[disabled] {
    display: none;
  }

  /* Category. */

  /* Sign. */

  .sign {
    padding: 20px 0;
  }

  /* Sign. */

  /* Cabinet. */

  .cabinet_title {
    font-size: 18px;
    text-align: center;
  }

  .cabinet_title > span {
    font-weight: 400;
    margin-top: 1.5em;
  }

  .cabinet_title span span {
    display: block;
    color: var(--primary);
  }

  .cabinet_title._pz {
    padding: 28px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 6px;
    border: 1px solid #DADADA;
    background: #FFF;
    box-shadow: 0px 20px 29px 0px rgba(0, 0, 0, 0.06);
  }

  .cabinet {
    padding-bottom: 60px;
  }

  .cabinet_img img {
    max-width: min(320px, 100%);
    margin: 0 auto;
  }

  .cabinet_caption {
    font-size: 12px;
  }

  .cabinet_caption._center {
    margin: 0 auto;
    max-width: 182px;
    text-align: center;
  }

  .cabinet_list li {
    grid-gap: 10px;
    font-size: 12px;
  }

  .cabinet_list li:before {
    --size: 15px;
    font-size: 10px;
  }

  .cabinet_green {
    padding: 16px;
    font-size: 12px;
  }

  .cabinet_top {
    align-items: center;
    flex-direction: column;
  }

  .cabinet_top br {
    display: none;
  }

  .cabinet_btn {
    justify-content: center;
  }

  /* Cabinet. */

  /* Setting. */

  .setting_top {
    grid-gap: 20px;
    flex-wrap: wrap;
  }

  .setting_ava {
    --size: 85px;
  }

  .setting_ava._null img {
    --size: 15px;
  }

  .setting_ava p {
    font-size: 9px;
  }

  .setting_name {
    font-size: 15px;
  }

  .setting_btn {
    --btn_w: 100%;
  }

  .setting_caption {
    margin-bottom: 20px;
  }

  .setting_form_input:last-child {
    justify-self: auto;
  }

  .setting_form_input input {
    max-width: none;
  }

  .setting_form_href {
    display: none;
  }

  .setting_form._small {
    grid-template-columns: 1fr;
  }

  .setting_form_caption {
    margin-top: 14px;
    font-size: 12px;
  }

  .setting_form+.setting_form {
    margin-top: 0;
  }

  .setting_caption {
    margin: 30px 0 6px;
  }

  .setting_caption ~ .setting_caption {
    padding-top: 30px;
    border-top: 1px solid #C1C1C1;
  }

  #setting_bgtn_one-mob,
  #setting_bgtn_twoo-mob {
    margin-top: 20px;
  }

  /* Setting. */

  /* History. */

  .history_tr {
    padding: 20px;
    margin-top: 0 !important;
  }

  /* History. */

  /* Open. */

  .open_back {
    --size: 14px;
    font-size: 12px;
  }

  .open_id {
    font-size: 15px;
  }

  .open_item {
    --inner: 20px;
    padding: 0 var(--inner);
  }

  .open_item_name {
    font-size: 10px;
  }

  .open_item_img {
    margin-top: -12px !important;
  }

  .open_item_btn {
    --btn_height: 36px;
    --btn_font: 12px;
    grid-gap: 10px;
    margin-top: 20px;
  }

  .open_item_price > * {
    zoom: .75;
  }

  .open_item_price {
    padding-top: 0;
  }

  .open_line {
    justify-content: space-between;
    padding: 18px 20px;
    font-size: 12px;
  }

  .open_lines:first-child .open_line {
    display: flex;
  }

  .open_lines:first-child .open_caption {
    margin-bottom: 0;
  }

  .open_lines:not(:first-child) .open_line {
    padding: 0;
    border: 0 none;
  }

  .open_lines:not(:first-child) {
    display: grid;
    grid-gap: 20px;
    padding: 18px 20px;
    border-radius: 6px;
    border-bottom: 1px solid #DADADA;
  }

  .open_lines:last-child {
    display: flex;
    justify-content: space-between;
  }

  .open_caption {
    margin-bottom: 5px;
    font-size: 8px;
  }

  .open_bottom {
    justify-content: space-between;
    grid-gap: 0 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 20px;
  }

  .open_bottom_col:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 15px;
    padding-top: 15px;
    padding-left: 0;
    border-top: 1px solid var(--white);
    border-left: 0 none;
  }

  .open_bottom_caption {
    font-size: 8px;
    margin-bottom: 5px;
  }

  .open_bottom_text {
    font-size: 12px;
  }

  .open_bottom_col:last-child .open_bottom_caption {
    margin-bottom: 0;
    font-size: 12px;
  }

  .open_bottom_col:last-child .open_bottom_caption b {
    font-weight: 700;
  }

  .open_bottom_col:last-child .open_bottom_text {
    font-size: 15px;
  }

  /* Open. */

  /* Four. */

  .four_img {
    transform: translate3d(-100px, 0px, 0px);
  }

  /* Four. */

  /* Thank. */

  .thank {
    margin: 30px 0 60px;
  }

  .thank_img:first-child {
    display: none;
  }

  .thank_title {
    font-size: 15px;
  }

  .thank_text {
    max-width: 126px;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 700;
  }

  .thank_btn {
    --btn_height: 50px;
    margin-top: 20px;
  }

  /* Thank. */

  /* About. */

  .about_info {
    padding: 20px;
  }

  .about_title {
    font-size: 15px;
  }

  .about_text {
    font-size: 12px;
  }

  /* About. */

  /* Team. */

  .team_info {
    padding: 20px;
  }

  .team_title {
    font-size: 15px;
  }

  .team_text {
    font-size: 12px;
  }

  .team_list {
    margin-top: 15px;
    --inner_slider-x: 10px;
  }

  /* Team. */

  /* Company. */

  .company {
    margin-top: 68px;
  }

  .company_info {
    padding: 20px;
  }

  .company_title {
    font-size: 15px;
  }

  .company_text {
    font-size: 12px;
  }

  .company_caption {
    font-size: 12px;
    margin-top: 50px;
  }

  .company_list {
    margin-top: 20px;
  }

  .company_li {
    padding: 12px 20px 0;
  }

  .company_green {
    max-width: 192px;
    font-size: 12px;
    padding: 9px 20px;
  }

  /* Company. */

  /* Staff. */

  .staff {
    margin-top: 50px;
  }

  .staff_title {
    font-size: 15px;
  }

  .staff_text {
    margin-top: 15px;
    font-size: 12px;
  }

  .staff_col {
    padding: 20px 24px;
  }

  .staff_txt {
    max-width: 64px;
    font-size: 12px;
    text-align: left;
    margin-top: 0;
  }

  /* Staff. */

  /* Guar. */

  .guar_title {
    font-size: 15px;
  }

  .guar_caption {
    margin-top: 50px;
    font-size: 12px;
  }

  .guar_item:nth-child(4) {
    grid-column: auto;
    grid-row: 5/6;
  }

  .guar_item {
    padding: 24px 20px;
  }

  .guar_name {
    font-size: 12px;
  }

  .guar_text {
    font-size: 12px;
  }

  .guar_list {
    grid-gap: 10px;
    margin-top: 20px;
  }

  .guar_li {
    min-height: 50px;
    padding: 16px 16px 16px 20px;
    font-size: 12px;
  }

  .guar_return_info {
    padding: 20px 25px;
    border-radius: 12px;
    max-width: 320px;
  }

  .guar_return_title {
    font-size: 15px;
    font-weight: 900;
  }

  .guar_return_text {
    margin-top: 15px;
    font-size: 12px;
  }

  .guar_return_caption {
    margin-top: 30px;
    font-size: 12px;
  }

  .guar_return_list {
    grid-gap: 8px;
    margin-top: 15px;
  }

  .guar_return_li {
    max-width: 148px;
    min-width: 80px;
    height: 49px;
    padding: 12px;
    font-size: 12px;
    border-radius: 4px;
  }

  /* Guar. */

  /* Delivery. */

  .delivery {
    margin-top: 50px;
  }

  .guar_caption {
    font-size: 12px;
  }

  .delivery_list {
    grid-gap: 10px;
    margin-top: 20px;
  }

  .delivery_li {
    padding-bottom: 8px;
  }

  .delivery_text {
    font-size: 10px;
    max-width: 130px;
  }

  /* Delivery. */

  /* Blog. */

  .blog_post_name {
    font-size: 13px;
  }

  .blog_post_text {
    font-size: 12px;
  }

  .blog_post_date {
    font-size: 10px;
  }

  .blog_li_name,
  .blog_li_text {
    font-size: 12px;
  }

  .blog_li_date {
    font-size: 10px;
  }

  .blog_nav ul {
    grid-gap: 10px;
  }

  .blog_nav a {
    padding: 12px 10px;
    font-size: 12px;
  }

  /* Blog. */

  /* Compare. */

  .compare_top {
    margin-bottom: 12px;
  }

  .compare_title {
    font-size: 18px;
  }

  .compare_table_top {
    margin: 0 calc(var(--bone) * -1);
  }

  .compare_table_tabs {
    padding-left: var(--bone);
    padding-right: var(--bone);
  }

  .compare_clear img {
    width: 15px;
    height: 15px;
  }

  .compare_table_tab {
    min-width: 150px;
    font-size: 12px;
  }

  .compare_table_item_name {
    font-size: 12px;
    margin-top: 10px;
  }

  .compare_table_item_bottom .__btn {
    width: 36px;
    height: 36px;
  }

  .compare_table_item_bottom {
    margin-top: 10px;
  }

  .compare_table_item_price {
    zoom: .8;
  }

  .compare_table_info_col {
    font-size: 12px;
  }

  /*.compare_table_center {
		zoom: .8;
	}
*/

  /* Compare. */

  /* Credit. */

  .credit_left {
    padding: 20px;
  }

  .credit_li {
    grid-gap: 8px;
  }

  .credit_pozor {
    padding: 16px 20px;
  }

  /* Credit. */

  /* Faq. */

  .faq_li {
    --size: 24px;
    --inner: 16px 20px;
    --inner_r: 20px;
  }

  /* Faq. */

  /* Modal. */

  .modal {
    --modal_inner: 20px;
  }

  #out-modal .modal_title {
    font-size: 15px;
    font-weight: 700;
    text-align: center;
  }

  #out-modal .modal_btn {
    margin-top: 25px;
  }

  #cong-modal .modal_scroll {
    padding-top: 60px;
    padding-bottom: 54px;
  }

  .cong_title {
    font-size: 20px;
  }

  .cong_caption {
    font-size: 12px;
  }

  .cong_line {
    width: min(280px, 100%);
  }

  .cong_green {
    width: min(204px, 100%);
    margin-top: 20px;
    font-size: 12px;
    padding: 14px 20px;
  }

  /* Modal. */
  /* Exchange. */

  .exchange_img {
    grid-column: auto;
  }

  /* Exchange. */
    /* Gallery. */

  .gallery_bottom {
    justify-content: space-between;
  }

  .gallery_bottom .__btn {
    --btn_height: 40px;
    padding: 0;
    width: 40px;
  }

  .gallery_bottom .__btn span {
    display: none;
  }

  .gallery_price {
    zoom: .75;
  }

  /* Gallery. */
}

@media only screen and (max-width: 500px) {
  /* Four. */

  .four {
    min-height: 420px;
  }

  .four_img {
    left: 50%;
    right: auto;
    transform: translate3d(-496px, 0px, 0px);
  }

  .four_info {
    max-width: 242px;
    margin: 0 auto;
    text-align: center;
  }

  .four_title {
    font-size: 15px;
  }

  .four_text {
    font-size: 12px;
    margin-top: 15px;
    font-weight: 400;
  }

  /* Four. */
}

@media only screen and (max-width: 360px) {
  /* Block_name. */

  .__btn._google img {
    position: static;
  }

  /* Block_name. */

  /* Cart. */

  .cart_product_img img {
    --size: 40px;
  }

  .cart_product_price ._old {
    font-size: 10px;
  }

  .cart_product_price {
    font-size: 14px;
  }

  .cart_product_price span {
    font-size: 10px;
  }

  .cart_total ._price {
    margin-top: 0;
    font-size: 22px;
  }

  .cart_total ._price span {
    font-size: 18px;
  }

  /* Cart. */

  /* Header. */

  .header_links {
    --inner: 12px;
  }

  .header_net {
    grid-gap: 12px;
  }

  /* Header. */

  /* Item. */

  .item_complect .slick-list {
    padding-right: 80px;
  }

  /* Item. */

  /* History. */

  .history_tr {
    padding: 20px 12px;
    margin-top: 0 !important;
  }

  /* History. */

  /* Staff. */

  .staff_col:nth-child(3) {
    grid-gap: 0;
    justify-content: space-between;
  }

  /* Staff. */
}

@media only screen and (max-width: 0px) {
  /* Block_name. */



  /* Block_name. */
}

@media only screen and (max-width: 1200px) and (min-width: 1101px),
	   only screen and (max-width: 770px) {
  /* Benefits. */

  .benefits_li {
    padding-left: 14px;
  }

  .benefits_icon {
    --size: 60px;
  }

  /* Benefits. */
}

@media only screen and (max-width: 1030px) and (min-width: 901px) {
  /* Checkout. */

  .checkout_net {
    --grid_3: 1;
    --grid_2: 2;
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .checkout_block {
    padding: 30px 20px;
  }

  .checkout_block input {
    max-width: none;
  }

  .checkout_item_name {
    font-size: 15px;
  }

  .checkout_block .__flex-align {
    align-items: stretch;
    flex-direction: column;
  }

  .checkout_item_price,
  .checkout_total ._price {
    zoom: .8;
  }

  /* Checkout. */
}

@media only screen and (max-width: 1140px) and (min-width: 901px),
	   only screen and (max-width: 770px) {
  /* History. */

  .history_top {
    display: none;
  }

  .history_net {
    grid-template-columns: 1fr auto;
    grid-auto-flow: dense;
  }

  .history_name,
  .history_text:last-child {
    display: none;
  }

  .history_stat {
    grid-row: 1/2;
    grid-column: 2/3;
  }

  /* History. */
}

@media only screen and (max-width: 1200px) and (min-width: 901px),
	   only screen and (max-width: 600px) {
  /* Open. */

  .open_item {
    --img_size: 44px;
    flex-wrap: wrap;
    position: relative;
  }

  .open_item_info {
    max-width: none;
  }

  .open_item_img {
    position: absolute;
    top: var(--inner);
    margin-top: -4px;
  }

  .open_item_img:after {
    padding-bottom: 100%;
  }

  .open_item_name {
    padding-left: calc(var(--gap) + var(--img_size));
  }

  .open_item_price {
    flex-grow: 1;
    align-items: flex-end;
  }

  /* Open. */
}

@media only screen and (max-width: 1200px) and (min-width: 771px), 

	   only screen and (max-width: 600px) {
  /* Blog. */

  .blog_li {
    flex-direction: column;
  }

  .blog_li_img {
    width: 100%;
  }

  .blog_li_info {
    padding: 20px 26px;
  }

  .blog_li_date {
    margin-left: 0;
    border-radius: 6px;
  }

  /* Blog. */
}

@media only screen and (max-width: 1200px) and (min-width: 1031px) {
  /* Procuts. */

  .products_list,
  .category_list {
    --net: 4;
  }

  .products_list .product:nth-child(n + 9) {
    display: none;
  }

  .products_slider .product_btn picture {
    display: none;
  }

  .products_list .product:nth-child(4n + 4) .product_credit_info,
  .category_list .product:nth-child(3n + 3) .product_credit_info {
    left: 50%;
    transform: translate3d(-50%, 0px, 0px);
  }

  .products_list .product:nth-child(4n + 4) .product_credit_info:before,
  .category_list .product:nth-child(3n + 3) .product_credit_info:before {
    left: calc(50% - (var(--size) - 20px)/ 2);
    transform: translate3d(-50%, 0px, 0px);
  }

  /* Procuts. */
}

@media only screen and (max-width: 1340px) and (min-width: 1201px), 



	   only screen and (max-width: 1100px) and (min-width: 1031px) {
  /* Procuts. */

  .products_list .product_btn picture,
  .category_list .product_btn picture,
  .products_slider .product_btn picture {
    display: none;
  }

  /* Procuts. */
}

@media (hover: hover) {
  .header_link:hover svg,
  .product_hr:hover {
     --color: var(--accent);
  }

  .header_link path,
  .product_hr path {
    /* transition: fill .43s, stroke .43s; */
  }
}


/* Mobile Bottombar */

:root {
	--bottom-bar-icon-color: var(--color);
	--bottom-bar-bg-color: var(--white);
}

@supports (padding: max(0px)) {
  	.bottom-bar {
    	padding-bottom: max(env(safe-area-inset-bottom), 15px);
  	}

  	.KeyCRM-toggleButtonContainer {
		  bottom: calc(env(safe-area-inset-bottom) + 63px) !important; 
    }
}

@media only screen and (max-width: 1029px) {
	.KeyCRM-toggleButtonContainer {
		opacity: 1;
	}

	.KeyCRM-toggleButtonContainer {
		right: 16px !important; 
		left: auto; 
		bottom: calc(env(safe-area-inset-bottom) + 63px) !important; 
		z-index: 100 !important;
	}

	.arrow {
		width: 40px;
  		height: 40px;
		bottom: calc(env(safe-area-inset-bottom) + 63px); 
		z-index: 99;
	}

	.bar_wrapper {
		height: calc(100dvh - calc(6px + var(--header)));
		max-height: calc(100dvh - calc(6px + var(--header)));
	}

	.footer {
		padding-bottom: 70px;
	}
}

.bottom-bar {
	display: inline-flex;
	flex-direction: column;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	opacity: 1;
	z-index: 99997;
	transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	pointer-events: none;
    padding-bottom: env(safe-area-inset-bottom);
    -webkit-box-sizing:initial;
    box-sizing:initial;
	transition: all 0.3s ease;
    background: var(--bottom-bar-bg-color) !important;
}

.bottom-bar::after {
	content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  background: var(--bottom-bar-bg-color);
	transform: translateY(60%);
	z-index: 99998;
}

.bottom-bar-hidden {
	right: 0;
	opacity: 0;
}

.buy-bar {
	display: block;
	box-shadow: 0 0 0 1px #DADADA;
	padding: 0.5rem 1.2rem;
	background: var(--bottom-bar-bg-color);
	transform: translateY(0);
	transition: transform 0.4s ease, opacity 0.4s ease;
	opacity: 1;
	z-index: 99998;
	width: 100%;
	pointer-events: auto;
}

.buy-bar-hidden {
    transform: translateY(100%);
    opacity: 0;
	pointer-events: none;
}

.buy-bar-wrapper {
	display: flex;
	justify-content: space-between;
	gap: 0.2rem;
	margin: 0 auto;
	max-width: 675px;
}

.buy-bar .product_price {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.buy-bar-btn {
	height: calc(var(--btn_height) - 0.75rem);
}

.mobile-menu-bar {
	position: relative;
	border-top: solid 1px #DADADA;
	padding: 0.5rem 0.9rem;
	background: var(--bottom-bar-bg-color);
	z-index: 99999;
	pointer-events: auto;
}

.mobile-menu-bar-wrapper {
	display: flex;
	justify-content: space-between;
	gap: 0.25rem;
	margin: 0 auto;
	max-width: 700px;
	padding-bottom: 8px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.mobile-menu-bar-item {
	position: relative;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-variant: normal;
  	text-transform: none;
	cursor: pointer;
	width: 100%;
	max-width: 5rem;
	border-radius: 6px;
}

.mobile-menu-bar-item svg {
	opacity: 0.6;
	width: auto;
	height: 20px;
	margin: 0 auto;
	margin-bottom: 1px;
}

.mobile-menu-bar-item p {
	text-align: center;
	font-size: 10px;
	font-family: var(--font2);
	color: var(--bottom-bar-icon-color);
}

.mobile-menu-bar-item svg,
.mobile-menu-bar-item p {
  transition: color 300ms ease, fill 700ms ease, stroke 700ms ease;
}

.mobile-menu-bar-item-active {
	--bottom-bar-icon-color: var(--primary);
}

.mobile-menu-bar-item span {
  --size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -4px;
  left: calc(50% + 4px);
  width: var(--size);
  height: var(--size);
  font-family: var(--font2);
  font-weight: 600;
  font-size: 11px;
  background-color: var(--accent);
  border-radius: 50%;
  line-height: 1;
  color: var(--white);
}

@media only screen and (max-width: 1029px) {
	.buy-bar .product_price {
		font-size: 19px;
		font-weight: 600;
	}

	.buy-bar .product_price ._old {
		font-size: 14px;
	}

	.buy-bar .product_price ._sale {
		font-size: 10px;
		padding: 1px 3px;
	}
}

#buy-bar-id button {
  transition: transform 0.15s ease;
  transform: scale(1);
}

#buy-bar-id button:active {
  transform: scale(0.98);
}

/* Mobile Bottombar */