

/* Start:/local/templates/luisawang/css/new-styles.css?1751973002234487*/
/* :root {
	--accent: orange;
	--text: #28201E;
	--color-black: #28201E;
	--color-gray: #A9A49D;
	--color-brown: #a3692e;
	--color-red: #f04438;
	--color-red-weight: #CB3434;
	--color-gray-light: #a5a5a5;
	--color-light-gray: #D1D1D3;
	--regular-text: 16px;
	--userfont: SF-PRO, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

@font-face {
	src: url("/local/templates/luisawang/css/fonts/SF-Pro-Display-Light.woff2") format("woff2");
	font-family: "SF-PRO";
	font-weight: 300;
	font-style: normal;
}

@font-face {
	src: url("/local/templates/luisawang/css/fonts/SF-Pro-Display-Medium.woff2") format("woff2");
	font-family: "SF-PRO";
	font-weight: 500;
	font-style: normal;
}

@font-face {
	src: url("/local/templates/luisawang/css/fonts/SF-Pro-Display-Regular.woff2") format("woff2");
	font-family: "SF-PRO";
	font-weight: 400;
	font-style: normal;
}

@font-face {
	src: url("/local/templates/luisawang/css/fonts/SF-Pro-Display-Bold.woff2") format("woff2");
	font-family: "SF-PRO";
	font-weight: 700;
	font-style: bold;
}

@font-face {
	src: url("/local/templates/luisawang/css/fonts/YandexSansDisplay-Regular.woff2") format("woff2");
	font-family: "YS";
	font-weight: 400;
	font-style: normal;
}


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

ul,
li,
h1,
h2,
h3,
h4,
h5,
p {
	margin: 0;
	padding: 0;
}

ul li {
	list-style-type: none;
}

input {
	border-radius: 0;
}

a:focus,
input:focus {
	outline: none;
}

body {
	display: block;
	position: relative;
	overflow-x: hidden;
	font-size: var(--regular-text);
	line-height: normal;
	background-color: #fff;
	font-family: var(--userfont);
	font-weight: 400;
	color: var(--text);
} */

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

.container {
	max-width: 1725px;
	margin: 0 auto;
	padding: 0 50px;
}

.input-error {
	font-size: 14px;
	margin-top: 8px;
	display: block;
	color: #F04438;
}

.fixed {
	overflow: hidden;
}

.btn-white,
.btn-black {
	font-size: 18px;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 2px;
	cursor: pointer;
	height: 56px;
	text-transform: uppercase;
	display: flex;
	padding: 0 30px;
	justify-content: center;
	align-items: center;
	user-select: none;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.btn-white {
	background-color: #fff;
	border: 1px solid var(--color-black);
	color: var(--color-black);
}

.color-red {
	color: var(--color-red);
}

.color-gray {
	color: var(--color-gray) !important;
}

.color-black {
	color: var(--color-black);
}

.btn-black {
	background-color: var(--color-black);
	border: 1px solid var(--color-black);
	color: #fff;
}

.btn-white:hover {
	border-color: var(--color-brown);
	color: var(--color-brown);
}

.btn-black:hover {
	background-color: var(--color-gray);
	border-color: var(--color-gray);
}

/* Шапка сайта  */

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

.top-bar {
	background-color: rgb(250, 250, 250);
	padding: 5px 0;
	position: relative;
}

.top-bar .container {
	max-width: 1920px;
}

.header-main .container {
	max-width: 1920px;
}

.top-bar__city {
	cursor: pointer;
}

.top-bar__list {
	font-size: 14px;
	display: flex;
	gap: 32px;
}

.top-bar__city svg path {
	transition: all 0.2s ease-in-out;
}

.top-bar__city:hover svg path {
	stroke: var(--color-brown);
	transition: all 0.2s ease-in-out;
}

.top-bar__item,
.top-bar__link {
	display: flex;
	align-items: center;
	gap: 8px;
}

.top-bar__item {
	transition: all 0.2s ease-in-out;
}

.top-bar__item:hover {
	color: var(--color-brown);
	transition: all 0.2s ease-in-out;
}

.top-bar__item-phone svg path {
	transition: all 0.2s ease-in-out;
}

.top-bar__item-phone:hover svg path {
	fill: var(--color-brown);
	transition: all 0.2s ease-in-out;
}

.top-bar__link {
	color: inherit;
}

.btn-success {
	background-color: #524841;
}

.top-bar__color-brown {
	color: rgb(163, 105, 46);
}

.header-main__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.header-main__logo {
	display: flex;
	position: relative;
	z-index: 10;
}

.header-main {
	position: sticky;
	top: 0;
	width: 100%;
	/* padding: 24px 0; */
	/* transform: translateY(0); */
	/* color: #ffffff; */
	z-index: 101;
	/* background: linear-gradient(180deg,
			rgba(38, 38, 38, 0.24),
			rgba(38, 38, 38, 0.18) 52.398%,
			rgba(38, 38, 38, 0) 100%);
	transition: all 0.1s ease-in-out; */
}

.header-main__hide {
	transform: translateY(-120px);
	transition: all 0.3s ease-in-out;
}

.menu__list {
	display: flex;
	gap: 56px;
}

.menu__item {
	display: flex;
}

.menu__item:hover .menu__link {
	color: var(--color-brown);
}

.menu__item:hover .menu__link svg path {
	stroke: var(--color-brown);
}

.menu__item:hover .menu__link svg {
	transform: rotate(180deg) translate(0);
}

.menu__link {
	display: flex;
	align-items: center;
	gap: 8px;
	color: inherit;
}

.menu__link svg {
	position: relative;
	bottom: 1px;
}

.header-main__personal {
	display: flex;
	gap: 35px;
	align-items: end;
	justify-content: end;
}

.personal-cart {
	position: relative;
	display: flex;
	gap: 10px;
	user-select: none;
}

.personal-cart__icon {
	position: relative;
}

.personal-count {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	position: absolute;
	right: -8px;
	top: -5px;
	background-color: #fff;
	font-size: 10px;
	line-height: 16px;
	color: var(--color-black);
	display: flex;
	user-select: none;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease-in-out;
}

.personal-cart__price {
	font-size: 14px;
	font-weight: 500;
}

.header-main__white-theme {
	color: var(--color-black);
	background: #fff;
}

.header-main__white-theme .header-main__logo-icon path,
.header-main__white-theme .header-main__logo-icon ellipse  {
	fill: var(--color-black);
}

.header-main__white-theme .menu__item-catalog path {
	stroke: var(--color-black);
}

.header-main__white-theme .personal-search svg path,
.header-main__white-theme .personal-wishlist svg path {
	stroke: var(--color-black);
}

.header-main__white-theme .personal-user svg path,
.header-main__white-theme .personal-cart svg path {
	fill: var(--color-black);
}

.header-main__white-theme .personal-count {
	background: var(--color-black);
	color: #fff;
}

.header-main__white-theme .personal-user__name {
	color: var(--color-black);
}

input.form-control,
.register__form-table input {
	width: 100%;
	height: 54px;
	padding: 15px;
	border-radius: 0;
	border: 1px solid var(--theme-color-gray);
	color: var(--theme-color-dark);
	font-size: 16px;
	line-height: 19px;
	margin-bottom: 20px;
	background: #fff;
	font-family: 'GT Eesti Pro', sans-serif;
}

.page-product-size__item.js-size-item:not(.page-product-size__active):hover {
	border-color: var(--color-brown);
	color: var(--color-brown);
}

.header-main__white-theme .mobile-btn svg path {
	stroke: var(--color-black);
}

.mobile-menu-bottom {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	z-index: 101;
	border-top: 1px solid rgb(209, 209, 211);
}

.mobile-menu-bottom__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
}

.mobile-menu-bottom__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.mobile-menu-bottom__icon {
	height: 20px;
	position: relative;
}

.mobile-menu-bottom__icon svg {
	display: flex;
}

.mobile-menu-bottom__item-active svg path {
	stroke: var(--color-brown);
}

.mobile-menu-bottom__item-active {
	color: var(--color-brown);
}

.mobile-menu-bottom__name {
	font-size: 12px;
}

.mobile-menu-bottom__count {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: var(--color-gray);
	color: #fff;
	font-size: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: -5px;
	top: -3px;
}

.personal-search {
	position: relative;
	bottom: 1px;
}

.personal-search.search-link {
	margin: 0;
	display: flex;
}

.personal-search svg path,
.personal-wishlist svg path {
	transition: all 0.2s ease-in-out;
}

.personal-wishlist,
.personal-cart {
	cursor: pointer;
	position: relative;
}

.personal-wishlist__icon {
	position: relative;
}

.personal-user__name {
	font-size: 14px;
	position: relative;
	display: inline-block;
	bottom: 3px;
	font-weight: 500;
	color: #ffffff;
	transition: all 0.2s ease-in-out;
}

.personal-user:hover .personal-user__name {
	color: var(--color-brown);
	transition: all 0.2s ease-in-out;
}

.personal-user svg path,
.personal-cart svg path {
	transition: all 0.2s ease-in-out;
}

.personal-search:hover svg path,
.personal-wishlist:hover svg path {
	stroke: var(--color-brown);
	transition: all 0.2s ease-in-out;
}

.personal-user:hover svg path,
.personal-cart:hover svg path {
	fill: var(--color-brown);
	transition: all 0.2s ease-in-out;
}

.personal-cart:hover .personal-count,
.personal-wishlist:hover .personal-count {
	background-color: var(--color-brown);
	transition: all 0.2s ease-in-out;
}

.personal-cart:hover .personal-cart__price {
	color: var(--color-brown);
	transition: all 0.2s ease-in-out;
}

.personal-dropdown {
	position: absolute;
	width: 405px;
	right: 0;
	top: 35px;
	background-color: #fff;
	padding: 24px;
	color: var(--color-black);
	cursor: default;
	box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
	visibility: hidden;
	z-index: 11;
	opacity: 0;
	overflow: hidden;
	transform: translateY(20px);
	transition: all 0.3s ease-in-out;
}

.personal-dropdown__show {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.personal-dropdown__products {
	/* margin-bottom: 24px;
	max-height: auto;
	overflow-y: auto; */
}

.personal-dropdown__no-element {
	margin-bottom: 24px;
}

.js-empty-wishlist .modal__wishlist_head,
.js-empty-basket .modal__wishlist_head {
	justify-content: flex-end;
}

.personal-dropdown__no-element-title {
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 12px;
}

.personal-dropdown__no-element-text {
	color: var(--color-gray);
}

.personal-product {
	position: relative;
	overflow: hidden;
	display: flex;
	gap: 16px;
	align-items: center;
	cursor: pointer;
	position: relative;
	/* margin-bottom: 24px; */
}

/* .personal-product:nth-last-child(1) {
	margin-bottom: 0;
} */

.personal-product__pic {
	flex: 0 0 64px;
	height: 80px;
}

.personal-product__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.personal-product__name {
	margin-bottom: 8px;
	font-weight: 500;
	font-size: 16px;
}

.personal-product__content {
	width: 100%;
	padding-right: 44px;
}

.personal-product__wr {
	display: flex;
	align-items: center;
	gap: 10px;
}

.personal-product__pieces {
	color: #a5a5a5;
}

/* .personal-product__favorite-btn, */
.personal-product__delete {
	display: none;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}

/* .personal-product:hover .personal-product__favorite-btn, */
.personal-product:hover .personal-product__delete {
	display: block;
}

.personal-dropdown__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 20px;
	margin-bottom: 16px;
}

.your-city {
	width: 405px;
	padding: 24px;
	box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	position: absolute;
	top: 25px;
	user-select: none;
	z-index: 102;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-50px);
	transition: all 0.3s ease-in-out;
}

.your-city__show {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	transition: all 0.3s ease-in-out;
}

.your-city__close {
	position: absolute;
	top: 18px;
	right: 18px;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

.your-city__close:hover svg path {
	transition: all 0.2s ease-in-out;
}

.your-city__close:hover svg path {
	stroke: var(--color-brown);
	transition: all 0.2s ease-in-out;
}

.your-city__name {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
}

.your-city__desc {
	color: var(--color-gray);
	margin-bottom: 20px;
}

.your-city__btns {
	display: flex;
	margin: 0 -5px;
}

.your-city__btn {
	font-size: 14px;
	height: 46px;
	padding: 0 0px;
	width: 50%;
	margin: 0 5px;
}

.bgc-fixed {
	background-color: #0000004d;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 101;
	visibility: hidden;
	opacity: 0;
}

.bgc-fixed__show {
	visibility: visible;
	opacity: 1;
	transition: all 0.2s ease-in-out;
}

.sidebar-city {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 103;
	background-color: #fff;
	height: 100%;
	max-width: 520px;
	width: 100%;
	padding: 40px 50px 40px 40px;
	visibility: hidden;
	opacity: 0;
	overflow-x: auto;
	transform: translateX(100px);
	transition: all 0.3s ease-in-out;
}

.sidebar-city__show {
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
}

.sidebar-city__close {
	position: absolute;
	right: 50px;
	top: 40px;
	cursor: pointer;
}

.sidebar-city__close svg path {
	transition: all 0.2s ease-in-out;
}

.sidebar-city__close:hover svg path {
	stroke: var(--color-brown);
	transition: all 0.2s ease-in-out;
}

.main-slider__item a video {
	width: 100%;
	height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 992px) {
	.main-slider__item a video {
		height: 100%;
		object-fit: cover;
	}
}

.sidebar-city__title {
	letter-spacing: 1px;
	margin-bottom: 32px;
	text-transform: uppercase;
}

.sidebar-city__desc {
	color: var(--color-gray);
	margin-bottom: 18px;
}

.sidebar-city__inputs {
	position: relative;
	margin-bottom: 32px;
}

.sidebar-city__input {
	border: 1px solid var(--color-gray);
	padding: 18px 16px;
	width: 100%;
}

.sidebar-city__input-clear {
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	display: none;
}

.sidebar-city__input-clear svg path {
	transition: all 0.2s ease-in-out;
}

.sidebar-city__input-clear:hover svg path {
	stroke: var(--color-brown);
	transition: all 0.2s ease-in-out;
}

.sidebar-city__input:focus {
	border: 1px solid var(--color-black);
}

.sidebar-city__input::placeholder {
	color: #a5a5a5;
}

.sidebar-city__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 60px;
}

.sidebar-city__item {
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

.sidebar-city__item:hover {
	color: var(--color-brown);
	transition: all 0.2s ease-in-out;
}

.scrollbar::-webkit-scrollbar {
	width: 4px;
}

.scrollbar::-webkit-scrollbar-track {
	background: #d1d1d3;
	border-radius: 100px;
	height: 100px;
}

.scrollbar::-webkit-scrollbar-thumb {
	background: var(--color-gray);
	border-radius: 100px;
}

.scrollbar-filter::-webkit-scrollbar {
	width: 4px;
}

.scrollbar-filter::-webkit-scrollbar-track {
	background: #f7f7f7;
	height: 100px;
}

.scrollbar-filter::-webkit-scrollbar-thumb {
	background: #d1d1d3;
}

.mobile-btn {
	display: none;
}

.mobile-menu {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #fff;
	color: var(--theme-color-dark);
	top: 0;
	left: 0;
	z-index: 101;
	padding: 20px;
	overflow-x: auto;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-20px);
	transition: all 0.3s ease-in-out;
}

.mobile-menu__active {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

.mobile-menu__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 20px;
}

.mobile-menu__logo {
	display: flex;
}

.mobile-menu__logo-icon {
	width: 75px;
}

.mobile-menu__item {
	padding: 13px 0;
	display: flex;
	gap: 8px;
	align-items: center;
	position: relative;
}

.mobile-menu__item::after {
	content: "";
	height: 14px;
	width: 8px;
	background-image: url(/local/templates/luisawang/css/img/icon/arrow-right.svg);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.mobile-menu__border {
	border-top: 1px solid rgb(209, 209, 211);
	border-bottom: 1px solid rgb(209, 209, 211);
	margin: 0 -20px;
	padding: 13px 20px;
}

.mobile-menu__border::after {
	right: 20px;
}

.mobile-menu__close-icon {
	width: 12px;
	height: 12px;
}

.mobile-menu__item-icon {
	height: 16px;
}

.mobile-menu__middle {
	padding: 24px 0;
}

.mobile-menu__menu {
	margin-bottom: 32px;
}

.mobile-menu__menu-item {
	border-bottom: 1px solid rgb(209, 209, 211);
	padding: 16px 0;
	position: relative;
}

.mobile-menu__menu-title {
	position: relative;
	font-size: 18px;
	user-select: none;
	display: inline-block;
}

.mobile-menu__menu-parent::after {
	content: "";
	width: 14px;
	height: 14px;
	background-image: url(/local/templates/luisawang/css/img/icon/plus.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 0;
	top: 25px;
	transform: translateY(-50%);
}

.mobile-menu__menu-list {
	flex-direction: column;
	gap: 16px;
	padding-top: 16px;
	display: none;
	padding-bottom: 2px;
}

.mobile-menu__menu-link {
	color: var(--color-gray);
	display: block;
}

.mobile-menu__menu-item-active::after {
	background-image: url(/local/templates/luisawang/css/img/icon/minus.svg);
	height: 2px;
}

.mobile-menu__menu-item-active .mobile-menu__menu-list {
	display: flex;
}

.block-questions {
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgb(209, 209, 211);
	margin: 0 -20px;
}

.block-questions__title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 8px;
}

.block-questions__desc {
	margin-bottom: 8px;
}

.block-questions__btns {
	display: flex;
	gap: 10px;
}

.block-questions__btn {
	width: 50%;
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	height: 40px;
	border: 1px solid var(--color-black);
	transition: all 0.2s ease-in-out;
}

.socials {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin-top: 40px;
	margin-bottom: 20px;
}

.menu__child {
	position: absolute;
	left: 0;
	top: 58px;
	background-color: #fff;
	width: 100%;
	padding-top: 32px;
	padding-bottom: 48px;
	visibility: hidden;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease-in-out;
}

.menu__item-catalog:hover .menu__child {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	transition: all 0.3s ease-in-out;
}

.menu__child-row {
	display: flex;
	justify-content: space-between;
	gap: 120px;
}

.menu__child-menu {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	max-width: 60%;
}

.menu__child-menu-col {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.menu__child-item {
	max-width: 180px;
}

.menu__child-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 12px;
}

.menu__child-link {
	font-size: 14px;
	color: #9e9b99;
	transition: all 0.2s ease-in-out;
}

.menu__child-link:hover {
	color: var(--color-brown);
	transition: all 0.2s ease-in-out;
}

.menu__child-circle {
	display: flex;
	align-items: center;
	gap: 6px;
}

.menu__child-circle::after {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--color-brown);
}

.menu__child-right-title {
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 12px;
}

.menu__child-products {
	display: flex;
	margin: 0 -10px;
}

.menu__child-products .product-card {
	width: 320px;
}

.mobile-catalog {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow-x: auto;
	background-color: #fff;
	color: var(--theme-color-dark);
	z-index: 101;
	padding: 0 20px;
	visibility: hidden;
	opacity: 0;
	transform: translateX(100px);
	transition: all 0.3s ease-in-out;
}

.mobile-catalog__active {
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
}

.mobile-catalog__header {
	display: flex;
	align-content: center;
	justify-content: space-between;
	padding: 20px;
	border-bottom: 1px solid rgb(209, 209, 211);
	margin: 0 -20px;
}

.mobile-catalog__title {
	font-size: 20px;
	font-weight: 500;
}

.mobile-catalog__left {
	display: flex;
	gap: 27px;
	align-items: center;
}

.mobile-catalog__search {
	position: relative;
	top: 1px;
}

.mobile-catalog__catalog {
	margin-bottom: 24px;
}

.mobile-catalog__catalog .mobile-menu__menu-item {
	border-bottom: 1px solid rgb(243, 243, 243);
}

.mobile-catalog__catalog .mobile-menu__menu-title {
	padding-left: 12px;
}

.mobile-catalog__catalog .mobile-menu__menu-parent::after {
	right: 17px;
}

.mobile-catalog__catalog .mobile-menu__menu-list {
	padding-left: 20px;
}

/* Конец шапки сайта */

/* Карточка товара */

.product-card {
	position: relative;
	cursor: pointer;
	z-index: 2;
	transition: all 0.2s ease-in-out;
	width: 100%;
	display: block;
	overflow: hidden;
}

.product-card:hover {
	text-decoration: none;
}

.product-card__two-column {
	grid-column: span 2;
}

.product-card__two-column .product-card__img-top {
	padding-top: 64.8%;
}

.product-card__wr {
	position: relative;
}

.product-card__pagination {
	display: flex;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	gap: 5px;
	padding: 0 15px;
	visibility: hidden;
	opacity: 0;
	transition: all 0.2s ease-in-out;
}

.product-card__pagination-item {
	height: 100%;
	position: relative;
	width: 100%;
	display: inline-block;
}

.product-card__pagination-item::after {
	content: "";
	width: 100%;
	height: 2px;
	position: absolute;
	top: 16px;
	display: block;
	background-color: #fff;
}

.product-card__pagination-item-active::after {
	background-color: var(--color-black);
}

.product-card__img-wr {
	width: 100%;
	margin-bottom: 8px;
	position: relative;
	overflow: hidden;
	padding: 12px 12px 0 12px;
	display: block;
}

.product-card__img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	left: 0;
	top: 0;
}

.main-slider .swiper-pagination-bullet {
	border-radius: 0;
}

.product-card__img-top {
	object-fit: cover;
	object-position: center;
	width: 100%;
	position: relative;
	padding-top: 133.2%;
}

.product-card__title {
	font-size: 16px;
	margin-bottom: 6px;
	margin-top: 0;
	padding: 0 12px;
	max-width: 100%;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	z-index: 1;
	position: relative;
}

.product-card__title:hover {
	text-decoration: none;
}

.product-card__prices {
	display: flex;
	gap: 8px;
	align-items: center;
	padding: 0 12px;
	color: var(--color-black);
	z-index: 1;
	position: relative;
	align-items: center;
}

.product-card__price {
	font-size: 16px;
	font-weight: 400;
}

.product-card__price-old {
	color: var(--color-gray);
	font-size: 12px;
	text-decoration: line-through;
}

.price__item.disc {
	color: rgba(88, 88, 85, 0.6);
	font-size: 14px;
	font-weight: 600;
	line-height: 140%;
	text-decoration-line: line-through;
	text-transform: uppercase;
}

.product-card__colors {
	display: flex;
	gap: 8px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.product-card__color {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 1px solid rgb(165, 165, 165);
	position: relative;
}

.product-card__color._active {
	border-color: var(--color-gray);
}

.product-card__color._active::after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	left: calc(50% - 5px);
	top: calc(50% - 5px);
	border-radius: 50%;
	border: 1px solid white;
	box-sizing: border-box;
}

.product-card__sizes {
	display: flex;
	gap: 6px;
	font-size: 16px;
	color: #7a7a7a;
	position: relative;
	flex-wrap: wrap;
	z-index: 1;
}

.product-card__favorite {
	position: absolute;
	right: 24px;
	top: 28px;
	z-index: 2;
	transition: all 0.1s ease-in-out;
}

.product-card__favorite svg path {
	stroke: rgb(111, 111, 111);
}

.product-card__favorite:hover svg path {
	stroke: var(--color-brown);
}

.product-card__discount {
	height: 22px;
	font-size: 14px;
	background-color: #fff;
	padding: 0 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 28px;
	left: 24px;
}

.product-card__settings {
	padding: 10px 12px 0;
}

.product-card__option {
	margin-top: 4px;
	visibility: hidden;
	opacity: 0;
	background-color: #fff;
	position: absolute;
	margin-bottom: 24px;
	padding: 0 12px 12px 12px;
	width: 100%;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 24px 0px;
	transition: all 0.1s ease-in-out;
}

.product-card__option::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: -50px;
	background-color: #fff;
}

.product-card__favorite-active {
	visibility: visible;
	opacity: 1;
}

.product-card__favorite-active path {
	fill: var(--color-black);
}

.product-card__favorite-active svg path {
	stroke: var(--color-black);
}

.product-card__favorite-active:hover path {
	fill: var(--color-brown);
}

.product-card__hover {
	background-color: #fff;
	overflow: initial;
	z-index: 3;
}

.product-card__hover .product-card__wr {
	box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
	transition: all 0.2s ease-in-out;
}

.product-card__hover .product-card__favorite {
	visibility: visible;
	opacity: 1;
	transition: all 0.2s ease-in-out;
}

.product-card__hover .product-card__option {
	visibility: visible;
	opacity: 1;
}

.product-card__hover .swiper-pagination {
	visibility: visible !important;
	opacity: 1 !important;
	transition: all 0.2s ease-in-out;
}

.product-card__hover .product-card__pagination {
	visibility: visible;
	opacity: 1;
	transition: all 0.2s ease-in-out;
}

.product-card__option-name {
	font-size: 14px;
	color: var(--color-black);
	z-index: 2;
	display: none;
	line-height: 12px;
}

.product-card__hover .product-card__option-name {
	display: block;
}

.product-card__option-item {
	display: flex;
	gap: 10px;
	min-height: 12px;
	align-items: center;
}

.product-card__btn {
	position: relative;
	z-index: 2;
	font-size: 14px;
	width: 100%;
	height: 46px;
	margin-top: 15px;
}

.product-card__btn._loading {
	color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 22px auto;
	background-image: url('/local/templates/luisawang/css/img/icon/spinner.webp');
}

.mobile-catalog__product-catalog {
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 24px;
}

.mobile-catalog-slider .swiper-slide {
	width: 164px;
}

/* Карточка товара конец */

.main {
	position: relative;
	overflow: hidden;
	padding: 80px 0;
}

.section {
	margin-bottom: 160px;
}

.section-article {
	margin-bottom: 40px;
}

.section__wr {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}

.section-title {
	font-size: 47px;
	line-height: 56px;
	font-weight: 500;
}

.section__arrows {
	display: flex;
	gap: 24px;
	align-items: center;
	user-select: none;
}

.section__arrow {
	cursor: pointer;
}

.section__arrow svg path {
	transition: all 0.2s ease-in-out;
}

.section__arrow:hover svg path {
	fill: var(--color-brown);
	transition: all 0.2s ease-in-out;
}

.article-card {
	position: relative;
}

.article-card__pic {
	display: block;
	margin-bottom: 16px;
	width: 100%;
	height: 370px;
}

.article-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-card__title {
	font-size: 20px;
	font-weight: 500;
	transition: all 0.2s ease-in-out;
}

.article-card:hover .article-card__title {
	color: var(--color-brown);
}

.section-about__wr {
	display: grid;
	gap: 70px;
	grid-template-columns: 1fr 1fr;
}

/* .section-about__pic {
	flex: 0 0 850px;
	height: 625px;
} */

.section-about .section-title {
	margin-bottom: 24px;
}

.section-about__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-about__sub-title {
	font-size: 16px;
	margin-bottom: 25px;
}

.section-about__items {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 50px;
}

.section-about__item {
	display: flex;
	gap: 20px;
}

.section-about__circle {
	flex: 0 0 54px;
	height: 54px;
	background-color: #f7f7f7;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-about__text {
	margin-top: 10px;
}

.section-about__title {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 8px;
}

.section-about__desc {
	font-size: 16px;
	color: var(--color-gray);
	max-width: 520px;
	width: 100%;
	margin-bottom: 0;
}

.section.section-about {
	margin-bottom: 20px;
}

.section-about__btn {
	width: max-content;
}

.section-about__mobile-title {
	display: none;
}

.popular-product-slider__item {
	display: block;
}

.popular-product-slider__pic {
	width: 100%;
	height: 250px;
	margin-bottom: 16px;
	display: block;
	overflow: hidden;
}

.popular-product-slider__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}

.popular-product-slider__name {
	font-size: 20px;
	font-weight: 400;
	text-align: center;
	color: #181820;
	transition: all 0.2s ease-in-out;
}

.popular-product-slider__item:hover .popular-product-slider__name {
	color: var(--color-brown);
}

.popular-product-slider__item:hover .popular-product-slider__img {
	transform: scale(1.1);
}

/* Подвал сайта  */

.footer {
	position: relative;
}

.footer__top {
	padding: 60px 0;
	border-top: 1px solid rgb(209, 209, 211);
	border-bottom: 1px solid rgb(209, 209, 211);
}

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

.block-subscription {
	position: relative;
	/* margin-bottom: 40px; */
}

.block-subscription__icon {
	margin-bottom: 6px;
	margin-left: -5px;
}

.block-subscription__title {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 8px;
}

.block-subscription__desc {
	margin-bottom: 8px;
}

.block-subscription__form {
	display: flex;
	gap: 10px;
}

.block-subscription__input {
	width: 255px;
	font-size: 14px;
	padding: 16px;
	border: 1px solid var(--color-gray);
	margin-bottom: 0px !important;
}

.block-subscription__input-error {
	border-color: #f04438 !important;
}

.block-subscription__btn {
	width: 50px;
	height: 50px;
	background-color: var(--color-black);
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

.block-subscription__btn:hover {
	background-color: var(--color-gray);
}

.footer .block-questions {
	border: none;
	padding-bottom: 0;
}

.footer .block-questions__title {
	font-size: 20px;
}

.footer .block-questions__btn {
	width: 167px;
	height: 46px;
}

.footer .block-questions__btn:hover {
	color: var(--color-brown);
	border-color: var(--color-brown);
}

.footer .block-questions__btn svg path {
	transition: all 0.2s ease-in-out;
}

.footer .block-questions__btn:hover svg path {
	fill: var(--color-brown);
}

.footer__right {
	display: flex;
	gap: 100px;
	padding-right: 50px;
}

.footer__menu {
	width: 200px;
}

.footer__menu-title {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 24px;
}

.footer__menu-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer__menu-link {
	color: var(--color-gray);
	transition: all 0.2s ease-in-out;
}

.footer__menu-link:hover {
	color: var(--color-brown);
}

.footer__bottom {
	padding: 20px 0;
}

.footer__row-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.footer__inf {
	color: var(--color-gray);
}

.footer .socials {
	margin: 0;
}

.footer .socials__item svg path {
	transition: all 0.2s ease-in-out;
}

.socials__item {
	color: #262626;
}

.socials__item:hover {
	color: #3E3635;
}

/* Конец подвала сайта  */

.product-slider {
	overflow: initial !important;
}

.section-product .container {
	padding: 0 36px;
}

.section-product .section-product__inner {
	padding: 0 12px;
}

.section-product__inner {
	overflow: hidden;
}

.section-product__btns {
	margin-top: 40px;
	margin-bottom: 160px;
	text-align: center;
}

.section-product .section-product__btns {
	margin-bottom: 100px;
}



.section-product__btn {
	width: max-content;
	margin: 0 auto;
}

.product-card__size {
	transition: all 0.2s ease-in-out;
}

.product-card__size:hover,
.product-card__size._active {
	color: var(--color-black);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.section-total-look__tabs {
	display: flex;
	gap: 10px;
	margin-bottom: 32px;
}

.section-total-look__tab {
	height: 56px;
	background-color: #f7f7f7;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 32px;
	text-transform: uppercase;
	cursor: pointer;
	user-select: none;
	transition: all 0.2s ease-in-out;
}

.section-total-look__tab.active {
	background-color: var(--color-black);
	color: #fff;
}

.section-total-look__tab.active:hover {
	background-color: var(--color-black);
	color: #fff;
}

.section-total-look__tab:hover {
	background-color: #d1d1d3;
}

.section-total-look__row {
	display: flex;
	gap: 47px;
}

.section-total-look__main-pic {
	width: 100%;
	height: 947px;
}

.section-total-look__main-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.section-total-look .section-total-look__grid {
	gap: 12px 0;
}

.swiper-wrapper-list-section {
	margin-bottom: 160px;
}

.section__bottom-best .swiper-wrapper-list-section {
	margin-bottom: 120px;
}

.section__bottom-all .swiper-wrapper-list-section {
	margin-bottom: 0;
}

.section-total-look__grid {
	display: grid;
	grid-template-columns: repeat(2, 327px);
	margin: -12px -12px 0 -12px;
}

.section-product-2 .swiper-wrapper {
	margin-bottom: 160px;
}

.section-hybrid__row {
	display: flex;
	gap: 31px;
}

.section-hybrid .section-product__inner {
	margin: -12px;
	width: 100%;
}

.product-slider-hybrid {
	overflow: initial !important;
	padding: 0 13px;
}

.section-hybrid .section-product__btns {
	margin-bottom: 100px;
}

.section__bottom-min .swiper-wrapper-list-section {
	margin-bottom: 160px;
}

.section-hybrid__pic {
	flex: 0 0 620px;
	height: 600px;
}

.section-hybrid {
	margin-bottom: 60px;
}

.section-hybrid__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section__link {
	letter-spacing: 1px;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 500;
	transition: all 0.2s ease-in-out;
}

.section__link:hover {
	color: var(--color-brown);
}

.section-inspiration {
	overflow: hidden;
}

.section-inspiration__item {
	width: 305px;
	height: 305px;
}

.section-inspiration__item-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.section-inspiration__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.section-inspiration__item-text {
	padding: 20px;
	background-color: #f7f7f7;
	display: flex;
	align-items: end;
}

.section-inspiration__item-p {
	font-size: 20px;
	color: var(--color-gray);
}

.section-inspiration__item-p span {
	color: var(--color-black);
}

.section-inspiration__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-right: 24px;
}

.swiper-inspiration {
	overflow: initial !important;
}

.swiper-inspiration .swiper-slide {
	width: auto;
}

.swiper-inspiration .swiper-scrollbar {
	margin-top: 12px;
	width: 100%;
	height: 3px;
	position: relative;
	background-color: #f7f7f7;
	display: none;
}

.swiper-inspiration .swiper-scrollbar-drag {
	background-color: var(--color-black);
	height: 100%;
}

.section-inspiration__right {
	height: 100%;
}

.section-inspiration__row {
	display: flex;
	gap: 24px;
}

.section-inspiration__col {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.section-inspiration__btns {
	display: none;
}

.main-slider .swiper-wrapper {
	transition-duration: 1000ms !important;
}

.main-slider {
	position: relative;
	/* margin-top: -96px; */
}

.section-hybrid .section__wr {
	margin-bottom: 20px;
}

.section-hybrid .section-hybrid__pic,
.section-hybrid .product-slider-hybrid {
	padding-top: 20px;
}

.main-slider__item {
	min-height: 100vh;
    min-height: var(--vh, 100vh);
	height: 100vh;
    height: var(--vh, 100vh);
	position: relative;
	display: block;
}

/* .main-slider__item-wr {
	position: relative;
} */

.main-slider__img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: top;
}

.main-slider__content {
	position: absolute;
	top: auto;
	left: 50%;
	transform: translateX(-50%);
	bottom: 50px;
}

.main-slider__title {
	font-size: 42px;
	color: #fff;
	margin-bottom: 0;
}

.main-slider__sub-title {
	font-family: 'SF-PRO';
	font-size: 24px;
	line-height: 22px;
	text-transform: uppercase;
	margin-bottom: 8px;
	color: #fff;
}

.main-slider__btn {
	z-index: 3;
	position: relative;

	display: flex;
	height: 56px;
	padding: 0 30px;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 2px;
	color: var(--color-black);
	background-color: #fff;
	width: max-content;
	justify-content: center;
	text-transform: uppercase;
	align-items: center;
	border: 1px solid var(--color-gray);
	transition: all 0.2s ease-in-out;
}

.main-slider__btn:hover {
	color: var(--color-brown);
	border-color: var(--color-brown);
}

.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
	width: 20%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 2;
}

.main-slider .swiper-button-next {
	right: 0;
	/* cursor: url("/local/templates/lusio/img/icon/cursour-arrow-right.svg"), auto; */
}

.main-slider .swiper-button-next:before {
	content: '';
	width: 40px;
	height: 40px;
	position: absolute;
	right: 65px;

	background-color: #EFEBE1;
    -webkit-mask-image: url(/local/templates/luisawang/css/./img/icon/next-slide.svg);
    mask-image: url(/local/templates/luisawang/css/./img/icon/next-slide.svg);
	mask-repeat: no-repeat;
	mask-position: center;
}

.main-slider .swiper-button-prev {
	left: 0;
	/* cursor: url("/local/templates/lusio/img/icon/cursour-arrow-left.svg"), auto; */
}

.main-slider .swiper-button-prev:before {
	content: '';
	width: 40px;
	height: 40px;
	position: absolute;
	left: 65px;

	transition: .3s;
	background-color: #EFEBE1;
    -webkit-mask-image: url(/local/templates/luisawang/css/./img/icon/prev-slide.svg);
    mask-image: url(/local/templates/luisawang/css/./img/icon/prev-slide.svg);
	mask-repeat: no-repeat;
	mask-position: center;
}

.main-slider .swiper-button-prev:hover:before,
.main-slider .swiper-button-next:hover:before {
	background-color: var(--color-gray);
}

.main-slider .swiper-button-prev.swiper-button-disabled,
.main-slider .swiper-button-next.swiper-button-disabled {
	display: none;
}

.main-slider .swiper-top-banner-pagination {
	position: absolute;
	bottom: 40px;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 0;
	z-index: 2;
}

.main-slider .swiper-pagination-bullet {
	opacity: .3;
	position: relative;
	width: 100px;
	height: 2px;
	background-color: #EFEBE1;
}

.main-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
	background-color: rgb(239 235 225 / 30%);
}

.main-slider .swiper-pagination-bullets .swiper-pagination-bullet,
.main-slider .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0;
}


.main-slider .swiper-progressbar {
	height: 100%;
	background-color: #EFEBE1;
	width: 0;
}

.main-slider__mobile {
	display: none;
}

.popmechanic-disable-scroll {
	height: auto !important;
	min-height: 100%;
}

/* Catalog */

.breadcrumbs {
	margin-top: 24px;
	margin-bottom: 32px;
	font-size: 14px;
	display: flex;
}

.breadcrumbs__item {
	display: flex;
	gap: 8px;
}

.breadcrumbs__item::after {
	content: "/";
	color: var(--color-gray-light);
	margin-right: 8px;
}

.breadcrumbs__item:nth-last-child(1)::after {
	content: "";
}

.breadcrumbs__link {
	color: var(--color-gray-light);
}

.catalog-title {
	margin-bottom: 32px;
	position: relative;
}

.catalog-title__wr {
	display: flex;
	gap: 6px;
}

.catalog-title__h1 {
	font-size: 48px;
	font-weight: 500;
}

.catalog-title__count {
	color: var(--color-gray-light);
	font-size: 16px;
}

.catalog-page__row {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.catalog-custom-menu {
	width: 423px;
	user-select: none;
	/* margin-bottom: 160px; */
	/* height: 80vh; */
	position: relative;
	top: 0;
}

.section.catalog-page-menu__main {
	margin-bottom: 0;
}

.catalog-page .catalog-page__row {
	margin-bottom: 160px;
}

.catalog-custom-menu__item {
	position: relative;
}

.catalog-custom-menu__link:hover {
	color: var(--color-brown);
	background-color: #f3f3f3;
}

.catalog-custom-menu__item-active .catalog-custom-menu__link,
.catalog-custom-menu__item-active.catalog-custom-menu__item-child-item .catalog-custom-menu__item-child-link {
	background-color: #f3f3f3;
}

.catalog-custom-menu__link {
	padding: 10px 20px;
	display: block;
	font-size: 18px;
	position: relative;
	transition: all 0.2s ease-in-out;
}

.catalog-custom-menu__parent .catalog-custom-menu__link {
	display: flex;
	align-items: center;
}

.catalog-custom-menu__parent .catalog-custom-menu__link::after {
	content: "";
	width: 10px;
	height: 10px;
	background-color: var(--color-brown);
	border-radius: 50%;
	position: relative;
	margin-left: 10px;
}

.catalog-custom-menu__count {
	color: var(--color-gray-light);
	font-size: 16px;
	font-weight: 400;
	margin-left: 8px;
}

.catalog-custom-menu__child-two {
	display: none;
}

.catalog-custom-menu__item-child {
	margin-left: 12px;
	display: none;
}

.catalog-custom-menu__item-child-link {
	padding: 10px 40px 10px 20px;
	display: block;
	font-size: 18px;
	position: relative;
	transition: all 0.2s ease-in-out;
}

.catalog-custom-menu__item-child-link:hover {
	color: var(--color-brown);
	background-color: #f3f3f3;
}

.catalog-custom-menu__item-child-item {
	position: relative;
}

.catalog-custom-menu__item-child-item .catalog-custom-menu__count {
	font-size: 14px;
}

.catalog-page-menu__main {
	width: 100%;
}

.catalog-custom-menu__child-two-item-link {
	font-size: 18px;
	color: var(--color-gray);
	padding: 14px 40px;
	display: block;
	display: flex;
	gap: 8px;
}

.catalog-custom-menu__child-two-item-link:hover {
	color: var(--color-brown);
}

.catalog-page-products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 0;
	margin: 0 -12px;
	margin-bottom: 60px;
}



.catalog-page-filters,
.catalog-page-filters-mobile {
	padding-bottom: 20px;
	padding-top: 2px;
	margin-bottom: 14px;
	position: sticky;
	top: 80px;
	z-index: 10;
	background-color: #fff;
}
.top-bar-filter {
	top: 120px;
}
.catalog-page-filters__pc {
	display: flex;
	gap: 0px 40px;
	flex-wrap: wrap;
	align-items: center;
}

.catalog-page-filters::after,
.catalog-page-filters-mobile::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 0;
	background-color: rgb(243, 243, 243);
}

.filter-item {
	position: relative;
}

.filter-item__body {
	background-color: #fff;
	min-width: 220px;
	width: auto;
	position: absolute;
	left: 0;
	top: 35px;
	padding: 24px;
	z-index: 5;
	box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.12);
	visibility: hidden;
	opacity: 0;
	user-select: none;
}

.catalog-page__left-hidden {
	display: none;
}

.filter-item__body-wr {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-height: 231px;
	overflow-x: auto;
	overflow-y: scroll;
	transition: all 0.2s ease-in-out;
}

.filter-item__body-sorting {
	width: 278px;
	left: initial;
	right: 0;
}

.filter-item__body-price {
	width: 390px;
	font-family: 'SF-PRO';
}

.filter-item__body {
	font-family: 'SF-PRO';
}

.filter-item__body-price .filter-item__body-wr {
	overflow: initial;
}

.filter-item__body-sorting .filter-item__body-wr {
	overflow: initial;
	max-height: 100%;
}

.filter-item__body-btns {
	text-align: center;
	margin-top: 20px;
}

.filter-item__body-btn {
	color: #fff;
	background-color: #0f0f0e;
	font-weight: 500;
	height: 40px;
	padding: 0;
	font-size: 14px;
	align-items: center;
	display: flex;
	justify-content: center;
	transition: all 0.2s ease-in-out;
}

.filter-item__body-btn:hover {
	color: #0f0f0e;
	background-color: #fff;
	transition: all 0.2s ease-in-out;
}

.filter-item__body-btn-clear {
	font-size: 18px;
	display: inline-block;
	padding: 0 10px 2px 10px;
	margin-top: 10px;
	cursor: pointer;
}

.filter-item__title {
	cursor: pointer;
	display: flex;
	gap: 8px;
	align-items: center;
	color: #585855;
	user-select: none;
	position: relative;
	font-size: 16px;
}

.filter-item__quantity {
	font-size: 12px;
	width: 20px;
	height: 20px;
	background-color: var(--color-brown);
	color: #fff;
	border-radius: 50%;
	display: none;
	justify-content: center;
	align-items: center;
}

.filter-item__quantity:empty {
	display: none;
}

.filter-item:nth-last-child(1) {
	margin-left: auto;
}

.filter-item__title::after {
	content: "";
	width: 14px;
	height: 8px;
	background-image: url(/local/templates/luisawang/css/img/icon/arrow_filter_black.svg);
	background-position: center center;
	/* background-size: contain; */
	background-repeat: no-repeat;
	display: block;
}

/* c:\Users\altus\Desktop\работа\arrow_filter_gray.svg
c:\Users\altus\Desktop\работа\arrow_filter_black.svg */
.filter-item__active .filter-item__title {
	color: var(--color-black);
}

.filter-item__active .filter-item__title {
	color: var(--color-black);
}

.filter-item.kit-disabled .filter-item__title::after {
	background-image: url(/local/templates/luisawang/css/img/icon/arrow_filter_gray.svg);
}

.filter-item__active .filter-item__title::after {
	transform: rotate(180deg);
	background-image: url(/local/templates/luisawang/css/img/icon/arrow-top-black.svg);
}

.filter-item__active .filter-item__body {
	visibility: visible;
	opacity: 1;
	transition: all 0.2s ease-in-out;
}

.radio {
	cursor: pointer;
	position: relative;
	display: flex;
	justify-content: start;
	flex-direction: row-reverse;
}

.radio__input {
	display: none;
}

.radio__box {
	margin-left: auto;
	display: none;
	position: absolute;
	right: 0;
}

.radio__input:checked+.radio__box {
	display: block;
}

.catalog-page-bottom {
	text-align: center;
}

.catalog-page-bottom__desc {
	margin-bottom: 20px;
	color: var(--color-gray-light);
	text-align: center;
}

.catalog-page-bottom__btn {
	width: 268px;
	margin: 0 auto 32px auto;
	display: block;
}

.caratlog-pagination {
	display: flex;
	gap: 6px;
	justify-content: center;
}

.caratlog-pagination__item {
	flex: 0 0 50px;
	height: 50px;
}

.caratlog-pagination__item-active .caratlog-pagination__link {
	background-color: var(--color-black);
	color: #fff;
}

.caratlog-pagination__item-active .caratlog-pagination__link:hover {
	background-color: var(--color-black);
	color: #fff;
}

.caratlog-pagination__link {
	width: 100%;
	height: 100%;
	background-color: #f7f7f7;
	color: var(--color-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease-in-out;
	cursor: pointer;
}

.caratlog-pagination__link:hover {
	background-color: #d1d1d3;
}

.long-container .container {
	max-width: 1920px;
}

.long-container .footer .container {
	max-width: 1725px;
}

.long-container .article-card__pic {
	height: 415px;
}

.long-container .section-inspiration__item {
	width: 343px;
	height: 343px;
}

.long-container .section-inspiration__right {
	height: 710px;
}

.catalog-custom-menu__open {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 5px;
	right: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.catalog-custom-menu__open::after {
	content: "";
	background-image: url(/local/templates/luisawang/css/img/icon/plus.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 18px;
	height: 18px;
	display: block;
}

.catalog-custom-menu__open-active::after {
	background-image: url(/local/templates/luisawang/css/img/icon/minus.svg);
}

.checkbox,
.checkbox-filter {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	margin: 0;
	user-select: none;
}

.checkbox__input {
	display: none;
}

.checkbox__box::after {
	content: "";
	width: 20px;
	height: 20px;
	border: 1px solid var(--color-black);
	display: block;
	background-position: center center;
	background-size: 14px;
	background-repeat: no-repeat;
}

.checkbox__input:checked+.checkbox__box::after {
	background-image: url(/local/templates/luisawang/css/img/icon/check-white.svg);
	background-color: var(--color-black);
}

.checkbox__input:disabled+.checkbox__box::after {
	border-color: #d1d1d3;
}

.checkbox__disabled {
	color: #d1d1d3;
}

.checkbox__disabled .checkbox__count {
	color: #d1d1d3;
}

.checkbox__text {
	font-size: 16px;
	line-height: normal;
}

.checkbox__count {
	color: var(--color-gray-light);
	margin-left: auto;
	margin-right: 20px;
	flex: 0 0 auto;
}

.range-slider__container {
	position: relative;
	width: 100%;
	height: 31px;
	margin-top: 12px;
}

.range-slider input[type="range"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	outline: none;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	background-color: transparent;
	pointer-events: none;
}

.range-slider .slider-track {
	width: 100%;
	height: 2px;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	border-radius: 5px;
}

.range-slider input[type="range"]::-webkit-slider-runnable-track {
	-webkit-appearance: none;
	height: 2px;
}

.range-slider input[type="range"]::-moz-range-track {
	-moz-appearance: none;
	height: 2px;
}

.range-slider input[type="range"]::-ms-track {
	appearance: none;
	height: 2px;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	height: 24px;
	width: 24px;
	background-color: var(--color-black);
	cursor: pointer;
	margin-top: -12px;
	pointer-events: auto;
	border-radius: 50%;
}

.range-slider input[type="range"]::-moz-range-thumb {
	-webkit-appearance: none;
	height: 24px;
	width: 24px;
	cursor: pointer;
	border-radius: 50%;
	background-color: var(--color-black);
	pointer-events: auto;
}

.range-slider input[type="range"]::-ms-thumb {
	appearance: none;
	height: 24px;
	width: 24px;
	cursor: pointer;
	border-radius: 50%;
	background-color: var(--color-black);
	pointer-events: auto;
}

.range-slider__input {
	background: #ffffff;
	border: none;
	border-bottom: 1px solid var(--color-gray-light);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-weight: 500;
	font-size: 16px;
	padding: 8px 8px 8px 25px;
	width: 100%;
	border-radius: 0;
}

.range-slider__value {
	width: 50%;
	position: relative;
}

.range-slider__value-pre {
	font-weight: 500;
	position: absolute;
	bottom: 10px;
}

.range-slider__input::placeholder {
	color: var(--color-gray-light);
}

.range-slider__values {
	display: flex;
	gap: 16px;
}

.range-slider .catalog__filter-body {
	padding: 24px 16px;
}

.catalog-page-filter-items__item.catalog-filter-mobile-item {
	display: none;
}

.catalog-page-filter-items__item.checkbox-filter input.catalog-page-filter-items__text {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	left: 0;
	opacity: 0;
}

.filter-item__body .checkbox__text {
	/* display: flex;
    align-items: center;
    gap: 6px; */
	display: grid;
	align-items: center;
	grid-template-columns: 1fr 6fr;
	gap: 6px;
	white-space: nowrap;
	font-family: 'SF-PRO';
}

.checkbox__text-color {
	width: 16px;
	height: 16px;
	border: 1px solid #585855;
	border-radius: 50%;
	font-family: 'SF-PRO';
}

.filter-item__body-sleeve {
	width: 320px;
}

.catalog-page-filter-items {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	position: relative;
}

.catalog-page-filter-items__list {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	position: relative;
	padding-bottom: 14px;
}

.catalog-page-filter-items__list:empty {
	display: none;
}

.catalog-page-filter-items__item,
.catalog-page-filter-items__clear {
	list-style-type: none;
	background-color: #f7f7f7;
	color: var(--color-black);
	cursor: pointer;
	display: flex;
	gap: 10px;
	height: 36px;
	align-items: center;
	padding: 5px 14px;
	border-radius: 22px;
	user-select: none;
}

.catalog-page-filter-items__text-color {
	border: 1px solid #555856;
	border-radius: 50%;
	width: 14px;
	height: 14px;
}

.catalog-page-filter-items__clear {
	background-color: #ffffff;
	display: none;
	width: auto;
	border-radius: 0;
	padding: 0 5px 0 0;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 0;
}

.catalog-page-filter-items__clear img {
	flex: 0 0 12px;
	height: 12px;
	display: inline-block;
}

.catalog-page-filter-items__item-clear {
	background-color: #ffffff;
	color: #3c3834;
}

.filter-mobile__filters-list .catalog-page-filter-items__del {
	display: none;
}

.catalog-page-filter-items__text {
	font-size: 16px;
}

.catalog-page-filter-items__del-img {
	width: 12px;
	height: 12px;
}

.catalog-page-filters__mobile {
	display: none;
}

.catalog-page-filters__mobile-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.catalog-page-filters__mobile-item-text {
	color: #6f6f6f;
	font-size: 16px;
}

.catalog-page-filters__mobile-item-text {
	display: flex;
	gap: 9px;
	align-items: center;
}

.catalog-page-filters__mobile-count {
	font-size: 12px;
	width: 20px;
	height: 20px;
	color: #fff;
	border-radius: 50%;
	background-color: var(--color-brown);
	display: none;
	align-items: center;
	justify-content: center;
}

.catalog-page-filters__mobile-sort .catalog-page-filters__mobile-item-text::after {
	content: "";
	width: 14px;
	height: 8px;
	background-image: url(/local/templates/luisawang/css/img/icon/arrow-gray-bottom.svg);
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	display: block;
}

.catalog-page-filters__shadow {
	box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.12);
}

.sort-mobile {
	background-color: #fff;
	z-index: 102;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 20px 15px 25px 15px;
	visibility: hidden;
	opacity: 0;
	transform: translateY(100px);
	transition: all 0.2s ease-in-out;
}

.sort-mobile__active {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	transition: all 0.2s ease-in-out;
}

.sort-mobile__header {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sort-mobile .filter-item__body-wr {
	margin-bottom: 0;
	gap: 20px;
}

.sort-mobile__title {
	font-size: 20px;
	font-weight: 500;
}

.sort-mobile__close {
	display: flex;
	justify-content: center;
	align-items: center;
}

.sort-mobile-show {
	visibility: visible;
	opacity: 1;
	transition: all 0.1s ease-in-out;
}

.filter-mobile {
	background-color: #fff;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 102;
	height: 100%;
	width: 100%;
	padding: 20px 20px 0 20px;
	overflow-y: scroll;
	overflow-x: auto;
	visibility: hidden;
	opacity: 0;
	transform: translateX(100px);
	transition: all 0.2s ease-in-out;
}

/* .filter-mobile .catalog-page-filter-items {
    margin-top: 20px;
    margin-bottom: 32px;
} */

.filter-mobile__show {
	visibility: visible;
	opacity: 1;
	transform: translateX(0px);
	transition: all 0.2s ease-in-out;
}

.filter-mobile__header,
.mobile-catalog-page__left-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgb(209, 209, 211);
	margin: 0 -20px;
	padding: 0 20px 14px 20px;
}

.filter-mobile__header {
	margin-bottom: 20px;
}

.mobile-catalog-page__left-header {
	display: none;
	padding: 18px 20px 18px 20px;
}

.filter-mobile__title,
.mobile-catalog-page__left-header__title {
	font-size: 20px;
	font-weight: 500;
}

.filter-mobile__filters-list {
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.filter-mobile__filters-list .catalog-page-filter-items__item-clear {
	display: flex;
}

.filter-mobile__filters-list {
	margin-bottom: 32px;
}

.filter-mobile__menu-title {
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 20px;
	color: #585855;
}

.filter-mobile__menu .catalog-custom-menu__link {
	font-weight: 400;
	font-size: 16px;
}

.filter-mobile__menu .catalog-custom-menu__list {
	gap: 12px;
}

.filter-mobile__menu .catalog-custom-menu__item-child-item {
	border-bottom: 1px solid #f0ece9;
	padding: 10px 0;
}

.filter-mobile__menu .catalog-custom-menu__item-child-link {
	font-size: 16px;
}

.filter-mobile__menu .catalog-custom-menu__item-child {
	margin-top: 0;
}

.filter-mobile__menu {
	padding-bottom: 32px;
	border-bottom: 1px solid #f0ece9;
}

.filter-mobile__menu-btn-show {
	font-size: 16px;
	margin-top: 18px;
	font-weight: 600;
}

.filter-mobile__menu .catalog-custom-menu {
	height: 300px;
	overflow: hidden;
}

.filter-mobile__menu-show .catalog-custom-menu {
	height: auto !important;
}

.filter-mobile__item {
	padding-bottom: 36px;
}

.filter-mobile__item-category {
	padding-bottom: 32px;
	margin-top: 32px;
}

.filter-mobile__item:nth-last-child(2) {
	border-bottom: none;
}

.filter-mobile__item-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 16px;
}

.filter-mobile__item-title {
	font-size: 18px;
	color: var(--color-black);
	font-weight: 500;
	display: flex;
	gap: 6px;
	align-items: center;
}

.filter-mobile__item-count {
	width: 20px;
	height: 20px;
	background-color: var(--color-brown);
	border-radius: 50%;
	color: #fff;
	font-size: 12px;
	display: none;
	align-items: center;
	justify-content: center;
}

.filter-mobile__main-category {
	display: flex;
	justify-content: space-between;
}

.filter-mobile__sizes-header {
	color: #7a7a7a;
	display: flex;
	gap: 8px;
	align-items: end;
	margin-bottom: 16px;
}

.filter-mobile__sizes-header-name {
	font-size: 16px;
	line-height: normal;
}

.filter-mobile__sizes-header-type {
	text-decoration: underline;
	line-height: normal;
}

.filter-mobile__sizes-header-type-active {
	text-decoration: none;
	color: #0f0f0e;
}

.filter-mobile__sizes-footer {
	font-weight: 600;
	font-size: 16px;
}

.filter-mobile__sizes-wr {
	display: grid;
	grid-template-columns: repeat(6, 48px);
	gap: 10px;
	margin-bottom: 18px;
}

.filter-mobile__sizes-item {
	width: 48px;
	height: 48px;
	border: 1px solid #cec1b5;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: 600;
	position: relative;
}

.filter-mobile__sizes-item-disabled {
	color: #cec1b5;
}

.filter-mobile__sizes-item-disabled::after {
	content: "";
	position: absolute;
	height: 1px;
	width: 139%;
	transform: rotateZ(134deg);
	background-color: #cec1b5;
}

.filter-mobile__item .filter-item__body-price-input {
	width: 45%;
}

.filter-mobile__item-all {
	display: flex;
	gap: 4px;
	align-items: center;
	border-bottom: 1px solid var(--color-black);
}

.filter-mobile__item .filter-mobile__filters-list {
	margin-bottom: 0;
}

.filter-mobile__item .catalog-page-filter-items__item {
	background-color: #f7f7f7;
}

.filter-mobile__btns {
	text-align: center;
	position: sticky;
	bottom: 0;
	background: #fff;
	padding-bottom: 20px;
}

.filter-mobile__btn {
	background-color: #0f0f0e;
	color: #fff;
	display: block;
	align-items: center;
	width: 100%;
}

.filter-mobile__btn-clear {
	margin-top: 15px;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	display: inline-block;
}

.mobile-catalog__products {
	padding-bottom: 20px;
}

.catalog-page-filter-items__item-active {
	background-color: #d1d1d3 !important;
}

.catalog-page-filter-items__item-active .catalog-page-filter-items__del {
	display: block;
}

.catalog-page-filter-items__item-disabled {
	background-color: #fafafa;
	color: #d1d1d3;
}

.catalog-page-filter-items__item-disabled .catalog-page-filter-items__text-color {
	opacity: 0.4;
}

.main-product {
	padding-bottom: 0;
}

/* Страница товара */

.section-reviews__wr {
	display: flex;
	gap: 12px;
	font-weight: 500;
	justify-content: start;
	align-items: start;
}

.section__count {
	font-size: 24px;
}

/*.reviews__row {
    display: flex;
    justify-content: space-between;
    gap: 120px;
}*/

.reviews__left {
	width: 100%;
}

.reviews__filters {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 32px;
}

.reviews__filters .filter-item {
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 2px;
}

.reviews__filters .filter-item__title::after {
	background-image: url(/local/templates/luisawang/css/img/icon/arrow-black-bottom.svg);
}

.reviews__filters .filter-item__body-wr {
	overflow: inherit;
}

.reviews__filters .filter-item__title {
	color: var(--color-black);
}

.reviews__filters .radio {
	transition: all 0.2s ease-in-out;
}

.reviews__filters .radio:hover {
	color: var(--color-brown);
}

.filter-item__body-new {
	width: 325px;
	padding: 24px 30px;
}

.reviews__filter-photo {
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	user-select: none;
}

.reviews__filter-photo-input {
	display: none;
}

.reviews__filter-photo-box {
	width: 32px;
	height: 20px;
	border: 2px solid var(--color-black);
	background-color: var(--color-black);
	border-radius: 20px;
	display: block;
	position: relative;
	transition: all 0.2s ease-in-out;
}

.reviews__filter-photo-box::after {
	content: "";
	width: 12px;
	height: 12px;
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	right: 3px;
	top: 2px;
	transition: all 0.2s ease-in-out;
}

.reviews__filter-photo-input:checked+.reviews__filter-photo-box {
	background-color: #fff;
}

.reviews__filter-photo-input:checked+.reviews__filter-photo-box::after {
	transform: translateX(-11px);
	background-color: var(--color-black);
}

.reviews__filter-photo-text-mobile {
	display: none;
}

.reviews__right {
	flex: 0 0 850px;
}

.reviews__body {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.reviews__item {
	padding-bottom: 32px;
	border-bottom: 1px solid rgb(209, 209, 211);
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.reviews__item-header {
	display: flex;
	align-items: center;
	gap: 16px;
}

.reviews__name {
	font-size: 20px;
	font-weight: 500;
}

.reviews__date {
	color: var(--color-gray);
}

.reviews__rating {
	display: flex;
	gap: 10px;
	align-items: center;
}

.reviews__rating-count {
	font-size: 20px;
	font-weight: 500;
}

.reviews__stars {
	display: flex;
	gap: 5px;
	align-items: start;
}

.reviews__star {
	display: flex;
}

.reviews__comment {
	color: var(--color-gray);
}

.reviews__btns {
	display: flex;
	justify-content: center;
}

.reviews__btn {
	font-size: 14px;
	height: 46px;
}

.reviews__photos {
	display: flex;
	gap: 8px;
}

.reviews__photo {
	flex: 0 0 80px;
	height: 100px;
}

.reviews__photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.reviews__rating-block {
	background-color: #f7f7f7;
	padding: 60px;
	display: flex;
	gap: 40px;
}

.reviews__rating-block-left {
	display: flex;
	flex: 0 0 285px;
	flex-direction: column;
	align-items: center;
	padding-right: 40px;
	border-right: 1px solid #d1d1d3;
}

.reviews__rating-block-count {
	font-size: 36px;
	font-weight: 500;
	margin-bottom: 12px;
}

.reviews__rating-block-reviews {
	color: var(--color-gray-light);
	margin-bottom: 34px;
}

.reviews__rating-block-btn {
	gap: 8px;
	font-size: 14px;
	height: 46px;
}

.reviews__rating-block-btn img {
	width: 14px;
	height: 14px;
	position: relative;
	bottom: 1px;
}

.reviews__rating-block-right {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	justify-content: center;
}

.reviews__rating-block-lines {
	display: flex;
	align-items: center;
	gap: 15px;
}

.reviews__rating-block-num {
	color: var(--color-gray-light);
}

.reviews__rating-block-line {
	width: 100%;
	height: 3px;
	background-color: #d1d1d3;
	position: relative;
}

.reviews__rating-block-line-progress {
	background-color: var(--color-black);
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
}

.reviews__rating-block-btns-mobile {
	display: none;
}

.reviews__filters .catalog-page-filters__mobile-item {
	display: none;
}

.modal-sidebar {
	position: fixed;
	max-width: 520px;
	width: 100%;
	top: 0;
	right: 0;
	height: 100%;
	background-color: #fff;
	z-index: 102;
	overflow-x: auto;
	overflow-y: scroll;
	padding: 40px;
	visibility: hidden;
	opacity: 0;
	transform: translateX(100px);
	transition: all 0.3s ease-in-out;
}

.modal-sidebar__show {
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
}

.modal-sidebar__header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 32px;
}

.modal-sidebar__title {
	text-transform: uppercase;
	letter-spacing: 2px;
}

.modal-sidebar__close {
	cursor: pointer;
	display: flex;
	align-items: start;
	margin-top: 4px;
}

.modal-sidebar__body {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.modal-sidebar__btn {
	width: 100%;
}

.reviews__no-reviews {
	display: flex;
	gap: 32px;
}

.reviews__no-reviews-circle {
	background: #f7f7f7;
	flex: 0 0 68px;
	height: 68px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.reviews__no-reviews-title {
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 15px;
}

.reviews-sort .filter-item__body-wr {
	overflow: initial;
}

.reviews__no-reviews-text {
	font-size: 20px;
	margin-bottom: 32px;
}

.reviews__block-no-ratings {
	padding: 35px 0;
	justify-content: center;
}

.reviews__block-no-ratings .reviews__rating-block-left {
	border-right: none;
	padding-right: 0;
}

.reviews__rating-block-text {
	display: none;
}

.reviews__block-no-ratings .reviews__rating-block-btn {
	display: none;
}

.modal-sidebar__header-col {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.modal-sidebar__sub-title {
	color: var(--color-gray);
	margin-top: -24px;
	margin-bottom: 24px;
}

.input-custom {
	position: relative;
	user-select: none;
	display: flex;
	gap: 8px;
	flex-direction: column;
}

.input-custom__input {
	width: 100%;
	border: 1px solid var(--color-gray);
	padding: 18px 16px;
	font-size: 16px;
	font-family: var(--userfont);
}

.input-custom__textarea {
	height: 110px;
}

.input-custom__textarea:focus {
	border: 1px solid var(--color-gray);
	outline: none;
}

.input-custom__text {
	font-weight: 500;
}

.input-custom__input::placeholder {
	color: var(--color-gray-light);
}

.input-custom__error .input-custom__input {
	border-color: var(--color-red);
}

.your-rating {
	position: relative;
	user-select: none;
}

.your-rating__text {
	margin-bottom: none;
	margin-bottom: 12px;
	font-weight: 500;
}

.your-rating__body {
	display: flex;
	gap: 10px;
}

.your-rating__item {
	cursor: pointer;
}

.your-rating__item-radio {
	display: none;
}

.your-rating__star::before {
	content: "";
	width: 35px;
	height: 35px;
	background-image: url(/local/templates/luisawang/css/img/icon/star-gray.svg);
	background-size: contain;
	background-repeat: no-repeat;
	display: block;
}

.your-rating__item-active .your-rating__star::before {
	background-image: url(/local/templates/luisawang/css/img/icon/star-black.svg);
}

.your-rating__item-radio:checked+.your-rating__star::before {
	background-image: url(/local/templates/luisawang/css/img/icon/star-black.svg);
}

.modal-sidebar__add-photos {
	border: 1px dashed rgb(111, 111, 111);
	background-color: #f7f7f7;
	padding: 30px 24px;
	display: flex;
	align-items: center;
	gap: 16px;
	cursor: pointer;
}

.modal-sidebar__add-photos-text span {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.modal-sidebar__btns {
	margin-top: 24px;
}

.modal-sidebar__doc {
	margin-top: 14px;
	color: var(--color-gray);
}

.modal-sidebar__doc-link {
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--color-black);
}

.modal-sidebar__add-all {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.modal-sidebar__add-item {
	width: 100px;
	height: 100px;
	position: relative;
}

.modal-sidebar__add-item-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.modal-sidebar__del {
	border: 1px solid var(--color-gray);
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: absolute;
	top: -10px;
	right: -10px;
}

.modal-sidebar__add-create {
	width: 100px;
	height: 100px;
	border: 1px dashed var(--color-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.modal-sidebar__add-create-icon {
	width: 22px;
	height: 22px;
}

.page-product {
	display: flex;
	gap: 42px;
}

.page-product__left {
	width: 1200px;
	flex: 0 0 1200px;
	position: relative;
}

.swiper-page-product .swiper-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.swiper-page-product__item {
	height: 795px;
}

.swiper-page-product__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.swiper-page-product .swiper-pagination {
	display: none;
	position: absolute;
	z-index: 11;
	bottom: 5px;
	gap: 5px;
	justify-content: center;
	width: 100%;
	padding: 0 5px;
}

.swiper-page-product .swiper-pagination-bullet {
	background-color: #fff;
	height: 2px;
	display: block;
	width: 100%;
	opacity: 0.7;
}

.swiper-page-product .swiper-pagination-bullet-active {
	background-color: var(--color-black);
	opacity: 1;
}

.page-product__right {
	width: 100%;
}

.page-product__back {
	position: absolute;
	top: 26px;
	left: 22px;
	z-index: 11;
	display: none;
}

.page-product-title {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 8px;
}

.page-product-title__h1 {
	font-size: 24px;
	font-weight: 500;
}

.page-sharing {
	position: relative;
	margin-top: 10px;
}

.page-sharing__btn {
	display: flex;
	cursor: pointer;
}

.page-sharing__btn svg path {
	transition: all 0.2s ease-in-out;
}

.page-sharing__btn svg:hover path {
	fill: var(--color-brown);
}

.page-sharing__body {
	background-color: #fff;
	width: 230px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 24px;
	box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.12);
	position: absolute;
	right: 0;
	top: 35px;
	z-index: 12;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.2s ease-in-out;
}

.page-sharing__body-wr {
	display: none;
	justify-content: space-between;
	align-items: center;
}

.page-sharing__body-title {
	font-size: 20px;
	font-weight: 500;
}

.page-sharing__close {
	display: flex;
}

.page-sharing__active .page-sharing__btn svg path {
	fill: var(--color-brown);
}

.page-sharing__active .page-sharing__body {
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
}

.page-sharing__body-item {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.page-sharing__body-item svg {
	width: 20px;
}

.page-sharing__body-item span {
	transition: all 0.1s ease-in-out;
}

.page-sharing__body-item svg path {
	transition: all 0.2s ease-in-out;
}

.page-sharing__body-item:hover span {
	color: var(--color-brown);
}

.page-sharing__body-item:hover svg path {
	fill: var(--color-brown);
}

.page-product-rating {
	display: flex;
	align-items: center;
	font-size: 14px;
	margin-bottom: 18px;
}

.page-product-rating__stars {
	display: flex;
	gap: 7px;
	margin-right: 8px;
}

.page-product-rating__star {
	display: flex;
}

.page-product-rating__count {
	margin-right: 5px;
}

.page-product-rating__star svg {
	width: 20px;
	height: 20px;
}

.page-product-rating__reviews {
	color: var(--color-gray-light);
}

.page-product-price {
	display: flex;
	justify-content: space-between;
	align-items: end;
	margin-bottom: 24px;
}

.page-product-price__left {
	display: flex;
	gap: 12px;
	align-items: center;
}

.page-product-price__new {
	font-size: 24px;
	font-weight: 500;
	line-height: 26px;
}

.page-product-price__old {
	color: var(--color-gray-light);
	text-decoration: line-through;
}

.page-product-price__right {
	display: flex;
	gap: 7px;
	align-items: center;
}

.page-product-price__bonus {
	flex: 0 0 auto;
	color: var(--color-gray-light);
}

.page-product-size {
	position: relative;
	margin-bottom: 26px;
}

.page-product-size__title {
	margin-bottom: 8px;
	color: var(--color-gray-light);
}

.page-product-size__sizes {
	display: flex;
	gap: 8px;
	margin-bottom: 10px;
}

.page-product-size__item {
	width: 54px;
	height: 36px;
	border: 1px solid #f3f3f3;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.page-product-size__active {
	border-color: var(--color-black);
	color: #fff;
	background-color: var(--color-black);
}

.page-product-size__disabled {
	color: #d1d1d3;
}

.page-product-size__table {
	display: flex;
	gap: 9px;
	user-select: none;
	cursor: pointer;
	align-items: end;
}

.page-product-size__table svg {
	display: flex;
}

.page-product-size__table svg path {
	transition: all 0.2s ease-in-out;
}

.page-product-size__table:hover svg path {
	fill: var(--color-brown);
}

.page-product-size__table-text {
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: all 0.2s ease-in-out;
}

.page-product-size__table:hover .page-product-size__table-text {
	color: var(--color-brown);
}

.page-product-color {
	margin-bottom: 36px;
}

.page-product-color__title {
	margin-bottom: 8px;
}

.page-product-color__title span {
	color: var(--color-gray-light);
}

.page-product-color__colors {
	display: flex;
	gap: 8px;
}

.page-product-color__item {
	flex: 0 0 28px;
	height: 28px;
	border-radius: 50%;
	cursor: pointer;
	outline: 1px solid #f3f3f3;
	border: 3px solid #fff;
}

.page-product-color__active {
	outline: 1px solid var(--color-black);
}

.modal-table {
	margin-top: 24px;
	margin-bottom: 24px;
	width: 100%;
	border-collapse: collapse;
}

.modal-table tbody tr:hover {
	background-color: #F3F3F3;
}

.modal-table thead {
	color: var(--color-gray);
	font-size: 14px;
}

.modal-table tbody td {
	padding-top: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgb(243, 243, 243);
}

.modal-sizes-text__item {
	max-width: 274px;
}

.modal-sizes-text {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.modal-sizes-text__title {
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.modal-sizes-text__img-wr {
	position: absolute;
	right: 0;
}

.modal-sizes-text__img {
	height: 392px;
	width: 120px;
}


/* .page-product-btn-slice {
    background-color: transparent;
    border: none;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    margin-bottom: 24px;
    text-transform: uppercase;
	letter-spacing: 1.3px;
    line-height: 16px;
} */

/* .page-product-btn-slice::after {
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(/local/templates/luisawang/css/img/icon/arrow-black-right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: inherit;
    right: unset;
    top: unset;
    transform: none;
} */

.page-product-btn-slice__right {
	display: flex;
	gap: 18px;
	align-items: end;
}

.page-product-btn-slice__left {
	font-weight: 500;
	font-family: var(--userfont);
}

.page-product-btn-slice__left span {
	font-weight: 400;
}

.page-product-btn-slice__icon-4 {
	display: none;
}

.page-product__btns {
	display: flex;
	gap: 10px;
	margin-bottom: 24px;
}

.page-product__btn {
	display: flex;
	gap: 10px;
	width: 100%;
}

.page-product__btn._loading {
	color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 22px auto;
	background-image: url('/local/templates/luisawang/css/img/icon/spinner.webp');
}

.page-product-favorite {
	flex: 0 0 56px;
	height: 56px;
	border: 1px solid var(--color-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

.page-product-favorite svg path {
	transition: all 0.2s ease-in-out;
}

.page-product-favorite:hover {
	border-color: var(--color-brown);
}

.page-product-favorite:hover svg path {
	stroke: var(--color-brown);
}

.page-product-favorite__active svg path {
	fill: var(--color-black);
}

.page-product-favorite__active:hover svg path {
	fill: var(--color-brown);
}

.page-product-delivery {
	margin-bottom: 36px;
}

.page-product-delivery__title {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 16px;
}

.page-product-delivery__city {
	display: flex;
	align-items: center;
	gap: 5px;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

.page-product-delivery__city:hover {
	color: var(--color-brown);
}

.page-product-delivery__city svg path {
	transition: all 0.2s ease-in-out;
}

.page-product-delivery__city:hover svg path {
	stroke: var(--color-brown);
}

.page-product-delivery__body {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.page-product-delivery__item {
	display: flex;
	gap: 12px;
}

.page-product-delivery__sub-title {
	margin-bottom: 4px;
}

.page-product-delivery__date {
	font-size: 14px;
	color: var(--color-gray);
}

.modal-size__size-num {
	font-weight: 500;
}

.modal-slice__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.modal-slice__item {
	display: flex;
	gap: 10px;
	align-items: start;
}

.modal-slice__item-img {
	display: flex;
	margin-top: 5px;
}

.modal-slice__item-text {
	font-size: 14px;
}

.modal-slice-block {
	position: relative;
}

.modal-slice-block__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	background-color: #f7f7f7;
	padding: 18px 56px 18px 18px;
	cursor: pointer;
	user-select: none;
}

.modal-slice-block__header::after {
	content: "";
	width: 14px;
	height: 8px;
	background-image: url(/local/templates/luisawang/css/img/icon/arrow-black-bottom.svg);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
}

.modal-slice-block__header-col {
	display: flex;
	align-items: center;
	gap: 5px;
}

.modal-slice-block__header-icon {
	display: flex;
}

.modal-slice-block__body {
	padding: 20px;
	border-left: 1px solid #f7f7f7;
	border-right: 1px solid #f7f7f7;
	border-bottom: 1px solid #f7f7f7;
	user-select: none;
	display: none;
}

.modal-slice-block__active .modal-slice-block__body {
	display: block;
}

.modal-slice-block__active .modal-slice-block__header::after {
	transform: rotate(181deg) translateY(30%);
}

.modal-slice-block__tabs {
	display: flex;
	background-color: #f7f7f7;
	padding: 4px;
	margin-bottom: 20px;
}

.modal-slice-block__tab {
	font-size: 14px;
	height: 36px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.modal-slice-block__tab.active {
	background-color: #fff;
}

.modal-slice-block__tab-price {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 20px;
}

.modal-slice-block__tab-list {
	display: flex;
	gap: 8px;
	justify-content: space-between;
}

.modal-slice-block__tab-date {
	width: 100%;
}

.modal-slice-block__tab-line {
	background-color: #E2E3E8;
	height: 6px;
	width: 100%;
	margin-bottom: 6px;
}

.sidebar-city .sidebar-city__input {
	margin: 0;
}

.modal-slice-block__tab-month {
	font-size: 14px;
	color: var(--color-gray);
	margin-bottom: 4px;
}

.modal-slice-block__tab-month-price {
	font-size: 14px;
	font-weight: 500;
}

.modal-slice-block__tab-date-active .modal-slice-block__tab-line {
	background-color: #4AC2A8;
}

.modal-slice-block__tab-item {
	flex-direction: column;
}

.modal-slice-block__tab-list {
	margin-bottom: 20px;
}

.modal-slice-block__tab-list-blue .modal-slice-block__tab-line {
	background-color: #CFEDFD;
}

.modal-slice-block__tab-list-blue .modal-slice-block__tab-date-active .modal-slice-block__tab-line {
	background-color: #67B9D8;
}

.modal-slice-block__tab-list-violet .modal-slice-block__tab-date {
	width: 120px;
}

.modal-slice-block__tab-list-violet .modal-slice-block__tab-line {
	background-color: #7471C3;
}

.modal-slice-block__tab-date-long {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 6px;
}

.modal-slice-block__tab-date-slice {
	height: 6px;
	width: 100%;
	background-color: #E2E0F3;
}

.modal-slice-block__tab-list-violet .modal-slice-block__tab-date:nth-child(2) {
	width: 100%;
}

.modal-slice-block__tab-bottom {
	font-weight: 500;
	font-size: 14px;
}

.filter-item__quantity.show_quantity,
.filter-mobile__item-count.show_quantity,
.catalog-page-filters__mobile-count.show_quantity {
	display: flex;
}

.modal-slice-blocks {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 8px;
}

.modal-slice-block__tab-list-red .modal-slice-block__tab-date-active .modal-slice-block__tab-line {
	background-color: var(--color-red);
}

.page-product-item {
	padding: 26px 0;
	border-bottom: 1px solid rgb(209, 209, 211);
}

.delivery-table tbody tr td:first-child {
	padding-right: 15px;
}

.page-product-item__header {
	position: relative;
	font-weight: 500;
	letter-spacing: 3px;
	text-transform: uppercase;
	cursor: pointer;
	user-select: none;
}

.filter-mobile__item .filter-item__body-price {
	width: 100%;
}

.page-product-item__header::after {
	content: "";
	width: 14px;
	height: 8px;
	background-image: url(/local/templates/luisawang/css/img/icon/arrow-black-bottom.svg);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.page-product-item__body {
	display: none;
	flex-direction: column;
	gap: 24px;
	margin-top: 24px;
}

.page-product-item__active .page-product-item__body {
	display: flex;
}

.page-product-item__active .page-product-item__header::after {
	transform: rotate(181deg) translateY(30%);
}

.page-product-item__text {
	color: var(--color-gray);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.delivery-table {
	width: 100%;
}

.delivery-table thead {
	color: var(--color-gray);
	font-size: 14px;
}

.delivery-table tbody tr {
	border-bottom: 1px solid rgb(243, 243, 243);
}

.delivery-table tbody tr td {
	padding: 16px 0;
}

.delivery-table tbody tr:nth-last-child(1) td {
	border-bottom: none;
}

.delivery-table tbody tr td:nth-child(2) {
	width: 110px;
}

.delivery-table__name {
	text-decoration: underline;
	text-underline-offset: 3px;
	margin-bottom: 4px;
}

.delivery-table__address {
	color: var(--color-gray-light);
	font-size: 14px;
}

.delivery-table__slices {
	display: flex;
	gap: 3px;
	margin-bottom: 4px;
}

.delivery-table__slice {
	width: 4px;
	height: 18px;
	background-color: #D1D1D3;
}

.delivery-table__slice-text {
	font-size: 14px;
	color: var(--color-gray-light);
}

.delivery-table__slice-black {
	background-color: #000;
}

#delivery-map a.delivery-map__bottom-btn {
	width: 100%;
}

.page-product-item__btn {
	width: max-content;
	height: 46px;
	font-size: 14px;
}

.page-product-item__size-block {
	padding: 16px;
	background-color: #F7F7F7;
	display: flex;
	align-items: start;
	gap: 15px;
}

.page-product-item__size-icon {
	display: flex;
	margin-top: 4px;
}

.page-product-item__size-content {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.page-product-item__body .modal-table tr td {
	width: 100px;
	padding-right: 20px;
}

.modal-table-new-style {
	display: flex;
	flex-direction: column;
}

.modal-table-new-style tr,
.modal-table-new-style,
.modal-table-new-style thead,
.modal-table-new-style tbody {
	width: 100%;
}

.modal-table-new-style tr {
	grid-template-columns: repeat(auto-fit, 20%);
	display: inline-grid;
}

.modal-table-new-style tbody tr {
	position: relative;
}

.modal-table-new-style tbody tr:hover:before {
	display: block;
}

.page-product-btn-slice__left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.page-product-btn-slice__left_icon {
	display: flex;
	align-items: center;
	gap: 8px;
}

.page-product-btn-plus__icon {
	border-radius: 9px 2px 2px 9px;
	padding: 2px;
	display: flex;
	align-items: center;
	gap: 3px;
	background: linear-gradient(90deg, #FF5C4D 0%, #EB469F 40%, #8341EF 100%);
}

.page-product-btn-plus__points {
	font-family: 'SF-PRO';
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
}

.page-product-btn-plus_quantity {
	color: #FFFFFFFA;
	font-family: 'YS';
	font-size: 15px;
	font-weight: 400;
	line-height: 13px;
}

.page-product-btn-plus {
	display: flex;
	align-items: center;
	gap: 4px;
}

.modal-table-new-style tbody tr:before {
	content: '';
	display: none;
	width: 110%;
	height: 100%;
	position: absolute;
	left: -20px;
	background: #F3F3F3;
	z-index: -1;
}

.modal-table-new-style tbody tr:hover {
	background-color: transparent;
}

.modal-delivery-map__name {
	margin-bottom: 12px;
	font-weight: 500;
}

.modal-delivery-map__bottom {
	display: flex;
	justify-content: space-between;
}

.page-product-item__body .modal-table tr:nth-last-child(1) td {
	border-bottom: none;
}

.modal-delivery-map__address {
	font-size: 14px;
	margin-bottom: 12px;
}

.modal-delivery-map {
	display: flex;
	max-width: 1480px;
	padding: 0;
	overflow: initial;
}

.modal-sidebar__map {
	width: 100%;
	height: 100%;
}


.map-point {
	position: relative;
	width: 34px;
	height: 44px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform: translate(-50%, -50%);
}

.map-point._disabled {
	opacity: 0.2;
}

.modal-delivery-map__name,
.delivery-table__name {
	cursor: pointer;
	transition: color 0.3s ease-in-out;
}

.modal-delivery-map__name:hover,
.delivery-table__name:hover {
	color: var(--color-brown);
}

.modal-delivery-map__name._active::after {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background-color: var(--color-brown);
	display: inline-block;
	vertical-align: middle;
}

.modal-delivery-map__item.bx-selected {
	order: 1;
}

.modal-delivery-map__name._active {
	color: var(--color-brown);
}

.modal-sidebar__right {
	flex: 0 0 440px;
	padding: 40px;
}

.modal-delivery-map .page-product-delivery__title {
	margin-bottom: 0;
}

.modal-delivery-map__item {
	padding-bottom: 24px;
	border-bottom: 1px solid rgb(209, 209, 211);
	order: 2;
}

.modal-delivery-map__name._active {
	color: var(--color-brown);
}

.delivery-map__bottom-btn {
	font-size: 16px;
	height: 40px;
	margin-top: 20px;
}

.delivery-map__bottom-btn:hover {
	color: #fff;
}

.section__list-product .swiper-wrapper-list-section {
	margin-bottom: 120px;
}

.modal-delivery-map__inf-item {
	color: var(--color-gray);
	font-size: 14px;
}

.modal-delivery-map__qua {
	display: flex;
	gap: 8px;
	margin-top: auto;
}

.modal-delivery-map .delivery-table__slices {
	margin-bottom: 0;
}

.modal-delivery-map__text {
	font-size: 14px;
	color: var(--color-gray-light);
}

.modile-hide-br {
	display: none;
}

.modal-delivery-map .modal-sidebar__body {
	height: 100%;
	overflow-y: scroll;
	padding-right: 20px;
	margin-right: -20px;
}

.modal-delivery-map__mobile-header {
	position: fixed;
	width: 100%;
	background-color: #fff;
	left: 0;
	top: 0;
	z-index: 12;
	display: none;
	justify-content: center;
	gap: 30px;
	border-bottom: 1px solid rgb(209, 209, 211);
}

.modal-delivery-map__mobile-header-item {
	color: var(--color-gray);
	padding: 20px 0;
	position: relative;
}

.modal-delivery-map__mobile-header-item.active {
	border-bottom: 2px solid var(--color-black);
}

.modal-delivery-map .modal-delivery-map__search {
	position: fixed;
	z-index: 12;
	width: 100%;
	padding: 0 20px;
	top: 80px;
	left: 0;
	display: none;
}

.modal-error-block {
	letter-spacing: normal;
	font-weight: 400;
	text-transform: none;
	font-size: 16px;
	line-height: 20px;
	color: #A5A5A5;
	margin-top: 12px;
}

.list__star {
	margin-top: 4px;
	display: flex;
	align-items: center;
	gap: 7.5px;
}

.list__star_item svg {
	width: 35px;
	height: 35px;
}

#reviews__form>label {
	margin-bottom: 24px;
}

.modal-delivery-map .modal-delivery-map__search-input {
	height: 44px;
	border: 1px solid var(--color-gray);
	width: 100%;
	padding: 0 12px;
}

.modal-delivery-map .modal-delivery-map__search-input::placeholder {
	color: var(--color-gray-light);
}

.modal-delivery-map__search-btn {
	background-color: #fff;
	border: none;
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
}

.delivery-mode {
	display: none;
}

.modal-delivery-map__mobile-header-back {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 20px;
}

.modal-sidebar__right-active {
	display: block;
}

.fancybox-thumbs__list a:before {
	border: 2px solid #ff5268;
	border-radius: 10px;
}

.fancybox-thumbs__list a {
	border-radius: 10px;
}

.fancybox-show-thumbs .fancybox-inner {
	right: 0;
}

.filter-item.kit-disabled .filter-item__quantity {
	display: none;
}

.filter-item .filter-item__title {
	font-family: 'SF-PRO';
}

.filter-item.kit-disabled .filter-item__title {
	color: #6F6F6F;
}

.fancybox-thumbs {
	position: absolute;
	top: 0;
	bottom: auto;
	width: 50vw;
	margin: 0 auto;
	z-index: 99999;
	left: 0;
	right: 0;
	background: rgba(24, 24, 27, .5);
}



.delivery__date-select {
	position: absolute;
	z-index: 10;
	background: #fff;
	width: 100%;
	top: 64px;
	padding: 8px 20px 8px 0;
	box-shadow: 0px 2px 24px 0px #0000001A;
	max-height: 200px;
	display: none;
	/* overflow-y: scroll; */
}

.soa-property-container-select-delivery.active-select .delivery__date-select {
	display: block;
	overflow-y: scroll;
}

.delivery__date-block input {
	width: 100%;
}

.delivery__date-select__item {
	padding: 8px 0 8px 16px;
	font-family: 'SF-PRO';
	font-size: 16px;
	color: #262626;
	line-height: 20px;
	cursor: pointer;
	position: relative;
}

.soa-property-container-select-delivery input {
	cursor: pointer;
}

.delivery__date-select__item.active-element::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 9;
	background: url(/local/templates/luisawang/css/./img/icon/check.svg) no-repeat;
	right: 0;
	top: 9px;
	width: 20px;
	height: 20px;
}

.delivery-input {
	position: relative;
	cursor: pointer;
}

.delivery-input:after {
	content: "";
	display: block;
	position: absolute;
	z-index: 9;
	background: url(/local/templates/luisawang/css/./img/icon/arrow-top-black.svg) no-repeat;
	right: 16px;
	width: 20px;
	height: 20px;
	top: 18px;
	background-position: center;
	transform: rotate(180deg);
}

.soa-property-container-select-delivery.active-select .delivery-input:after {
	transform: rotate(0);
}




/* auth */

.btn-link,
.link,
.close-button {
	border: none;
	background-color: transparent;
	padding: 0;
	border-radius: 0;
	color: inherit;
}

.auth-item__link,
.form__row,
.close-button {
	display: flex;
	flex-wrap: wrap;
}

.auth-item__icon,
.auth-item__link::before {
	background-repeat: no-repeat;
	background-position: center;
}

/*common*/
.side-popup {
	position: fixed;
	background-color: white;
	color: var(--text);
	width: 100%;
	max-width: 540px;
	top: 0;
	z-index: 110;
	right: -540px;
	height: 100%;
	transition: right 0.5s ease-in-out;
}

.side-popup._active {
	right: 0;
}

.side-popup__position {
	height: 100%;
	display: none;
	flex-direction: column;
}

.side-popup__position._active {
	display: flex;
}

.side-popup__header {
	padding: 40px 80px 0 40px;
	margin-bottom: 24px;
}

.side-popup__main {
	padding: 0 50px 40px 40px;
	max-height: 100%;
	overflow-y: auto;
}

.side-popup__title {
	font-size: 16px;
    line-height: 22px;
    font-weight: 600;
	/* letter-spacing: 2px; */
	text-transform: uppercase;
	margin-bottom: 0;
}

.side-popup__text {
	font-weight: 400;
    line-height: 22px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.side-popup__text .link {
	margin-top: 8px;
}

.link.timer__link,
.side-popup__text .link {
	line-height: 22px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid #28201E;
}

.side-popup__text p {
	margin-bottom: 16px;
}

.side-popup__text>*:last-child {
	margin-bottom: 0;
}

.side-popup__note {
	margin-top: 10px;
	display: inline-block;
	color: var(--color-gray);
}

.side-popup__close {
	position: absolute;
	right: 50px;
	top: 40px;
}

.side-popup .form {
	padding-top: 10px;
}

.close-button {
	width: 20px;
	height: 20px;
	text-align: center;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.weight-medium {
	font-weight: 500;
}

.link {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
	display: inline-block;
	text-decoration: underline;
	cursor: pointer;
}

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

.btn-link {
	font-family: inherit;
	font-size: 1rem;
	font-weight: 400;
	color: inherit;
	text-transform: uppercase;
	line-height: 1.25;
	letter-spacing: 2px;
	display: inline-block;
	cursor: pointer;
}

.btn-link:hover {
	text-decoration: underline;
}

.form__col {
	width: 100%;
	margin-bottom: 24px;
}

.form__buttons {
	text-align: center;
}

.form__button {
	margin-top: 24px;
}

.form__submit {
	width: 100%;
}

.form-item__label {
	display: block;
	margin: 0;
}

.form-item__name {
    font-size: 1rem;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-item .form-item__input {
	border: 1px solid var(--color-gray);
	background: white;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 400;
	color: var(--text);
	padding: 18px 16px;
	width: 100%;

	margin-bottom: 0;
	height: auto;
	border-radius: initial;
}

.form-item .form-item__input:focus,
.form-item .form-item__input:not(:placeholder-shown) {
	border-color: var(--color-gray);
}

.form-item__text {
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.25;
	margin-top: 5px;
	display: none;
}

.form-item._center {
	text-align: center;
}

.form-item._error .form-item__input {
	border-color: var(--color-red-weight) !important;
}

.form-item._error .form-item__text {
	display: block;
}

.form-item._error .pinlogin-field {
	border-color: var(--color-red-weight);
}

.color-red,
.error-text {
	color: var(--color-red-weight);
}

/*end common*/
/*login and registration*/
.auth-item {
	margin-bottom: 12px;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.25;
}

.auth-item__link {
	background-color: transparent;
	border-radius: 0;
	font-size: inherit;
	font-family: inherit;
	width: 100%;
	cursor: pointer;
	border: 1px solid var(--color-light-gray);
	padding: 16px 18px;
	padding-right: 48px;
	position: relative;
	align-items: center;
	color: var(--text);
}

.auth-item__link:hover {
	border-color: var(--color-gray);
	color: initial;
}

.auth-item__link::before {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	right: 18px;
	top: calc(50% - 10px);
	background-size: contain;
	background-image: url("/local/templates/luisawang/css/./img/icon/arrow-black-right.svg");
}

.auth-item__icon {
	display: block;
	margin-right: 12px;
	width: 24px;
	height: 24px;
	background-size: contain;
}

.auth-item__icon._vk {
	background-image: url("/local/templates/luisawang/css/./img/icon/vk.svg");
}

.auth-item__icon._yandex {
	background-image: url("/local/templates/luisawang/css/./img/icon/yandex_red.svg");
}

.auth-item__icon._tinkoff {
	background-image: url("/local/templates/luisawang/css/./img/icon/tinkoff.svg");
}

.auth-item__icon._phone {
	background-image: url("/local/templates/luisawang/css/./img/icon/phone-stroke.svg");
	background-size: 20px auto;
}

.auth-item__icon._email {
	background-image: url("/local/templates/luisawang/css/./img/icon/email.svg");
}

.btn-black.form__submit {
	background-color: var(--color-black);
	border: 1px solid var(--color-black);
	color: #fff;

	margin-bottom: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 2px;
	cursor: pointer;
	height: 50px;
	text-transform: uppercase;
	display: flex;
	padding: 0 30px;
	justify-content: center;
	align-items: center;
	user-select: none;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.btn-black.form__submit:hover {
	background-color: var(--color-gray);
	border-color: var(--color-gray);
}


.pinlogin {
	display: flex;
	justify-content: center;
}

.pinlogin .pinlogin-field {
	width: 50px;
	height: 50px;
	border: 1px solid var(--color-black);
	background: transparent;
	text-align: center;
	margin: 0 6px;
	font-size: 20px;
	line-height: 28px;
	color: var(--text);
	font-family: inherit;
}

.pinlogin .pinlogin-field:focus,
.pinlogin .pinlogin-field:not(:placeholder-shown) {
	border-color: var(--color-black);
}

.timer {
	margin-top: 24px;
	font-size: 1rem;
	font-weight: 400;
	margin-bottom: -16px;
}

.timer__text {
    font-size: 16px;
    font-weight: 400;
    color: #78716C;
    text-transform: uppercase;
	display: none;
}

.timer._active .timer__text {
	display: block;
}

.timer._active .timer__link {
	display: none;
}

.last-number {
	display: inline-block;
	color: var(--color-brown);
	margin-left: 4px;
	padding: 0 3px;
	border: 1px solid var(--color-brown);
}

.page-product-btn-plus yandex-pay-badge {
	width: 100%;
}

/*end login and registration*/
@media screen and (max-width: 576px) {
	.close-button {
		width: 40px;
		height: 40px;
	}

	.btn-link {
		font-size: 0.875rem;
		letter-spacing: 1px;
	}

	.side-popup {
		right: -100vw;
		width: 100vw;
		max-width: 100vw;
	}

	.side-popup__header {
		padding: 14px 16px;
		margin-bottom: 0;
		/* padding: 18px 40px 18px 20px; */
		/* margin-bottom: 20px;
		border-bottom: 1px solid var(--color-light-gray); */
	}

	.side-popup .form {
		padding-top: 0;
	}

	.side-popup__text {
		font-size: 14px;
	}
	
	.side-popup__main {
		padding: 0 16px 30px;
	}

	.side-popup__title {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: normal;
        line-height: 20px;
	}

	.side-popup__close {
		right: 10px;
		top: 10px;
	}

	.form__button {
		margin-top: 20px;
	}

	.form-item .form-item__input {
		padding: 13px 16px;
	}

	.pinlogin .pinlogin-field {
		width: 46px;
		height: 46px;
		font-size: 1.25rem;
	}

}





@media screen and (max-width: 1900px) {
	.page-product-btn-slice {
		/* flex-direction: row; */
		/* justify-content: flex-start; */
		gap: 5px;
	}

	.page-product-btn-slice__left-wrapp {
		white-space: nowrap;
		color: var(--color-gray) !important;
		font-weight: 400;
	}
}


@media screen and (max-width: 1800px) {
	.page-product__left {
		width: 1000px;
		flex: 0 0 1000px;
	}

	.swiper-page-product__item {
		height: 695px;
	}
}

@media screen and (max-width: 1700px) {
	.menu__list {
		gap: 30px;
	}

	.filter-item__title {
		font-size: 14px;
	}

	.menu__link {
		font-size: 14px;
	}

	.header-main__personal {
		gap: 20px;
	}

	.menu__child-row {
		gap: 50px;
	}

	.menu__child-products .product-card {
		width: 250px;
	}

	.menu__child-products .product-card__wr {
		height: 300px;
	}

	.section-hybrid__pic {
		flex: 0 0 520px;
		height: 500px;
	}

	.section-inspiration__item {
		width: 270px;
		height: 270px;
	}

	.section-inspiration__right {
		height: 564px;
	}

	/* .main-slider__content {
		top: 300px;
	} */
}

@media screen and (max-width: 1605px) {
	.page-product__btn.btn-black.js-cart-unavailable {
		padding: 0 5px;
		font-size: 14px;
	}

	.catalog-page-filters__pc {
		gap: 0px 20px;
	}
}

@media screen and (max-width: 1520px) {

	.page-product__left {
		width: 900px;
		flex: 0 0 900px;
	}
}

@media screen and (max-width: 1520px) {
	.product-card__btn {
		font-size: 0.8vw;
		padding: 0 5px;
	}

	.footer__menu {
		width: 140px;
	}

	.modal-delivery-map {
		max-width: 900px;
	}

	.reviews__right {
		flex: 0 0 50%;
	}
}

@media screen and (max-width: 1500px) {
	.catalog-custom-menu {
		width: 300px;
	}

	.catalog-custom-menu__link,
	.catalog-custom-menu__item-child-link,
	.catalog-custom-menu__child-two-item-link {
		font-size: 14px;
	}
}



@media screen and (max-width: 1400px) {
	.main-catalog-section-block .product-card__wr {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		height: 100%;
		justify-content: space-between;
	}

	.main-catalog-section-block .catalog-page-products .product-card__option {
		margin-bottom: 0;
	}

	.main-catalog-section-block .catalog-page-products .product-card__hover {
		overflow: hidden;
	}

	.filter-item__title {
		font-size: 12px;
	}

	.page-product__left {
		width: 100%;
		flex: 0 0 60%;
	}

	.product-card__option {
		opacity: 1;
		position: relative;
		visibility: visible;
	}

	.container,
	.section-product .container {
		padding: 0 20px;
	}

	.menu__list {
		gap: 20px;
	}

	.menu__link {
		font-size: 12px;
	}

	.menu__child-products .product-card {
		width: 200px;
	}

	.menu__child-products .product-card__wr {
		height: 250px;
	}

	.article-card__pic {
		height: 350px;
	}

	.footer__right {
		gap: 50px;
		padding-right: 80px;
	}

	/* .section-about__pic {
		flex: 0 0 650px;
		height: 525px;
	} */

	.popular-product-slider__pic {
		height: 225px;
	}



	.section-total-look__grid {
		grid-template-columns: repeat(2, 285px);
	}

	.section-inspiration__item {
		width: 230px;
		height: 270px;
	}
}

@media screen and (max-width: 1200px) {
	.product-card__btn {
		font-size: 10px;
		padding: 0 5px;
	}

	.page-product__left {
		flex: 0 0 50%;
	}

	.filter-item__title::after {
		width: 8px;
	}
}

@media screen and (max-width: 1150px) {
	.catalog-page-filters__pc {
		gap: 0px 8px;
	}

	.filter-item__title {
		font-size: 10px;
	}
}

@media screen and (max-width: 992px) {
	.catalog-page-filters__pc {
		display: none;
	}

	.catalog-page-filters__mobile {
		display: flex;
		justify-content: space-between;
		margin-bottom: 20px;
	}

	.catalog-custom-menu {
		width: auto;
		position: static;
		margin-bottom: 0;
	}

	.catalog-page__left {
		/* display: none; */
		padding: 0 20px;
		z-index: 105;
		background: #fff;
		margin-bottom: 0;
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		overflow-y: scroll;
		overflow-x: auto;
		visibility: hidden;
		opacity: 0;
		transform: translateX(100px);
		transition: all 0.2s ease-in-out;
	}

	.menu-catalog__left-mobile {
		display: block;
		margin: 24px 0;
	}

	.catalog-custom-menu__link {
		padding: 16px 12px;
		font-size: 18px;
	}

	.catalog-custom-menu__count {
		display: none;
	}

	.catalog-custom-menu__item-child-link {
		font-size: 16px;
		padding: 14px 20px 14px 20px;
		color: #6F6F6F;
	}

	.menu-catalog__left-mobile button {
		width: 100%;
	}

	.menu-mobile__show {
		visibility: visible;
		opacity: 1;
		transform: translateX(0px);
		transition: all 0.2s ease-in-out;
	}

	.catalog-page-filters,
	.catalog-page-filters-mobile {
		border: none;
		margin-bottom: 0;
		top: 60px;
		padding: 12px 20px;
		margin: 0 -20px;
	}

	.catalog-page-filter-items__scroll {
		display: block;
		overflow-x: scroll;
	}

	.catalog-page-filter-items__list {
		width: max-content;
		padding-left: 130px;
	}

	.catalog-page-filter-items__clear {
		display: flex;
	}

	.catalog-page-products {
		padding-top: 10px;
		gap: 20px 10px;
	}

	.catalog-custom-menu {
		overflow-y: hidden;
		height: auto;
	}

	.catalog-page-filter-items__item.catalog-filter-item-desktop {
		display: none;
	}

	.catalog-page-filter-items__item.catalog-filter-mobile-item {
		display: flex;
	}

	.modal-sidebar__right {
		position: absolute;
		z-index: 11;
		background-color: #fff;
		width: 100%;
		top: 0;
		left: 0;
	}

	.catalog-page-filter-items__item-clear {
		display: none;
	}

	.page-product-btn-slice {
		flex-direction: row;
		justify-content: space-between;
	}

	.modal-delivery-map .modal-sidebar__header {
		display: none;
	}

	.modal-delivery-map .page-product-delivery__title {
		display: none;
	}

	.modal-delivery-map {
		height: 100% !important;
		top: 0 !important;
		bottom: initial !important;
		overflow-x: auto;
		overflow-y: scroll;
	}

	.modal-sidebar__right {
		padding: 0;
	}

	.modal-delivery-map .modal-sidebar__body {
		margin: 0;
		padding-right: 0;
		padding: 0 20px;
		height: 100%;
		padding-top: 80px;
	}

	.modal-delivery-map__mobile-header {
		display: flex;
	}

	.modal-delivery-map .modal-delivery-map__search {
		display: block;
	}

	.modal-sidebar__right {
		display: none;
	}

	.modal-sidebar__map {
		margin: 0 -20px;
		width: calc(100% + 40px);
	}

	.modal-sidebar__map #map {
		height: 103%;
	}

	.page-sharing {
		margin-top: 7px;
	}

	.fancybox-thumbs {
		width: 80vw;
	}

	.swiper-page-product__item {
		height: 570px;
	}

	body {
		min-width: auto;
	}

	.product-card__btn {
		font-size: 13px;
	}

	.section-about__wr {
		grid-template-columns: 1fr;
	}

	.header-main {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
	}

	.header-main__logo-icon {
		width: 75px;
	}

	.mobile-menu-bottom {
		display: block;
	}

	.top-bar {
		padding: 0;
	}

	.top-bar__col {
		display: none;
	}

	.your-city {
		position: fixed;
		bottom: 0;
		top: inherit;
		z-index: 101;
		width: 100%;
		left: 0;
	}

	/* .header-main {
		padding: 20px 0;
	} */

	.menu {
		display: none;
	}

	.personal-wishlist {
		display: none;
	}

	.personal-user {
		display: none;
	}

	.personal-cart {
		display: none;
	}

	.sidebar-city {
		max-width: 100%;
	}

	.mobile-btn {
		display: block;
		position: relative;
		top: 2px;
	}

	.sidebar-city {
		padding: 20px;
	}

	.sidebar-city__close {
		top: 21px;
		right: 24px;
	}

	.product-card__img-wr {
		padding: 0;
	}

	.product-card__discount {
		top: 4px;
		left: 4px;
		font-size: 12px;
		height: 20px;
		padding: 0 4px;
	}

	.product-card__favorite {
		top: 6px;
		right: 4px;
	}

	.product-card__title {
		font-size: 14px;
		margin-bottom: 8px;
	}

	.product-card__price {
		font-size: 14px;
	}

	.product-card__price-old {
		font-size: 10px;
	}

	.product-card__settings {
		padding-left: 0;
		padding-right: 0;
		padding-top: 8px;
	}

	.product-card__pagination {
		opacity: 1;
		visibility: visible;
		padding: 0 4px;
	}

	.product-card__pagination-item::after {
		top: auto;
		bottom: 3px;
	}

	.section-article {
		margin-bottom: 20px;
	}

	.article-card__pic {
		height: 270px;
	}

	.footer__row {
		flex-direction: column-reverse;
		gap: 32px;
	}

	.footer__bottom {
		padding: 32px 0 80px;
	}

	.section-about__wr {
		flex-direction: column;
	}

	.section-about__content .section-title {
		display: none;
	}

	.section-about__mobile-title {
		display: block;
	}

	.section-about__wr {
		gap: 16px;
	}

	.section-about__pic {
		height: auto;
		flex: 0 0 auto;
	}

	.section-product__btns {
		margin-bottom: 80px;
	}

	.product-card__title {
		padding: 0;
	}

	.product-card__prices {
		padding: 0;
		display: flex;
	}

	.section-total-look__row {
		flex-direction: column;
	}

	.section-total-look__grid {
		margin: 0;
	}

	.section-total-look__grid,
	.section-total-look .section-total-look__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 20px;
	}

	.section-total-look__mobile-scroll {
		overflow-x: auto;
	}

	.section-total-look__tabs {
		width: max-content;
	}

	.section-total-look__main-pic {
		height: auto;
	}

	.section {
		margin-bottom: 80px;
	}

	.section-product-2 .swiper-wrapper {
		margin-bottom: 80px;
	}

	.section-hybrid__row {
		flex-direction: column;
	}

	.section-hybrid .section-product__inner {
		margin: 0;
	}

	.section-hybrid__pic {
		flex: auto;
		height: auto;
	}

	.section-hybrid .section-product__btns {
		margin-bottom: 0;
	}

	.section-inspiration .section__link {
		display: none;
	}

	.swiper-inspiration .swiper-scrollbar {
		display: block;
	}

	.section-inspiration__btns {
		display: block;
		margin-top: 24px;
	}

	.section-inspiration__btn {
		width: max-content;
		margin: 0 auto;
	}

	.main-slider__title {
		font-size: 36px;
		/* margin-bottom: 8px; */
	}

	.main-slider__sub-title {
		font-size: 18px;
		margin-bottom: 24px;
		max-width: 500px;
	}

	/* .main-slider__content {
		top: 125px;
	} */

	.main-slider__item {
		/* height: 500px; */
		min-height: auto;
	}

	/* .main-slider__item-wr {
		position: absolute;
		height: 100%;
		width: 100%;
	} */

	.swiper-navigation {
		display: none;
	}

	.main-slider {
		margin-top: 0;
	}
}

@media screen and (max-width: 770px) {

	.catalog-title__h1 {
		font-size: 38px;
	}

	.breadcrumbs-product .breadcrumbs__link {
		white-space: nowrap;
	}

	.catalog-page-products {
		grid-template-columns: repeat(2, 1fr);
	}

	.reviews__filters .filter-item {
		display: none;
	}

	.reviews__filters .catalog-page-filters__mobile-item {
		display: block;
		font-size: 14px;
		text-transform: uppercase;
	}

	.reviews-sort .radio__text {
		text-transform: uppercase;
		font-size: 14px;
		font-weight: 500;
	}

	.modal-sidebar__title {
		text-transform: none;
		letter-spacing: 0;
	}

	.reviews__rating-block-btns-mobile {
		display: block;
	}

	.reviews__rating-block-btns-mobile .reviews__rating-block-btn {
		width: 100%;
	}

	/* .bx-lusio .main-product {
		border-top: 1px solid #D1D1D3;
	} */
	.page-product-size__item {
		width: 70px;
		height: 52px;
	}

	/* .breadcrumbs-product {
		display: none;
	} */
	.bx-lusio .main-product {
		margin-top: -72px;
	}

	.page-product {
		gap: 24px;
	}

	.page-product-price__new {
		font-size: 20px;
	}

	.send_subscription {
		height: auto;
		overflow: hidden;
		padding: 0;
		bottom: 0;
		top: auto;
		max-width: 100%;
		transition: none;
	}

	.send_subscription .modal-sidebar__header {
		padding: 18px 20px;
		margin: 0;
	}

	.send_subscription .modal-sidebar__body {
		padding: 16px 20px;
	}

	.reviews__filter-photo-text-mobile {
		display: block;
		font-weight: 500;
	}

	/* .modal-sidebar {
		padding: 20px;
	} */
	.modile-hide-br {
		display: block;
	}

	.desktop-hide-br {
		display: none;
	}

	.main-product .product-card__pagination {
		display: none;
	}

	.page-product-item__btn {
		width: 100%;
	}

	.delivery-table tbody tr td:nth-child(2) {
		display: flex;
		flex-direction: row-reverse;
		gap: 8px;
		width: 100%;
	}

	.mobile-hide {
		display: none;
	}

	.delivery-mode {
		display: block;
	}

	.delivery-table thead {
		display: none;
	}

	.main-product .swiper-wrapper-list-section {
		margin-bottom: 48px;
	}

	.section__count {
		font-size: 16px;
	}

	.page-product-title__h1 {
		font-size: 20px;
	}

	.reviews__rating-block-left {
		flex: auto;
		border-right: 0;
		flex-direction: row;
	}

	.reviews__rating-block-reviews {
		margin-bottom: 0;
	}

	.reviews__rating-block-count {
		margin-bottom: 0;
		font-size: 24px;
	}

	.reviews__rating-block {
		padding: 24px;
	}

	.page-product__back {
		display: block;
	}

	.section-product .section-product__btns {
		margin-bottom: 40px;
	}

	.popular-product-slider__pic {
		height: 240px;
	}

	.product-card__option {
		display: none;
	}

	.your-city {
		padding: 20px;
		z-index: 100000000000;
	}

	.your-city__close {
		right: 20px;
		top: 22px;
	}

	.section-article {
		margin-bottom: 0 !important;
	}

	.section-title {
		font-size: 34px;
		line-height: normal;
	}

	.section__wr {
		margin-bottom: 24px;
	}

	.article-card__title {
		font-size: 18px;
	}

	.popular-product-slider__pic {
		height: 180px;
	}

	.section-total-look__row {
		gap: 16px;
	}

	.main {
		padding: 48px 0;
	}

	.section-product-2 .swiper-wrapper {
		margin-bottom: 48px;
	}

	.section {
		margin-bottom: 48px;
	}

	.section-hybrid__row {
		gap: 16px;
	}

	.section-hybrid .swiper-slide {
		width: 164px;
	}

	.section-inspiration__item {
		width: 164px;
		height: 164px;
	}

	.section-inspiration__grid {
		gap: 8px;
		margin-right: 8px;
	}

	.section-inspiration__col {
		gap: 8px;
	}

	.section-inspiration__row {
		gap: 8px;
	}

	.section-inspiration__item-text {
		padding: 12px;
	}

	.section-inspiration__item-p {
		font-size: 14px;
	}

	.section-inspiration__right {
		height: 336px;
	}

	.main-slider .swiper-top-banner-pagination {
		bottom: 14px;
	}

	.main-slider .swiper-pagination-bullet {
		height: 3px;
	}

	.main-slider__title {
		font-size: 24px;
	}

	.main-slider__sub-title {
		font-size: 16px;
	}

	.main-slider__btn {
		height: 46px;
		font-size: 14px;
	}

	.main-slider__content {
		top: inherit;
		bottom: 40px;
	}
}

@media screen and (max-width: 576px) {
	.catalog-title__h1 {
		font-size: 28px;
	}

	.catalog-page-bottom__desc {
		font-size: 14px;
		margin-bottom: 16px;
	}

	.catalog-page-bottom__btn {
		width: 100%;
		height: 46px;
		font-size: 14px;
		margin: 0 auto 24px auto;
	}

	#reviews {
		padding: 20px;
		max-width: 100%;
	}

	#reviews.send_subscription {
		padding: 0;
	}

	.modal-sidebar__close img {
		width: 12px;
	}

	.section-total-look .product-card__settings {
		display: none;
	}

	.section__bottom-best .swiper-wrapper-list-section,
	.section__bottom-min .swiper-wrapper-list-section {
		margin-bottom: 48px;
	}

	.section-total-look__grid,
	.section-total-look .section-total-look__grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 16px 20px;
	}

	.product-slider-hybrid,
	.section-product .section-product__inner {
		padding: 0;
	}

	.your-city__name {
		font-size: 18px;
	}

	.sidebar-city__title {
		font-weight: 500;
		text-transform: inherit;
		border-bottom: 1px solid rgb(209, 209, 211);
		padding-bottom: 18px;
		padding-left: 20px;
		padding-right: 20px;
		margin: 0 -20px;
		margin-bottom: 18px;
	}

	.sidebar-city__input {
		padding: 14px 13px;
	}

	.sidebar-city__list {
		grid-template-columns: repeat(1, 1fr);
	}

	.sidebar-city__input-clear {
		right: 13px;
	}

	.section-title {
		font-size: 24px;
		line-height: normal;
	}

	.section__arrows {
		display: none;
	}

	.article-card__pic {
		height: 182px;
	}

	.footer__top {
		padding: 24px 0;
	}

	.footer__right {
		display: flex;
		flex-direction: column;
		gap: 16px;
		padding-right: 0;
	}

	.footer__menu {
		padding-bottom: 16px;
		border-bottom: 1px solid rgb(209, 209, 211);
		width: 100%;
	}

	.footer__menu-title {
		margin-bottom: 0;
		font-size: 18px;
		font-weight: 400;
		position: relative;
	}

	.footer__menu-title::after {
		content: "";
		width: 14px;
		height: 14px;
		background-image: url(/local/templates/luisawang/css/img/icon/plus.svg);
		background-repeat: no-repeat;
		background-size: contain;
		display: inline-block;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	/* .footer__menu-active .footer__menu-title::after {
		background-image: url(/local/templates/luisawang/css/img/icon/minus.svg);
		height: 2px;
	} */

	.footer__menu-active .footer__menu-list {
		display: flex;
	}

	.footer__menu-list {
		display: none;
		margin-top: 16px;
	}

	.footer .block-questions__title {
		font-size: 18px;
	}

	.block-subscription__title {
		font-size: 18px;
	}

	.block-subscription {
		margin-bottom: 32px;
	}

	.footer .block-questions__btn {
		height: 40px;
	}

	.block-subscription__input {
		flex: 1 1 auto;
	}

	.footer__row-bottom {
		flex-direction: column-reverse;
	}

	.footer__inf {
		text-align: center;
	}

	.section-about__sub-title {
		font-size: 16px;
		margin-bottom: 16px;
	}

	.section-about__circle {
		flex: 0 0 32px;
		height: 32px;
	}

	.section-about__items {
		margin-bottom: 24px;
	}

	.section-about__item {
		gap: 12px;
	}

	.section-about__icon {
		height: 17px;
	}

	.section-about__text {
		margin-top: 0;
	}

	.section-about__title {
		font-size: 22px;
		margin-bottom: 4px;
	}

	.section-about__desc {
		font-size: 16px;
	}

	.section-about__btn {
		width: 100%;
	}

	.btn-white,
	.btn-black {
		height: 46px;
		font-size: 14px;
	}

	.popular-product-slider__pic {
		height: 180px;
	}

	.popular-product-slider__pic {
		margin-bottom: 8px;
	}

	.popular-product-slider__name {
		font-size: 14px;
	}

	.product-slider .swiper-slide {
		width: 164px;
	}

	.product-slider .product-card__img-wr {
		height: 218px;
	}

	.section-product__btns {
		margin-top: 30px;
		margin-bottom: 48px;
	}

	.section-product__btn {
		width: 100%;
		height: 46px;
		font-size: 14px;
	}

	.section-total-look__tabs {
		margin-bottom: 24px;
	}

	.section-total-look__tab {
		font-size: 14px;
		height: 46px;
		padding: 0 24px;
	}

	.section-total-look__row .product-card__discount {
		display: none;
	}

	.section-total-look__grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 16px;
	}

	.section-total-look__grid .product-card__wr {
		display: flex;
		gap: 16px;
		align-items: center;
	}

	.section-total-look__grid .product-card__img-wr {
		width: 64px;
		height: 80px;
		margin-bottom: 0;
		position: initial;
		flex-shrink: 0;
	}

	.section-total-look__grid .product-card__inf {
		margin-right: 40px;
	}

	.section-total-look__grid .product-card__pagination {
		display: none;
	}

	.section-total-look__grid .product-card__favorite {
		right: 0;
	}

	.section-total-look__grid .product-card__settings {
		display: none;
	}

	.section-total-look__grid .product-card__title {
		white-space: unset;
	}

	.section-inspiration__btn {
		height: 46px;
		font-size: 14px;
		width: 100%;
	}

	.main-slider .swiper-top-banner-pagination {
		justify-content: space-between;
		padding: 0 60px;
	}

	.main-slider .swiper-pagination-bullet {
		width: auto;
		flex: auto;
	}

	.main-slider__btn {
		width: 100%;
	}

	.main-slider__item-wr {
		/* position: absolute;
		height: 100%;
		width: 100%;
		left: 0;
		right: 0; */
	}

	.main-slider__content {
		width: 100%;
		text-align: center;
		padding: 0 20px;
	}

	.main-slider__pc {
		display: none;
	}

	.main-slider__mobile {
		display: block;
	}
}

@media screen and (max-width: 440px) {
	body {
		min-width: 370px;
	}

	.popular-product-slider__pic {
		height: 125px;
	}
}

/*fix styles*/
.modal-delivery-map__item:last-child {
	border-bottom: none;
}

/*map styles*/
.map-point {
	position: relative;
	width: 34px;
	height: 44px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform: translate(-50%, -50%);
}

.map-point._disabled {
	opacity: 0.2;
}

.modal-delivery-map__name,
.delivery-table__name {
	cursor: pointer;
	transition: color 0.3s ease-in-out;
}

.modal-delivery-map__name:hover,
.delivery-table__name:hover {
	color: var(--color-brown);
}

.modal-delivery-map__name._active::after {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background-color: var(--color-brown);
	display: inline-block;
	vertical-align: middle;
}

/*bottom popup: перенести*/
.close-button {
	border: none;
	background-color: transparent;
	padding: 0;
	border-radius: 0;
	color: inherit;
	display: flex;
	flex-wrap: wrap;
	width: 20px;
	height: 20px;
	text-align: center;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.bottom-popup {
	position: fixed;
	bottom: -50%;
	z-index: 110;
	width: 100%;
	left: 0;
	max-height: 50%;
	overflow: auto;
	background-color: white;
	color: var(--text);
	box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
	transition: bottom 0.5s ease-in-out;
	padding: 20px;
}

.bottom-popup .modal-delivery-map__name._active::after {
	content: none;
}

.bottom-popup._active {
	bottom: 0;
}

.bottom-popup__close {
	position: absolute;
	right: 7px;
	top: 7px;
}

.basket-item-property.d-none-property {
	display: none;
}

@media screen and (min-width: 993px) {
	#popup-mob-shop {
		display: none;
	}
}

@media screen and (max-width: 992px) {
	.close-button {
		width: 40px;
		height: 40px;
	}
}

/*fix old styles for header*/
.search-link.personal-search svg path {
	fill: unset;
}

.main-catalog-section-top-wrapper.stuck {
	top: 96px;
}

#digi-shield {
	--damnhigh: 102 !important;
}

.digi-instant-search {
	z-index: -1;
	visibility: hidden;
}

.mobile-menu .socials .footer-social__item {
	margin: 0;
}

.workarea .indx_main {
	margin-top: 0;
}

.header-main._sticky {
	position: sticky;
}

.mobile-menu__close,
.mobile-catalog__close {
	display: block;
	line-height: 0;
	height: 20px;
	width: 20px;
	text-align: center;
	padding-top: 3px;
	cursor: pointer;
}

.footer {
	font-size: var(--regular-text);
	line-height: normal;
	font-family: var(--userfont);
	font-weight: 400;
	color: var(--text);
}

.footer input:not([class^="bx-"]),
textarea,
select {
	height: 50px;
}

.block-subscription .block-subscription__input {
	margin-bottom: 0;
}

.block-subscription .block-subscription__input-error {
	border-color: var(--color-red);
}

.footer .subscribe-form__form_inner {
	display: flex;
	gap: 10px;
}

.subscribe-form__real {
	margin-bottom: 20px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	content: none;
}

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

.product-card__sizes {
	margin-bottom: 0;
}

/* .product-card__sizes {
	display: none;
} */

.product-card__sizes._active {
	display: flex;
}

.input-custom .input-error {
	display: none;
}

.input-custom.input-custom__error .input-error {
	display: block;
}

.input-custom .input-custom__input {
	margin-bottom: 0;
}

.modal-delivery-map__mobile-header-back img {
	vertical-align: middle;
}

.modal-delivery-map__search .modal-delivery-map__search-input {
	margin-bottom: 0;
}

.catalog-page-filter-items__del {
	display: flex;
}

.product-card__two-column .product-card__img {
	object-position: top;
}

.loader {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	background: #0000002b;
}

@media screen and (min-width: 993px) {
	.subscribe-form__real {
		margin-right: 20px;
	}
}

@media screen and (max-width: 992px) {
	.catalog-page-filter-items__item-active .catalog-page-filter-items__del {
		display: flex;
	}

	.catalog-page-filters::after,
	.catalog-page-filters-mobile::after {
		display: none;
	}

	.catalog-page-filter-items__del {
		display: flex;
	}

	.header-catalog {
		border-bottom: 1px solid rgb(209, 209, 211);
		position: sticky;
	}


	.mobile-catalog-page__left-header {
		display: flex;
	}


	.main-product .btn-black {
		font-size: 14px;
		height: 46px;
	}

	.main-product .page-product-favorite {
		flex: 0 0 46px;
		height: 46px;
	}

	.main-product .page-product-favorite svg {
		width: 18px;
	}

	/* .bx-lusio .main-product {
		margin-top: -70px;
	} */
	.swiper-page-product .swiper-pagination {
		display: flex;
	}

	.swiper-page-product .swiper-pagination .swiper-pagination-bullet {
		border-radius: 0;
	}

	.swiper-page-product .swiper-wrapper {
		display: flex;
		gap: 0;
	}

	.main-catalog-section-top-wrapper.stuck {
		top: 68px;
	}

	.product-card__option {
		padding: 0 0 12px 0;
	}

	.modal-sidebar__map {
		margin: 0;
	}

	.modal-delivery-map .modal-sidebar__body {
		min-height: 100vh;
	}

	.page-sharing__body {
		z-index: 102;
		left: auto;
	}
}

@media screen and (max-width: 500px) {

	.main-product .page-product__btn,
	.modal-sidebar .page-product__btn {
		padding: 0 10px;
	}

	.modile-hide-br {
		display: none;
	}

	.page-product-item__body .modal-table tr td {
		padding-right: 10px;
	}
}

@media screen and (max-width: 410px) {

	.main-product .page-product__btn,
	.modal-sidebar .page-product__btn {
		font-size: 12px;
		gap: 6px;
	}

	.main-product .page-product__btn img,
	.modal-sidebar .page-product__btn img {
		width: 13px;
	}
}

@media screen and (max-width: 360px) {

	.main-product .page-product__btn,
	.modal-sidebar .page-product__btn {
		font-size: 10px;
	}
}

.ui-widget.ui-widget-content {
	background: #D1D1D4;
	height: 2px;
	border: none;
}

.ui-slider-horizontal .ui-slider-range {
	height: 100%;
	background-color: #262626;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
	background: #262626;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: none;
	top: -0.7em;
}

.main-product #frisbuy-widget {
	margin: 0 0 160px 0;
}

@media screen and (max-width: 767px) {
	.product-card__img-top {
		padding-top: 150%;
	}

	.breadcrumbs {
		overflow: auto;
	}

	.main-product #frisbuy-widget {
		margin: 0 0 70px 0;
	}
}



@media screen and (max-width: 576px) {

	.page-product-btn-slice {
		flex-direction: row;
		justify-content: center;
		gap: 0;
	}
}

/*@media screen and (max-width: 576px) {
	.swiper-page-product__item {
        height: 700px;
    }
}*/

.splitWidget-wrapper {
	padding: 0;
}

.address-error {
	font-family: 'SF-PRO';
	font-size: 16px;
	color: red;
	margin-top: 10px;
	font-weight: 500;
}


.swiper-page-product__item video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}


.wrapper .note-asterisk {
	color: var(--Error-80, #f04438);
}

/* .wrapper input {
	outline: none;
}

.wrapper input::-webkit-input-placeholder {
	color: var(--Gray-50, #a5a5a5);
}

.wrapper input::-moz-placeholder {
	color: var(--Gray-50, #a5a5a5);
}

.wrapper input:-ms-input-placeholder {
	color: var(--Gray-50, #a5a5a5);
}

.wrapper input::-ms-input-placeholder {
	color: var(--Gray-50, #a5a5a5);
}

.wrapper input::placeholder {
	color: var(--Gray-50, #a5a5a5);
} */

.main-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 80px;
	max-width: 1100px;
	padding: 32px 0;
	margin: 0 auto;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}


.main-container__heading-empty-cart {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 0 24px 0;
}

.main-container__heading-text__data {
	text-align: center;
	font-family: "SF Pro Display";
}

.main-container__heading-text__data a {
	text-decoration: underline !important;
	text-underline-offset: 3px;
}


.main-container__heading-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
}

.main-container__heading-text__title {
	color: var(--gray-80, #262626);
	text-align: center;
	font-size: 36px;
	font-weight: 500;
	line-height: 40px;
}

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

.content-data {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 560px;
	width: 100%;
}

.content-data__contacts {
	padding-bottom: 48px;
	border-bottom: 1px solid var(--Gray-40, #d1d1d3);
}

.content-data__contacts-container,
.content-data__obtain-container,
.content-data__pay-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 32px;
}

.content-data__obtain-container {
	display: none;
}

.content-data__obtain,
.content-data__pay {
	padding: 48px 0;
	border-bottom: 1px solid var(--Gray-40, #d1d1d3);
}

.content-data__contacts-title,
.content-data__obtain-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
}

.content-data__contacts-title__text,
.content-data__obtain-title__text {
	color: var(--Gray-80, #262626);
	font-size: 24px;

	font-weight: 500;
	line-height: 28px;
}

.content-data__contacts-title__note,
.content-data__obtain-title__note {
	color: var(--Gray-60, #6f6f6f);
	font-size: 16px;
}

.content-data__contacts-fields,
.content-data__obtain-fields {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
}

.content-data__contacts-fields__row,
.content-data__obtain-fields__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
}

.content-data__contacts-fields__item,
.content-data__obtain-fields__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}

.content-data__contacts-fields__item label,
.content-data__obtain-fields label {
	color: var(--Gray-80, #262626);
	font-size: 16px;

	font-weight: 500;
}

.content-data__contacts-fields__item-input,
.content-data__obtain-fields__item-input {
	padding: 18px 16px;
	max-width: 270px;
	border: 1px solid var(--Gray-60, #6f6f6f);
	font-size: 16px;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.content-data__contacts-fields__item-input:hover,
.content-data__obtain-fields__item-input:hover {
	border: 1px solid var(--Gray-50, #a5a5a5);
	cursor: pointer;
}

.content-data__contacts-fields__item-input:focus,
.content-data__obtain-fields__item-input:focus {
	border: 1px solid var(--Gray-80, #262626);
}

.content-data__contacts-fields__item-subtitle,
.content-data__obtain-fields__item-subtitle {
	color: var(--Gray-60, #6f6f6f);
	font-size: 14px;
	line-height: 18px;
}

.content-data__contacts-fields__item-subtitle__error,
.content-data__obtain-fields__item-subtitle__error {
	display: none;
	color: var(--Error-80, #f04438);
	font-size: 14px;
}

.content-data__contacts-btn button,
.content-data__obtain-btn button {
	width: 100%;
	padding: 18px 0;
	border: none;
	color: var(--White-100, var(--Default-White-100, #fff));
	background: var(--Gray-80, #262626);
	text-align: center;
	font-size: 18px;

	font-weight: 500;
	letter-spacing: 2.7px;
	text-transform: uppercase;
	cursor: pointer;
}

.content-data__contacts-filled,
.content-data__obtain-filled {
	display: none;
	-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;
	gap: 32px;
}

.content-data__contacts-filled .content-data__contacts-title__text,
.content-data__obtain-filled .content-data__obtain-title__text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
}

.content-data__contacts-filled__container,
.content-data__obtain-filled__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 24px;
	background: var(--Gray-10, #fafafa);
}

.content-data__contacts-filled__container-data {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
	color: var(--Gray-80, #262626);
	font-size: 16px;
}

.content-data__contacts-filled__container-change,
.content-data__obtain-filled__container-change {
	text-align: center;
	font-size: 16px;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.content-data__contacts-filled__container-change__btn,
.content-data__obtain-filled__container-change__btn {
	cursor: pointer;
}

.content-data__obtain-fields {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
}

.content-data__obtain-fields__item-selectContainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
}

.content-data__obtain-fields__item-select {
	max-width: 270px;
	padding: 18px 16px;
	border: 1px solid;
	color: var(--Gray-80, #262626);
	font-size: 16px;
	outline: none;
	cursor: pointer;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.content-data__obtain-fields__item-select:hover {
	border: 1px solid var(--Gray-50, #a5a5a5);
}

.content-data__obtain-fields__item-select__output {
	display: none;
	position: absolute;
	top: 70px;
	padding: 16px 8px 16px 16px;
	width: 100%;
	max-width: 270px;
	background: var(--White-100, #fff);
	-webkit-box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
	z-index: 99;
}

.item-select__output-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	padding-right: 8px;
	max-height: 160px;
	overflow-y: auto;
}

.item-select__output-container::-webkit-scrollbar {
	width: 4px;
}

.item-select__output-container::-webkit-scrollbar-thumb {
	width: 4px;
	border-radius: 4px;
	background: var(--Gray-60, #6f6f6f);
}

.item-select__output-container::-webkit-scrollbar-track {
	border-radius: 4px;
	background: var(--Gray-40, #d1d1d3);
}

.content-data__obtain-fields__item-select__output-city {
	color: var(--Gray-80, #262626);
	font-size: 16px;
	cursor: pointer;
}

.obtain-fields__item-select__output-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	padding: 20px;
	z-index: 9999;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	background: var(--White-100, #fff);
}

.output-popup__hidden {
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
}

.content-data__obtain-fields__row.delivery-row {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
}

.obtain-fields__item-select__output-popup__heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
}

.obtain-fields__item-select__output-popup__heading-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.obtain-fields__item-select__output-popup__heading-title h3 {
	color: var(--Gray-80, #262626);
	font-size: 22px;

	font-weight: 500;
	line-height: 26px;
}

.obtain-fields__item-select__output-popup__heading-title img {
	cursor: pointer;
}

.obtain-fields__item-select__output-popup__heading-input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 24px;
	padding: 13px 16px;
	border: 1px solid var(--Gray-80, #262626);
}

.obtain-fields__item-select__output-popup__heading-input input {
	width: 100%;
	border: none;
}

.obtain-fields__item-select__output-popup__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow-y: auto;
}

.obtain-fields__item-select__output-popup__container::-webkit-scrollbar {
	width: 4px;
}

.obtain-fields__item-select__output-popup__container::-webkit-scrollbar-thumb {
	width: 4px;
	border-radius: 4px;
	background: var(--Gray-60, #6f6f6f);
}

.obtain-fields__item-select__output-popup__container::-webkit-scrollbar-track {
	border-radius: 4px;
	background: var(--Gray-40, #d1d1d3);
}

.obtain-fields__item-select__output-popup__city {
	padding: 12px 0;
	padding-right: 28px;
	color: var(--Gray-80, #262626);
	font-size: 16px;
	cursor: pointer;
}

.content-data__obtain-fields__row-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	width: 100%;
}

.obtain-fields__radio-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
	padding: 16px;
	border: 1px solid var(--Gray-40, #d1d1d3);
	cursor: pointer;
}

.obtain-fields__radio-item.active-radio {
	border: 1px solid var(--Gray-60, #6f6f6f);
}

.obtain-fields__radio-item__input {
	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: 20px;
	height: 20px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1.5px solid #000;
	border-radius: 50%;
	position: relative;
	background-color: #fff;
}

.obtain-fields__radio-item__input:checked::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #000;
}

.obtain-fields__radio-item__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
}

.obtain-fields__radio-item__info-date {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
}

.obtain-fields__radio-item__info-date__type {
	color: var(--Gray-80, #262626);
	font-size: 16px;

	font-weight: 500;
}

.obtain-fields__radio-item__info-date__time {
	color: var(--Gray-60, #6f6f6f);
	font-size: 14px;
	line-height: 18px;
}

.obtain-fields__radio-item__info-price {
	color: var(--Gray-80, #262626);
	font-size: 14px;
	line-height: 18px;
}

.content-data__obtain-fields__pickup-output {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
}

.content-data__obtain-fields__pickup-output__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
}

.content-data__obtain-fields__pickup-output__place,
.content-data__obtain-fields__pickup-output__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 2px;
	font-size: 14px;
}

.content-data__obtain-fields__pickup-output__place-name {
	font-size: 16px;
	font-weight: 500;
}

.content-data__obtain-fields__pickup-output__info-price,
.content-data__obtain-fields__pickup-output__info-date {
	color: var(--Gray-60, #6f6f6f);
}

.content-data__obtain-fields__pickup-output__info-price b,
.content-data__obtain-fields__pickup-output__info-date b {
	color: var(--Gray-80, #262626);
}

.content-data__obtain-fields__pickup-output__btn-item {
	margin-top: 8px;
	padding: 13px 25px;
	border: 1px solid var(--Gray-60, #6f6f6f);
	background: var(--White-100, #fff);
	color: var(--Gray-80, #262626);
	text-align: center;
	font-size: 14px;

	font-weight: 500;
	letter-spacing: 2.1px;
	text-transform: uppercase;
	cursor: pointer;
}

.content-data__obtain-fields__courier-output {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
}

.courier-output__address {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
}

.courier-output__address-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
}

.courier-output__address-item .content-data__obtain-fields__item-input {
	max-width: 100%;
}

.courier-output__address-item.address-size {
	width: 100%;
}

.courier-output__address-item.apartment-size {
	max-width: 130px;
}

.courier-output__date {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
}

.courier-output__date .content-data__obtain-fields__item {
	position: relative;
}

.courier-output__date-field,
.courier-output__time-field {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 24px;
	border: 1px solid var(--Gray-80, #262626);
	padding: 18px 16px;
	cursor: pointer;
}

.courier-output__date-field__input {
	width: 100%;
	border: none;
	background-color: inherit;
	color: var(--Gray-80, #262626);
	font-size: 16px;
	cursor: pointer;
}

.courier-output__date-field__icon {
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.courier-output__date-field__input:focus+.courier-output__date-field__icon {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.courier-output__date-output,
.courier-output__time-output {
	display: none;
	position: absolute;
	top: 100px;
	padding: 8px 8px 8px 0;
	background: var(--White-100, #fff);
	-webkit-box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
	width: 100%;
}

.courier-output__date-output__container,
.courier-output__time-output__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-height: 180px;
	overflow-y: auto;
}

.courier-output__date-output__container::-webkit-scrollbar,
.courier-output__time-output__container::-webkit-scrollbar {
	width: 4px;
}

.courier-output__date-output__container::-webkit-scrollbar-thumb,
.courier-output__time-output__container::-webkit-scrollbar-thumb {
	width: 4px;
	border-radius: 4px;
	background: var(--Gray-60, #6f6f6f);
}

.courier-output__date-output__container::-webkit-scrollbar-track,
.courier-output__time-output__container::-webkit-track {
	border-radius: 4px;
	background: var(--Gray-40, #d1d1d3);
}

.courier-output__date-output__container-item,
.courier-output__time-output__container-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 8px 0 8px 16px;
	margin-right: 8px;
	color: var(--Gray-80, #262626);
	font-size: 16px;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	cursor: pointer;
}

.courier-output__date-output__container-item img,
.courier-output__time-output__container-item img {
	display: none;
}

.courier-output__date-output__container-item.item-checked img,
.courier-output__time-output__container-item.item-checked img {
	display: block;
}

.courier-output__date-output__container-item:hover,
.courier-output__time-output__container-item:hover {
	background: var(--Gray-10, #fafafa);
}

.content-data__obtain-fields__comment {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
}

.content-data__obtain-fields__comment-title {
	color: var(--Gray-80, #262626);
	font-size: 16px;

	font-weight: 500;
}

.content-data__obtain-fields__comment-container {
	max-height: 110px;
	height: 110px;
	padding: 16px;
	border: 1px solid var(--Gray-60, #6f6f6f);
}

.content-data__obtain-fields__comment-textarea {
	width: 100%;
	padding-right: 24px;
	overflow-y: auto;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	font-size: 16px;
	border: none;
	outline: none;
	resize: none;
}

.content-data__obtain-fields__comment-textarea::-webkit-scrollbar {
	padding-right: 16px;
	width: 4px;
}

.content-data__obtain-fields__comment-textarea::-webkit-scrollbar-thumb {
	width: 4px;
	border-radius: 4px;
	background: var(--Gray-60, #6f6f6f);
}

.content-data__obtain-fields__comment-textarea::-webkit-scrollbar-track {
	border-radius: 4px;
	background: var(--Gray-40, #d1d1d3);
}

.content-data__obtain-fields__comment-textarea::-webkit-input-placeholder {
	color: var(--Gray-50, #a5a5a5);
}

.content-data__obtain-fields__comment-textarea::-moz-placeholder {
	color: var(--Gray-50, #a5a5a5);
}

.content-data__obtain-fields__comment-textarea:-ms-input-placeholder {
	color: var(--Gray-50, #a5a5a5);
}

.content-data__obtain-fields__comment-textarea::-ms-input-placeholder {
	color: var(--Gray-50, #a5a5a5);
}

.content-data__obtain-fields__comment-textarea::placeholder {
	color: var(--Gray-50, #a5a5a5);
}

.content-data__obtain-filled__container-data {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
}

.content-data__obtain-filled__container-data__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.content-data__obtain-filled__container-data__item-value {
	color: var(--Gray-80, #262626);
	font-size: 16px;
}

.content-data__obtain-filled__container-data__item-subtitle {
	color: var(--Gray-60, #6f6f6f);
	font-size: 14px;

	line-height: 18px;
}

.content-data__obtain-notActive,
.content-data__pay-notActive {
	color: var(--Gray-40, #d1d1d3);
	font-size: 24px;

	font-weight: 500;
	line-height: 28px;
}

.content-data__pay-container {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 32px;
}

.content-data__pay-title__text {
	color: var(--Gray-80, #262626);
	font-size: 24px;

	font-weight: 500;
	line-height: 28px;
}

.content-data__pay-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
}

.content-data__pay-list__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	padding: 16px;
	border: 1px solid var(--Gray-40, #d1d1d3);
	cursor: pointer;
}

.content-data__pay-list__item.active-pay {
	border: 1px solid var(--Gray-60, #6f6f6f);
}

.content-data__pay-list__item-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 12px;
}

.content-data__pay-list__item-info__input {
	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;
	min-width: 20px;
	height: 20px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1.5px solid #000;
	border-radius: 50%;
	position: relative;
	background-color: #fff;
}

.content-data__pay-list__item-info__input:checked::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #000;
	/* dot color */
}

.content-data__pay-list__item-info__text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
}

.content-data__pay-list__item-info__text-title {
	color: var(--Gray-80, #262626);
	font-size: 16px;

	font-weight: 500;
}

.content-data__pay-list__item-info__text-description {
	color: var(--Gray-60, #6f6f6f);
	font-size: 14px;
	line-height: 18px;
}

.content-data__pay-list__item-additional {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
	border: 1px solid var(--Gray-20, #f3f3f3);
	background: var(--White-100, #fff);
}

.content-data__pay-list__item-additional__price {
	color: var(--Gray-80, #262626);
	font-size: 24px;

	font-weight: 500;
	line-height: 28px;
}

.content-data__pay-list__item-additional__split {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 4px;
}

.content-data__pay-list__item-additional__split-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}

.content-data__pay-list__item-additional__split-block__line {
	height: 4px;
	border-radius: 100px;
	background: var(--Gray-40, #d1d1d3);
}

.content-data__pay-list__item-additional__split-block__line.split-line__active {
	background: var(--Gray-80, #262626);
}

.content-data__pay-list__item-additional__split-block__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.split-block__info-date {
	color: var(--Gray-60, #6f6f6f);
	font-size: 12px;
	line-height: 16px;
}

.split-block__info-cost {
	color: var(--Gray-80, #262626);
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
}

.content-data__pay-list__item-additional__subtitle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
}

.content-data__pay-list__item-additional__subtitle-text {
	color: var(--Gray-80, #262626);
	font-size: 14px;

	line-height: 18px;
}

.content-data__pay-list__item-additional__subtitle-icon {
	cursor: pointer;
}

.content-data__pay-list__item-additional__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
}

.content-data__pay-list__item-additional__title-text {
	color: var(--Gray-80, #262626);
	font-size: 16px;
}

.content-data__pay-list__item-additional__title-icon {
	padding: 6px;
	border-radius: 100px;
	background: var(--Tint-tint-light, #f1f2f5);
}

.content-data__pay-list__item-additional__timeCount {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 2px;
}

.content-data__pay-list__item-additional__split-block__line.ya-split-line {
	height: 6px;
}

.ya-split-line__active {
	background: var(--Secondary-80, #dba97b);
}

.content-data__pay-list__item-additional__timeCount-btn {
	width: 100%;
	padding: 8px 0;
	background-color: inherit;
	font-size: 14px;

	line-height: 18px;
	border: none;
	cursor: pointer;
}

.content-data__pay-list__item-additional__timeCount .active-split-btn {
	background: var(--Gray-80, #262626);
	color: var(--White-100, var(--Default-White-100, #fff));
}

.ya-split-block .split-block__info-date {
	color: var(--Gray-80, #262626);
}

.content-data__pay-btn button {
	width: 100%;
	padding: 18px 0;
	background: var(--Gray-80, #262626);
	color: var(--White-100, var(--Default-White-100, #fff));
	text-align: center;
	font-size: 18px;

	font-weight: 500;
	letter-spacing: 2.7px;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
}

.content-data__pay-agreement {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 12px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.content-data__pay-agreement__checkbox {
	display: none;
}

.content-data__pay-agreement__checkbox+label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid #262626;
	background-color: var(--Gray-80, #262626);
	padding: 3px;
	min-width: 20px;
	height: 20px;
	cursor: pointer;
}

.content-data__pay-agreement__checkbox:checked+label {
	background-color: var(--Gray-80, #262626);
	background-image: url(/local/templates/luisawang/css/assets/icons/agreement-check.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.content-data__pay-agreement__text {
	color: var(--Gray-80, #262626);
	font-size: 16px;
}

.content-data__pay-agreement__text a {
	text-decoration: underline !important;
	text-underline-offset: 4px;
}

.content-order {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
	position: sticky;
	top: 16px;
	max-width: 370px;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	padding: 20px;
	background: var(--Gray-10, #fafafa);
}

.content-order__title {
	color: var(--Gray-80, #262626);
	font-size: 24px;
	font-weight: 500;
	line-height: 28px;
}

.content-order__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
}

.order-bottom-bordered {
	padding-bottom: 24px;
	border-bottom: 1px solid var(--Gray-40, #d1d1d3);
}

.content-order__items-product {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 24px;
}

.content-order__items-product__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 12px;
}

.content-order__items-product__info-img {
	max-width: 80px;
}

.content-order__items-product__info-img img {
	width: 100%;
	height: auto;
}

.content-order__items-product__info-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 6px;
}

.content-order__items-product__info-text__title {
	color: var(--Gray-80, #262626);
	font-size: 16px;

	font-weight: 500;
}

.content-order__items-product__info-text__subtitle {
	color: var(--Gray-60, #6f6f6f);
	font-size: 14px;

	line-height: 18px;
}

.content-order__items-product__price {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	gap: 2px;
}

.content-order__items-product__price-total {
	white-space: nowrap;
	color: var(--Gray-80, #262626);
	font-size: 16px;

	font-weight: 500;
}

.content-order__items-product__price-prevPrice {
	color: var(--Gray-60, #6f6f6f);
	white-space: nowrap;
	font-size: 14px;

	letter-spacing: 0.28px;
	text-decoration: line-through;
}

.content-order__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.content-order__info-data {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
}

.content-order__info-data__quantity,
.content-order__info-data__delivery,
.content-order__info-data__discount,
.content-order__info-data__promo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	color: var(--Gray-80, #262626);
	font-size: 16px;
}

.content-order__info-data__promo {
	display: none;
}

.content-order__info-promo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	width: 100%;
}

.content-order__info-promo__enterText {
	color: var(--Gray-80, #262626);
	text-align: center;
	font-size: 16px;
	text-decoration: underline;
	text-underline-offset: 4px;
	cursor: pointer;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.content-order__info-promo__enterText:hover {
	color: #dba97b;
}

.content-order__info-promo__enterBlock {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}

.content-order__info-promo__enterBlock-inputField {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
}

.content-order__info-promo__enterBlock-inputField__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 24px;
	width: 100%;
	border: 1px solid var(--Gray-80, #262626);
	padding: 13px 16px;
}

.inputField-border-success {
	border: 1px solid var(--Success-80, #0bac38);
}

.inputField-border-error {
	border: 1px solid var(--Error-80, #f04438);
}

.content-order__info-promo__enterBlock-inputField__container input {
	width: 100%;
	font-size: 16px;
	color: var(--Gray-80, #262626);
	text-transform: uppercase;
	border: none;
	background-color: inherit;
}

.content-order__info-promo__enterBlock-inputField__container input::-webkit-input-placeholder {
	text-transform: none;
}

.content-order__info-promo__enterBlock-inputField__container input::-moz-placeholder {
	text-transform: none;
}

.content-order__info-promo__enterBlock-inputField__container input:-ms-input-placeholder {
	text-transform: none;
}

.content-order__info-promo__enterBlock-inputField__container input::-ms-input-placeholder {
	text-transform: none;
}

.content-order__info-promo__enterBlock-inputField__container input::placeholder {
	text-transform: none;
}

.promo-activated {
	color: var(--Gray-50, #a5a5a5) !important;
}

.content-order__info-promo__enterBlock-inputField img {
	cursor: pointer;
}

.promo-enter-btn {
	display: none;
}

.content-order__info-promo__enterBlock-label {
	display: none;
	font-size: 14px;
	line-height: 18px;
}

.promo-success-label {
	color: var(--Success-80, #0bac38);
}

.promo-error-label {
	color: var(--Error-80, #f04438);
}

.content-order__total {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	color: var(--Gray-80, #262626);
	font-size: 20px;

	font-weight: 500;
	line-height: 24px;
}

.input-fill-error {
	border: 1px solid var(--Error-80, #f04438);
}

.courier-output__date-popup,
.courier-output__time-popup {
	position: fixed;
	top: 0;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 9999;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.date-popup__hidden,
.time-popup__hidden {
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
}

.courier-output__date-popup__content,
.courier-output__time-popup__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	gap: 20px;
	padding: 20px;
	background-color: #fff;
}

.courier-output__date-popup__heading,
.courier-output__time-popup__heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--Gray-80, #262626);
	font-size: 22px;

	font-weight: 500;
	line-height: 26px;
}

.courier-output__date-popup__heading img,
.courier-output__time-popup__heading img {
	cursor: pointer;
}

.map-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 9999;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.map-popup.hidden {
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
}

.map-popup__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 80%;
	height: 100vh;
	margin-left: auto;
	background-color: #fff;
}

.map-popup__content-switcher {
	display: none;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 20px 20px 0 20px;
	border-bottom: 1px solid var(--Gray-40, #d1d1d3);
	background: var(--Default-White-100, #fff);
}

.map-popup__content-switcher__return {
	cursor: pointer;
}

.map-popup__content-switcher__return-hidden {
	visibility: hidden;
	pointer-events: none;
}

.map-popup__content-switcher__tabs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	color: var(--Gray-80, #262626);
	font-size: 16px;
}

.map-popup__content-switcher__tabs-item {
	padding-bottom: 20px;
	border-bottom: 2px solid rgba(0, 0, 0, 0);
	cursor: pointer;
}

.map-popup__content-switcher__tabs-item.active-tab {
	border-bottom: 2px solid var(--Gray-80, #262626);
}

.map-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
}

#SDEK_map {
	display: block;
	position: relative;
	width: 70%;
	height: 100%;
}

#SDEK_map.tab-hidden {
	display: block;
}

.map-search {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 8px;
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 999;
}

.map-search__inputField {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 24px;
	max-width: 350px;
	width: 350px;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	border: 1px solid var(--Gray-60, #6f6f6f);
	background: var(--Default-White-100, #fff);
	-webkit-box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
}

.map-search__inputField-input {
	width: 100%;
	padding: 12px 0 12px 16px;
	border: none;
	font-size: 16px;
	cursor: pointer;
}

.map-search__inputField-icon {
	padding: 12px 16px 12px 0;
}

.map-search__filter {
	padding: 10px;
	border: 1px solid var(--Gray-60, #6f6f6f);
	background: var(--Default-White-100, #fff);
	-webkit-box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	display: flex;
	align-items: center;
}

.map-controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	position: absolute;
	bottom: 20px;
	right: 20px;
	z-index: 999;
}

.map-controls__zoomIn,
.map-controls__zoomOut,
.map-controls__location {
	padding: 12px;
	border: 1px solid var(--Gray-20, #f3f3f3);
	background: var(--Default-White-100, #fff);
	-webkit-box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
}

.map-point__selected {
	display: none;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	z-index: 999;
	background: var(--White-100, #fff);
	-webkit-box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
}

.map-point__selected.hidden {
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.map-point__selected-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
	padding: 20px;

}

.map-point__selected-item__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.map-point__selected-item__title-text {
	color: var(--Gray-80, #262626);
	font-size: 16px;

	font-weight: 500;
}

.map-point__selected-item__title-close {
	cursor: pointer;
}

.map-point__selected-item__place,
.map-point__selected-item__info,
.map-point__selected-item__path {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 2px;
	font-size: 14px;
}

.map-point__selected-item__info-price,
.map-point__selected-item__info-closest,
.map-point__selected-item__path-title {
	color: var(--Gray-60, #6f6f6f);
	font-size: 14px;
	line-height: 18px;
}

.map-point__selected-item__info-price b,
.map-point__selected-item__info-closest b {
	color: var(--Gray-80, #262626);
	font-size: 14px;

	font-weight: 500;
	line-height: 18px;
}

.map-point__selected-item__btn button {
	width: 100%;
	padding: 10px 0;
	color: var(--White-100, var(--Default-White-100, #fff));
	background: var(--Gray-80, #262626);
	text-align: center;
	font-size: 14px;

	font-weight: 500;
	letter-spacing: 2.1px;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
}

.map-popup__content-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 48px;
	width: 30%;
	height: 100vh;
	padding: 40px;
}

.map-popup__content-list.tab-hidden {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.map-popup__content-list__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.map-popup__content-list__title-text {
	color: var(--Gray-80, #262626);
	font-size: 16px;

	letter-spacing: 1.6px;
	text-transform: uppercase;
}

.map-popup__content-list__title-close {
	cursor: pointer;
}

.map-popup__content-list__search {
	display: none;
	gap: 8px;
}

.map-popup__content-list__search .map-search__inputField,
.map-popup__content-list__search .map-search__filter {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.map-popup__content-list__addresses {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 32px;
	padding-right: 20px;
	overflow-y: auto;
}

.map-popup__content-list__addresses::-webkit-scrollbar {
	padding-right: 16px;
	width: 4px;
}

.map-popup__content-list__addresses::-webkit-scrollbar-thumb {
	width: 4px;
	border-radius: 4px;
	background: var(--Gray-60, #6f6f6f);
}

.map-popup__content-list__addresses::-webkit-scrollbar-track {
	border-radius: 4px;
	background: var(--Gray-40, #d1d1d3);
}

.map-popup__content-list__addresses-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
}

.map-popup__content-list__addresses-item:not(:last-child) {
	padding-bottom: 32px;
	border-bottom: 1px solid var(--Gray-40, #d1d1d3);
}

.map-popup__content-list__addresses-item:hover .map-popup__content-list__addresses-item__path,
.map-popup__content-list__addresses-item:hover .map-popup__content-list__addresses-item__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.map-popup__content-list__addresses-item__title {
	color: var(--Gray-80, #262626);
	font-size: 16px;

	font-weight: 500;
}

.map-popup__content-list__addresses-item__place,
.map-popup__content-list__addresses-item__info,
.map-popup__content-list__addresses-item__path {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 2px;
	font-size: 14px;
}

.map-popup__content-list__addresses-item__path {
	display: none;
}

.map-popup__content-list__addresses-item__info-price,
.map-popup__content-list__addresses-item__info-closest,
.map-popup__content-list__addresses-item__path-title {
	color: var(--Gray-60, #6f6f6f);
}

.map-popup__content-list__addresses-item__info-price b,
.map-popup__content-list__addresses-item__info-closest b {
	color: var(--Gray-80, #262626);
	font-weight: 500;
}

.map-popup__content-list__addresses-item__path-text {
	color: var(--Gray-80, #262626);
}

.map-popup__content-list__addresses-item__btn {
	display: none;
}

.map-popup__content-list__addresses-item__btn button {
	width: 100%;
	margin-top: 8px;
	padding: 13px 0;
	color: var(--White-100, var(--Default-White-100, #fff));
	background: var(--Gray-80, #262626);
	text-align: center;
	font-size: 14px;

	font-weight: 500;
	letter-spacing: 2.1px;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
}

@media (max-width: 1100px) {
	.main-container {
		padding: 32px 24px;
	}

	.map-popup__content {
		width: 100%;
	}

	#SDEK_map {
		width: 70%;
	}

	.map-popup__content-list {
		width: 30%;
		padding: 30px;
	}
}

@media (max-width: 991px) {
	.main-container {
		padding: 24px;
		gap: 24px;
	}

	.content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 24px;
	}

	.content-data {
		max-width: 100%;
		padding-top: 16px;
	}

	.content-data__contacts {
		padding-bottom: 32px;
	}

	.content-data__contacts-container,
	.content-data__obtain-container,
	.content-data__pay-container {
		gap: 24px;
	}

	.content-data__obtain,
	.content-data__pay {
		padding: 32px 0;
	}

	.content-data__contacts-fields,
	.content-data__obtain-fields {
		gap: 20px;
	}

	.content-data__contacts-fields__row,
	.content-data__obtain-fields__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.content-data__contacts-fields__item-input,
	.content-data__obtain-fields__item-input {
		max-width: 100%;
	}

	.content-data__obtain-fields__item-select {
		max-width: 100%;
	}

	.content-order {
		max-width: 100%;
	}

	.content-order__items-product {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.map-popup__content {
		width: 100%;
	}
}

@media (min-width: 771px) {
	.obtain-fields__item-select__output-popup {
		display: none;
	}

	.courier-output__date-popup {
		display: none;
	}

	.courier-output__time-popup {
		display: none;
	}
}

@media (max-width: 770px) {
	.map-point__selected-item {
		width: 100%;
	}

	.main-container {
		padding: 24px 20px;
		gap: 24px;
	}

	.main-container__heading-text__title {
		font-size: 24px;
	}

	.content-data__contacts-title__text,
	.content-data__obtain-title__text {
		font-size: 20px;
	}

	.content-data__contacts-fields__item-input,
	.content-data__obtain-fields__item-input {
		padding: 13px 16px;
	}

	.content-data__contacts-btn button,
	.content-data__obtain-btn button {
		padding: 13px 0;
		font-size: 14px;
		letter-spacing: 2.1px;
	}

	.content-data__contacts-filled,
	.content-data__obtain-filled {
		gap: 24px;
	}

	.content-data__contacts-filled__container,
	.content-data__obtain-filled__container {
		padding: 20px;
	}

	.content-data__contacts-filled__container-data,
	.content-data__obtain-filled__container-data {
		font-size: 14px;
		gap: 8px;
	}

	.content-data__contacts-filled__container-change,
	.content-data__obtain-filled__container-change {
		font-size: 14px;
	}

	.content-data__obtain-fields__row-container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 8px;
	}

	.content-data__obtain-filled__container-data__item-value {
		font-size: 14px;
	}

	.courier-output__address {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.courier-output__address-item.apartment-size {
		max-width: 160px;
		width: 160px;
	}

	.courier-output__date {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.content-data__pay-title__text {
		font-size: 20px;
	}

	.content-data__pay-btn button {
		padding: 13px 0;
		font-size: 14px;
		letter-spacing: 2.1px;
	}

	.content-data__pay-list__item-additional__price {
		font-size: 20px;
	}

	.content-order__title {
		font-size: 20px;
	}

	.content-order__total {
		font-size: 18px;
	}

	.map-popup__content-switcher {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	#SDEK_map {
		width: 100%;
	}

	.map-controls {
		position: fixed;
	}

	.map-popup__content-list {
		width: 100%;
		padding: 24px 20px;
		gap: 24px;
	}

	.map-popup__content-list__title {
		display: none;
	}

	.map-popup__content-list__search {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.map-search {
		right: 20px;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.map-search__inputField {
		max-width: 100%;
		width: 100%;
	}

	#SDEK_map.tab-hidden {
		display: none;
	}

	.map-popup__content-list.tab-hidden {
		display: none;
	}

	.map-popup__content-list__addresses {
		gap: 16px;
		padding-right: 8px;
	}

	.map-popup__content-list__addresses-item:not(:last-child) {
		padding-bottom: 16px;
	}

	.map-point__selected {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}


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

/* .wrapper a {
	color: inherit;
	text-decoration: none;
}

.wrapper header {
	width: 100%;
} */

.header-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 1920px;
	padding: 24px 51px 16px 51px;
	margin: 0 auto;
}

.header-return {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid rgba(0, 0, 0, 0);
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.header-return:hover {
	border-bottom: 1px solid black;
}

.header-return__link {
	color: var(--primary-80, #524841);
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}

.header-logo__horizontal {
	display: none;
}

/* .wrapper main {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.wrapper footer {
	width: 100%;
	border-top: 1px solid var(--gray-40, #d1d1d3);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
} */

.footer-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 1920px;
	margin: 0 auto;
	padding: 20px 50px;
}

.footer-rights {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: var(--gray-50, #a5a5a5);
}

.footer-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
}

.footer-nav__link {
	color: var(--gray-80, #262626);
	line-height: 18px;
}

.wrapper .hidden {
	visibility: hidden;
	pointer-events: none;
}

@media (max-width: 1200px) {
	.header-container {
		padding: 24px 24px 16px 24px;
	}

	.footer-container {
		padding: 20px 24px;
	}
}

@media (max-width: 991px) {
	.footer-container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		gap: 12px;
		padding: 32px 0 !important;
	}

	.footer-rights.hidden {
		display: none;
	}
}

@media (max-width: 770px) {
	/* .wrapper header {
		border-bottom: 1px solid var(--Gray-40, #D1D1D3);
	} */

	.header-container {
		padding: 5px 20px;
	}

	.header-return__link {
		display: none;
	}

	.header-logo__vertical {
		display: none;
	}

	.header-logo__horizontal {
		display: block;
	}
}

.row__mindbox_flex-auth {
	margin-bottom: 32px;
}

.auth__mindbox_btn {
	text-decoration: underline;
	margin-top: 5px;
	display: block;
	max-width: 100%;
}

.auth__mindbox_desc {
	font-family: "SF Pro Display";
	font-size: 16px;
}

.auth__mindbox_desc p {
	margin-bottom: 0;
}

.input__bonus::-webkit-outer-spin-button,
.input__bonus::-webkit-inner-spin-button {
	/* display: none; <- Crashes Chrome on hover */
	-webkit-appearance: none;
	margin: 0;
	/* <-- Apparently some margin are still there even though it's hidden */
}

.wrapp__mindbox-flex {
	/* margin-top: 40px; */
	/* position: relative; */
	/* border-bottom: 1px solid #D1D1D3; */
	/* padding-bottom: 24px; */
	display: none;
}

.fancybox-slide--video .fancybox-content {
	background: transparent;
}

.fancybox-video {
	width: auto;
	margin: 0 auto;
}

.fancybox-video {
	height: 100%;
	object-fit: cover;
	object-position: top;
	width: auto;
}

.fancybox-slide--video .fancybox-content {
	height: 100% !important;
	width: auto !important;
}

.fancybox-slide--video {
	padding: 44px 0;
}

.swiper-page-product__item video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.set__bonus {
	position: absolute;
	top: 17px;
	right: 45px;
	text-decoration: underline;
	cursor: pointer;
	display: none;
}

@media screen and (max-width: 768px) {
	.set__bonus {
		top: 13px;
	}
}

input.form-control.input__bonus {
	/* margin-bottom: 10px;
	padding-right: 80px; */
	margin: 0;
	padding: 13px 16px;
}

.wrapp__flex_main {
	/* max-width: 300px; */
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
}

.close__bonus_wrapp {
	width: 100%;
}

.close__bonus_btn {
	background: url(/local/templates/luisawang/css/./img/icon/close.svg) no-repeat center;
	width: 12px;
	height: 12px;
	cursor: pointer;
}

.error__bonus,
.applied__bonus {
	color: #0BAC38;
	font-size: 14px;
}

.applied__bonus_wrapp {
	margin-top: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.applied__bonus {
	display: flex;
	gap: 8px;
	align-items: center;
}

.desc_applied_bonus {
	font-size: 14px;
	margin-top: 8px;
}

.js-auth-step-change:hover {
	color: #181820;
}

.desc__bonus.desc__bonus_null {
	margin: 0;
}

.desc__bonus_null .write__off_bonus {
	color: #6F6F6F;
}

.row__mindbox_flex {
	display: flex;
	justify-content: space-between;
	padding: 24px;
	font-family: 'SF-PRO';
	font-size: 16px;
	align-items: center;
	position: relative;
	background: #FAFAFA;
	margin-bottom: 32px;
}

.sign_in_mindbox_desc::before {
	content: '';
	display: block;
	background: url('/local/templates/luisawang/css/./img/icon/safety.svg') no-repeat center;
	width: 24px;
	height: 24px;
	position: absolute;
	left: 0;
}

.sign_in_mindbox_desc {
	position: relative;
	padding-left: 36px;
	max-width: 340px;
}

.sign_in_mindbox_link {
	font-size: 14px;
	height: 46px;
	padding: 0 25px;
}


@media (max-width: 600px) {
	.row__mindbox_flex {
		flex-direction: column;
		gap: 16px;
	}

	.sign_in_mindbox_desc {
		max-width: 100%;
	}

	.sign_in_mindbox_link {
		width: 100%;
	}

	.page-product-btn-slice__left .text-mobile {
		display: none;
	}
}

.row__mindbox_flex-auth {
	background: #FAFAFA;
	padding: 24px;
}

.available__bonus {
	color: #6F6F6F;
	font-family: 'SF-PRO';
	font-size: 14px;
	margin-bottom: 6px;
}

.write__off_bonus {
	color: #262626;
	font-family: 'SF-PRO';
	padding-left: 32px;
	position: relative;
	line-height: 24px;
	font-weight: 500;
}

.write__off_bonus:before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	background: url(/local/templates/luisawang/css/./img/icon/safety.svg) no-repeat center;
	position: absolute;
	left: 0;
}

.desc__bonus {
	margin-bottom: 16px;
}

input.form-control.input__bonus::placeholder {
	color: #A5A5A5;
	font-family: 'SF-PRO';
}

/* @media (max-width: 992px) { */
.fancybox-video {
	height: 100%;
	object-fit: cover;
	object-position: top;
	width: auto;
}

.fancybox-slide--video .fancybox-content {
	height: 100% !important;
	width: auto !important;
}

.fancybox-slide--video {
	padding: 44px 0;
}

/* } */

@media (max-width: 992px) {
	.fancybox-video {
		width: 100%;
	}
}


.page__header.care__header {
	background: url(/local/templates/lusio/img/care/care_page.png) no-repeat top center / cover;
	height: 80vh;
}

.page__header.care__header h1 {
	font-family: 'SF-PRO';
	font-size: 56px;
	line-height: 64px;
	letter-spacing: 0.04em;
	font-weight: 500;
	margin-top: 100px;
}

.care__section_list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.care__section_item.w-33 {
	width: 33.3%;
	padding: 10px;
}

.care__section_item.w-50 {
	width: 50%;
	padding: 10px;
}

.care__section_item a {
	display: block;
	position: relative;
	height: 100%;
	overflow: hidden;
}

.care__section_item img {
	width: 100%;
	object-fit: cover;
	height: 100%;
	transition: 1s;
}

.care__section_item_title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: 'SF-PRO';
	font-size: 36px;
	color: #fff;
	font-weight: 500;
	text-align: center;
}

.care__section {
	max-width: 1440px;
	margin: 90px auto;
}

.care__section_title {
	max-width: 1150px;
	margin: 0 auto;
	font-family: 'SF-PRO';
	text-align: center;
	margin-bottom: 90px;
}

.care__section_title h3,
.care__detail_top-desc h3 {
	margin-bottom: 24px;
	font-size: 36px;
	font-weight: 500;
	line-height: 40px;
}

.care__section_title p {
	line-height: 20px;
	max-width: 830px;
	margin: 0 auto;
}

.care__detail_top {
	display: flex;
	gap: 50px;
	margin-bottom: 50px;
}

.care__detail_top-desc {
	max-width: 660px;
	margin: 0 auto;
}

.care__detail_top-desc-wrapp {
	position: sticky;
	top: 100px;
}

.care__detail_top-desc ul li p {
	color: #6F6F6F;
	margin-bottom: 30px;
}

.care__detail_top-desc ul li:last-child p {
	margin-bottom: 0;
}

.care__detail_top-desc ul li {
	list-style-type: disc;
}

.care__detail_top-desc ul {
	padding-left: 20px;
}

.section-product.care__materials .container,
.section-product.care__materials .section-product__inner {
	padding: 0;
}

.care__materials .swiper-wrapper-list-section {
	margin-bottom: 40px;
}

.care__materials {
	margin-top: 160px;
	margin-bottom: 60px;
}

/* .care__slider .swiper-wrapper-list-section {
    height: 560px;
}
.care__slider .care__section_item {
    height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.care__slider .care__section_item a {
	height: 100%;
} */

.care__slider .care__section_item {
	height: 100%;
}

.care__slider .swiper-slide {
	height: auto;
}

.btn__bonus_null {
	font-size: 12px;
}

.hide_mobile {
	display: none;
}

@media (max-width: 992px) {
	.care__section_item.w-33 {
		width: 50%;
	}

	.page__header.care__header h1 {
		font-size: 46px;
		line-height: 56px;
	}

	.care__section {
		margin: 90px auto;
	}
}

@media (max-width: 770px) {
	.care__section {
		margin: 60px auto;
	}

	.care__section_title h3,
	.care__detail_top-desc h3 {
		font-size: 28px;
		line-height: 28px;
	}

	.care__section_title {
		margin-bottom: 50px;
	}

	.care__section_item_title {
		font-size: 28px;
	}

	.page__header.care__header h1 {
		font-size: 32px;
		line-height: 40px;
	}
}

@media (max-width: 576px) {
	.hide_mobile {
		display: block;
	}

	.page__header.care__header h1 {
		font-size: 26px;
		line-height: 30px;
	}

	.care__section_title h3,
	.care__detail_top-desc h3 {
		font-size: 22px;
		line-height: 24px;
	}

	.care__section_item.w-33,
	.care__section_item.w-50 {
		width: 100%;
		height: 400px;
	}
}

.care__detail_img {
	overflow: hidden;
}

.section-product.care__slider .container {
	padding: 0;
}

@media (max-width: 1600px) {
	.care__detail_img {
		margin-right: 20px;
	}
}

@media (max-width: 1200px) {
	.care__detail_top-desc {
		max-width: 360px;
	}

	.care__detail_img img {
		width: 100%;
	}
}

@media (max-width: 992px) {
	.care__detail_img {
		margin-right: 0;
		width: 100%;
	}

	.care__detail_top {
		flex-direction: column;
	}

	.care__detail_top-desc {
		max-width: 100%;
		margin-top: 30px;
	}

	.care__detail_top-desc h3 {
		margin-bottom: 20px;
	}

	.care__materials {
		margin-top: 90px;
		margin-bottom: 20px;
	}

	.care__slider .swiper-wrapper-list-section {
		margin-bottom: 70px;
	}
}

.bx-breadcrumb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 1180px;
	width: 100%;
	margin: 0 auto;
	margin-bottom: 20px;
}


@media screen and (max-width: 767px) {
	.bx-breadcrumb {
		padding: 0 20px;
	}
}

.bx-breadcrumb-item {
	height: 22px;
	white-space: nowrap;
}

.bx-breadcrumb-item-separator {
	margin: 0 10px;
}

.bx-breadcrumb-item-link {
	border-bottom: 1px solid var(--theme-color-gray);
	vertical-align: top;
}

.bx-breadcrumb-item-link:hover {}

.bx-breadcrumb-item-text {
	vertical-align: top;
	white-space: normal;
	transition: 250ms linear all;
	font-size: 14px;
	line-height: 16px;
	letter-spacing: 0.02em;
	color: var(--theme-color-dark);
	font-family: 'GT Eesti Pro';
}

.bx-breadcrumb-item-link .bx-breadcrumb-item-text {
	color: var(--theme-color-gray);
}

.pagenav-fix.pagenav-sale .bx-breadcrumb-item-link {
	border-bottom: 1px solid var(--theme-color-dark);
	vertical-align: top;
}

.pagenav-fix.pagenav-sale .bx-breadcrumb-item .bx-breadcrumb-item-text {
	color: var(--theme-color-gray);
}

.pagenav-fix.pagenav-sale .bx-breadcrumb-item-link .bx-breadcrumb-item-text,
.pagenav-fix.pagenav-sale .bx-breadcrumb-item-separator {
	color: var(--theme-color-dark);
}

.g-recaptcha {
	margin-top: 15px;
}

.catalog__desc_bottom {
	margin-bottom: 100px;
}

.page-product-item__btn {
	text-decoration: underline;
	color: var(--color-black);
	font-weight: 400;
	line-height: 120%;
	height: auto;
	font-size: 16px;
	padding: 15px 25px;
	/* text-underline-offset: 3px; */
}

.page-product-item__care {
	text-decoration: underline;
	text-underline-offset: 3px;
	padding: 0;
}


@media screen and (min-width: 768px) {

	.fancybox-navigation .fancybox-button--arrow_left,
	.fancybox-navigation .fancybox-button--arrow_right {
		padding: 0 20px 0 0;
		width: 5%;
		height: 100%;
		bottom: 0;
		top: auto;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		background: transparent;
		z-index: 99997;
	}

	.fancybox-navigation .fancybox-button--arrow_left {
		padding: 0 0 0 20px;
		justify-content: flex-start;
	}

	.fancybox-button--arrow_left>div,
	.fancybox-button--arrow_right>div {
		width: 45px;
		height: 45px;
		background: rgba(24, 24, 27, .5);
		border-radius: 50%;
	}

	.fancybox-toolbar {
		z-index: 99999;
	}

	.fancybox-button.fancybox-button--close {
		width: 45px;
		height: 45px;
		background: rgba(24, 24, 27, .5);
		border-radius: 50%;
		position: absolute;
		top: 20px;
		right: 20px;
		bottom: auto;
		left: auto;
	}

	.fancybox-thumbs {
		background: rgba(24, 24, 27, .5);
		border-radius: 15px;
		padding: 3px 2px;
		transform: translate(0%, 0%);
		top: 85%;
		width: auto;
		max-width: fit-content;
		margin: 0 auto;
	}

	.fancybox-thumbs__list {
		display: flex;
		flex-direction: row;
	}

	.fancybox-thumbs__list a {
		height: 80px;
		width: 60px;
	}

	.fancybox-slide--image {
		padding: 0 !important;
	}

	.fancybox-content {
		height: 100vh !important;
		width: 100% !important;
		max-width: 100% !important;
		transform: translate(0px, 0px) !important;
		overflow: scroll !important;
		scrollbar-width: none;
		-ms-overflow-style: none;
		overflow: hidden;
		cursor: url(/local/templates/lusio/images/close.svg) 20 20, crosshair !important;
	}

	.fancybox-content::-webkit-scrollbar {
		display: none;
	}

	.fancybox-image {
		object-fit: contain;
		height: auto;
		width: 100%;
	}

}

@media screen and (max-width: 767px) {
	.fancybox-slide--image {
		padding: 0 !important;
	}

	.fancybox-content {
		height: 100vh !important;
		width: 100% !important;
		max-width: 100% !important;
		transform: translate(0px, 0px) !important;
		overflow: scroll !important;
		scrollbar-width: none;
		-ms-overflow-style: none;
		overflow: hidden;
	}

	.fancybox-content::-webkit-scrollbar {
		display: none;
	}

	.fancybox-image {
		object-fit: cover;
		height: 100vh;
		width: 100%;
		transform: translate(0, 0%);
	}

	.fancybox-navigation .fancybox-button--arrow_left,
	.fancybox-navigation .fancybox-button--arrow_right {
		padding: 0 20px 0 0;
		width: 65px;
		height: 100%;
		bottom: 0;
		top: auto;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		background: transparent;
		z-index: 99997;
	}

	.fancybox-navigation .fancybox-button--arrow_left {
		padding: 0 0 0 20px;
		justify-content: flex-start;
	}

	.fancybox-button--arrow_left>div,
	.fancybox-button--arrow_right>div {
		width: 45px;
		height: 45px;
		background: rgba(24, 24, 27, .5);
		border-radius: 50%;
	}

	.fancybox-toolbar {
		z-index: 99999;
	}

	.fancybox-button.fancybox-button--close {
		width: 45px;
		height: 45px;
		background: rgba(24, 24, 27, .5);
		border-radius: 50%;
		position: absolute;
		top: 20px;
		right: 20px;
		bottom: auto;
		left: auto;
	}

	.fancybox-thumbs {
		background: rgba(24, 24, 27, .5);
		border-radius: 15px;
		padding: 3px 2px;
		transform: translate(0%, 0%);
		top: 89%;
		width: auto;
		max-width: fit-content;
		margin: 0 auto;
	}

	.fancybox-thumbs__list {
		display: flex;
		flex-direction: row;
	}

	.fancybox-thumbs__list a {
		height: 50px;
		width: 40px;
	}
}

@media screen and (min-width: 768px) {

	.catalog-page .catalog-page__row {
		position: relative;
	}

	.aside_catalog-title {
		padding: 15px 20px 40px 20px;
		font-family: 'SF-PRO';
		font-size: 20px;
		font-weight: 400;
		line-height: normal;
		color: #676158;
	}

	aside.catalog-page__left {
		margin: 0 0 0 -20px;
		height: fit-content;
		position: sticky;
		top: 100px;
	}
}


@media screen and (max-width: 992px) {
	.modal-sidebar__map {
		width: 100%;
	}
}

@media screen and (max-width: 770px) {
	.modal-sidebar.modal-delivery-map {
		padding: 0 !important;
	}

	.main-slider__content {
		bottom: 10px;
	}
}

.yandex__persent {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #F7F7F7;
	color: #6F6F6F;
	font-size: 14px;
	line-height: 18px;
	padding: 10px 16px;
	margin-bottom: 24px;
}

#bx-soa-paysystem .yandex__persent {
	margin-bottom: 0;
	margin-top: 32px;
}

.paysystem-item-text-description yandex-pay-badge {
	margin-left: 4px;
}

.back__catalog {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
	padding-left: 15px;
}

.back__catalog::after {
	content: "";
	width: 10px;
	height: 8px;
	background-image: url(/local/templates/lusio/img/icon/arrow_filter_black.svg);
	background-position: center center;
	/* background-size: contain; */
	background-repeat: no-repeat;
	display: block;
	transform: rotate(90deg);

}

@media screen and (max-width: 767px) {
	.back__catalog {
		display: none;
	}

	.catalog-title__wr .back__catalog {
		display: flex;
		padding: 0;
		margin-bottom: 40px;
	}

	.catalog-title__wr {
		display: block;
	}
}

.product-card__discount.new__item {
	left: 85px;
}

@media screen and (max-width: 992px) {
	.product-card__discount.new__item {
		left: 45px;
	}
}

.teaser-bar {
	background: #660016;
}

.teaser-bar__text {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 0;
}

.teaser-bar__text * {
	color: #FFFFFF;
	font-size: 15px;
	text-decoration: underline;
	text-underline-offset: 4px;
}

@media screen and (min-width: 992px) {
	.teaser-bar__text *:hover {
		color: #FFFFFF;
		text-decoration: underline;
		text-underline-offset: 4px;
	}
}

@media screen and (max-width: 992px) {
	/* .header-main {
		padding: 20px 0 20px 0;
	} */

	.teaser-bar {
		margin: 0 0 20px 0;
	}

	.teaser-bar__text * {
		font-size: 14px;
	}

	.new-year-schedule-table .table-cell {
		font-size: medium;
	}
}

.main-slider {
	position: relative;
}

.program-specials__list.container,
.program-levels.container,
.program-how.container,
.program-member.container,
.program-faq.container {
	margin-top: 120px;
}

.program-txt {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	flex-flow: column;
	max-width: 1624px;
	margin: 0 auto;
	font-size: 20px;
	line-height: 24px;
}

.program-txt div {
	max-width: 657px;
}

.program-txt h1 {
	font-family: 'SF-PRO';
	font-weight: 500;
	font-size: 56px;
	line-height: 68px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 0 0 24px;
}

.program-txt p {
	max-width: 465px;
}

.program-txt a {
	margin: 48px 0 0;
	width: max-content;
}

.program-specials__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.program-specials__item {
	padding: 40px 40px 54px;
	background: #F7F7F7;
	color: #6F6F6F;
}

.program-specials__item img {
	margin: 0 0 12px;
}

.program-specials__item h3 {
	margin: 0 0 8px;
	font-weight: 500;
	font-size: 28px;
	line-height: 32px;
	color: #262626;
}

.program-levels__list-top,
.program-levels__list-table__row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.program-levels__list-table__row {
	border-bottom: 1px solid #D1D1D3;
	padding: 24px 0;
}

.program-levels__item-desc__phone {
	display: none;
}

.program-levels h2 {
	margin: 0;
	text-transform: none;
	font-family: 'SF-PRO';
	font-weight: 500;
	font-size: 48px;
	line-height: 56px;
}

.program-how__txt h2,
.program-member h2,
.program-faq h2 {
	margin: 0 0 32px;
	text-transform: none;
	font-family: 'SF-PRO';
	font-weight: 500;
	font-size: 48px;
	line-height: 56px;
}

.program-levels__item {
	text-align: center;
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
}

.program-levels__item h3 {
	margin: 0;
	text-align: center;
	font-weight: 500;
	font-size: 36px;
	line-height: 40px;
}

.program-levels__item img {
	margin: 0 0 28px;
	border-radius: 50%;
}

.program-levels__item-titles {
	text-align: left;
	color: #6F6F6F;
}

.program-levels .btn-white {
	width: max-content;
	margin: 60px auto 0;
}

.program-how {
	background: #F7F7F7;
}

.program-how__box {
	margin: 0 auto;
	max-width: 1145px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 50px;
}

.program-how__txt {
	width: 100%;
	max-width: 685px;
	padding: 60px 0;
}

.program-how__txt ul li {
	position: relative;
}

.basket__coupon_text {
	display: inline-block;
	-webkit-text-decoration-line: underline;
	text-decoration-line: underline;
	text-underline-offset: 3px;
	cursor: pointer;
	margin-bottom: 5px;
	font-size: 16px;
}

.basket__coupon_custom.order__coupon {
	margin-top: 12px;
}

.basket__coupon_custom.order__coupon .basket__coupon_text {
	margin-bottom: 0;
}

.basket__coupon_text:hover {
	color: #A3692E;
}

.basket__coupon_form-field input {
	max-width: 290px;
	padding: 0 15px;
	font-family: "SF Pro Display";
	margin-bottom: 0 !important;
	height: 46px !important;
}

.basket__coupon_form-field {
	position: relative;
}

.basket__coupon_form-add {
	right: 56px;
	top: 50%;
	transform: translate(0, -50%);
	line-height: 20px;
	height: 20px;
	width: 20px;
	text-decoration: none;
	position: absolute;
}

.remove__input_val {
	cursor: pointer;
	height: 20px;
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translate(0, -50%);
}

.basket__coupon_form-add.hide,
.basket__coupon_form.hide,
.basket__coupon_text.hide {
	display: none;
}

.coupon__info_list-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: start;
	margin-top: 2px;
	margin-bottom: 2px;
	padding-top: 3px;
	padding-bottom: 3px;
	min-height: 0;
	width: 100%;
	flex-wrap: nowrap;
	-webkit-box-align: start;
	align-items: flex-start;
}

.coupon__basket_info .coupon {
	color: #6F6F6F;
}

.text-muted .coupon__basket_alert {
	color: #87c73d;
}

.text-danger .coupon__basket_alert {
	color: #f9a91d;
}

.coupon__basket_close {
	position: relative;
	display: inline-block;
	margin-left: 10px;
	width: 20px;
	height: 20px;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAANhJREFUeNpEkM0KwjAQhGdr/Dv6Nj6EXkRvehTfRhS868lWWigU9OFEHGeTqIF0dydftrMJp0s1McMdwJ5AY0iLKaxVbwGbBxgeJKaCS4NjbJxQvlE4a/ektUFX9w5JCNolEzQmGCHlT8VjEFQjdvrBN0EOF4oOrXS5Cxmqs7NKVSEroPHlkLLOLRX4r5HOjenf3tE7DDyjxCLNx032ZFovSe80BK7Sl9IQmJ4gT4foSfowe+47jGx+xzidQxY9Zd/+/cLbIC8ztW9VHBL0fXDWGdeDc/ERYABB6E45iF95UQAAAABJRU5ErkJggg==) no-repeat center;
	vertical-align: middle;
	cursor: pointer;
	border-bottom: none;
	color: var(--primary);
	text-decoration: none;
	opacity: 1;
	transition: 220ms ease all;
}

.main-slider {
	position: relative;
}

.program-specials__list.container,
.program-levels.container,
.program-how.container,
.program-member.container,
.program-faq.container {
	margin-top: 120px;
}

.program-txt {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	flex-flow: column;
	max-width: 1624px;
	margin: 0 auto;
	font-size: 20px;
	line-height: 24px;
}

.program-txt div {
	max-width: 657px;
}

.program-txt h1 {
	font-family: 'SF-PRO';
	font-weight: 500;
	font-size: 56px;
	line-height: 68px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 0 0 24px;
}

.program-txt p {
	max-width: 465px;
}

.program-txt a {
	margin: 48px 0 0;
	width: max-content;
}

.program-specials__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.program-specials__item {
	padding: 40px 40px 54px;
	background: #F7F7F7;
	color: #6F6F6F;
}

.program-specials__item img {
	margin: 0 0 12px;
}

.program-specials__item h3 {
	margin: 0 0 8px;
	font-weight: 500;
	font-size: 28px;
	line-height: 32px;
	color: #262626;
}

.program-levels__list-top,
.program-levels__list-table__row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.program-levels__list-table__row {
	border-bottom: 1px solid #D1D1D3;
	padding: 24px 0;
}

.program-levels__item-desc__phone {
	display: none;
}

.program-levels h2 {
	margin: 0;
	text-transform: none;
	font-family: 'SF-PRO';
	font-weight: 500;
	font-size: 48px;
	line-height: 56px;
}

.program-how__txt h2,
.program-member h2,
.program-faq h2 {
	margin: 0 0 32px;
	text-transform: none;
	font-family: 'SF-PRO';
	font-weight: 500;
	font-size: 48px;
	line-height: 56px;
}

.program-levels__item {
	text-align: center;
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
}

.program-levels__item h3 {
	margin: 0;
	text-align: center;
	font-weight: 500;
	font-size: 36px;
	line-height: 40px;
}

.program-levels__item img {
	margin: 0 0 28px;
	border-radius: 50%;
}

.program-levels__item-titles {
	text-align: left;
	color: #6F6F6F;
}

.program-levels .btn-white {
	width: max-content;
	margin: 60px auto 0;
}

.program-how {
	background: #F7F7F7;
}

.program-how__box {
	margin: 0 auto;
	max-width: 1145px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 50px;
}

.program-how__txt {
	width: 100%;
	max-width: 685px;
	padding: 60px 0;
}

.program-how__txt ul li {
	position: relative;
	padding-left: 32px;
}

.program-how__txt ul li:after {
	content: '';
	position: absolute;
	background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0L11.9799 8.0201L20 10L11.9799 11.9799L10 20L8.0201 11.9799L0 10L8.0201 8.0201L10 0Z' fill='%23D1D1D3'/%3E%3C/svg%3E") no-repeat center center;
	width: 20px;
	height: 20px;
	left: 0;
	top: 0;
}

.program-how__txt ul li:not(:last-child) {
	margin: 0 0 16px;
}

.program-how__spec {
	margin: 48px 0 0;
	display: flex;
	align-items: normal;
	justify-content: space-between;
	max-width: 570px;
}

.program-how__spec img {
	border-radius: 50%;
	max-width: 64px;
}

.program-how__spec div {
	text-align: center;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-flow: column;
	position: relative;
}

.how-arrow {
	position: relative;
	width: 100%;
}

.how-arrow:after {
	content: '';
	position: absolute;
	background: #D1D1D3;
	height: 1px;
	top: 32px;
	left: 8px;
	right: 8px;
}

.how-arrow:before {
	content: '';
	position: absolute;
	right: 8px;
	top: 28px;
	background: url("data:image/svg+xml,%3Csvg width='145' height='8' viewBox='0 0 145 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M144.354 4.35355C144.549 4.15829 144.549 3.84171 144.354 3.64645L141.172 0.464466C140.976 0.269204 140.66 0.269204 140.464 0.464466C140.269 0.659728 140.269 0.976311 140.464 1.17157L143.293 4L140.464 6.82843C140.269 7.02369 140.269 7.34027 140.464 7.53553C140.66 7.7308 140.976 7.7308 141.172 7.53553L144.354 4.35355ZM0 4.5H144V3.5H0V4.5Z' fill='%23D1D1D3'/%3E%3C/svg%3E%0A") no-repeat top right;
	width: 5px;
	height: 8px;
}

.read-more__link {
	margin: 64px 0 0;
	font-weight: 500;
	font-size: 18px;
	line-height: 20px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 10px;
}

.read-more__link:after {
	content: '→';
	display: block;
}

.program-member {
	display: flex;
	align-items: center;
	gap: 60px;
	justify-content: space-between;
}

.program-member ol li:not(:last-child) {
	margin: 0 0 12px;
}

.program-member__item {
	display: flex;
	align-items: flex-start;
	gap: 24px;
}

.program-member__item:not(:last-child) {
	margin: 0 0 32px;
}

.program-member__left {
	width: 100%;
}

.program-member__right {
	width: 100%;
	max-width: 810px;
}

.program-member__item h3 {
	margin: 0 0 16px;
	font-weight: 500;
	font-size: 28px;
	line-height: 32px;
}

.program-faq.container {
	margin-bottom: 120px;
}

.program-faq__box {
	padding: 60px;
	background: #F7F7F7;
}

.program-faq .btn-white {
	margin: 60px auto 0;
	width: max-content;
}

.faq-list__box {
	display: flex;
	align-items: flex-start;
	gap: 60px;
}

.accordeon-list {
	width: 100%;
	position: relative;
	list-style: none;
	padding: 0px;
	/*columns: 2;
	gap:60px;*/
}

.accordeon-list .accordeon-item {
	cursor: pointer;
	position: relative;
	display: inline-block;
	width: 100%;
}

.accordeon-name {
	padding: 24px 30px 24px 0;
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
}

.accordeon-name:hover {
	color: #A3692E;
}

.accordeon-name:hover svg path {
	stroke: #A3692E;
}

.accordeon-icon {
	position: absolute;
	right: 0px;
	top: 25px;
}

.accordeon-cont {
	display: none;
}

.accordeon-item.opened h2.accordeon-name__title {
	color: var(--theme-color-dark);
}

.accordeon-item.opened .accordeon-icon svg {
	transform: rotate(180deg);
}

.accordeon-item.opened .accordeon-cont {
	padding-bottom: 24px;
}

.accordeon-item.opened .accordeon-cont b {
	color: var(--theme-color-dark);
}

@media screen and (max-width:1900px) {
	.program-txt h1 {
		font-size: 2.92vw;
		line-height: 3.54vw;
	}

	.program-txt,
	.program-levels__item {
		font-size: 1.04vw;
		line-height: 1.25vw;
	}

	.program-specials__item h3,
	.program-member__item h3 {
		font-size: 1.46vw;
		line-height: 1.67vw;
	}

	.program-levels h2,
	.program-how__txt h2,
	.program-member h2,
	.program-faq h2 {
		font-size: 2.50vw;
		line-height: 2.92vw;
	}

	.program-levels__item h3 {
		font-size: 1.88vw;
		line-height: 2.08vw;
	}

	body .btn-white {
		font-size: 0.94vw;
		height: 2.92vw;
	}
}

@media screen and (max-width:1200px) {
	.program-txt h1 {
		font-size: 28px;
		line-height: 34px;
	}

	.program-txt,
	.program-levels__item {
		font-size: 16px;
		line-height: 20px;
	}

	body .btn-white {
		height: 46px;
		font-weight: 500;
		font-size: 14px;
	}

	.program-txt div {
		max-width: 430px;
	}

	.program-specials__list.container,
	.program-levels.container,
	.program-how.container,
	.program-member.container,
	.program-faq.container {
		margin-top: 50px;
	}

	.program-specials__item h3,
	.program-member__item h3 {
		font-size: 20px;
		line-height: 24px;
	}

	.program-specials__item h3 {
		margin: 0 0 4px;
	}

	.program-specials__item {
		padding: 20px;
	}

	.program-levels__list-table {
		display: none;
	}

	.program-levels__item h3 {
		font-size: 22px;
		line-height: 26px;
		margin: 0 0 12px;
		text-align: left;
	}

	.program-levels__item-desc__phone {
		display: block;
	}

	.program-levels__item-desc {
		width: 100%;
	}

	.program-levels__item {
		display: flex;
		align-items: flex-start;
		gap: 18px;
		text-align: left;
	}

	.program-levels__item img {
		margin: 0;
		max-width: 72px;
	}

	.program-levels__list-top {
		grid-template-columns: repeat(1, 1fr);
	}

	.program-levels__item-desc__phone div:not(:last-child) {
		margin: 0 0 12px;
	}

	.program-levels__item-desc__phone h4 {
		font-size: 14px;
		line-height: 18px;
		color: #6F6F6F;
		margin: 0 0 4px;
	}

	.program-levels h2,
	.program-how__txt h2,
	.program-member h2,
	.program-faq h2 {
		font-size: 24px;
		line-height: 28px;
		margin: 0 0 24px;
	}

	.accordeon-list {
		columns: inherit;
	}

	.program-faq.container {
		margin-bottom: 50px;
	}

	.program-how__box {
		padding: 30px 0 0;
	}
}

@media screen and (max-width:800px) {
	.program-how__box {
		flex-flow: column;
		gap: 40px;
		align-items: center;
	}

	.program-how__txt {
		order: -1;
		padding: 0;
	}

	.program-member {
		flex-flow: column;
		gap: 24px;
	}

	.faq-list__box {
		display: block;
	}
}

@media screen and (max-width:736px) {
	.program-specials__list {
		grid-template-columns: repeat(1, 1fr);
		gap: 8px;
	}

	.program-txt {
		color: #fff;
		justify-content: flex-end;
	}

	.program-txt:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: 266px;
		background: linear-gradient(180deg, rgba(38, 38, 38, 0) 0%, rgba(38, 38, 38, 0.8) 100%);
	}

	.program-txt.container {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.program-txt h1 {
		margin: 0 0 6px;
		color: #fff;
		position: relative;
		z-index: 2;
	}

	body .btn-white {
		width: 100%;
	}

	.program-txt p {
		position: relative;
		z-index: 2;
	}

	.program-txt a {
		margin: 24px 0 0;
		position: relative;
		z-index: 2;
	}

	.program-specials__item {
		display: flex;
		align-items: flex-start;
		gap: 14px;
		font-size: 14px;
	}

	.program-specials__item img {
		max-width: 32px;
	}

	.program-levels h2 {
		margin: 0;
	}

	.program-levels .btn-white {
		width: 100%;
		margin: 44px 0 0;
	}

	.program-how__txt {
		font-size: 14px;
	}

	.program-how__spec {
		margin: 24px 0 0;
	}

	.program-how__spec img {
		max-width: 42px;
	}

	.program-how__spec div {
		font-size: 12px;
	}

	.how-arrow:after {
		top: 21px;
	}

	.how-arrow:before {
		top: 17px;
	}

	.read-more__link {
		margin: 32px 0 0;
		font-size: 14px;
	}

	.program-how__box {
		gap: 0;
	}

	.program-member__item img {
		max-width: 32px;
	}

	.program-member__item {
		gap: 14px;
	}

	.program-member ol {
		padding-left: 16px;
	}

	.program-member ol li {
		font-size: 14px;
		color: #6F6F6F;
	}

	.program-faq.container {
		padding: 0;
	}

	.program-faq__box {
		padding: 40px 20px;
	}

	.accordeon-name {
		font-size: 18px;
		padding: 12px 40px 12px 0;
		position: relative;
	}

	body .accordeon-icon {
		right: 0px;
		top: 50%;
		margin-top: -12px;
	}

	body .accordeon-cont {
		padding: 0;
		font-size: 14px;
		color: #6F6F6F;
	}

	.accordeon-item.opened .accordeon-cont {
		padding-bottom: 12px;
	}

	.program-faq .btn-white {
		margin: 26px 0 0;
		width: 100%;
	}
}

.footer__center {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 225px;
	text-align: center;
	gap: 10px;
}

.footer__center_desc,
.footer__center_desc a {
	color: var(--color-gray);
}

.footer__center_desc a {
	text-decoration: underline;
}

.footer__center .footer__menu-title {
	margin-bottom: 0;
}

.footer__right {
	gap: 50px;
	padding: 0;
}

.footer__menu_qr-mobile {
	display: none;
}

@media screen and (max-width:1150px) {
	.footer__right {
		gap: 0px;
	}
}

@media screen and (max-width:992px) {
	.footer__center {
		display: none;
	}
}



.header-main__logo-icon path,
.header-main__logo-icon ellipse {
	fill: #fff;
}

@media screen and (max-width:576px) {
    .header-main__logo-icon {
        width: 55px;
    	height: auto;
    }

	.footer__menu_qr-mobile {
		display: block;
	}

	.basket__coupon_text {
		display: inline-block;
		-webkit-text-decoration-line: underline;
		text-decoration-line: underline;
		text-underline-offset: 3px;
		cursor: pointer;
		margin-bottom: 5px;
		font-size: 16px;
	}

	.basket__coupon_custom.order__coupon {
		margin-top: 12px;
	}

	.basket__coupon_custom.order__coupon .basket__coupon_text {
		margin-bottom: 0;
	}

	.basket__coupon_text:hover {
		color: #A3692E;
	}

	.basket__coupon_form-field input {
		max-width: 290px;
		padding: 0 15px;
		font-family: "SF Pro Display";
		margin-bottom: 0 !important;
		height: 46px !important;
	}

	.basket__coupon_form-field {
		position: relative;
	}

	.basket__coupon_form-add {
		right: 56px;
		top: 50%;
		transform: translate(0, -50%);
		line-height: 20px;
		height: 20px;
		width: 20px;
		text-decoration: none;
		position: absolute;
	}

	.remove__input_val {
		cursor: pointer;
		height: 20px;
		position: absolute;
		right: 4px;
		top: 50%;
		transform: translate(0, -50%);
	}

	.basket__coupon_form-add.hide,
	.basket__coupon_form.hide,
	.basket__coupon_text.hide {
		display: none;
	}

	.coupon__info_list-item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: start;
		margin-top: 2px;
		margin-bottom: 2px;
		padding-top: 3px;
		padding-bottom: 3px;
		min-height: 0;
		width: 100%;
		flex-wrap: nowrap;
		-webkit-box-align: start;
		align-items: flex-start;
	}

	.coupon__basket_info .coupon {
		color: #6F6F6F;
	}

	.text-muted .coupon__basket_alert {
		color: #87c73d;
	}

	.text-danger .coupon__basket_alert {
		color: #f9a91d;
	}

	.coupon__basket_close {
		position: relative;
		display: inline-block;
		margin-left: 10px;
		width: 20px;
		height: 20px;
		background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAANhJREFUeNpEkM0KwjAQhGdr/Dv6Nj6EXkRvehTfRhS868lWWigU9OFEHGeTqIF0dydftrMJp0s1McMdwJ5AY0iLKaxVbwGbBxgeJKaCS4NjbJxQvlE4a/ektUFX9w5JCNolEzQmGCHlT8VjEFQjdvrBN0EOF4oOrXS5Cxmqs7NKVSEroPHlkLLOLRX4r5HOjenf3tE7DDyjxCLNx032ZFovSe80BK7Sl9IQmJ4gT4foSfowe+47jGx+xzidQxY9Zd/+/cLbIC8ztW9VHBL0fXDWGdeDc/ERYABB6E45iF95UQAAAABJRU5ErkJggg==) no-repeat center;
		vertical-align: middle;
		cursor: pointer;
		border-bottom: none;
		color: var(--primary);
		text-decoration: none;
		opacity: 1;
		transition: 220ms ease all;
	}
}




.main__slider {
    height: 100vh;
    height: var(--vh, 100vh);
}

.main__slider>div>.swiper-slide {
	/* display: flex;
	justify-content: center;
	align-items: center; */
	height: 100vh;
    height: var(--vh, 100vh);
	/* background-color: lightcoral;
	color: white;
	font-size: 2rem; */
}

.header-main {
	position: fixed;
	top: 0;
}

.top-bar {
	position: absolute;
	width: 100%;
	z-index: 2;
}

.main-slider__content {
	top: auto;
	left: 50%;
	transform: translateX(-50%);
	bottom: 75px;
}

.main-page .container {
	max-width: 1940px;
	width: 100%;
}

.top-bar_window-wrapp {
	position: relative;
	padding: 9px 0;

	display: flex;
	align-items: center;
	justify-content: center;
}

.top-bar_window-close {
	position: absolute;
	right: 0;
	cursor: pointer;
}

.top-bar_window-close svg path {
	transition: .3s;
}

.top-bar_window-content {
	text-align: center;
	color: #EFEBE1;
	line-height: 22px;
	text-transform: uppercase;
}
.top-bar_window-content a {
	color: #EFEBE1;
	text-decoration: underline;
}

.top-bar_window {
	background: #660016;
	width: 100%;

}

.header-main__white-theme._sticky.black-color.main__header {
	background: #fff;
}

.section__catalog {
	overflow: hidden;
}

.section__catalog img {
	width: 100%;
}

.main__section {
	position: relative;
	height: 100%;
}

.main__section_content {
	position: absolute;
	bottom: 40px;
	text-align: center;
	width: 100%;
	right: 0;
}

.main__section_content-title {
	color: #fff;
	font-family: 'Playfair Display';
	font-weight: 500;
	font-size: 24px;
	line-height: 33px;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.main__section_content a {
	color: #fff;
	line-height: 22px;
	text-transform: uppercase;
}

.main__section video {
	width: 100%;
	object-fit: cover;
	height: 100%;
}

.main__section_controls {
	position: absolute;
	left: 40px;
	bottom: 0;
	border-radius: 50%;
	background: rgb(119 118 115 / 30%);
	border: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	z-index: 2;
	cursor: pointer;
	transition: .3s;
}

.main__section_controls:hover {
	background: rgb(153 151 146 / 50%);
}

.main__section_controls img {
	width: 11px;
}

.section__stories {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 80px;
}

.section__stories_item {
	height: 70vh;
	display: block;
	position: relative;
	color: #fff;
}

.section__stories_item:hover {
	color: #fff;
}

.section__stories_item-name {
	position: absolute;
	bottom: 0;
	left: 0;
	font-family: 'Playfair Display';
	font-weight: 500;
	font-size: 24px;
	line-height: 33px;
	height: 94px;
	display: flex;
	align-items: center;
	padding-left: 32px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
	width: 100%;
	text-transform: uppercase;
}

.main__stories,
.main__shops {
	overflow: hidden;
	margin: 0 68px;
}

.section__stories_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 68px 24px;
}

.section__stories_head-title {
	font-family: 'Playfair Display';
	font-weight: 500;
	font-size: 24px;
	line-height: 33px;
	color: #28201E;
	text-transform: uppercase;
}

.section__stories_head-btn a {
	display: flex;
	align-items: center;
	gap: 12px;
	text-transform: uppercase;
	color: #28201E;
	line-height: 22px;
}

.section__stories .container {
	position: relative;
}
.section__stories .swiper-button-prev:hover:before,
.section__stories .swiper-button-next:hover:before {
	background-color: #78716C;
}
.section__stories .swiper-button-prev:before {
	content: '';
	position: absolute;
	width: 40px;
	height: 40px;
	transform: rotate(180deg);

	transition: .3s;
	background-color: #28201E;
    -webkit-mask-image: url(/local/templates/luisawang/css/./svg/next-slide-black.svg);
    mask-image: url(/local/templates/luisawang/css/./svg/next-slide-black.svg);
	mask-repeat: no-repeat;
	mask-position: center;
}

.section__stories .swiper-button-next:before {
	content: '';
	position: absolute;
	width: 40px;
	height: 40px;

	transition: .3s;
	background-color: #28201E;
    -webkit-mask-image: url(/local/templates/luisawang/css/./svg/next-slide-black.svg);
    mask-image: url(/local/templates/luisawang/css/./svg/next-slide-black.svg);
	mask-repeat: no-repeat;
	mask-position: center;
}
.section__stories_item:hover:after {
	opacity: .2;
}
.section__stories_item:after {
	content: '';
	position: absolute;
	height: 100%;
	background: #000;
	opacity: .1;
	width: 100%;
	transition: .3s;
}

.section__stories .swiper-button-next,
.section__stories .swiper-button-prev {
	width: 40px;
	height: 40px;
}

.section__stories .swiper-button-next {
	right: 40px;
}

.section__stories .swiper-button-prev {
	left: 40px;
}



.main__header_left-menu,
.mobile-menu__close-menu,
.modal__wishlist_head-close-modal {
	position: relative;
	width: 22px;
	height: 12px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.main__header_left-menu .line,
.mobile-menu__close-menu .line,
.modal__wishlist_head-close-modal .line {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #EFEBE1;
	/* Цвет линий */
	border-radius: 2px;
	transition: .3s;
	/* transition: transform 0.3s ease, opacity 0.3s ease; */
}
.mobile-menu__close-menu .line,
.modal__wishlist_head-close-modal .line {
	background-color: #28201E;
}
.main__header_left-menu.active .line:nth-child(1),
.mobile-menu__close-menu .line:nth-child(1),
.modal__wishlist_head-close-modal .line:nth-child(1){
	transform: translateY(5px) rotate(45deg);
}
.close__cross:hover .line {
	background-color: #78716C;
}
.js-header-delete-basket-item:hover path {
	stroke: #28201E;
}
.main__header_left-menu.active .line:nth-child(2),
.mobile-menu__close-menu .line:nth-child(2),
.modal__wishlist_head-close-modal .line:nth-child(2) {
	transform: translateY(-5px) rotate(-45deg);
}
.main__header_left {
	width: 300px;
}
.main__header_left-wrapp>span {
	text-transform: uppercase;
	color: #EFEBE1;
	line-height: 22px;
	cursor: pointer;
	width: max-content;
    cursor: pointer;
	transition: .3s;
}

.main__header .main__header_left-wrapp:hover .main__header_left-menu .line {
	background-color: var(--color-gray);
}
.main__header .main__header_left-wrapp:hover span {
	color: var(--color-gray);
}

.main__header.black-color .main__header_left .main__header_left-wrapp:hover>span {
	color: var(--color-gray);
}  
.main__header.black-color .main__header_left-wrapp:hover .line {
	background-color: var(--color-gray);
}

.main__header_left-wrapp {
	display: flex;
	gap: 25px;
	align-items: center;
	z-index: 102;
    position: relative;
	width: max-content;
}

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

.home-page .main__header .main__header_top {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}

.main__header .main__header_top {
	padding: 16px 0;
}
.main__header_left-wrapp.mobile__close_btn {
	padding-bottom: 30px;
}
.mobile__close_btn  .main__header_left-menu .line {
	background-color: #28201E;
}
.mobile__close_btn.main__header_left-wrapp>span {
    color: #28201E;
}
.main__header_right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 300px;
}
.main__header_right a {
	display: flex;
	width: 48px;
	height: 48px;
	align-items: center;
	justify-content: center;
}

.main__header.black-color,
.main__header.black-color .main__header_left .main__header_left-wrapp>span {
	color: #28201E;
}
.main__header.black-color .main__header_left-menu .line,
.mobile-menu__logo .black-color {
	background-color: #28201E;
}
.main__header.black-color .main__header_center svg path {
	fill: #28201E;
}
.main__header.black-color .main__header_right svg path {
	stroke: #28201E;
}

.footer__wrapp_top {
	display: flex;
	justify-content: space-between;
	padding-bottom: 100px;
}
.footer__wrapp_top-center {
	display: flex;
	gap: 32px;
}
.footer__wrapp {
	height: 100vh;
    height: var(--vh, 100vh);
    display: flex;
    align-items: center;
}
.footer__wrapp_top-left-title {
	margin: 16px 0 4px 0;
    line-height: 22px;
    text-transform: uppercase;
}
.footer__wrapp_top-left-subtitle {
	color: #78716C;
    font-size: 14px;
    line-height: 19px;
}
.footer__wrapp_top-left {
	max-width: 250px;
}
.footer__wrapp .container {
	width: 100%;
	max-width: 1708px;
}

.footer__wrapp_top-left_flex {
	margin-top: 28px;
}
.footer__wrapp_bottom {
	padding: 24px 0;
	border-top: 1px solid #CFCBC2;
}
.footer__wrapp_bottom .footer__right {
	padding: 0;
}
.footer__wrapp .footer__menu-title {
	color: #78716C;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 28px;
}
.footer__wrapp .footer__menu-list {
	gap: 20px;
}
.footer__wrapp .footer__menu-link {
	color: #28201E;
    line-height: 22px;
    text-transform: uppercase;
	transition: .3s;
}
.footer__wrapp .footer__menu-link:hover {
	color: #78716C;
}
.footer__wrapp .footer__menu {
    width: 237px;
}
.footer__wrapp_top-right {
	width: 338px;
}
.footer__wrapp .block-subscription__title {
	font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.footer__wrapp .js-subscribe-form .block-subscription__desc {
	margin: 12px 0 0 0;
    font-size: 14px;
    line-height: 20px;
    color: #78716C;
}
.js-subscribe-success .block-subscription__desc {
	font-size: 14px;
    line-height: 20px;
}
.swiper-scrollbar {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px; /* Ширина scrollbar */
}
.tabbar__menu {
	position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9;
	display: none;
}
.tabbar__menu_list {
    display: flex;
    justify-content: space-between;
}
.tabbar__menu_item,
.tabbar__menu_item a {
	width: 100%;
}
.tabbar__menu_item a {
	display: block;
	padding: 15px 0;
    text-align: center;
	font-size: 12px;
	color: #EFEBE1;
	line-height: 17px;
	text-transform: uppercase;
}
.footer__wrapp_block {
	height: 100%;
	padding-top: 100px;
}
.section__stories_item-title {
	display: none;
}
.main__stories .swiper-stories-pagination,
.main__shops .swiper-shops-pagination {
    position: absolute;
	bottom: 66px;
    width: 100%;
    display: none;
    justify-content: center;
    gap: 0;
    z-index: 2;
}
.main__stories .swiper-pagination-bullet,
.main__shops .swiper-pagination-bullet {
	opacity: .3;
    position: relative;
    width: 100px;
    height: 2px;
    background-color: #EFEBE1;
	border-radius: 0;
	margin: 0 !important;
}
.main__stories .swiper-progressbar,
.main__shops .swiper-progressbar {
	height: 100%;
	background-color: #EFEBE1;
}
.main__stories .swiper-pagination-bullet.swiper-pagination-bullet-active,
.main__shops .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: rgb(239 235 225 / 30%);
}


.main__slider .swiper-pagination-vertical.swiper-pagination-bullets, 
.main__slider.swiper-vertical>.swiper-pagination-bullets {
    left: 5px;
	right: auto;
}
.main__slider .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 4px 0;
	width: 4px;
    height: 4px;
    background: #EFEBE1;
	opacity: .3;
}

.main__slider .swiper-pagination-vertical {
	display: none;
}

.main__slider .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
}

.mobile__window,
.modal__wishlist,
.modal__basket {
	background: #fff;
    height: 100%;
    width: 480px;
    position: fixed;
    z-index: 105;
	display: none;
	top: 0;
}
.wishlist__item_center-line {
	height: 14px;
	width: 1px;
	background: #CFCBC2;
}
.modal_right {
	right: 0;
}
/* .mobile__window.active {
	display: block;
} */
.mobile__list_menu {
	overflow: scroll;
    height: 80vh;
}
.mobile__menu_item.mobile__menu_item-skip {
	margin-bottom: 20px;
}
.mobile__menu_item>a,
.mobile__menu_item>div {
	display: block;
    padding: 9px 0;
    color: #28201E;
    line-height: 22px;
    text-transform: uppercase;
}
.mobile__menu_item.mobile__menu_item_drop {
	cursor: pointer;
	display: flex;
    gap: 8px;
    align-items: center;
}
.main__header_right-favorites span,
.main__header_right-cart span {
	position: relative;
	cursor: pointer;
}
.mobile__menu_item.mobile__menu_item-red>a,
.mobile__menu_item.mobile__menu_item-red>div {
	color: #660016;
}
.mobile__menu_item.mobile__menu_item-red>a:hover,
.mobile__menu_item.mobile__menu_item-red>div:hover {
	color: #A55A6A;
}
.mobile__menu_item_drop:hover {
	color: #78716C;
}
.mobile__menu_item>a:hover {
	color: #78716C;
}
.mobile__menu_item>a>sup {
	margin-left: 8px;
    font-size: 12px;
    line-height: 17px;
}

.mobile__menu_item_drop:after {
	content: '';
    width: 16px;
    height: 16px;
	display: none;

	background-repeat: no-repeat;
	background-color: #28201E;
    -webkit-mask-image: url(/local/templates/luisawang/css/./img/icon/arrrow-bottom.svg);
    mask-image: url(/local/templates/luisawang/css/./img/icon/arrrow-bottom.svg);
	mask-repeat: no-repeat;
    mask-size: 16px 16px;
}
.mobile__menu_item_drop:hover:after {
	display: block;
	background-color: #78716C;
}
.mobile__menu_item-red .mobile__menu_item_drop:hover:after {
	background-color: #A55A6A;
}
.mobile__menu_item-red .mobile__menu_item_drop:after {
	background-color: #660016;
}

.mobile__list_menu-bottom {
	padding: 0 0 14px 16px;
	display: none;
}
.mobile__menu-active .mobile__list_menu-bottom {
	display: block;
}
.mobile__menu-active .mobile__menu_item_drop {
	font-weight: 600;
}

.mobile__menu-active .mobile__menu_item_drop:after {
	display: block;
	transform: rotate(180deg);
}
.mobile-menu {
	display: none;
}
.main__header_right .icon svg path,
.section__stories_head-btn a svg path,
.section__stories_head-btn a  {
	transition: .3s;
}
.top-bar_window-close:hover svg path {
	fill: var(--color-gray);
}
.section__catalog .main__section_content a:hover,
.section__stories_head-btn a:hover {
	color: var(--color-gray);
}
.main__header_right .icon:hover svg path,
.section__stories_head-btn a:hover svg path {
	stroke: var(--color-gray);
}
.main__header_right .icon:hover .personal-count {
	background-color: var(--color-gray);
}
.tabbar__menu_item.mobile-menu-bottom__item-active a {
    border-top: 1px solid #28201E;
}

.main__header.black-color .personal-count {
	color: #fff;
	background-color: #28201E;
}

.modal__wishlist_head {
	padding: 40px 40px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal__wishlist_head-name {
	font-weight: 600;
    text-transform: uppercase;
}

.modal__wishlist_body {
	padding: 0 40px 0 40px;
	overflow: scroll;
}

.wishlist__item {
	padding: 24px 0;
	border-bottom: 1px solid #CFCBC2;
}

.wishlist__item:last-child {
	border-bottom: none;
}

.modal__wishlist_footer {
	padding: 16px 40px 24px;
}
.btn.btn-black-new {
	font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    padding: 14px 0;
    height: auto;
    border: 0;
	background: #28201E;
	color: #fff;
	transition: .3s;
}

.btn.btn-black-new:hover {
	background: #3E3635;
	color: #fff;
}

.wishlist__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	justify-content: space-between;
}

.wishlist__item_left {
	max-width: 80px;
}

.wishlist__item_center {
	width: 100%;
}

.wishlist__item_center-name a {
	line-height: 22px;
    text-transform: uppercase;
}
.wishlist__item_center-name {
	margin-bottom: 6px;
}

.wishlist__item_center-new-price {
	font-weight: 600;
    line-height: 22px;
}
.wishlist__item_center-price-flex {
	gap: 8px;
    display: flex;
    align-items: center;
	margin-bottom: 12px;
}
.wishlist__item_center-color-flex {
	display: flex;
    align-items: center;
    gap: 10px;
}
.modal__wishlist_footer_total {
	display: flex;
	margin-bottom: 16px;
	justify-content: space-between;

	font-weight: 600;
    text-transform: uppercase;
    line-height: 22px;
}
.wishlist__item_center-new-price.price__red-color {
	color: #660016;
	font-weight: 600;
}
.wishlist__item_center-old-price {
	text-decoration: line-through;
    color: var(--color-gray);
    line-height: 22px;
}
.wishlist__item_center-color_name {
	line-height: 22px;
    text-transform: uppercase;
}
.wishlist__item_center-color {
	display: flex;
    gap: 4px;
    align-items: center;
}
.wishlist__item_center-color_bg {
	width: 14px;
    height: 14px;
    border-radius: 50%;
}
.wishlist__item_right {
	cursor: pointer;
}

.js-empty-wishlist h5,
.js-empty-basket h5 {
	font-weight: 600;
	line-height: 22px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.js-empty-wishlist p,
.js-empty-basket p {
	line-height: 22px;
	text-transform: uppercase;
}

.js-empty-wishlist .modal__wishlist_body,
.js-empty-basket .modal__wishlist_body  {
	margin-bottom: 32px;
	margin-top: 120px;
	text-align: center;
}

.modal__wishlist .wishlist__item_right:hover path {
	fill: #78716C;
	stroke: #78716C;
}

#retailcrm-consultant-app.retail_loaded .consultant-widget-wrap {
	display: none;
}

.main-slider__item a:before,
.section__catalog .main__section>a:before {
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
	background: rgb(0 0 0 / 10%);
}

#delivery-map.popup {
    min-width: auto;
    max-width: 100%;
	width: 100%;
}

.modal-sidebar__close.close {
	position: static;
    margin: 0;
}

.modal-sidebar__header {
	align-items: center;
}

.modal-delivery-map__mobile-header-back.close {
	position: absolute;
    top: 30px;
}

#delivery-map.popup #map {
	height: 100%;
	margin: 0;
}

.delivery-map-flex {
	display: flex;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 1430px) {
	.footer__wrapp_top-center {
		gap: 12px;
	}
	.footer__wrapp .footer__menu {
		width: 200px;
	}
}
@media screen and (max-width: 1250px) {
	.footer__wrapp_top {
		padding-bottom: 50px;
		flex-wrap: wrap;
		gap: 50px;
		padding-top: 100px;
	}
	.footer__wrapp_top-center {
		order: 3;
		width: 100%;
   	 	justify-content: space-between;
	}
}
@media screen and (max-width: 1200px) {
	.footer__wrapp .container {
		height: 70vh;
		overflow: scroll;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}
@media screen and (max-width: 768px) {
	.main__header_right>div:not(:first-child),
	.main__header_left span,
	.main__section_content a,
	.section__stories_head {
		display: none;
	}
	.footer__wrapp_block {
		padding-top: 0;
	}
	.main__stories .swiper-stories-pagination,
	.main__shops .swiper-shops-pagination {
		display: flex;
		padding: 0 10px;
	}
	.section__stories_item-title {
		/* bottom: 125px; */
		justify-content: center;
		padding: 0;
		height: auto;
		background: none;
		width: 100%;
		display: flex;
		/* position: absolute; */
		text-transform: uppercase;
	}
	.main__header_right,
	.main__header_left {
		width: 50px;
	}
	.tabbar__menu {
		display: block;
	}
	.main-slider__content {
		bottom: 86px;
	}
	.main-slider__sub-title {
		margin-bottom: 4px;
	}
	.main-slider .swiper-top-banner-pagination,
	.main__section_content {
        bottom: 66px;
    }
	.main__section_content-title {
		margin-bottom: 0;
	}
	.main__section_controls {
		right: 40px;
		left: auto;
	}
	.main__stories,
	.main__shops {
		margin: 0;
		width: 100%;
	}
	.section__stories .container {
		height: 100vh;
		height: var(--vh, 100vh);
    	padding: 0;
	}
	.section__stories_item {
		height: 100vh;
		height: var(--vh, 100vh);
	}
	.section__stories {
		padding: 0;
	}
	.main__slider .swiper-pagination-vertical {
		display: block;
	}
	.section__stories_item-name {
		/* bottom: 86px; */
		justify-content: center;
		padding: 0 10px;
		text-align: center;
		height: auto;
		background: none;
		width: 100%;
		position: static;
		margin-top: 4px;
	}
	.inner-slider {
		height: 100vh;
    	/* overflow-y: auto;
    	-webkit-overflow-scrolling: touch; */
	}
	.section__stories_item-wrapp {
		position: absolute;
    	bottom: 86px;
   		width: 100%;
	}
	.tabbar__menu.black-color {
        border-top: 1px solid #CFCBC2;
		background: #fff;
	}
	.tabbar__menu.black-color .tabbar__menu_item a {
		color: #78716C;
	}
	.main-slider__sub-title {
		font-size: 12px;
		line-height: 17px;
	}
	.main-slider__title {
		line-height: 33px;
	}
	.footer__wrapp {
		padding-top: 110px;
		padding-bottom: 20px;
	}
	/* .footer__wrapp .container {
		padding-top: 60px;
	} */
	.footer__wrapp .container,
	.footer__wrapp_block {
		height: 100%;
	}
	.footer__wrapp {
		/* overflow: scroll; */
		height: 100vh;
		height: var(--vh, 100vh);
	}
	/* .footer__wrapp_block {
		height: max-content;
	}
	.footer {
		overflow: auto;
	}
	.footer__wrapp .container,
	.footer__wrapp {
		height: auto;
	} */
	.main__header.black-color {
		background: #fff;
	}
	.footer__wrapp_top {
		padding-top: 0;
	}
}
@media screen and (max-width: 576px) {
	/* .header-main {
		padding: 11px 0;
	} */
	.main__header_center svg {
		height: 24px;
		width: auto;
	}
	.main__section_controls {
		width: 24px;
		height: 24px;
		right: 16px;
	}
	.section__stories_item-title {
		font-size: 12px;
        line-height: 17px;
		bottom: 120px;
	}
	.main__stories .swiper-pagination-bullet,
	.main__shops .swiper-pagination-bullet {
        width: auto;
        flex: auto;
    }
	.main__stories .swiper-stories-pagination, 
	.main__shops .swiper-shops-pagination {
        padding: 0 60px;
    }
	.footer__wrapp_top-left>img,
	.footer__wrapp_top-left-subtitle {
		display: none;
	}
	.footer__wrapp_top-left-title {
		margin: 0;
		font-size: 14px;
		color: #78716C;
		line-height: 20px;
	}
	.footer__wrapp_top-left_flex {
		margin-top: 14px;
	}
	.footer__wrapp_top-left {
		max-width: 100%;
	}
	.footer__wrapp_top-right {
		width: 100%;
		order: 2;
	}
	.footer__wrapp_top-center {
		order: 1;
		flex-direction: column;
	}
	.footer__wrapp .footer__menu {
		width: 100%;
		padding: 0;
		border: 0;
	}
	.footer__wrapp .footer__menu-title {
		margin-bottom: 0;
	}
	.footer__menu-title::after {
		background-image: url(/local/templates/luisawang/css/./img/icon/arrrow-bottom.svg);
	}
	.footer__menu-active .footer__menu-title::after {
		transform: rotate(180deg) translateY(50%);
	}
	.footer__wrapp_top-center {
		gap: 0;
	}
	.footer__wrapp .footer__menu-title {
		font-size: 14px;
		color: #28201E;
		line-height: 20px;
		padding: 13px 0;
	}
	.footer__wrapp .footer__menu-list {
		gap: 0;
		margin: 0;
	}
	.footer__wrapp .footer__menu-link {
		font-size: 14px;
		color: #78716C;
		line-height: 20px;
		padding: 13px 0;
		display: block;
	}
	.footer__wrapp .block-subscription__input-wr {
		width: calc(100% - 50px);
	}
	.footer__wrapp .block-subscription__input {
		width: 100%;
	}
	.footer__wrapp_top {
		gap: 28px;
	}
	.footer__wrapp .block-subscription__title {
		margin-bottom: 16px;
		font-size: 14px;
		color: #78716C;
		line-height: 20px;
	}
	.footer__wrapp_top {
		padding: 0;
	}
	.footer__row-bottom {
		gap: 24px;
	}
	.footer__wrapp_bottom {
		padding: 32px 0;
	}
	.top-bar_window {
		font-size: 12px;
	}
	.top-bar_window-wrapp {
		padding: 5px 0;
	}
	.mobile__window,
	.mobile__window.active {
		display: none;
	}
	.mobile-menu {
		padding: 0;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.mobile-menu__wrapp {
		padding: 0 16px 0;
	}
	.mobile-menu__header {
		padding: 6px 0;
	}
	.mobile-menu__middle {
		padding: 16px 0;
	}
	.mobile-menu__logo-icon {
		width: 62px;
	}
	.mobile-menu__logo-icon path {
		fill: #28201E;
	}
	.mobile-menu .main__header_right-search path,
	.mobile-catalog .mobile-catalog__search path {
		stroke: #28201E;
	}
	.mobile-menu__close {
		height: 17px;
		width: 17px;
	}
	.mobile-menu__close-menu {
		width: 18px;
    	height: 12px;
	}
	.mobile-menu__close-menu .line {
		height: 1.5px;
	}
	.mobile-item__name {
		font-size: 14px;
		line-height: 20px;
		text-transform: uppercase;
	}
	.mobile-menu__menu-parent::after,
	.mobile-menu__item::after {
		background-image: url(/local/templates/lusio/./img/icon/arrrow-bottom.svg);
	}
	.mobile-menu__item::after {
		transform: translateY(-50%) rotate(270deg);
		background-position: right;
		height: 16px;
   		width: 16px;
	}
	.mobile-menu__menu-item-active::after {
        transform: rotate(180deg) translateY(50%);
		height: 14px;
    }
	.mobile-menu__menu-title {
		font-size: 14px;
		line-height: 20px;
		text-transform: uppercase;
	}
	.mobile-menu__menu-item {
		padding: 13px 0;
		border-bottom: 1px solid #CFCBC2;
	}
	.mobile-menu__menu-list {
		gap: 0;
		padding: 13px 0 0 0;
	}
	.mobile-menu__menu-link {
		padding: 13px 0;
		font-size: 14px;
		color: #78716C;
		text-transform: uppercase;
	}
	.mobile-menu__menu {
		margin-bottom: 48px;
	}
	.mobile-menu .socials {
		justify-content: flex-start;
		margin-top: 32px;
		margin-bottom: 56px;
	}
	.mobile__personal_wrapp {
		display: flex;
    	align-items: center;
    	justify-content: space-between;
	}
	.mobile__personal_wrapp path {
		stroke: #28201E;
	}
	.mobile__personal_wrapp a {
		display: flex;
		align-items: center;
		gap: 8px;
	}
	.mobile__personal {
		padding: 16px;
    	border-top: 1px solid #CFCBC2;
	}
	.mobile-catalog__title {
		font-size: 14px;
		text-transform: uppercase;
		font-weight: 600;
		line-height: 20px;
	}
	.mobile-catalog__header {
		padding: 14px 16px;
		border-bottom: 0;
		margin: 0 -16px;
	}
	.mobile-catalog {
		padding: 0 16px;
	}
	.mobile-catalog__catalog .mobile-menu__menu-item {
		border: 0;
	}
	.mobile-catalog__catalog .mobile-menu__menu-title {
		padding: 0;
	}

	.mobile-catalog .mobile-menu__menu-link {
		color: #28201E;
	}
	.mobile-catalog__catalog .mobile-menu__menu-list {
		padding-left: 24px;
	}
}




/* End */


/* Start:/local/templates/luisawang/components/lusio/sale.basket.basket/full_cart/style.css?1751973002107860*/
.symbol_ruble {
	/* font-family: 'rubleBitrix', Arial, sans-serif */
}

.basket-root__header-inner {
	padding: 0px 53px 30px;
}

@media (max-width: 768px) {
	.basket-root__header-inner {
		padding: 0px 20px 30px;
	}
}

.basket-root__header-inner h1 {
	/* font-family: 'GT Eesti Pro Light'; */
	display: inline-block;
}

.basket-root__header_count {
	font-size: 16px;
	line-height: 19px;
	letter-spacing: 0.02em;
	color: var(--theme-color-dark);
	margin-left: 20px;
}

.basket-checkout-container {
	background-color: #fff;
	opacity: 1;
	transition: opacity 250ms ease;
}

.basket-checkout-container.basket-checkout-container-fixed {
	position: fixed;
	top: 0;
	z-index: 100;
}

.basket-checkout-container.basket-checkout-container-fixed-hide {
	opacity: 0;
}

.basket-content__inner {
	min-width: 66%;
}

.basket-total-block__wrapper {
	width: 100%;
	padding: 0 25px 0 45px;
}

.basket-checkout-block-total__wrapper {
	background: #F3F3F3;
	padding: 30px;
	margin-bottom: 16px;
}

@media (max-width: 768px) {

	.basket-total-block__wrapper {
		padding: 0 25px 25px 25px;
		max-width: 480px;
		margin: 45px auto;
	}

}

/*region Coupon*/
.basket-coupon-section {
	flex: 2;
}

.basket-coupon-block-field-description {
	color: #a1a1a1;
}

.basket-coupon-block-field {
	min-width: 235px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.basket-coupon-block-total-price-current__text {
	font-size: 20px;
}

.basket-coupon-block-total-price-current__wrapper .basket-coupon-block-total-price-current {
	font-size: 20px;
}

.basket-coupon-block-coupon-btn {
	position: absolute;
	top: 50%;
	right: 13px;
	display: block;
	margin-top: -10px;
	padding: 0;
	width: 8px;
	height: 8px;
	border: none;
	border-right: 2px solid #8da3ad;
	border-bottom: 2px solid #8da3ad;
	border-radius: 0;
	background-color: transparent;
	content: "";
	cursor: pointer;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.basket-coupon-alert-section {
	width: 100%;
}

.basket-coupon-alert {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: start;
	margin-top: 2px;
	margin-bottom: 2px;
	padding-top: 3px;
	padding-bottom: 3px;
	min-height: 0;
	width: 100%;
	flex-wrap: nowrap;
	-webkit-box-align: start;
	align-items: flex-start;
}

.basket-coupon-text {
	position: relative;
	display: block;
	word-break: break-all;
	word-break: break-word;
}

.basket-coupon-alert .close-link {
	margin-left: 10px;
	border-bottom: 1px dotted;
	color: var(--primary);
	text-decoration: none;
	opacity: 1;
	cursor: pointer;
	transition: 220ms ease all;
}

.bx-ie .basket-coupon-alert .close-link {
	color: #006cc0;
}

.basket-coupon-alert .close-link:hover {
	border-color: transparent;
}

@media (max-width: 991px) {
	.basket-checkout-container {
		flex-direction: column;
	}

	.basket-coupon-section {
		-ms-flex-order: 1;
		max-width: 100%;
		width: 100%;
		-webkit-box-ordinal-group: 2;
		order: 1;
	}

	.basket-coupon-alert-section {
		-ms-flex-order: 2;
		margin-bottom: 15px;
		-webkit-box-ordinal-group: 3;
		order: 2;
	}

	.basket-coupon-block-field {
		padding-right: 0;
		min-width: 100%;
	}

	.basket-coupon-block-field .form-group {
		display: inline-block;
		margin-bottom: 10px;
		width: 100%;
	}

	.basket-coupon-block-field .form-control {
		display: block;
		width: 100%;
	}
}

/*endregion*/

/*region Checkout*/
.basket-checkout-section {
	-webkit-box-flex: 5;
	-ms-flex: 5;
	flex: 5;
}

.basket-checkout-section-inner {}

.basket-checkout-block {}

/**/
.basket-checkout-block-total {
	margin-bottom: 20px;
}

.basket-checkout-block-total-inner {
	max-width: 100%;
}

.basket-checkout-block-total-title, .basket-coupon-block-total-price-current__wrapper {
	/* font-family: 'GT Eesti Pro'; */
	font-size: 24px;
	line-height: 19px;
	color: var(--theme-color-dark);
}

.basket-coupon-block-total-price-current__wrapper {
	font-size: 14px;
	line-height: 16px;
	text-transform: none;
	letter-spacing: 0.02em;
}
.product-delivery {
	margin-top: 20px;
}
.basket-coupon-block-total-middle__wrapper {
	font-size: 14px;
	line-height: 16px;
	letter-spacing: 0.02em;
	color: var(--theme-color-dark);
	margin-bottom: 10px;
	justify-content: space-between;
}

.basket-coupon-block-field input:not([class^="bx-"]) {
	height: 36px;
	margin-bottom: 0;
	margin-top: 5px;
}

.apply_coupon {
	display: none;
	position: absolute;
	right: 0;
	top: 5px;
	line-height: 36px;
	right: 15px;
	font-size: 13px;
	color: #000;
	text-decoration: underline;
}

.basket-coupon-block-total-middle__text {
	line-height: 20px;
	font-size: 16px;
}

.basket-checkout-block-total-description {}

/**/
.basket-checkout-block-total-price {
	padding-top: 20px;
	border-top: 1px solid var(--theme-color-light-gray);
	margin-bottom: 16px;
}

.basket-checkout-block-total-price-inner {}

.basket-coupon-block-total-price-current {
	transition: 180ms text-shadow ease, 180ms color ease;
	font-size: 16px;
	color: #262626;
	font-weight: 400;
	/* font-family: 'GT Eesti Pro'; */
}

.basket-coupon-block-total-price-old {
	position: absolute;
	top: 3px;
	right: 0;
	color: #a1a1a1;
	text-align: right;
	font: 400 18px/16px "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.basket-coupon-block-total-price-old:after {
	position: absolute;
	top: 3px;
	right: 3px;
	bottom: 3px;
	left: 3px;
	background: no-repeat center url(data:image/svg+xml;charset=US-ASCII,%0A%3Csvg%20width%3D%22491px%22%20height%3D%22125px%22%20viewBox%3D%220%200%20100%25%20100%25%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M1.23046875%2C121.410156%20C122.764455%2C80.3998661%20212.227997%2C52.9779911%20269.621094%2C39.1445312%20C327.014191%2C25.3110714%20400.420441%2C13.476436%20489.839844%2C3.640625%22%20stroke%3D%22%23B80909%22%20stroke-width%3D%2216%22%20/%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
	background-size: 100% 100%;
	content: '';
}

.basket-coupon-block-total-price-difference {
	display: inline-block;
	padding: 5px 6px 6px;
	background: #d1ecf1;
	color: #179ebb;
	text-align: center;
}

.basket-checkout-not-authorized {
	font-size: 16px;
	line-height: 24px;
	color: var(--theme-color-dark);
	text-align: center;
}

a.need_auth_btn {
	text-decoration: underline
}

/**/
.basket-checkout-block-btn {
	margin-top: 10px;
}

.basket-btn-checkout {}

.basket-notification-section {
	width: 100%;
}

.basket-block-notification {
	position: relative;
	display: block;
	margin-top: 10px;
	padding: 8px 15px;
	min-width: 100%;
	width: 100%;
	border-radius: 1px;
	background-color: #edf8e0;
	color: #6a9997;
}

.basket-block-notification:after {
	position: absolute;
	top: -7px;
	right: 80px;
	width: 16px;
	height: 16px;
	background-color: #edf8e0;
	content: '';
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

@media (max-width: 991px) {
	.basket-checkout-block-btn {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}

	.basket-checkout-section {
		-ms-flex-order: 3;
		-webkit-box-ordinal-group: 4;
		order: 3;
	}

	.basket-notification-section {
		-ms-flex-order: 4;
		-webkit-box-ordinal-group: 5;
		order: 4;
	}
}

@media (max-width: 767px) {





	.basket-checkout-block-btn {
		padding-left: 0;
		min-width: 100%;
		max-width: 100%;
		width: 100%;
		-ms-flex: auto;
		flex: auto;
	}

	.basket-checkout-section-inner {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.basket-checkout-block-total {
		min-width: 150px;
	}

	.basket-checkout-block-total-price {}

	.basket-btn-checkout {
		margin: 10px 0;
		width: 100%
	}

	.basket-block-notification:after {
		top: -3px;
		right: auto;
		left: 50%;
		-webkit-transform: rotate(45deg) translateX(-50%);
		transform: rotate(45deg) translateX(-50%);
	}
}

@media (max-width: 460px) {
	.basket-checkout-block {
		display: block;
		min-width: 100%;
		width: 100%;
	}

	.basket-checkout-block-total {
		padding-top: 0;
		text-align: left;
	}

	.basket-checkout-block-total-price-inner {}

	.basket-coupon-block-total-price-old {
		top: auto;
		position: relative;
		display: inline-block;
	}

}

/*endregion*/

/*region Basket item list wrapper*/
.basket-items-list-wrapper, .basket-items-list-wrapper-compact {}

/*header*/
.basket-items-list-header {
	display: -webkit-box;
	display: flex;
	display: -ms-flexbox;
	-ms-flex-align: center;
	padding: 13px 25px;
	border-bottom: 1px solid #e2dfdf;
	background: #f2f2f2;
	transition: 300ms padding ease;
	-webkit-box-align: center;
	align-items: center;
}

.basket-items-list-header.basket-items-list-header-fixed {
	position: fixed;
	top: 0;
	z-index: 99;
	margin-left: -1px;
	border: 1px solid #e2dfdf;
}

.basket-items-list-wrapper-light .basket-items-list-header {
	display: none !important;
}

.basket-items-list-header-title {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font: bold 15px/18px "Helvetica Neue", Helvetica, Arial, sans-serif;
	transition: 300ms all ease;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.basket-items-search-field+.basket-items-list-header-title {
	padding-left: 10px;
}

.basket-items-search-field+.basket-items-list-header-filter {
	padding-left: 10px;
	text-align: right;
	-webkit-box-flex: 3;
	-ms-flex: 3;
	flex: 3;
}

.basket-items-search-field .form-control {
	z-index: 1;
}

.basket-items-list-header-filter-item {
	margin-left: 5px;
	border-bottom: 1px dotted;
	color: var(--primary);
	text-decoration: none;
	font: bold 13px/14px "Helvetica Neue", Helvetica, Arial, sans-serif;
	cursor: pointer;
	transition: 220ms ease;
}

.bx-ie .basket-items-list-header-filter-item {
	color: #006cc0;
}

.basket-items-list-header-filter-item:hover {
	color: var(--theme-color-second);
	text-decoration: none;
}

.bx-ie .basket-items-list-header-filter-item:hover {
	color: #006cc0;
}

.basket-items-list-header-filter-item.active {
	border-bottom: none;
	color: #2f3435;
	text-decoration: none;
	cursor: default;
}

.basket-items-search-field {
	position: relative;
	transition: 300ms all ease;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.basket-items-search-field .input-group-addon {
	white-space: nowrap;
	-ms-flex-wrap: wrap;
}

.basket-items-search-clear-btn {
	position: absolute;
	top: 50%;
	right: 1px;
	z-index: 1;
	border: none;
	background: none;
	color: #777;
	vertical-align: middle;
	font-weight: bold;
	font-size: 18px;
	line-height: 18px;
	cursor: pointer;
	transition: 250ms linear all;
	transform: translateY(-50%);
}

.basket-items-search-clear-btn:hover {
	color: #c04e4e;
}

@media (max-width: 991px) {
	.basket-items-list-header {
		padding: 10px 9px 11px;
	}

	.basket-items-list-header-title {
		font-size: 12px;
		line-height: 15px;
	}
}

@media (max-width: 767px) {
	.basket-items-list-header {
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal
	}

	.basket-items-search-field {
		width: 100%;
	}
}

/*endregion*/

.basket-items-list-container {
	position: relative;
	/* overflow: hidden; */
	width: 100%;
	background-color: #fff;
}

.basket-items-list-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100;
	background-color: #fff;
	opacity: .7;
	-webkit-animation-name: ShowOverlay;
	animation-name: ShowOverlay;
	-webkit-animation-duration: 200ms;
	animation-duration: 200ms;
}

@-webkit-keyframes ShowOverlay {
	0% {
		opacity: 0;
	}

	100% {
		opacity: .7;
	}
}

@keyframes ShowOverlay {
	0% {
		opacity: 0;
	}

	100% {
		opacity: .7;
	}
}

.basket-items-list {
	position: relative;
	margin: 0;
	border-bottom: 1px solid var(--theme-color-light-gray);
	/* padding-bottom: 20px; */
}

@media (max-width: 768px) {
	.basket-items-list {
		margin: 0 20px 0 20px !important;
	}

	.basket-items-list-item-container>td {
		padding-bottom: 16px;
	}

	.basket-items-list-item-descriptions {
		padding-top: 16px !important;
	}

	.basket-root__header-inner h1 {
		font-size: 24px;
		font-weight: 600;
	}
}

.basket-items-list-table {
	width: 100%;
	border-collapse: collapse;
}

.basket-items-list-table__thead {
	border-top: 1px solid var(--theme-color-light-gray);
	border-bottom: 1px solid var(--theme-color-light-gray);
	position: relative;
}

.basket-items-list-table__thead tr td {
	padding: 25px 0;
	font-size: 12px;
	line-height: 14px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.basket-items-list-table__thead tr td:not(:first-child) {
	text-align: left;
}

.basket-items-list-table__thead tr td span:last-child {
	margin-left: 110px;
}

.basket-items-list-table__thead:before, .basket-items-list-table__thead:after {
	content: '';
	display: block;
	width: 100px;
	height: 1px;
	border-top: 1px solid var(--theme-color-light-gray);
	position: absolute;
	top: -1px;
	left: -55px;
}

.basket-items-list-table__thead:after {
	top: auto;
	bottom: 0px;
}

.basket-items-list-item-container {
	position: relative;
}

.basket-items-list-item-container>td {
	border-top: 1px solid var(--theme-color-light-gray);
}

.basket-items-list-item-container td:not(:first-child) {
	text-align: left;
}

.basket-items-list-wrapper-compact .basket-items-list-item-container>td {
	padding-bottom: 12px;
}

.basket-items-list-item-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100;
	background-color: #fff;
	opacity: .7;
}


@media (max-width: 767px) {

	.basket-items-list-item-container.basket-items-list-item-container-gift, 	.basket-items-list-item-container.basket-items-list-item-container-gift>td, 	.basket-items-list .basket-items-list-item-container:first-child>td {
		margin: 0;
		padding-top: 0;
		border-top: none !important;
	}
}

.basket-items-list-item-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100;
	background-color: #fff;
	opacity: .7;
}

.basket-items-list-item-descriptions {
	-ms-flex-order: 1;
	padding-top: 20px;
	vertical-align: top;
	-webkit-box-ordinal-group: 2;
	order: 1;
	width: auto;
}

.basket-items-list-item-descriptions-inner {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

/*region Image*/
.basket-item-block-image {
	position: relative;
	-ms-flex-order: 1;
	-ms-flex-order: 1;
	-ms-flex-align: center;
	padding-right: 25px;
	padding-bottom: 0;
	min-width: 48px;
	max-width: 145px;
	width: 100%;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-webkit-box-ordinal-group: 2;
	order: 1;
}

.basket-items-list-wrapper-compact .basket-item-block-image {
	display: block;
	padding-bottom: 0;
	min-width: 32px;
	max-width: 50px;
	width: auto;
	height: auto;
}

.basket-item-image-link {
	position: relative;
	display: inline-block;
}

.basket-item-image {
	display: inline-block;
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: auto;
	transition: 300ms all ease;
}

.basket-items-list-wrapper-compact .basket-item-image {
	max-width: 50px;
	max-height: 50px;
}

.basket-item-image:hover {
	border-color: #ee9200;
}

@media (max-width: 580px) {

	.basket-item-block-image {
		margin-top: 10px;
		margin-bottom: 15px;
		padding-right: 0;
		max-width: 100%;
		width: 100%;
	}

	.basket-item-image {
		margin: 10px auto 15px;
		padding-right: 0;
		max-width: 230px;
		max-height: 400px;
		width: auto;
		height: auto;
	}

	.basket-items-list-item-descriptions-inner {
		-ms-flex-direction: column;
		flex-direction: column;
		webkit-box-orient: vertical;
		-webkit-box-direction: normal;
	}

	.basket-items-list-wrapper-compact .basket-item-block-image {
		margin-top: 0;
		padding-right: 10px;
	}

	.basket-items-list-wrapper-compact .basket-items-list-item-descriptions-inner {
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
	}

}

/*endregion*/

/*region lable*/
/*Label*/
.basket-item-label-text, .basket-item-label-ring {
	position: absolute;
	z-index: 90;
	opacity: 1;
	transition: opacity 450ms ease;
}

.basket-items-list-wrapper-compact .basket-item-label-text, .basket-items-list-wrapper-compact .basket-item-label-ring {
	display: none
}

.basket-item-label-text span, .basket-item-label-ring {
	display: inline-block;
	clear: both;
	margin-bottom: 2px;
	background: #f42c2c;
	color: #fff;
	vertical-align: middle;
	text-align: center;
	transition: all 250ms ease;
}

.bx-red .basket-item-label-text span, .bx-red .basket-item-label-ring {
	background-color: #fba90c;
}

.basket-item-label-text>div, .basket-item-label-ring>div {
	line-height: 0;
}

/* TEXT */
.basket-item-label-text span {
	padding: 2px 5px;
	vertical-align: middle;
	font-weight: bold;
}

.basket-item-label-text.basket-item-label-small span {
	margin-bottom: 1px;
	padding: 2px 7px;
	font-weight: normal;
	font-size: 12px;
	line-height: 14px;
}

.basket-item-label-text.basket-item-label-big span {
	padding: 4px 10px;
	font-size: 12px;
	line-height: 17px;
}

@media (max-width: 767px) {
	.basket-item-label-text>div {
		line-height: 0;
	}

	.basket-item-label-text.basket-item-label-small span {
		margin-bottom: 1px;
		padding: 2px 7px;
		font-size: 11px;
		line-height: 14px;
	}

	.basket-item-label-text.basket-item-label-big span {
		margin-bottom: 1px;
		padding: 3px 12px;
		font-size: 13px;
		line-height: 16px;
	}
}

/*RING*/
.basket-item-label-ring {
	box-sizing: border-box;
	border-radius: 50%;
	font-weight: bold;
}

.basket-item-label-ring.basket-item-label-small {
	width: 40px;
	height: 40px;
	font-size: 13px;
	line-height: 40px;
}

.basket-item-label-ring.basket-item-label-big {
	width: 50px;
	height: 50px;
	font-size: 18px;
	line-height: 50px;
}

@media (max-width: 767px) {
	.basket-item-label-ring.basket-item-label-small {
		width: 24px;
		height: 24px;
		font-size: 8px;
		line-height: 24px;
	}

	.basket-item-label-ring.basket-item-label-big {
		width: 30px;
		height: 30px;
		font-size: 12px;
		line-height: 30px;
	}
}

.basket-item-label-top {
	top: -2px;
}

.basket-item-label-center {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.basket-item-label-center>div {
	text-align: center;
}

.basket-item-label-left {
	left: -2px;
}

.basket-item-label-left>div {
	text-align: left;
}

.basket-item-label-bottom {
	bottom: -2px;
}

.basket-item-label-middle {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.basket-item-label-right {
	right: -2px;
}

.basket-item-label-right>div {
	text-align: right;
}

.basket-item-label-center.product-item-label-middle {
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
}

/*endregion*/

/*region Info*/
.basket-item-block-info {
	-ms-flex-order: 2;
	padding: 0;
	-webkit-box-flex: 3;
	-ms-flex: 3;
	flex: 3;
	-webkit-box-ordinal-group: 3;
	order: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (max-width: 580px) {
	.basket-item-block-info {
		-webkit-box-flex: 6;
		-ms-flex: 6;
		flex: 6;
	}
}

/*region Name*/
.basket-item-info-name, .basket-item-info-name-link {
	font-size: 20px;
	line-height: 19px;
	letter-spacing: 0.02em;
	margin: 0;
	padding: 3px 20px 0 0;
	color: var(--theme-color-dark);
	text-decoration: none;
	word-break: break-all;
	word-break: break-word;
	transition: 300ms all ease;
	text-transform: none;
}

h2.basket-item-info-name {
	margin-bottom: 5px;
	padding-top: 0;
}

.basket-item-highlighted {
	background: #ff0;
}

.basket-items-list-wrapper-compact .basket-item-info-name {
	margin-bottom: 5px
}

.basket-item-info-name-link:hover {
	cursor: pointer;
}

@media (max-width: 768px) {

	.basket-item-info-name, 	.basket-item-info-name-link {
		vertical-align: middle;
		font-size: 20px;
		line-height: 28px;
	}
}

/*endregion*/

.basket-item-block-common {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-order: 4;
	-ms-flex-pack: end;
	-ms-flex-align: start;
	-ms-flex: 2;
	-ms-flex-wrap: nowrap;
	-ms-flex-line-pack: baseline;
	flex-wrap: nowrap;
	-webkit-box-pack: end;
	-webkit-box-align: start;
	-webkit-box-ordinal-group: 5;
	-webkit-box-flex: 2;
	justify-content: flex-end;
	align-content: baseline;
	align-items: flex-start;
	flex: 2;
	order: 4;
}

.basket-items-list-wrapper-compact .basket-item-block-common {
	-ms-flex-pack: end;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: end;
	justify-content: flex-end;
}

@media (max-width: 991px) {
	.basket-item-block-common {
		padding: 5px 0;
		min-width: 100%;
	}

	.basket-items-list-wrapper .basket-item-block-common {
		-ms-flex-pack: end;
		-webkit-box-pack: end;
		justify-content: flex-end;
	}

	.basket-items-list-wrapper .basket-item-block-common>div {
		-webkit-box-flex: 0;
		-ms-flex: none;
		flex: none;
	}

	.basket-items-list-wrapper-compact .basket-item-block-common {
		-ms-flex-pack: end;
		padding: 17px 0;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: end;
		justify-content: flex-end;
	}
}

@media (max-width: 460px) {
	.basket-items-list-wrapper .basket-item-block-common {
		-ms-flex-direction: column;
		flex-direction: column;
		-ms-flex-align: end;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-box-align: end;
		align-items: flex-end;
	}

	.basket-item-price-current {
		text-align: right;
	}
}

/*region Properties*/
.basket-item-block-properties {
	/* flex: 5; */
}

.basket-item-property, .basket-item-property-custom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	padding-bottom: 4px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	align-items: center;
	-ms-flex-line-pack: center;
	align-content: center;
}

.basket-items-list-wrapper-compact .basket-item-property, .basket-items-list-wrapper-compact .basket-item-property-custom {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin-right: 10px;
	padding-bottom: 0;
	-ms-flex-line-pack: center;
	align-content: center;
}

.basket-item-property-name, .basket-item-property-custom-name {
	margin-right: 5px;
	color: #6F6F6F;
	font-size: 14px;
}

.basket-item-property-value, .basket-item-property-custom-value {
	color: #6F6F6F;
	font-size: 14px;
}

/*region Custom Column*/

.basket-item-property-custom {
	padding-right: 15px;
}

.basket-item-property-custom-content {
	padding: 3px 0;
}

.basket-item-property-custom.basket-item-property-custom-photo {
	display: block;
}

.basket-item-property-custom-photo .basket-item-property-custom-value {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: start;
	-ms-flex-align: stretch;
	min-height: 64px;
	word-spacing: 0;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: stretch;
	align-items: stretch;
	-webkit-box-pack: start;
	justify-content: flex-start;
}

.basket-item-property-custom-photo .basket-item-property-custom-value span {
	display: inline-block;
}

.basket-item-custom-block-photo-link {
	display: block;
	margin-right: 5px;
}

.basket-item-custom-block-photo-item {
	margin-right: 3px;
	width: auto;
	height: 64px;
	border: 1px solid #e4e4e4;
	transition: 300ms all ease;
}

.basket-item-custom-block-photo-item:hover {
	border-color: #ee9200;
}

@media (max-width: 580px) {
	.basket-item-property-custom {
		padding-right: 0;
	}

	.basket-items-list-wrapper-compact .basket-item-property-custom {
		padding-right: 10px;
	}
}

/*endregion*/

/*scu*/
.basket-items-list-wrapper-compact .basket-item-property.basket-item-property-scu-text, .basket-items-list-wrapper-compact .basket-item-property.basket-item-property-scu-image, .basket-items-list-wrapper-compact .basket-item-property.basket-item-scu-color {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

.basket-item-property.basket-item-property-scu-text, .basket-item-property.basket-item-property-scu-image, .basket-item-property.basket-item-scu-color {
	display: block;
}

.basket-item-scu-list {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin: 0;
	padding: 0;
	list-style: none;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.basket-item-scu-item, .basket-item-scu-item.not-available:hover {
	position: relative;
	display: inline-block;
	margin: 2px 3px 3px 0;
	padding: 0;
	border: 1px solid #eeecef;
	cursor: pointer;
	transition: 300ms all ease;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.basket-item-scu-item:hover, .basket-item-scu-item.selected, .basket-item-scu-item.not-available:hover {
	border-color: var(--primary);
}

.bx-ie .basket-item-scu-item:hover, .bx-ie .basket-item-scu-item.selected, .bx-ie .basket-item-scu-item.not-available:hover {
	border-color: #006cc0;
}

.basket-item-scu-item.selected:hover {
	cursor: default
}

.basket-item-scu-item.not-available:after {
	/* position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	background: no-repeat center url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20width%3D%2220px%22%20height%3D%2220px%22%20viewBox%3D%220%200%20100%25%20100%25%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%0A%20%20%20%20%3Cline%20x1%3D%220%22%20y1%3D%2220%22%20x2%3D%2220%22%20y2%3D%220%22%20stroke-width%3D%221%22%20stroke%3D%22%23a1a1a1%22/%3E%0A%3C/svg%3E);
	background-size: 100% 100%;
	content: ''; */
}

.basket-item-scu-item-inner {
	display: block;
	transition: 300ms all ease;
}

.basket-item-scu-item.not-available .basket-item-scu-item-inner {
	opacity: .5;
}

.basket-item-scu-color .basket-item-scu-item-inner, .basket-item-property-scu-image .basket-item-scu-item-inner {
	width: 30px;
	height: 30px;
	border: 2px solid #fff;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.basket-items-list-wrapper-compact .basket-item-scu-color .basket-item-scu-item-inner, .basket-items-list-wrapper-compact .basket-item-property-scu-image .basket-item-scu-item-inner {
	width: 16px;
	height: 16px;
	border: 1px solid #fff;
}

.basket-item-property-scu-text .basket-item-scu-item-inner {
	/* padding: 3px 5px;
	min-width: 30px;
	text-align: center;
	font: bold 14px/17px "Helvetica Neue", Helvetica, Arial, sans-serif; */
}

.basket-item-property-value-select-item .basket-item-scu-item.selected {
	border: 1px solid #6F6F6F;
	margin: 0;
	padding: 5px 6px;
	width: 86px;
	position: relative;
	cursor: pointer;
}

.basket-item-property-value-select-item .basket-item-scu-item.selected::after {
	position: absolute;
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	right: 16px;
    top: 9px;
	background: url(/local/templates/lusio/img/icon/arrow-top.svg) no-repeat center center;
	transform: rotate(180deg);
}

.basket-item-property.basket-item-property-scu-text .basket-item-property-name {
	/* font-family: 'SF-PRO'; */
	margin-bottom: 8px;
	margin-right: 0;
}
.basket-item-property-value-select,
.basket-item-property-value {
    width: max-content;
    height: max-content;
}
.basket-item-property-value {
	position: relative;
}
.basket-item-scu-list {
	position: absolute;
    width: 100%;
    display: none;
	padding: 9px 0;
    background: #fff;
	z-index: 20;
	box-shadow: 0px 2px 24px 0px #0000001A;
}
.basket-item-scu-list.active {
	display: block;
}
.basket-item-property-scu-text .property-value-select-COLOR_REF .basket-item-property-value-select-item .basket-item-scu-item-inner {
	width: 28px;
	height: 28px;
	min-width: 28px;
	padding: 0;
}
.property-value-select-SIZES_CLOTHES .basket-item-scu-item.selected {
    padding: 9px 16px;
}
.basket-item-property-scu-text .basket-item-scu-item-inner {
	/* font-family: 'SF-PRO'; */
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: left;
    padding: 0;
}
.basket-item-property-value-select.active .basket-item-scu-item.selected::after {
    transform: rotate(360deg);
}
.basket-wrapp-flex-block {
	display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 12px;
}

@media (max-width: 768px) {}

@media (max-width: 580px) {
	.property-value-select-SIZES_CLOTHES .basket-item-scu-item.selected {
		padding: 7px 16px;
	}
	.basket-item-block-properties {
		margin-bottom: 10px;
	}

	.basket-items-list-wrapper-compact .basket-item-block-properties {
		margin-bottom: 0;
	}

	.basket-item-property-scu-image .basket-item-scu-item-inner, 	.basket-item-scu-color .basket-item-scu-item-inner {
		width: 20px;
		height: 20px;
		border: 1px solid #fff;
	}

	.basket-item-property-scu-text .basket-item-scu-item-inner {
		padding: 2px 3px;
		min-width: 25px;
		/* text-align: center; */
	}
}

/*endregion*/

/*region Amount*/

.basket-items-list-item-amount input.basket-item-amount-filed {
	max-width: 100px !important;
	text-align: center;
	height: 36px !important;
	margin-bottom: 0px;
	border: 1px solid var(--theme-color-light-gray);
}

.basket-items-list-item-amount {
	-ms-flex-order: 2;
	padding-top: 28px;
	vertical-align: middle;
	-webkit-box-ordinal-group: 3;
	order: 2;
	width: 120px;
	padding: 0 0 0 20px;
}

.basket-item-block-amount {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: end;
	-ms-flex-align: start;
	padding: 0px;
	-ms-flex-line-pack: start;
	align-content: flex-start;
	-webkit-box-pack: end;
	justify-content: flex-end;
	max-width: 100px;
}

.basket-items-list-wrapper-compact .basket-item-block-amount {
	margin-bottom: 0;
	padding-bottom: 0;
}

.basket-item-amount-filed-block {
	position: relative;
}

.basket-item-amount-filed, .basket-item-block-amount.disabled .basket-item-amount-filed:hover {
	padding: 0;
	width: 60px;
	height: 28px;
	outline: none;
	border: 1px solid #e4e4e4;
	border-radius: 1px;
	vertical-align: middle;
	text-align: center;
	transition: 300ms all ease;
}

.basket-item-block-amount.disabled .basket-item-amount-filed {
	background-color: #f3f3f3;
}

.basket-item-amount-filed:hover, .basket-item-amount-filed:focus {
	border-color: var(--primary);
}

.bx-ie .basket-item-amount-filed:hover, .bx-ie .basket-item-amount-filed:focus {
	border-color: #006cc0;
}

.basket-item-amount-filed::-webkit-outer-spin-button, .basket-item-amount-filed::-webkit-inner-spin-button {
	/* display: none; <- Crashes Chrome on hover */
	margin: 0;
	-webkit-appearance: none;
	/* <-- Apparently some margin are still there even though it's hidden */
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
}

.basket-item-amount-filed.basket-updated {
	-webkit-animation-name: basketAmountFiledUpdated;
	animation-name: basketAmountFiledUpdated;
	-webkit-animation-duration: 600ms;
	animation-duration: 600ms;
}

@-webkit-keyframes basketAmountFiledUpdated {

	0%, 	100% {
		border-color: #e4e4e4;
	}

	50% {
		border-color: #ee9200;
	}
}

@keyframes basketAmountFiledUpdated {

	0%, 	100% {
		border-color: #e4e4e4;
	}

	50% {
		border-color: #ee9200;
	}
}

.basket-item-amount-btn-plus, .basket-item-amount-btn-minus {
	position: absolute;
	width: 28px;
	cursor: pointer;
	transition: 300ms all ease;
	-webkit-user-select: none;
	position: absolute;
	height: 36px;
	right: 0px;
}

.basket-item-amount-btn-minus {
	left: 0px;
	z-index: 1;
}

.basket-item-amount-btn-plus:hover, .basket-item-amount-btn-minus:hover {}

.basket-item-block-amount.disabled .basket-item-amount-btn-plus, .basket-item-block-amount.disabled .basket-item-amount-btn-minus {
	background-color: transparent;
	cursor: default;
}

.basket-item-amount-btn-plus:before, .basket-item-amount-btn-plus:after, .basket-item-amount-btn-minus:after {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -1px;
	margin-left: -5px;
	width: 10px;
	height: 2px;
	background-color: #979797;
	content: "";
	transition: 300ms all ease;
}

.basket-item-amount-btn-plus:hover:before, .basket-item-amount-btn-plus:hover:after, .basket-item-amount-btn-minus:hover:after {
	background-color: #535353;
}

.basket-item-block-amount.disabled .basket-item-amount-btn-plus:before, .basket-item-block-amount.disabled .basket-item-amount-btn-plus:after, .basket-item-block-amount.disabled .basket-item-amount-btn-minus:after {
	background-color: #f3f3f3;
}

.basket-item-amount-btn-plus:before {
	margin-top: -5px;
	margin-left: -1px;
	width: 2px;
	height: 10px;
}

.basket-item-amount-field-description {
	position: absolute;
	top: calc(100% + 1px);
	right: 0;
	left: 0;
	color: var(--theme-color-gray);
	font-size: 12px;
	text-align: center;
	font-size: 14px;
}

@media (max-width: 991px) {
	.basket-item-block-amount {
		position: relative;
		-ms-flex-pack: center;
		margin-bottom: 13px;
		-webkit-box-pack: center;
		justify-content: center;
	}

	.basket-item-amount-btn-plus, 	.basket-item-amount-btn-minus {
		border: 1px solid #e4e4e4;
		background-color: #f5f6f7;
	}

	.basket-item-amount-btn-plus {
		border-left: none;
		border-radius: 0 1px 1px 0;
	}

	.basket-item-amount-btn-minus {
		border-right: none;
		border-radius: 1px 0 0 1px;
	}
}

/* @media (max-width: 767px) {
	.basket-item-block-amount {
		padding-top: 19px;
	}
} */

@media (max-width: 580px) {
	.basket-item-block-amount {
		padding-top: 0;
	}
}

/*endregion*/

/*region Price*/
.basket-items-list-item-price {
	-ms-flex-order: 4;
	padding-top: 0;
	vertical-align: middle;
	-webkit-box-ordinal-group: 5;
	order: 4;
	width: 140px;
	padding: 0 20px;
}

.basket-items-list-item-price-for-one {
	order: 2;
	width: 17%;
}

.basket-item-block-price {
	text-align: right;
	font-size: 14px;
	line-height: 20px;
}

.basket-item-price-title {
	padding-top: 1px;
	color: var(--theme-color-gray);
	font-size: 12px;
}

.basket-item-price-current {
	padding-top: 1px;
	color: #262626;
	vertical-align: bottom;
	line-height: 28px;
	font-size: 20px;
	font-weight: 400;
}

.basket-item-price-current-text {
	letter-spacing: -.33px;
	transition: 180ms text-shadow ease, 180ms color ease;
}

@media (min-width: 768px) {
	.bx-basket__content.d-flex {
		margin-bottom: 80px;
		padding: 0px 53px 0px;
	}
}

.basket-item-price-old {
	position: static !important;
	text-decoration: line-through;
	color: inherit;
	vertical-align: middle;
	line-height: 24px !important;
	font-size: 16px;
}

.basket-item-price-old-text {
	position: relative;
	display: inline-block;
}

/* .basket-item-price-old-text:after {
	position: absolute;
	top: 3px;
	right: 3px;
	bottom: 3px;
	left: 3px;
	background: no-repeat center url(data:image/svg+xml;charset=US-ASCII,%0A%3Csvg%20width%3D%22491px%22%20height%3D%22125px%22%20viewBox%3D%220%200%20100%25%20100%25%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M1.23046875%2C121.410156%20C122.764455%2C80.3998661%20212.227997%2C52.9779911%20269.621094%2C39.1445312%20C327.014191%2C25.3110714%20400.420441%2C13.476436%20489.839844%2C3.640625%22%20stroke%3D%22%23B80909%22%20stroke-width%3D%2216%22%20/%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
	background-size: 100% 100%;
	content: '';
} */

.basket-item-price-difference {
	padding: 3px;
	max-width: 100%;
	background: #d1ecf1;
	color: #179ebb;
	text-align: center;
	white-space: normal;
}

@media (max-width: 767px) {

	.basket-items-list-item-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: start;
		-webkit-box-align: start;
		align-items: flex-start;
	}

	.basket-items-list-item-descriptions {
		min-width: 100%;
	}
}

@media (max-width: 580px) {

	.basket-items-list-item-price {
		-ms-flex-order: 5;
		vertical-align: top;
		-webkit-box-ordinal-group: 6;
		order: 5;
	}

	.basket-items-list-item-price-for-one {
		order: 4
	}

	.basket-item-block-price {
		-ms-flex-direction: column;
		flex-direction: column;
		margin-bottom: 10px;
		min-width: 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}

	.basket-item-price-old {
		right: 10px;
	}

	.basket-items-list-item-amount {
		display: block;
		padding: 0 0 20px;
		min-width: 100%;
	}

	.basket-item-block-price {
		padding-right: 10px;
		padding-left: 10px;
	}

	.basket-items-list-item-price-for-one .basket-item-price-current {}

	.basket-items-list-wrapper-compact .basket-item-block-price {
		min-width: 0;
		text-align: right;
	}

	.basket-items-list-wrapper-compact .basket-item-block-price>div {
		text-align: right;
	}

	.basket-item-block-price .basket-item-price-difference {
		-ms-flex-order: 1;
		padding: 5px 6px 6px;
		-webkit-box-ordinal-group: 2;
		order: 1;
	}

}

/*endregion*/

/*region Actions*/
.basket-items-list-item-remove {
	vertical-align: middle;
}

.basket-item-block-actions {
	position: relative;
	transition: 300ms opacity ease;
}

.bx-touch .basket-item-block-actions {
	opacity: 1;
}

.basket-item-actions-remove.d-md-none {
	display: none;
}

.basket-item-actions-remove {
	position: relative;
	display: block;
	width: 25px;
	height: 25px;
	cursor: pointer;
	background: url('/local/templates/lusio/components/bitrix/sale.basket.basket/full_cart/images/trash.svg');
	background-position: center;
	background-repeat: no-repeat;
}

.basket-item-block-actions .basket-item-actions-remove {
	/*right: -27px;*/
}

.basket-item-block-info .basket-item-actions-remove {
	position: absolute;
	top: -4px;
	right: 0;
}

.basket-items-list-wrapper-compact .basket-item-block-actions {
	position: relative;
	top: auto;
	right: auto;
	padding-left: 10px;
}

/*endregion*/

/*endregion*/

@media (max-width: 767px) {

	.basket-items-list-table, 	.basket-items-list-table thead, 	.basket-items-list-table tbody, 	.basket-items-list-table tr {
		display: block !important;
	}

	tr.basket-items-list-item-container {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-pack: center;
		-ms-flex-align: start;
		padding-top: 10px;
		padding-bottom: 10px;
		border-top: 1px solid #f2f2f2;
		-webkit-box-align: start;
		align-items: flex-start;
		-webkit-box-pack: center;
		justify-content: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.basket-items-list-table tr.basket-items-list-item-container:first-child, 	.basket-items-list-table tbody tr.basket-items-list-item-container:first-child {
		border: none;
	}

	.basket-items-list .basket-items-list-item-container>td {
		border-top: none;
	}

	td.basket-items-list-item-amount, 	td.basket-items-list-item-price, 	td.basket-items-list-item-remove {
		display: inline-block;
	}

	td.basket-items-list-item-descriptions {
		padding-bottom: 10px;
		min-width: 100%;
	}

	td.basket-items-list-item-descriptions, 	td.basket-items-list-item-notification {
		display: block;
		padding-top: 0;
	}

	.basket-items-list-item-price {
		padding: 3px 0;
	}

	td.basket-items-list-item-remove {
		padding: 34px 0 0 !important;
	}
}

@media (max-width: 580px) {

	.basket-items-list-item-price .basket-item-block-price .basket-item-price-title {
		display: block;
	}

	td.basket-items-list-item-remove {
		display: block;
		padding: 0;
	}

	td.basket-items-list-item-remove {
		padding: 0 !important;
		text-align: center;
	}

	.basket-item-block-actions {
		display: inline-block;
	}
}

.basket-items-list-item-notification-inner {
	position: relative;
	transition: 220ms all ease;
}

/**/

.basket-items-list-item-container.basket-items-list-item-container-expend {
	display: table-row;
}

.basket-items-list-item-container-expend .basket-items-list-item-removed-container {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	-ms-flex-align: center;
	padding: 10px 0;
	border-radius: 2px;
	background-color: #e6f8fe;
	color: #333;
	text-align: center;
	transition: 300ms all ease;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.basket-items-list-item-container-expend .basket-items-list-item-removed-container div {
	padding: 0 10px;
	text-align: left;
}

@-webkit-keyframes ShowNote {
	0% {
		opacity: 0;
	}

	0%, 	50% {
		background-color: #fff;
	}

	50%, 	100% {
		opacity: 1;
	}

	100% {
		background-color: #e6f8fe;
	}
}

@keyframes ShowNote {
	0% {
		opacity: 0;
	}

	0%, 	50% {
		background-color: #fff;
	}

	50%, 	100% {
		opacity: 1;
	}

	100% {
		background-color: #e6f8fe;
	}
}

@media (max-width: 768px) {
	.basket-items-list-item-container-collapse .basket-items-list-item-removed-container {
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
	}

	.basket-items-list-item-container-collapse .basket-items-list-item-removed-container div {
		text-align: center;
	}
}

.basket-items-list-item-container-collapse .basket-item-block-info, .basket-items-list-item-container-collapse .basket-item-block-common, .basket-items-list-item-container-collapse .basket-item-block-image {
	opacity: 0;
}

.basket-items-list-item-container.basket-items-list-item-container-collapse>td>div {
	overflow: hidden;
	height: 80px;
	opacity: 0;
}

.basket-items-list-item-removed-block {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
}

.basket-items-list-item-removed-block .faded {
	color: #ccc;
	cursor: default;
}

.basket-items-list-item-removed-anchor {
	border-bottom: 1px dashed;
	color: #333;
	font-weight: bold;
}

.basket-items-list-item-clear-btn {
	position: relative;
	display: inline-block;
	margin-left: 10px;
	width: 25px;
	height: 25px;
	cursor: pointer;
}

.basket-items-list-item-clear-btn:after, .basket-items-list-item-clear-btn:before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px;
	height: 14px;
	background: #d0021b;
	content: '';
	transition: 300ms background-color ease;
}

.basket-items-list-item-clear-btn:after {
	-webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
	transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

.basket-items-list-item-clear-btn:before {
	-webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
	transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}

.basket-items-list-item-clear-btn:hover:after, .basket-items-list-item-clear-btn:hover:before {
	background-color: #7e000f;
}

.basket-items-list-item-double {
	margin: 10px 0;
}

.basket-items-list-item-double>div {
	margin-bottom: 10px;
	padding: 5px 35px 5px 15px;
}

.basket-items-list-item-double-anchor, .basket-items-list-item-double-anchor:visited {
	border-bottom: 1px dashed;
	color: #333;
	text-decoration: none;
}

.basket-items-list-item-double-anchor:hover {
	color: #23527c;
}

.basket-items-list-item-warning-container {
	margin: 10px 0;
	font-size: 12px;
	background: #ffe8e8;
	color: red;
}

.basket-items-list-item-warning-container span.close:before {
	display: none;
}

.basket-items-list-item-warning-container>div {
	margin-bottom: 0;
	padding: 8px 35px 8px 12px;
}

.bx-sbb-empty-cart-title {
	font-size: 36px;
	font-weight: bold;
	color: #262626;
	text-align: center;
	line-height: 40px;
	margin-bottom: 8px;
}

.bx-sbb-empty-cart-desc a {
	text-decoration: underline;
}

.bx-sbb-empty-cart-container a.btn.btn-send.basket-btn-checkout {
	max-width: 310px;
	margin: 0 auto 200px;
}

.bx-sbb-empty-cart-container {
	margin: 100px 0;
}

.basket-items-list-wrapper-compact .basket-items-list-item-container {
	-ms-flex-align: start;
	padding: 17px 0;
	-webkit-box-align: start;
	align-items: flex-start;
}

/*region Gifts*/
.basket-item-gifts-list-container {
	position: relative;
	margin-bottom: 20px;
	border: 1px solid #fceb9f;
	background: #fffef8;
}

.basket-item-gifts-list-container:after {
	position: absolute;
	top: -10px;
	left: 90px;
	display: block;
	width: 17px;
	height: 17px;
	background-color: #fceb9f;
	content: '';
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.basket-item-gifts-list-title {
	padding: 12px 17px;
	background-color: #fceb9f;
	color: #5b5848;
}

.basket-item-gifts-list {
	padding: 15px;
}

.basket-items-list-gift-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	border-bottom: 1px solid #f3f2ed;
	-webkit-box-align: center;
	align-items: center;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.basket-item-gifts-list .basket-items-list-gift-item:last-child {
	border-bottom: none;
}

/*region Gift image*/
.basket-item-gift-image-container {
	padding: 10px 0;
	min-width: 48px;
	max-width: 100%;
	width: 168px;
	text-align: center;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.basket-item-gift-image-link {
	display: inline-block;
}

.basket-item-gift-image {
	display: inline-block;
	max-width: 100%;
	max-height: 69px;
	width: auto;
	height: auto;
}

/*endregion*/

/*region Gift title*/
.basket-item-gift-title-container {
	padding: 5px 15px;
	width: 100%;
	-webkit-box-flex: 9;
	-ms-flex: 9;
	flex: 9;
}

.basket-item-gift-title-link {
	color: #333;
	font: 400 15px/20px "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	transition: 300ms all ease;
}

@media (max-width: 580px) {
	.basket-item-gift-title-link {
		font-size: 13px;
	}
}

/*endregion*/

/*region Gift price*/
.basket-item-gift-price-container {
	text-align: right;
	-webkit-box-flex: 2;
	-ms-flex: 2;
	flex: 2;
}

.basket-item-gift-price-current {
	color: #2f3435;
	font: 400 22px/26px "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.basket-item-gift-price-old {
	color: #a1a1a1;
	text-decoration: line-through;
	font: 400 13px/16px "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.basket-item-gift-price-difference {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	padding: 5px 6px 6px;
	background: #e2f0cb;
	color: #525c69;
	text-align: center;
	text-transform: uppercase;
	font: bold 9px/12px "Helvetica Neue", Helvetica, Arial, sans-serif;
	-webkit-box-align: center;
	align-items: center;
}

@media (max-width: 580px) {
	.basket-items-list-gift-item {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.basket-item-gift-price-container {
		min-width: 100%;
	}
}

/*endregion*/
/*endregion*/

/*region Gift-container*/
.basket-gifts-list-wrapper, .basket-gifts-list-wrapper-compact {
	margin-bottom: 15px;
	border: 1px solid #e2dfdf;
}

.basket-gifts-list-header {
	padding: 18px 25px 20px;
	border-bottom: 1px solid #e2dfdf;
	background: #f2f2f2;
	font: bold 15px/18px "Helvetica Neue", Helvetica, Arial, sans-serif;
	transition: 300ms all ease;
}

.basket-clear {
	cursor: pointer;
	pointer-events: auto;
}

.basket-clear:after, .basket-clear:before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px;
	height: 14px;
	background: #a1a1a1;
	content: '';
	transition: 300ms background-color ease;
}

.basket-clear:after {
	-webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
	transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

.basket-clear:before {
	-webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
	transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}

.basket-clear:hover:after, .basket-clear:hover:before {
	background-color: #333;
}

@media (max-width: 991px) {
	.basket-gifts-list-header {
		padding: 10px 9px 11px;
		font-size: 12px;
		line-height: 15px;
	}
}

.basket-gifts-list {
	padding: 0 25px;
}

.basket-gifts-description-container {
	padding: 11px;
	color: #868d96;
	text-align: center;
	font: 400 13px/15px "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.basket-gifts-list-item-container {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	overflow: hidden;
	padding: 20px 0;
	border-top: 1px solid #f2f2f2;
	transition: 300ms all ease;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	align-items: center;
}

.basket-gifts-list-item-container:first-child {
	border-top: none;
}

.basket-gift-block-image {
	padding: 5px 15px 5px 0;
	min-width: 50px;
	max-width: 50px;
}

.basket-gift-image-link {
	display: inline-block;
}

.basket-gift-image {
	display: inline-block;
	max-width: 100%;
	max-height: 168px;
	width: auto;
	height: auto;
	transition: 300ms all ease;
}

.basket-gift-block-info {
	flex: 1
}

.basket-gift-info-name, .basket-gift-info-name-link {
	margin: 0;
	padding: 0;
	color: #2f3435;
	text-decoration: none;
	font: 400 15px/19px "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	transition: 300ms all ease;
}

.basket-gift-info-name-link:hover {
	text-decoration: underline;
	cursor: pointer;
}

.basket-gift-block-common {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-line-pack: center;
	align-content: center;
}

.basket-gift-item-select-btn-container {
	display: flex;
	-ms-flex-align: center;
	flex-wrap: nowrap;
	align-items: center;
}

.basket-gift-item-selected {
	padding: 0 10px;
	color: #b6bbbf;
	font: 400 12px/14px "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.basket-gift-item-select-btn-label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	margin-bottom: 0;
	-webkit-box-align: center;
	align-items: center;
}

.basket-gift-item-select-input {
	display: none;
}

.basket-gift-item-select-btn-radio {
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	margin-right: 10px;
	width: 20px;
	height: 20px;
	border: 10px solid #fff;
	border-radius: 50%;
	background: var(--primary);
	box-shadow: 0 0 0 1px #828b95;
	cursor: pointer;
	transition: 190ms all ease;
}

.bx-ie .basket-gift-item-select-btn-radio {
	background: #006cc0;
}

.basket-gift-item-select-input:checked+.basket-gift-item-select-btn-radio {
	border-width: 5px;
}

.basket-gift-item-select-btn-text {
	text-transform: lowercase;
	font: bold 12px/14px "Helvetica Neue", Helvetica, Arial, sans-serif;
	cursor: pointer;
}

.basket-gift-item-select-btn-checkbox {
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	margin-right: 10px;
	width: 19px;
	height: 19px;
	border: 1px solid #828b95;
	border-radius: 2px;
	background-color: #fff;
	cursor: pointer;
}

.basket-gift-item-select-btn-checkbox:after, .basket-gift-item-select-btn-checkbox:before {
	position: absolute;
	background-color: #fff;
	content: '';
	opacity: 0;
	transition: 190ms all ease;
}

.basket-gift-item-select-btn-checkbox:after {
	top: 5px;
	left: 5px;
	z-index: 15;
	width: 3px;
	height: 9px;
	border-radius: 1px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.basket-gift-item-select-btn-checkbox:before {
	top: -1px;
	left: 11px;
	z-index: 10;
	width: 5px;
	height: 17px;
	border: 1px solid #fff;
	border-radius: 2px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.basket-gift-item-select-input:checked+.basket-gift-item-select-btn-checkbox:after, .basket-gift-item-select-input:checked+.basket-gift-item-select-btn-checkbox:before {
	background-color: var(--primary);
	opacity: 1;
}

.bx-ie .basket-gift-item-select-input:checked+.basket-gift-item-select-btn-checkbox:after, .bx-ie .basket-gift-item-select-input:checked+.basket-gift-item-select-btn-checkbox:before {
	background-color: #006cc0;
}

@media (max-width: 797px) {
	.basket-gift-item-select-btn-container {
		-ms-flex-direction: column;
		flex-direction: column;
		-ms-flex-align: end;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-box-align: end;
		align-items: flex-end;
	}

	.basket-gift-item-selected {
		-ms-flex-order: 2;
		padding-right: 0;
		text-align: right;
		-webkit-box-ordinal-group: 3;
		order: 2;
	}

	.basket-gift-item-select-btn-label {
		-ms-flex-order: 1;
		text-align: right;
		-webkit-box-ordinal-group: 2;
		order: 1;
	}
}

.bx-step-opacity {
	transition: 500ms opacity ease;
}

/*endregion*/

/*region not found*/
.basket-search-not-found {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -50px 0 0 0;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
}

.basket-search-not-found-icon {
	margin: 0 auto 80px;
	width: 180px;
	height: 180px;
	background: no-repeat center url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%22182px%22%20height%3D%22182px%22%20viewBox%3D%220%200%20182%20182%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3Cg%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill-rule%3D%22evenodd%22%20opacity%3D%220.2%22%20fill%3D%22%23A7ABB0%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M17%2C70.5%20C17%2C40.9473747%2040.9473747%2C17%2070.5%2C17%20C100.052625%2C17%20124%2C40.9473747%20124%2C70.5%20C124%2C100.052625%20100.052625%2C124%2070.5%2C124%20C40.9473747%2C124%2017%2C100.052625%2017%2C70.5%20M178.408149%2C160.192955%20L129.280894%2C111.056302%20C129.216524%2C111.017683%20129.152154%2C110.991937%20129.100658%2C110.953317%20C136.979557%2C99.5348706%20141.614204%2C85.7220257%20141.614204%2C70.8020936%20C141.614204%2C31.6935917%20109.905496%2C0%2070.8071019%2C0%20C31.7087076%2C0%200%2C31.6935917%200%2C70.8020936%20C0%2C109.910596%2031.7087076%2C141.604187%2070.8071019%2C141.604187%20C85.7152154%2C141.604187%2099.5419113%2C136.969868%20110.948292%2C129.091526%20C110.999788%2C129.143019%20111.012662%2C129.220257%20111.064158%2C129.27175%20L160.204287%2C178.408403%20C164.993422%2C183.197199%20172.846573%2C183.197199%20177.635708%2C178.408403%20L178.408149%2C177.623143%20C183.197284%2C172.834347%20183.197284%2C164.981751%20178.408149%2C160.192955%22/%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
	background-size: cover;
}

.basket-search-not-found-text {
	color: #c0c5ca;
	text-align: center;
	font: 30px/35px "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*endregion*/

.bx-sbb-empty-cart-image {
	margin: 50px auto 42px;
	width: 131px;
	height: 116px;
	background: url(/local/templates/luisawang/components/lusio/sale.basket.basket/full_cart/images/empty_cart.svg) no-repeat center;
	background-size: contain;
	-webkit-background-size: contain;
}

.bx-sbb-empty-cart-text {
	margin-bottom: 42px;
	color: #bababa;
	text-align: center;
	font-size: 36px;
}

.bx-sbb-empty-cart-desc {
	margin-bottom: 42px;
	color: #000;
	text-align: center;
	font-size: 16px;
}

.catalog-block-header {
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	margin: 5px 0;
	padding: 5px 15px;
	border-bottom: 2px solid #d9dee6;
	color: #000;
}

@media (max-width: 480px) {
	/*.mod_chk{*/
	/*	display: block;*/
	/*	position: fixed;*/
	/*	left: 0;*/
	/*	right: 0;*/
	/*	bottom: 0;*/
	/*	padding: 8px 20px 8px 20px;*/
	/*	z-index: 100;*/
	/*	background: #fff;*/
	/*	box-shadow: 0px 0px 10px 0px #0000001A;*/
	/*}*/
	/*.mod_chk .mod_chk_btn{    margin: 0;}*/
}
@media (max-width: 428px) {

	.basket-item-info-name, 	.basket-item-info-name-link {
		font-size: 16px !important;
		line-height: 24px !important;
		padding-right: 0;
		position: static !important;
	}

	.basket-item-block-info {
		justify-content: start;
		line-height: 24px !important;
	}

	tr.basket-items-list-item-container {
		padding-bottom: 55px;
	}

	.basket-items-list-item-container>td {
		padding-bottom: 0px;
	}

	.basket-items-list-item-amount {
		left: 0 !important;
	}

	.basket-items-list-item-price {
		width: calc(100% - 100px) !important;
	}

	.basket-item-price-old {
		/* position: absolute !important; */
		/* right: 100px; */
		display: inline;
		margin-right: 10px;
	}

	.basket-item-price-current {
		display: inline;
	}

	.basket-item-block-image {
		max-width: 100px !important;
	}

	.basket-item-image {
		width: 100%;
	}

	.basket-item-property-name, 	.basket-item-property-value {
		font-size: 14px;
		color: #6F6F6F;
	}
}

.bx-breadcrumb-item-separator, .bx-breadcrumb-item-link .bx-breadcrumb-item-text {
	color: #D1D1D3 !important;
}

.bx-breadcrumb-item-link {
	border-bottom: none !important;
}
@media (min-width: 460px) and  (max-width: 768px) {
	div#basket-item-list {
		padding: 0 !important;
		margin: 0 !important;
	}

	.bx-basket__content.d-flex {
		padding: 0 20px !important;
	}

	.basket-item-block-info {
		width: 100% !important;
	}

	.basket-items-list-item-amount {
		width: 125px !important;
	}

	.basket-items-list-item-descriptions {
		width: auto !important;
	}

	.basket-total-block__wrapper {
		padding: 0 !important;
	}
}

.wishlist-btn {
	margin-top: 18px;
}
.basket-checkout-block-total__wrapper .close-link {
	position: relative;
	display: inline-block;
	margin-left: 10px;
	width: 20px;
	height: 20px;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAANhJREFUeNpEkM0KwjAQhGdr/Dv6Nj6EXkRvehTfRhS868lWWigU9OFEHGeTqIF0dydftrMJp0s1McMdwJ5AY0iLKaxVbwGbBxgeJKaCS4NjbJxQvlE4a/ektUFX9w5JCNolEzQmGCHlT8VjEFQjdvrBN0EOF4oOrXS5Cxmqs7NKVSEroPHlkLLOLRX4r5HOjenf3tE7DDyjxCLNx032ZFovSe80BK7Sl9IQmJ4gT4foSfowe+47jGx+xzidQxY9Zd/+/cLbIC8ztW9VHBL0fXDWGdeDc/ERYABB6E45iF95UQAAAABJRU5ErkJggg==) no-repeat center;
	vertical-align: middle;
	cursor: pointer;
	border-bottom: none;
}

.basket-coupon-alert.text-danger .basket-coupon-text {
	color: #f9a91d;
}

.basket-coupon-alert.text-muted .basket-coupon-text {
	color: #87c73d;
}

.basket-coupon-alert strong {
	color: #6F6F6F;
}


/* New cart page starts */

/* body.personal-cart-page {
	font-family: "SF Pro Display";
} */

#basket-root.main-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 80px;
	max-width: 1400px;
	padding: 32px 0;
	margin: 0 auto;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.empty-container {
	max-width: 100%;
	padding: 128px 0 100px 0;
}

#basket-root .main-container__heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	width: 100%;
}

#basket-root .main-container__heading-empty-cart {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 0 24px 0;
}

#basket-root .main-container__heading-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	padding: 0px;
}

#basket-root .main-container__heading-text__title,
#basket-root h1.main-container__heading-text__title {
	color: var(--gray-80, #262626);
	text-align: center;
	font-size: 36px;
	/* font-family: "SF Pro Display"; */
	font-weight: 500;
	line-height: 40px;
	text-transform: none;
}

.empty-container .main-container__heading-text__title {
	margin: 0;
}

.empty-container .main-container__heading-text {
	margin: 0 0 48px 0;
}

#basket-root .main-container__heading-text__data {
	text-align: center;
	/* font-family: "SF Pro Display"; */
}

#basket-root .main-container__heading-text__data a {
	text-decoration: underline !important;
	text-underline-offset: 3px;
}

#basket-root .main-container__heading-btn {
	margin: 0 auto;
}

#basket-root .main-container__content.bx-basket__content {
    /* overflow: hidden; */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 105px;
	padding: 0;
}

.content-goods {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.content-goods__not-allowed-title {
	color: var(--gray-80, #262626);
	font-size: 24px;
	font-weight: 500;
	line-height: 28px;
}

.content-goods__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 32px 0;
	border-bottom: 1px solid var(--gray-40, #d1d1d3);
}

.content-goods__item.gap-modificator {
	gap: 64px;
}

.content-goods__item-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.content-goods__item-info__picture {
	width: 120px;
	height: 150px;
}

.content-goods__item-info__picture img {
	width: auto;
	height: 100%;
}

.content-goods__item-info__text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.content-goods__item-info__text-title {
	color: var(--gray-80, #262626);
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
}

.content-goods__item-info__text-specification {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 2px;
}

.content-goods__item-info__text-specification span {
	color: var(--gray-60, #6f6f6f);
	font-size: 16px;
}

.modificator-removed {
	opacity: 0.5;
}

.content-goods__item-info__text-modificator {
	line-height: 18px;
}

.content-goods__item-info__text-modificator.modificator-return {
	color: var(--gray-80, #262626);
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}

.content-goods__item-info__text-modificator.modificator-last {
	color: var(--error-80, #f04438);
}

.content-goods__item-info__text-modificator.modificator-remain {
	color: var(--gray-50, #a5a5a5);
}

.content-goods__item-info__text-warning {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	padding: 11px 16px;
	background: var(--error-10, #fef3f2);
}

.content-goods__item-info__text-warning__not-available {
	color: var(--error-80, #f04438);
	font-size: 14px;
	line-height: 18px;
}

.content-goods__item-info__text-warning__inform {
	color: var(--gray-80, #262626);
	font-size: 14px;
	line-height: 18px;
	-webkit-text-decoration-line: underline;
	text-decoration-line: underline;
	cursor: pointer;
	white-space: nowrap;
}

.content-goods__item-info__text-warning.warning-mobile {
	display: none;
}

.content-goods__item-info__icons {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}

.content-goods__item-order {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 64px;
}

.content-goods__item-order__counter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
	text-align: end;
}

.content-goods__item-order__counter-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 16px;
	gap: 12px;
	border: 1px solid var(--gray-40, #d1d1d3);
}

.content-goods__item-order__counter-block__value {
	width: 20px;
	border: none;
	color: var(--gray-80, #262626);
	text-align: center;
	font-size: 16px;
}

.content-goods__item-order__counter img {
	cursor: pointer;
}

.content-goods__item-order__counter-block__price {
	color: var(--gray-50, #a5a5a5);
	font-size: 14px;
	line-height: 18px;
}

.content-goods__item-order__other {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 24px;
}

.content-goods__item-order__other-price {
	text-align: end;
	color: var(--gray-80, #262626);
	font-size: 20px;
	line-height: 24px;
	white-space: nowrap;
}

.content-goods__item-order__other-price.original-price {
	color: var(--gray-50, #a5a5a5);
	font-size: 16px;
	letter-spacing: 0.32px;
	-webkit-text-decoration-line: line-through;
	text-decoration-line: line-through;
}

.content-goods__item-order__other-icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
}

.content-goods__item-order__other-icons img {
	cursor: pointer;
}

.content-payment {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
	position: sticky;
	top: 16px;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	padding: 0;
}

.content-payment__transaction {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 0px;
	padding: 20px;
	background: var(--gray-10, #fafafa);
}

.content-payment__transaction-title {
	color: var(--gray-80, #262626);
	/* font-family: "SF Pro Display"; */
	font-size: 24px;
	font-weight: 500;
	line-height: 28px;
}

.content-payment__transaction-detail {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
}

.content-payment__transaction-detail__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 6px;
}

.content-payment__transaction-detail__info-quantity,
.content-payment__transaction-detail__info-delivery,
.content-payment__transaction-detail__info-promo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.content-payment__transaction-detail__info-quantity span,
.content-payment__transaction-detail__info-delivery span,
.content-payment__transaction-detail__info-promo span {
	color: var(--gray-80, #262626);
	font-size: 16px;
}

.content-payment__transaction-detail__promo {
	color: var(--gray-80, #262626);
	/* font-family: "SF Pro Display"; */
	font-size: 16px;
	-webkit-text-decoration-line: underline;
	text-decoration-line: underline;
	text-underline-offset: 3px;
	cursor: pointer;
	width: fit-content;
}

.content-payment__transaction-detail__promo-active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
}

.content-payment__transaction-detail__promo-active__input-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
}

.content-payment__transaction-detail__promo-active__input-group input {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid var(--success-80, #0bac38);
	text-transform: uppercase;
	color: var(--gray-50, #a5a5a5);
}

.content-payment__transaction-detail__promo-active__input-group input::-webkit-input-placeholder {
	color: var(--gray-50, #a5a5a5);
	font-size: 16px;
}

.content-payment__transaction-detail__promo-active__input-group input::-moz-placeholder {
	color: var(--gray-50, #a5a5a5);
	font-size: 16px;
}

.content-payment__transaction-detail__promo-active__input-group input:-ms-input-placeholder {
	color: var(--gray-50, #a5a5a5);
	font-size: 16px;
}

.content-payment__transaction-detail__promo-active__input-group input::-ms-input-placeholder {
	color: var(--gray-50, #a5a5a5);
	font-size: 16px;
}

.content-payment__transaction-detail__promo-active__input-group input::placeholder {
	color: var(--gray-50, #a5a5a5);
	font-size: 16px;
}

.content-payment__transaction-detail__promo-active__input-group img {
	cursor: pointer;
}

.content-payment__transaction-detail__promo-active__subtitle {
	color: var(--success-80, #0bac38);
	font-size: 14px;
	line-height: 18px;
}

.content-payment__transaction-sum {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 24px;
	border-top: 1px solid var(--gray-40, #d1d1d3);
	/* font-family: "SF Pro Display"; */
}

.content-payment__transaction-sum span {
	color: var(--gray-80, #262626);
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
}

.content-goods__order-mobile {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	padding: 20px;
	background-color: #fff;
	-webkit-box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
}

.content-goods__order-mobile__sum {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 10;
}

.content-goods__order-mobile__sum span {
	color: var(--gray-80, #262626);
	font-size: 16px;
	font-weight: 500;
}
.basket-item-scu-list .basket-item-scu-item {
	border: 0;
    margin: 0;
	padding: 8px 16px;
	width: 100%;
	cursor: pointer;
}
.basket-item-scu-item.selected:hover {
	cursor: pointer;
}
.basket-item-property-scu-text .basket-item-scu-list .basket-item-scu-item-inner {
    /* font-family: 'SF-PRO'; */
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #262626;
	padding: 0;
	text-align: left;
}
.basket-item-property-scu-text .basket-item-scu-list .basket-item-scu-item.selected::after {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	right: 16px;
	top: 9px;
	position: absolute;
	background: url(/local/templates/lusio/img/icon/check.svg) no-repeat center center;
}

.basket-item-scu-list.basket-item-scu-list-COLOR_REF .basket-item-scu-item.selected::after {
	top: 11px;
}
.basket-item-scu-list.basket-item-scu-list-COLOR_REF .basket-item-scu-item {
	width: 100%;
	padding: 6px 8px;
}
.basket-item-scu-list.basket-item-scu-list-COLOR_REF .basket-item-scu-item-inner {
	width: 28px;
	height: 28px;
	min-width: 28px;
}
.content-goods__order-mobile__btn {
	padding: 13px 30px;
	background: var(--gray-80, #262626);
	color: var(--white-100, #fff);
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 2.7px;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
}

.content-payment__transaction-order {
	padding: 18px 30px;
	background: var(--gray-80, #262626);
	color: var(--white-100, #fff);
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 2.7px;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
}

.content-payment__transaction-delivery {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
	padding-top: 20px;
	border-top: 1px solid var(--gray-40, #d1d1d3);
}

.content-payment__transaction-delivery__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 14px;
}

.content-payment__transaction-delivery__item-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
}

.content-payment__transaction-delivery__item-info__type {
	color: var(--gray-80, #262626);
	font-size: 16px;
}

.content-payment__transaction-delivery__item-info__date {
	color: var(--gray-60, #6f6f6f);
	font-size: 14px;
	line-height: 18px;
}

.content-payment__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
}

.content-payment__info-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 14px;
}

.content-payment__info-item__data {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
}

.content-payment__info-item__data-title {
	color: var(--gray-80, #262626);
	font-size: 16px;
}

.content-payment__info-item__data-description {
	color: var(--gray-60, #6f6f6f);
	font-size: 14px;
	line-height: 18px;
}

.content-payment__info-item__data-banks {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}

.content-payment__info-item__data-more {
	color: var(--gray-80, #262626);
	font-size: 14px;
	line-height: 18px;
	-webkit-text-decoration-line: underline !important;
	text-decoration-line: underline !important;
	text-underline-offset: 3px;
}

.main-catalog {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	padding: 0 50px;
	margin-top: 24px;
}

.main-catalog__title {
	color: var(--Gray-80, #262626);
	font-size: 24px;
	line-height: 32px;
	letter-spacing: 0.48px;
}

.main-catalog__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 24px;
}

.main-catalog__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
}

.main-catalog__item-img {
	max-width: 350px;
	position: relative;
}

.main-catalog__item-img__item {
	width: 100%;
	height: auto;
}

.main-catalog__item-img__favorite {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}

.main-catalog__item-data {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: auto;
}

.main-catalog__item-data__title {
	color: var(--Gray-80, #262626);
	font-size: 16px;
	line-height: 24px;
}

.main-catalog__item-data__colors {
	color: var(--Gray-50, #a5a5a5);
	font-size: 14px;
}

.main-catalog__item-data__pric {
	color: var(--Gray-80, #262626);
	font-size: 14px;
	font-weight: 350;
}

header .bx-header-section__top.header-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 1920px;
	width: 100%;
	padding: 0;
	margin: 0 auto;
}

.header-return {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	border-bottom: none;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.header-return:hover {
	border: none;
}

.header-return__link {
	color: var(--primary-80, #524841);
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	/* 125% */
	letter-spacing: 1.6px;
	text-transform: uppercase;
}

.header-logo__horizontal {
	display: none;
}

.wrapper main {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.wrapper footer {
	width: 100%;
	border-top: 1px solid var(--gray-40, #d1d1d3);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
}

.footer-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 1920px;
	margin: 0 auto;
	padding: 20px 50px;
}

.footer-rights {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: var(--gray-50, #a5a5a5);
}

.footer-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
}

.footer-nav__link {
	color: var(--gray-80, #262626);
	line-height: 18px;
}

.wrapper .hidden {
	visibility: hidden;
	pointer-events: none;
}

@media (max-width: 1400px) {

	#basket-root.main-container {
		padding: 32px 51px;
	}

}

@media (max-width: 1200px) {

	#basket-root.main-container {
		padding: 32px 24px;
		gap: 40px;
	}

	#basket-root .main-container__content {
		gap: 70px;
	}

	.header-container {
		padding: 24px 24px 16px 24px;
	}

	.footer-container {
		padding: 20px 24px;
	}

}

@media (max-width: 1100px) {

	#basket-root.main-container {
		padding: 24px 51px;
		gap: 24px;
	}

	.main-catalog {
		padding: 0;
	}

	#basket-root .main-container__content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 50px;
	}

	.content-payment {
		position: relative;
	}

	.footer-container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		gap: 12px;
		padding: 32px 0 !important;
	}

	.footer-rights.hidden {
		display: none;
	}

	.basket-items-list-container .basket-items-list {
		padding: 0;
	}

	.bx-basket__content .basket-total-block__wrapper {
		padding: 0;
	}

}

@media (max-width: 770px) {

	.wrapper .full-btn {
		width: 100%;
		padding: 13px 30px;
		font-size: 14px;
	}

	.main-container__heading-content-goods__order-mobile {
		font-size: 24px;
	}

	.main-container__heading-text {
		padding: 24px 0;
		gap: 8px;
	}

	.main-catalog__container {
		gap: 8px;
		overflow-x: auto;
	}


	.main-catalog__item-img__item {
		min-width: 160px;
	}

	#basket-root.main-container {
		padding: 0 20px 24px 20px;
		gap: 0;
	}

	.main-container__heading-empty-cart {
		padding-top: 16px;
	}

	.main-container__content {
		gap: 24px;
	}

	.main-container__heading-text__title {
		font-size: 24px;
	}

	.content-goods__item-order__counter {
		-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;
		gap: 16px;
	}

	.content-payment__transaction-order {
		font-size: 14px;
	}

	.content-goods__item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		gap: 8px;
		width: 100%;
	}

	.content-goods__item.gap-modificator {
		gap: 8px;
	}

	.content-goods__item-order {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap: 0;
		width: 100%;
	}

	.content-goods__item-order.modificator-not-available {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		-webkit-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	.content-goods__item-info__text-warning {
		display: none;
	}

	.content-goods__item-info__text-warning.warning-mobile {
		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: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		width: 100%;
	}

	.content-goods__item-order.without-counter {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: end;
	}

	.content-goods__item-info {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		width: 100%;
	}

	.content-goods__item-info__icons {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-left: auto;
	}

	.content-goods__item-info__text {
		gap: 8px;
	}

	.content-goods__item-info__text-title {
		font-size: 16px;
	}

	.content-goods__item-info__text-specification span {
		font-size: 14px;
	}

	.content-goods__item-order__other-icons {
		display: none;
	}

	.content-goods__order-mobile {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.wrapper header {
		border-bottom: 1px solid var(--Gray-40, #D1D1D3);
	}

	.header-container {
		padding: 5px 20px;
	}

	.header-return__link {
		display: none;
	}

	.header-logo__vertical {
		display: none;
	}

	.header-logo__horizontal {
		display: block;
	}

}

.header.cart-header {
	height: 140px;
	padding: 24px 50px 16px 50px;
	display: flex;
	align-items: stretch;
	z-index: 20;
}

.header.cart-header:hover {
	border-bottom: none;
}

.header.cart-header .bx-header-section.container-fluid {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header.cart-header .bx-header-section.sticky {
	padding: 0;
	position: relative;
	width: 100%;
	background: #fff;
	box-shadow: none;
	z-index: 0;
}

.header.cart-header .sticky .bx-header-logo {
	display: block;
}

header .hidden,
footer .hidden {
	visibility: hidden !important;
    pointer-events: none !important;
}

.sticky .bx-header-section__top--second.header-container {
	/* position: absolute !important; */
    height: 100px;
}

.sticky .bx-header-section__top.bx-header-section__top--second:not(.header-container) {
    position: relative;
    width: auto;
    z-index: 1;
    justify-content: space-around;
    height: 100px;
}

.basket-coupon-block-total-middle__wrapper,
.basket-coupon-block-total-price-current {
	margin: 0 0 8px 0;
	/* font-family: "SF Pro Display"; */
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 125%;
}

.basket-coupon-block-total-price-current {
	margin: 0;
}

.basket-checkout-block.basket-bonus {
	padding: 0 0 24px 0;
	margin: 12px 0 20px 0;
	border-bottom: 1px solid var(--Gray-40, #D1D1D3);
	color: #6F6F6F;
	/* font-family: 'SF-PRO'; */
    font-size: 14px;
}

.btn.basket-btn-checkout {
	/* color: var(--White-100, var(--Default-White-100, #FFF));
	text-align: center; */
	/* font-family: "SF Pro Display"; */
	/* font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: 2.7px;
	text-transform: uppercase;
	padding: 18px 20px; */
}

.btn.basket-btn-checkout:disabled {
    background-color: #F3F3F3;
    color: #A5A5A5;
    cursor: not-allowed;
}

.content-payment__info-item__icon img {
	min-width: 24px;
	width: 24px;
	max-width: 24px;
	min-height: 24px;
	height: 24px;
	max-height: 24px;
}

.basket-checkout-block-total-price {
	border: none;
}

.basket-coupon-section {
	margin: 8px 0 0 0;
}

.basket-coupon-block-field .form-group {
	position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.basket-coupon-block-field input:not([class^="bx-"]) {
    height: 46px;
    margin: 0;
}

.basket-coupon-block-field .apply_coupon {
    position: absolute;
	right: 55px;
    top: 13px;
    line-height: normal;
    font-size: 13px;
    color: #000;
    text-decoration: none;
    height: 20px;
    width: 20px;
}

.basket-coupon-block-field .basket-coupon-block-clear {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.basket-coupon-section .hide {
	display: none;
}

.basket-coupon-section .show {
	display: block;
}

.basket-items-list {
    border: none;
}

.basket-items-list-item-descriptions-inner {
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.basket-items-list-item-checkbox {
	-ms-flex-order: 1;
	-webkit-box-ordinal-group: 2;
	order: 1;
	-ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
    margin-right: 12px;
}

.basket-item-checkbox-label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	grid-gap: 12px;
	gap: 12px;
	cursor: pointer;
	-webkit-transition: .4s background, .4s color;
	transition: .4s background, .4s color;
}

.basket-item-checkbox-input {
    width: 24px;
    height: 24px;
    display: inline-block;
    /* border: 1px solid var(--Gray-80, #262626); */
}

.basket-item-checkbox-input input[type='checkbox'] {
    display: none;
    width: 0;
    height: 0;
    opacity: 0;
}

.basket-item-checkbox-input input:checked~.basket-item-checkbox-wrapper {
    background: #282828;
}

.basket-item-checkbox-wrapper {
    height: 100%;
}

.basket-item-checkbox-input input:checked~.basket-item-checkbox-wrapper:before {
    display: inline-block;
}

.basket-item-checkbox-wrapper:before {
    content: "";
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="none"><path stroke="%23fff" stroke-linecap="round" stroke-linejoin="round" d="m1.575 7 3.85 3.85 7-7.7"/></svg>');
    display: none;
    width: 100%;
    height: 100%;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
}

.basket-items-list-item-descriptions {
	-ms-flex-order: 2;
	-webkit-box-ordinal-group: 3;
    order: 2;
    width: auto;
    flex: 1;
	padding: 0;
	margin: 0 20px 0 0;
}

.basket-item-block-image {
    padding: 0;
    margin: 0;
    min-width: 120px;
    max-width: 120px;
    width: 120px;
    min-height: 150px;
    height: 150px;
    max-height: 150px;
}

.basket-item-image {
    display: inline-block;
    min-width: 120px;
    max-width: 120px;
    max-height: 150px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.basket-item-info-name,
.basket-item-info-name-link {
    color: var(--Gray-80, #262626);
    /* font-family: SF Pro Display; */
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
	letter-spacing: normal;
    padding: 0;
	margin: 0;
}

h2.basket-item-info-name {
    margin: 0 0 12px 0px;
}

.basket-item-property, .basket-item-property-custom {
    padding-bottom: 2px;
}

.basket-item-property-name,
.basket-item-property-custom-name,
.basket-item-property-value,
.basket-item-property-custom-value {
    color: var(--Gray-60, #6F6F6F);
    /* font-family: "SF Pro Display"; */
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.basket-item-property-name,
.basket-item-property-custom-name {
	margin-right: 3px;
}

.basket-item-block-quantity {
	color: var(--Gray-50, #A5A5A5);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px;
	margin: 10px 0 0 0;
}

.basket-items-list-item-amount {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3;
    width: 120px;
    padding: 0;
	color: var(--Gray-80, #262626);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 125%;
	margin: 0 40px 0 0;
}

.basket-item-block-amount {
    max-width: 116px;
}

.basket-item-amount-btn-plus, .basket-item-amount-btn-minus {
    width: 36px;
    height: 40px;
}

.basket-items-list-item-amount input.basket-item-amount-filed {
    max-width: 116px !important;
    height: 40px !important;
    margin-bottom: 0px;
	padding: 5px 30px;
    /* font-family: SF Pro Display; */
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0em;
	width: 100%;
}

.basket-item-amount-field-description {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    left: 0;
    color: var(--Gray-50, #A5A5A5);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
	display: none;
}

.basket-items-list-item-price {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4;
	width: 100%;
	max-width: 140px;
    padding: 0;
	margin: 0 24px 0 0px;
}

.basket-item-price-current-text {
    letter-spacing: -.33px;
    transition: 180ms text-shadow ease, 180ms color ease;
    color: var(--Gray-80, #262626);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

.basket-item-price-old-text {
    text-decoration: line-through;
    color: var(--Gray-50, #A5A5A5);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.32px;
}

.basket-items-list-item-remove {
	-ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5;
    padding: 0;
	display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.basket-items-list-item-remove .wishlist-btn {
	margin: 0;
}

.basket-items-list-item-remove .wishlist-btn a.favor {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 auto;
	background-image: url(/local/templates/lusio/images/w-heart-dark.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.basket-items-list-item-remove .wishlist-btn a.favor.active {
    background-image: url(/local/templates/lusio/images/w-heart-fill-dark.svg);
}

.basket-item-actions-remove {
    width: 20px;
    height: 20px;
}

.basket-items-list__wrapper .basket-items-list-header {
	display: -webkit-box;
	display: flex !important;
    display: -ms-flexbox;
    -ms-flex-align: center;
    padding: 0px 0px 24px 0px;
    border: none;
	border-bottom: 1px solid var(--Gray-40, #D1D1D3);
    background: transparent;
    -webkit-box-align: center;
    align-items: center;
	justify-content: flex-start;
	gap: 24px;
	color: var(--Gray-80, #262626);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 125%;
}

.basket-items-list-header-remove.hide {
	display: none;
}

.basket-items-list-header-remove {
	cursor: pointer;
	display: flex;
	flex-flow: row;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
}

.basket-items-list-header-remove .basket-items-list-header-remove-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}

.basket-checkout-not-authorized {
    font-size: 18px;
    line-height: 24px;
    color: var(--theme-color-dark);
    text-align: center;
    margin: 20px auto;
    max-width: 90%;
}

#basket-item-table-not-available {
	margin: 32px 0 0 0;
}

.content-goods__not-allowed-title {
	/* font-family: "SF Pro Display"; */
	font-size: 24px;
	font-weight: 500;
	line-height: 28px;
	letter-spacing: 0em;
}

#basket-item-table-not-available .basket-items-list-item-checkbox,
#basket-item-table-not-available .basket-item-block-image,
#basket-item-table-not-available .basket-item-info-name,
#basket-item-table-not-available .basket-item-block-properties,
#basket-item-table-not-available .basket-items-list-item-price {
	opacity: .5;
}

#basket-item-table-not-available .basket-item-block-quantity,
#basket-item-table-not-available .basket-items-list-item-amount,
#basket-item-table-not-available .basket-item-amount-field-description {
	display: none;
}

#basket-item-table-not-available .alert.alert-warning {
	/* font-family: "SF Pro Display"; */
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	letter-spacing: 0em;
	text-align: left;
	padding: 11px 16px;
	color: #F04438;
}

#basket-item-table-not-available input,
#basket-item-table-not-available .basket-item-checkbox-input {
	cursor: default;
}
.main-container__heading {
	text-align: center;
}
.basket-items-list-item-warning-container {
    margin: auto 0 0 0;
    background: #FEF3F2;
	width: fit-content;
}

.basket-item-block-info {
    align-self: stretch;
}

.bx-header-logo--second .bx-logo-block {
    height: 48px;
    width: 128px;
}

.bx-sbb-empty-cart-container {
	margin: 0;
}

.calc-city__btn:hover,
.calc-city__btn.active {
	color: #DBA97B;
}

.basket-checkout-disabled-warning {
	display: none;
	/* font-family: "SF Pro Display"; */
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0em;
	text-align: left;
}

.content-payment__transaction.disabled .basket-checkout-block-total,
.content-payment__transaction.disabled .basket-coupon-block-total-middle__wrapper,
.content-payment__transaction.disabled .basket-coupon-section,
.content-payment__transaction.disabled .basket-checkout-block-total-price,
.content-payment__transaction.disabled .product-delivery {
	display: none;
}

.content-payment__transaction.disabled .basket-checkout-disabled-warning {
	display: block;
}

.basket-items-list-item-container.basket-items-list-item-container-expend {
	display: flex;
}

.basket-item-block-actions .basket-item-actions-restore {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
	cursor: pointer;
	background: url('/local/templates/lusio/components/bitrix/sale.basket.basket/full_cart/images/restore.svg');
	background-position: center;
	background-repeat: no-repeat;
}

.basket-items-list-item-container.basket-items-list-item-container-expend .basket-items-list-item-checkbox,
.basket-items-list-item-container.basket-items-list-item-container-expend .basket-item-block-image,
.basket-items-list-item-container.basket-items-list-item-container-expend .basket-item-info-name,
.basket-items-list-item-container.basket-items-list-item-container-expend .basket-item-block-properties,
.basket-items-list-item-container.basket-items-list-item-container-expend .basket-items-list-item-price {
	opacity: .5;
}

.basket-item-permanent-remove {
	/* font-family: "SF Pro Display"; */
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	letter-spacing: 0em;
	color: #262626;
	margin: 8px 0 0 0;
}

.basket-item-permanent-remove .js-remove-counter {
	color: #F04438;
}

.basket-item-permanent-restore {
	display: inline-flex;
    margin: 0 0 0 4px;
	/* font-family: "SF Pro Display"; */
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	letter-spacing: 0em;
	text-decoration: underline;
}

@media screen and (max-width: 1200px) {

	.main-container__content.bx-basket__content {
		gap: 55px;
	}

	.basket-item-info-name, .basket-item-info-name-link {
		font-size: 18px;
	}

	.basket-items-list-item-descriptions {
		margin: 0 10px 0 0;
	}

	.basket-items-list-item-amount {
		width: 120px;
		padding: 0;
		margin: 0 20px 0 0;
	}

	.basket-items-list-item-price {
		width: 100%;
		max-width: 120px;
		padding: 0;
		margin: 0 24px 0 0px;
	}

	/* .btn.basket-btn-checkout {
		font-size: 14px;
		letter-spacing: 1.4px;
		padding: 18px 10px;
	} */

}

@media screen and (max-width: 770px) {

	.basket-root__header {
		display: none;
	}

	.header.cart-header {
		height: 60px;
		padding: 5px 20px;
		align-items: center;
		margin: 0 0 24px 0;
		border-bottom: 1px solid var(--Gray-40, #D1D1D3);
	}

	.main-container__heading-text.basket-root__header-inner {
		padding: 0;
	}

	.main-container__heading-text__title,
	h1.main-container__heading-text__title {
		text-align: left;
		font-size: 24px;
		line-height: 28px;
	}

	.main-container__heading-text__title {
		text-align: center;
	}

	.js-action-items {
		display: flex;
		flex-flow: row;
		align-items: center;
		justify-content: flex-start;
		gap: 20px;
	}

	.js-action-items .basket-item-checkbox-input {
		display: none;
	}

	.basket-items-list-container .basket-items-list {
		margin: 0 !important;
	}

	.basket-items-list-item-checkbox {
		margin: 0;
	}

	.basket-items-list-item-descriptions .basket-items-list-item-descriptions-inner {
		align-items: flex-start;
	}

	.basket-items-list-item-descriptions .basket-item-block-image {
		min-width: 100px;
		max-width: 100px;
		max-height: 135px;
		min-height: 135px;
		width: 100%;
		height: 100%;
	}

	.basket-item-block-image .basket-item-image {
		margin: 0 !important;
		min-width: 100px;
		max-width: 100px;
		max-height: 135px;
		min-height: 135px;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.basket-items-list-item-descriptions {
		width: 100% !important;
		max-width: 100%;
		min-width: auto;
		padding: 0 !important;
		margin: 0 !important;
	}

	.basket-items-list-item-descriptions .basket-item-block-info {
		padding: 0;
	}

	.basket-item-block-info h2.basket-item-info-name,
	.basket-item-block-info .basket-item-info-name-link {
		padding: 0;
		margin: 0;
		color: var(--Gray-80, #262626);
		/* font-family: "SF Pro Display"; */
		font-size: 16px !important;
		font-style: normal;
		font-weight: 400;
		line-height: 20px !important;
		position: relative;
	}

	.basket-item-block-info h2.basket-item-info-name {
		margin: 0 0 8px 0;
	}

	.basket-item-block-properties {
		margin: 0;
		display: flex;
		flex-flow: row;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 6px;
	}

	.basket-item-block-properties > *:not(:last-child)::after {
		content: "";
		display: inline-block;
		width: 1px;
		height: 14px;
		background-color: #D1D1D3;
		margin: 0 0 0 6px;
	}

	.basket-item-property-name,
	.basket-item-property-value {
		color: var(--Gray-60, #6F6F6F) !important;
		/* font-family: "SF Pro Display" !important; */
		font-size: 14px !important;
		font-style: normal;
		font-weight: 400 !important;
		line-height: 18px !important;
	}

	.basket-item-block-quantity {
		color: var(--Gray-60, #6F6F6F);
		/* font-family: "SF Pro Display"; */
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 18px;
		margin: 0;
	}

	.basket-items-list-item-amount,
	.basket-items-list-item-price,
	.basket-items-list-item-remove {
		display: none;
	}

	.basket-items-list-item-price .basket-item-block-price {
		padding: 0;
		margin: 0;
		display: flex;
		flex-flow: column;
		align-items: flex-end;
	}

	.basket-item-block-info .basket-items-list-item-price {
		/* display: block;
		position: relative;
		width: 100% !important;
		max-width: 100%;
		margin: 14px 0 0 0;
		bottom: unset; */
		display: flex;
		flex-flow: row-reverse nowrap;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		position: relative;
		width: 100% !important;
		max-width: 100%;
		margin: 14px 0 0 0;
		bottom: unset;
	}

	.basket-items-list-item-price .basket-items-list-item-amount.mobile {
		display: flex;
		position: relative;
		left: unset !important;
		right: unset;
		top: unset;
		bottom: unset;
		min-width: auto;
		max-width: 90px;
		width: 100%;
	}

	.basket-items-list-item-amount.mobile .basket-item-block-amount {
		max-width: 90px;
		margin: 0;
		border: 1px solid #D1D1D3;
	}

	.basket-items-list-item-amount.mobile .basket-item-amount-btn-plus,
	.basket-items-list-item-amount.mobile .basket-item-amount-btn-minus {
		width: 30px;
		height: 40px;
		background: none;
		border: none;
	}

	.basket-items-list-item-amount.mobile input.basket-item-amount-filed {
		max-width: 100px;
		max-height: 40px;
		margin-bottom: 0px;
		padding: 5px 30px;
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
		letter-spacing: 0em;
		border: none;
	}

	.basket-items-list-item-amount.mobile .basket-item-amount-field-description {
		display: none;
	}

	.basket-item-block-price .basket-item-price-current .basket-item-price-current-text {
		color: var(--Gray-80, #262626);
		/* font-family: "SF Pro Display"; */
		font-size: 20px;
		font-style: normal;
		font-weight: 400;
		line-height: 24px;
		letter-spacing: 0.4px;
	}

	.basket-item-block-price .basket-item-price-old {
		padding: 0 !important;
		margin: 0 !important;
	}

	.basket-item-block-price .basket-item-price-old .basket-item-price-old-text {
		color: var(--Gray-50, #A5A5A5);
		/* font-family: "SF Pro Display"; */
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 20px;
		letter-spacing: 0.32px;
		text-decoration: line-through;
	}

	.main-container__content.bx-basket__content {
		gap: 0;
	}

	.basket-total-block__wrapper.content-payment {
		margin: 0;
		top: unset;
	}

	.main-container__content .basket-checkout-block-total__wrapper {
		padding: 20px !important;
		margin: 0 0 24px 0;
	}

	.basket-checkout-block-total {
		margin: 0 0 24px 0;
	}

	.content-payment__transaction-title {
		font-size: 20px;
		line-height: 24px;
	}

	.basket-coupon-section {
		-ms-flex-order: unset;
		-webkit-box-ordinal-group: unset;
		order: unset;
	}

	.basket-checkout-block.basket-checkout-block-total-price {
		padding-top: 24px;
    	margin: 0;
	}

	.basket-coupon-block-total-price-current__text,
	.basket-coupon-block-total-price-current__wrapper .basket-coupon-block-total-price-current {
		color: var(--Gray-80, #262626);
		/* font-family: "SF Pro Display"; */
		font-size: 18px;
		font-style: normal;
		font-weight: 500;
		line-height: 22px;
	}

	.basket-checkout-block.basket-bonus {
		margin: 24px 0 0 0;
	}

	.content-payment__transaction.disabled .basket-checkout-block.basket-checkout-block-btn {
		margin: 0;
	}

	.content-payment__transaction .product-delivery {
		margin: 20px 0 0 0;
	}

	/* .btn.basket-btn-checkout {
		font-size: 14px;
		font-weight: 500;
		line-height: 20px;
		letter-spacing: 2.1px;
		text-transform: uppercase;
		padding: 13px 20px;
		margin: 0;
	} */

	.content-payment__transaction .basket-coupon-alert-section {
		-ms-flex-order: unset;
		-webkit-box-ordinal-group: unset;
		order: unset;
		margin: 8px 0 0 0;
	}

	.basket-coupon-alert-section .basket-coupon-alert {
		margin: 0;
	}

	.cart-fixed-wrapper {
		display: flex;
		flex-flow: column;
		gap: 12px;
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 3;
		width: 100%;
		max-width: 100%;
		padding: 20px;
		background: var(--Default-White-100, #FFF);
		box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.10);
		transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
	}

	.cart-fixed-wrapper.hide {
		opacity: 0;
		visibility: hidden;
	}

	.cart-fixed-wrapper .basket-checkout-block.basket-checkout-block-total-price {
		padding-top: 0;
		margin: 0;
	}

	.cart-fixed-wrapper .content-payment__transaction-sum {
		padding: 0;
		border: none;
	}

	.footer-container {
		padding: 32px 20px !important;
	}

	.footer-nav__link {
		font-size: 14px;
		font-weight: 400;
		line-height: 18px;
	}

	.footer-rights {
		font-size: 14px;
		font-weight: 400;
		line-height: 18px;
	}

	.cart-item-hidden-buttons {
		position: absolute;
		right: -200px;
		top: 0;
		width: 200px;
		height: 100%;
		display: flex;
		align-items: stretch;
		justify-content: flex-start;
	}

	.basket-items-list__wrapper .basket-items-list-header {
		flex-flow: row;
		justify-content: space-between;
    	border: none;
		padding: 0 20px 24px 20px;
	}

	.basket-content__inner {
		max-width: calc(100% + 40px);
		margin: 0 -20px;
	}

	.content-goods__item {
		padding: 0 20px 24px 20px;
		margin: 0 0px 24px 0px;
		flex-flow: row;
		position: relative;
		transition: transform 0.3s ease, translate 0.3s ease;
		will-change: transform;
		border: none;
	}

	.content-goods__item::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		max-width: calc(100% - 40px);
		height: 1px;
		background-color: var(--gray-40, #d1d1d3);
	}

	.cart-item-hidden-buttons .basket-items-list-item-remove {
		position: relative;
		top: unset;
		bottom: unset;
		left: unset;
		right: unset;
		display: flex;
		flex-flow: row;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		width: 100%;
	}

	.cart-item-hidden-buttons .basket-items-list-item-remove .wishlist-btn {
		position: relative;
		top: unset;
		bottom: unset;
		left: unset;
		right: unset;
		width: 100%;
		max-width: 50%;
		background-color: var(--Gray-20, #F3F3F3);
	}

	.cart-item-hidden-buttons .basket-items-list-item-remove .wishlist-btn a.favor {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		padding: 30px 0 0 0;
		margin: 0;
		background-position: 50% 65px;
		color: var(--Gray-80, #262626);
		/* font-family: "SF Pro Display"; */
		font-size: 12px;
		font-style: normal;
		font-weight: 400;
		line-height: 16px;
	}

	.cart-item-hidden-buttons .basket-item-block-actions {
		position: relative;
		top: unset;
		bottom: unset;
		left: unset;
		right: unset;
		width: 100%;
		max-width: 50%;
		background: var(--Gray-80, #262626);
	}

	.cart-item-hidden-buttons .basket-item-block-actions .basket-item-actions-remove {
		background: url('/local/templates/lusio/components/bitrix/sale.basket.basket/full_cart/images/trash-ph.svg');
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		padding: 30px 0 0 0;
		margin: 0;
		background-repeat: no-repeat;
		background-position: 50% 65px;
		color: var(--White-100, var(--Default-White-100, #FFF));
		/* font-family: "SF Pro Display"; */
		font-size: 12px;
		font-style: normal;
		font-weight: 400;
		line-height: 16px;
	}

	#basket-item-table-not-available {
		margin: 24px 0 0 0;
	}

	.content-goods__not-allowed-title {
		/* font-family: "SF Pro Display"; */
		font-size: 20px;
		font-weight: 500;
		line-height: 24px;
		letter-spacing: 0em;
		margin: 0 0 24px 0;
		padding: 0 20px;
	}

	.basket-items-list-item-warning-container {
		margin: 12px 0 0 0;
		background: #FEF3F2;
		width: 100%;
	}

	.bx-header-logo--second .bx-logo-block {
		height: 28px;
		width: 75px;
	}

	.bx-header-logo.bx-header-logo--second .bx-logo-block svg {
		height: 28px;
		width: 75px !important;
	}

	.basket-items-list-header-checkbox,
	.basket-items-list-header-remove {
		border-bottom: 1px solid #262626;
		gap: 4px;
	}

	.cart-item-hidden-buttons .basket-items-list-item-remove .wishlist-btn a.favor,
	.cart-item-hidden-buttons .basket-items-list-item-remove .basket-item-actions-remove {
		background: none;
		padding: 0;
		flex-flow: column;
		gap: 4px;
	}

	.cart-item-hidden-buttons .basket-items-list-item-remove .wishlist-btn a.favor .basket-item-actions-wishlist-icon {
		width: 20px;
		height: 20px;
		background-size: 20px 20px;
		background-position: center;
		background: url('/local/templates/lusio/images/w-heart-dark.svg');
	}

	.cart-item-hidden-buttons .basket-items-list-item-remove .wishlist-btn a.favor.active .basket-item-actions-wishlist-icon {
		width: 20px;
		height: 20px;
		background-size: 20px 20px;
		background-position: center;
		background: url('/local/templates/lusio/images/w-heart-fill-dark.svg');
	}

	.cart-item-hidden-buttons .basket-items-list-item-remove .wishlist-btn a.favor .basket-item-actions-wishlist-text_add {
		display: block;
	}

	.cart-item-hidden-buttons .basket-items-list-item-remove .wishlist-btn a.favor.active .basket-item-actions-wishlist-text_add {
		display: none;
	}

	.cart-item-hidden-buttons .basket-items-list-item-remove .wishlist-btn a.favor .basket-item-actions-wishlist-text_added {
		display: none;
	}

	.cart-item-hidden-buttons .basket-items-list-item-remove .wishlist-btn a.favor.active .basket-item-actions-wishlist-text_added {
		display: block;
	}

	.cart-item-hidden-buttons .basket-items-list-item-remove .basket-item-actions-remove .basket-item-actions-remove-icon {
		width: 20px;
		height: 20px;
		background-size: 20px 20px;
		background-position: center;
		background: url('/local/templates/lusio/components/bitrix/sale.basket.basket/full_cart/images/trash-ph.svg');
	}

	.basket-checkout-disabled-warning {
		margin: 20px 0 0 0;
	}

	.cart-fixed-wrapper.disabled .basket-checkout-block-total-price {
		display: none;
	}

	.cart-fixed-wrapper.disabled .basket-checkout-disabled-warning {
		display: flex;
		margin: 0;
	}

}

/* New cart page ends */

.js-select-cart-items label {
    font-size: 16px;
    margin: 0;
}
@media screen and (max-width: 736px) {
   	.basket-items-list-header-remove,
	.js-select-cart-items label {
        font-size: var(--font-very-small);
		font-style: normal;
    	font-weight: 400;
    	line-height: 125%;
		margin: 0;
    }
}
/* End */


/* Start:/local/components/Dice/delivery.price/templates/checkout/style.css?17429118866959*/
.product-delivery__hidden_form {
  display: none;
}

.product-delivery__calc-city {
  position: relative;
}

.calc-city__current {
  color: #262626;
  height: 31px;
  margin-bottom: 10px;
  position: relative;
}

.calc-city__btn {
  position: relative;
}

.calc-city__btn_val.hide {
  display: none !important;
}

.calc-city__current .icon {
  position: absolute;
  top: 50%;
  right: -20px;
  margin-top: -10px;
}

.calc-city__btn {
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: underline;
  margin-left: 7px;
}

.calc-city__choisen {
  position: absolute;
  background: #fff;
  box-shadow: 1px 2px 7px 0px rgba(0, 0, 0, .3);
  top: 41px;
  left: 0;
  z-index: 1;
  display: none;
}

.calc-city__choisen.open {
  display: block;
}

.choisen-city-item {
  padding: 10px 20px;
  cursor: pointer;
  min-width: 250px;
}

.choisen-city-item span {
  display: block;
  color: #262626;
}

.choisen-city-item span.choisen-city-item-region {
  font-size: 12px;
  color: var(--theme-color-gray);
}

.choisen-city-item:hover {
  background: #f2f2f2;
}

.calc-city__current input.delivery-input {
  display: inline-block;
  max-width: 200px;
  max-height: 30px;
  border: none;
  border-bottom: 1px solid;
  margin-bottom: 0px;
  padding: 5px;
}

.product-delivery__items-list {
  width: 100%;
  max-width: 400px;
  margin-bottom: 25px;
}

.product-delivery__items-list.has_free_delivery {
  max-width: 470px;
}

.product-delivery__price.has_free_delivery {
  text-decoration: line-through;
}

.product-delivery__item {
  position: relative;
  padding: 10px 0 10px 40px;
}

.type__simple:before,
.type__courier:before,
.type__pickup:before,
.type__shops:before {
  content: '';
  display: block;
  position: absolute;
  left: 0px;
  top: 5px;
  width: 30px;
  height: 30px;
  background-size: cover;
}

.type__shops:before {
	background-image: url(/local/components/Dice/delivery.price/templates/checkout/./images/Self-delivery.svg);
}

.type__pickup:before {
  background-image: url(/local/components/Dice/delivery.price/templates/checkout/./images/store.png);
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
}

.type__simple:before,
.type__courier:before {
  top: 10px;
  width: 27px;
  height: 20px;
  background-size: cover;
  background-image: url(/local/components/Dice/delivery.price/templates/checkout/./images/shipped.svg);
}

.product-delivery__item-desc {
  color: #262626;
}

.product-delivery__item-period {
  display: flex;
  color: var(--theme-color-gray);
  font-size: 12px;
}

.product-delivery__item-period span {
  margin-right: 2rem;
  color: var(--theme-color-gray);
  /* font-family: "SF Pro Display"; */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  color: var(--Gray-60, #6F6F6F);
}

.product-delivery__item-decription-icon {
  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;
  position: static;
  right: -30px;
  top: 6px;
  width: 25px;
  height: 25px;
  color: var(--theme-color-light-gray);
  border: 1px solid;
  border-radius: 50%;
  cursor: pointer;
}

.product-delivery__item-decription {
  position: absolute;
  background: #fff;
  z-index: 1;
  box-shadow: 1px 2px 7px 0px rgba(0, 0, 0, .3);
  padding: 10px;
  top: 0;
  right: 0px;
  display: none;
  color: #262626;
}


.product-delivery__item-period .product-delivery__item-decription-icon:hover+.product-delivery__item-decription {
  display: block;
  color: #262626;
  /* Text-small */
  font-family: 'GT Eesti Pro', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  left: 10px;
  /* 142.857% */
}

.suggestion_list {
  position: absolute;
  background: #fff;
  box-shadow: 1px 2px 7px 0px rgba(0, 0, 0, .3);
  top: 41px;
  left: 0;
  z-index: 1;
}

.suggestion_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 10px 20px;
  cursor: pointer;
  min-width: 250px;
}

.suggestion_item:hover {
  background: #f2f2f2;
}

.suggestion_item__city {
  color: #262626;
}

.suggestion_item__region {
  font-size: 12px;
  color: var(--theme-color-gray);
}

.product-delivery__form form .btn {
  background: #262626;
  border: none;
  color: #fff;
  padding: 10px;
}

.product-delivery__form-inner .form-group {
  width: 50%;
}

.delivery__form-city {
  margin-right: 20px;
}

.product-delivery__form form input {
  height: 30px;
}

@media(max-width:480px) {
  .product-delivery__item {
    padding: 10px 40px 10px 40px;
  }

  .product-delivery__item-desc {
    font-size: 14px;
  }

  .product-delivery__item-decription-icon {
    right: 0px;
    z-index: 11;
  }

  .product-delivery__item-decription {
    right: 35px;
  }
}


.widget-container {
  padding: 10px;
}

.product_podeli {
  margin-bottom: 20px;
}

.product__sku {
  margin-top: 20px;
}

.product__info-size-table-btn.d-flex {
  justify-content: flex-start;

  font-family: 'GT Eesti Pro';
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.02em;
  margin-top: 12px;
}

.product-item-scu-block {
  grid-template-columns: 100%;
}


#digi-shield.digi-is-container {
  z-index: 999;
}

/* New shipping component styles starts */

.calc-city__current {
  height: 24px;
  margin: 0 0 16px 0;
  position: relative;
  color: var(--Gray-80, #262626);
  /* font-family: "SF Pro Display"; */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.calc-city_title {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0px;
}

.calc-city__btn {
  cursor: pointer;
  text-transform: none;
  text-decoration: underline;
  margin-left: 1px;
}

.product-delivery__items-list {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.product-delivery__item {
  position: relative;
  padding: 4px 0 12px 40px;
}

.product-delivery__item:last-child {
  padding-bottom: 0;
}

.product-delivery__item.type__simple:not(.type_courier):before,
.product-delivery__item.type_pickup::before,
.type__pickup::before {
  top: 4px;
  width: 28px;
  height: 28px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(/local/components/Dice/delivery.price/templates/checkout/./images/pickup.svg);
}

.product-delivery__item.type_courier::before,
.type__courier::before {
  top: 4px;
  width: 28px;
  height: 28px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(/local/components/Dice/delivery.price/templates/checkout/./images/courier.svg);
}

.product-delivery__item-desc,
.product-delivery__name,
.product-delivery__price {
  color: var(--Gray-80, #262626);
  /* font-family: "SF Pro Display"; */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.product-delivery__item-period {
  display: flex;
  color: var(--Gray-60, #6F6F6F);
  /* font-family: "SF Pro Display"; */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

/* New shipping component styles ends */
/* End */
/* /local/templates/luisawang/css/new-styles.css?1751973002234487 */
/* /local/templates/luisawang/components/lusio/sale.basket.basket/full_cart/style.css?1751973002107860 */
/* /local/components/Dice/delivery.price/templates/checkout/style.css?17429118866959 */
