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

input,
textarea {
  outline: 0;
}

textarea,
[type]:not([type='checkbox']):not([type='radio']):not([type='range']):not([type='file']):not([type='image']) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

body._scroll-hidden {
  overflow: hidden;
}

.inraise__adinheader._hidden {
  display: none;
}

.fa-rotate-90 {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=1)';
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2)';
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=3)';
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)';
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)';
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

button,
.button {
  background: 0 0;
  border: none;
  outline: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

button:focus {
  outline: 0;
}

a {
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0;
}

a,
label {
  -webkit-tap-highlight-color: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol,
ul {
  list-style: none;
}

html,
body {
  /*height: 100%;*/
  -webkit-overflow-scrolling: auto;
}

body {
  color: #000;
  font-family: 'HelveticaNeue', 'Roboto', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body.no_scroll {
  overflow: hidden;
}

button {
  font-family: 'HelveticaNeue', 'Roboto', Helvetica, Arial, sans-serif;
}

.close {
  position: relative;
  background: #000;
}

.close::before,
.close::after {
  display: block;
  content: '';
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: #fff;
  left: 50%;
  margin-left: -13px;
  top: 50%;
  margin-top: -1px;
}

.close::before {
  transform: rotate(45deg);
}

.close::after {
  transform: rotate(135deg);
}

/* HEADER */
.header {
  position: relative;
  width: 100%;
  height: 56px;
  padding: 3px 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(26.45px);
  color: #fff;
  z-index: 100;
}

@media (max-width: 1190px) {
  .header {
    height: 63px;
    padding: 9px 0;
  }
}

.header.header_white {
  background: rgba(255, 255, 255, 1);
  color: #000;
}

.header .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  padding: 0 20px;
}

@media (max-width: 1190px) {
  .header .container {
    padding-left: 0;
    padding-right: 10px;
    position: relative;
    height: 44px;
  }
  .header-right-group {
    margin-right: 0px !important;
  }
}

.header .container::before,
.header .container::after {
  display: none;
}

.header.fixed {
  position: fixed;
  top: 0 !important;
  width: 100%;
  z-index: 1000;
  opacity: 1;
}

@media (max-width: 1190px) {
  .header.fixed,
  .header:hover {
    background-color: #ffffffe6;
  }
}

.box_catalog-filter.fixed {
  position: fixed;
  top: 50px !important;
  width: 100%;
  z-index: 1000;
  opacity: 1;
  background-color: #fff;
}

.header.unpinned,
.box_catalog-filter.unpinned {
  opacity: 0 !important;
  position: fixed;
  pointer-events: none;
}

/*@supports ((position:sticky) or (position:-webkit-sticky)) {
		.header.fixed,
		.box_catalog-filter.fixed {position: -webkit-sticky;}
	}*/

body.scroll {
  padding-top: 50px;
}

body.scroll_catalog .catalog-header-mini {
  margin-bottom: 50px;
}

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

.logo {
  margin-top: 4px;
}

.hamburger {
  padding: 25px 15px 35px 15px;
  cursor: pointer;
  display: block;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #000;
  position: relative;
}

.hamburger span::before {
  content: '';
  position: absolute;
  top: 6px;
  display: block;
  width: 18px;
  height: 2px;
  background-color: #000;
}

.hamburger span::after {
  content: '';
  top: 12px;
  display: block;
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: #000;
}

.hamburger._active span {
  top: 5px;
  left: 2px;
  transform: rotate(45deg);
}

.hamburger._active span::before {
  display: none;
}

.hamburger._active span::after {
  top: 0;
  transform: rotate(-90deg);
}

@media (max-width: 1190px) {
  .header-nav {
    display: none;
  }
  .logo {
    position: absolute;
    right: calc(50% - 40px);
  }
}

@media (max-width: 620px) {
  .logo {
    position: initial;
  }
}

.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-menu-item {
  padding-top: 16px;
  padding-bottom: 15px;
  margin-right: 22px;
}

.header-menu-item:nth-child(-n+2) {
  margin-right: 41px;
}

.header-menu-item:last-child {
  margin-right: 0;
}

.header-menu-link {
  position: relative;
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
  cursor: pointer;
  color: #fff;
}

.header.header_white .header-menu-link {
  color: #000;
}

.header-menu-link:hover {
  text-decoration: none;
}

.link_active:hover .header-menu-link:after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #000;
  z-index: 100;
}

.header-submenu {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  width: 100vw;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 46px 0 65px 100px;
  background-color: #ffffffe6;
  z-index: 99;
}

.header-submenu .menu-icon {
  display: inline-block;
  max-width: 16px;
  max-height: 16px;
  height: auto;
  margin-left: 5px;
  margin-bottom: 2px;
}

@media (max-width: 1190px) {
  .header-submenu {
    width: 100%;
    height: 100vh;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: fixed;
    left: 0;
    background-color: #fff;
    padding: 25px 0 0 0;
  }
}

.header-submenu ul {
  width: 100%;
  min-height: 40vh;
  max-width: 555px;
}

@media (max-width: 1190px) {
  .header-submenu-inner {
    width: 100%;
    height: 85%;
    overflow-y: auto;
    padding: 0 15px 0 20px;
  }
}

@media (max-width: 1190px) {
  .header-submenu-title {
    display: flex;
    align-items: center;
    margin: 0 0 20px 0;
  }
}

@media (max-width: 1190px) {
  .header-submenu-title-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 9px 0 -5px;
  }

  .header-submenu-title-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 1190px) {
  .header-submenu-title span {
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: -0.05em;
    color: #000000;
  }
}

@media (max-width: 1190px) {
  .header-submenu ul {
    max-width: 100%;
    height: 100%;
  }
}

.header-submenu-w ul {
  columns: 3;
  max-width: 900px;
}

.header-submenu-m ul {
  columns: 2;
  max-width: 555px;
}

.header-submenu ul li:not(:last-child) {
  margin: 0 0 20px 0;
}

.header-submenu li a {
  font-size: 16px;
  line-height: 18px;
  font-weight: 300;
  text-transform: inherit;
  color: #000;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 1190px) {
  .header-submenu li a {
    display: block;
  }
}

.header-submenu li a:hover {
  text-decoration: none;
}

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

.icon-core {
  fill: none;
  stroke: #fff;
  font-size: 17px;
}

.icon-basket {
  fill: #8c8c8c;
  stroke: #fff;
  font-size: 13px;
}

.icon-bag {
  fill: none;
  stroke: #fff;
  font-size: 17px;
}

.icon-bag.bag-header {
  margin-top: -1px;
}

.icon-search {
  fill: none;
  stroke: #fff;
  font-size: 22px;
}

.header-right-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-right-group .header-right-group__item {
  margin-left: 13px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

@media (max-width: 1190px) {
  .header-right-group .header-right-group__item {
    margin-left: 15px;
  }
}

.header-right-group .header-right-group__item .link-in-wrap {
  position: absolute;
  display: block;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header-right-group .header-right-group__item:first-child {
  margin-left: 13px;
}

.header-right-group .header-right-group__item:nth-child(3) {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

.cart-amount,
.favorite-amount {
  font-size: 10px;
  color: #000;
  font-weight: 400;
  line-height: 16px;
  position: absolute;
  min-width: 15px;
  padding: 0 2px;
  text-align: center;
  pointer-events: none;
  border-radius: 50%;
  background-color: #fff;
  height: 15px;
  letter-spacing: -0.09em;
}

.header.header_white .cart-amount,
.header.header_white .favorite-amount {
  background-color: #000;
  color: #fff;
}

.favorite-amount {
  left: 14px;
  top: -1px;
}

.cart-amount {
  left: 12px;
  top: 0;
}

@media (max-width: 1190px) {
  .cart-amount, .favorite-amount {
    top: 2px;
    left: 14px;
    background-color: #000;
    color: #fff;
    font-size: 8px;
    font-weight: 200;
    line-height: 12px;
    height: 14px;
    min-width: 14px;
    padding: 0;
  }
}

/*.cart-amount {
	margin-top: -3px;
}*/

.cart-amount.active,
.favorite-amount.active {
  color: #14daa9;
}

/*.header-right-group__item.personal {
	margin-left: 3px !important;
	margin-right: 4px;
} */

.header-right-group__item.personal {
  position: relative;
}

@media (max-width: 1190px) {
  .header:hover .header-right-group__item svg *,
  .header.fixed .header-right-group__item svg * {
    stroke: #000;
  }
}

.header-right-group__item .personal-circle {
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 1px;
  top: 7px;
}

@media (max-width: 1190px) {
  .header:hover .header-right-group__item .personal-circle,
  .header.fixed .header-right-group__item .personal-circle {
    background-color: #000;
  }

  .header-right-group__item svg {
    width: 28px;
    height: 28px;
  }

  .header-right-group__item .personal-circle {
    top: 3px;
  }

  .header.fixed .header-right-group__item svg * {
    stroke: #000;
  }
}

.header.header_white .header-right-group__item .personal-circle {
  background-color: #000;
}

.personal .personal__link_m {
  display: inline-block;
  padding-top: 4px;
  /* NY2019
    position: relative;*/
}

@media (max-width: 1190px) {
  .personal .personal__link_m {
    padding-top: 0;
    height: 24px;
  }
}

/* NY2019
	.personal .personal__link_m::after {
		display: block; content: "";
		position: absolute; top: -2px; right: -4px;
		width: 18px; height: 10px;
		background: url(../img/ng-user.svg) no-repeat 50% 50%;
	}*/
.icon-logo.logo-header {
  color: #fff;
  font-size: 1.5rem;
}

.header.header_white .icon-logo.logo-header,
.header.header_hamburger .icon-logo.logo-header {
  fill: #000;
}

@media (max-width: 1190px) {
  .icon-logo.logo-header {
    fill: #000;
  }
}

.icon-logo.logo-footer {
  color: #fff;
  font-size: 1.1875rem;
}

.icon-person.person-header {
  fill: #000;
  stroke: red;
  font-size: 1.5rem;
}

.icon-search.search-header {
  color: #fff;
  font-size: 17px;
  height: 22px;
}

/*поиск в шапке*/
#open-search {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -2;
  -ms-flex-order: -2;
  order: -2;
  margin-left: 0;
  cursor: pointer;
}

.header #title-search {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.search-form {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 56px;
  display: block;
  will-change: transform;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.91, 0.01, 0.6, 0.99);
  transition: -webkit-transform 0.4s cubic-bezier(0.91, 0.01, 0.6, 0.99);
  transition: transform 0.4s cubic-bezier(0.91, 0.01, 0.6, 0.99);
  transition: transform 0.4s cubic-bezier(0.91, 0.01, 0.6, 0.99),
  -webkit-transform 0.4s cubic-bezier(0.91, 0.01, 0.6, 0.99);
}

@media (max-width: 1190px) {
  .search-form {
    height: 63px;
  }
}

.search-transform .search-form {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  z-index: 10;
}

.input-search-header {
  display: inline-block;
  width: calc(100% - 100px);
  height: 100%;
  background-color: #fff;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: #191919;
  font-size: 18px;
  font-style: italic;
  line-height: 18px;
  padding: 0 29px 0 26px;
  outline: 0 !important;
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input-search-header::-webkit-search-cancel-button {
  position: relative;
  -webkit-appearance: none;
  content: '';
  width: 20px;
  height: 20px;
  background-image: url(../img/header/input-close.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 20px;
}

.input-submit-header {
  display: inline-block;
  width: 50px;
  height: 100%;
  background-color: #fff;
  outline: 0;
  border: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  background-image: url(../img/header/search.svg);
  background-size: 23px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  right: 50px;
}

.search-form-close.close {
  display: inline-block;
  width: 50px;
  height: 100%;
  cursor: pointer;
  position: absolute;
  right: 0;
}

/* Мобильное меню */
.mobile-nav-box {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100dvh;
  padding: 83px 15px 20px 20px;
  background-color: #fff;
  z-index: 99;
  overflow-y: scroll;
  -webkit-transition: left 0.7s;
  -o-transition: left 0.7s;
  transition: left 0.7s;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.mobile-nav-box_active {
  left: 0;
  -webkit-transition: left 0.7s;
  -o-transition: left 0.7s;
  transition: left 0.7s;
}

.mobile-nav-box a,
.mobile-nav-title,
.mobile-nav-box .header-submenu a {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: -0.05em;
  color: #000000;
  display: block;
}

.mobile-box_login {
  margin-bottom: 35px;
}

.mobile-box_login a,
.mobile-box_login a > * {
  display: inline-block;
  vertical-align: middle;
}

.mobile-box_login a svg {
  margin-right: 20px;
}

.mobile-box_login a:nth-of-type(2)::before {
  display: inline-block;
  content: '|';
  margin: 0 15px 0 10px;
  vertical-align: middle;
}

.mobile-menu-item {
  width: 100%;
  height: auto;
}

.mobile-menu-item:not(:last-child) {
  margin: 0 0 20px 0;
}

@media (max-width: 1190px) {
  .link_active {
    position: relative;
    padding: 2px 0;
  }

  .link_active::after {
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/header/arrow.svg) no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
  }
}

.submenu-link_sale a {
  color: #ff0000 !important;
}

.submenu-link_outlet a {
  color: #ff8484 !important;
}

/* END header */

/* MAIN MENU */
.boxleft-nav {
  height: 100%;
  transform: translateX(-380px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20000;
  background-color: #fff;
  transition: transform 0.25s ease-out;
  display: none;
}

/* .boxleft-nav.active {transform: translateX(0);}
	.boxleft-nav a {
		color: #2c2c2c; text-transform: uppercase;  text-decoration: none;
		letter-spacing: 0.06rem;
	} */
/* .box_width {height: 100%; width: 310px;}
	.boxleft-nav .close {
		position:absolute;
		left: 310px; top: 0;
		width: 50px; height: 50px; padding: 0;
		border-radius: 0;
	} */
/* .box_hidden {height: 100%; overflow: hidden; position: relative;}
	.box_level_1 {
		height: calc(100% - 50px);
		transform: translateX(0);
		background: #fff;
		transition: transform .25s ease-out;
	} */
/* .box_level_2 {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 5;
		transform: translateX(375px);
		transition: transform .25s ease-out;
	} */
/* .box_level_2.men {}
	.box_level_1.outside {transform: translateX(-100%);}
	.box_level_2.active  {transform: translateX(0);}
	.box_level_2 .box_section {display: none; position: relative; height: 100%;}
		.box_level_2 .box_section.active {display: block;} */

/* .boxleft-nav .nav_tab {
	height: 50px;
	list-style: none; margin: 0; padding: 0;
	font-size: 0;
	border-bottom: 1px solid rgb(238, 238, 238);
}
	.boxleft-nav .nav_tab li {
		display:inline-block;
		width: 50%; text-align: center;
		position:relative;
	} */
/* .boxleft-nav .nav_tab li:not(:last-of-type):after {
		content: "";
		top: 50%;
		right: 0;
		margin-top: -12px;
		position: absolute;
		height: 24px;
		width: 1px;
		background-color: #eee;
	}
	.boxleft-nav .nav_tab button {
		font-size: 1rem;
		height: 49px; width: 100%; line-height: 50px;
		padding: 0; border-radius: 0;
		background-color: #fff;
		text-transform: uppercase;
		font-weight: 600; letter-spacing: 0.06rem;
		color: #9b9b9b;
	}
		.boxleft-nav .nav_tab button.active {border-bottom: 2px solid #000; color: #2c2c2c;} */
/* .boxleft-nav .box_login {height: 70px; padding: 26px 16px;}
	.boxleft-nav .box_login {font-size: 82%; font-weight: 600;}
	.boxleft-nav .box_login a {display: inline-block; vertical-align: middle;}
	.boxleft-nav .box_login a > * {vertical-align: middle; display: inline-block;}

	.boxleft-nav .box_login a svg {margin-right: 17px; margin-left: 5px;}
	.boxleft-nav .box_login a:nth-of-type(2)::before {display:inline-block; content:"|"; margin: 0 15px; vertical-align: middle;} */
/* .boxleft-nav .go_index {height: 76px; padding: 0 16px 16px; font-size: 82%; font-weight: 600;}
	.boxleft-nav .go_index a {display: block; height: 60px; line-height: 62px; padding: 0 19px; background-color: #bbbbbb;} */
/* .boxleft-nav .box_content_tab {
		height: 100%; */
/*height: calc(100% - 146px);*/
/* overflow-y: scroll;
		overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
	} */
/* .boxleft-nav .item_tab {display:block; height: 100%; z-index: 5}
	.boxleft-nav .item_tab.hide_item {display: none; position: absolute; z-index:1}
.boxleft-nav ul {list-style: none; margin: 0; padding: 0;}
.boxleft-nav ul.nav_list_l1 {padding: 0 16px; width: 100%;}
	.boxleft-nav ul.nav_list_l1 li {margin-bottom: 16px; display: table; height: 90px; width: 100%;}
	.boxleft-nav ul.nav_list_l1 a {
		display: table-cell; vertical-align: middle;
		background-color: #eee;
		background-position: 100% 50%;
		background-repeat: no-repeat;
		background-size: auto 100%;
		font-size: 82%; padding: 0 19px;
	} */
/* .boxleft-nav ul.nav_list_l1 a b {font-weight: 600;}
	.boxleft-nav ul.nav_list_l1 a .light {font-weight: 400; display: block}
.boxleft-nav .box_back {height: 50px; position: relative;}
	.boxleft-nav .box_back .title {
		display: block;
		height: 49px; line-height: 50px;
		border-bottom: 1px solid #eee;
		font-weight: 600; text-align: center;
		text-transform:uppercase; letter-spacing: 0.06rem;
	}
	.boxleft-nav .box_back .back_level_1 {position:absolute; top: 50%; margin-top: -9px; left: 17px; cursor: pointer;}
	.boxleft-nav .box_nav_l2 {height: calc(100% - 50px); overflow: hidden;}
	.boxleft-nav .nav_list_l2 {
		height: 100%;
		overflow-y: scroll;
		overflow-x: hidden;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
		}
	.boxleft-nav .nav_list_l2 a {display: block; padding: 16px 24px; font-size: 82%; border-bottom: 1px solid #eee;}
	.boxleft-nav .nav_list_l2 a {display: block; padding: 16px 24px; font-size: 82%; border-bottom: 1px solid #eee;} */
/* NY2019*/
/* .ny2019.boxleft-nav {}
	.ny2019.boxleft-nav .naked {padding: 16px 16px 0; height: 86px;}
		.ny2019.boxleft-nav .naked a { */
/* display: block; height: 100%; position: relative; */
/*background: url(../pics/naked_whitepink.svg) no-repeat 50% 5px;*/
/* background-size: auto 57px;
		}
		.ny2019.boxleft-nav .naked #word_svyatay  {
			position: absolute; top: 16px; left: 50%; margin-left: -86px;
			width: 129px; height: auto;
		}
		.ny2019.boxleft-nav .naked #word_naked {
			position: absolute; top: 4px; left: calc(50% + 23px);
			width: 63px; height: auto;
		}
		.ny2019.boxleft-nav .box_level_1 {height: calc(100% - 136px);} */

/* END main menu */
/*мини-слайдер баннер*/
.head_action {
  /*background: #d27e7f;*/
  /*border-top: 1px solid #fff;*/
  height: 50px;
  overflow: hidden;
  font-size: 12px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 2;
}
.head_action .slider-mini-item {
  overflow: hidden;
}
.head_action a {
  display: flex;
  white-space: nowrap;
  padding: 15px;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  color: #fff;
  font-size: 14px;
  /*font-weight: 500;*/
  text-transform: uppercase;
  letter-spacing: .5px;
  height: auto;
  border-bottom: 1px dashed transparent;
  transition: border-color 300ms ease-in-out;
}
.head_action a span {
  padding: 0 35px;
  display: inline-block;
  margin: auto;
}
.head_action a:hover {
  text-decoration: none;
  color: currentColor;
}

/* ЕНД мини-слайдер баннер*/

/* Footer разные */
.footer_full {
  background-color: #000;
  color: #fff;
  text-align: center;
}

.footer_full .copyrigth {
  font-size: 9px;
  padding: 17px;
  line-height: 1.4em;
}

.footer_full .block-inside {
  border-bottom-color: #464646;
}

.footer_full .block-inside .title {
  color: #9b9b9b;
  font-size: 14px;
}

.footer_full .block-inside .title .ico {
  position: absolute;
  display: block;
  top: 50%;
  left: calc(50% + 98px);
  margin-top: -6px;
  height: 12px;
  width: 12px;
}

.footer_full .block-inside .title .ico::after,
.footer_full .block-inside .title .ico::before {
  position: absolute;
  content: '';
  display: block;
  background: #9b9b9b;
}

.footer_full .block-inside .title .ico::after {
  width: 100%;
  height: 2px;
  top: 5px;
}

.footer_full .block-inside .title .ico::before {
  height: 100%;
  width: 2px;
  left: 5px;
  transition: all 0.2s ease;
}

.footer_full .block-inside.active .title .ico::before {
  height: 0;
  top: 5px;
}

.footer_full .nav_footer a {
  display: block;
  padding: 0.5em 0;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}

.footer_full .socio a {
  color: #fff;
  font-size: 20px;
  display: inline-block;
  padding: 0.3em 0.5em;
}

.footer_full .ico_pay i {
  color: #fff;
  font-size: 20px;
  display: inline-block;
  padding: 0.3em 0.5em;
}

.footer_full a {
  color: #fff;
}

.footer_mini {
  background: #000;
  color: #fff;
  font-size: 10px;
  height: 50px;
  line-height: 50px;
  padding: 0 16px;
}

.footer_mini .copy {
  float: left;
}

.footer_mini .confid_cooki {
  float: right;
  text-align: right;
}

.footer_mini a {
  color: #fff;
}

.up_page {
  display: block;
  background: #bbbbbb;
  height: 62px;
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
  line-height: 62px;
}

.up_page > * {
  vertical-align: middle;
  display: inline-block;
}

.up_page svg {
  margin-bottom: 5px;
  margin-right: 4px;
}

/* быстрые сслыки. бывают не в каждом футере, на странице товара в середине страницы */
.box_quick_link {
  display: block;
  background: #eeeeee;
  height: 62px;
  color: #2c2c2c;
  text-align: center;
  font-size: 0;
}

.box_quick_link a {
  display: inline-block;
  position: relative;
  padding: 0 14px;
  line-height: 62px;
  color: #2c2c2c;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06rem;
  width: 25%;
}

.box_quick_link a:not(:first-child)::before {
  content: '';
  display: block;
  position: absolute;
  top: 16px;
  left: -1px;
  width: 2px;
  height: 31px;
  background: #dddddd;
}

@media (max-width: 500px) {
  .box_quick_link {
    height: auto;
  }

  .box_quick_link .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .box_quick_link a {
    width: 49%;
    line-height: 45px;
  }

  .box_quick_link a:not(:first-child)::before {
    height: 24px;
    top: 11px;
  }

  .box_quick_link a:nth-of-type(3)::before {
    display: none;
  }
}

/* для слайдеров по умолчанию */
.slick-loading .slick-list {
  background: #fff url(../img/ajax-loader.gif) center center no-repeat;
}

.slick-slide:focus {
  outline: 0;
}

.slick-next,
.slick-prev {
  position: absolute;
  display: block;
  color: transparent;
  top: calc(50% - 20px);
  top: -webkit-calc(50% - 20px);
  padding: 25px;
  width: 20px;
  background-repeat: no-repeat;
  background-size: container;
  background-position: 50% 50%;
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
  outline: 0;
  opacity: 1;
}

.slick-next.slick-disabled,
.slick-prev.slick-disabled {
  opacity: 0.25;
}

.slick-prev {
  left: 0;
  z-index: 2;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  background-image: url(../img/slider/slider-arrow-right.svg);
}

.slick-next {
  right: 0;
  z-index: 2;
  background-image: url(../img/slider/slider-arrow-right.svg);
}

.slick-dots {
  position: absolute;
  bottom: 35px;
  left: 0;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
  font-size: 0;
  z-index: 10;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 11px;
  cursor: pointer;
  margin: 0 8px;
  background-color: #fff;
  border: 1px solid #9b9b9b;
  border-radius: 50%;
}

.slick-dots button {
  font-size: 0;
}

.slick-dots li.slick-active {
  width: 10px;
  height: 10px;
  background-color: #4b494a;
  border-color: #4b494a;
}

/* ЕНД для слайдеров по умолчанию */

/* ??? брать или нет плагин
.easyzoom {
    position: relative;
    display: inline-block
}
*/
/* иконки святой */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.icon-arrow {
  font-size: 0.6806rem;
  width: 1.75978em;
  fill: none;
  stroke: currentColor;
}

.icon-arrow-bottom {
  font-size: 0.6773rem;
  width: 1.75978em;
}

.icon-arrow-bottom-home {
  font-size: 1.8516rem;
  width: 1.93654em;
}

.icon-bag {
  font-size: 1.7rem;
  width: 23px;
  height: 21px;
}

.icon-basket {
  font-size: 1.3rem;
  width: 1.15385em;
}

.icon-cellphone {
  font-size: 1.5rem;
  width: 0.66667em;
}

.icon-clock {
  font-size: 1.5rem;
  width: 1em;
}

.icon-column {
  font-size: 2.8rem;
  width: 1.25em;
}

.icon-core {
  font-size: 1.71rem;
  width: 23px;
  height: 21px;
}

.icon-fb {
  font-size: 2.22rem;
  width: 1em;
}

.icon-file {
  font-size: 7.6365rem;
  width: 0.78079em;
}

.icon-human {
  font-size: 2.01rem;
  width: 1em;
}

.icon-info {
  font-size: 1.3rem;
  width: 1em;
}

.icon-inst {
  font-size: 2.22rem;
  width: 1em;
}

.icon-insta {
  font-size: 1.4rem;
  width: 1.07143em;
}

.icon-like {
  font-size: 1.1rem;
  width: 1.21818em;
}

.icon-logo {
  font-size: 4.28rem;
  width: 3.75em;
}

.icon-mail {
  font-size: 0.9rem;
  width: 1.22222em;
}

.icon-mail-new {
  font-size: 1.2rem;
  width: 1.25em;
}

.icon-medal {
  font-size: 1.7rem;
  width: 0.64706em;
}

.icon-medal-header {
  font-size: 2.3rem;
  width: 0.73913em;
}

.icon-phone {
  font-size: 1.3rem;
  width: 0.76923em;
}

.icon-phone-new {
  font-size: 1.5rem;
  width: 0.86667em;
}

.icon-plate {
  font-size: 2.8rem;
  width: 1.5em;
}

.icon-point {
  font-size: 1.7rem;
  width: 0.9em;
}

.icon-search {
  font-size: 2.02rem;
  width: 22px;
}

.icon-star {
  font-size: 2.5rem;
  width: 0.976em;
}

.icon-vk {
  font-size: 1.91rem;
  width: 1.75393em;
}

/* ЕНД иконки святой */

/* кнопки святой */
.button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  text-align: center;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
  padding: 14px 20px;
  line-height: 1;
  vertical-align: middle;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}

.button.button-red {
  background-color: #dd0505;
}

.button.button-black {
  background-color: #000;
  color: #fff;
}

.button.button-grey {
  background-color: #eee;
  color: #2b2b2b;
}

.button.button-transparent {
  border: 2px solid #999;
  color: #000;
}

.button.button-green {
  background-color: #00aa5b;
}

/*.button-border {
	display: inline-block; width: 100%; max-width: 330px;
	padding: 0 15px; text-align: center;
	height: 50px; line-height: 49px;
	background-color: #fff; border: 2px solid #000;
	text-transform: uppercase; font-weight: 600;
	font-size: 16px; letter-spacing: 0.06rem;
	color:#000;
	transition: all 0.2s ease;
}*/
.line-btn {
  display: inline-block;
  border: 1px solid #000;
  padding: 15px 20px;
  background-color: #fff;
  text-transform: uppercase;
  font-weight: 200;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06rem;
  color: #000;
  text-align: center;
  transition: all 0.2s ease;
}

@media (max-width: 768px) {
  .line-btn {
    width: 100%;
  }
}

/* ЕНД кнопки святой*/

.displayNone {
  display: none;
}

.relative {
  position: relative;
}

.center-block {
  margin-left: auto;
  margin-right: auto;
}

.dotted {
  text-decoration: underline;
  cursor: pointer;
}

.no-padding {
  padding: 0 !important;
}

.text_center {
  text-align: center;
}

h1 {
  padding: 0;
  margin: 0 0 0.6em;
}

h2 {
  font-size: 23px;
  padding: 0;
  margin: 1em 0 0.6em;
}

h1,
h2 {
  font-size: 18px;
  color: #2b2b2b;
  text-transform: uppercase;
  font-weight: 600;
}

h3 {
  padding: 0;
  margin: 1em 0 0.6em;
  font-weight: 600;
  letter-spacing: 0.06rem;
}

h4 {
  font-weight: 600;
  margin: 1em 0 0.6em;
  letter-spacing: 0.06rem;
}

div > h2:first-child,
div > h3:first-child,
div > h4:first-child {
  margin-top: 0 !important;
}

p {
  padding: 0;
  margin: 1.3em 0 0.8em;
}

div > p:first-child {
  margin-top: 0;
}

div > p:last-child {
  margin-bottom: 0;
}

a {
  color: #000;
}

/* .overlay {
    position: fixed;
    top: 0;    left: 0;
    bottom: 0;    right: 0;
    width: 100%;    height: 100%;
    background-color: rgba(155, 155, 155, 0.9);
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity .25s linear;
    transition: opacity 0.25s linear
}
	.overlay.active-long {
	    -webkit-transition: opacity .4s linear;
	    transition: opacity .4s linear;
	    pointer-events: auto;
	    opacity: 1;
	    z-index: 1999;
	} */
.prim {
  color: #999;
  font-size: 80%;
}

.prim.agree_confid {
  margin-top: 20px;
}

.prim.agree_confid a {
  color: #999;
}

.standart-ul {
  list-style-type: disc;
  padding-left: 20px;
}
.standart-ul + .standart-ul {
  padding-top: 40px;
}

.standart-ul li {
  margin-bottom: 0.5em;
}

.standart-ul li:last-child {
  margin-bottom: 0;
}

.block-inside {
  border-bottom: 1px solid #464646;
}

.block-inside .title {
  position: relative;
  display: block;
  width: 100%;
  padding: 13px 0 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
  cursor: pointer;
}

.block-inside .inside {
  display: none;
  padding: 0 15px 15px;
}

.block-inside .inside .ico_pay {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.block-inside .inside .ico_pay img {
  display: inline-block;
  margin: 5px;
}

.link_blue {
  color: #000;
  padding: 0 25px;
}
.link_blue:hover {
  text-decoration: none;
}
.testimonials_product .link_blue {
  border: 1px solid #000;
}
.block_p {
  padding: 30px 0;
}

.text_light {
  font-weight: 300;
}

.bg_lightgrey {
  background-color: #f8f8f8;
}

/* поп-ап окна */
.container_popup {
  padding: 1em;
}

.container_popup h2 {
  font-size: 23px;
  color: #000;
}

.fancybox-close.close {
  background: #fff;
  top: 20px;
  right: 20px;
  position: absolute;
}

.fancybox-close.close::after,
.fancybox-close.close::before {
  background: #000;
}

.fancybox-close .fas {
  display: none;
}

.much_text_popup {
  max-width: 800px;
}

.much_text_popup a {
  color: #333;
  text-decoration: underline;
}

.small_popup {
  max-width: 500px;
  padding: 17px;
}

/* ЕНД поп-ап окна*/

/* элементы форм */
.default-input {
  width: 100%;
  height: 44px;
  line-height: 44px;
  border: 1px solid #777777;
  font-size: 13px;
  color: #2c2c2c;
  padding: 0 15px;
}

textarea.default-input {
  line-height: normal;
  height: auto;
  min-height: 110px;
  padding: 15px;
}

.select {
  border: 1px solid #777;
  border-radius: 0;
  width: 100%;
  background-image: url(../img/select-arrow.svg);
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: 95% 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 44px;
  padding: 0 12px;
  background-color: #fff;
  outline: 0;
  font-size: 13px;
  line-height: 21px;
  color: #2c2c2c;
  position: relative;
}

.default-input:focus,
.select:focus {
  border-color: #000;
}

.error .default-input,
.default-input.error,
.error .select,
.select.error {
  border-color: #d0021b;
}

.txt_error {
  font-size: 11px;
  color: #9b9b9b;
}

.default-label {
  display: block;
  margin-bottom: 9px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  color: #9b9b9b;
  letter-spacing: 0.06rem;
  text-align: left;
}

#factory_page .default-label {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.default-label .link_blue {
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  float: right;
}

.input-group {
  margin-bottom: 30px;
}
.input-group input[type='radio'] {
  margin-right: 10px;
}
.input-group input + input {
  margin-left: 30px;
}

.radio-group {
  margin-bottom: 30px;
  font-size: 13px;
}

.radio-group input[type='radio'],
.radio-group input[type='checkbox'] {
  display: none;
}

.radio-group label {
  position: relative;
  min-height: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  vertical-align: middle;
  padding-left: 37px;
}

.radio-group input[type='radio'] + label::before,
.radio-group input[type='radio'] + label::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.radio-group input[type='radio'] + label::before {
  background: #fff;
  border: 7px solid #fff;
}

.radio-group input[type='radio'] + label::after {
  border: 1px solid #777;
}

.radio-group input[type='radio']:checked ~ label::before {
  background: #000;
}

.radio-group input[type='checkbox'] + label::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  transition: all 0.2s ease;
}

.radio-group input[type='checkbox'] + label::before {
  background: #fff;
  border: 1px solid #888;
}

.radio-group input[type='checkbox'] + label::after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 8px;
  width: 7px;
  height: 11px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
  opacity: 0;
  transition: all 0.2s ease;
}

.radio-group input[type='checkbox']:checked ~ label::after {
  opacity: 1;
}

.submit-group {
  padding: 10px 0;
}

.submit-group .button {
  width: 100%;
}

/* ЕНД элементы форм */

/* ==== главная страница ==== */
.section-box {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
  display: block;
}

.section-box_height {
  height: 100vh;
}

.section-box img {
  position: absolute;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: bottom center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main_video {
  position: absolute;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.main_video::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}
.main_video::-webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none;
}
.main_video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
video::-webkit-media-controls {
  display: none !important;
}
.main_video-d {
  display: block;
}
.main__img-wrap {
  z-index: 2;
}
.main__img-wrap.has-video-d,
.main__img-wrap.has-video-m {
  z-index: 0;
}
@media (max-width: 1000px) {
  .main_video-d {
    display: none;
  }
}
.main_video-m {
  display: none;
}
@media (max-width: 1000px) {
  .main_video-m {
    display: block;
  }
}
.wrapper-button {
  position: absolute;
  top: 50%;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 10;
}

.wrapper-button a:nth-child(2) {
  color: #DC143C;
}

.arrow-dowm {
  position: absolute;
  bottom: 19%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border: 2px solid #000;
  border-width: 0 0 2px 2px;
  width: 15px;
  height: 15px;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-45deg);
  z-index: 10;
}

@media (max-width: 900px) {
  .wrapper-button {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

a.button-main {
  border: 1px solid #000;
  background: #ffffff00;
  color: #000;
  width: 315px;
  margin-right: 50px;
  /*  padding-top: 3px;*/
  transition: 0.3s all ease-in-out;
  white-space: nowrap;
}

a.button-main:last-child {
  margin-right: 0;
}

a.button-main:hover {
  text-decoration: none;
  background: #000;
  color: #fff;
  border-color: #000;
}

@media (max-width: 900px) {
  a.button-main {
    margin-right: 0;
    margin-bottom: 40px;
    color: #fff;
    border-color: #fff;
  }
}

/* Вертикальный слайдер на главной */
.parallax1,
.parallax2 {
  height: 700px;
  position: relative;
  background-repeat: no-repeat;
  background-position: 50% 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.paralax-d {
  display: block;
}

@media (max-width: 900px) {
  .paralax-d {
    display: none;
  }
}

.paralax-m {
  display: none;
}

@media (max-width: 900px) {
  .paralax-m {
    display: block;
  }
}

.parallax_wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 30px 80px 30px;
  text-align: center;
}

.parallax_title {
  font-weight: 200;
  font-size: 23px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000;
  padding-bottom: 40px;
}

a.parallax_link {
  display: inline-block;
  padding: 15px 40px;
  background: #fff;
  text-decoration: none;
  color: #000;
  font-weight: 200;
  font-size: 14px;
  line-height: 1.5em;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: 0.3s all ease-in-out;
  border: 1px black solid;
}

a.parallax_link:hover {
  text-decoration: none;
  background: #000;
  color: #fff;
}

/* Женское/Мужское */
.main-men .title {
  font-size: 13px;
  line-height: 16px;
  color: #fff;
  font-weight: 200;
}

.title--position {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
}

h1.title.title--position {
  padding: 15px;
  border: 1px white solid;
  text-align: center;
  font-weight: 200;
}

h1.title.title--position:hover {
  color: black;
  background-color: white;
}
.main > h2 {
  line-height: 17px;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 14px;
  /* padding: 2em 0; */
  font-weight: 400;
  color: #4f4f4f;
  margin: 0;
  padding-top: 30px;
}
/* Слайдер с категориями товаров */
.box_section_promo {
  width: calc(100% - 40px);
  /*display: -webkit-box;
	display: -ms-flexbox;
	display: flex;*/
  margin: 0 20px;
  overflow: visible;
}
.main .slick-slide {
  margin: 0 2.5px;
}
.main .slick-slide img {
  width: 100%;
  height: auto;
}

.section_promo {
  padding: 30px 0px 45px 0;
  text-align: center;
}

.section_promo .title {
  color: #4f4f4f;
  text-align: center;
  text-transform: uppercase;
}

/*.box_section_promo .slick-slide {
	width: 390px;
}*/

.section_promo__link .title {
  color: #000;
}

.section_promo__link {
  display: inline-block;
  min-width: 142px;
  padding: 13px 12px 12px;
  margin: 0 auto;
  font-size: 11px;
  line-height: 12px;
  font-weight: 200;
  border: 1px solid #000;
  align-items: center;
  text-transform: uppercase;
}

.section_promo__link:hover {
  text-decoration: none;
  background: #000;
  color: #fff;
  transition: 0.3s all ease-in-out;
}

@media (max-width: 1024px) {
  .box_section_promo {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
}

@media (max-width: 767px) {
  .section_promo,
  .box_section_promo .slick-slide {
    padding: 23px 0px 46px 0;
    /*min-height: 414px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;*/
    margin-right: 2.5px;
  }

  .main > h2 {
    text-align: left;
    padding-left: 15px;
  }

  .section_promo .title {
    font-size: 16px;
    line-height: 18px;
    height: 36px;
    max-height: 36px;
  }

  .box_section_promo img {
    max-width: 100%;
    /*height: auto;
		-o-object-fit: cover;
		object-fit: cover;*/
  }

  .section_promo__link .title {
    font-size: 14px;
    line-height: 18px;
  }

  .section_promo__link img {
    width: 177px;
    height: 212px;
  }
}

/* END cлайдер с категориями товаров */
.main-men .section--height {
  height: 582px;
}

/* END Женское/Мужское */

/* подписка на общую рассылку */
.box_subscribe_news {
  display: none;
  text-align: center;
  padding: 36px 0;
}

.box_subscribe_news .container {
  max-width: 331px;
}

.box_subscribe_news h2 {
  font-size: 23px;
  color: #000;
  margin: 0;
  letter-spacing: 0.12rem;
}

.box_subscribe_news p {
  margin: 0;
}

.subscribe_news {
  padding: 20px 0;
}

.subscribe_news input {
  width: 100%;
}

.subscribe_news .default-input {
  margin-bottom: 10px;
}

/* ЕНД подписка на общую рассылку */

/* Каталог раздел */

.catalog-header-mini {
  height: 50px;
  background: #eee0;
  color: #2c2c2c;
  position: relative;
  padding: 0 16px 0 16px;
  margin-top: 30px;
}

.catalog-header-mini .container {
  padding: 0;
}

.catalog-header-mini h1.h1 {
  text-align: center;
  line-height: 50px;
  margin: 0;
  font-weight: 400;
}

.catalog-header-mini .back_link {
  display: block;
  position: absolute;
  top: 50%;
  left: 19px;
  margin-top: -9px;
}

/* Плашка с вызовом фильстра */
.box_catalog-filter {
  padding-top: 0;
  height: 26px;
  /*border-bottom: 1px solid #eee;*/
  transition: opacity 0.2s ease;
  padding: 0 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.box_catalog-filter .container {
  max-width: 1024px;
}

.catalog__filter {
  width: 100%;
  position: relative;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/*.catalog__filter::after {
	position: absolute;
	display: block;
	content: "";
	height: 100%;
	width: 1px;
	top: 0;
	left: 50%;
	background-color: #eeeeee;
}*/

.catalog__filter .button-filter {
  width: 65px;
  background: none;
  display: inline-block;
  height: 24px;
  line-height: 20px;
  padding: 0;
  font-size: 13px;
  letter-spacing: 0.06rem;
  text-transform: none;
  font-weight: 200;
  color: #2c2c2c;
}

.catalog__filter .button-filter .fas {
  margin-right: 10px;
}

.catalog__filter .button-price {
  width: 65px;
  float: none;
  background: none;
  height: 24px;
  line-height: 24px;
  font-size: 13px;
  color: #2c2c2c;
  text-align: center;
  text-transform: none;
  letter-spacing: 0.06rem;
  font-weight: 200;
  position: relative;
  order: -1;
  margin-right: 30px;
}

.catalog__filter .button-price span[class^='arrow-long'] {
  display: inline-block;
  letter-spacing: normal;
}

.catalog__filter .button-price span[class^='arrow-long'] {
  color: #9b9b9b;
  font-size: 9px;
  margin: -2px;
}

.catalog__filter .button-price span[class^='arrow-long'].active {
  color: #000;
}

.catalog__filter .button-price .arrow-long-bottom {
  margin-right: 10px;
  margin-left: 1px;
}

/* ЕНД плашка*/

/* Фильтр каталога.
Использует часть классов и стилей с левого меню */
.boxright-nav {
  height: 100%;
  transform: translateX(380px);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20000;
  background-color: #fff;
  transition: transform 0.25s ease-out;
}

.boxright-nav.active {
  transform: translateX(0);
}

.boxright-nav .close {
  position: absolute;
  right: 100%;
  top: 0;
  width: 50px;
  height: 50px;
  padding: 0;
}

/*.boxright-nav .close::before,
		.boxright-nav .close::after {
			display: block; content:"";
			position: absolute;
			width: 25px; height: 2px;
			background-color: #fff;
			left: 50%; margin-left: -13px;
		}
		.boxright-nav .close::before {transform:rotate(45deg);}
		.boxright-nav .close::after {transform:rotate(135deg);}*/
.box_hidden {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.boxright-nav .box_level_1 {
  height: 100%;
}

.boxright-nav .box_content_filter,
.boxright-nav .box_nav_l2 {
  height: calc(100% - 132px);
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.boxright-nav .box_title {
  height: 50px;
  border-bottom: 1px solid #eeeeee;
  position: relative;
  padding: 0 23px;
}

.boxright-nav .box_foot_button {
  height: 82px;
  border-top: 1px solid #eeeeee;
  padding: 16px;
}

.boxright-nav .box_title .name {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
  display: inline-block;
  line-height: 50px;
  color: #2c2c2c;
}

.boxright-nav .box_title .clear_btn {
  font-size: 13px;
  color: #2c2c2c;
  line-height: 49px;
  display: inline-block;
}

.boxright-nav .box_title .back_level_1 {
  position: absolute;
  left: 23px;
  top: 50%;
  margin-top: -8px;
  display: inline-block;
}

.boxright-nav .box_level_2 .box_title {
  padding-left: 56px;
}

.boxright-nav .button_result {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #000;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06rem;
  line-height: 50px;
}

.boxright-nav .open_level2 {
  display: inline-block;
  padding: 17px 24px 16px;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
  font-size: 13px;
  text-transform: uppercase;
  color: #2c2c2c;
  letter-spacing: 0.06rem;
}

.catalog-filter__checkbox {
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #eeeeee;
}

.catalog-filter__checkbox input[type='checkbox'] {
  display: none;
}

.catalog-filter__checkbox .label {
  display: block;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 23px;
  height: 100%;
  font-weight: 400;
  color: #2c2c2c;
  font-size: 13px;
  text-transform: uppercase;
}

.catalog-filter__checkbox .quantity {
  color: #bbbbbb;
  display: inline-block;
  margin-left: 4px;
}

.catalog-filter__checkbox .label::after {
  display: none;
  content: '';
  position: absolute;
  left: auto;
  right: 23px;
  top: 50%;
  width: 8px;
  height: 11px;
  margin-top: -2px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-left: none;
  border-top: none;
  border-right: 2px solid #000 !important;
  border-bottom: 2px solid #000 !important;
  border-radius: 0;
}

.catalog-filter__checkbox input[type='checkbox']:checked ~ .label {
  font-weight: bold;
}

.catalog-filter__checkbox input[type='checkbox']:checked ~ .label::after {
  display: block;
}

/* ЕНД Фильтр каталога */

.likes {
  width: 28px;
  height: 28px;
  line-height: 28px;
  position: relative;
  background-color: #fff;
  text-align: center;
  color: #fff;
  font-size: 12px;
}

.likes .icon-like {
  font-size: 14px;
  margin-top: 7px;
  transition: opacity 0.2s ease-in;
}

.likes .fas {
  opacity: 0;
  transition: all 0.1s ease-out;
}

.likes::before,
.likes::after {
  font-family: 'Font Awesome 5 Free';
  content: '\f004';
  font-weight: bold;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  color: #fff;
  transition: all 0.1s ease-out;
  transform: scale(0, 0) translate(0, 0);
  opacity: 1;
}

.likes.active::before {
  animation: heart1 1.5s both;
}

.likes.active::after {
  animation: heart2 1.1s both;
}

.likes.active {
  color: #000;
}

/*@media (min-width: 1025px) {
	.likes:hover svg path {fill: #000;}
	.catalog__item__like:hover .icon-like.catalog-like {color: #000;}
	}*/
@keyframes heart1 {
  0% {
    transform: scale(0, 0) translate(0, 0);
    opacity: 0;
  }

  2% {
    transform: scale(0.9, 0.9) translate(-18px, -15px);
    opacity: 0.5;
  }

  30% {
    transform: translate(-24px, -21px);
    opacity: 0;
  }

  40% {
    transform: scale(0, 0) translate(0, 0);
    opacity: 0;
  }

  100% {
    transform: scale(0, 0) translate(0, 0);
    opacity: 0;
  }
}

@keyframes heart2 {
  0% {
    transform: scale(0, 0) translate(0, 0);
    opacity: 0;
  }

  10% {
    transform: scale(0.6, 0.6) translate(-2px, -22px);
    opacity: 0.5;
  }

  80% {
    transform: scale(0.6, 0.6) translate(-8px, -28px);
    opacity: 0;
  }

  90% {
    transform: scale(0, 0) translate(0, 0);
    opacity: 0;
  }

  100% {
    transform: scale(0, 0) translate(0, 0);
    opacity: 0;
  }
}

/* список каталога */
.catalog {
  padding-top: 10px;
}

.catalog .more_upload {
  margin: 17px 0 50px;
  text-align: center;
}

.box_catalog {
  width: 80%;
  flex-grow: 1;
  max-width: 475px;
  margin: 0 auto;
  margin-right: 0;
}

.catalog .list_items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 10px;
}

.catalog__card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  padding: 0 5px;
}

.catalog__card * {
  box-sizing: border-box;
}

.card__col {
  width: 100%;
  position: absolute;
  z-index: -999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  top: 0;
}

.card__col.active {
  position: relative;
  z-index: 0;
  opacity: 1;
  visibility: visible;
}

.card__slider,
.card__slide {
  width: 100%;
}
.card__slider {
  padding-top: 30px;
}

.card__slider:not(.slick-initialized) .card__slide:nth-child(n+2) {
  display: none;
}

.slick-dots {
  bottom: 15px;
}

.slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 0.6;
  border: 1px solid #000000;
}

.slick-dots li.slick-active {
  background-color: #000000;
  border-color: #000000;
  opacity: 1;
}

.card {
  position: relative;
}

.card__img {
  width: 100%;
  height: auto;
  /*margin-bottom: -5px;*/
  object-fit: cover;
  border: 1px solid #eee;
}

.card__like {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff00 url(../img/catalog/no-liked.png) 50% 60% / 24px 22px no-repeat;
  transform: translateY(0);
  transition: all 0.2s ease-in-out;
  background-color: rgb(0 0 0 / 30%);
}

.card__like.liked,
.card__like.active {
  background: #ffffff00 url(../img/catalog/liked.png) 50% 60% / 24px 22px no-repeat;
  background-color: rgb(0 0 0 / 30%);
}

.card__modal-desktop {
  display: none;
}

.card__info {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 15px 0 30px;
}

.card__info .dolyame-block {
  display: none;
}
.card__info .dolyame-block.active {
  display: flex;
  visibility: visible;
  order: 3;
  margin-top: 20px;
  margin-bottom: 0;
  width: 100%;
  justify-content: center;
}

@media (max-width: 1100px) {
  .card__info .dolyame-block.active {
    flex-direction: column;
    align-items: center;
  }
  .card__info .dolyame-block.active .dolyame-block__modal-link {
    margin-left: 0;
    margin-top: 10px;
  }
  .card__info .dolyame-block.active .dolyame-block__modal-link svg {
    margin-left: 7px;
    height: 13px
  }
}

.card__discription {
  width: 100%;
  margin: 0 0 20px;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.card__colors {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}

.card__color {
  width: 25px;
  height: 25px;
  margin: 0 8px;
}

.card__color[data-color='white'].active {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px #bfbfbf;
}

.card__color[data-color='white'] {
  background: #ffffff;
  border: 0.5px solid #dddddd;
}

.card__color[data-color='black'] {
  background: #000000;
}

.card__color[data-color='black'].active {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px #000000;
}

.card__color[data-color='pink'] {
  background: #e3aeae;
}

.card__color[data-color='pink'].active {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px #e3aeae;
}

.card__color[data-color='gray'] {
  background: #c0c0c0;
}

.card__color.active {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px #c0c0c0;
}

.card__price-box {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 30%;
  padding: 8px;
  border: 1px solid #000000;
}

@media (max-width: 1200px) {
  .catalog__card-disabled .card__price-box {
    width: 100%;
    text-align: center;
    align-items: center;
  }
}

.card__price-box.active {
  display: flex;
}

.card__price {
  font-size: 17px;
  font-weight: 500;
  line-height: 17px;
  text-transform: uppercase;
  color: #000000;
}

.card__price svg * {
  fill: #000000;
}

.card__price.has-old {
  color: #d82f2f;
}

.card__price.has-old svg * {
  fill: #d82f2f;
}

.card__price_old {
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  text-decoration-line: line-through;
  text-transform: uppercase;
  color: #9a9999;
}

.card__price_old svg {
  margin-left: -2px;
}

.card__price_old svg * {
  fill: #9a9999;
}

.card__add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 15px 10px;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  background: #000000;
  cursor: pointer;
}

/*@media (max-width: 768px) {*/
/*  .card__add-cart._fullMobile {*/
/*    width: 100%;*/
/*  }*/
/*}*/

.card__modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  background: rgba(0, 0, 0, 0.2);
}

.close-modal-btn.close {
  position: absolute;
  right: 18px;
  top: 20px;
  z-index: 10;
  width: 20px;
  height: 20px;
  padding: 0;
  background: transparent;
}

.close-modal-btn.close::before,
.close-modal-btn.close::after {
  background: #000000;
}

.card__modal-sizes,
.card__modal-cart {
  visibility: hidden;
  opacity: 0;
  z-index: -200;
}

.card__modal-sizes.active,
.card__modal-cart.active {
  visibility: visible;
  opacity: 1;
  z-index: 200;
}

.card__sizes-box,
.card__cart-box {
  position: relative;
  width: 100%;
  max-width: 380px;
  min-height: 482px;
  margin: auto;
  color: #000000;
  background: #ffffff;
  overflow-y: auto;
}

.card__sizes-box {
  padding: 70px 50px 62px;
}

.card__cart-box {
  padding-bottom: 40px;
  text-align: center;
}

.card__modal-title {
  margin: 0;
  font-weight: 200;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 20px;
}

.card__modal-text {
  margin: 20px 0 30px;
  font-size: 16px;
  line-height: 20px;
}

.card__size-row:not(:last-of-type) {
  margin-bottom: 20px;
}

.card__size-input[type='radio']:checked,
.card__size-input[type='radio']:not(:checked) {
  position: absolute;
  left: -9999px;
}

.card__size-input[type='radio']:checked + label,
.card__size-input[type='radio']:not(:checked) + label {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 18px;
  color: #000000;
  cursor: pointer;
}

.card__size-input[type='radio']:checked + label .card__size,
.card__size-input[type='radio']:not(:checked) + label .card__size {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 50px;
  padding: 0 15px;
  margin-right: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid #000000;
  transition: all 0.2s ease-in-out;
}

.card__size-quantity {
  line-height: 20px;
}

.not-size .card__size-input[type='radio']:checked + label .card__size,
.not-size .card__size-input[type='radio']:not(:checked) + label .card__size,
.not-size .card__size-input[type='radio']:checked + label:hover .card__size,
.not-size
.card__size-input[type='radio']:not(:checked)
+ label:hover
.card__size {
  color: #cccccc;
  border-color: #cccccc;
  cursor: cursor;
  overflow: hidden;
}

.not-size .card__size-input[type='radio']:checked + label .card__size::before,
.not-size
.card__size-input[type='radio']:not(:checked)
+ label
.card__size::before,
.not-size
.card__size-input[type='radio']:checked
+ label:hover
.card__size::before,
.not-size
.card__size-input[type='radio']:not(:checked)
+ label:hover
.card__size::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: -1px;
  width: 17.5px;
  height: 100%;
  background: url('../img/catalog/not-size_mobile_left.svg') center/cover
  no-repeat;
}

.not-size .card__size-input[type='radio']:checked + label .card__size::after,
.not-size
.card__size-input[type='radio']:not(:checked)
+ label
.card__size::after,
.not-size
.card__size-input[type='radio']:checked
+ label:hover
.card__size::after,
.not-size
.card__size-input[type='radio']:not(:checked)
+ label:hover
.card__size::after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  right: -1.5px;
  width: 17.5px;
  height: 102%;
  background: url('../img/catalog/not-size_mobile_right.svg') center/cover
  no-repeat;
}

.card__size-input[type='radio']:checked + label .card__size,
.card__size-input[type='radio']:checked + label:hover .card__size {
  color: #06aa5c;
  border-color: #06aa5c;
}

.not-size .card__size-quantity {
  color: #b4b4b4;
}

.card__modal-cart-img {
  width: auto;
  max-height: calc(100vh - 360px);
  height: 480px;
  object-fit: cover;
  object-position: top;
}

@media (min-width: 768px) {
  .box_catalog {
    max-width: calc(100vw - 280px);
  }

  .catalog__card {
    width: 50%;
    padding: 0 5px;
  }

  .card__col .card__img {
    width: calc(100% - 20px);
    /*height: 54vw;*/
    /*max-height: 490px;*/
    object-position: top;
  }

  .card__col.active .card__img {
    width: 100%;
    /*height: 47vw;*/
  }
  a.card__add-cart.active {
    display: none;
  }
}

@media (min-width: 1200px) {
  .box_catalog {
    width: 80%;
    max-width: calc(100vw - 280px);
  }

  .catalog__card {
    width: 33.3%;
  }

  .catalog__card .slick-next,
  .catalog__card .slick-prev {
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-in-out;
  }

  .catalog__card:hover .slick-next,
  .catalog__card:hover .slick-prev {
    visibility: visible;
    opacity: 1;
  }

  .card__col .card__img {
    /*height: 60vw;*/
    max-height: none;
  }

  .card__col .slick-next,
  .card__col .slick-prev {
    background-size: 9px 15px;
  }

  .card__discription:hover {
    text-decoration: underline;
  }

  .card__add-cart_mobile,
  .card__oneclick.card__oneclick-mobile {
    display: none;
  }

  .card__modal-desktop {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(238, 238, 238, 0.7);
    opacity: 0;
    visibility: hidden;
    z-index: -200;
    transition: all 0.2s ease-in-out;
  }

  .catalog__card:hover .card__modal-desktop {
    opacity: 1;
    visibility: visible;
    z-index: 200;
  }

  .catalog__card:hover .card__like {
    transform: translateY(-90px);
  }
  .catalog__card.card__available:hover .card__like {
    transform: translateY(-130px);
  }

  .card__sizes {
    display: flex;
    justify-content: center;
    padding: 8px 10px 5px;
  }

  .card__size-label {
    flex-direction: column;
  }

  .card__size-row:not(:last-of-type) {
    margin-bottom: 0;
    margin-right: 16px;
  }

  .card__size-input[type='radio']:checked + label .card__size,
  .card__size-input[type='radio']:not(:checked) + label .card__size {
    position: relative;
    height: 23px;
    padding: 0 20px;
    margin-right: 0;
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 14px;
    color: #4f4f4f;
    border: 1px solid #4f4f4f;
  }

  .card__size-input[type='radio']:checked + label:hover .card__size,
  .card__size-input[type='radio']:not(:checked) + label:hover .card__size {
    color: #181818;
    border-color: #181818;
  }

  .card__size-quantity {
    font-size: 12px;
    line-height: 12px;
    color: #4f4f4f;
    text-transform: lowercase;
  }

  .not-size .card__size-input[type='radio']:checked + label .card__size,
  .not-size .card__size-input[type='radio']:not(:checked) + label .card__size,
  .not-size .card__size-input[type='radio']:checked + label:hover .card__size,
  .not-size
  .card__size-input[type='radio']:not(:checked)
  + label:hover
  .card__size {
    color: #9b9b9b;
    border-color: #9b9b9b;
    height: 23px;
  }

  .not-size .card__size-input[type='radio']:checked + label .card__size::before,
  .not-size
  .card__size-input[type='radio']:not(:checked)
  + label
  .card__size::before,
  .not-size
  .card__size-input[type='radio']:checked
  + label:hover
  .card__size::before,
  .not-size
  .card__size-input[type='radio']:not(:checked)
  + label:hover
  .card__size::before {
    width: 17px;
    background: url('../img/catalog/not-size_desktop_left.svg') center/cover
    no-repeat;
  }

  .not-size .card__size-input[type='radio']:checked + label .card__size::after,
  .not-size
  .card__size-input[type='radio']:not(:checked)
  + label
  .card__size::after,
  .not-size
  .card__size-input[type='radio']:checked
  + label:hover
  .card__size::after,
  .not-size
  .card__size-input[type='radio']:not(:checked)
  + label:hover
  .card__size::after {
    width: 17px;
    right: -2px;
    height: 100%;
    background: url('../img/catalog/not-size_desktop_right.svg') center/cover
    no-repeat;
  }

  .not-size .card__size-quantity {
    color: #9b9b9b;
  }

  .card__size-input[type='radio']:checked + label .card__size,
  .card__size-input[type='radio']:checked + label:hover .card__size {
    color: #06aa5c;
    border-color: #06aa5c;
  }

  .card__add-box {
    position: relative;
    width: 100%;
    height: 40px;
  }
  .catalog__card.card__available .card__add-box {
    height: 80px;
  }

  .card__add-cart,
  .card__add-size,
  .card__added-cart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 12px 10px;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    background: #000000;
    transition: all 0.2s ease-out;
    opacity: 0;
    visibility: hidden;
  }

  .card__add-cart.active,
  .card__add-size.active,
  .card__added-cart.active {
    opacity: 1;
    visibility: visible;
  }

  .card__oneclick {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.05em;
    padding: 11px 10px;
  }

  .card__add-size.active {
    color: #9e9e9e;
    background: #2f2f2f;
  }

  .card__add-size::after {
    content: '';
    display: inline-block;
    vertical-align: baseline;
    width: 8px;
    height: 14px;
    margin-left: 12px;
    background: url(../img/catalog/card-add-size-arrow.svg) center/cover
    no-repeat;
  }

  .card__info {
    justify-content: center;
  }

  .card__colors {
    order: 1;
    width: auto;
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .card__price-box {
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    width: auto;
    padding: 0 12px 0 0;
    border: none;
  }

  .card__price_old {
    order: 1;
    margin-bottom: 0;
    display: block;
    padding-left: 10px;
  }

  /* .card__modal-sizes,
	.card__modal-cart {
		display: none;
	} */

  .card__modal-sizes {
    display: none;
  }

  .card__price {
    color: #4f4f4f;
  }

  .card__price svg * {
    fill: #4f4f4f;
  }
}

@media (min-width: 1980px) {
  .box_catalog {
    max-width: calc(100vw - 280px);
  }
  .box_catalog-filter {
    margin-left: 10%;
  }
}

/* .catalog__item {
	margin-bottom: 20px;
	width: calc(100% - 2px);
}

.catalog__item:nth-of-type(2n+1) {
	margin-right: 2px;
}

.catalog__item:nth-of-type(2n) {
	margin-left: 2px;
}

.catalog__item .img {
	max-height: 582px;
	overflow: hidden;
	position: relative;
	font-size: 0;
	line-height: 0;
}

.catalog__item .link_item {}

.catalog__item .link_item img {
	width: 100%;
	max-width: 100%
}

.catalog__item .item_likes {
	position: absolute;
	bottom: 13px;
	right: 13px;
	cursor: pointer;
}

.catalog__item .item_info {
	padding-top: 13px;
	padding-right: 10px
}

.catalog__item:nth-of-type(2n+1) .item_info {
	padding-left: 10px
}

.catalog__item .link_name {
	overflow: hidden;
	display: block;
	height: 2.5em;
	font-size: 12px;
	margin-bottom: 8px;
}

.catalog__item .item_price {
	height: 1.2em;
	overflow: hidden;
}

.catalog__item .main_price {
	font-weight: 600;
	display: inline-block;
}

.catalog__item .old_price {
	display: inline-block;
	text-decoration: line-through;
	color: #dd0505;
	font-size: 80%;
	margin-left: 10px;
	fill: #dd0505;
} */

@media (max-width: 1024px) {
  .slider_preview .slick-arrow {
    background-size: 8px;
  }

  .slider_preview .slick-prev,
  .slider_preview .slick-next {
    padding: 17px;
    top: calc(50% - 16px);
    opacity: 0.3;
  }
}

/* метки */
/* .catalog__item .label_sale,
.catalog__item .label_special {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.6);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center
}

.catalog__item .label_sale {
	padding: 0 10px;
	height: 27px;
}

.catalog__item .label_special {
	min-height: 45px;
	padding: 3px 10px 3px;
} */

.sale__title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0.07rem;
}

.sale__desc {
  display: block;
  opacity: 0.7;
  font-size: 10px;
  line-height: normal;
}

.forMam {
  position: absolute;
  top: 33px;
  right: 10px;
  padding: 3px 4px;
  background-color: #696969;
  font-size: 10px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  line-height: normal;
}

.premiumItem {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 14px;
  line-height: normal;
}

/* ЕНД список каталога */

/* Описание товара */
.catalog_detail {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding-bottom: 40px;
  touch-action: pan-x pan-y;
  margin-top: -50px;
}

.product__slider-nav {
  display: none;
}

.product__slider-nav img {
  max-width: 100%;
}

.box_product_slider {
  position: relative;
}

.product__slider img,
.product__slider video {
  max-width: 100%;
  width: 100%;
  height: auto;
  cursor: url(/local/templates/site/img/zoom-1.png), zoom-in;
}

@media (max-width: 500px) {
  .box_product_slider {
    height: auto; /*150.5vw;*/
    overflow: hidden;
  }
}

@media (min-width: 501px) and (max-width: 767px) {
  .box_product_slider {
    height: 644px;
    overflow: hidden;
  }
}

.block_product_info {
  padding: 22px;
}

.product_add_buttons {
  padding: 18px 22px;
  background-color: rgba(255, 255, 255, 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.catalog_detail .product_add_buttons > a {
  display: block;
  width: 100%;
}
.catalog_detail .product_add_buttons > a + a {
  margin-top: 10px;
}
.product_add_buttons .add_basket,
.product_add_buttons .add_subsribe_product {
  width: 100%;
  border: 1px black solid;
  background-color: #000;
  color: #fff;
  transition: all 0.2s ease;
}

.product_add_buttons .add_basket:hover,
.product_add_buttons .add_subsribe_product:hover {
  background-color: #fff;
  color: #000;
}

.product_add_buttons .add_subsribe_product {
  padding: 0 15px;
  line-height: 44px;
  height: 44px;
}

.product_add_buttons .likes {
  width: 44px;
  height: 44px;
  background: #eee;
  color: #eee;
}

.product_add_buttons .likes.active {
  color: #000;
}

.product_add_buttons .likes .icon-like {
  font-size: 20px;
  margin-top: 12px;
}

.product_add_buttons.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}

.box_product_add_bottom .product_add_buttons.fixed {
  position: static;
}

.box_video video {
  width: 100%;
  height: 100vh;
}

.box_video.play {
  display: block;
}

.box_link_video {
  background: #eeeeee;
}

.box_link_video .button {
  width: 100%;
  font-size: 13px;
  height: 60px;
  line-height: 60px;
}

.box_link_video .fas {
  margin-right: 15px;
  font-size: 15px;
}

.catalog_detail .product_title {
  font-size: 18px;
  font-weight: 500;
  text-transform: none;
  color: #000;
}

.product_article {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
}

.product_article span {
  font-weight: 300;
  color: #7c7c7c;
}

.catalog_detail .item_price {
  padding-bottom: 25px;
  /*padding-bottom: 42px;*/
}

.catalog_detail .item_price .main_price {
  font-size: 18px;
  font-weight: 400;
}

.catalog_detail .item_price .old_price {
  fill: #9b9b9b;
  display: none;
  color: #9b9b9b;
  font-size: 15px;
  text-decoration: line-through;
  margin-left: 0.7em;
}

.catalog_detail .item_price.sale .main_price {
  fill: #d0021b;
  color: #d0021b;
}

.catalog_detail .item_price.sale .old_price {
  display: inline-block;
}

.product_info .select-group {
  margin-bottom: 26px;
}
.product_info .select-group:last-child {
  margin-bottom: 9px;
}
.product_info .select-group_margin-off {
  margin-bottom: 0;
}

.product_info .select-group .product__info-title {
  color: #000;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.03rem;
  margin-bottom: 9px;
}

.product_info .select-group .product__info_table {
  float: right;
  font-size: 11px;
  color: #2c2c2c;
}

.catalog_detail .in_stock {
  font-size: 13px;
}

.catalog_detail .in_stock .available {
  color: #839055;
  font-weight: 400;
}

.catalog_detail .in_stock .not_available {
  color: #d0021b;
}

.catalog_detail .block_contact {
  padding-top: 10px;
  background: #fff0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06rem;
  margin-bottom: 45px;
}

.catalog_detail .block_contact a {
  color: #2c2c2c;
  display: inline-block;
  padding: 20px 0;
  vertical-align: middle;
}

.catalog_detail .block_contact .phone .fas {
  font-size: 15px;
  margin-right: 15px;
}

.catalog_detail .block_contact .whatsap {
  font-weight: 400;
  font-size: 13px;
  margin-left: 0;
  padding-left: 0;
}

.catalog_detail .block_contact .whatsap .fab {
  font-size: 17px;
  margin-right: 10px;
}

.catalog_detail .block-inside {
  border-bottom-color: #eee;
  padding: 0 22px;
  font-size: 12px;
  color: #2c2c2c;
}

.catalog_detail .block-inside:first-child {
  border-top: 1px solid #eee;
}

.catalog_detail .block-inside .title {
  font-weight: 500;
  font-size: 13px;
}

.catalog_detail .block-inside .title::after,
.catalog_detail .block-inside .title::before {
  content: '';
  display: block;
  position: absolute;
  background-color: #000;
}

.catalog_detail .block-inside .title::before {
  height: 12px;
  width: 2px;
  right: 5px;
  top: 13px;
  transition: all 0.2s ease;
}

.catalog_detail .block-inside .title::after {
  height: 2px;
  width: 12px;
  right: 0;
  top: 18px;
}

.catalog_detail .block-inside.active .title::before {
  height: 0;
  top: 18px;
}

.catalog_detail .block-inside .inside {
  padding: 10px 0 15px;
}

.list_description .in_stock_store p {
  position: relative;
  padding-right: 30px;
}

.in_stock_store .available::before {
  content: '';
  position: absolute;
  top: 5px;
  right: 4px;
  width: 7px;
  height: 11px;
  border-right: 2px solid #00aa5b;
  border-bottom: 2px solid #00aa5b;
  transform: rotate(45deg);
}

.in_stock_store .not_available::before,
.in_stock_store .not_available::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 7px;
  width: 2px;
  height: 13px;
  background-color: #d0021b;
}

.in_stock_store .not_available::before {
  transform: rotate(45deg);
}

.in_stock_store .not_available::after {
  transform: rotate(135deg);
}

/* карточка комплекта */
.product_kit-container {
  padding: 0 22px;
}

.product_kit {
  border-bottom: 1px solid #eeeeee;
}

.product_kit-item {
  margin-bottom: 22px;
}

.product_kit-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-modal_open-btn {
  cursor: pointer;
}

.product_kit-row_margin {
  margin-bottom: 20px;
}

.product_kit-img {
  margin-right: 10px;
  width: calc(36% + 10px);
}

.product_kit-img img {
  width: 100%;
  height: auto;
  margin-bottom: -5px;
  -o-object-fit: cover;
  object-fit: cover;
}

.product_kit-info {
  width: 64%;
}

.product_kit_title {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.kit_price {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #000000;
}

.product_kit-end {
  margin: 0;
  padding: 20px 0 35px;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  color: #000000;
}

.product_kit-end:first-child {
  margin-right: 10px;
}

.product_card-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.product_card-modal-overlay_open {
  opacity: 1;
  visibility: visible;
}

.product_card-modal {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1160px;
  background: #ffffff;
  overflow-y: auto;
}

.product_card-modal_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  z-index: 99;
}

.product_card-modal_close::before,
.product_card-modal_close::after {
  background: #000000;
}

.product_card-modal .box_product_gallery,
.product_card-modal .product_info {
  width: 100%;
}

.product_card-modal .item_price {
  padding-bottom: 25px;
}

.product_card-modal .product_info {
  padding: 15px 20px 54px;
}

.product_card-modal .block_product_info {
  padding: 0;
}

.product_info-list {
  padding-left: 20px;
  margin-bottom: 25px;
  list-style: disc;
}

.product_info-item {
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 14px;
  color: #000000;
}

.product_card-modal .block-inside {
  padding: 0;
}

.product_info-big-box {
  padding-top: 50px;
}

.product_info-big {
  margin: 0;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
}

.product_info-big a {
  padding-bottom: 2px;
  color: #06aa5c;
}

.product_info-big a:hover {
  border-bottom: 1px solid #06aa5c;
  text-decoration: none;
}

@media (min-width: 400px) {
  .product_kit-img {
    width: 121px;
  }

  .product_kit-info {
    width: calc(100% - 121px);
  }

  .product_kit-end {
    font-size: 16px;
    letter-spacing: 0.04em;
  }
}

@media (min-width: 768px) {
  .product_kit-container {
    padding: 0px;
  }

  .product_card-modal {
    max-height: 733px;
  }

  .product_kit-end {
    letter-spacing: 0;
  }

  .product_card-modal {
    padding: 90px 60px;
  }

  .product_card-modal_close {
    top: 25px;
    right: 25px;
  }

  .product_card-modal .box_product_gallery,
  .product_card-modal .product_info {
    width: 50%;
  }

  .product_card-modal .product_info {
    padding: 0 0 0 25px;
  }
}

@media (min-width: 992px) {
  .product_kit-end {
    letter-spacing: 0.04em;
  }
}

/* отзывы */
.testimonials_product .box_header {
  padding: 31px 0 23px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}

.testimonials_product .box_header h2 {
  margin: 0;
}

.testimonials_product .box_header .link_blue {
  font-size: 13px;
}

@media (max-width: 399px) {
  .testimonials_product .box_header {
    display: block;
  }

  .testimonials_product .box_header .link_blue:nth-child(2) {
    margin-left: 0;
  }

  .testimonials_product .box_header h2 {
    margin-bottom: 10px;
  }
}

.testimonial__item .support-item {
  display: none;
}

.hidden_testimonials {
  display: none;
}

.testimonials__more_load {
  display: none;
}

.testimonial__item {
  font-size: 13px;
  color: #2c2c2c;
  padding: 20px 0 0;
}

.testimonial__item .item_header {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

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

.testimonial__item .autor__photo {
  width: 16px;
  height: 16px;
  margin: 0 9px 0 5px;
}

.testimonial__item .fa-user-circle {
  font-size: 15px;
  color: #000;
}

.testimonial__item .autor .name {
  font-weight: 500;
  padding-bottom: 4px;
}

.testimonial__item .support-item {
  background: #f5f5f5;
  padding: 20px 16px 25px 20px;
  margin: 20px 0 0 20px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  position: relative;
}

.testimonial__item .support-item::after {
  content: '';
  display: block;
  position: absolute;
  top: -7px;
  right: 30px;
  width: 12px;
  height: 12px;
  background: #f5f5f5;
  border-top: 1px solid #e3e3e3;
  border-right: 1px solid #e3e3e3;
  transform: rotate(-45deg);
}

.testimonials_product .box_header + .testimonial__item {
  border-top: 1px solid #eee;
}

.testimonials__more,
.testimonials__more_load {
  width: 100%;
  margin: 20px 0 24px;
  padding-top: 18px;
  border-top: 1px solid #eee;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}

.testimonials__more::before,
.testimonials__more_load::before {
  content: 'Ещё отзывы';
  display: inline-block;
  vertical-align: middle;
  color: #2c2c2c;
}

.testimonials__more .arrow-bottom,
.testimonials__more_load .arrow-bottom {
  margin-left: 2px;
  margin-bottom: 0px;
  font-size: 12px;
  color: #777777;
  transform: rotate(180deg);
  vertical-align: middle;
}

.testimonials__more {
  display: block;
}

/* рейтинг готовый */
.rating .fa-star {
  font-weight: 400;
  font-size: 13px;
  margin-right: 2px;
  color: #787878;
}

.rating .star1 .fa-star:nth-of-type(1),
.rating .star2 .fa-star:nth-of-type(1),
.rating .star3 .fa-star:nth-of-type(1),
.rating .star4 .fa-star:nth-of-type(1),
.rating .star5 .fa-star:nth-of-type(1) {
  font-weight: 600;
  color: #000;
}

.rating .star2 .fa-star:nth-of-type(2),
.rating .star3 .fa-star:nth-of-type(2),
.rating .star4 .fa-star:nth-of-type(2),
.rating .star5 .fa-star:nth-of-type(2) {
  font-weight: 600;
  color: #000;
}

.rating .star3 .fa-star:nth-of-type(3),
.rating .star4 .fa-star:nth-of-type(3),
.rating .star5 .fa-star:nth-of-type(3) {
  font-weight: 600;
  color: #000;
}

.rating .star4 .fa-star:nth-of-type(4),
.rating .star5 .fa-star:nth-of-type(4) {
  font-weight: 600;
  color: #000;
}

.rating .star5 .fa-star:nth-of-type(5) {
  font-weight: 600;
  color: #000;
}

/* Статистический рейтинг по параметрам. 2019-12*/
.stats_rating {
  padding: 25px 0 0px;
}

.stats_rating h2 {
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  margin-bottom: 1.2em;
}

.stats_rating .item_rate {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 17px;
}

.stats_rating .item_rate.two {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

.stats_rating .item_rate .title {
  width: 49%;
  text-align: right;
  padding-right: 10px;
  font-size: 12px;
  color: #2c2c2c;
  line-height: 10px;
}

.stats_rating .item_rate .bargraph {
  width: 51%;
  height: 2px;
  background: #9d9d9d;
  margin-top: 2px;
}

.stats_rating .item_rate .procent {
  display: block;
  height: 100%;
  background: #000;
  position: relative;
}

.stats_rating .item_rate .procent::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  top: -2px;
  right: -3px;
}

.stats_rating .item_rate .procent .data_rate {
  position: absolute;
  z-index: 2;
  top: -9px;
  right: -9px;
  width: 21px;
  height: 21px;
  padding: 2px;
  background: #000;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  text-align: center;
  line-height: 18px;
}

/* оставить отзыв */
.testimonials-form {
  padding: 17px;
}

.testimonials-form h2 {
  text-align: center;
  padding-right: 20px;
  padding-left: 20px;
  text-transform: uppercase;
}

.testimonials-form textarea {
  width: 100%;
}

.testimonials-form .button-black {
  width: 100%;
  max-width: 320px;
  margin-right: auto;
  margin-left: auto;
}

/* установить рейтинг */
.add_rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: row-reverse;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
  font-size: 16px;
}

.add_rating .fa-star {
  font-weight: 400;
  color: #787878;
  transition: all 0.2s ease;
}

.add_rating input {
  display: none;
}

.add_rating .label_star {
  display: inline-block;
  padding: 5px;
}

.add_rating input[type='radio']:checked + .label_star .fa-star,
.add_rating
input[type='radio']:checked
~ input[type='radio']
+ .label_star
.fa-star {
  color: #000;
  font-weight: 600;
}

/* END отзывы */

/* стрит-фото слайдер */
.street-look {
  background: #f8f8f8;
  border-top: 1px solid #e5e5e5;
  padding: 40px 0 80px;
}

.street-look .container {
  padding: 0 20px;
}

.street-look h2 {
  padding-bottom: 40px;
  margin: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.street-look h2 i {
  font-weight: 400;
  font-size: 15px;
}

.street-look .link_insta {
  font-size: 13px;
  font-weight: 400;
  display: inline-block;
  margin-left: 1.5em;
  text-transform: none;
  letter-spacing: 0;
}

.streetlook_slider {
  z-index: 1;
  overflow: hidden;
  display: block;
  white-space: nowrap;
  cursor: -webkit-grab;
  cursor: grab;
  font-size: 0;
  margin: 0;
  width: auto;
  box-sizing: border-box;
}

.streetlook_slider .slick-list {
  overflow: hidden;
  margin: 0 auto;
}

.streetlook_slider .photo__item {
  width: calc((100vw - 80px) / 4);
  min-width: 230px;
  margin: 0 10px !important;
  display: inline-block;
  vertical-align: top;
  transition: transform 0.3s;
}

.streetlook_slider .photo__item img {
  max-width: 100%;
}

.streetlook_slider .slick-prev,
.streetlook_slider .slick-next {
  display: none !important;
}

/* END стрит-фото слайдер */

/* похожие товары */
.similar-products {
  background: #fff0;
  padding: 40px 0;
}

.similar-products .container {
  padding: 0 20px;
}

.similar-products h2 {
  margin: 0;
  text-align: center;
  width: 100%;
  font-weight: 200;
  text-transform: none;
  font-size: 20px;
}

.similar-products__slider {
  white-space: nowrap;
  font-size: 0;
  z-index: 1;
  display: block;
  position: relative;
  overflow: visible;
  cursor: -webkit-grab;
  cursor: grab;
  margin: 0;
  width: auto;
  box-sizing: border-box;
}

.similar-products__slider .slick-list {
  overflow: hidden;
  margin: 0 auto;
}

.similar-products__slider .similar__item {
  width: calc((100vw - 80px) / 4);
  min-width: 230px;
  margin: 0 10px;
  display: inline-block;
  vertical-align: top;
}

.similar-products__slider .similar__item a {
  display: block;
}

.similar-products__slider .similar__item img {
  max-width: 100%;
}

.similar-products__slider .slick-prev,
.similar-products__slider .slick-next {
  display: none !important;
}

/* ЕНД похожие товары */

/*.easyzoom {
    display: inline-block; position: relative;
}
.easyzoom img {
    vertical-align: bottom;
}
.easyzoom-flyout {
    position: absolute;
    z-index: 100;
    top: 0;    left: 0;
    width: 100%;    height: 100%;
    overflow: hidden;
    background: #fff;
}*/

#added_cart {
  text-align: center;
}

#added_cart h2 {
  text-transform: uppercase;
  font-size: 23px;
  letter-spacing: 0.12rem;
}

#added_cart .small {
  font-size: 13px;
}

#added_cart .button,
#added_cart .line-btn {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  white-space: nowrap;
}

#add_subsribe_product {
  text-align: center;
  max-width: 500px;
}

#add_subsribe_product h2 {
  text-transform: uppercase;
  font-size: 23px;
  letter-spacing: 0.12rem;
  margin-bottom: 30px;
}

#add_subsribe_product .small {
  font-size: 13px;
}

#add_subsribe_product .button {
  height: auto;
  line-height: normal;
  padding: 15px;
  margin: 0 auto;
}

/*таблица размеров */
#table_sizes.container_popup {
  padding: 0 0 20px;
  font-size: 14px;
  max-width: 450px;
}

#table_sizes h2 {
  padding-top: 2rem;
}

#table_sizes h3 {
  font-size: 19px;
  margin-top: 2em;
}

#table_sizes ul li {
  margin-bottom: 0.7em;
}

#table_sizes .container {
  width: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.select-size__table {
  width: 100%;
  font-size: 11px;
  border: 1px solid #d8d8d8;
  margin-top: 1rem;
}

.select-size__table .bg-black,
.select-size__table th {
  background-color: #000;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  vertical-align: middle;
  border-left: 1px solid #2c2c2c;
}

.select-size__table .bg-black:first-child {
  border-left: 1px solid #000;
}

.select-size__table .bg-black:last-child {
  border-right: 1px solid #000;
}

.select-size__table th {
  height: 40px;
  padding-top: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: top;
}

.select-size__table th.text-bold {
  font-weight: 700;
}

.select-size__table th:first-child {
  border-left: 1px solid #000;
}

.select-size__table th:last-child {
  border-right: 1px solid #000;
}

.select-size__table tr:nth-child(odd) {
  background-color: #f0f0f0;
}

.select-size__table td {
  padding: 0 7px;
  color: #000;
  font-weight: 400;
  line-height: 14px;
  text-align: center;
  vertical-align: middle;
  border-left: 1px solid #d8d8d8;
}

.select-size__table td.text-bold {
  font-weight: 700;
}

.select-size__table td:first-child {
  border-left: none;
}

#table_sizes img {
  margin-right: 10px;
}

#table_sizes .col-xs-7 {
  padding-left: 10px;
}

#table_sizes blockquote {
  padding: 15px;
  background-color: #f0f0f0;
}

/* END таблица размеров */
/* ЕНД Описание товара */

/* pop-up Доставка */
.dostavka {
  font-size: 14px;
  max-width: 900px;
}

.dostavka h2 {
  padding-right: 30px;
}

.dostavka .col-xs-12 {
  margin-bottom: 50px;
}

.dostavka .title {
  font-weight: bold;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 10px;
  text-transform: uppercase;
  line-height: 1.5em;
}

.important {
  text-transform: uppercase;
  color: #9b9b9b;
  line-height: 1.5em;
}

/* END pop-up Доставка */
/* pop-up Оплата */
.oplata {
  font-size: 14px;
  max-width: 900px;
}

.oplata h2 {
  padding-right: 30px;
}

.oplata .col-xs-12 {
  margin-bottom: 50px;
}

.oplata img {
  max-width: 100%;
}

.number_beauty_list {
  counter-reset: list_colum;
}

.number_beauty_list li {
  margin-bottom: 1em;
  position: relative;
  padding-left: 33px;
}

.number_beauty_list li::before {
  content: counter(list_colum);
  counter-increment: list_colum;
  display: block;
  position: absolute;
  top: -4px;
  left: 0;
  width: 23px;
  height: 23px;
  line-height: 24px;
  text-align: center;
  color: #fff;
  background-color: #000;
  border-radius: 50%;
  font-size: 12px;
}

.shipping__info {
  padding: 15px;
  background-color: #f0f0f0;
}

/* END pop-up Оплата */

/* Корзина */
section.orders {
  padding-bottom: 100px;
}

section.orders .container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 0;
}

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

.quantity button {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  background: #eee;
  color: #000;
  font-size: 20px;
  border-radius: 50%;
  position: relative;
  border: none;
  outline: none !important;
}

.quantity button::after,
.quantity button::before {
  content: '';
  display: block;
  position: absolute;
  background: #000;
}

.quantity button::after {
  width: 10px;
  height: 2px;
  top: 13px;
  left: 9px;
}

.quantity input + button::before {
  width: 2px;
  height: 10px;
  top: 9px;
  left: 13px;
}

.quantity input {
  height: 28px;
  width: 3em;
  color: #000;
  text-align: center;
  border: none;
  outline: none !important;
}

.table_basket .parametrs_desctop,
.table_basket .links_desctop {
  display: none;
}

.table_basket {
  margin: 16px 0 38px;
}

.row_basket {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  border-top: 1px solid #eee;
}

.row_basket .img {
  width: 27%;
  font-size: 0;
  border-right: 1px solid #eee;
}

.row_basket .img img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}

.row_basket .box_parametrs {
  position: relative;
  width: 73%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.row_basket .link_name {
  font-size: 12px;
  color: #2c2c2c;
  display: block;
  margin-right: 20px;
}

.row_basket .item_price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 12px;
}

.row_basket .item_price .main_price {
  font-weight: 500;
  color: #2c2c2c;
}

.row_basket .item_price .old_price {
  display: none;
  color: #9b9b9b;
  text-decoration: line-through;
  /*margin-left: 0.7em;*/
}

.row_basket .item_price.sale .main_price {
  color: #d0021b;
}

.row_basket .item_price.sale .old_price {
  display: inline-block;
}

.row_basket .parametrs_mobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: 500;
  color: #4a4a4a;
  margin-top: 12px;
  margin-bottom: auto;
}

.row_basket .parametrs_mobile .param {
  position: relative;
  margin-right: 8px;
}

.row_basket .parametrs_mobile .param:not(:last-child)::after {
  content: '|';
  color: #eee;
  display: inline-block;
  margin-left: 8px;
}

.row_basket .link_mobile_selects {
  position: absolute;
  width: 18px;
  height: 17px;
  top: 16px;
  right: 16px;
  text-align: center;
  display: block;
}

.row_basket .link_mobile_selects .dot {
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background: #000;
  display: block;
  margin: 7px 0 0 7px;
}

.row_basket .link_mobile_selects::before,
.row_basket .link_mobile_selects::after {
  position: absolute;
  left: 7px;
  content: '';
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background: #000;
  display: inline-block;
}

.row_basket .link_mobile_selects::before {
  top: 0;
}

.row_basket .link_mobile_selects::after {
  bottom: 0;
}

.row_basket .box_select_fixed_mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  transform: translateY(200px);
  transition: transform 0.2s ease;
  z-index: 2000;
}

.row_basket .box_select_fixed_mobile.active {
  transform: translateY(0px);
}

.box_select_fixed_mobile > div {
  border-top: 1px solid #eee;
}

.box_select_fixed_mobile .add_like a,
.box_select_fixed_mobile .delete_basket button {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 12px;
  color: #2c2c2c;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06rem;
  text-align: center;
}

.box_select_fixed_mobile .param_select {
  height: 50px;
  position: relative;
}

.box_select_fixed_mobile .param_select span {
  display: block;
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 50px;
  line-height: 51px;
  font-size: 12px;
  color: #2c2c2c;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06rem;
  text-align: center;
  padding-right: 60px;
}

.box_select_fixed_mobile .param_select .select {
  background: none;
  border: none;
  -webkit-appearance: none;
  /*text-align:-moz-center;
				text-align-last: center;
				text-align: -webkit-center;
				text-align: center; */
  height: 50px;
  padding-left: calc(50% + 25px);
  padding-right: calc(50% - 80px);
  font-weight: 600;
}

.box_select_fixed_mobile .box_quantity {
  height: 50px;
  padding: 11px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: 'HelveticaNeue', 'Roboto', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06rem;
}

.row_basket {
  position: relative;
  transition: all 0.5s ease;
  overflow: hidden;
}

.row_basket .txt_delete {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #eee;
  text-align: center;
  transform: translateX(100%);
  transition: transform 0.5s ease;
}

.row_basket.item_delete {
  overflow: hidden;
}

.row_basket.item_delete .txt_delete {
  transform: translateX(0);
}

.row_basket.item_delete_hide {
  opacity: 0;
  height: 0 !important;
}

.row_basket .txt_favs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.row_basket .txt_favs::before,
.row_basket .txt_favs::after {
  font-family: 'Font Awesome 5 Free';
  content: '\f004';
  font-weight: bold;
  position: absolute;
  display: block;
  top: 30%;
  left: 30%;
  color: #c92f2f;
  transition: all 0.1s ease-out;
  transform: scale(0, 0) translate(0, 0);
  opacity: 1;
}

.row_basket.add_favs .txt_favs::before {
  animation: heart1 1.5s both 0.5s;
}

.row_basket.add_favs .txt_favs::after {
  animation: heart2 1.1s both 0.5s;
}

.row_basket.add_favs {
  overflow: hidden;
}

.row_basket.add_favs .txt_favs {
  opacity: 1;
}

.row_basket.add_favs_hide {
  opacity: 0;
  height: 0 !important;
}

.foot_basket {
  text-align: right;
  padding: 20px 22px;
  border-top: 1px solid #eee;
  font-size: 20px;
  font-weight: 600;
  color: #2c2c2c;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
}

.alert_reserv {
  background: #000;
  color: #fff;
  border-top: 1px solid #fff;
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  height: 50px;
  line-height: 50px;
  letter-spacing: 0.06rem;
}

.orders .box_btn_order {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 22px;
  background-color: rgba(255, 255, 255, 0.8);
}

.orders .box_btn_order .button {
  width: 100%;
}

.orders .info_notice {
  background-color: #d3e7ff;
  padding: 34px 15%;
  text-align: center;
  color: #2c2c2c;
  line-height: 1.3em;
}

.dopskidki .title {
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 17px;
}

.dopskidki .title a {
  text-decoration: underline;
}

.dopskidki .content_form {
  display: none;
  position: relative;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  padding: 22px;
  text-align: center;
}

.dopskidki .content_form .close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: none;
}

.dopskidki .content_form .close::after,
.dopskidki .content_form .close::before {
  background-color: #000;
  width: 17px;
}

.dopskidki .content_form h3 {
  text-transform: uppercase;
  color: #757575;
  font-size: 16px;
  letter-spacing: 0.06rem;
  margin-top: 0;
}

.dopskidki .input-group {
  margin-bottom: 10px;
}

.dopskidki button[type='submit'] {
  width: 100%;
}

.dopskidki .small {
  font-size: 13px;
  color: #2c2c2c;
}

/* ЕНД корзина. табличка товаров используется в инфе о заказе */

/* минималистичные страницы */
.narrow_container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.narrow_container .padding {
  padding-right: 22px;
  padding-left: 22px;
}

.head_mini_back {
  margin-bottom: 35px;
}

.head_mini_back .back {
  background: #000;
  color: #fff;
  height: 50px;
  padding: 0 22px;
}

.head_mini_back .back a {
  display: block;
  width: 50%;
  height: 50px;
  line-height: 55px;
  cursor: pointer;
}

.head_mini_back .h1 {
  background: #eeeeee;
  padding: 22px;
  min-height: 80px;
  text-overflow: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
}

.head_mini_back h1 {
  margin-bottom: 0;
}

.head_mini_back .phone {
  font-size: 13px;
  color: #2c2c2c;
  text-decoration: none;
  margin-top: 5px;
  text-align: center;
}

/* Оформление заказа*/
.box_summa {
  background: #eeeeee;
  padding: 25px 22px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06rem;
  margin-bottom: 26px;
}

.row_summa {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #757575;
  padding-bottom: 15px;
}

.row_summa .td:last-child {
  text-align: right;
}

.foot_summa {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #2c2c2c;
  padding-top: 15px;
  border-top: 1px solid #bbbbbb;
}

.foot_summa .td:last-child {
  text-align: right;
}

.order_checkout .box_btn_order {
  width: 100%;
  padding: 15px 22px;
  background-color: rgba(255, 255, 255, 0.8);
  margin-top: 35px;
}

.order_checkout .box_btn_order .button {
  width: 100%;
}

/* END Оформление заказа*/

/* Вход */
/* .socio_login {
	margin: 30px 0 24px;
}

.socio_login button {
	font-size: 14px;
	text-align: left;
	text-transform: none;
	font-weight: 400;
	letter-spacing: 0;
	width: 265px;
	margin: 0 auto 16px;
	-webkit-box-pack: start;
	-webkit-justify-content: start;
	-ms-flex-pack: start;
	justify-content: start;
}

.socio_login .fb {
	background-color: #4267b2
}

.socio_login .vk {
	background-color: #5181b8
}

.socio_login button .fab {
	font-size: 17px;
	margin-right: 15px;
}

.login .new_user {
	background: #f8f8f8;
	padding: 25px 22px;
	text-align: center;
}

.login .new_user h2 {
	margin: 0;
}

.login .new_user p {
	font-size: 13px;
	margin-top: 9px;
} */

.login {
  position: fixed;
  top: 0;
  right: -110%;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  background-color: #000000;
  z-index: 29000;
  -webkit-transition: right 0.7s;
  -o-transition: right 0.7s;
  transition: right 0.7s;
}

.login_active {
  right: 0;
  -webkit-transition: right 0.7s;
  -o-transition: right 0.7s;
  transition: right 0.7s;
}

.hidden {
  display: none;
}

.login__container {
  width: 100%;
  max-width: 365px;
  padding: 20px;
  margin: 0 auto;
}

.login-tel__container {
  max-width: 406px;
}

.login-tel__content {
  max-width: 325px;
}

.login__tel {
  margin: 15px 0 30px;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
}

.login .close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 50px;
  height: 50px;
  background: transparent;
}

.login__title {
  display: block;
  margin-bottom: 45px;
  font-weight: 600;
  font-size: 23px;
  line-height: 26px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.login__info {
  width: 244px;
  margin: 0 0 30px;
  font-size: 14px;
  line-height: 18px;
}

.login__input,
.login__input:focus,
.login__input:active {
  width: 100%;
  padding: 13px 15px;
  margin: 0 0 40px;
  font-size: 16px;
  line-height: 20px;
  background: transparent;
  border: 1px solid #ffffff;
}

.login__input::placeholder {
  color: #ffffff;
}

.login__btn {
  width: 100%;
  padding: 16px 14px 12px;
  margin: 0 0 35px;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
  background: #ffffff;
}

.login__btn-code {
  display: block;
  margin: 0 auto;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.login__policy {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}

.login__policy a {
  color: white;
}

/* ЕНД Вход */
/* редактирование профиля */
.edit_info .options {
  text-align: center;
  font-size: 13px;
  padding-bottom: 20px;
}

/* ЕНД редактирование профиля */

/* описание заказа*/
section.order_detail .container {
  padding: 0;
}

.order_detail .table_basket {
  margin-bottom: 4px;
  border-bottom: 1px solid #eee;
}

.table_basket .button-black {
  height: auto;
  line-height: normal;
  font-size: 12px;
  width: auto;
  padding: 8px 10px;
  margin-top: 15px;
  display: inline-block;
  /*position: absolute;
  bottom: 12px;
  left: 16px;*/
}

.order_detail .box_summa {
  background: none;
  margin-bottom: 45px;
}

.info_detail {
  background: #f8f8f8;
  padding: 22px;
}

.info_detail h2 {
  text-align: center;
  margin-bottom: 20px;
}

.table_info {
  display: table;
  width: 100%;
  font-size: 13px;
  color: #2c2c2c;
}

.table_info .row_info {
  display: table-row;
}

.table_info .td_info {
  display: table-cell;
  padding: 13px 0 10px;
  border-top: 1px solid #bbb;
}

.table_info .td_info:last-child {
  text-align: right;
  width: 40%;
}

/* ЕНД описание заказа*/
.head_grey {
  background: #eeeeee;
  padding: 15px 22px 25px;
  position: relative;
  text-align: center;
  font-size: 13px;
  color: #2c2c2c;
}

.head_grey h1 {
  margin: 0;
}

.head_grey .date {
  margin-bottom: 6px;
}

.head_grey .status {
  margin-top: 0;
}

.head_grey .complete {
  color: #2f8cdf;
}

.head_grey .cancel {
  color: #d0021b;
}

.head_grey .new {
  color: #00aa5b;
}

.head_grey .back {
  position: absolute;
  top: 15px;
  left: 18px;
}

/* личный кабинет */
.cabinet * {
  margin: 0;
}

.cabinet {
  font-family: 'AvenirNextCyr', serif;
  display: flex;
  justify-content: center;
  gap: 127px;
  margin: 0 50px 0 auto;
  padding: 50px 15px 0 15px;
}

@media (max-width: 1190px) {
  .cabinet {
    gap: 50px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

@media (max-width: 900px) {
  .cabinet {
    gap: 0;
    flex-direction: column;
  }
}

.cabinet a:hover {
  text-decoration: none;
}

.cabinet__sidebar,
.cabinet__content {
  display: flex;
  flex-direction: column;
}

.cabinet__sidebar {
  padding-top: 29px;
  text-align: right;
  align-items: flex-end;
}

@media (max-width: 900px) {
  .cabinet__sidebar {
    padding: 0;
  }
}

.cabinet__orders,
.cabinet__form,
.cabinet__address {
  margin: 30px 0 0 0;
}

@media (max-width: 900px) {
  .cabinet__sidebar {
    text-align: left;
    align-items: flex-start;
  }
}
.cabinet .dropdown_title {
  display: none;
}
@media (max-width: 900px) {
  .cabinet .dropdown_title  {
    display: flex;
    align-items: center;
    width: 100%;
    transform: rotate(0);
    transition: transform .3s, padding .3s;
  }
}
.cabinet .dropdown_title._active {
  padding: 0 0 15px 0;
}

.cabinet .dropdown_title svg {
  transition: transform .3s;
  margin: 10px 0 0 0;
}

.cabinet .dropdown_title._active svg {
  transform: rotate(180deg);
  transition: transform .3s;
}
@media (max-width: 900px) {
  .cabinet .dropdown_list {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s;
  }
}
.cabinet .dropdown_list._active {
  max-height: 1000px;
  transition: max-height .3s;
}
.cabinet__text {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.03em;
}

.cabinet__text_h1 {
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -0.045em;
  color: #000;
  font-weight: 500;
  text-transform: none;
  margin: 0;
}

@media (max-width: 900px) {
  .cabinet__text_h1 {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -0.05em;
    margin: 0 10px 0 0;
  }
}

.cabinet__text_h2 {
  font-size: 32px;
  line-height: 38px;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.cabinet__text_h3 {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.05em;
  font-weight: 500;
}

@media (max-width: 900px) {
  .cabinet__text_h3 {
    font-size: 18px;
    line-height: 22px;
  }
}

.cabinet__text_h4 {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.05em;
  font-weight: 500;
  max-width: 200px;
}

@media (max-width: 900px) {
  .cabinet__text_h4 {
    font-size: 16px;
    line-height: 20px;
    max-width: unset;
  }
}

.cabinet__text_s {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.cabinet__text_m {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.cabinet__button-text_up {
  font-size: 11px;
  line-height: 11px;
  font-weight: 400;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.cabinet__sidebar-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cabinet__sidebar-username {
  margin: 0;
}

.cabinet__sidebar-bonuses {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 900px) {
  .cabinet__sidebar-bonuses {
    justify-content: flex-start;
  }
}

.cabinet__sidebar-menu {
  margin: 30px 0;
}
@media (max-width: 900px) {
  .cabinet__sidebar-menu {
    margin: 15px 0;
  }
}

.cabinet__sidebar-menu-list {
  max-width: 170px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 900px) {
  .cabinet__sidebar-menu-list {
    max-width: 100%;
  }
}

.cabinet__sidebar-menu-link_active {
  border-bottom: 1px solid #000;
}

.cabinet__content {
  width: 100%;
}

.cabinet__content._w-625 {
  max-width: 625px;
}

@media (max-width: 900px) {
  .cabinet__content._w-625 {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .cabinet__content-title {
    display: none;
  }
}

.cabinet__content-title + p {
  margin: 10px 0 0 0;
}

.cabinet__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.cabinet__form-group {
  display: block;
  position: relative;
  flex-shrink: 0
}

.cabinet__form-label {
  position: absolute;
  top: -7px;
  left: 12px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #808080;
  padding: 0 4px;
  background: #fff;
  letter-spacing: -0.04em;
}

.cabinet__form-input {
  all: unset;
  width: 100%;
  height: 52px;
  padding: 14px 16px;
  border: 1px solid #D2D2D7;
  color: #000000;
  box-sizing: border-box;
  letter-spacing: -0.04em;
}

.cabinet__form-input[type="date"] {
  display:block;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}

.cabinet__form-input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}

.cabinet__form-input:focus {
  outline: none;
}

.cabinet__form-input._bg-extra-light {
  background: #F5F5F7;
}

.cabinet__form-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #808080;
  letter-spacing: -0.03em;
}

.cabinet__form-submit {
  font-family: 'AvenirNextCyr', serif;
  max-width: 228px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 11px;
  letter-spacing: 1.4px;
  color: #fff;
  background: #000;
  border: 1px solid #000;
  transition: background .3s;
  transition-property: background;
  margin-top: 10px;
  cursor: pointer;
}

.cabinet__form-submit._full-width {
  max-width: 100%;
}

.cabinet__form-submit._transparent {
  color: #000;
  background: transparent;
  border: none;
  transition: background .3s, color .3s;
}

.cabinet__form-submit:hover {
  color: #000;
  background: #fff;
  transition: background .3s;
}

.cabinet__form-submit._transparent:hover {
  color: #fff;
  background: #000;
}

.cabinet__overlay {
  opacity: 0;
  visibility: hidden;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.5);
  z-index: 1001;
  transition: .3s all;
}

.cabinet__modal {
  opacity: 0;
  visibility: hidden;

  width: 100%;

  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1002;

  background: #fff;
  padding: 60px;
  transition: 0.3s all;
}

@media (max-width: 900px) {
  .cabinet__modal {
    max-width: 100%;
    height: 100vh;
    padding: 60px 20px 20px 20px;
  }
}

.cabinet__modal._w-420 {
  max-width: 420px;
}

.cabinet__modal._w-600 {
  max-width: 600px;
}

.cabinet__modal a:hover {
  text-decoration: none;
}

.cabinet__modal-cross {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cabinet__modal-header {
  margin-bottom: 20px;
}

.cabinet__modal-title {
  text-align: center;
}

.cabinet__modal-body {
  margin-bottom: 20px;
}

.cabinet__modal-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-align: center;
}

.cabinet__modal-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 0 7px 0;
}

.cabinet__overlay._active,
.cabinet__modal._active {
  opacity: 1;
  visibility: visible;
}

.cabinet__modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cabinet__modal-form-row {
  display: grid;
  grid-template-columns: 1fr;
}

.cabinet__modal-form-row._col-2 {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
}

.cabinet__modal-form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cabinet__modal-form input {
  width: 100%;
  max-width: 100%;

  border: 1px solid #d2d2d7;
  padding: 13px 16px;
}

.cabinet__modal-form input._error {
  border: 1px solid #c63a42;
}

.cabinet__modal-form input::placeholder {
  color: #808080;
}

.cabinet__input-error {
  display: none;
  color: #c63a42;
}

.cabinet__order {
  padding: 20px 0 32px 0;
  border-top: 1px solid #000000;
  cursor: pointer;
}

.cabinet__no-order {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cabinet__no-order-btn {
  text-align: center;
  color: #000;
  background: #fff;
  display: block;
  cursor: pointer;
  border: 1px solid #000000;
  transition: .3s all;
  padding: 19.5px 10px;
}

.cabinet__no-order-btn:hover {
  color: #ffffff;
  background-color: #000000;
  transition: .3s all;
}

@media (max-width: 900px) {
  .cabinet__order {
    padding: 10px 0 30px 0;
  }

  .cabinet__order * ._desktop {
    display: none;
  }
}

.cabinet__order-row {
  display: flex;
  align-items: center;
}

.cabinet__order-row._header {
  gap: 10px;
  margin-bottom: 9px;
}

.cabinet__order-row._body {
  gap: 5px;
}

.cabinet__order-row._footer {
  gap: 10px;
}

.cabinet__order-row._tablet {
  display: none;
}

@media (max-width: 900px) {
  .cabinet__order-row._tablet  {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
  }
}

.cabinet__order-row._p-l-26 {
  padding-left: 26px;
}

.cabinet__order-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  transition: transform .3s ease-in;
}

.cabinet__order-arrow svg {
  width: 100%;
  height: 100%;
}

.cabinet__order-arrow._active {
  transform: rotate(180deg);
}

.cabinet__order-price {
  margin-left: auto;
  padding: 3px 1px 0 28px;
}

@media (max-width: 900px) {
  .cabinet__order-price {
    margin: 0;
    padding: 0 0 10px 26px;
  }
}

.cabinet__order-date {
  color: #808080;
}

.cabinet__order-status {
  padding: 2px 6px;
  background: #F5F5F7;
  color: #424245;
}

.cabinet__order-status._black {
  background: #000000;
  color: #ffffff;
}

.cabinet__order-tracking {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 5px;
  color: #808080;
}

.cabinet__order-quantity {
  margin-left: auto;
  color: #808080;
}

@media (max-width: 900px) {
  .cabinet__order-quantity {
    margin: 0;
    padding: 0;
  }
}

.cabinet__order-quantity._p-l-28 {
  padding-left: 28px;
}

.cabinet__order-address {
  padding-top: 16px;
}

@media (max-width: 900px) {
  .cabinet__order-address {
    padding-top: 10px;
  }
}

.cabinet__order-address span {
  font-weight: 700;
}

.cabinet__order-items {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding-left: 28px;
  gap: 5px;
}

@media (max-width: 900px) {
  .cabinet__order-items {
    width: 100%;
    margin: 0;
    padding: 5px 0 0 26px;
  }
}

.cabinet__order-items._hidden,
.cabinet__order-quantity._hidden {
  display: none;
}

.cabinet__order-item {
  width: 31px;
  height: 46px;
}

@media (max-width: 900px) {
  .cabinet__order-item {
    width: 53px;
    height: 74px;
  }
}

.cabinet__order-item._quantity {
  width: max-content;
  background: #F5F5F7;
  padding: 0 6px 0 8px;
  display: flex;
  align-items: center;

  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
}

@media (max-width: 900px) {
  .cabinet__order-item._quantity {
    width: 100%;
    max-width: 53px;
  }

  .cabinet__order-item._quantity span {
    display: inline-block;
    margin: 0 auto;
  }
}

.cabinet__order-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cabinet__order-body {
  max-height: 0;
  padding: 0 0 0 26px;
  opacity: 0;
  overflow: hidden;
  transition: all .3s ease-in;
}

@media (max-width: 900px) {
  .cabinet__order-body {
    padding: 0 0 0 26px;
  }
}

.cabinet__order-body._active {
  max-height: max-content;
  padding: 20px 0 0 26px;
  opacity: 1;
}

.cabinet__order-body-items {
  padding: 15px 0 7px 0;
}

.cabinet__order-body-item {
  padding: 10px 0 15px 0;
  border-top: 1px solid #D2D2D7;

  display: flex;
  gap: 10px;
}

.cabinet__order-body-item-img {
  max-width: 80px;
  width: 100%;
  max-height: 120px;
  height: 100%;
}

.cabinet__order-body-item-info {
  display: flex;
  flex-direction: column;
}

.cabinet__order-body-item-name {
  font-weight: 500;
  padding-bottom: 5px;
}

@media (max-width: 900px) {
  .cabinet__order-body-item-name {
    font-size: 14px;
    line-height: 18px;
  }
}

.cabinet__order-body-item-color {
  padding-bottom: 2px;
}

.cabinet__order-body-item-size {
  padding-bottom: 5px;
}

.cabinet__order-body-item-color,
.cabinet__order-body-item-size {
  color: #808080;
}

.cabinet__order-body-item-quantity {
  font-weight: 500;
}

.cabinet__order-body-item-price {
  margin-left: auto;
  padding-left: 5px;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.cabinet__order-body-item-price_default,
.cabinet__order-body-item-price_discount {
  font-weight: 500;
  white-space: nowrap;
}

.cabinet__order-body-item-price_discount  {
  color: #F02124;
}

.cabinet_order-body-item-price_undiscounted {
  color: #808080;
  text-decoration: line-through;
  white-space: nowrap;
}

.cabinet__order-body-payment-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cabinet__order-body-payment-row {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 5px;
}

@media (max-width: 900px) {
  .cabinet__order-body-payment-row._delivery {
    align-items: flex-start;
  }
}

.cabinet__order-body-payment-key,
.cabinet__order-body-payment-value {
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .cabinet__order-body-payment-value._delivery {
    text-align: right;
    white-space: normal;
  }
}

.cabinet__order-body-payment-line,
.cabinet__order-body-payment-line svg {
  max-width: 100%;
  width: 100%;
}

.cabinet__address {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cabinet__address-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 25px 16px;
  border: 1px solid #d2d2d7;
  cursor: pointer;
}

@media (max-width: 900px) {
  .cabinet__address-item {
    padding: 16px;
  }
}

.cabinet__address-item-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #000000;
}

.cabinet__address-item-circle._active {
  position: relative;
  padding: 6px;
}

.cabinet__address-item-circle._active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #000000;
  border-radius: 50%;
}

.cabinet__address-item-text {
  flex: 1;
  font-weight: 500;
}

.cabinet__address-item-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cabinet__address-item-edit {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2IDVMMTAgMTFWMTRIMTNMMTkgOE0xNiA1TDE5IDJMMjIgNUwxOSA4TTE2IDVMMTkgOCIgc3Ryb2tlPSIjODA4MDgwIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMTAuNSA0SDRWMjBIMjBWMTMuNSIgc3Ryb2tlPSIjODA4MDgwIiBzdHJva2Utd2lkdGg9IjEuNSIvPgo8L3N2Zz4K");
  background-size: 100% 100%;
  cursor: pointer;
}

.cabinet__address-item-delete {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0IDExLjIxNTNWMTYuMjE1MyIgc3Ryb2tlPSIjODA4MDgwIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIvPgo8cGF0aCBkPSJNMTAgMTEuMjE1M1YxNi4yMTUzIiBzdHJva2U9IiM4MDgwODAiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIi8+CjxwYXRoIGQ9Ik00LjUgNi41TDYuNSAyMS41SDE3LjVMMTkuNSA2LjUiIHN0cm9rZT0iIzgwODA4MCIgc3Ryb2tlLXdpZHRoPSIxLjUiLz4KPHBhdGggZD0iTTMgNi4xMjIwN0gyMSIgc3Ryb2tlPSIjODA4MDgwIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIvPgo8cGF0aCBkPSJNOSA2LjVWMi41SDE1VjYuNSIgc3Ryb2tlPSIjODA4MDgwIiBzdHJva2Utd2lkdGg9IjEuNSIvPgo8L3N2Zz4K");
  background-size: 100% 100%;
  cursor: pointer;
}

.cabinet__address-add {
  text-align: center;
  cursor: pointer;
  color: #000;
  background-color: #fff;
  border: 1px solid #000000;
  transition: all .3s;
  padding: 19.5px 10px;
}

.cabinet__address-add:hover {
  color: #ffffff;
  background-color: #000000;
  transition: all .3s;
}


/* контакты. магазины */
.map__city-item {
  margin-bottom: 40px;
}

.map__city__title {
  font-size: 16px;
  color: #9b9b9b;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06rem;
  margin-bottom: 20px;
  padding-left: 22px;
  padding-right: 22px;
}

.map__city-store {
  background: #eeeeee;
  padding: 25px 22px 11px 22px;
}

.map__city-store + .map__city-store {
  border-top: 1px solid #ddd;
}

.map__content .title-h2 {
  margin: 2em 0 1.2em;
  text-align: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.map__city-store__title {
  position: relative;
  padding-right: 21px;
  padding-bottom: 14px;
  font-size: 14px;
  font-weight: 500;
}

.map__city-store__title .icon-arrow {
  position: absolute;
  top: 0;
  right: 0;
  fill: none;
  stroke: #000;
  font-size: 8px;
  height: 13px;
  margin-left: 2px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.shop-rating {
  display: block;
}

.more-contact {
  display: none;
  font-size: 14px;
  padding-bottom: 14px;
}

.map__city-store__info .icon {
  width: 15px;
  margin-right: 10px;
}

.map__city-store__info {
  margin-bottom: 13px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.map__city-list_image {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  /*flex-wrap: wrap;*/
  margin-top: 10px;
}

.map__city-image {
  margin: 0 5px 5px 0;
  max-width: 147px;
  width: 48%;
}

.map__city-image a {
  display: inline-block;
}

.map__city-image img {
  max-width: 100%;
}

.testimonials-form-store .box {
  background: #eeeeee;
  padding: 25px 22px;
}

.testimonials-form-store .title-h2 {
  margin-bottom: 0;
}

/* ЕНД контакты. магазины */

/* 404 & пустая корзина*/
.p404 {
  padding: 11vh 0;
  text-align: center;
  font-size: 14px;
}

.p404 p:nth-of-type(2) {
  padding: 0 20%;
}

.p404 img {
  width: 350px;
  max-width: 100%;
}

.wrapper-button_basket {
  display: flex;
  justify-content: center;
  height: 100%;
  flex-wrap: wrap;
  align-content: flex-start;
  padding: 50px 0px;
}

/* ЕНД 404 */

/* раздел отзывов */
.reviews .head_grey {
  padding-top: 30px;
  padding-bottom: 30px;
}

.menu_reviews,
.sort_review,
.averageRating {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.menu_reviews {
  margin-top: 24px;
  margin-bottom: 50px;
  max-width: 320px;
}

.menu_reviews .item {
  display: inline-block;
  width: 50%;
  height: 49px;
  line-height: 50px;
  padding: 0 23px;
  font-size: 1rem;
  font-weight: 600;
  color: #9b9b9b;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
}

.menu_reviews .item.active {
  color: #2c2c2c;
  border-bottom: 2px solid #000;
}

.sort_review {
  max-width: 768px;
  font-size: 13px;
  font-weight: 500;
}

.sort_review .item {
  display: block;
  margin-bottom: 18px;
  letter-spacing: 0.06rem;
}

.sort_review a {
  color: #9b9b9b;
}

.sort_review span {
  text-transform: uppercase;
}

.averageRating {
  max-width: 320px;
  margin-bottom: 35px;
}

.averageRating div {
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
}

.averageRating div span {
  color: #000;
  font-size: 23px;
  margin: 10px 0.35ex 30px;
  display: inline-block;
}

.list_reviews {
  padding: 30px 0;
}

.list_reviews .testimonial__item {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.list_reviews .testimonial__item.active {
  border-bottom: none;
}

.list_reviews .message {
  padding-bottom: 5px;
}

.testimonial__item .show_support .t2 {
  display: none;
}

.testimonial__item.active .show_support .t2 {
  display: block;
}

.testimonial__item.active .show_support .t1 {
  display: none;
}

.list_reviews .testimonial__item .tovar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.list_reviews .testimonial__item .foto {
  width: 94px;
  height: 94px;
  min-width: 94px;
  border-radius: 50%;
  margin-right: 20px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.list_reviews .testimonial__item .tovar .name {
  color: #818181;
}

.list_reviews .testimonial__item .tovar .name a {
  display: block;
  margin-bottom: 10px;
  color: #111;
  font-weight: bold;
}

.store_reviews {
  padding: 30px 0;
}

.store_reviews .testimonial__item {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.store_reviews .testimonial__item.active {
  border-bottom: none;
}

.store_reviews .message {
  padding-bottom: 5px;
}

.testimonial__item .rating_store {
  color: #818181;
  text-align: center;
}

.testimonial__item .rating_store span {
  font-size: 29px;
  display: block;
}

/* END раздел отзывов */
/* оценка магазинов */
.select-store {
  background: #f8f8f8;
  padding: 25px 22px;
  text-align: center;
  margin-bottom: 30px;
}

.select-store .rating-name {
  margin-bottom: 10px;
}

.select-store .rating-store {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
}

.select-store .title {
  font-weight: 600;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  margin: 10px 0 20px;
  font-size: 1.5rem;
}

.select-store .title span {
  font-size: 1rem;
}

.select-store .open-popup-link {
  font-size: 13px;
}

.group-2col .input-group {
  clear: both;
  margin-bottom: 1em;
  min-height: 2em;
}

.quality_services .voiting-begunki {
  margin: 0 0px 55px;
  font-size: 13px;
}

.voiting-begunki .input-group {
  margin-bottom: 1.5em;
}

.voiting-begunki label {
  text-transform: none;
  font-weight: bold;
}

.voiting-begunki .begunok {
  margin-top: 1.2em;
}

.voiting-begunki .hide-input input {
  display: none;
}

.quality_services .submit-group {
  margin-top: 25px;
}

#select-store form {
  text-align: center;
}

#select-store select {
  margin-bottom: 20px;
}

#select-store input {
  min-width: 100px;
}

/* ЕНД оценка магазинов */
.head_grey.h1 {
  padding-top: 25px;
}

.head_grey.h1 h2 {
  margin-bottom: 0;
}

/* франшиза */
.franshiza .visual {
  font-size: 0;
  line-height: 0;
  position: relative;
}

.franshiza .visual img {
  width: 100%;
}

.franshiza .visual .title {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 10%;
  width: 80%;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.06rem;
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.franshiza .text_light {
  font-size: 15px;
}

.franshiza .title_fr {
  font-size: 13px;
  color: #2c2c2c;
  font-weight: 600;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
}

.franshiza .big_fr {
  font-size: 23px;
  color: #000;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.3em;
}

.franshiza .box_subscribe_news .container {
  max-width: 365px;
}

.contact_fr {
  padding: 30px 22px 30px;
}

.contact_fr .big {
  color: #2c2c2c;
  font-weight: 600;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
}

.contact_fr p:not([class]) {
  font-size: 13px;
}

.zakupki_fr > div {
  text-align: center;
  margin-bottom: 27px;
}

.zakupki_fr .item {
  border: 2px solid #000;
  padding: 35px 35px;
  text-transform: uppercase;
}

.zakupki_fr .item p:not([class]) {
  font-size: 13px;
  color: #2c2c2c;
  font-weight: 600;
  letter-spacing: 0.06rem;
}

.zakupki_fr .item .title {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.12rem;
}

/* END франшиза */

/* рассрочка */

.inst_pmnt_flex {
  display: flex;
  align-items: center;
  padding: 3%;
  flex-wrap: nowrap;
}

.inst_pmnt_flex .flex_text .title {
  font-size: 48px;
  font-weight: 600;
  padding: 20px 0px;
}

.inst_pmnt_flex .item {
  width: 50%;
  text-align: center;
}

.inst_pmnt_flex .flex_text {
  width: 50%;
}

.item img:not([class]) {
  width: 50%;
}

.inst_pmnt_flex .flex_text p:not([class]) {
  font-size: 20px;
}

.item img:not([class]) {
  width: 100%;
}

.flex_text .p .a {
  color: #ff8562;
}

@media (max-width: 1000px) {
  .inst_pmnt_flex {
    flex-wrap: wrap;
  }

  .inst_pmnt_flex .flex_text {
    width: 100%;
    text-align: center;
    order: 2;
  }

  .inst_pmnt_flex .item {
    width: 100%;
    text-align: center;
  }
}
/* END рассрочка */

@media (max-width: 359px) {
  /* шапка */
  #open-search {
    /*margin-right: 13px;*/
  }
  .header-right-group {
    padding-left: 15px
  }
  .header-right-group .header-right-group__item.header-cart,
  .header-right-group .header-right-group__item:first-child,
  .header-right-group .header-right-group__item {
    margin-left: 10px
  }

  /*.header-right-group .header-right-group__item {
    margin-left: 13px;
  }*/

  /* главное меню */
  .boxleft-nav {
    transform: translateX(-320px);
  }

  .box_width {
    width: 270px;
  }

  .boxleft-nav .close {
    left: 270px;
  }

  .box_quick_link a {
    padding: 0;
  }

  .line-btn {
    padding: 13px 15px;
  }

  /* описание товара */
  .product_add_buttons .add_basket,
  .product_add_buttons .add_subsribe_product {
    font-size: 13px;
  }

  /* описание заказа*/
  .table_basket .button-black {
    font-size: 9px;
  }

  .menu_reviews .item {
    padding: 0 10px;
  }
}

.reviews_preview_photo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin-left: -6px;
  margin-bottom: 10px;
}

.reviews_preview_photo .item {
  /*width: -webkit-calc(10% - 6px);
    width: calc(10% - 6px);*/
  width: 55px;
  margin-left: 6px;
  height: 60px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.reviews_preview_photo .item span {
  position: absolute;
  z-index: 2;
  right: -4px;
  top: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #b82361;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-image: url(../img/close_white.svg);
  background-size: 8px;
  background-repeat: no-repeat;
  background-position: center;
}

.reviews_preview_photo .item span:hover {
  background-color: #a31f56;
}

.reviews_preview_photo .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product_modal form .file {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.product_modal form .file:hover .file_text {
  background-color: #e5e5e5;
}

.product_modal form .file input[type='file'] {
  opacity: 0;
  cursor: pointer;
  height: 48px;
  width: 100%;
}

.product_modal form .file .file_text {
  position: absolute;
  z-index: -1;
  width: 100%;
  left: 0;
  top: 0;
}

.buyer_photos_slider {
  margin-top: 10px;
}

.buyer_photos_slider .element {
  width: -webkit-calc(20% - 5px);
  width: calc(20% - 5px);
  margin-left: 5px;
  width: 59px;
  display: inline-block;
}

.buyer_photos_slider .element img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.box_callus {
  margin-bottom: 20px;
}

#call-us {
  max-width: 680px;
}

#call-us .row input {
  width: 100%;
}

#call-us h2 + p {
  text-align: center;
  font-size: 90%;
  margin-bottom: 30px;
}

#call-us .row + p {
  margin-top: 0;
}

.share_socio {
  padding: 0 22px;
  margin: 15px 0 0;
}

.share_socio > * {
  vertical-align: middle;
  display: inline-block;
}

.share_socio > span {
  font-size: 12px;
  margin-right: 15px;
}

#sale_coupon {
  text-align: center;
}

#sale_coupon input[type='text'] {
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
  width: 230px;
  margin-left: auto;
  margin-right: auto;
}

#sale_coupon button {
  width: 230px;
}

/* франшиза */
.visual_page {
  height: 50vh;
  min-height: 300px;
  max-height: 600px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

/* история. о нас */
.head_about {
  overflow-x: hidden;
}

.head_about__title-box {
  width: 100vw;
  height: 373px;
  /*background: url(../pics/about-title-img.jpg) #000 no-repeat 50% 0;*/
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .head_about__title-box {
    height: 186.5px;
  }
  .head_about__title {
    transform: translateY(93px);
  }
}

.head_about__title {
  text-align: center;
  -webkit-transform: translateY(186px);
  -ms-transform: translateY(186px);
  transform: translateY(186px);
  font-weight: 600;
  font-size: 23px;
  line-height: 26px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .head_about__title {
    -webkit-transform: translateY(93px);
    -ms-transform: translateY(93px);
    transform: translateY(93px);
  }
}

.head_about__nav {
  background: #eee0;
  text-align: center;
}

.head_about__nav-box {
  overflow-x: auto;
}

.head_about__nav ul {
  width: auto;
  padding: 0 10px;
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #eee0;
}

.head_about__nav-item {
  padding: 0 25px;
}

.head_about__nav-item_active a {
  border-bottom: 2px solid #000;
}

.head_about__nav-item a,
.head_about__nav-item span {
  display: inline-block;
  vertical-align: baseline;
  padding: 22px 0 18px;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
  color: #000000;
}

.head_about__nav-item a:hover {
  text-decoration: none;
}

.visual_about {
  height: 80vh;
  max-height: 140vw;
  position: relative;
  background: url(../pics/history_mob.jpg) #bbb no-repeat 50% 0;
  background-size: cover;
}

.visual_about .title {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  padding: 25px 0;
  background: rgba(216, 216, 216, 0.6);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06rem;
  line-height: 1.3;
}

.slides-years-block {
  font-weight: 600;
  color: #9b9b9b;
  letter-spacing: 0.06rem;
  margin: 40px -20px 40px;
  /* margin: 40px -20px 20px; */
  position: relative;
}

.slides-years-block::after {
  display: block;
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #eee;
  z-index: -1;
}

.slides-years-block .year_item {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 18px;
  padding-top: 7px;
  height: 44px;
}

.slides-years-block .year_item::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: 28px;
  height: 28px;
  margin-left: -14px;
  border-radius: 50%;
  background: #9b9b9b;
  border: 9px solid #fff;
}

.slides-years-block .year_item.slick-current {
  color: #2c2c2c;
  font-size: 23px;
  padding-top: 0;
}

.slides-years-block .year_item.slick-current::after {
  width: 30px;
  height: 30px;
  margin-left: -16px;
  background: #2c2c2c;
}

.slides-history-block h3 {
  font-weight: 600;
  font-size: 15px;
  color: #2c2c2c;
  margin-top: 0;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
}

.slides-history-block .text_light {
  padding-bottom: 20px;
}

.slides-history-block .img img {
  max-width: 100%;
  width: 100%;
}

/* график */
.chart {
  position: relative;
  width: 100%;
  max-width: 968px;
  height: 100%;
  margin: 35px auto 50px;
  padding: 32px 30px 17px;
  border: 1px solid #eeeeee;
  -webkit-box-shadow: 0 0 8px 1px #eeeeee;
  box-shadow: 0 0 8px 1px #eeeeee;
}

.chart-container {
  width: 100%;
  height: 100%;
}

.chart_header {
  font-family: 'HelveticaNeue', 'Roboto', Helvetica, Arial, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 0 0 0 5px;
}

.chart_title {
  font-weight: 600;
  font-size: 22px;
  line-height: 25px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
}

.chart_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  list-style: none;
}

.chart_item {
  position: relative;
  padding-left: 34px;
  font-size: 15px;
  line-height: 17px;
  color: #000000;
}

.chart_item:last-child {
  margin-left: 23px;
}

.chart_item:first-child::before {
  position: absolute;
  left: 0;
  top: 7px;
  content: '';
  width: 15px;
  height: 4px;
  background: #242424;
}

.chart_item:last-child::before {
  position: absolute;
  left: 0;
  top: 7px;
  content: '';
  width: 15px;
  height: 4px;
  background: #b8b7b7;
}

@media (max-width: 768px) {
  .chart {
    padding: 20px 8px 12px 10px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .chart_header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 15px;
  }

  .chart_title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 16px;
  }

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

  .chart_item {
    font-size: 12px;
  }
}

@media (max-width: 540px) {
  .chart_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .chart_item:first-child {
    margin-bottom: 5px;
  }

  .chart_item:last-child {
    margin-left: 0;
  }
}

/* о бренде */
.abouts {
  margin-top: 40px;
}

/* команда */
.team__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.team__content {
  margin-top: 59px;
  margin-right: -20px;
}

.team__card {
  padding-right: 20px;
  margin-bottom: 40px;
}

@media (max-width: 413px) {
  .team__card {
    width: 100%;
  }
}

.team__img {
  margin-bottom: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}

.team__img img {
  width: 100%;
  height: auto;
  margin-bottom: -5px;
}

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

.team__info p {
  margin: 0 0 4px 0;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
}

.team__info p.team__name {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 19px;
  line-height: 24px;
}

.team__info .team__link-inst {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.team__info .team__link-inst svg {
  margin-right: 9px;
}
/* END команда */
/* ценности, результаты, производство */
.about .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.about-content {
  padding-top: 39px;
  padding-bottom: 26px;
}

.about-content__text p {
  margin-top: 1.4em;
  margin-bottom: 1.4em;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.about-content__text h2 {
  font-weight: 600;
  font-size: 23px;
  line-height: 26px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
}

.about-content__img img {
  width: 100%;
  height: auto;
}
/* END ценности, результаты, производство */
.about_links {
  margin-top: 45px;
  margin-bottom: 26px;
}

.about_links a {
  margin-bottom: 19px;
}

.about_links .line-btn {
  display: block;
}

.about_links .button {
  height: 47px;
  line-height: 47px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.visually-hidden:not(:focus):not(:active) {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.payment__info-box {
  width: 100%;
  max-width: 500px;
  margin: 85px auto 35px;
  padding: 25px 22px 5px;
  background: #eeeeee;
}
.payment__info-box img {
  max-width: 100%;
}
.payment__info-box .btn-payment,
.payment__info-box .cloudpay_button {
  border-radius: 32px;
  width: 100%;
  text-align: center;
  padding: 12px 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #000000;
  border:  2px solid #000000;
  display: block;
  margin: 20px 0 10px;
  text-decoration: none;
  transition: 300ms ease-in-out;
  transition-property: color, background-color;
}
.payment__info-box .pay-item-selected {
  text-align: center;
  margin-bottom: 35px;
}
.payment__info-box .pay-item-selected .img {
  margin-bottom: 10px;
}
.payment__info-box .btn-payment:hover,
.payment__info-box .btn-payment:focus,
.payment__info-box .cloudpay_button:hover,
.payment__info-box .cloudpay_button:focus {
  background-color: transparent;
  color: #000000;
}
.payment-dolyami-wrap {
  margin-bottom: 25px;
}
.payment-dolyami-wrap p {
  text-align: center;
}
.payment-dolyami-wrap p:last-child {
  margin-top: 0;
}
.payment-dolyami-wrap .payment-sum {
  font-weight: bold;
  font-size: 18px;
}

.payment__info-title {
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
}

.payment__info-text {
  margin: 0 0 7px;
  font-size: 16px;
  line-height: 18px;
  color: #000000;
}

.payment__info-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}

.payment__info-tr {
  border-top: 1px solid #c4c4c4;
}

.payment__info-td {
  padding: 20px 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
}

.payment__info-td:last-child {
  text-align: right;
}

/*Начинаем с вертикального планшета 768рх*/
@media (min-width: 768px) {
  /* шапка */
  .search-form {
    width: -webkit-calc(100% - 165px);
    width: calc(100% - 165px);
  }

  /* поп-ап окна */
  .container_popup {
    padding: 2em 3em;
  }

  /* промо разделы на главной */
  /* .box_section_promo {
		margin: 48px auto 43px; padding: 0;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: flex-start;
		-webkit-align-items: flex-start;
		-ms-flex-align: flex-start;
		align-items: flex-start;
	}
		.section_promo {width: 50%; padding: 0 24px 39px;}
		.section_promo .link {padding-top: 18px;} */

  /* слайдер на главной */
  .home-slider .h1 {
    font-size: 83px;
    font-weight: 700;
    line-height: 69px;
  }
}

@media (min-width: 768px) and (orientation: portrait) and (max-width: 900px) {
  .home-slider__item {
    height: 50vh;
  }

  .button-mainslider {
    bottom: 7vh;
  }
}

@media (min-width: 768px) {
  .desc-big {
    font-size: 20px;
    font-weight: 400;
    max-width: 320px;
    text-align: center;
    margin-bottom: 0;
  }

  /* ЕНД слайдер на главной */

  /* Описание товара */
  .catalog_detail {
    max-width: 100%;
    padding: 0;
    margin-top: -50px;
  }

  .product_description {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: flex-startr;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
  }

  .product_info {
    width: 50%;
    padding-top: 100px;
  }

  .product_info > div {
    max-width: 700px;
    margin: 0 auto;
  }

  .box_product_gallery {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: flex-startr;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    position: relative;
    padding-right: 10px;
  }

  .product__slider-nav {
    display: block;
    width: 65px;
    font-size: 0;
    line-height: 0;
    padding-left: 20px;
    position: absolute;
    padding-top: 70px;
  }

  .product__slider-nav .nav_item {
    border: none;
    margin-bottom: 20px;
  }

  .product__slider-nav .slick-prev,
  .product__slider-nav .slick-next {
    position: static;
    margin: 0 auto;
    padding: 15px 25px;
  }

  .product__slider-nav .slick-prev {
    transform: rotate(-90deg);
  }

  .product__slider-nav .slick-next {
    transform: rotate(90deg);
    margin-top: -15px;
  }

  .box_product_slider {
    width: 100%;
  }

  .box_link_video {
    position: absolute;
    width: calc(100% - 65px);
    top: 100%;
    left: 65px;
  }

  .block_product_info {
    padding: 0 0 20px;
  }

  .product_add_buttons {
    padding: 0;
    max-width: 435px;
  }
}

@media (max-width: 1000px) {
  .product_add_buttons .add_basket,
  .product_add_buttons .add_subsribe_product {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .catalog_detail .block-inside {
    padding: 0 10px 0 0;
  }

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

  .street-look .container {
    width: 100%;
    padding: 0 20px;
    max-width: 1200px;
  }

  .street-look h2 {
    display: block;
  }

  .streetlook_slider {
    margin: 0 -10px;
  }

  .streetlook_slider .photo__item {
    min-width: auto;
  }

  /* похожие товары */
  .similar-products .container {
    width: 100%;
    padding: 0 20px;
  }

  .similar-products__slider {
    margin: 0 -10px;
  }

  .similar-products__slider .similar__item {
    min-width: auto;
  }

  .similar-products__slider .slick-prev,
  .similar-products__slider .slick-next {
    display: inline-block !important;
    background: url(../img/slider/slider-arrow-right.svg) 50% 50% no-repeat;
  }

  .similar-products__slider .slick-prev {
    left: 0px;
  }

  .similar-products__slider .slick-next {
    right: 0px;
  }

  .similar-products__slider .slick-slide {
    margin: 0;
  }
  /* ЕНД похожие товары */

  /* Статистический рейтинг по параметрам. 2019-12*/
  .stats_rating {
    margin: 0 auto;
    padding-top: 10px;
  }

  .stats_rating .col-xs-12 {
    padding: 0;
  }

  .stats_rating .item_rate .title {
    width: 39%;
  }

  /* оставить отзыв */
  .testimonials-form {
    padding: 0;
    min-width: 620px;
  }

  .testimonials-form .row .input-group {
    padding-right: 20px;
  }

  .testimonials-form input.default-input {
    width: 180px;
  }

  /* END Описание товара */
  /* pop-up Доставка */
  .dostavka .col-xs-12,
  .oplata .col-xs-12 {
    padding-right: 30px;
  }

  /* END pop-up Доставка */

  /* Корзина */
  section.orders .container {
    max-width: 1200px;
    padding: 0 20px;
  }

  .orders .col_desctop {
    padding-top: 16px;
    padding-left: 20px;
  }

  .orders .box_btn_order {
    position: static;
    padding: 16px 0 0;
  }

  .dopskidki .content_form {
    border: 1px solid #eee;
    margin-bottom: 16px;
  }
}

@media (max-width: 1000px) {
  .dopskidki .enter_bally button[type='submit'] {
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  /* минималистичные страницы */
  .narrow_container .padding {
    padding-right: 0;
    padding-left: 0;
  }

  /* оформление заказа */
  .order_checkout .box_btn_order {
    padding-right: 0;
    padding-left: 0;
  }

  /* описание заказа*/
  section.order_detail .container {
    max-width: 1200px;
    padding: 0 20px;
  }

  .order_detail .col_desctop {
    padding-top: 16px;
    padding-left: 20px;
  }

  .order_detail .box_summa {
    padding-right: 0;
    padding-left: 0;
  }

  /* контакты. магазины */
  .shop-rating {
    position: absolute;
    right: 30px;
    top: 0;
  }

  .shop-rating small {
    font-size: 80%;
    color: #656565;
    font-weight: normal;
  }

  /* ЕНД контакты. магазины */
  /* 404  & пустая корзина*/
  .p404 {
    font-size: 16px;
  }

  /* ЕНД 404 */

  /* раздел отзывов */
  .sort_review .item {
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
  }

  .list_reviews .testimonial__item .tovar {
    float: left;
    width: 320px;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
  }

  .list_reviews .testimonial__item .foto {
    margin-left: 20px;
  }

  .list_reviews .testimonial__item .box_message {
    margin-left: 320px;
  }

  /*.list_reviews .testimonial__item .show_support {float: right;}*/
  .list_reviews .testimonial__item .support-item {
    clear: both;
  }

  .store_reviews .testimonial__item .message {
    padding-bottom: 0;
    padding-right: 20px;
  }

  .store_reviews .testimonial__item .box_message {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: flex-end;
    -webkit-align-items: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
  }

  .testimonial__item .rating_store {
    width: 110px;
  }

  .testimonial__item .rating_store span {
    font-size: 32px;
  }

  /* оценка магазинов */
  .group-2col label {
    float: left;
    width: 130px;
  }

  .group-2col .input-group input,
  .group-2col .input-group textarea {
    width: calc(100% - 130px);
    margin-bottom: 10px;
  }

  .voiting-begunki label {
    width: 185px;
  }

  .voiting-begunki .begunok {
    width: calc(100% - 185px);
    float: left;
    margin-top: 0.7em;
  }

  #select-store form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  #select-store input {
    min-width: auto;
  }

  #select-store select {
    width: 370px;
  }

  /* END оценка магазинов */
  /* франшиза */
  .franshiza .visual {
    height: 300px;
    overflow: hidden;
    background: url(/franchise/pics/franshiza.jpg) no-repeat 50% 50%;
    background-size: cover;
  }

  .franshiza .visual img {
    width: 100%;
  }

  .franshiza .visual .title {
    font-size: 3rem;
  }

  .zakupki_fr > div:nth-of-type(1) {
    padding-right: 18px;
  }

  .zakupki_fr > div:nth-of-type(2) {
    padding-right: 9px;
    padding-left: 9px;
  }

  .zakupki_fr > div:nth-of-type(3) {
    padding-left: 18px;
  }

  .contact_fr {
    padding: 70px 0 70px;
  }

  /* END франшиза */

  #call-us .row input {
    width: calc(100% - 30px);
  }

  .share_socio {
    padding: 0;
  }

  /* история. о нас */
  .visual_about {
    background-image: url(../pics/history_desc.jpg);
  }

  .slides-history-block .text_light {
    padding-bottom: 0px;
  }

  .slides-history-block .img {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about_links .box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .about_links a {
    flex-grow: 1;
  }

  .about_links .line-btn {
    margin-left: 20px;
    margin-right: 20px;
    max-width: calc(50% - 20px);
  }

  /* команда */
  .team__card {
    margin-bottom: 46px;
  }
  /* END команда */
  /* ценности, результаты, производство */
  .about .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .about-content {
    padding-top: 39px;
  }

  .about-content__text h2 {
    margin-bottom: 48px;
  }

  .about-content__img {
    margin-left: 20px;
  }

  .about-content__img_left {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-left: 0;
    margin-right: 20px;
  }
  /* END ценности, результаты, производство */
}

.containeer {
  max-width: 760px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.containeer .slick-slide {
  cursor: pointer;
}
.containeer .slick-slide.slick-current {
  color: black;
}
.containeer .slides-years-block .slick-slide.slick-current .year_item::after {
  background: black;
}

/* ===== от 768 до 1000 ========*/
@media (max-width: 1000px) {
  .zakupki_fr .item .title {
    font-size: 20px;
  }

  .box_callus .button {
    font-size: 12px;
  }

  .visual_about {
    height: 50vh;
  }
}

/* !!!!!!!!! горизонтал планшет !!!!!!!!!!!!!!!*/
@media (min-width: 1000px) {
  /*каталог*/
  /* .catalog__item {
		width: calc(33.3% - 20px);
	}

	.catalog__item:nth-of-type(n) {
		margin-right: 10px;
		margin-left: 10px;
	}

	.catalog__item .link_name {
		font-size: 14px
	} */

  /* описание товара */
  .product_info {
    width: 50%;
    padding-left: 80px;
  }

  .box_product_gallery {
    width: 50%;
  }

  .box_link_video {
    width: 50px;
    left: 0;
    top: 460px;
  }

  .box_link_video .button {
    height: 50px;
  }

  .box_link_video span {
    display: none;
  }

  .box_link_video .fas {
    margin-right: 0;
  }

  .catalog_detail .product_title {
    font-size: 18px;
  }

  /* отзывы в товаре */
  .testimonials_product .container {
    width: 100%;
    padding: 0 20px;
    max-width: 1200px;
  }

  /* оставить отзыв */
  /*.testimonials-form {padding: 0; min-width: 900px}*/

  /* Корзина */
  .table_basket .parametrs_desctop,
  .table_basket .links_desctop {
    display: block;
  }

  .table_basket .parametrs_mobile,
  .table_basket .link_mobile_selects,
  .box_select_fixed_mobile {
    display: none;
  }

  .row_basket .link_name {
    font-size: 16px;
  }

  .row_basket .item_price {
    font-size: 16px;
  }

  .row_basket .parametrs_desctop {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: #4a4a4a;
    margin-top: 12px;
    margin-bottom: auto
  }

  .row_basket .parametrs_desctop .param {
    position: relative;
    margin-right: 8px;
  }

  .row_basket .parametrs_desctop .param:not(:last-child)::after {
    content: '|';
    color: #eee;
    display: inline-block;
    margin-left: 8px;
  }

  .row_basket .parametrs_desctop .select {
    width: auto;
    height: 30px;
    padding: 0 25px 0 6px;
    background-position: 90% 50%;
  }

  .row_basket .links_desctop {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 28px;
    text-align: center;
  }

  .row_basket .close {
    width: 20px;
    height: 20px;
    background: none;
  }

  .row_basket .close::before,
  .row_basket .close::after {
    background: #000;
    width: 19px;
    margin-left: -9px;
  }

  .row_basket .likes {
    background-color: #eee;
    display: inline-block;
    margin-top: 20px;
  }

  /* раздел отзывов */
  .list_reviews {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .list_reviews .testimonial__item {
    min-height: 140px;
  }

  .list_reviews .testimonial__item .message {
    padding-bottom: 0;
  }

  .list_reviews .testimonial__item .box_message {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: flex-end;
    -webkit-align-items: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
  }

  .list_reviews .testimonial__item .show_support {
    margin-left: 20px;
    width: 107px;
    display: block;
  }

  .store_reviews {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .zakupki_fr .item {
    padding: 80px 35px;
  }

  .visual_page {
    margin-right: 10px;
    margin-left: 10px;
  }

  /* история. о нас */
  .visual_about .title {
    font-size: 22px;
    bottom: 20px;
  }

  .slides-years-block {
    margin-left: 0;
    margin-right: 0;
  }

  .slides-history-block .text_light {
    padding-left: 20px;
  }

  .slides-history-block .img {
    padding-right: 20px;
  }
}

@media (min-width: 1191px) {
  .hamburger {
    display: none;
  }

  .login {
    width: 545px;
  }
}

/* !!!!!!
принимаем условие что десктоп с 1025рх
и прописываем для него Ховер-эффекты
!!!!!!! */
@media (min-width: 1025px) {
  a:hover {
    text-decoration: underline;
  }

  .dotted:hover {
    text-decoration: none;
  }

  /* шапка
	.header .container {padding: 0 23px 0 19px;}
	.search-form {
	    width: calc(100% - 181px);
	    width: -webkit-calc(100% - 181px);
	}*/

  /* быстрые ссылки */
  .box_quick_link .container {
    max-width: 1024px;
  }

  /* кнопки  святой*/
  .button.button-black:hover {
    background-color: #b8b8b8;
  }

  .button.button-grey:hover {
    background-color: #b9b9b9;
  }

  .button.button-green:hover {
    background-color: #799290;
  }

  .button-border:hover {
    background-color: #000;
    color: #fff;
  }

  .line-btn:hover {
    background-color: #000;
    color: #fff;
  }

  /*ЕНД кнопки святой*/

  /* слайдер на главной */
  .button-mainslider:hover {
    background-color: #000;
    color: #fff;
  }

  .home-slider .h1 {
    font-size: 79px;
  }

  .desc-big {
    font-size: 26px;
  }

  /* ЕНД слайдер на главной */

  /*каталог в 4 колонки*/
  .catalog-header-mini {
    padding: 0;
  }

  /*.catalog__item {
		width: calc(25% - 20px);
	}*/

  .slider_preview .slick-arrow {
    -webkit-transition: all 0.35s cubic-bezier(0.91, 0.01, 0.6, 0.99);
    transition: all 0.35s cubic-bezier(0.91, 0.01, 0.6, 0.99);
    opacity: 0;
  }

  .slider_preview:hover .slick-arrow {
    opacity: 1;
  }

  .slider_preview .slick-prev {
    -webkit-transform: translateX(-30px) rotate(-180deg);
    -ms-transform: translateX(-30px) rotate(-180deg);
    transform: translateX(-30px) rotate(-180deg);
    left: -10px;
  }

  .slider_preview .slick-next {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
    -webkit-transition: all 0.35s cubic-bezier(0.91, 0.01, 0.6, 0.99);
    transition: all 0.35s cubic-bezier(0.91, 0.01, 0.6, 0.99);
    right: -10px;
  }

  .slider_preview:hover .slick-prev {
    -webkit-transform: translateX(0) rotate(-180deg);
    -ms-transform: translateX(0) rotate(-180deg);
    transform: translateX(0) rotate(-180deg);
  }

  .slider_preview:hover .slick-next {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  /* установить рейтинг */
  .add_rating input[type='radio'] + .label_star:hover .fa-star,
  .add_rating input[type='radio'] + .label_star:hover ~ .label_star .fa-star {
    font-weight: 600;
  }
}

/* 1200 */
@media (min-width: 1200px) {
  /* описание товара */
  .product_info {
    width: 50%;
  }

  .box_product_gallery {
    width: 50%;
    position: relative;
  }

  .product__slider-nav {
    width: 90px;
  }

  .box_product_slider {
    width: 100%;
  }

  .box_link_video {
    top: auto;
    bottom: 0;
    width: 70px;
  }

  .franshiza .visual .title {
    font-size: 4rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
}

/* очень широки экраны. ? вынести в отдельный файл */
@media (min-width: 1367px) {
  /* слайдер на главной */
  .home-slider .h1 {
    font-size: 98px;
    line-height: 1;
  }

  .desc-big {
    font-size: 32px;
    line-height: 1.2em;
  }

  /* ЕНД слайдер на главной */
}
.product__slider-new img {
  max-width: 100%;
}
.box_product_gallery {
  position: relative;
}

.wait_image {
  position: absolute;
  top: 50%;
  left: 50%;
}

#popup_desc {
  text-decoration: underline;
}

.vNav {
  position: fixed;
  top: 50%;
  right: 0;
  width: 50px;
  z-index: 9999;
  list-style-type: none;
}

.vNav ul {
  position: relative;
  padding: 3px;
  padding-left: 35%;
}

.vNav ul li {
  position: relative;
  padding-bottom: 20px;
  padding-left: 35%;
  color: #fff;
}

.vNav a {
  display: block;
  width: 8px;
  height: 8px;
  text-indent: -9999px;
  border-radius: 50%;
  border: 1px solid;
  border-color: #000;
  text-decoration: none;
}

.vNav a:hover {
  border-radius: 50%;
  background-color: #000;
  text-decoration: none;
}

.vNav a.active {
  border-radius: 50%;
  background-color: #000;
  text-decoration: none;
  width: 12px;
  height: 12px;
  margin: -2px;
}

.checkbox-group {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
}

.default-input[type='checkbox'] {
  width: 22px;
  height: 22px;
}

.checkbox-group .default-label {
  margin-left: 10px;
  margin-bottom: 0px;
}

img#xmastree {
  all: initial;
  width: 17px;
  margin: auto 0;
  margin-left: 10px;
}

.fa-chevron-down {
  padding: 0px 5px;
}

/* loading spinner */
.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #fff;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* end */

/* h */
@keyframes heartfade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.heart {
  z-index: 999;
  animation: heartfade 6s linear;
  position: absolute;
  pointer-events: none;
}
.heart:before,
.heart:after {
  content: '';
  background-color: #fc2a62;
  position: absolute;
  height: 30px;
  width: 45px;
  border-radius: 15px 0px 0px 15px;
}

.heart:before {
  transform: rotate(45deg);
}

.heart:after {
  left: 10.5px;
  transform: rotate(135deg);
}
/* end */
/* zoom */
.product_zoom > .box_product_slider {
  width: 100%;
}
.product_zoom {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
  background: #fff;
  height: 0;
  opacity: 0;
  overflow: hidden;
}
.active_zoom {
  height: auto;
  opacity: 1;
  overflow: auto;
}
.product__slider-nav {
  z-index: 10;
}
.product_zoom .item_product__slider > img,
.product_zoom .product__slider video {
  cursor: url(/local/templates/site/img/zoom-2.png), zoom-out;
}
@media screen and (max-width: 768px) {
  .active_zoom {
    z-index: 100;
  }
  .product_zoom div {
    /*.box_product_slider, .product_zoom .product__slider, .product_zoom .slick-list, .product_zoom .slick-track, .product_zoom .item_product__slider {*/
    height: 100% !important;
  }
  .product_zoom .item_product__slider {
    overflow: hidden;
  }
  .product_zoom .item_product__slider > img {
    margin: auto 0;
    overflow: hidden;
    /*transform: translateX(0px) translateY(0px) translateZ(0px) scale(1, 1); */
  }
  button.desktop_hide.cls_btn_z {
    position: absolute;
    right: 10px;
    font-size: 35px;
    z-index: 11;
  }
}
/* end */
@media screen and (min-width: 768px) {
  .desktop_hide {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .mobile_hide {
    display: none;
  }
}

/* main */
.main {
  margin-top: -56px;
}
/* chevron */
.chevron::before {
  border-style: solid;
  border-width: 1px 1px 0px 0px;
  content: '';
  display: inline-block;
  height: 0.45em;
  left: 0.6em;
  position: relative;
  top: 0.2em;
  transform: rotate(-45deg);
  vertical-align: top;
  width: 0.45em;
}

.chevron.right:before {
  left: 0;
  transform: rotate(45deg);
}

.chevron.bottom:before {
  top: 3px;
  transform: rotate(135deg);
}

.chevron.left:before {
  left: 0.25em;
  transform: rotate(-135deg);
}
/* в слайдере */
.chevron.slick-arrow {
  position: absolute;
  right: 3px;
  z-index: 2;
  cursor: pointer;
  height: 20px;
  width: 20px;
  top: -20px;
}
.chevron.slick-arrow.left {
  margin-right: 40px;
}
.chevron.slick-arrow:before {
  height: 15px;
  width: 15px;
}
@media (max-width: 768px) {
  .chevron.slick-arrow {
    -webkit-transform: translateX(200%);
    -ms-transform: translateX(200%);
    transform: translateX(200%);
    right: 50%;
    top: 15px;
  }
}
/* Новый каталог */
.catalog {
  display: flex;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 15px;
}
.navigation_menu {
  padding-left: 20px;
  height: 100%;
  position: sticky;
  left: 0;
  top: 50px;
  overflow: auto;
  padding-bottom: 20px;
  letter-spacing: 0.06em;
  font-weight: 200;
  color: #898d90;
  min-width: 260px;
  width: 260px;
}
.navigation_menu a {
  font-size: 14px;
}
.navigation_menu a.active {
  text-decoration: underline;
  font-weight: 400;
  font-size: 1.05em;
}
.navigation_menu li {
  margin: 10px 0;
}
@media (max-width: 1023px) {
  .navigation_menu {
    display: none;
  }
  .box_catalog-filter {
    margin-left: 0;
    padding: 0 10px;
  }
  .box_catalog-filter > .container {
    padding: 0;
  }
  .catalog__filter {
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
  }
}
/* Новая карточка товара */
.flex-box-offers {
  display: flex;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
}
.offer-selector,
.label-size label {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  float: left;
  min-width: 60px !important;
  height: 34px !important;
  line-height: 34px;
  color: #676767;
  font-size: 16px;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  margin: 5px 10px 5px 0;
}
.label-color {
  background-color: #0000;
  padding: 2px;
}
.offer-selector input {
  display: none;
}
.label-size input:checked + label,
.label-size input:hover + label {
  border: #839055 1px solid;
  color: #839055;
  background-color: #e8eadf;
}
.label-size label {
  margin: 0;
  background-color: #ddd0;
  border: #676767 1px solid;
  cursor: pointer;
  transition: 300ms ease-in-out;
  transition-property: border-color, background-color, color;
}
.label-size > p {
  font-size: 10px;
  margin-bottom: 0;
  line-height: 1;
  margin-top: 34px;
  text-transform: none;
}
.label-color label {
  border: none;
  min-width: 100% !important;
  height: 100% !important;
  float: left;
  cursor: pointer;
}
.product_description .likes {
  position: absolute;
  bottom: 20px;
  right: 10px;
  background-color: transparent;
  width: 45px;
  height: 40px;
  background: #ffffff00 url(../img/catalog/no-liked.png) center/35px 30px
  no-repeat;
}
.product_description .likes.active {
  background: #ffffff00 url(../img/catalog/liked.png) center/35px 30px no-repeat;
}
.product__info-title > p {
  display: inline;
  font-weight: 200;
}
.phone {
  background: #ffffff00 url(../img/product/phone.svg) center/40px 40px no-repeat;
  width: 40px;
  height: 40px;
  padding: 0 !important;
}
.whatsap {
  background: #ffffff00 url(../img/product/whatsapp.svg) center/36px 36px
  no-repeat;
  width: 40px;
  height: 40px;
  padding: 0 !important;
}

.block_contact .phone,
.block_contact .whatsap,
.block_contact .telegram {
  width: 40px;
  height: 40px;
  padding: 7px !important;
  background-color: white;
  border-radius: 50%;
  background: unset;
  transition: 300ms ease-in-out;
  transition-property: box-shadow, transform;
}
.block_contact .phone:hover,
.block_contact .whatsap:hover,
.block_contact .telegram:hover {
  /*box-shadow: 3px 3px 7px rgb(0 0 0 / 50%);*/
  transform: translateY(-5px);
}
.block_contact .phone:after,
.block_contact .telegram:after,
.block_contact .whatsap:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.block_contact .phone:after {
  background-image: url(../img/product/phone.svg);
}
.block_contact .telegram:after {
  background-image: url(../img/product/telegram.svg);
}
.block_contact .whatsap:after {
  background-image: url(../img/product/whatsapp.svg);
}

.tabs {
  font-size: 0;
  max-width: 460px;
}

.tabs > input[type='radio'] {
  display: none;
}

.tabs > div {
  /* скрыть контент по умолчанию */
  display: none;
  border: none;
  padding: 10px 0;
  font-size: 12px;
}

/* отобразить контент, связанный с вабранной радиокнопкой (input type="radio") */
#tab-btn-1:checked ~ #content-1,
#tab-btn-2:checked ~ #content-2,
#tab-btn-3:checked ~ #content-3,
#tab-btn-4:checked ~ #content-4,
#tab-btn-5:checked ~ #content-5 {
  display: block;
}
.tab_labeles {
  display: block !important;
  overflow-x: auto;
  white-space: nowrap;
}
.tabs label {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: #fff0;
  border: none;
  padding: 2px 16px 2px 0px;
  font-size: 12px;
  line-height: 1.5;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
  cursor: pointer;
  position: relative;
  top: 1px;
  font-weight: 500;
}

.tabs label:not(:first-of-type) {
  border-left: none;
}

#tab-btn-1:checked ~ .tab_labeles > label[for='tab-btn-1'],
#tab-btn-2:checked ~ .tab_labeles > label[for='tab-btn-2'],
#tab-btn-3:checked ~ .tab_labeles > label[for='tab-btn-3'],
#tab-btn-4:checked ~ .tab_labeles > label[for='tab-btn-4'],
#tab-btn-5:checked ~ .tab_labeles > label[for='tab-btn-5'] {
  text-decoration: underline;
}
.tabs .standart-ul {
  list-style-type: none;
  padding-left: 0;
}
.tabs .standart-ul li {
  margin-bottom: 0;
}
.tabs > div > p {
  background-color: #eeeeee;
  display: flex;
  justify-content: space-between;
  line-height: 25px;
  padding: 0 15px;
}
.tabs > .chevron {
  display: none;
}
.testimonials_product p {
  text-align: center;
  padding-top: 20px;
}
.testimonials_product {
  height: 200px;
  overflow-y: scroll;
}
section.testimonials_product::-webkit-scrollbar {
  -webkit-appearance: none;
}
section.testimonials_product::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .tabs {
    padding: 0 22px;
    position: relative;
  }
  .tabs > .chevron {
    position: absolute;
    top: 20px;
    right: 10px;
    display: block;
  }
  .tabs > .chevron::before {
    height: 10px;
    width: 10px;
  }
  .tabs label {
    padding: 2px 9px 2px 0px;
    font-size: 16px;
  }
  .catalog_detail .block_contact {
    padding: 0 22px;
    text-align: center;
  }
}
.not-size > .card__size::before {
  position: absolute;
  background: url('../img/catalog/not-size_desktop_left.svg') center/cover
  no-repeat;
  content: '';
  position: absolute;
  display: block;
  top: -3px;
  left: -1px;
  height: 120%;
  width: 17px;
}

.not-size > .card__size::after {
  content: '';
  position: absolute;
  display: block;
  top: -3px;
  right: -1px;
  position: absolute;
  height: 120%;
  width: 17px;
  background: url('../img/catalog/not-size_desktop_right.svg') center/cover
  no-repeat;
}
.label-size > .not-size {
  position: relative;
  opacity: 0.5;
  background-color: #0000001a;
}
.similar-products .card__discription {
  white-space: pre-wrap;
  height: 40px;
  margin: 0;
}
.navigation_menu a:hover {
  text-decoration: underline;
  font-weight: 400;
  font-size: 1.05em;
}
.store_inv > li {
  display: inline;
  padding: 0 10px;
  font-size: 15px;
}
.store_inv .unavailable {
  opacity: 0.5;
  text-decoration: line-through;
}
/* купон */
.first_coupon {
  padding: 22px;
  border: 1px solid #eee;
  font-size: 14px;
  border-bottom: none;
  text-align: center;
}
.first_coupon > button {
  width: 100%;
}
.first_coupon > button:disabled {
  opacity: 0.5;
}
.first_coupon > button:disabled:hover {
  background-color: #000;
}
.first_coupon > div {
  margin: 20px 0;
}

.dopskidki .coupon-buttons {
  display: flex;
  align-items: center;
}
.dopskidki .coupon-buttons button {
  flex-grow: 1;
}
/*.dopskidki .coupon-buttons button + button {
	margin-left: 10px;
}*/
#coupon_enter.disabled {
  display: none;
}
#coupon_delete {
  display: none;
}
#coupon_delete.show {
  display: block;
}


/*:not(.no-placeholder).lazy-image[data-src],*/
.lazy-slider[data-src] {
  display: block;
  color: transparent;
  position: relative;
  border: 1px solid rgb(205 205 213 / 50%);
  border-radius: 3px;
  top: -1px;
}
.card__slide .lazy-slider[data-src] {
  top: 0;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
/*:not(.no-placeholder).lazy-image[data-src]:after,*/
.lazy-slider[data-src]:after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: url('/local/templates/site/img/lazy-preload.svg');
  background-repeat: no-repeat;
  background-size: 50% 50%;
  background-position: center;
  background-color: white;
}

/*.header-logo .lazy-image[data-src]:after,
.footer-logo .lazy-image[data-src]:after{
	background-color: #253745;
}
.header-logo .lazy-image[data-src] {
	max-width: 85px;
}
.bx-basket-block .basket_line > a .lazy-image[data-src]:after {
	background-color: #4fb8eb;
}
.steps-item-icon .lazy-image[data-src]:after {
	background-color: #b09765;
}*/

.card__slide {
  min-height: calc(505px * 1.5 - 40px);
  position: relative;
}

.product__slider .lazy-slider[data-src] {
  min-height: calc(100vw * 1.5);
}

@media (min-width: 1000px) {
  .product__slider .lazy-slider[data-src] {
    min-height: calc(50vw * 1.5 - 10px);
  }
}

@media (max-width: 1300px) {
  .card__slide {
    min-height: calc(80vw - 320px);
  }
}
@media (max-width: 1023px) {
  .box_catalog {
    margin-right: auto;
  }
}
@media (max-width: 765px) {
  .card__slide {
    min-height: 650px;
  }
}
@media (max-width: 475px) {
  .card__slide {
    min-height: calc((100vw - 60px) * 1.5);
  }
}

@media (min-width: 1191px) and (max-width: 1310px) {
  .header-menu-item {
    margin-right: 25px;
  }
}

.dostavka .dostavka-title,
.dostavka .dostavka-info {
  display: block;
}
.dostavka .dostavka-title {
  font-weight: bold;
  margin-bottom: 7px;
  padding-bottom: 3px;
  position: relative;
}
.dostavka .dostavka-title::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 35px;
  height: 1px;
  background-color: black;
}
.dostavka .dostavka-info + .dostavka-info {
  margin-top: 3px;
}

.card__oneclick.card__oneclick-mobile {
  margin-top: -1px;
  width: 100%;
  font-size: 14px;
  line-height: 16px;
  padding: 13px 20px;
}
.product_add_buttons .product__oneclick {
  padding: 14px 20px;
}
@media (max-width: 1000px) {
  .product_add_buttons .product__oneclick {
    font-size: 12px;
  }
}

.catalog__card.card__available .card__add-box .card__add-size,
.catalog__card.card__available .card__add-box .card__add-cart {
  border: 1px solid black;
}
.catalog__card.card__available .card__add-box:hover .card__add-cart {
  background-color: white;
  color: black;
}

#loyalty-rules-container {
  max-width: 900px;
}

.messengers {
  bottom: 70px !important;
}

.consultant-icon {
  bottom: 40px !important;
}
