html,
body,
header,
main,
footer {
	padding: 0;
	margin: 0;
	width: 100%;
	z-index: 0;
}
body {
	scroll-behavior: smooth;
}
body::-webkit-scrollbar {
	display: none;
}

:root {
	--key-color: #9d8a7b;
	--banner-btn-color: #c9cce2;
	--error-color: #ef586b;
	--distance-between-main-parts: 92px;
	--border-radius: 3vw;
	color: var(--key-color);
}
* {
	font-family: Arial, Helvetica, sans-serif;
}
a {
	text-decoration: none;
	color: inherit;
}
*,
a:focus {
	outline: none !important;
}
.container {
	width: 78%;
	margin: 0 auto;
}
h1 {
	text-align: center;
	margin-top: 92px;
	font-size: 36px;
}

/* ШАПКА САЙТА */
header .container {
	font-size: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 58px 0 10px 0;
	border-bottom: 2px solid var(--key-color);
}
header .open-menu-btn {
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	padding: 0;
	padding-top: 0px;
	cursor: pointer;
	display: block;
}
header .open-menu-btn:hover {
	opacity: 0.7;
	transition: 0.15s ease-in;
}
header .open-menu-btn img {
	width: 100%;
	height: 100%;
}
header .logo {
	display: flex;
	width: 300px;
	justify-content: space-between;
}
header .logo img {
	width: 180px;
	aspect-ratio: 180 / 45;
}
header .logo span {
	text-align: right;
	transform: translateX(-30px);
}
header .right-part {
	display: flex;
	align-items: center;
}
header .menu a {
	padding: 10px 15px;
	border: 1.5px solid var(--key-color);
	border-radius: 36px;
}
header .menu a:hover {
	background: var(--key-color);
	color: white;
	transition: 0.22s;
}
header .menu a:not(:first-of-type) {
	margin-left: 30px;
}
header .user-btns {
	margin-left: 21px;
	display: flex;
	margin-top: 8px;
}
header .user-btns a:not(:first-of-type) {
	margin-left: 10px;
}

/* ЛЕНДИНГ */
.landing-wrapper .banner {
	position: relative;
	/* background-image: url("/images/common/banner.jpg"); */
	aspect-ratio: 1130 / 636;
	background-size: cover;
	margin: var(--distance-between-main-parts) 0;
}
.landing-wrapper .banner img {
	width: 100%;
}
.landing-wrapper .banner a {
	position: absolute;
	bottom: 60px;
	right: 35px;
	background: var(--banner-btn-color);
	border: 1px solid white;
	border-radius: 34px;
	color: white;
	font-size: 18px;
	font-weight: 600;
	padding: 18px 22px;
	cursor: pointer;
}
.landing-wrapper .banner a:hover {
	background: white;
	color: var(--banner-btn-color);
	border-color: var(--banner-btn-color);
	transition: ease-in-out 0.1s;
}
.landing-wrapper h2 {
	text-align: center;
	padding: 48px 0;
	margin: var(--distance-between-main-parts) 0 0 0;
	font-size: 36px;
}
.landing-wrapper .main-1 .cards {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.landing-wrapper .main-1 .card {
	width: calc(20% - 16px);
	margin-bottom: 20px;
}
.landing-wrapper .main-1 .card .image {
	position: relative;
	aspect-ratio: 1/1;
	display: block;
	width: 100%;
}
.landing-wrapper .main-1 .card .image:hover {
	opacity: 0.7;
	transition: 0.2s ease-out;
}
.landing-wrapper .main-1 .card .image span {
	position: absolute;
	left: 24px;
	bottom: 16px;
	color: white;
	font-weight: 600;
}
.landing-wrapper .main-1 .card .image img {
	position: absolute;
	width: 100%;
	font-size: 16px;
    border-radius: 40px;
}
.landing-wrapper .main-1 .card label {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 20px;
	display: block;
	margin-top: 20px;
    text-align: center;
}
.landing-wrapper .main-1 .card label a:hover {
	opacity: 0.7;
	transition: 0.2s ease-out;
}
.landing-wrapper .main-1 .card p {
	margin: 10px 0 0 0;
	font-size: 16px;
    text-align: center;
}
.landing-wrapper .main-1 .to-catalog {
	background: var(--banner-btn-color);
	border: 1px solid var(--banner-btn-color);
	border-radius: 34px;
	color: white;
	font-size: 18px;
	font-weight: 600;
	padding: 18px 60px;
	cursor: pointer;
	margin-top: 30px;
	display: inline-block;
}
.landing-wrapper .main-1 .to-catalog:hover {
	background: white;
	color: var(--banner-btn-color);
	transition: ease-in-out 0.1s;
}
.centered {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
}
.landing-wrapper .main-2 {
	margin-top: var(--distance-between-main-parts);
}
.landing-wrapper .main-2 .images-wrapper {
	display: flex;
	justify-content: space-between;
}
.landing-wrapper .main-2 .part {
	width: calc(50% - 10px);
}
.landing-wrapper .main-2 .part img {
	width: 100%;
    border-radius: 40px;
}
.landing-wrapper .main-2 .part:last-of-type img:last-of-type {
	margin-top: 20px;
}
.landing-wrapper .main-2 .view-furniture {
	background: var(--banner-btn-color);
	border: 1px solid var(--banner-btn-color);
	border-radius: 40px;
	color: white;
	font-size: 22px;
	font-weight: 600;
	padding: 25px 90px;
	cursor: pointer;
	margin-top: 50px;
	display: inline-block;
}
.landing-wrapper .main-2 .view-furniture:hover {
	background: white;
	color: var(--banner-btn-color);
	transition: ease-in-out 0.1s;
}
.landing-wrapper .main-3 {
	margin-top: var(--distance-between-main-parts);
}
.flex-wrapper {
	display: flex;
	justify-content: space-between;
}
.flex-wrapper .part {
	width: calc(50% - 10px);
}
.landing-wrapper .main-3 .part {
	font-size: 20px;
	line-height: 30px;
	position: relative;
}
.landing-wrapper .main-3 .part:first-child {
	border-radius: 20px;
	overflow: hidden;
}
.landing-wrapper .main-3 img {
	width: 100%;
    border-radius: 40px;
}
.landing-wrapper .main-3 p {
	margin: 0;
}
.landing-wrapper .main-3 a {
	background: var(--banner-btn-color);
	border: 1px solid var(--banner-btn-color);
	border-radius: 34px;
	color: white;
	font-size: 18px;
	font-weight: 600;
	padding: 15px 100px;
	cursor: pointer;
	display: inline-block;
	margin: 0 auto;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.landing-wrapper .main-3 a:hover {
	background: white;
	color: var(--banner-btn-color);
	transition: ease-in-out 0.1s;
}
.landing-wrapper .main-4 {
	margin: var(--distance-between-main-parts) 0;
	font-size: 21px;
}
.landing-wrapper .main-4 img {
	width: 100%;
}
.landing-wrapper .main-4 .physical-address {
	font-weight: bold;
}
.landing-wrapper .main-4 .tel-block a {
	font-weight: bold;
}
.landing-wrapper .main-4 form input {
	width: calc(100% - 44px);
	border: 1.5px solid var(--key-color);
	border-radius: 36px;
	padding: 15px 22px;
	font-size: 21px;
}
.landing-wrapper .main-4 form input::placeholder {
	color: var(--key-color);
	opacity: 0.5;
}
.landing-wrapper .main-4 form textarea {
	width: calc(100% - 44px);
	height: 227px;
	border: 1.5px solid var(--key-color);
	border-radius: 36px;
	padding: 15px 22px;
	font-size: 21px;
	resize: none;
	margin-top: 20px;
}
.landing-wrapper .main-4 form textarea::placeholder {
	color: var(--key-color);
	opacity: 0.5;
}
.landing-wrapper .main-4 form button {
	background: var(--banner-btn-color);
	border: 1px solid var(--banner-btn-color);
	border-radius: 34px;
	color: white;
	font-size: 18px;
	font-weight: 600;
	padding: 15px 100px;
	cursor: pointer;
	display: block;
	width: 100%;
	margin-top: 12px;
}
.landing-wrapper .main-4 form button:hover {
	background: white;
	color: var(--banner-btn-color);
	transition: ease-in-out 0.1s;
}

/* ЛИЧНЫЙ КАБИНЕТ */
.cabinet-wrapper {
	display: flex;
	width: 100%;
}
.cabinet-container {
	width: 773px;
	margin: 0 auto;
}
.cabinet-wrapper h1 {
	margin-top: 92px;
}
.cabinet-wrapper .left-part {
	width: 400px;
	font-size: 20px;
	font-weight: bold;
}
.cabinet-wrapper .left-part img {
	background: #ececec;
	border-radius: 50%;
	padding: 10px;
	width: 150px;
}
.cabinet-wrapper .left-part .user-profile {
	display: flex;
	align-items: center;
}
.cabinet-wrapper .left-part .user-info {
	margin-left: 28px;
}
.cabinet-wrapper .left-part .user-info span {
	display: block;
	width: 100%;
	margin: 13px 0;
}
.cabinet-wrapper .left-part nav {
	margin-top: 27px;
}
.cabinet-wrapper nav ul {
	padding: 0;
	margin: 0;
}
.cabinet-wrapper .left-part nav li {
	margin-bottom: 41px;
	list-style: none;
}
.cabinet-wrapper .left-part nav a:hover {
	opacity: 0.6;
	transition: ease-out 0.2s;
}
.cabinet-wrapper .right-part {
	padding-top: 57px;
	font-size: 16px;
	width: 350px;
	margin-left: 72px;
}
.cabinet-wrapper .right-part .inputs-section {
	margin-bottom: 54px;
}
.cabinet-wrapper .right-part h2 {
	font-size: 20px;
	height: 40px;
	padding: 0;
	margin: 0;
	text-align: left;
	line-height: 40px;
}
.cabinet-wrapper .right-part .input-block {
	display: flex;
	width: calc(100% + 10px);
	transform: translateX(-10px);
}
.cabinet-wrapper .right-part span {
	color: #a9b3ff;
	font-size: 25px;
	transform: translate(-10px, 20px);
}
.cabinet-wrapper .right-part input {
	border: none;
	border-bottom: 1px solid var(--key-color);
	padding: 13px 0;
	width: 100%;
	margin-top: 8px;
	outline: none;
	box-sizing: border-box;
	height: 42px;
}
.cabinet-wrapper .right-part input:focus {
	border-width: 2px;
	transition: 0.1s ease-in;
}
.cabinet-wrapper .right-part input::placeholder {
	color: var(--key-color);
	opacity: 0.5;
}
.cabinet-wrapper .right-part button {
	font-size: 22px;
	background: var(--banner-btn-color);
	border: 1px solid white;
	border-radius: 34px;
	color: white;
	font-weight: 600;
	padding: 20px 0;
	width: 100%;
	cursor: pointer;
	margin-bottom: 14px;
}
.cabinet-wrapper .right-part button:hover {
	background: rgb(246, 246, 246);
	color: var(--banner-btn-color);
	border-color: var(--banner-btn-color);
	transition: ease-in-out 0.1s;
}
.cabinet-wrapper .right-part button:last-of-type {
	background: white;
	color: var(--banner-btn-color);
	border-color: var(--banner-btn-color);
	margin-bottom: 59px;
}
.cabinet-wrapper .right-part button:last-of-type:hover {
	background: rgb(209, 209, 209);
	color: white;
	border-color: rgb(209, 209, 209);
}
.cabinet-wrapper .right-part nav {
	display: none;
	margin-top: 59px;
	margin-bottom: 124px;
}
.cabinet-wrapper .right-part nav li {
	margin-bottom: 35px;
	list-style: none;
	text-align: center;
}
.cabinet-wrapper .right-part nav a {
	font-size: 22px;
	font-weight: bold;
}
.cabinet-wrapper .right-part nav a:hover {
	opacity: 0.6;
	transition: ease-out 0.2s;
}

/* КОРЗИНА */
.cart-wrapper .position {
	display: flex;
	width: 100%;
	position: relative;
	margin-bottom: 62px;
	height: 210px;
}
.cart-wrapper .position .product-image {
	height: 100%;
	position: relative;
	aspect-ratio: 1/1;
	display: block;
}
.cart-wrapper .position .product-image:hover {
	opacity: 0.7;
	transition: 0.2s ease-out;
}
.cart-wrapper .position .product-image span {
	position: absolute;
	left: 24px;
	bottom: 16px;
	color: white;
	font-weight: 600;
	font-size: 16px;
}
.cart-wrapper .position .product-image img {
	position: absolute;
	width: 100%;
}
.cart-wrapper .position .start-part {
	margin-left: 27px;
	padding: 30px 0;
	height: calc(100% - 60px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.cart-wrapper .position .start-part .product-info p {
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 13px;
	font-size: 20px;
}
.cart-wrapper .position .start-part .product-info span {
	font-size: 16px;
}
.cart-wrapper .position .start-part .lists-count {
	font-size: 20px;
	font-weight: bold;
	display: flex;
	align-items: center;
}
.cart-wrapper .position .start-part .lists-count-btns {
	display: flex;
}
.cart-wrapper .position .start-part .lists-count button {
	border: none;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	background: #ececec;
	margin: 0 21px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.cart-wrapper .position .start-part .lists-count button:hover {
	background: #e3dddd;
	transition: 0.1s ease-in;
}
.cart-wrapper .position .end-part {
	position: absolute;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: end;
	min-height: calc(100% - 60px);
	padding: 30px 0;
}
.cart-wrapper .position .end-part button {
	border: none;
	background: none;
	cursor: pointer;
	padding: 0;
	width: 24px;
	height: 24px;
}
.cart-wrapper .position .end-part button:hover {
	opacity: 0.7;
	transition: 0.2s ease-out;
}
.cart-wrapper .position .end-part button img {
	width: 100%;
	height: 100%;
}
.cart-wrapper .position .end-part .position-cost {
	font-weight: bold;
	min-width: 186px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.cart-wrapper .position .end-part .cost-label {
	font-size: 20px;
	transform: translateY(2.5px);
	margin-right: 24px;
}
.cart-wrapper .position .end-part .cost-value {
	font-size: 30px;
	font-weight: bolder;
}
.cart-wrapper .order-total {
	margin-top: 4px;
	width: 50%;
}
.cart-wrapper .order-total h2 {
	font-size: 36px;
	text-align: left;
}
.cart-wrapper .order-total .order-row {
	width: 100%;
	display: flex;
	align-items: end;
	border-bottom: 2px dashed var(--key-color);
	color: var(--key-color);
	position: relative;
	height: 30px;
}
.cart-wrapper .order-total .order-row .order-total-label {
	font-size: 20px;
	position: absolute;
	bottom: -6.5px;
	background: white;
	padding-right: 3px;
}
.cart-wrapper .order-total .order-row .order-total-value {
	font-size: 30px;
	font-weight: bold;
	position: absolute;
	right: 0;
	bottom: -9.5px;
	background: white;
	padding-left: 3px;
}
.cart-wrapper .order-total .sale-row {
	margin-top: 23px;
	color: var(--banner-btn-color);
	border-color: var(--banner-btn-color);
}
.cart-wrapper .order-total .total-cost {
	font-weight: bold;
	color: var(--key-color);
	margin-top: 44px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: end;
}
.cart-wrapper .order-total .total-cost .total-label {
	font-size: 20px;
}
.cart-wrapper .order-total .total-cost .total-value {
	font-size: 40px;
	display: block;
	transform: translateY(8px);
}
.cart-wrapper .order-total button {
	font-size: 22px;
	background: var(--banner-btn-color);
	border: 1px solid white;
	border-radius: 23px;
	color: white;
	font-weight: 600;
	height: 62px;
	width: 100%;
	cursor: pointer;
	margin: 37px 0 182px 0;
}
.cart-wrapper .order-total button:hover {
	background: white;
	color: var(--banner-btn-color);
	border-color: var(--banner-btn-color);
	transition: 0.1s ease-in;
}
.goods_count {
    position: relative;
    right: 29px;
    bottom: 34px;
}

/* ЗАКАЗЫ */
.orders-wrapper {
	width: 100%;
	display: flex;
	justify-content: right;
	margin-top: 70px;
	margin-bottom: 480px;
}
.orders-wrapper .left-part {
	width: 35%;
	margin-right: 26px;
	font-size: 20px;
	font-weight: bold;
}
.orders-wrapper .left-part .user-profile {
	width: 100%;
	display: flex;
	align-items: center;
}
.orders-wrapper .left-part img {
	background: #ececec;
	border-radius: 50%;
	padding: 10px;
	width: 150px;
}
.orders-wrapper .left-part .user-info {
	margin-left: 28px;
}
.orders-wrapper .left-part .user-info span {
	display: block;
	width: 100%;
	margin: 13px 0;
}
.orders-wrapper .left-part nav {
	margin-top: 27px;
}
.orders-wrapper nav ul {
	padding: 0;
	margin: 0;
}
.orders-wrapper .left-part nav li {
	margin-bottom: 41px;
	list-style: none;
}
.orders-wrapper .left-part nav a:hover {
	opacity: 0.6;
	transition: ease-out 0.2s;
}
.orders-wrapper .right-part {
	width: calc(65% - 26px);
	font-size: 20px;
}
.orders-wrapper .right-part table {
	width: 100%;
	border: 1px solid var(--key-color);
}
.orders-wrapper .right-part table th {
	text-align: left;
}
.orders-wrapper .right-part table thead tr {
	height: 46px;
}
.orders-wrapper .right-part table tbody tr {
	height: 58px;
	border-bottom: 1px solid var(--key-color);
	margin-bottom: 1px;
}
.orders-wrapper .right-part table td:nth-child(6),
.orders-wrapper .right-part table th:nth-child(6) {
	/* display: none; */
}
.orders-wrapper .right-part table button {
	cursor: pointer;
	background: none;
	border: 1px solid var(--key-color);
	border-radius: 50%;
	width: 25px;
	height: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 4px;
}
.orders-wrapper .right-part table button:hover {
	background: rgb(220, 220, 220);
	transition: all 0.15s;
}
.orders-wrapper .right-part table button img {
	width: 13px;
}
.orders-wrapper .right-part table td:first-of-type {
	padding-left: 14px;
}
.orders-wrapper table,
.orders-wrapper th,
.orders-wrapper td {
	border-collapse: collapse;
}
.orders-wrapper .right-part nav {
	display: none;
	margin-top: 59px;
	margin-bottom: 124px;
	font-size: 20px;
	font-weight: bold;
}
.orders-wrapper .right-part nav li {
	margin-bottom: 35px;
	list-style: none;
	text-align: center;
}
.orders-wrapper .right-part nav a:hover {
	opacity: 0.6;
	transition: ease-out 0.2s;
}

/* ИЗБРАННОЕ */
.fav-wrapper {
	display: flex;
	width: 100%;
}
.fav-wrapper .left-part {
	width: 35%;
	margin-right: 26px;
	font-size: 20px;
	font-weight: bold;
}
.fav-wrapper .left-part .user-profile {
	width: 100%;
	display: flex;
	align-items: center;
}
.fav-wrapper .left-part img {
	background: #ececec;
	border-radius: 50%;
	padding: 10px;
	width: 150px;
}
.fav-wrapper .left-part .user-info {
	margin-left: 28px;
}
.fav-wrapper .left-part .user-info span {
	display: block;
	width: 100%;
	margin: 13px 0;
}
.fav-wrapper .left-part nav {
	margin-top: 27px;
}
.fav-wrapper nav ul {
	padding: 0;
	margin: 0;
}
.fav-wrapper .left-part nav li {
	margin-bottom: 41px;
	list-style: none;
}
.fav-wrapper .left-part nav a:hover {
	opacity: 0.6;
	transition: ease-out 0.2s;
}
.fav-wrapper .right-part {
	width: calc(65% - 26px);
	font-size: 20px;
}
.fav-wrapper .right-part .cards {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.fav-wrapper .right-part .card {
	width: calc(33% - 11px);
	margin-top: 20px;
}
.fav-wrapper .right-part .card .image {
	position: relative;
	aspect-ratio: 1/1;
	display: block;
	width: 100%;
}
.fav-wrapper .right-part .card .image:hover {
	opacity: 0.7;
	transition: 0.2s ease-out;
}
.fav-wrapper .right-part .card .image span {
	position: absolute;
	left: 24px;
	bottom: 16px;
	height: 38px;
	color: white;
	font-weight: 600;
}
.fav-wrapper .right-part .card .image img {
	position: absolute;
	width: 100%;
	font-size: 16px;
}
.fav-wrapper .right-part .card label {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 20px;
	display: block;
	margin-top: 20px;
}
.fav-wrapper .right-part .card label a:hover {
	opacity: 0.7;
	transition: 0.2s ease-out;
}
.fav-wrapper .right-part .card p {
	margin-top: 10px;
	font-size: 16px;
}
.fav-wrapper .right-part .show-more-btn {
	font-size: 22px;
	background: var(--banner-btn-color);
	border: 1px solid white;
	border-radius: 45px;
	color: white;
	font-weight: 600;
	width: 450px;
	height: 79px;
	cursor: pointer;
	margin: 50px auto 143px auto;
	display: block;
}
.fav-wrapper .right-part .show-more-btn:hover {
	transition: 0.1s ease-in;
	background: white;
	color: var(--banner-btn-color);
	border: 1px solid var(--banner-btn-color);
}
.fav-wrapper .right-part nav {
	display: none;
	margin-top: 59px;
	margin-bottom: 124px;
	font-size: 20px;
	font-weight: bold;
}
.fav-wrapper .right-part nav li {
	margin-bottom: 35px;
	list-style: none;
	text-align: center;
}
.fav-wrapper .right-part nav a:hover {
	opacity: 0.6;
	transition: ease-out 0.2s;
}

/* ОФОРМЛЕНИЕ ЗАКАЗА */
.pao-wrapper {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.pao-wrapper .left-part {
	width: 330px;
}
.pao-wrapper .left-part .inputs-section {
	margin-bottom: 30px;
}
.pao-wrapper .left-part h2 {
	font-size: 20px;
	height: 40px;
	padding: 0;
	margin: 0;
	text-align: left;
	line-height: 40px;
}
.pao-wrapper .left-part .input-block {
	display: flex;
	width: calc(100% + 10px);
	transform: translateX(-10px);
}
.pao-wrapper .left-part span {
	color: #a9b3ff;
	font-size: 25px;
	transform: translate(-10px, 20px);
}
.pao-wrapper .left-part input {
	border: none;
	border-bottom: 1px solid var(--key-color);
	padding: 13px 0;
	width: 100%;
	margin-top: 8px;
	outline: none;
	box-sizing: border-box;
	height: 42px;
	font-size: 16px;
}
.pao-wrapper .left-part input:focus {
	border-width: 2px;
	transition: 0.1s ease-in;
}
.pao-wrapper .left-part input::placeholder {
	color: var(--key-color);
	opacity: 0.5;
}
.pao-wrapper .right-part {
	width: 55%;
}
.pao-wrapper .position {
	display: flex;
	width: 100%;
	position: relative;
	margin-bottom: 62px;
	height: 210px;
}
.pao-wrapper .position .product-image {
	height: 100%;
	position: relative;
	aspect-ratio: 1/1;
	display: block;
}
.pao-wrapper .position .product-image:hover {
	opacity: 0.7;
	transition: 0.2s ease-out;
}
.pao-wrapper .position .product-image span {
	position: absolute;
	left: 24px;
	bottom: 16px;
	color: white;
	font-weight: 600;
	font-size: 16px;
}
.pao-wrapper .position .product-image img {
	position: absolute;
	width: 100%;
}
.pao-wrapper .position .start-part {
	margin-left: 25px;
	padding: 30px 0;
	width: calc(100% - 235px);
	height: calc(100% - 60px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.pao-wrapper .position .product-info p {
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 13px;
	font-size: 20px;
}
.pao-wrapper .position .product-info span {
	font-size: 16px;
}
.pao-wrapper .position .lists-count {
	font-size: 20px;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pao-wrapper .position-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 5px;
}
.pao-wrapper .position-total-label {
	font-size: 20px;
	font-weight: 700;
}
.pao-wrapper .position-total-value {
	font-size: 30px;
	font-weight: 800;
	transform: translateY(1px);
}
.pao-wrapper .order-total h2 {
	font-size: 36px;
	text-align: left;
	padding: 0;
	margin-top: 66px;
	margin-bottom: 19px;
}
.pao-wrapper .order-total .order-row {
	width: 100%;
	display: flex;
	align-items: end;
	border-bottom: 2px dashed var(--key-color);
	color: var(--key-color);
	position: relative;
	height: 30px;
}
.pao-wrapper .order-total .order-row .order-total-label {
	font-size: 20px;
	position: absolute;
	bottom: -6.5px;
	background: white;
	padding-right: 3px;
}
.pao-wrapper .order-total .order-row .order-total-value {
	font-size: 30px;
	font-weight: bold;
	position: absolute;
	right: 0;
	bottom: -9.5px;
	background: white;
	padding-left: 3px;
}
.pao-wrapper .order-total .sale-row {
	margin-top: 23px;
	color: var(--banner-btn-color);
	border-color: var(--banner-btn-color);
}
.pao-wrapper .order-total .total-cost {
	font-weight: bold;
	color: var(--key-color);
	margin-top: 44px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: end;
}
.pao-wrapper .order-total .total-cost .total-label {
	font-size: 20px;
}
.pao-wrapper .order-total .total-cost .total-value {
	font-size: 40px;
	display: block;
	transform: translateY(8px);
}
.pao-wrapper .order-total button {
	font-size: 22px;
	background: var(--banner-btn-color);
	border: 1px solid white;
	border-radius: 23px;
	color: white;
	font-weight: 600;
	height: 62px;
	width: 100%;
	cursor: pointer;
	margin: 37px 0 182px 0;
}
.pao-wrapper .order-total button:hover {
	background: white;
	color: var(--banner-btn-color);
	border-color: var(--banner-btn-color);
	transition: 0.1s ease-in;
}

/* СТРАНИЦА С ИНФОРМАЦИЕЙ ОБ УСПЕШНОМ ОФОРМЛЕНИИ ЗАКАЗА */
.ops-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 100px 0 170px 0;
}
.ops-wrapper img {
	width: 210px;
}
.ops-wrapper p {
	text-align: center;
	font-size: 30px;
	font-weight: bold;
	margin: 45px 0;
}
.ops-wrapper a {
	font-size: 22px;
	background: var(--banner-btn-color);
	border: 1px solid var(--banner-btn-color);
	border-radius: 23px;
	color: white;
	font-weight: 600;
	width: 669px;
	height: 62px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}
.ops-wrapper a:hover {
	background: white;
	color: var(--banner-btn-color);
	transition: 0.1s ease-out;
}

/* КАТАЛОГ */
.catalog-wrapper .banner {
	display: block;
	width: 100%;
	background-image: url("/images/common/banner2.png");
	aspect-ratio: 1130 / 636;
	background-size: cover;
	margin: var(--distance-between-main-parts) 0;
}
.catalog-wrapper h2 {
	width: 100%;
	height: 132px;
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: center;
	font-size: 36px;
	margin: 0;
	margin-top: var(--distance-between-main-parts);
}
.catalog-wrapper .cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	overflow: hidden;
	margin-bottom: -19px;
}
.catalog-wrapper .card {
	width: calc(25% - 21px);
	margin-bottom: 28px;
	/* margin-right: 28px; */
}
.catalog-wrapper .card .image {
	position: relative;
	aspect-ratio: 1/1;
	display: block;
	width: 100%;
}
.catalog-wrapper .card .image:hover {
	opacity: 0.7;
	transition: 0.2s ease-out;
}
.catalog-wrapper .card .image span {
	position: absolute;
	left: 30px;
	bottom: 20px;
	color: white;
	font-weight: 600;
	height: 50px;
	display: flex;
	align-items: center;
}
.catalog-wrapper .card .image img {
	position: absolute;
	width: 100%;
	font-size: 16px;
    border-radius: 40px;
}
.catalog-wrapper .card label {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 20px;
	display: block;
	margin-top: 20px;
    text-align: center;
}
.catalog-wrapper .card label a:hover {
	opacity: 0.7;
	transition: 0.2s ease-out;
}
.catalog-wrapper .card p {
	margin-top: 10px;
	font-size: 16px;
    text-align: center;
}
.catalog-wrapper .show-more-btn {
	font-size: 22px;
	background: var(--banner-btn-color);
	border: 1px solid var(--banner-btn-color);
	border-radius: 38px;
	color: white;
	font-weight: 600;
	height: 79px;
	width: 348px;
	cursor: pointer;
	margin: 0 auto;
	display: block;
	margin-top: 50px;
}
.catalog-wrapper .show-more-btn:hover {
	background: white;
	color: var(--banner-btn-color);
	transition: 0.1s ease-out;
}
.catalog-wrapper .furniture-block .images-wrapper {
	display: flex;
	justify-content: space-between;
}
.catalog-wrapper .furniture-block .part {
	width: calc(50% - 10px);
}
.catalog-wrapper .furniture-block .part img {
	width: 100%;
    border-radius: 40px;
}
.catalog-wrapper .furniture-block .part:last-of-type img:last-of-type {
	margin-top: 20px;
}
.catalog-wrapper .show-more-btn:last-of-type {
	margin-bottom: 92px;
}

.mobile-menu-block {
	z-index: 7;
	width: 233px;
	height: 100%;
	padding: 50px;
	background: #c9cce2;
	visibility: hidden;
	position: fixed;
	color: white;
	font-size: 18px;
}
.mobile-menu-block h2 {
	font-size: 25px;
	padding: 0;
	text-align: start;
}
.overflow-block {
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	background: black;
	opacity: 0;
	height: 100vh;
	width: 100vw;
	cursor: pointer;
	z-index: 6;
	transition:
		opacity 0.3s ease-in-out,
		visibility 0.3s ease-in-out;
	-webkit-tap-highlight-color: transparent;
}
.overflow-block.visible {
	opacity: 0.5;
	visibility: visible;
}
.no-scroll {
	overflow: hidden;
	height: 100%;
}
.mobile-menu-block.opened {
	transform: translateX(0);
	visibility: visible;
	transition: 0.3s ease-in-out;
}
.mobile-menu-block.closed {
	transform: translateX(-100%);
	transition: 0.3s ease-in-out;
	visibility: hidden;
}
.mobile-menu-block .close-btn {
	width: 50px;
	height: 50px;
	background: inherit;
	border: none;
	border-radius: 50%;
	overflow: hidden;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 0px solid white;
}
.mobile-menu-block .close-btn img {
	width: 30px;
}
.mobile-menu-block .close-btn:hover {
	border-width: 1.5px;
	transition: 0.2s ease-in;
}
.mobile-menu-block nav {
	margin-top: 23px;
}
.mobile-menu-block nav a {
	display: block;
	padding: 13px 0;
	border-bottom: 1px solid white;
}
.mobile-menu-block nav a:hover {
	font-weight: bolder;
	padding-left: 15px;
	transition: 0.1s ease-in;
}
.mobile-menu-block nav a.unwrapable {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.mobile-menu-block nav a.unwrapable::after {
	content: url(/images/menu/unwrap-menu-item.svg);
}

/* ТЕХ ПОДДЕРЖКА */
.support-block {
	z-index: 6;
	width: 595px;
	height: 100%;
	padding: 100px 0 114px 124px;
	background: #c9cce2;
	visibility: hidden;
	position: fixed;
	right: 0;
	color: white;
	font-size: 25px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-sizing: border-box;
}
.support-block * {
	font-style: normal !important;
}
.support-block.opened {
	transform: translateX(0);
	visibility: visible;
	transition: 0.3s ease-in-out;
}
.support-block.closed {
	transform: translateX(100%);
	transition: 0.3s ease-in-out;
	visibility: hidden;
}
.support-block h2 {
	font-size: 36px;
	margin-bottom: 57px;
	margin-top: 0;
}
.support-block address {
	font-size: 25px;
}
.support-block .tel-links {
	padding: 0;
}
.support-block .tel-links li {
	margin-bottom: 17px;
	list-style-type: none;
}
.support-block a {
	border-bottom: 1px solid white;
}
.support-block p:nth-last-of-type(2) {
	margin-top: 50px;
}
.support-block p:nth-last-of-type(1) {
	margin-top: 35px;
}
.support-block .close-btn {
	font-size: 22px;
	background: var(--banner-btn-color);
	border: 1px solid white;
	border-radius: 38px;
	color: white;
	font-weight: 600;
	height: 79px;
	width: 348px;
	cursor: pointer;
}
.support-block .close-btn:hover {
	background: white;
	color: var(--banner-btn-color);
	transition: 0.1s ease-out;
}

/* МОДАЛЬНОЕ ОКНО С ВЫБРАННЫМ ТОВАРОМ */
.product-modal {
	position: fixed;
	background: white;
	border-radius: 55px;
	z-index: 6;
	overflow: hidden;
	display: flex;
	transition: 0.6s ease-out;
}
.product-modal.opened {
	visibility: visible;
	top: 89px;
	right: 155px;
	bottom: 88px;
	left: 155px;
}
.product-modal.closed {
	visibility: hidden;
	top: 100%;
	bottom: 100%;
	left: 100%;
	right: 100%;
}
.product-modal .left-part {
	width: 58%;
	height: 100%;
	overflow: hidden;
	position: relative;
	z-index: 3;
}
.product-modal .product-images {
	position: absolute;
	width: auto;
	height: auto;
	z-index: 4;
	display: flex;
    overflow: hidden;
}

/* Справа и слева на месте изображения кликабельные
	области для перемещения на след/пред картинку */
/*
.slick-prev,
.slick-next {
	position: absolute;
	width: 40px;
	top: 0;
	bottom: 0;
	height: inherit;
	z-index: 1;
	background: rgba(0, 0, 0, 0.2);
	font-size: 0;
	border: none;
	cursor: pointer;
	transition: 0.2s;
}
.slick-next {
	right: 0;
}
.slick-prev:hover,
.slick-next:hover {
	background: rgba(0, 0, 0, 0.4);
} */

.product-modal .slick-dots {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	padding: 0;
	display: flex;
}
.product-modal .slick-dots li {
	list-style: none;
}
.product-modal .slick-dots li button {
	width: 20px;
	height: 20px;
	border: none;
	border-radius: 50%;
	margin-right: 10px;
	font-size: 0;
	background: var(--key-color);
	cursor: pointer;
}
.product-modal .slick-dots li.slick-active button {
	background: #a9b3ff;
}
.product-modal .left-part span {
	margin-top: 38px;
	margin-left: 45px;
	width: calc(100% - 76px);
	position: absolute;
	z-index: 5;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
    color: white;
}
.product-modal .right-part {
	width: 42%;
	height: 100%;
	padding: 28px 35px 50px;
	overflow-y: scroll;
	box-sizing: border-box;
	scrollbar-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.product-modal .right-part::-webkit-scrollbar {
	display: none;
}
.product-modal .modal-btns {
	display: flex;
	justify-content: right;
	align-items: center;
}
.product-modal .modal-btns button {
	background: none;
	border: none;
	cursor: pointer;
	padding: 2px;
	width: 26px;
	height: 26px;
	box-sizing: content-box;
	display: flex;
	justify-content: center;
	align-items: center;
}

.loading-indicator {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 20px;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	font-size: 20px;
	border-radius: 5px;
	display: none;
	z-index: 10;
}
.product-modal .modal-btns button:first-of-type {
	width: 30px;
	height: 30px;
	margin-right: 22px;
}
.product-modal .modal-btns button img {
	height: 90%;
	width: 90%;
}
.product-modal .right-part h2 {
	font-size: 36px;
	margin: 0;
	padding: 10px 0;
}
.product-modal .right-part p {
	font-size: 20px;
	padding: 10px 0;
	margin: 7px 0;
}
.product-modal .right-part .mini-cards {
	display: flex;
	flex-wrap: wrap;
}
.product-modal .right-part .mini-card__item {
	position: relative;
	overflow: hidden;
	width: 158px;
	height: 37px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	cursor: pointer;
	margin: 0 17px 17px 0;
    text-align: center;
}
.product-modal .right-part .mini-card__item.border-dark {
	border: 1px solid var(--key-color);
}
.product-modal .right-part .mini-card__item.font-dark span {
	color: var(--key-color);
}
.product-modal .right-part .mini-card__item:hover {
	opacity: 0.7;
	transition: 0.1s ease-in;
}
.product-modal .right-part .mini-card__item span {
	text-transform: uppercase;
	color: white;
	font-size: 16px;
	position: absolute;
}
.product-modal .right-part .mini-cards.recommended-embossings .mini-card__item {
	width: 59px;
	height: 59px;
	border-radius: 14px;
}
.product-modal .right-part .mini-cards.recommended-embossings .mini-card__item span {
	font-size: 30px;
}
.product-modal .product-info {
	margin-top: 32px;
	font-size: 20px;
	font-weight: bold;
}
.product-modal .product-info__row {
	width: 100%;
	height: 43px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.product-modal .product-info__row:not(:last-of-type) {
	margin-bottom: 17px;
}
.product-modal .product-info .lists-counter {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 114px;
	font-size: 21px;
}
.product-modal .product-info .lists-counter button {
	width: 30px;
	height: 30px;
	background: #ececec;
	border-radius: 50%;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.product-modal .product-info .lists-counter button:hover {
	background: #e2dede;
	transition: 0.1s ease-in;
}
.product-modal .add-to-cart-btn {
	font-size: 22px;
	background: var(--banner-btn-color);
	border: 1px solid white;
	border-radius: 38px;
	color: white;
	font-weight: 600;
	height: 50px;
	width: 68%;
	cursor: pointer;
	margin-top: 0px;
}
.product-modal .add-to-cart-btn:hover {
	background: white;
	color: var(--banner-btn-color);
	border-color: var(--banner-btn-color);
	transition: 0.1s ease-in;
}
.product-modal .next-product-btn {
	position: fixed;
	z-index: inherit;
	right: 180px;
	top: 50%;
	transform: translateY(-50%);
	padding: 2px;
	box-sizing: content-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border: none;
	background: none;
	cursor: pointer;
}

/* ВИДЫ ТИСНЕНИЙ */
.embossings-wrapper h1 {
	margin: 92px 0 40px;
}
.embossings-wrapper section {
	margin-bottom: 92px;
}
.embossings-wrapper section:first-of-type {
	margin-bottom: 62px;
}
.embossings-wrapper .cards {
	display: flex;
	flex-wrap: wrap;
}
.embossings-wrapper .card {
	width: calc(25% - 21px);
	margin: 0 21px 27px 0;
	box-sizing: content-box;
}
.embossings-wrapper .cards .card .image {
	width: 100%;
	box-sizing: content-box;
	position: relative;
	aspect-ratio: 1 / 1;
	display: block;
	cursor: pointer;
	overflow: hidden;
	border-radius: var(--border-radius);
}
.embossings-wrapper .cards .card .image img {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: var(--border-radius);
}
.embossings-wrapper .cards .card .image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	opacity: 0;
	transition: opacity 0.2s ease-out;
	z-index: 5;
	border-radius: var(--border-radius);
}
.embossings-wrapper .cards .card .image:hover::before {
	opacity: 1;
}
.embossings-wrapper .cards .card .image span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-weight: 600;
	font-size: 30px;
	padding: 6px 13px;
	border: 2px solid white;
	border-radius: 6px;
	z-index: 10;
	pointer-events: none;
}
.embossings-wrapper .cards .card h3 {
	font-size: 20px;
	text-transform: uppercase;
    text-align: center;
}
.embossings-wrapper .cards .card h3 a:hover {
	color: #78675a;
}

/* МОДАЛЬНОЕ ОКНО С ВЫБРАННЫМ ТИСНЕНИЕМ */
.embossing-modal {
	position: fixed;
	background: white;
	border-radius: 55px;
	z-index: 11;
	overflow: hidden;
	display: flex;
	transition: 0.6s ease-out;
}
.embossing-modal.opened {
	visibility: visible;
	top: 89px;
	right: 155px;
	bottom: 88px;
	left: 155px;
}
.embossing-modal.closed {
	visibility: hidden;
	top: 100%;
	bottom: 100%;
	left: 100%;
	right: 100%;
}
.embossing-modal .left-part {
	width: 58%;
	height: 100%;
	overflow: hidden;
	position: relative;
	z-index: 3;
}
.embossing-modal .left-part img {
	position: absolute;
	width: 100%;
	z-index: 4;
}
.embossing-modal .right-part {
	width: 42%;
	height: 100%;
	padding: 28px 35px 50px;
	overflow-y: scroll;
	box-sizing: border-box;
	scrollbar-width: 0;
}
.embossing-modal .right-part::-webkit-scrollbar {
	display: none;
}
.embossing-modal .modal-btns {
	display: flex;
	justify-content: right;
	align-items: center;
}
.embossing-modal .modal-btns button {
	background: none;
	border: none;
	cursor: pointer;
	padding: 2px;
	width: 26px;
	height: 26px;
	box-sizing: content-box;
	display: flex;
	justify-content: center;
	align-items: center;
}
.embossing-modal .modal-btns button img {
	height: 90%;
	width: 90%;
}
.embossing-modal .right-part h2 {
	font-size: 36px;
	margin: 0;
	padding: 10px 0;
}
.embossing-modal .right-part p {
	font-size: 20px;
	padding: 10px 0;
	margin: 2px 0 15px;
}
.embossing-modal .right-part .mini-cards {
	display: flex;
	flex-wrap: wrap;
}
.embossing-modal .right-part .mini-card__item {
	position: relative;
	overflow: hidden;
	width: 158px;
	height: 37px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	cursor: pointer;
	margin: 0 17px 17px 0;
	box-sizing: border-box;
}
.embossing-modal .right-part .mini-card__item.border-dark {
	border: 1px solid var(--key-color);
}
.embossing-modal .right-part .mini-card__item.font-dark span {
	color: var(--key-color);
}
.embossing-modal .right-part .mini-card__item.font-small span {
	font-size: 11px;
}
.embossing-modal .right-part .mini-card__item:hover {
	opacity: 0.7;
	transition: 0.1s ease-in;
}
.embossing-modal .right-part .mini-card__item span {
	text-transform: uppercase;
	color: white;
	font-size: 16px;
	position: absolute;
}
.embossing-modal .next-embossing-btn {
	position: fixed;
	z-index: inherit;
	right: 180px;
	top: 50%;
	transform: translateY(-50%);
	padding: 2px;
	box-sizing: content-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border: none;
	background: none;
	cursor: pointer;
}

/* МЕБЕЛЬ ИЗ LAMARTY */
.lf-wrapper .images {
	display: flex;
	flex-wrap: wrap;
}
.lf-wrapper .image {
	width: calc(33.333333333% - 14px);
	aspect-ratio: 362/237;
	border-radius: 13px;
	overflow: hidden;
	margin-bottom: 32px;
}
.lf-wrapper .image:hover {
	opacity: 0.7;
	transition: 0.1s ease-in;
}
.lf-wrapper .image:not(:nth-child(3n)) {
	margin-right: 21px;
}
.lf-wrapper .image img {
	width: 100%;
}
.lf-wrapper .page-changer {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 92px;
}
.lf-wrapper .page-changer button {
	border: none;
	background: var(--key-color);
	border-radius: 50%;
	width: 44px;
	height: 44px;
	color: var(--key-color);
	font-weight: bold;
	font-size: 20px;
	cursor: pointer;
	text-align: center;
	padding: 0;
}
.lf-wrapper .page-changer button:hover {
	opacity: 0.7;
	transition: 0.1s ease-out;
}
.lf-wrapper .page-changer button.current {
	background: #a9b3ff;
	color: white;
}
.lf-wrapper .page-changer button:not(:last-of-type) {
	margin-right: 20px;
}
.lf-wrapper .page-changer button:nth-last-of-type(2) {
	margin: 0;
}
.lf-wrapper .page-changer span {
	display: block;
	width: 30px;
	height: 2px;
	background: var(--key-color);
	margin: 0 13px 0 15px;
}

/* КОНТАКТЫ */
.contacts-wrapper {
	margin: var(--distance-between-main-parts) 0;
	font-size: 25px;
}
.contacts-wrapper img {
	width: 100%;
	/* height: 100%; */
}
.contacts-wrapper .physical-address {
	font-weight: bold;
	margin-bottom: 20px;
}
.contacts-wrapper .contacts-block a {
	font-weight: bold;
}
.contacts-block .send-info h3 {
	font-size: inherit;
}
.contacts-wrapper form input {
	width: 100%;
	border: 1.5px solid var(--key-color);
	border-radius: 36px;
	padding: 13px 26px;
	font-size: inherit;
	box-sizing: border-box;
}
.contacts-wrapper form input::placeholder {
	color: var(--key-color);
	opacity: 0.5;
}
.contacts-wrapper form textarea {
	width: 100%;
	box-sizing: border-box;
	height: 227px;
	border: 1.5px solid var(--key-color);
	border-radius: 36px;
	font-size: inherit;
	padding: 13px 26px;
	resize: none;
	margin-top: 19px;
}
.contacts-wrapper form textarea::placeholder {
	color: var(--key-color);
	opacity: 0.5;
}
.contacts-wrapper form button {
	background: var(--banner-btn-color);
	border: 1px solid var(--banner-btn-color);
	border-radius: 34px;
	color: white;
	font-size: 22px;
	font-weight: 600;
	height: 62px;
	cursor: pointer;
	display: block;
	width: 100%;
	margin-top: 12px;
}
.contacts-wrapper form button:hover {
	background: white;
	color: var(--banner-btn-color);
	transition: ease-in-out 0.1s;
}

/* О КОМПАНИИ */
.about-wrapper {
	margin: var(--distance-between-main-parts) 0;
	font-size: 25px;
}
.about-wrapper .part:first-child {
	width: calc(45% - 10px);
}
.about-wrapper .image {
	border-radius: 37px;
	overflow: hidden;
	display: flex;
}
.about-wrapper .image img {
	width: 100%;
	height: 100%;
}
.about-wrapper .part:last-child {
	width: calc(55% - 10px);
	line-height: 1.35em;
}
.about-wrapper p {
	margin: 0;
}

/* СЕРТИФИКАТЫ */
.certs-wrapper {
	margin: var(--distance-between-main-parts) 0;
}
.certs-wrapper h2 {
	font-size: 26px;
	padding: 10px 0;
	margin: 32px 0;
}
.certs-wrapper .images {
	display: flex;
}
.certs-wrapper .image {
	width: calc((100% - 42px) / 3);
	border: 1px solid var(--key-color);
	border-radius: 13px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.certs-wrapper .image img {
	width: 100%;
}
.certs-wrapper .image:not(:last-child) {
	margin-right: 21px;
}

/* ВХОД В АККАУНТ */
.signin-wrapper {
	width: 350px;
	margin: 110px auto;
}
.signin-wrapper h1 {
	margin: 0;
}
.signin-wrapper form {
	margin: 37px auto;
}
.signin-wrapper input {
	width: 100%;
	height: 43px;
	margin-top: 30px;
	border: 1px solid var(--key-color);
	border-radius: 27px;
	font-size: 16px;
	padding: 0 16px;
	box-sizing: border-box;
	color: #78675a;
}
.signin-wrapper input::placeholder {
	color: var(--key-color);
	opacity: 0.5;
}
.signin-wrapper input.error::placeholder {
	color: var(--error-color);
}
.signin-wrapper input:focus {
	border: 1.5px solid var(--key-color);
}
.signin-wrapper input.error {
	color: var(--error-color);
	border-color: var(--error-color);
}
.signin-wrapper .error-text {
	color: var(--error-color);
	font-size: 16px;
	margin: 14px 0;
}
.signin-wrapper button {
	width: 100%;
	height: 62px;
	font-size: 22px;
	border-radius: 38px;
	background: var(--banner-btn-color);
	border: 1px solid var(--banner-btn-color);
	color: white;
	cursor: pointer;
	margin-top: 43px;
	font-weight: bold;
}
.signin-wrapper button:enabled:hover {
	background: white;
	color: var(--banner-btn-color);
	transition: ease-in-out 0.1s;
}
.signin-wrapper button:disabled {
	background: #e3e3e3;
	cursor: default;
	border: none;
	margin: 0;
}
.signin-wrapper p {
	font-size: 20px;
	text-align: center;
	margin: 37px 0 0;
}
.signin-wrapper a {
	border-bottom: 1px solid var(--key-color);
}
.signin-wrapper a:hover {
	color: #78675a;
	border-color: #78675a;
}

/* РЕГИСТРАЦИЯ */
.signup-wrapper {
	width: 350px;
	margin: 0 auto;
}
.signup-wrapper .inputs-section {
	margin-bottom: 54px;
}
.signup-wrapper h2 {
	font-size: 20px;
	height: 40px;
	padding: 0;
	margin: 0;
	text-align: left;
	line-height: 40px;
}
.signup-wrapper .input-block {
	display: flex;
	width: calc(100% + 10px);
	transform: translateX(-10px);
}
.signup-wrapper .input-block .star {
	color: #a9b3ff;
	font-size: 25px;
	transform: translate(-10px, 20px);
}
.signup-wrapper input {
	border: none;
	border-bottom: 1px solid var(--key-color);
	padding: 13px 0;
	width: 100%;
	margin-top: 10px;
	outline: none;
	box-sizing: border-box;
	height: 42px;
	color: #78675a;
}
.signup-wrapper input:focus {
	border-width: 2px;
	transition: 0.1s ease-in;
}
.signup-wrapper input::placeholder {
	color: var(--key-color);
	opacity: 0.5;
}
.signup-wrapper button {
	font-size: 22px;
	background: var(--banner-btn-color);
	border: 1px solid white;
	border-radius: 38px;
	color: white;
	font-weight: 600;
	padding: 20px 0;
	width: 100%;
	cursor: pointer;
	margin-bottom: 92px;
}
.signup-wrapper button:hover {
	background: white;
	color: var(--banner-btn-color);
	border-color: var(--banner-btn-color);
	transition: ease-in-out 0.1s;
}

/* ВОССТАНОВЛЕНИЕ ПАРОЛЯ */
.pasrec-wrapper {
	width: 500px;
	margin: 170px auto;
}
.pasrec-wrapper h1 {
	margin: 0;
}
.pasrec-wrapper form {
	margin: 37px auto;
	width: 350px;
}
.pasrec-wrapper input {
	width: 100%;
	height: 43px;
	margin-top: 33px;
	border: 1px solid var(--key-color);
	border-radius: 27px;
	font-size: 16px;
	padding: 0 16px;
	box-sizing: border-box;
	color: #78675a;
}
.pasrec-wrapper input::placeholder {
	color: var(--key-color);
	opacity: 0.5;
}
.pasrec-wrapper input.error::placeholder {
	color: var(--error-color);
}
.pasrec-wrapper input:focus {
	border: 1.5px solid var(--key-color);
}
.pasrec-wrapper input.error {
	color: var(--error-color);
	border-color: var(--error-color);
}
.pasrec-wrapper .error-text {
	color: var(--error-color);
	font-size: 16px;
	margin: 14px 0;
}
.pasrec-wrapper button {
	width: 100%;
	height: 62px;
	font-size: 22px;
	border-radius: 38px;
	background: var(--banner-btn-color);
	border: 1px solid var(--banner-btn-color);
	color: white;
	cursor: pointer;
	margin-top: 46px;
	font-weight: bold;
}
.pasrec-wrapper button:enabled:hover {
	background: white;
	color: var(--banner-btn-color);
	transition: ease-in-out 0.1s;
}
.pasrec-wrapper button:disabled {
	background: #e3e3e3;
	cursor: default;
	border: none;
	margin: 0;
}
.pasrec-wrapper p {
	font-size: 20px;
	text-align: center;
	margin: 37px 0 0;
}
.pasrec-wrapper a {
	border-bottom: 1px solid var(--key-color);
}
.pasrec-wrapper a:hover {
	color: #78675a;
	border-color: #78675a;
}

/* НОВЫЙ ПАРОЛЬ */
.newpas-wrapper {
	width: 500px;
	margin: 110px auto;
}
.newpas-wrapper h1 {
	margin: 0;
}
.newpas-wrapper form {
	width: 350px;
	margin: 37px auto;
}
.newpas-wrapper input {
	width: 100%;
	height: 43px;
	margin-top: 30px;
	border: 1px solid var(--key-color);
	border-radius: 27px;
	font-size: 16px;
	padding: 0 16px;
	box-sizing: border-box;
	color: #78675a;
}
.newpas-wrapper input::placeholder {
	color: var(--key-color);
	opacity: 0.5;
}
.newpas-wrapper input.error::placeholder {
	color: var(--error-color);
}
.newpas-wrapper input:focus {
	border: 1.5px solid var(--key-color);
}
.newpas-wrapper input.error {
	color: var(--error-color);
	border-color: var(--error-color);
}
.newpas-wrapper .error-text {
	color: var(--error-color);
	font-size: 16px;
	margin: 14px 0;
}
.newpas-wrapper button {
	width: 100%;
	height: 62px;
	font-size: 22px;
	border-radius: 38px;
	background: var(--banner-btn-color);
	border: 1px solid var(--banner-btn-color);
	color: white;
	cursor: pointer;
	margin-top: 43px;
	font-weight: bold;
}
.newpas-wrapper button:enabled:hover {
	background: white;
	color: var(--banner-btn-color);
	transition: ease-in-out 0.1s;
}
.newpas-wrapper button:disabled {
	background: #e3e3e3;
	cursor: default;
	border: none;
	margin: 0;
}
.newpas-wrapper p {
	font-size: 20px;
	text-align: center;
	margin: 37px 0 0;
}
.newpas-wrapper a {
	border-bottom: 1px solid var(--key-color);
}
.newpas-wrapper a:hover {
	color: #78675a;
	border-color: #78675a;
}

/* СТРАНИЦА С СООБЩЕНИЕМ ОБ ОТПРАВЛЕННОЙ НА ПОЧТУ ССЫЛКЕ */
.reclinksent-wrapper {
	margin: 150px auto;
	text-align: center;
}
.reclinksent-wrapper h1 {
	margin-bottom: 50px;
}
.reclinksent-wrapper a {
	font-size: 20px;
	margin-top: 40px;
	display: inline-block;
	border-bottom: 1px solid var(--key-color);
}

/* ПОДВАЛ САЙТА */
footer {
	background: var(--key-color);
	color: white;
	padding-top: 103px;
	padding-bottom: 100px;
}
footer .part:first-of-type {
	width: 350px;
}
footer .logo {
	display: flex;
	width: 100%;
	justify-content: space-between;
	margin-bottom: 40px;
}
footer .logo img {
	width: 210px;
}
footer .logo span {
	text-align: right;
	transform: translate(-30px, -2px);
	font-style: italic;
	font-size: 35px;
	font-weight: 600;
}
footer address {
	margin-top: 5px;
	font-style: normal;
	font-size: 21px;
}
footer address .geo-address {
	font-size: 20px;
	margin: 30px 0;
}
footer address a {
	font-size: 24px;
	border-bottom: 1px solid white;
}
footer .social-links {
	display: flex;
	margin-top: 30px;
}
footer .social-links a {
	border-radius: 50%;
	overflow: hidden;
	display: block;
}
footer .social-links a:not(:first-child) {
	margin-left: 27px;
}
footer .part:last-of-type {
	width: 440px;
}
footer h2 {
	text-align: left;
	padding: 0;
	margin: 0;
	font-size: 24px;
}
footer nav.menu {
	display: flex;
	justify-content: space-between;
}
footer nav.menu ul {
	padding-left: 20px;
}
footer nav.menu li {
	margin-top: 20px;
	font-size: 18px;
	padding-bottom: 3px;
}
footer nav.menu a:hover {
	border-bottom: 1.5px solid white;
	transition: ease-out 0.1s;
}

@media screen and (max-width: 1380px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 30px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 30px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 30px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 30px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 30px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 30px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 30px;
    }
	.landing-wrapper .main-3 .part {
		line-height: 25px;
	}
	.embossing-modal.opened {
		top: 47px;
		right: 40px;
		bottom: 47px;
		left: 40px;
	}
	.embossing-modal .next-embossing-btn {
		right: 60px;
	}
}
@media screen and (max-width: 1300px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 30px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 30px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 30px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 30px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 30px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 30px;
    }
	.fav-wrapper .right-part .card .image span {
		left: 18px;
		bottom: 10px;
		height: 30px;
		font-size: 15px;
	}
}
@media screen and (max-width: 1280px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 30px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 30px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 30px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 30px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 30px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 30px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 30px;
    }
	header .container {
		border: none;
		/* padding-left: 35px; */
	}
	header {
		border-bottom: 2px solid var(--key-color);
	}
	header .open-menu-btn {
		display: block;
	}
	header .container {
		/* justify-content: start; */
	}
	header .logo {
		/* margin-left: 70px; */
	}
	header .container {
		position: relative;
	}
	header .menu {
		display: none;
	}
	header .user-btns {
		/* position: absolute; */
		right: 35px;
	}
	.landing-wrapper .main-3 .part {
		font-size: 15px;
		line-height: 24px;
	}
	.product-modal.opened {
		top: 47px;
		right: 40px;
		bottom: 47px;
		left: 40px;
	}
	.product-modal .next-product-btn {
		right: 60px;
	}
}
@media screen and (max-width: 1250px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 30px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 30px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 30px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 30px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 30px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 30px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 30px;
    }
	.banner a {
		font-size: 13px;
		padding: 13px 18px;
		right: 21px;
		bottom: 37px;
	}
	.landing-wrapper .main-1 .card .image span {
		font-size: 12px;
		left: 20px;
	}
	.landing-wrapper .main-1 .card label {
		font-size: 15px;
	}
	.landing-wrapper .main-1 .card p {
		font-size: 13px;
	}
	.landing-wrapper .main-2 .part {
		width: calc(50% - 9px);
	}
	.landing-wrapper .main-2 .part:last-of-type img:last-of-type {
		margin-top: 15px;
	}
	.catalog-wrapper .furniture-block .part {
		width: calc(50% - 9px);
	}
	.catalog-wrapper .furniture-block .part:last-of-type img:last-of-type {
		margin-top: 15px;
	}
	footer .part:last-of-type {
		width: 370px;
	}
}
@media screen and (max-width: 1100px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 25px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 25px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 25px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 25px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 25px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 25px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 25px;
    }
	:root {
		--distance-between-main-parts: 65px;
	}
	.container {
		width: 90%;
	}
	.landing-wrapper .main-2 .part:last-of-type img:last-of-type {
		margin-top: 10px;
	}
	.landing-wrapper .main-2 .part {
		width: calc(50% - 8px);
	}
	.landing-wrapper .furniture-block .part:last-of-type img:last-of-type {
		margin-top: 10px;
	}
	.landing-wrapper .furniture-block .part {
		width: calc(50% - 8px);
	}
	.landing-wrapper .main-3 .part {
		font-size: 13px;
		line-height: 20px;
	}
	.landing-wrapper .main-4 {
		font-size: 18px;
	}
	.landing-wrapper .main-4 form input {
		font-size: 18px;
	}
	.landing-wrapper .main-4 form textarea {
		font-size: 18px;
	}
	.ops-wrapper {
		padding: 80px 0 140px;
	}
	.ops-wrapper img {
		width: 108px;
	}
	.ops-wrapper p {
		font-size: 19px;
		margin: 30px 0;
	}
	.ops-wrapper a {
		font-size: 12px;
		border-radius: 13px;
		width: 370px;
		height: 33px;
	}
	.reclinksent-wrapper {
		margin: 80px auto;
	}
	.reclinksent-wrapper h1 {
		margin-bottom: 40px;
	}
	.reclinksent-wrapper a {
		font-size: 17px;
		margin-top: 30px;
	}
	.support-block {
		width: 487px;
		padding: 154px 0 118px 102px;
	}
	.support-block h2 {
		font-size: 30px;
		margin-bottom: 47px;
	}
	.support-block address {
		font-size: 17px;
	}
	.support-block p:nth-last-of-type(2) {
		margin-top: 40px;
	}
	.support-block p:nth-last-of-type(1) {
		margin-top: 28px;
	}
	.support-block .close-btn {
		font-size: 17px;
		border-radius: 31px;
		height: 65px;
		width: 288px;
	}
}
@media screen and (max-width: 950px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 20px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 20px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 20px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 20px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 20px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 20px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 20px;
    }
	:root {
		--distance-between-main-parts: 60px;
	}
	h1 {
		margin-top: 82px;
		font-size: 30px;
	}
	.banner a {
		right: 16px;
		bottom: 26px;
	}
	.landing-wrapper h2 {
		padding: 25px 0;
		font-size: 22px;
	}
	.landing-wrapper .banner a {
		bottom: 37px;
		right: 22px;
		border-radius: 21px;
		font-size: 13px;
		padding: 15px 22px;
	}
	.landing-wrapper .main-1 .card {
		width: calc(20% - 10px);
		margin-bottom: 15px;
	}
	.landing-wrapper .main-1 .to-catalog {
		border-radius: 26px;
		font-size: 14px;
		padding: 17px 57px;
		margin-top: 18px;
	}
	.landing-wrapper .main-2 .view-furniture {
		border-radius: 26px;
		font-size: 14px;
		padding: 17px 60px;
		margin-top: 30px;
	}
	.landing-wrapper .main-3 footer .part:last-of-type {
		width: 300px;
	}
	.fav-wrapper .right-part .card {
		width: calc(33% - 7px);
		margin-top: 12px;
	}
	.fav-wrapper .right-part .card .image span {
		left: 13px;
		bottom: 9px;
		height: 21px;
		font-size: 12px;
	}
	.fav-wrapper .right-part .card label {
		font-size: 15px;
		margin-top: 12px;
	}
	.fav-wrapper .right-part .card p {
		margin-top: 7px;
		font-size: 11px;
	}
	.fav-wrapper .right-part .show-more-btn {
		font-size: 17px;
		border-radius: 35px;
		width: 250px;
		height: 53px;
		margin: 30px auto 130px auto;
	}
	.pao-wrapper .left-part {
		width: calc(45% - 30px);
	}
	.pao-wrapper .left-part h2 {
		font-size: 17px;
	}
	.pao-wrapper .left-part .input-block {
		width: calc(100% + 7px);
		transform: translateX(-7px);
	}
	.pao-wrapper .left-part span {
		font-size: 18px;
		transform: translate(-7px, 17px);
	}
	.pao-wrapper .left-part input {
		padding: 9px 0;
		height: 31px;
		font-size: 12px;
	}
	.pao-wrapper .left-part .inputs-section {
		margin-bottom: 30px;
	}
	.pao-wrapper .position {
		margin-bottom: 31px;
		height: 110px;
	}
	.pao-wrapper .position .product-image span {
		left: 12px;
		bottom: 4px;
		height: 16px;
		font-size: 8px;
	}
	.pao-wrapper .position .start-part {
		margin-left: 14px;
		padding: 10px 0;
		width: calc(100% - 124px);
		height: calc(100% - 20px);
	}
	.pao-wrapper .position .product-info p {
		margin: 0;
		font-size: 17px;
	}
	.pao-wrapper .position .product-info span {
		font-size: 12px;
	}
	.pao-wrapper .position .lists-count {
		font-size: 17px;
	}
	.pao-wrapper .position-total {
		margin-top: 0;
	}
	.pao-wrapper .position-total-label {
		font-size: 17px;
	}
	.pao-wrapper .position-total-value {
		font-size: 16px;
	}
	.pao-wrapper .order-total h2 {
		font-size: 19px;
		margin-top: 50px;
		margin-bottom: 10px;
	}
	.pao-wrapper .order-total .order-row {
		border-bottom: 1px dashed var(--key-color);
		height: 21px;
	}
	.pao-wrapper .order-total .order-row .order-total-label {
		font-size: 11px;
		bottom: -3.5px;
		padding-right: 1px;
	}
	.pao-wrapper .order-total .order-row .order-total-value {
		font-size: 16px;
		bottom: -5px;
		padding-left: 1.5px;
	}
	.pao-wrapper .order-total .sale-row {
		margin-top: 6px;
	}
	.pao-wrapper .order-total .total-cost {
		margin-top: 18px;
	}
	.pao-wrapper .order-total .total-cost .total-label {
		font-size: 11px;
	}
	.pao-wrapper .order-total .total-cost .total-value {
		font-size: 21px;
		transform: translateY(4px);
	}
	.pao-wrapper .order-total button {
		font-size: 12px;
		border-radius: 13px;
		height: 33px;
		margin-top: 20px;
	}
	.catalog-wrapper h2 {
		font-size: 22px;
		height: 63px;
	}
	.catalog-wrapper .card {
		width: calc(25% - 12px);
		margin-bottom: 19px;
	}
	.catalog-wrapper .card .image span {
		font-size: 12px;
		left: 17px;
		bottom: 20px;
		height: 14px;
	}
	.catalog-wrapper .card label {
		margin-top: 12px;
		font-size: 12px;
	}
	.catalog-wrapper .card p {
		font-size: 10px;
		margin-top: 5px;
	}
	.catalog-wrapper .show-more-btn {
		margin-top: 30px;
		width: 211px;
		height: 47px;
		font-size: 12px;
	}
	.product-modal {
		display: block;
		overflow-y: scroll;
		box-sizing: border-box;
		scrollbar-width: 0;
	}
	.product-modal::-webkit-scrollbar {
		display: none;
	}
	.product-modal .left-part {
		height: 516px;
		width: 100%;
	}
	.product-modal .left-part span {
		margin-top: 33px;
		margin-left: 33px;
		width: calc(100% - 140px);
		display: inline;
	}
	.product-modal .right-part {
		width: 100%;
		overflow: hidden;
		height: auto;
		padding: 18px 24px 29px;
	}
	.product-modal .modal-btns button:first-of-type {
		margin: 0;
		width: 29px;
		height: 29px;
	}
	.product-modal .modal-btns button:last-of-type {
		position: fixed;
		top: 86px;
		right: 70px;
		width: 18px;
		height: 18px;
		z-index: 3;
	}
	.product-modal .right-part h2 {
		font-size: 26px;
		margin: 0;
		margin-top: -40px;
	}
	.product-modal .right-part p {
		font-size: 15px;
		padding: 7px 0;
		margin: 5px 0;
	}
	.product-modal .right-part .mini-card__item {
		width: 116px;
		height: 27px;
		border-radius: 7px;
		margin: 0 15px 15px 0;
	}
	.product-modal .right-part .mini-card__item span {
		font-size: 12px;
	}
	.product-modal .right-part .mini-cards.recommended-embossings .mini-card__item {
		width: 43px;
		height: 43px;
		border-radius: 10px;
	}
	.product-modal .right-part .mini-cards.recommended-embossings .mini-card__item span {
		font-size: 22px;
	}
	.product-modal .next-product-btn {
		position: fixed;
		z-index: inherit;
		right: 68px;
		top: 50%;
		transform: translateY(-50%);
		width: 18px;
		height: 27px;
	}
	.product-modal .next-product-btn img {
		width: 15px;
	}
	.product-modal .slick-dots {
		bottom: 14px;
	}
	.product-modal .slick-dots li button {
		width: 15px;
		height: 15px;
		margin-right: 7px;
	}
	.product-modal .product-info {
		margin-top: 0;
		font-size: 15px;
	}
	.product-modal .product-info__row {
		height: 38px;
	}
	.product-modal .product-info__row:not(:last-of-type) {
		margin-bottom: 6px;
	}
	.product-modal .product-info .lists-counter {
		width: 94px;
		font-size: 16px;
	}
	.product-modal .product-info .lists-counter button {
		width: 24px;
		height: 24px;
	}
	.product-modal .product-info .lists-counter button img {
		width: 11px;
		height: 11px;
	}
	.product-modal .add-to-cart-btn {
		font-size: 17px;
		border-radius: 38px;
		width: 292px;
		height: 57px;
		margin: 0 auto;
		display: block;
		margin-top: 6px;
	}
	.embossing-modal {
		display: block;
		overflow-y: scroll;
		box-sizing: border-box;
		scrollbar-width: 0;
	}
	.embossing-modal::-webkit-scrollbar {
		display: none;
	}
	.embossing-modal .left-part {
		height: 516px;
		width: 100%;
	}
	.embossing-modal .left-part span {
		margin-top: 33px;
		margin-left: 33px;
		width: calc(100% - 140px);
		display: inline;
	}
	.embossing-modal .right-part {
		width: 100%;
		overflow: hidden;
		height: auto;
		padding: 18px 24px 29px;
	}
	.embossing-modal .modal-btns button {
		position: fixed;
		top: 86px;
		right: 70px;
		width: 18px;
		height: 18px;
		z-index: 3;
	}
	.embossing-modal .right-part h2 {
		font-size: 26px;
		margin: 0;
	}
	.embossing-modal .right-part p {
		font-size: 15px;
		padding: 7px 0;
		margin: 5px 0;
	}
	.embossing-modal .right-part .mini-card__item {
		width: 148px;
		height: 32px;
		border-radius: 7px;
		margin: 0 15px 12px 0;
	}
	.embossing-modal .right-part .mini-card__item span {
		font-size: 11px;
	}
	.embossing-modal .right-part .mini-card__item.font-small span {
		font-size: 11px;
	}
	.embossing-modal .next-embossing-btn {
		position: fixed;
		z-index: inherit;
		right: 68px;
		top: 50%;
		transform: translateY(-50%);
		width: 18px;
		height: 27px;
	}
	.embossing-modal .next-embossing-btn img {
		width: 15px;
	}
	.embossings-wrapper h1 {
		font-size: 22px;
		margin: 70px 0 25px;
	}
	.embossings-wrapper section {
		margin-bottom: 70px;
	}
	.embossings-wrapper section:first-of-type {
		margin-bottom: 50px;
	}
	.embossings-wrapper h2 {
		font-size: 18px;
	}
	.embossings-wrapper .cards .card {
		width: calc(25% - 12px);
		margin-right: 12px;
		margin-bottom: 16px;
	}
	.embossings-wrapper .cards .card .image span {
		font-size: 19px;
		padding: 6px 10px;
		border-radius: 5px;
	}
	.embossings-wrapper .cards .card h3 {
		font-size: 12px;
	}
	.lf-wrapper .image {
		width: calc((100% - 26px) / 3);
		border-radius: 8px;
		margin-bottom: 19px;
	}
	.lf-wrapper .image:not(:nth-child(3n)) {
		margin-right: 13px;
	}
	.lf-wrapper .page-changer {
		margin-bottom: 60px;
	}
	.lf-wrapper .page-changer button {
		width: 27px;
		height: 27px;
		font-size: 12px;
	}
	.lf-wrapper .page-changer button:not(:last-of-type) {
		margin-right: 12px;
	}
	.lf-wrapper .page-changer button:nth-last-of-type(2) {
		margin: 0;
	}
	.lf-wrapper .page-changer span {
		width: 19px;
		height: 1.7px;
		margin: 0 13px 0 9px;
	}
	.contacts-wrapper {
		font-size: 17px;
	}
	.contacts-wrapper .physical-address {
		margin-bottom: 10px;
	}
	.contacts-wrapper .send-info h3 {
		margin: 10px 0 30px 0;
	}
	.about-wrapper .flex-wrapper {
		display: block;
	}
	.about-wrapper .part {
		width: 100% !important;
	}
	.about-wrapper .part:last-child {
		margin-top: 23px;
		font-size: 18px;
	}
	.about-wrapper .image {
		border-radius: 22px;
	}
	.certs-wrapper h2 {
		font-size: 18px;
		padding: 6px 0;
		margin: 19px 0;
	}
	.certs-wrapper .image {
		width: calc((100% - 26px) / 3);
		border-radius: 18px;
	}
	.certs-wrapper .image:not(:last-child) {
		margin-right: 13px;
	}
	.signin-wrapper {
		width: 270px;
		margin: 90px auto;
	}
	.signin-wrapper form {
		margin: 26px auto;
	}
	.signin-wrapper input {
		height: 33px;
		margin-top: 23px;
		border-radius: 20px;
		font-size: 12px;
		padding: 0 12px;
	}
	.signin-wrapper .error-text {
		font-size: 12px;
		margin: 11px 0;
	}
	.signin-wrapper button {
		height: 48px;
		font-size: 17px;
		border-radius: 29px;
		margin-top: 32px;
	}
	.signin-wrapper p {
		font-size: 16px;
		margin: 26px 0 0;
	}
	.signup-wrapper {
		width: 256px;
	}
	.signup-wrapper .inputs-section {
		margin-bottom: 39px;
	}
	.signup-wrapper h2 {
		font-size: 17px;
		height: 29px;
		line-height: 29px;
	}
	.signup-wrapper .input-block {
		width: calc(100% + 7px);
		transform: translateX(-7px);
	}
	.signup-wrapper .input-block .star {
		font-size: 20px;
		transform: translate(-8px, 16px);
	}
	.signup-wrapper input {
		padding: 9px 0;
		margin-top: 9px;
		height: 30px;
	}
	.signup-wrapper button {
		font-size: 17px;
		border-radius: 27px;
		padding: 14px 0;
		margin-bottom: 82px;
	}
	.pasrec-wrapper {
		width: 400px;
		margin: 90px auto;
	}
	.pasrec-wrapper form {
		margin: 26px auto;
		width: 290px;
	}
	.pasrec-wrapper input {
		height: 33px;
		margin-top: 23px;
		border-radius: 20px;
		font-size: 12px;
		padding: 0 12px;
	}
	.pasrec-wrapper .error-text {
		font-size: 12px;
		margin: 11px 0;
	}
	.pasrec-wrapper button {
		height: 48px;
		font-size: 17px;
		border-radius: 29px;
		margin-top: 32px;
	}
	.pasrec-wrapper p {
		font-size: 16px;
		margin: 26px 0 0;
	}
	.newpas-wrapper {
		width: 400px;
		margin: 90px auto;
	}
	.newpas-wrapper form {
		margin: 26px auto;
		width: 290px;
	}
	.newpas-wrapper input {
		height: 33px;
		margin-top: 23px;
		border-radius: 20px;
		font-size: 12px;
		padding: 0 12px;
	}
	.newpas-wrapper .error-text {
		font-size: 12px;
		margin: 11px 0;
	}
	.newpas-wrapper button {
		height: 48px;
		font-size: 17px;
		border-radius: 29px;
		margin-top: 32px;
	}
	.newpas-wrapper p {
		font-size: 16px;
		margin: 26px 0 0;
	}
	footer nav.menu {
		display: block;
	}
}
@media screen and (max-width: 920px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 20px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 20px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 20px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 20px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 20px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 20px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 20px;
    }
	.cabinet-container {
		width: 589px;
	}
	.cabinet-wrapper .left-part {
		width: 338px;
		font-size: 17px;
	}
	.cabinet-wrapper .left-part img {
		width: 126px;
	}
	.cabinet-wrapper .left-part .user-info {
		margin-left: 24px;
	}
	.cabinet-wrapper .right-part {
		padding-top: 40px;
		width: 254px;
		margin-left: 5px;
	}
	.cabinet-wrapper .right-part h2 {
		font-size: 17px;
	}
	.cabinet-wrapper .right-part .inputs-section {
		margin-bottom: 38px;
	}
	.cabinet-wrapper .right-part .input-block {
		width: calc(100% + 7px);
		transform: translateX(-7px);
	}
	.cabinet-wrapper .right-part input {
		padding: 9px 0;
		font-size: 12px;
		margin-top: 5px;
		height: 31px;
	}
	.cabinet-wrapper .right-part span {
		font-size: 18px;
		transform: translate(-7px, 14px);
	}
	.cabinet-wrapper .right-part button {
		font-size: 17px;
		border-radius: 27px;
		padding: 14px 0;
		margin-bottom: 10px;
	}
	.orders-wrapper {
		justify-content: space-between;
		margin-top: 16px;
	}
	.orders-wrapper .left-part {
		margin-right: 0;
		font-size: 17px;
	}
	.orders-wrapper .left-part nav li {
		margin-bottom: 25px;
	}
	.orders-wrapper .left-part img {
		padding: 10px;
		width: 126px;
	}
	.orders-wrapper .left-part .user-info {
		margin-left: 24px;
	}
	.orders-wrapper .left-part .user-info span {
		margin: 8px 0;
	}
	.fav-wrapper {
		justify-content: space-between;
		margin-top: 16px;
	}
	.fav-wrapper .left-part {
		margin-right: 0;
		font-size: 17px;
	}
	.fav-wrapper .left-part nav li {
		margin-bottom: 25px;
	}
	.fav-wrapper .left-part img {
		padding: 10px;
		width: 126px;
	}
	.fav-wrapper .left-part .user-info {
		margin-left: 24px;
	}
	.fav-wrapper .left-part .user-info span {
		margin: 8px 0;
	}
}
@media screen and (max-width: 900px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 20px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 20px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 20px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 20px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 20px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 20px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 20px;
    }
	.landing-wrapper .main-1 .card .image span {
		font-size: 9px;
		left: 14px;
		bottom: 12px;
	}
}
@media screen and (max-width: 880px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 20px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 20px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 20px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 20px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 20px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 20px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 20px;
    }
	.cart-wrapper .position {
		margin-bottom: 31px;
		height: 110px;
	}
	.cart-wrapper .position .product-image span {
		font-size: 9px;
		left: 14px;
		bottom: 12px;
	}
	.cart-wrapper .position .start-part {
		padding: 16px 0;
		height: calc(100% - 32px);
		margin-left: 27px;
	}
	.cart-wrapper .position .start-part .product-info p {
		margin-bottom: 7px;
		font-size: 17px;
	}
	.cart-wrapper .position .start-part .product-info span {
		font-size: 12px;
	}
	.cart-wrapper .position .start-part .lists-count {
		font-size: 17px;
	}
	.cart-wrapper .position .start-part .lists-count button {
		width: 21px;
		height: 21px;
		margin: 0 12px;
	}
	.cart-wrapper .position .start-part .lists-count button img {
		width: 10px;
		height: 10px;
	}
	.cart-wrapper .position .end-part {
		min-height: calc(100% - 32px);
		padding: 16px 0;
	}
	.cart-wrapper .position .end-part button {
		width: 13px;
		height: 13px;
	}
	.cart-wrapper .position .end-part .position-cost {
		min-width: 99px;
	}
	.cart-wrapper .position .end-part .cost-label {
		font-size: 11px;
		transform: translateY(0.6px);
		margin-right: 14px;
	}
	.cart-wrapper .position .end-part .cost-value {
		font-size: 16px;
	}
	.cart-wrapper .order-total {
		margin-top: 0;
	}
	.cart-wrapper .order-total h2 {
		font-size: 19px;
		margin: 0;
		padding-top: 19px;
		padding-bottom: 10px;
	}
	.cart-wrapper .order-total .order-row {
		height: 21px;
		border-width: 1px;
	}
	.cart-wrapper .order-total .order-row .order-total-label {
		font-size: 11px;
		bottom: -4px;
		padding-right: 3px;
	}
	.cart-wrapper .order-total .order-row .order-total-value {
		font-size: 30px;
		right: 0;
		bottom: -9.5px;
		padding-left: 3px;
	}
	.cart-wrapper .order-total .sale-row {
		margin-top: 4px;
	}
	.cart-wrapper .order-total .total-cost {
		margin-top: 18px;
	}
	.cart-wrapper .order-total .total-cost .total-label {
		font-size: 11px;
	}
	.cart-wrapper .order-total .total-cost .total-value {
		font-size: 21px;
		transform: translateY(4px);
	}
	.cart-wrapper .order-total button {
		font-size: 12px;
		border-radius: 13px;
		height: 33px;
		margin: 19px 0 182px 0;
	}
	.cart-wrapper .order-total .order-row .order-total-value {
		font-size: 16px;
		bottom: -6px;
	}
}
@media screen and (max-width: 830px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 20px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 20px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 20px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 20px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 20px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 20px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 20px;
    }
	.landing-wrapper .main-3 .part {
		font-size: 13px;
		line-height: 18px;
	}
}
@media screen and (max-width: 800px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 20px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 20px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 20px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 20px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 20px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 20px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 20px;
    }
	.landing-wrapper .main-1 .card {
		width: calc(25% - 15px);
	}
	h2 {
		font-size: 22px;
	}
	.landing-wrapper .main-4 {
		font-size: 16px;
	}
	.landing-wrapper .main-4 form input {
		font-size: 16px;
	}
	.landing-wrapper .main-4 form textarea {
		font-size: 16px;
	}
	.contacts-wrapper {
		font-size: 16px;
	}
	.orders-wrapper {
		display: block;
		margin-top: 23px;
	}
	.orders-wrapper .left-part {
		width: 100%;
	}
	.orders-wrapper .left-part .user-profile {
		justify-content: center;
		transform: translateX(-30px);
	}
	.orders-wrapper .left-part .user-profile img {
		width: 80px;
		height: 80px;
	}
	.orders-wrapper .left-part nav {
		display: none;
	}
	.orders-wrapper .right-part {
		width: 100%;
		margin-top: 23px;
	}
	.orders-wrapper .right-part table {
		font-size: 17px;
	}
	.orders-wrapper .right-part table tr {
		height: 38px;
	}
	.orders-wrapper .right-part nav {
		display: block;
	}
	.fav-wrapper {
		display: block;
		margin-top: 23px;
	}
	.fav-wrapper .left-part {
		width: 100%;
	}
	.fav-wrapper .left-part .user-profile {
		justify-content: center;
		transform: translateX(-30px);
	}
	.fav-wrapper .left-part .user-profile img {
		width: 80px;
		height: 80px;
	}
	.fav-wrapper .left-part nav {
		display: none;
	}
	.fav-wrapper .right-part {
		width: 100%;
		margin-top: 23px;
	}
	.fav-wrapper .right-part .card .image span {
		left: 18px;
		bottom: 10px;
		height: 30px;
		font-size: 15px;
	}
	.fav-wrapper .right-part .show-more-btn {
		font-size: 17px;
		border-radius: 35px;
		width: 250px;
		height: 53px;
		margin: 20px auto 35px auto;
	}
	.fav-wrapper .right-part nav {
		display: block;
		margin-top: 0;
	}
	footer .part:last-of-type {
		width: 250px;
	}
}
@media screen and (max-width: 760px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 15px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 15px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 15px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 15px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 15px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 15px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 15px;
    }
	.landing-wrapper .main-3 .part {
		font-size: 11px;
		line-height: 14px;
	}
	.landing-wrapper .main-3 a {
		font-size: 16px;
		padding: 12px 35px;
	}
	.landing-wrapper .main-4 form button {
		font-size: 16px;
		padding: 12px 35px;
	}
}
@media screen and (max-width: 710px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 15px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 15px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 15px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 15px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 15px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 15px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 15px;
    }
	h1 {
		font-size: 26px;
		margin-top: 34px;
	}
	.cabinet-wrapper {
		display: block;
	}
	.cabinet-container {
		width: 60%;
	}
	.cabinet-wrapper .left-part {
		font-size: 15px;
		width: 100%;
	}
	.cabinet-wrapper .left-part nav {
		display: none;
	}
	.cabinet-wrapper .left-part img {
		width: 80px;
	}
	.cabinet-wrapper .left-part .user-info {
		margin-left: 20px;
	}
	.cabinet-wrapper .left-part nav a {
		margin-bottom: 41px;
		display: block;
	}
	.cabinet-wrapper .right-part {
		width: 100%;
		margin-left: 0;
		padding-top: 15px;
	}
	.cabinet-wrapper .right-part h2 {
		font-size: 15px;
	}
	.cabinet-wrapper .right-part .inputs-section {
		margin-bottom: 34px;
	}
	.cabinet-wrapper .right-part .input-block {
		width: calc(100% + 7px);
		transform: translateX(-7px);
	}
	.cabinet-wrapper .right-part input {
		padding: 8px 0;
		font-size: 11px;
		margin-top: 5px;
		height: 27px;
	}
	.cabinet-wrapper .right-part span {
		font-size: 16px;
		transform: translate(-5px, 11px);
	}
	.cabinet-wrapper .right-part button {
		font-size: 17px;
		border-radius: 27px;
		padding: 14px 0;
		margin-bottom: 8px;
	}
	.cabinet-wrapper .right-part nav {
		display: block;
	}
	.support-block {
		width: 100%;
		height: auto;
		bottom: 0;
		border-radius: 31px 31px 0 0;
		padding: 41px 67px 59px;
		text-align: center;
	}
	.support-block.opened {
		transform: translateY(0);
	}
	.support-block.closed {
		transform: translateY(100%);
	}
	.support-block h2 {
		font-size: 27px;
		margin-bottom: 20px;
	}
	.support-block address {
		font-size: 15px;
	}
	.support-block address p {
		margin-bottom: 30px;
	}
	.support-block address li {
		height: 30px;
	}
	.support-block .close-btn {
		font-size: 15px;
		border-radius: 21px;
		height: 41px;
		width: 186px;
		margin: 0 auto;
		margin-top: 21px;
	}
}
@media screen and (max-width: 680px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 15px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 15px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 15px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 15px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 15px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 15px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 15px;
    }
	:root {
		--distance-between-main-parts: 50px;
	}
	header .logo {
		margin-left: 10px;
	}
	.banner a {
		font-size: 10px;
		padding: 8px 11px;
	}
	.landing-wrapper .main-1 .card {
		width: calc(25% - 10px);
	}
	.landing-wrapper .main-1 .card .image span {
		left: 9px;
		bottom: 10px;
	}
	.landing-wrapper .main-1 .card label {
		font-size: 10px;
		margin-top: 7px;
	}
	.landing-wrapper .main-1 .card p {
		font-size: 8px;
		margin-top: 4px;
	}
	.landing-wrapper .main-1 .to-catalog {
		border-radius: 15px;
		font-size: 10px;
		padding: 9px 30px;
		margin-top: 11px;
	}
	.landing-wrapper .main-2 .view-furniture {
		font-size: 12px;
		padding: 12px 35px;
	}
	.landing-wrapper .main-4 form button {
		padding: 10px 15px;
	}
	.pao-wrapper {
		display: block;
	}
	.pao-wrapper .left-part {
		width: 100%;
	}
	.pao-wrapper .right-part {
		width: 100%;
		margin-top: 32px;
	}
	.pao-wrapper .left-part h2 {
		font-size: 14px;
		line-height: 32px;
		height: 25px;
	}
	.pao-wrapper .left-part .input-block {
		width: calc(100% + 6px);
		transform: translateX(-6px);
	}
	.pao-wrapper .left-part .input-block span {
		font-size: 16px;
		transform: translate(-7px, 15px);
	}
	.pao-wrapper .left-part input {
		padding: 8px 0;
		height: 27px;
		font-size: 11px;
	}
	.pao-wrapper .left-part .inputs-section {
		margin-bottom: 20px;
	}
	.pao-wrapper .position {
		margin-bottom: 25px;
		height: 105px;
	}
	.pao-wrapper .position .start-part {
		margin-left: 11px;
		padding: 14px 0;
		width: calc(100% - 119px);
		height: calc(100% - 28px);
	}
	.pao-wrapper .position .product-info p {
		font-size: 11px;
	}
	.pao-wrapper .position .product-info span {
		font-size: 8px;
	}
	.pao-wrapper .position .lists-count {
		font-size: 11px;
	}
	.pao-wrapper .position-total-label {
		font-size: 11px;
	}
	.pao-wrapper .order-total h2 {
		font-size: 14px;
		margin-top: 55px;
		margin-bottom: 8px;
	}
	.pao-wrapper .order-total .order-row {
		height: 15px;
	}
	.pao-wrapper .order-total .sale-row {
		margin-top: 5px;
	}
	.pao-wrapper .order-total .total-cost {
		margin-top: 9px;
	}
	.pao-wrapper .order-total button {
		font-size: 12px;
		border-radius: 12px;
		height: 35px;
		margin-top: 14px;
	}
	.ops-wrapper {
		padding: 60px 0 100px 0;
	}
	.ops-wrapper img {
		width: 75px;
	}
	.ops-wrapper p {
		font-size: 14px;
		margin: 21px 0;
	}
	.ops-wrapper a {
		width: 275px;
		height: 35px;
		border-radius: 12px;
	}
	.reclinksent-wrapper {
		margin: 60px auto;
	}
	.reclinksent-wrapper h1 {
		margin-bottom: 30px;
	}
	.reclinksent-wrapper img {
		width: 150px;
	}
	.reclinksent-wrapper a {
		font-size: 15px;
		margin-top: 20px;
	}
	.embossings-wrapper h1 {
		font-size: 15px;
		margin: 25px 0 15px;
	}
	.embossings-wrapper section {
		margin-bottom: 25px;
	}
	.embossings-wrapper section:first-of-type {
		margin-bottom: 25px;
	}
	.embossings-wrapper h2 {
		font-size: 11px;
	}
	.embossings-wrapper .cards .card {
		width: calc(25% - 8px);
		margin-right: 8px;
		margin-bottom: 1px;
	}
	.embossings-wrapper .cards .card .image span {
		font-size: 13px;
		padding: 4px 7px;
		border-radius: 4px;
	}
	.embossings-wrapper .cards .card h3 {
		font-size: 8px;
	}
	.lf-wrapper .image {
		width: calc((100% - 5px) / 2);
		border-radius: 5px;
		margin: 0 0 8px !important;
	}
	.lf-wrapper .image:not(:nth-child(2n)) {
		margin-right: 5px !important;
	}
	.lf-wrapper .page-changer {
		margin-bottom: 32px;
	}
	.lf-wrapper .page-changer button {
		width: 18px;
		height: 18px;
		font-size: 8px;
	}
	.lf-wrapper .page-changer button:not(:last-of-type) {
		margin-right: 5px;
	}
	.lf-wrapper .page-changer button:nth-last-of-type(2) {
		margin: 0;
	}
	.lf-wrapper .page-changer span {
		width: 8px;
		height: 1.4px;
		margin: 0 6px 0 4px;
	}
	.contacts-wrapper {
		font-size: 20px;
	}
	.contacts-wrapper .flex-wrapper {
		display: block;
	}
	.contacts-wrapper .part {
		width: 100%;
	}
	.contacts-wrapper .part:first-child {
		margin-bottom: 20px;
	}
	.contacts-wrapper .physical-address {
		margin-bottom: 18px;
	}
	.contacts-wrapper .send-info h3 {
		margin: 18px 0;
	}
	.contacts-wrapper form input {
		padding: 8px 15px;
		font-size: 15px;
		border-radius: 17px;
		border-width: 1px;
	}
	.contacts-wrapper form textarea {
		padding: 9px 15px;
		font-size: 16px;
		border-radius: 20px;
		margin-top: 8px;
		border-width: 1px;
	}
	.contacts-wrapper form button {
		margin-top: 6px;
		height: 50px;
		font-size: 20px;
	}
	.about-wrapper .part:last-child {
		margin-top: 10px;
		font-size: 13px;
	}
	.about-wrapper .image {
		border-radius: 12px;
	}
	.certs-wrapper h2 {
		font-size: 13px;
		padding: 3px 0;
		margin: 8px 0;
	}
	.certs-wrapper .images {
		display: block;
	}
	.certs-wrapper .image {
		width: 100%;
		border-radius: 5px;
		margin: 0 0 8px;
	}
	footer .part:last-of-type {
		width: 180px;
	}
}
@media screen and (max-width: 650px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 15px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 15px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 15px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 15px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 15px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 15px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 15px;
    }
	.landing-wrapper .main-3 .part {
		font-size: 8px;
		line-height: 7px;
	}
	.landing-wrapper .main-4 {
		font-size: 14px;
	}
	.landing-wrapper .main-4 form input {
		font-size: 14px;
		padding: 15px 22px;
	}
	.main-4 form textarea {
		font-size: 14px;
	}
	.main-4 .part {
		width: calc(50% - 7px);
	}
	.fav-wrapper .right-part .card .image span {
		left: 13px;
		bottom: 9px;
		height: 21px;
		font-size: 12px;
	}
}
@media screen and (max-width: 580px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 15px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 15px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 15px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 15px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 15px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 15px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 15px;
    }
	.landing-wrapper h2 {
		padding: 17px 0;
		font-size: 20px;
	}
	.landing-wrapper .banner a {
		bottom: 16px;
		right: 9px;
		border-radius: 18px;
		font-size: 10px;
		padding: 8px 13px;
	}
	.cart-wrapper .position {
		margin-bottom: 31px;
		height: 110px;
	}
	.cart-wrapper .position .product-image span {
		font-size: 9px;
		left: 9px;
		bottom: 10px;
	}
	.cart-wrapper .position .start-part {
		padding: 10px 0;
		height: calc(100% - 20px);
		width: calc(100% - 121px);
		margin-left: 11px;
		justify-content: start;
	}
	.cart-wrapper .position .start-part .product-info p {
		margin-bottom: 0;
		font-size: 11px;
	}
	.cart-wrapper .position .start-part .product-info span {
		font-size: 8px;
	}
	.cart-wrapper .position .start-part .lists-count {
		font-size: 11px;
		margin-top: 8px;
	}
	.cart-wrapper .position .start-part .lists-count {
		display: flex;
		justify-content: space-between;
	}
	.cart-wrapper .position .start-part .lists-count-btns button:first-of-type {
		margin-left: 0;
	}
	.cart-wrapper .position .start-part .lists-count-btns button:last-of-type {
		margin-right: 0;
	}
	.cart-wrapper .position .start-part .lists-count button {
		width: 14px;
		height: 14px;
		margin: 0 10px;
	}
	.cart-wrapper .position .start-part .lists-count button img {
		width: 7px;
		height: 7px;
	}
	.cart-wrapper .position .end-part {
		min-height: calc(100% - 20px);
		width: calc(100% - 121px);
		padding: 10px 0;
		right: auto;
		left: 121px;
	}
	.cart-wrapper .position .end-part button {
		width: 13px;
		height: 13px;
	}
	.cart-wrapper .position .end-part .position-cost {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.cart-wrapper .position .end-part .cost-label {
		font-size: 11px;
		transform: translateY(0.6px);
		margin-right: 14px;
	}
	.cart-wrapper .position .end-part .cost-value {
		font-size: 16px;
	}
	.cart-wrapper .order-total {
		margin-top: 4px;
		width: 100%;
	}
	.cart-wrapper .order-total h2 {
		font-size: 14px;
	}
	.cart-wrapper .order-total .order-row .order-total-value {
		font-size: 16px;
		bottom: -5.5px;
	}
	.cart-wrapper .order-total .sale-row {
		margin-top: 5px;
	}
	.cart-wrapper .order-total .total-cost {
		margin-top: 13px;
	}
	.cart-wrapper .order-total .total-cost .total-label {
		font-size: 11px;
	}
	.cart-wrapper .order-total .total-cost .total-value {
		font-size: 21px;
		transform: translateY(4.5px);
	}
	.cart-wrapper .order-total button {
		font-size: 12px;
		border-radius: 13px;
		height: 35px;
		margin: 14px 0 182px 0;
	}
	.catalog-wrapper h2 {
		font-size: 15px;
		height: auto;
		margin-bottom: 16px;
	}
	.catalog-wrapper .card {
		width: calc(25% - 6px);
		margin-bottom: 8px;
	}
	.catalog-wrapper .card .image span {
		font-size: 9px;
		left: 12px;
		bottom: 14px;
		height: auto;
	}
	.catalog-wrapper .card label {
		font-size: 9px;
		margin-top: 7px;
	}
	.catalog-wrapper .card p {
		font-size: 7px;
		margin-top: 3px;
	}
	.catalog-wrapper .cards {
		margin-bottom: -6px;
	}
	.catalog-wrapper .show-more-btn {
		margin-top: 13px;
		width: 137px;
		height: 29px;
		font-size: 10px;
	}
	.product-modal.opened {
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		border-radius: 0;
	}
	.product-modal .left-part {
		height: 521px;
	}
	.product-modal .left-part span {
		width: calc(100% - 120px);
		font-size: 13px;
		margin-top: 38px;
		margin-left: 22px;
	}
	.product-modal .right-part {
		padding: 23px 16px 35px;
	}
	.product-modal .modal-btns button:first-of-type {
		width: 22px;
		height: 22px;
		transform: translateY(10px);
	}
	.product-modal .modal-btns button:last-of-type {
		top: 39px;
		right: 20px;
		width: 17px;
		height: 17px;
	}
	.product-modal .right-part h2 {
		font-size: 20px;
		margin-top: -30px;
	}
	.product-modal .right-part p {
		font-size: 13px;
		padding: 6px 0;
		margin: 4px 0;
	}
	.product-modal .right-part .mini-card__item {
		width: 100px;
		height: 24px;
		border-radius: 4px;
		margin: 0 8px 8px 0;
	}
	.product-modal .right-part .mini-card__item span {
		font-size: 10px;
	}
	.product-modal .right-part .mini-cards.recommended-embossings .mini-card__item {
		width: 40px;
		height: 40px;
		border-radius: 9px;
	}
	.product-modal .right-part .mini-cards.recommended-embossings .mini-card__item span {
		font-size: 18px;
	}
	.product-modal .next-product-btn {
		right: 19px;
		width: 15px;
		height: 23px;
	}
	.product-modal .next-product-btn img {
		width: 12px;
	}
	.product-modal .slick-dots {
		bottom: 16px;
	}
	.product-modal .slick-dots li button {
		width: 12px;
		height: 12px;
	}
	.product-modal .product-info {
		margin-top: 10px;
		font-size: 13px;
	}
	.product-modal .product-info__row {
		height: 25px;
	}
	.product-modal .product-info__row:not(:last-of-type) {
		margin-bottom: 5px;
	}
	.product-modal .product-info .lists-counter {
		width: 90px;
		font-size: 13px;
	}
	.product-modal .product-info .lists-counter button {
		width: 23px;
		height: 23px;
	}
	.product-modal .product-info .lists-counter button img {
		width: 10px;
		height: 10px;
	}
	.product-modal .add-to-cart-btn {
		font-size: 13px;
		border-radius: 38px;
		width: 230px;
		height: 45px;
		margin: 0 auto;
		display: block;
		margin-top: 20px;
	}
	.embossing-modal.opened {
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		border-radius: 0;
	}
	.embossing-modal .left-part {
		height: 521px;
	}
	.embossing-modal .right-part {
		padding: 23px 16px 35px;
	}
	.embossing-modal .modal-btns button {
		top: 39px;
		right: 20px;
		width: 17px;
		height: 17px;
	}
	.embossing-modal .right-part h2 {
		font-size: 20px;
	}
	.embossing-modal .right-part p {
		font-size: 13px;
		padding: 6px 0;
		margin: 4px 0;
	}
	.embossing-modal .right-part .mini-card__item {
		width: 100px;
		height: 24px;
		border-radius: 4px;
		margin: 0 8px 8px 0;
	}
	.embossing-modal .right-part .mini-card__item span {
		font-size: 8px;
	}
	.embossing-modal .right-part .mini-card__item.font-small span {
		font-size: 7px;
	}
	.embossing-modal .next-embossing-btn {
		right: 19px;
		width: 15px;
		height: 23px;
	}
	.embossing-modal .next-embossing-btn img {
		width: 12px;
	}
	.signin-wrapper {
		width: 233px;
		margin: 50px auto;
	}
	.signin-wrapper form {
		margin: 22px auto;
	}
	.signin-wrapper input {
		height: 30px;
		margin-top: 21px;
		border-radius: 19px;
		font-size: 11px;
		padding: 0 11px;
	}
	.signin-wrapper button {
		height: 42px;
		font-size: 15px;
		border-radius: 26px;
		margin-top: 30px;
	}
	.signin-wrapper p {
		font-size: 14px;
		margin: 23px 0 0;
	}
	.signup-wrapper {
		width: 215px;
	}
	.signup-wrapper .inputs-section {
		margin-bottom: 34px;
	}
	.signup-wrapper h2 {
		font-size: 14px;
		height: 26px;
		line-height: 26px;
	}
	.signup-wrapper .input-block {
		width: calc(100% + 5px);
		transform: translateX(-5px);
	}
	.signup-wrapper .input-block .star {
		font-size: 16px;
		transform: translate(-5px, 17px);
	}
	.signup-wrapper input {
		padding: 7px 0;
		margin-top: 6px;
		height: 27px;
		font-size: 11px;
	}
	.signup-wrapper button {
		font-size: 15px;
		border-radius: 25px;
		padding: 13px 0;
		margin-bottom: px;
	}
	.pasrec-wrapper {
		width: 280px;
		margin: 50px auto;
	}
	.pasrec-wrapper h1 {
		font-size: 22px;
	}
	.pasrec-wrapper form {
		margin: 22px auto;
		width: 240px;
	}
	.pasrec-wrapper input {
		height: 30px;
		margin-top: 21px;
		border-radius: 19px;
		font-size: 11px;
		padding: 0 11px;
	}
	.pasrec-wrapper .error-text {
		font-size: 12px;
		margin: 11px 0;
	}
	.pasrec-wrapper button {
		height: 42px;
		font-size: 15px;
		border-radius: 26px;
		margin-top: 30px;
	}
	.pasrec-wrapper p {
		font-size: 14px;
		margin: 23px 0 0;
	}
	.newpas-wrapper {
		width: 280px;
		margin: 50px auto;
	}
	.newpas-wrapper h1 {
		font-size: 22px;
	}
	.newpas-wrapper form {
		margin: 22px auto;
		width: 240px;
	}
	.newpas-wrapper input {
		height: 30px;
		margin-top: 21px;
		border-radius: 19px;
		font-size: 11px;
		padding: 0 11px;
	}
	.newpas-wrapper .error-text {
		font-size: 12px;
		margin: 11px 0;
	}
	.newpas-wrapper button {
		height: 42px;
		font-size: 15px;
		border-radius: 26px;
		margin-top: 30px;
	}
	.newpas-wrapper p {
		font-size: 14px;
		margin: 23px 0 0;
	}
}
@media screen and (max-width: 570px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 15px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 15px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 15px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 15px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 15px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 15px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 15px;
    }
	.fav-wrapper .right-part .card {
		width: calc(33% - 6px);
		margin-top: 10px;
	}
	.fav-wrapper .right-part .card label {
		font-size: 12px;
		margin-top: 9px;
	}
	.fav-wrapper .right-part .card p {
		margin-top: 6px;
		font-size: 9px;
	}
	.fav-wrapper .right-part .show-more-btn {
		font-size: 13px;
		border-radius: 25px;
		width: 220px;
		height: 43px;
		margin: 15px auto 25px auto;
	}
	footer {
		padding-top: 50px;
	}
	footer .flex-wrapper {
		display: block;
	}
	footer .container {
		width: 70%;
	}
	footer .part:last-of-type {
		margin-top: 40px;
	}
	footer .part:last-of-type {
		width: 320px;
	}
	footer .container .part {
		margin: 50px auto;
	}
	footer .container .part:first-of-type {
		margin-top: 0;
	}
	footer nav.menu {
		display: flex;
	}
}
@media screen and (max-width: 530px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 15px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 15px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 15px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 15px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 15px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 15px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 15px;
    }
	header .open-menu-btn {
		width: 25px;
		height: 25px;
	}
	header .container {
		padding: 40px 0 10px 0;
	}
	header .logo {
		width: 125px;
		height: 25px;
		margin-left: 54px;
	}
	header .logo img {
		width: 84px;
		aspect-ratio: 180 / 45;
	}
	header .logo span {
		text-align: right;
		transform: translateX(-13px);
		font-size: 10px;
	}
	header .user-btns {
		right: 0px;
	}
	header .user-btns img {
		height: 25px;
	}
}
@media screen and (max-width: 470px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 15px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 15px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 15px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 15px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 15px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 15px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 15px;
    }
	.landing-wrapper .main-1 .card .image span {
		font-size: 7px;
		left: 8px;
		bottom: 9px;
	}
	.landing-wrapper .main-1 .card label {
		font-size: 7px;
		left: 8px;
		bottom: 9px;
	}
	.landing-wrapper .main-1 .card p {
		font-size: 8px;
		margin-top: 4px;
	}
	.landing-wrapper .main-1 .card {
		width: calc(25% - 6px);
		margin-top: 5px;
	}
}
@media screen and (max-width: 430px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 15px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 15px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 15px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 15px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 15px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 15px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 15px;
    }
	.orders-wrapper .left-part .user-profile {
		transform: translateX(-5px);
		font-size: 15px;
	}
	.orders-wrapper .left-part .user-info {
		margin-left: 20px;
	}
	.orders-wrapper .right-part table {
		font-size: 14px;
	}
	.orders-wrapper .right-part nav {
		font-size: 17px;
		margin-top: 23px;
	}
	.orders-wrapper .right-part nav li {
		margin-bottom: 21px;
	}
	.fav-wrapper .left-part .user-profile {
		transform: translateX(-5px);
		font-size: 15px;
	}
	.fav-wrapper .left-part .user-info {
		margin-left: 20px;
	}
	.fav-wrapper .right-part .card .image span {
		left: 10px;
		bottom: 7px;
		height: 17px;
		font-size: 9px;
	}
	.fav-wrapper .right-part nav {
		font-size: 17px;
		margin-top: 23px;
	}
	.fav-wrapper .right-part nav li {
		margin-bottom: 21px;
	}
	footer .container .part {
		width: 100%;
	}
	footer .logo {
		width: 260px;
	}
	footer .logo img {
		width: 150px;
		height: 40px;
	}
	footer .logo span {
		transform: translate(-32px, -2px);
		font-size: 30px;
	}
	footer address {
		margin-top: 20px;
		font-size: 16px;
	}
	footer address a {
		font-size: 20px;
		padding-bottom: 3px;
	}
	footer .social-links {
		width: 100%;
	}
	footer .social-links a:not(:first-child) {
		margin-left: 12px;
	}
	footer .social-links a img {
		width: 50px;
		height: 50px;
	}
	footer nav.menu {
		display: block;
	}
}
@media screen and (max-width: 400px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 10px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 10px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 10px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 10px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 10px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 10px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 10px;
    }
	.support-block {
		padding: 41px 45px 59px;
	}
	.catalog-wrapper .card .image span {
		font-size: 7px;
		left: 9px;
		bottom: 8px;
	}
}
@media screen and (max-width: 370px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 10px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 10px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 10px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 10px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 10px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 10px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 10px;
    }
	.orders-wrapper .right-part table td:nth-child(4),
	.orders-wrapper .right-part table th:nth-child(4),
	.orders-wrapper .right-part table td:nth-child(5),
	.orders-wrapper .right-part table th:nth-child(5) {
		display: none;
	}
	.orders-wrapper .right-part table td:nth-child(6),
	.orders-wrapper .right-part table th:nth-child(6) {
		display: table-cell;
	}
	footer .container {
		width: calc(100% - 60px);
	}
}
@media screen and (max-width: 330px) {
    .catalog-wrapper .furniture-block .part img {
        border-radius: 10px;
    }
    .catalog-wrapper .card .image img {
        border-radius: 10px;
    }
    .landing-wrapper .main-4 form input {
        border-radius: 10px;
    }
    .landing-wrapper .main-4 form textarea {
      border-radius: 10px;
    }
    .landing-wrapper .main-3 img {
        border-radius: 10px;
    }
    .landing-wrapper .main-2 .part img {
        border-radius: 10px;
    }
    .landing-wrapper .main-1 .card .image img {
        border-radius: 10px;
    }
	header .logo {
		margin-left: 15px;
	}
	.fav-wrapper .right-part .card .image span {
		left: 8px;
		bottom: 5px;
		height: 12px;
		font-size: 8px;
	}
	.ops-wrapper a {
		width: 100%;
	}
}
